diff --git a/.editorconfig b/.editorconfig index bec7553240a..7f07e050e32 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,7 +2,13 @@ root = true [*] charset = utf-8 -indent_style = tab end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true + +[*.php] +indent_style = space +indent_size = 4 + +[*.{js,vue,json,less}] +indent_style = tab diff --git a/.github/workflows/stable-3_4_0.yml b/.github/workflows/stable-3_4_0.yml new file mode 100644 index 00000000000..6a89de41853 --- /dev/null +++ b/.github/workflows/stable-3_4_0.yml @@ -0,0 +1,46 @@ +on: + push: + branches: + - '*' + pull_request: + branches: + ['stable-3_4_0'] + +name: omp +jobs: + omp: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - php-version: 8.1 + validate: 'validate' + - php-version: 8.1 + database: pgsql + test: 'test' + - php-version: 8.1 + database: mariadb + test: 'test' + - php-version: 8.1 + database: mysql + test: 'test' + upgrade: 'upgrade' + upgrade_test: '3.1.0,3.1.1-2,3.1.2,stable-3_2_0,stable-3_2_1,stable-3_3_0' + - php-version: 8.2 + database: mysql + test: 'test' + - php-version: 8.2 + database: pgsql + test: 'test' + + + + name: omp + steps: + - uses: pkp/pkp-github-actions@v1 + with: + node_version: 16 + dataset_branch: 'stable-3_4_0' + DATASETS_ACCESS_KEY: ${{secrets.DATASETS_ACCESS_KEY}} + DEBUG_IN_TMATE: false diff --git a/.gitignore b/.gitignore index 2ee517b8000..3ec40ed6de5 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ temp /plugins/paymethod/paypal/vendor/ .project .project/ +.vscode .buildpath .settings/ .htaccess @@ -17,3 +18,5 @@ styles/build.css cypress.env.json cypress/logs/ cypress/screenshots/ +.php_cs.cache +.php-cs-fixer.cache diff --git a/.gitmodules b/.gitmodules index 82a075ed1c4..28fd2369f7d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,6 @@ [submodule "lib/pkp"] path = lib/pkp url = https://github.com/pkp/pkp-lib -[submodule "plugins/generic/usageStats"] - path = plugins/generic/usageStats - url = https://github.com/pkp/usageStats.git [submodule "plugins/generic/customBlockManager"] path = plugins/generic/customBlockManager url = https://github.com/pkp/customBlockManager @@ -28,21 +25,12 @@ [submodule "lib/ui-library"] path = lib/ui-library url = https://github.com/pkp/ui-library -[submodule "plugins/themes/omp-dainst-theme"] - path = plugins/themes/omp-dainst-theme - url = https://github.com/dainst/omp-dainst-theme -[submodule "plugins/pubIds/zenon"] - path = plugins/pubIds/zenon - url = https://github.com/dainst/ojs-zenon-plugin.git -[submodule "plugins/generic/cilantro"] - path = plugins/generic/cilantro - url = https://github.com/dainst/ojs-cilantro-plugin -[submodule "plugins/generic/daiBookViewer"] - path = plugins/generic/daiBookViewer - url = https://github.com/dainst/dai-book-viewer-ojs-plugin.git -[submodule "plugins/themes/publications-theme"] - path = plugins/themes/publications-theme - url = https://github.com/dainst/publications-theme.git -[submodule "plugins/generic/piwik"] - path = plugins/generic/piwik - url = https://github.com/pkp/piwik.git +[submodule "plugins/generic/acron"] + path = plugins/generic/acron + url = https://github.com/pkp/acron +[submodule "plugins/generic/citationStyleLanguage"] + path = plugins/generic/citationStyleLanguage + url = https://github.com/pkp/citationStyleLanguage +[submodule "plugins/generic/webFeed"] + path = plugins/generic/webFeed + url = https://github.com/pkp/webFeed.git diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php new file mode 100644 index 00000000000..62ba5c0d0c2 --- /dev/null +++ b/.php-cs-fixer.php @@ -0,0 +1,39 @@ +in(__DIR__) + ->name('*.php') + // The next two rules are enabled by default, kept for clarity + ->ignoreDotFiles(true) + ->ignoreVCS(true) + // The pattern is matched against each found filename, thus: + // - The "/" is needed to avoid having "vendor" match "Newsvendor.php" + // - The presence of "node_modules" here doesn't prevent the Finder from recursing on it, so we merge these paths below at the "exclude()" + ->notPath($ignoredDirectories = ['cypress/', 'js/', 'locale/', 'node_modules/', 'styles/', 'templates/', 'vendor/']) + // Ignore root based directories + ->exclude(array_merge($ignoredDirectories, ['cache', 'dbscripts', 'docs', 'lib', 'public', 'registry', 'schemas'])) + // Ignores Git folders + ->notPath((function () { + $recursiveIterator = new RecursiveIteratorIterator( + new RecursiveDirectoryIterator(__DIR__ . '/plugins', FilesystemIterator::SKIP_DOTS | FilesystemIterator::UNIX_PATHS | FilesystemIterator::CURRENT_AS_FILEINFO), + RecursiveIteratorIterator::SELF_FIRST + ); + $recursiveIterator->setMaxDepth(1); + $gitFolders = new CallbackFilterIterator( + $recursiveIterator, + fn (SplFileInfo $file) => $recursiveIterator->getDepth() === $recursiveIterator->getMaxDepth() + && $file->isDir() + // Covers submodules (.git file) and external repositories (.git directory) + && file_exists("{$file}/.git") + ); + $folders = []; + foreach ($gitFolders as $folder) { + $folders[] = str_replace(__DIR__ . '/', '', $folder); + } + return $folders; + })()); + +$rules = include './lib/pkp/.php_cs_rules'; +$config = new PhpCsFixer\Config(); +return $config->setRules($rules) + ->setFinder($finder); diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 6318baed00b..e4bf4c2a5db 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -1,10 +1,8 @@ -before_commands: - - 'git submodule update --init --recursive' filter: excluded_paths: - - 'tests/*' + - 'tests/' dependency_paths: - - 'lib/pkp/lib/*' + - 'lib/pkp/lib/' tools: php_sim: enabled: true @@ -24,3 +22,16 @@ tools: feature_patterns: - '\badd(?:s|ed)?\b' - '\bimplement(?:s|ed)?\b' +build: + dependencies: + before: + - 'git submodule update --init --recursive' + - 'wget https://raw.githubusercontent.com/composer/getcomposer.org/76a7060ccb93902cd7576b67264ad91c8a2700e2/web/installer -O - -q | php -- --quiet' + - 'php composer.phar --working-dir=lib/pkp install --no-dev' + - 'php composer.phar --working-dir=plugins/paymethod/paypal install --no-dev' + - 'php composer.phar --working-dir=plugins/generic/citationStyleLanguage install --no-dev' + nodes: + analysis: + tests: + override: + - php-scrutinizer-run diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 81d281ec0f4..00000000000 --- a/.travis.yml +++ /dev/null @@ -1,95 +0,0 @@ -dist: bionic - -env: - global: - # Used for saving generated test datasets. See Notion for details. - - secure: fRBfUOCW74WoTqn++xJLCL6k0Ug4f8LSD75mbrfMWdP9Wuu5WzTpFH2K0fNOK2Znfg0Vqpr1442Sjjo+C4PxiM65RPIoi36CfFEqEPdhN2EF5kSXEngj97LF3SQzCklDxf/pI9Z9cbr5QgJhiVexLXuBg2Dsru/UvBD871+p4kA= - - APPLICATION=omp - -# Configure the build matrix -matrix: - include: - # Validation - - env: TEST=validation - php: 7.3 - # PostgreSQL / various PHP - - env: TEST=pgsql - php: 7.3 - - env: TEST=pgsql - php: 7.4 - - env: - - TEST: pgsql - - SAVE_BUILD: true - php: 8.0 - - env: TEST=pgsql - php: 8.1 - # MySQL / various PHP - - env: TEST=mysql - php: 7.3 - - env: TEST=mysql - php: 7.4 - - env: - - TEST: mysql - - SAVE_BUILD: true - php: 8.0 - - env: TEST=mysql - php: 8.1 -language: php -python: - - 3.3 # Required by Javascript linter/builder -git: - # Inhibit automatic submodule checkout (see below) - submodules: false -cache: - npm: true - directories: - - $HOME/.composer/cache - - $HOME/.cache -addons: - chrome: beta - postgresql: "9.5" - apt: - update: true -before_install: - # Check out submodules (this script checks out developer forks if necessary) - - ./tools/startSubmodulesTRAVIS.sh - - # Update to latest stable version of npm - - npm i g -npm - - - | - if [[ "$TEST" != "validation" ]]; then - # Prepare for unit and integration tests. - - # Prepare the server environment - ./lib/pkp/tools/travis/prepare-webserver.sh - - # Prepare the local codebase - ./lib/pkp/tools/travis/install-composer-dependencies.sh - npm install && npm run build - else - # Prepare for validation tests. - npm install - ./lib/pkp/tools/travis/install-linter.sh - fi -script: - - | - if [[ "$TEST" != "validation" ]]; then - # Run the unit and integration tests. - source ./lib/pkp/tools/travis/prepare-tests.sh - ./lib/pkp/tools/travis/run-tests.sh - else - # Run the validation tests. - ./lib/pkp/tools/travis/validate-xml.sh - ./lib/pkp/tools/buildjs.sh -n - ./lib/pkp/tools/checkHelp.sh - ./lib/pkp/tools/travis/validate-json.sh - npm run lint - fi - -after_script: - - cat error.log - -after_failure: - - sudo apt-get install sharutils - - tar cz cypress/screenshots | uuencode /dev/stdout diff --git a/README.md b/README.md index 52ea6174d4a..4642561c56e 100644 --- a/README.md +++ b/README.md @@ -1,58 +1,35 @@ # Open Monograph Press -> Open Monograph Press (OMP) has been developed by the Public Knowledge Project. For general information about OMP and other open research systems, visit the [PKP web site][pkp]. +[![Build Status](https://app.travis-ci.com/pkp/omp.svg?branch=main)](https://app.travis-ci.com/pkp/omp) +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/pkp/omp/badges/quality-score.png?b=main)](https://scrutinizer-ci.com/g/pkp/omp/?branch=main) -[![Build Status](https://travis-ci.org/pkp/omp.svg?branch=stable-3_3_0)](https://travis-ci.org/pkp/omp) +Open Monograph Press (OMP) is open source software developed by the [Public Knowledge Project](https://pkp.sfu.ca/) to manage scholarly presses. [Learn More](https://pkp.sfu.ca/software/omp/) -## Documentation +## Usage -You will find detailed guides in [docs](docs) folder. +Read one of these guides to get started using OMP: -## Using Git development source +- Read the [Admin Guide](https://docs.pkp.sfu.ca/admin-guide/) to learn how to install and configure the application from an official release package. Use this guide to deploy to production. +- Read the [Getting Started](https://docs.pkp.sfu.ca/dev/documentation/en/getting-started) guide to learn how to install the application from this source repository. Use this guide for local development. -Checkout submodules and copy default configuration : +Visit our [Documentation Hub](https://docs.pkp.sfu.ca/) for user guides, tutorials, and technical documentation. - git submodule update --init --recursive - cp config.TEMPLATE.inc.php config.inc.php +## Bugs / Feature Requests -Install or update dependencies via Composer (https://getcomposer.org/): +> ⚠️ If you have found a security risk or vulnerability, please read our [security policy](SECURITY.md). - composer --working-dir=lib/pkp install - composer --working-dir=plugins/paymethod/paypal install +All issues should be filed at the [pkp/pkp-lib](https://github.com/pkp/pkp-lib/issues/) repository. Feature requests can be made at our [Community Forum](https://forum.pkp.sfu.ca/). Learn more about how to [report a problem](https://docs.pkp.sfu.ca/dev/contributors/#report-a-problem). -Install or update dependencies via [NPM](https://www.npmjs.com/): +## Community Code of Conduct - # install [nodejs](https://nodejs.org/en/) if you don't already have it - npm install - npm run build +This repository is a PKP community space. All activities here are governed by [PKP's Code of Conduct](https://pkp.sfu.ca/code-of-conduct/). Please review the Code and help us create a welcoming environment for all participants. -If your PHP version supports built-in development server : +## Contributions - php -S localhost:8000 - -See [Development documentation](https://docs.pkp.sfu.ca/dev/) for more complete development guidance. - -## Bugs / Issues - -See https://github.com/pkp/pkp-lib/#issues for information on reporting issues. - -## Running Tests - -See [Unit Tests](https://pkp.sfu.ca/wiki/index.php?title=Unit_Tests), and also [Github Documentation for PKP Contributors](https://pkp.sfu.ca/wiki/index.php?title=Github_Documentation_for_PKP_Contributors) for Travis-based continuous integration testing. +Read the [Contributor's Guide](https://docs.pkp.sfu.ca/dev/contributors/) to learn how to make a pull request. This document describes our code formatting guidelines as well as information about how we organize stable branches and submodules. ## License -This software is released under the the [GNU General Public License][gpl-licence]. - -See the file [COPYING][gpl-licence] included with this distribution for the terms -of this license. - -Third parties are welcome to modify and redistribute OJS in entirety or parts -according to the terms of this license. PKP also welcomes patches for -improvements or bug fixes to the software. +This software is released under the the GNU General Public License. See the file `docs/COPYING` included with this distribution for the terms of this license. -[pkp]: http://pkp.sfu.ca/ -[readme]: docs/README -[wiki-dev]: http://pkp.sfu.ca/wiki/index.php/HOW-TO_check_out_PKP_applications_from_git -[php-unit]: http://phpunit.de/ -[gpl-licence]: docs/COPYING +Third parties are welcome to modify and redistribute OMP in entirety or parts according to the terms of this license. PKP also welcomes patches for improvements or bug fixes to the software. diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000000..7d4f8eb92d7 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,28 @@ +# Security Policy + +## Supported Versions + +| Version | Supported | End Of Life | +| ------- | ----------------------------------------------------- | ------------- | +| 3.5.x | :x: Pre-release | 2026 (est) | +| 3.4.x | :heavy_check_mark: Active development | 2025 (est) | +| 3.3.x | :heavy_check_mark: Active maintenance | 2026 (est) | +| 3.2.x | :x: Not supported | 2023 | +| 3.1.x | :x: Not supported | 2022 | +| 1.x | :x: Security only; upgrade recommended | 2022 | + +## Reporting a Vulnerability + +To report a vulnerability, please contact PKP privately using: pkp.contact@gmail.com + +You can expect a response via email to acknowledge your report within 2 working days. + +PKP will then work to verify the vulnerability and assess the risk. This is typically done within the first week of a report. Once these details are known, PKP will file a Github issue entry with limited details for tracking purposes. This initial report will not include enough information to fully disclose the vulnerability but will serve as a point of reference for development and fixes once they are available. + +When a fix is available, PKP will contact its user community privately via mailing list with details of the fix, and leave a window of typically 2 weeks for community members to patch or upgrade before public disclosure. + +PKP then discloses the vulnerability publicly by updating the Github issue entry with complete details and adding a notice about the vulnerability to the software download page (e.g. https://pkp.sfu.ca/software/omp). At this point, a CVE and credit for the discovery may be added to the entry. + +Depending on the severity of the issue PKP may back-port fixes to releases that are beyond the formal software end-of-life. + +We aim to have a fix available within a week of notification. diff --git a/api/v1/_dois/BackendDoiHandler.php b/api/v1/_dois/BackendDoiHandler.php new file mode 100644 index 00000000000..aa5d0b11c22 --- /dev/null +++ b/api/v1/_dois/BackendDoiHandler.php @@ -0,0 +1,151 @@ +_handlerPath = '_dois'; + $this->_endpoints = array_merge_recursive($this->_endpoints, [ + 'PUT' => [ + [ + 'pattern' => $this->getEndpointPattern() . "/chapters/{chapterId:\d+}", + 'handler' => [$this, 'editChapter'], + 'roles' => [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ], + [ + 'pattern' => $this->getEndpointPattern() . "/publicationFormats/{publicationFormatId:\d+}", + 'handler' => [$this, 'editPublicationFormat'], + 'roles' => [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ], + [ + 'pattern' => $this->getEndpointPattern() . "/submissionFiles/{submissionFileId:\d+}", + 'handler' => [$this, 'editSubmissionFile'], + 'roles' => [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ] + ] + ]); + parent::__construct(); + } + + /** + * @throws Exception + */ + public function editChapter(SlimRequest $slimRequest, APIResponse $response, array $args): \Slim\Http\Response + { + $context = $this->getRequest()->getContext(); + + /** @var \APP\monograph\ChapterDAO $chapterDao */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + $chapter = $chapterDao->getChapter($args['chapterId']); + if (!$chapter) { + return $response->withStatus(404)->withJsonError('api.404.resourceNotFound'); + } + + $publication = Repo::publication()->get($chapter->getData('publicationId')); + $submission = Repo::submission()->get($publication->getData('submissionId')); + if ($submission->getData('contextId') !== $context->getId()) { + return $response->withStatus(403)->withJsonError('api.dois.403.editItemOutOfContext'); + } + + $doiId = $slimRequest->getParsedBody()['doiId']; + $doi = Repo::doi()->get((int) $doiId); + if (!$doi) { + return $response->withStatus(404)->withJsonError('api.dois.404.doiNotFound'); + } + + $chapter->setData('doiId', $doi->getId()); + $chapterDao->updateObject($chapter); + return $response->withStatus(200); + } + + /** + * @throws Exception + */ + public function editPublicationFormat(SlimRequest $slimRequest, APIResponse $response, array $args): \Slim\Http\Response + { + $context = $this->getRequest()->getContext(); + + /** @var \APP\publicationFormat\PublicationFormatDAO $publicationFormatDao */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); + $publicationFormat = $publicationFormatDao->getById($args['publicationFormatId']); + + $publication = Repo::publication()->get($publicationFormat->getData('publicationId')); + $submission = Repo::submission()->get($publication->getData('submissionId')); + + if ($submission->getData('contextId') !== $context->getId()) { + return $response->withStatus(403)->withJsonError('api.dois.403.editItemOutOfContext'); + } + + $doiId = $slimRequest->getParsedBody()['doiId']; + $doi = Repo::doi()->get((int) $doiId); + if (!$doi) { + return $response->withStatus(404)->withJsonError('api.dois.404.doiNotFound'); + } + + $publicationFormat->setData('doiId', $doi->getId()); + $publicationFormatDao->updateObject($publicationFormat); + return $response->withStatus(200); + } + + /** + * @throws Exception + */ + public function editSubmissionFile(SlimRequest $slimRequest, APIResponse $response, array $args): \Slim\Http\Response + { + $context = $this->getRequest()->getContext(); + + $submissionFile = Repo::submissionFile()->get($args['submissionFileId']); + if (!$submissionFile) { + return $response->withStatus(404)->withJsonError('api.404.resourceNotFound'); + } + + $submission = Repo::submission()->get($submissionFile->getData('submissionId')); + if ($submission->getData('contextId') !== $context->getId()) { + return $response->withStatus(403)->withJsonError('api.dois.403.editItemOutOfContext'); + } + + $params = $this->convertStringsToSchema(\PKP\services\PKPSchemaService::SCHEMA_SUBMISSION_FILE, $slimRequest->getParsedBody()); + + $doi = Repo::doi()->get((int) $params['doiId']); + if (!$doi) { + return $response->withStatus(404)->withJsonError('api.dois.404.doiNotFound'); + } + + Repo::submissionFile()->edit($submissionFile, ['doiId' => $doi->getId()]); + $submissionFile = Repo::submissionFile()->get($submissionFile->getId()); + + /** @var GenreDAO */ + $genreDao = DAORegistry::getDAO('GenreDAO'); + $genres = $genreDao->getByContextId($submission->getData('contextId'))->toArray(); + + return $response->withJson(Repo::submissionFile()->getSchemaMap()->map($submissionFile, $genres)); + } +} diff --git a/api/v1/_dois/index.php b/api/v1/_dois/index.php new file mode 100644 index 00000000000..c2430f3bc16 --- /dev/null +++ b/api/v1/_dois/index.php @@ -0,0 +1,18 @@ +_endpoints = array( - 'POST' => array( - array( - 'pattern' => "{$rootPattern}/saveDisplayFlags", - 'handler' => array($this, 'saveDisplayFlags'), - 'roles' => array( - ROLE_ID_SITE_ADMIN, - ROLE_ID_MANAGER, - ), - ), - array( - 'pattern' => "{$rootPattern}/saveFeaturedOrder", - 'handler' => array($this, 'saveFeaturedOrder'), - 'roles' => array( - ROLE_ID_SITE_ADMIN, - ROLE_ID_MANAGER, - ), - ), - ), - 'PUT' => [ - [ - 'pattern' => "{$rootPattern}/addToCatalog", - 'handler' => [$this, 'addToCatalog'], - 'roles' => [ - ROLE_ID_SITE_ADMIN, - ROLE_ID_MANAGER, - ], - ], - ], - ); - parent::__construct(); - } - - /** - * Add omp-specific parameters to the getMany request - * - * @param $hookName string - * @param $args array [ - * @option $params array - * @option $slimRequest Request Slim request object - * @option $response Response object - * ] - */ - public function addAppSubmissionsParams($hookName, $args) { - $params =& $args[0]; - $slimRequest = $args[1]; - $response = $args[2]; - - $originalParams = $slimRequest->getQueryParams(); - - // Bring in orderby constants - import('lib.pkp.classes.submission.PKPSubmissionDAO'); - import('classes.submission.SubmissionDAO'); - - // Add allowed order by options for OMP - if (isset($originalParams['orderBy']) && in_array($originalParams['orderBy'], array(ORDERBY_DATE_PUBLISHED, ORDERBY_SERIES_POSITION))) { - $params['orderBy'] = $originalParams['orderBy']; - } - - // Add allowed order by option for featured/new releases - if (isset($originalParams['orderByFeatured'])) { - $params['orderByFeatured'] = true; - } - - if (!empty($originalParams['categoryIds'])) { - if (is_array($originalParams['categoryIds'])) { - $params['categoryIds'] = array_map('intval', $originalParams['categoryIds']); - } else { - $params['categoryIds'] = array((int) $originalParams['categoryIds']); - } - } - - if (!empty($originalParams['seriesIds'])) { - if (is_array($originalParams['seriesIds'])) { - $params['seriesIds'] = array_map('intval', $originalParams['seriesIds']); - } else { - $params['seriesIds'] = array((int) $originalParams['seriesIds']); - } - } - } - - /** - * Save changes to a submission's featured or new release flags - * - * @param $slimRequest Request Slim request object - * @param $response Response object - * @param $args array { - * @option array featured Optional. Featured flags with assoc type, id - * and seq values. - * @option array newRelease Optional. New release flags assoc type, id - * and seq values. - * } - * - * @return Response - */ - public function saveDisplayFlags($slimRequest, $response, $args) { - $params = $slimRequest->getParsedBody(); - - $submissionId = isset($params['submissionId']) ? (int) $params['submissionId'] : null; - - if (empty($submissionId)) { - return $response->withStatus(400)->withJsonError('api.submissions.400.missingRequired'); - } - - $featureDao = \DAORegistry::getDAO('FeatureDAO'); - $featureDao->deleteByMonographId($submissionId); - if (!empty($params['featured'])) { - foreach($params['featured'] as $feature) { - $featureDao->insertFeature($submissionId, $feature['assoc_type'], $feature['assoc_id'], $feature['seq']); - } - } - - $newReleaseDao = \DAORegistry::getDAO('NewReleaseDAO'); - $newReleaseDao->deleteByMonographId($submissionId); - if (!empty($params['newRelease'])) { - foreach($params['newRelease'] as $newRelease) { - $newReleaseDao->insertNewRelease($submissionId, $newRelease['assoc_type'], $newRelease['assoc_id']); - } - } - - $output = array( - 'featured' => $featureDao->getFeaturedAll($submissionId), - 'newRelease' => $newReleaseDao->getNewReleaseAll($submissionId), - ); - - return $response->withJson($output); - } - - /** - * Save changes to the sequence of featured items in the catalog, series or - * category. - * - * @param $slimRequest Request Slim request object - * @param $response Response object - * @param $args array { - * @option int assocType Whether these featured items are for a - * press, category or series. Values: ASSOC_TYPE_* - * @option int assocId The press, category or series id - * @option array featured List of assoc arrays with submission ids and - * seq value. - * @option bool append Whether to replace or append the features to - * the existing features for this assoc type and id. Default: false - * } - * - * @return Response - */ - public function saveFeaturedOrder($slimRequest, $response, $args) { - $params = $slimRequest->getParsedBody(); - - $assocType = isset($params['assocType']) && in_array($params['assocType'], array(ASSOC_TYPE_PRESS, ASSOC_TYPE_CATEGORY, ASSOC_TYPE_SERIES)) ? (int) $params['assocType'] : null; - $assocId = isset($params['assocId']) ? (int) $params['assocId'] : null; - - if (empty($assocType) || empty($assocId)) { - return $response->withStatus(400)->withJsonError('api.submissions.400.missingRequired'); - } - - $featureDao = \DAORegistry::getDAO('FeatureDAO'); - $featureDao->deleteByAssoc($assocType, $assocId); - if (!empty($params['featured'])) { - foreach($params['featured'] as $feature) { - $featureDao->insertFeature($feature['id'], $assocType, $assocId, $feature['seq']); - } - } - - return $response->withJson(true); - } - - /** - * Add one or more submissions to the catalog - * - * @param $slimRequest Request Slim request object - * @param $response Response object - * - * @return Response - */ - public function addToCatalog($slimRequest, $response, $args) { - $params = $slimRequest->getParsedBody(); - - if (empty($params['submissionIds'])) { - return $response->withStatus(400)->withJsonError('api.submissions.400.submissionIdsRequired'); - } - - $submissionIds = array_map('intval', (array) $params['submissionIds']); - - if (empty($submissionIds)) { - return $response->withStatus(400)->withJsonError('api.submissions.400.submissionIdsRequired'); - } - - - $primaryLocale = $this->getRequest()->getContext()->getPrimaryLocale(); - $allowedLocales = $this->getRequest()->getContext()->getSupportedFormLocales(); - - $validPublications = []; - foreach ($submissionIds as $submissionId) { - $submission = Services::get('submission')->get($submissionId); - if (!$submission) { - return $response->withStatus(400)->withJsonError('api.submissions.400.submissionsNotFound'); - } - $publication = $submission->getCurrentPublication(); - if ($publication->getData('status') === STATUS_PUBLISHED) { - continue; - } - $errors = Services::get('publication')->validatePublish($publication, $submission, $allowedLocales, $primaryLocale); - if (!empty($errors)) { - return $response->withStatus(400)->withJson($errors); - } - $validPublications[] = $publication; - } - - foreach($validPublications as $validPublication) { - Services::get('publication')->publish($validPublication); - } - - return $response->withJson(true); - } -} diff --git a/api/v1/_submissions/BackendSubmissionsHandler.php b/api/v1/_submissions/BackendSubmissionsHandler.php new file mode 100644 index 00000000000..137f3314a03 --- /dev/null +++ b/api/v1/_submissions/BackendSubmissionsHandler.php @@ -0,0 +1,241 @@ +_endpoints = [ + 'POST' => [ + [ + 'pattern' => "{$rootPattern}/saveDisplayFlags", + 'handler' => [$this, 'saveDisplayFlags'], + 'roles' => [ + Role::ROLE_ID_SITE_ADMIN, + Role::ROLE_ID_MANAGER, + ], + ], + [ + 'pattern' => "{$rootPattern}/saveFeaturedOrder", + 'handler' => [$this, 'saveFeaturedOrder'], + 'roles' => [ + Role::ROLE_ID_SITE_ADMIN, + Role::ROLE_ID_MANAGER, + ], + ], + ], + 'PUT' => [ + [ + 'pattern' => "{$rootPattern}/addToCatalog", + 'handler' => [$this, 'addToCatalog'], + 'roles' => [ + Role::ROLE_ID_SITE_ADMIN, + Role::ROLE_ID_MANAGER, + ], + ], + ], + ]; + parent::__construct(); + } + + /** + * Configure a submission Collector based on the query params + */ + protected function getSubmissionCollector(array $queryParams): Collector + { + $collector = parent::getSubmissionCollector($queryParams); + + // Add allowed order by options for OMP + if (isset($queryParams['orderBy']) && $queryParams['orderBy'] === Collector::ORDERBY_SERIES_POSITION) { + $direction = isset($queryParams['orderDirection']) && $queryParams['orderDirection'] === $collector::ORDER_DIR_ASC + ? $collector::ORDER_DIR_ASC + : $collector::ORDER_DIR_DESC; + $collector->orderBy(Collector::ORDERBY_SERIES_POSITION, $direction); + } + + // Add allowed order by option for featured/new releases + if (!empty($queryParams['orderByFeatured'])) { + $collector->orderByFeatured(); + } + + if (isset($queryParams['seriesIds'])) { + $collector->filterBySeriesIds( + array_map('intval', $this->paramToArray($queryParams['seriesIds'])) + ); + } + + return $collector; + } + + /** + * Save changes to a submission's featured or new release flags + * + * @param SlimRequest $slimRequest Slim request object + * @param APIResponse $response object + * @param array $args { + * + * @option array featured Optional. Featured flags with assoc type, id + * and seq values. + * @option array newRelease Optional. New release flags assoc type, id + * and seq values. + * } + * + * @return APIResponse + */ + public function saveDisplayFlags($slimRequest, $response, $args) + { + $params = $slimRequest->getParsedBody(); + + $submissionId = isset($params['submissionId']) ? (int) $params['submissionId'] : null; + + if (empty($submissionId)) { + return $response->withStatus(400)->withJsonError('api.submissions.400.missingRequired'); + } + + /** @var FeatureDAO */ + $featureDao = DAORegistry::getDAO('FeatureDAO'); + $featureDao->deleteByMonographId($submissionId); + if (!empty($params['featured'])) { + foreach ($params['featured'] as $feature) { + $featureDao->insertFeature($submissionId, $feature['assoc_type'], $feature['assoc_id'], $feature['seq']); + } + } + /** @var NewReleaseDAO */ + $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); + $newReleaseDao->deleteByMonographId($submissionId); + if (!empty($params['newRelease'])) { + foreach ($params['newRelease'] as $newRelease) { + $newReleaseDao->insertNewRelease($submissionId, $newRelease['assoc_type'], $newRelease['assoc_id']); + } + } + + $output = [ + 'featured' => $featureDao->getFeaturedAll($submissionId), + 'newRelease' => $newReleaseDao->getNewReleaseAll($submissionId), + ]; + + return $response->withJson($output); + } + + /** + * Save changes to the sequence of featured items in the catalog, series or + * category. + * + * @param SlimRequest $slimRequest Slim request object + * @param APIResponse $response object + * @param array $args { + * + * @option int assocType Whether these featured items are for a + * press, category or series. Values: Application::ASSOC_TYPE_* + * @option int assocId The press, category or series id + * @option array featured List of assoc arrays with submission ids and + * seq value. + * @option bool append Whether to replace or append the features to + * the existing features for this assoc type and id. Default: false + * } + * + * @return APIResponse + */ + public function saveFeaturedOrder($slimRequest, $response, $args) + { + $params = $slimRequest->getParsedBody(); + + $assocType = isset($params['assocType']) && in_array($params['assocType'], [Application::ASSOC_TYPE_PRESS, Application::ASSOC_TYPE_CATEGORY, Application::ASSOC_TYPE_SERIES]) ? (int) $params['assocType'] : null; + $assocId = isset($params['assocId']) ? (int) $params['assocId'] : null; + + if (empty($assocType) || empty($assocId)) { + return $response->withStatus(400)->withJsonError('api.submissions.400.missingRequired'); + } + /** @var FeatureDAO */ + $featureDao = DAORegistry::getDAO('FeatureDAO'); + $featureDao->deleteByAssoc($assocType, $assocId); + if (!empty($params['featured'])) { + foreach ($params['featured'] as $feature) { + $featureDao->insertFeature($feature['id'], $assocType, $assocId, $feature['seq']); + } + } + + return $response->withJson(true); + } + + /** + * Add one or more submissions to the catalog + * + * @param SlimRequest $slimRequest Slim request object + * @param APIResponse $response object + * + * @return APIResponse + */ + public function addToCatalog($slimRequest, $response, $args) + { + $params = $slimRequest->getParsedBody(); + + if (empty($params['submissionIds'])) { + return $response->withStatus(400)->withJsonError('api.submissions.400.submissionIdsRequired'); + } + + $submissionIds = array_map('intval', (array) $params['submissionIds']); + + if (empty($submissionIds)) { + return $response->withStatus(400)->withJsonError('api.submissions.400.submissionIdsRequired'); + } + + + $primaryLocale = $this->getRequest()->getContext()->getPrimaryLocale(); + $allowedLocales = $this->getRequest()->getContext()->getSupportedFormLocales(); + + $validPublications = []; + foreach ($submissionIds as $submissionId) { + $submission = Repo::submission()->get($submissionId); + if (!$submission) { + return $response->withStatus(400)->withJsonError('api.submissions.400.submissionsNotFound'); + } + $publication = $submission->getCurrentPublication(); + if ($publication->getData('status') === Submission::STATUS_PUBLISHED) { + continue; + } + $errors = Repo::publication()->validatePublish($publication, $submission, $allowedLocales, $primaryLocale); + if (!empty($errors)) { + return $response->withStatus(400)->withJson($errors); + } + $validPublications[] = $publication; + } + + foreach ($validPublications as $validPublication) { + Repo::publication()->publish($validPublication); + } + + return $response->withJson(true); + } +} diff --git a/api/v1/_submissions/index.php b/api/v1/_submissions/index.php index ef9e21f9861..32e12592120 100644 --- a/api/v1/_submissions/index.php +++ b/api/v1/_submissions/index.php @@ -12,9 +12,9 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup api_v1_backend + * * @brief Handle requests for backend API. * */ -import('api.v1._submissions.BackendSubmissionsHandler'); -return new BackendSubmissionsHandler(); +return new \APP\API\v1\_submissions\BackendSubmissionsHandler(); diff --git a/api/v1/_uploadPublicFile/index.php b/api/v1/_uploadPublicFile/index.php index 186b0338c7a..460ca10ce84 100644 --- a/api/v1/_uploadPublicFile/index.php +++ b/api/v1/_uploadPublicFile/index.php @@ -11,7 +11,8 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup api_v1_uploadPublicFile + * * @brief Handle API requests for uploadPublicFile. */ -import('lib.pkp.api.v1._uploadPublicFile.PKPUploadPublicFileHandler'); -return new PKPUploadPublicFileHandler(); + +return new \PKP\API\v1\_uploadPublicFile\PKPUploadPublicFileHandler(); diff --git a/api/v1/announcements/index.php b/api/v1/announcements/index.php index 0284f891049..7624ea3690c 100644 --- a/api/v1/announcements/index.php +++ b/api/v1/announcements/index.php @@ -11,7 +11,8 @@ * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @ingroup api_v1_announcements + * * @brief Handle API requests for announcements. */ -import('lib.pkp.api.v1.announcements.PKPAnnouncementHandler'); -return new PKPAnnouncementHandler(); + +return new \PKP\API\v1\announcements\PKPAnnouncementHandler(); diff --git a/api/v1/contexts/index.php b/api/v1/contexts/index.php index 9c56e51bfa9..8f647ce1d4d 100644 --- a/api/v1/contexts/index.php +++ b/api/v1/contexts/index.php @@ -10,7 +10,8 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup api_v1_contexts + * * @brief Handle API requests for contexts (presses). */ -import('lib.pkp.api.v1.contexts.PKPContextHandler'); -return new PKPContextHandler(); + +return new \PKP\API\v1\contexts\PKPContextHandler(); diff --git a/api/v1/dois/DoiHandler.php b/api/v1/dois/DoiHandler.php new file mode 100644 index 00000000000..f81320ee481 --- /dev/null +++ b/api/v1/dois/DoiHandler.php @@ -0,0 +1,77 @@ + DAORegistry::getDAO('ChapterDAO'), + Repo::doi()::TYPE_SUBMISSION_FILE => Repo::submissionFile(), + Repo::doi()::TYPE_REPRESENTATION => DAORegistry::getDAO('PublicationFormatDAO'), + default => null + }; + + if ($pubObjectHandler !== null) { + return $pubObjectHandler; + } + + return parent::getPubObjectHandler($type); + } + + /** + * @copydoc PKPDoiHandler::getViaPubObjectHandler() + */ + protected function getViaPubObjectHandler(mixed $pubObjectHandler, int $pubObjectId): mixed + { + if ($pubObjectHandler instanceof ChapterDAO) { + return $pubObjectHandler->getChapter($pubObjectId); + } elseif ($pubObjectHandler instanceof PublicationFormatDAO) { + return $pubObjectHandler->getById($pubObjectId); + } + + return parent::getViaPubObjectHandler($pubObjectHandler, $pubObjectId); + } + + /** + * @copydoc PKPDoiHandler::editViaPubObjectHandler() + */ + protected function editViaPubObjectHandler(mixed $pubObjectHandler, mixed $pubObject, ?int $doiId): void + { + if ($pubObjectHandler instanceof ChapterDAO) { + $pubObject->setData('doiId', $doiId); + $pubObjectHandler->updateObject($pubObject); + return; + } elseif ($pubObjectHandler instanceof PublicationFormatDAO) { + $pubObject->setData('doiId', $doiId); + $pubObjectHandler->updateObject($pubObject); + return; + } + parent::editViaPubObjectHandler($pubObjectHandler, $pubObject, $doiId); + } +} diff --git a/api/v1/dois/index.php b/api/v1/dois/index.php new file mode 100644 index 00000000000..27da89885d4 --- /dev/null +++ b/api/v1/dois/index.php @@ -0,0 +1,18 @@ +sectionIdsQueryParam; + } +} diff --git a/api/v1/stats/index.php b/api/v1/stats/index.php index c8e5476365f..322e81d1a32 100644 --- a/api/v1/stats/index.php +++ b/api/v1/stats/index.php @@ -12,18 +12,32 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup api_v1_stats + * * @brief Handle API requests for publication statistics * */ +namespace APP\API\v1\stats; + +use APP\core\Application; + $requestPath = Application::get()->getRequest()->getRequestPath(); if (strpos($requestPath, '/stats/publications')) { - import('api.v1.stats.publications.StatsPublicationHandler'); - return new StatsPublicationHandler(); + return new \APP\API\v1\stats\publications\StatsPublicationHandler(); } elseif (strpos($requestPath, '/stats/editorial')) { - import('api.v1.stats.editorial.StatsEditorialHandler'); - return new StatsEditorialHandler(); + return new \APP\API\v1\stats\editorial\StatsEditorialHandler(); } elseif (strpos($requestPath, '/stats/users')) { - import('lib.pkp.api.v1.stats.users.PKPStatsUserHandler'); - return new PKPStatsUserHandler(); + return new \PKP\API\v1\stats\users\PKPStatsUserHandler(); +} elseif (strpos($requestPath, '/stats/contexts')) { + return new \PKP\API\v1\stats\contexts\PKPStatsContextHandler(); +} elseif (strpos($requestPath, '/stats/sushi')) { + return new \APP\API\v1\stats\sushi\StatsSushiHandler(); +} else { + http_response_code('404'); + header('Content-Type: application/json'); + echo json_encode([ + 'error' => 'api.404.endpointNotFound', + 'errorMessage' => __('api.404.endpointNotFound'), + ]); + exit; } diff --git a/api/v1/stats/publications/StatsPublicationHandler.inc.php b/api/v1/stats/publications/StatsPublicationHandler.inc.php deleted file mode 100644 index 41b7a3ac77f..00000000000 --- a/api/v1/stats/publications/StatsPublicationHandler.inc.php +++ /dev/null @@ -1,22 +0,0 @@ -sectionIdsQueryParam; + } +} diff --git a/api/v1/stats/sushi/StatsSushiHandler.php b/api/v1/stats/sushi/StatsSushiHandler.php new file mode 100644 index 00000000000..90d8d24d34e --- /dev/null +++ b/api/v1/stats/sushi/StatsSushiHandler.php @@ -0,0 +1,90 @@ + $this->getEndpointPattern() . '/reports/tr', + 'handler' => [$this, 'getReportsTR'], + 'roles' => $roles + ], + [ + 'pattern' => $this->getEndpointPattern() . '/reports/tr_b3', + 'handler' => [$this, 'getReportsTRB3'], + 'roles' => $roles + ], + ] + ); + } + + /** + * COUNTER 'Title Master Report' [TR]. + * A customizable report detailing activity at the press level + * that allows the user to apply filters and select other configuration options for the report. + */ + public function getReportsTR(SlimHttpRequest $slimRequest, APIResponse $response, array $args): APIResponse + { + return $this->getReportResponse(new TR(), $slimRequest, $response, $args); + } + + /** + * COUNTER 'Book Usage by Access Type' [TR_B3]. + * This is a Standard View of Title Master Report that reports on book usage showing all applicable Metric_Types broken down by Access_Type. + */ + public function getReportsTRB3(SlimHttpRequest $slimRequest, APIResponse $response, array $args): APIResponse + { + return $this->getReportResponse(new TR_B3(), $slimRequest, $response, $args); + } + + /** + * Get the application specific list of reports supported by the API + */ + protected function getReportList(): array + { + return array_merge(parent::getReportList(), [ + [ + 'Report_Name' => 'Title Master Report', + 'Report_ID' => 'TR', + 'Release' => '5', + 'Report_Description' => __('sushi.reports.tr.description'), + 'Path' => 'reports/tr' + ], + [ + 'Report_Name' => 'Book Usage by Access Type', + 'Report_ID' => 'TR_B3', + 'Release' => '5', + 'Report_Description' => __('sushi.reports.tr_b3.description'), + 'Path' => 'reports/tr_b3' + ], + ]); + } +} diff --git a/api/v1/submissions/index.php b/api/v1/submissions/index.php index 9bdb80a9100..f786e90e0c1 100644 --- a/api/v1/submissions/index.php +++ b/api/v1/submissions/index.php @@ -12,14 +12,16 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup api_v1_submissions + * * @brief Handle requests for submission API functions. * */ + +use APP\core\Application; + $requestPath = Application::get()->getRequest()->getRequestPath(); if (strpos($requestPath, '/files')) { - import('lib.pkp.api.v1.submissions.PKPSubmissionFileHandler'); - return new PKPSubmissionFileHandler(); + return new \PKP\API\v1\submissions\PKPSubmissionFileHandler(); } else { - import('lib.pkp.api.v1.submissions.PKPSubmissionHandler'); - return new PKPSubmissionHandler(); -} \ No newline at end of file + return new \PKP\API\v1\submissions\PKPSubmissionHandler(); +} diff --git a/api/v1/temporaryFiles/index.php b/api/v1/temporaryFiles/index.php index f100cf1f101..b08e7736f85 100644 --- a/api/v1/temporaryFiles/index.php +++ b/api/v1/temporaryFiles/index.php @@ -10,7 +10,8 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup api_v1_temporaryFiles + * * @brief Handle API requests for temporary file uploading. */ -import('lib.pkp.api.v1.temporaryFiles.PKPTemporaryFilesHandler'); -return new PKPTemporaryFilesHandler(); + +return new \PKP\API\v1\temporaryFiles\PKPTemporaryFilesHandler(); diff --git a/api/v1/users/UserHandler.inc.php b/api/v1/users/UserHandler.inc.php deleted file mode 100644 index d97ced74b25..00000000000 --- a/api/v1/users/UserHandler.inc.php +++ /dev/null @@ -1,19 +0,0 @@ -getRequest(); + $context = $request->getContext(); + + if (!$context) { + return $response->withStatus(404)->withJsonError('api.404.resourceNotFound'); + } + + $requestParams = $slimRequest->getQueryParams(); + + $vocab = $requestParams['vocab'] ?? ''; + $locale = $requestParams['locale'] ?? Locale::getLocale(); + $term = $requestParams['term'] ?? null; + $codeList = (int) ($requestParams['codeList'] ?? static::LANGUAGE_CODE_LIST); + + if (!in_array($locale, $context->getData('supportedSubmissionLocales'))) { + return $response->withStatus(400)->withJsonError('api.vocabs.400.localeNotSupported', ['locale' => $locale]); + } + + // In order to use the languages from ONIX, this route overwrites needs to overwrite only the SubmissionLanguageDAO::CONTROLLED_VOCAB_SUBMISSION_LANGUAGE vocabulary + if ($vocab !== SubmissionLanguageDAO::CONTROLLED_VOCAB_SUBMISSION_LANGUAGE) { + return parent::getMany(...func_get_args()); + } + + /** @var ONIXCodelistItemDAO */ + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); + $codes = array_map(fn ($value) => trim($value), array_values($onixCodelistItemDao->getCodes('List' . $codeList, [], $term))); + asort($codes); + return $response->withJson($codes, 200); + } +} diff --git a/api/v1/vocabs/index.php b/api/v1/vocabs/index.php index 3a57ddda74b..839e954056c 100644 --- a/api/v1/vocabs/index.php +++ b/api/v1/vocabs/index.php @@ -11,8 +11,8 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup api_v1_vocabs + * * @brief Handle API requests for vocabs. */ -import('api.v1.vocabs.VocabHandler'); -return new VocabHandler(); +return new \APP\API\v1\vocabs\VocabHandler(); diff --git a/cache/.gitignore b/cache/.gitignore index 7f75030631a..005717ead0b 100644 --- a/cache/.gitignore +++ b/cache/.gitignore @@ -1,6 +1,2 @@ -*.php -*.html -*.gz -*.css -URI/ -HTML/ +* +!.gitignore diff --git a/classes/author/Author.php b/classes/author/Author.php new file mode 100644 index 00000000000..1a1c318f5e0 --- /dev/null +++ b/classes/author/Author.php @@ -0,0 +1,47 @@ +getData('isVolumeEditor'); + } + + /** + * Set whether or not this author should be displayed as a volume editor + * + * @param bool $isVolumeEditor + */ + public function setIsVolumeEditor($isVolumeEditor) + { + $this->setData('isVolumeEditor', $isVolumeEditor); + } +} + +if (!PKP_STRICT_MODE) { + // Required for import/export toolset + class_alias('\APP\author\Author', '\Author'); +} diff --git a/classes/author/Collector.php b/classes/author/Collector.php new file mode 100644 index 00000000000..b9baae3fdae --- /dev/null +++ b/classes/author/Collector.php @@ -0,0 +1,54 @@ +dao = $dao; + } + + /** + * Limit results to authors assigned to this chapter by chapterId + */ + public function filterByChapterIds(?array $chapterIds): self + { + $this->chapterIds = $chapterIds; + return $this; + } + + /** + * @copydoc CollectorInterface::getQueryBuilder() + */ + public function getQueryBuilder(): Builder + { + $q = parent::getQueryBuilder(); + + $q->when($this->chapterIds !== null, function ($query) { + $query->whereIn('author_id', function ($query) { + return $query->select('author_id') + ->from('submission_chapter_authors') + ->whereIn('chapter_id', $this->chapterIds); + }); + }); + + return $q; + } +} diff --git a/classes/author/DAO.php b/classes/author/DAO.php new file mode 100644 index 00000000000..b7fab6a235e --- /dev/null +++ b/classes/author/DAO.php @@ -0,0 +1,58 @@ +chapterAuthorsTable)->insert([ + 'author_id' => $authorId, + 'chapter_id' => $chapterId, + 'primary_contact' => $isPrimary, + 'seq' => $sequence, + ]); + } + + /** + * Remove an author from a chapter + */ + public function deleteChapterAuthorById(int $authorId, int $chapterId) + { + DB::table($this->chapterAuthorsTable) + ->where('author_id', '=', $authorId) + ->where('chapter_id', '=', $chapterId) + ->delete(); + } + + /** + * Remove all authors from a chapter + * + * TODO: May need to go (or taken into consideration) to \chapter\DAO when available + */ + public function deleteChapterAuthors(Chapter $chapter) + { + DB::table($this->chapterAuthorsTable) + ->where('chapter_id', '=', $chapter->getId()) + ->delete(); + } +} diff --git a/classes/author/Repository.php b/classes/author/Repository.php new file mode 100644 index 00000000000..6990011c139 --- /dev/null +++ b/classes/author/Repository.php @@ -0,0 +1,59 @@ +dao->insertChapterAuthor( + $authorId, + $chapterId, + $isPrimary, + $sequence + ); + } + + /** + * Remove an author from a chapter. + */ + public function removeFromChapter(int $authorId, int $chapterId) + { + $this->dao->deleteChapterAuthorById( + $authorId, + $chapterId + ); + } + + /** + * Remove all authors from a chapter. + */ + public function removeChapterAuthors(Chapter $chapter) + { + $this->dao->deleteChapterAuthors( + $chapter + ); + } +} diff --git a/classes/codelist/CodelistItem.inc.php b/classes/codelist/CodelistItem.inc.php deleted file mode 100644 index 4ea58d88d47..00000000000 --- a/classes/codelist/CodelistItem.inc.php +++ /dev/null @@ -1,75 +0,0 @@ -getData('text'); - } - - /** - * Set the text component of the codelist. - * @param $text string - */ - function setText($text) { - return $this->setData('text', $text); - } - - /** - * Get codelist code. - * @return string - */ - function getCode() { - return $this->getData('code'); - } - - /** - * Set codelist code. - * @param $code string - */ - function setCode($code) { - return $this->setData('code', $code); - } - - /** - * @return String the numerical value representing this item in the ONIX 3.0 schema - */ - function getOnixSubjectSchemeIdentifier() { - assert(false); // provided by subclasses - } -} - - diff --git a/classes/codelist/CodelistItem.php b/classes/codelist/CodelistItem.php new file mode 100644 index 00000000000..42fa8ef4981 --- /dev/null +++ b/classes/codelist/CodelistItem.php @@ -0,0 +1,84 @@ +getData('text'); + } + + /** + * Set the text component of the codelist. + * + * @param string $text + */ + public function setText($text) + { + return $this->setData('text', $text); + } + + /** + * Get codelist code. + * + * @return string + */ + public function getCode() + { + return $this->getData('code'); + } + + /** + * Set codelist code. + * + * @param string $code + */ + public function setCode($code) + { + return $this->setData('code', $code); + } + + /** + * @return string the numerical value representing this item in the ONIX 3.0 schema + */ + public function getOnixSubjectSchemeIdentifier() + { + assert(false); // provided by subclasses + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\codelist\CodelistItem', '\CodelistItem'); +} diff --git a/classes/codelist/CodelistItemDAO.inc.php b/classes/codelist/CodelistItemDAO.inc.php deleted file mode 100644 index 7b95c896643..00000000000 --- a/classes/codelist/CodelistItemDAO.inc.php +++ /dev/null @@ -1,177 +0,0 @@ -getCacheName(); - - $cache =& Registry::get($cacheName, true, null); - if ($cache === null) { - $cacheManager = CacheManager::getManager(); - $cache = $cacheManager->getFileCache( - $this->getName() . '_codelistItems', $locale, - [$this, '_cacheMiss'] - ); - $cacheTime = $cache->getCacheTime(); - if ($cacheTime !== null && $cacheTime < filemtime($this->getFilename($locale))) { - $cache->flush(); - } - } - - return $cache; - } - - /** - * Handle a cache miss - * @param $cache GenericCache - * @param $id mixed ID that wasn't found in the cache - * @return null - */ - function _cacheMiss($cache, $id) { - $allCodelistItems =& Registry::get('all' . $this->getName() . 'CodelistItems', true, null); - if ($allCodelistItems === null) { - // Add a locale load to the debug notes. - $notes =& Registry::get('system.debug.notes'); - $locale = $cache->cacheId; - if ($locale == null) { - $locale = AppLocale::getLocale(); - } - $filename = $this->getFilename($locale); - $notes[] = ['debug.notes.codelistItemListLoad', ['filename' => $filename]]; - - // Reload locale registry file - $xmlDao = new XMLDAO(); - $nodeName = $this->getName(); // i.e., subject - $data = $xmlDao->parseStruct($filename, [$nodeName]); - - // Build array with ($charKey => [stuff]) - if (isset($data[$nodeName])) { - foreach ($data[$nodeName] as $codelistData) { - $allCodelistItems[$codelistData['attributes']['code']] = [ - $codelistData['attributes']['text'], - ]; - } - } - if (is_array($allCodelistItems)) { - asort($allCodelistItems); - } - $cache->setEntireCache($allCodelistItems); - } - return null; - } - - /** - * Get the cache name for this particular codelist database - * @return string - */ - function getCacheName() { - return $this->getName() . 'Cache'; - } - - /** - * Get the filename of the codelist database - * @param $locale string - * @return string - */ - function getFilename($locale) { - assert(false); - } - - /** - * Get the base node name particular codelist database - * @return string - */ - function getName() { - assert(false); - } - - /** - * Get the name of the CodelistItem subclass. - * @return CodelistItem - */ - function newDataObject() { - assert(false); - } - - /** - * Retrieve a codelist by code. - * @param $codelistId int - * @return CodelistItem - */ - function getByCode($code) { - $cache = $this->_getCache(); - return $this->_fromRow($code, $cache->get($code)); - } - - /** - * Retrieve an array of all the codelist items. - * @param $locale an optional locale to use - * @return array of CodelistItems - */ - function getCodelistItems($locale = null) { - $cache = $this->_getCache($locale); - $returner = []; - foreach ($cache->getContents() as $code => $entry) { - $returner[] = $this->_fromRow($code, $entry); - } - return $returner; - } - - /** - * Retrieve an array of all codelist names. - * @param $locale an optional locale to use - * @return array of CodelistItem names - */ - function getNames($locale = null) { - $cache = $this->_getCache($locale); - $returner = []; - $cacheContents = $cache->getContents(); - if (is_array($cacheContents)) { - foreach ($cache->getContents() as $code => $entry) { - $returner[] = $entry[0]; - } - } - return $returner; - } - - /** - * Internal function to construct and populate a Codelist object - * @param $code string - * @param $entry array - * @return CodelistItem - */ - function _fromRow($code, $entry) { - $codelistItem = $this->newDataObject(); - $codelistItem->setCode($code); - $codelistItem->setText($entry[0]); - - HookRegistry::call('CodelistItemDAO::_fromRow', [&$codelistItem, &$code, &$entry]); - - return $codelistItem; - } -} - diff --git a/classes/codelist/CodelistItemDAO.php b/classes/codelist/CodelistItemDAO.php new file mode 100644 index 00000000000..ffe2e223a49 --- /dev/null +++ b/classes/codelist/CodelistItemDAO.php @@ -0,0 +1,210 @@ +getCacheName(); + + $cache = & Registry::get($cacheName, true, null); + if ($cache === null) { + $cacheManager = CacheManager::getManager(); + $cache = $cacheManager->getFileCache( + $this->getName() . '_codelistItems', + $locale, + [$this, '_cacheMiss'] + ); + $cacheTime = $cache->getCacheTime(); + if ($cacheTime !== null && $cacheTime < filemtime($this->getFilename($locale))) { + $cache->flush(); + } + } + + return $cache; + } + + /** + * Handle a cache miss + * + * @param GenericCache $cache + * @param mixed $id ID that wasn't found in the cache + */ + public function _cacheMiss($cache, $id) + { + $allCodelistItems = & Registry::get('all' . $this->getName() . 'CodelistItems', true, null); + if ($allCodelistItems === null) { + // Add a locale load to the debug notes. + $notes = & Registry::get('system.debug.notes'); + $locale = $cache->cacheId ?? Locale::getLocale(); + $filename = $this->getFilename($locale); + $notes[] = ['debug.notes.codelistItemListLoad', ['filename' => $filename]]; + + // Reload locale registry file + $xmlDao = new XMLDAO(); + $nodeName = $this->getName(); // i.e., subject + $data = $xmlDao->parseStruct($filename, [$nodeName]); + + // Build array with ($charKey => [stuff]) + if (isset($data[$nodeName])) { + foreach ($data[$nodeName] as $codelistData) { + $allCodelistItems[$codelistData['attributes']['code']] = [ + $codelistData['attributes']['text'], + ]; + } + } + if (is_array($allCodelistItems)) { + asort($allCodelistItems); + } + $cache->setEntireCache($allCodelistItems); + } + return null; + } + + /** + * Get the cache name for this particular codelist database + * + * @return string + */ + public function getCacheName() + { + return $this->getName() . 'Cache'; + } + + /** + * Get the filename of the codelist database + * + * @param string $locale + * + * @return string + */ + public function getFilename($locale) + { + assert(false); + } + + /** + * Get the base node name particular codelist database + * + * @return string + */ + public function getName() + { + assert(false); + } + + /** + * Get the name of the CodelistItem subclass. + * + * @return CodelistItem + */ + public function newDataObject() + { + assert(false); + } + + /** + * Retrieve a codelist by code. + * + * @return CodelistItem + */ + public function getByCode($code) + { + $cache = $this->_getCache(); + return $this->_fromRow($code, $cache->get($code)); + } + + /** + * Retrieve an array of all the codelist items. + * + * @param string $locale an optional locale to use + * + * @return array of CodelistItems + */ + public function getCodelistItems($locale = null) + { + $cache = $this->_getCache($locale); + $returner = []; + foreach ($cache->getContents() as $code => $entry) { + $returner[] = $this->_fromRow($code, $entry); + } + return $returner; + } + + /** + * Retrieve an array of all codelist names. + * + * @param string $locale an optional locale to use + * + * @return array of CodelistItem names + */ + public function getNames($locale = null) + { + $cache = $this->_getCache($locale); + $returner = []; + $cacheContents = $cache->getContents(); + if (is_array($cacheContents)) { + foreach ($cache->getContents() as $code => $entry) { + $returner[] = $entry[0]; + } + } + return $returner; + } + + /** + * Internal function to construct and populate a Codelist object + * + * @param string $code + * @param array $entry + * + * @return CodelistItem + */ + public function _fromRow($code, $entry) + { + $codelistItem = $this->newDataObject(); + $codelistItem->setCode($code); + $codelistItem->setText($entry[0]); + + Hook::call('CodelistItemDAO::_fromRow', [&$codelistItem, &$code, &$entry]); + + return $codelistItem; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\codelist\CodelistItemDAO', '\CodelistItemDAO'); +} diff --git a/classes/codelist/ONIXCodelistItem.inc.php b/classes/codelist/ONIXCodelistItem.inc.php deleted file mode 100644 index 0ae7b2884c6..00000000000 --- a/classes/codelist/ONIXCodelistItem.inc.php +++ /dev/null @@ -1,64 +0,0 @@ -getData('text'); - } - - /** - * Set the text component of the codelist. - * @param $text string - */ - function setText($text) { - return $this->setData('text', $text); - } - - /** - * Get codelist code. - * @return string - */ - function getCode() { - return $this->getData('code'); - } - - /** - * Set codelist code. - * @param $code string - */ - function setCode($code) { - return $this->setData('code', $code); - } -} - diff --git a/classes/codelist/ONIXCodelistItem.php b/classes/codelist/ONIXCodelistItem.php new file mode 100644 index 00000000000..2698d10ed25 --- /dev/null +++ b/classes/codelist/ONIXCodelistItem.php @@ -0,0 +1,73 @@ +getData('text'); + } + + /** + * Set the text component of the codelist. + * + * @param string $text + */ + public function setText($text) + { + return $this->setData('text', $text); + } + + /** + * Get codelist code. + * + * @return string + */ + public function getCode() + { + return $this->getData('code'); + } + + /** + * Set codelist code. + * + * @param string $code + */ + public function setCode($code) + { + return $this->setData('code', $code); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\codelist\ONIXCodelistItem', '\ONIXCodelistItem'); +} diff --git a/classes/codelist/ONIXCodelistItemDAO.inc.php b/classes/codelist/ONIXCodelistItemDAO.inc.php deleted file mode 100644 index 218f1c739ad..00000000000 --- a/classes/codelist/ONIXCodelistItemDAO.inc.php +++ /dev/null @@ -1,243 +0,0 @@ -getListName() . 'Cache'; - - $cache =& Registry::get($cacheName, true, null); - if ($cache === null) { - $cacheManager = CacheManager::getManager(); - $cache = $cacheManager->getFileCache( - $this->getListName() . '_codelistItems', $locale, - [$this, '_cacheMiss'] - ); - $cacheTime = $cache->getCacheTime(); - if ($cacheTime !== null && $cacheTime < filemtime($this->getFilename($locale))) { - $cache->flush(); - } - } - - return $cache; - } - - function _cacheMiss($cache, $id) { - $allCodelistItems =& Registry::get('all' . $this->getListName() . 'CodelistItems', true, null); - if ($allCodelistItems === null) { - // Add a locale load to the debug notes. - $notes =& Registry::get('system.debug.notes'); - $locale = $cache->cacheId; - if ($locale == null) { - $locale = AppLocale::getLocale(); - } - $filename = $this->getFilename($locale); - $notes[] = ['debug.notes.codelistItemListLoad', ['filename' => $filename]]; - - // Reload locale registry file - $xmlDao = new XMLDAO(); - $listName = $this->getListName(); // i.e., 'List30' - import('classes.codelist.ONIXParserDOMHandler'); - $handler = new ONIXParserDOMHandler($listName); - - import('lib.pkp.classes.xslt.XSLTransformer'); - import('lib.pkp.classes.file.FileManager'); - import('lib.pkp.classes.file.TemporaryFileManager'); - - $temporaryFileManager = new TemporaryFileManager(); - $fileManager = new FileManager(); - - // Ensure that the temporary file dir exists - $tmpDir = $temporaryFileManager->getBasePath(); - if (!file_exists($tmpDir)) mkdir($tmpDir); - - $tmpName = tempnam($tmpDir, 'ONX'); - $xslTransformer = new XSLTransformer(); - $xslTransformer->setParameters(['listName' => $listName]); - $xslTransformer->setRegisterPHPFunctions(true); - - $xslFile = 'lib/pkp/xml/onixFilter.xsl'; - $filteredXml = $xslTransformer->transform($filename, XSL_TRANSFORMER_DOCTYPE_FILE, $xslFile, XSL_TRANSFORMER_DOCTYPE_FILE, XSL_TRANSFORMER_DOCTYPE_STRING); - if (!$filteredXml) {assert(false);} - - $data = null; - - if (is_writeable($tmpName)) { - $fp = fopen($tmpName, 'wb'); - fwrite($fp, $filteredXml); - fclose($fp); - $data = $xmlDao->parseWithHandler($tmpName, $handler); - $fileManager->deleteByPath($tmpName); - } else { - fatalError('misconfigured directory permissions on: ' . $tmpDir); - } - - // Build array with ($charKey => [stuff]) - - if (isset($data[$listName])) { - foreach ($data[$listName] as $code => $codelistData) { - $allCodelistItems[$code] = $codelistData; - } - } - if (is_array($allCodelistItems)) { - asort($allCodelistItems); - } - - $cache->setEntireCache($allCodelistItems); - - } - return null; - } - - /** - * Get the filename for the ONIX codelist document. Use a localized - * version if available, but if not, fall back on the master locale. - * @param $locale string Locale code - * @return string Path and filename to ONIX codelist document - */ - function getFilename($locale) { - $masterLocale = MASTER_LOCALE; - $localizedFile = "locale/$locale/ONIX_BookProduct_CodeLists.xsd"; - if (AppLocale::isLocaleValid($locale) && file_exists($localizedFile)) { - return $localizedFile; - } - - // Fall back on the version for the master locale. - return "locale/$masterLocale/ONIX_BookProduct_CodeLists.xsd"; - } - - /** - * Set the name of the list we want. - * @param $list string - */ - function setListName($list) { - $this->_list =& $list; - } - - /** - * Get the base node name particular codelist database. - * @return string - */ - function getListName() { - return $this->_list; - } - - /** - * Get the name of the CodelistItem subclass. - * @return ONIXCodelistItem - */ - function newDataObject() { - return new ONIXCodelistItem(); - } - - /** - * Retrieve an array of all the codelist items. - * @param $list the List string for this code list (i.e., List30) - * @param $locale an optional locale to use - * @return array of CodelistItems - */ - function &getCodelistItems($list, $locale = null) { - $this->setListName($list); - $cache =& $this->_getCache($locale); - $returner = []; - foreach ($cache->getContents() as $code => $entry) { - $returner[] =& $this->_fromRow($code, $entry); - } - return $returner; - } - - /** - * Retrieve an array of all codelist codes and values for a given list. - * @param $list the List string for this code list (i.e., List30) - * @param $codesToExclude an optional list of codes to exclude from the returned list - * @param $codesFilter an optional filter to match codes against. - * @param $locale an optional locale to use - * @return array of CodelistItem names - */ - function &getCodes($list, $codesToExclude = [], $codesFilter = null, $locale = null) { - $this->setListName($list); - $cache =& $this->_getCache($locale); - $returner = []; - $cacheContents =& $cache->getContents(); - if ($codesFilter = trim($codesFilter ?? '')) { - $codesFilter = '/' . implode('|', array_map('preg_quote', PKPString::regexp_split('/\s+/', $codesFilter))) . '/i'; - } - if (is_array($cacheContents)) { - foreach ($cache->getContents() as $code => $entry) { - if ($code != '') { - if (!in_array($code, $codesToExclude) && (!$codesFilter || preg_match($codesFilter, $entry[0]))) - $returner[$code] =& $entry[0]; - } - } - } - return $returner; - } - - /** - * Determines if a particular code value is valid for a given list. - * @return boolean - */ - function codeExistsInList($code, $list) { - $listKeys = array_keys($this->getCodes($list)); - return ($code != null && in_array($code, $listKeys)); - } - - /** - * Returns an ONIX code based on a unique value and List number. - * @return string - */ - function getCodeFromValue($value, $list) { - $codes = $this->getCodes($list); - $codes = array_flip($codes); - if (array_key_exists($value, $codes)) { - return $codes[$value]; - } - return ''; - } - - /** - * Internal function to return a Codelist object from a row. - * @param $row array - * @return CodelistItem - */ - function &_fromRow($code, &$entry) { - $codelistItem = $this->newDataObject(); - $codelistItem->setCode($code); - $codelistItem->setText($entry[0]); - - HookRegistry::call('ONIXCodelistItemDAO::_fromRow', [&$codelistItem, &$code, &$entry]); - - return $codelistItem; - } -} - diff --git a/classes/codelist/ONIXCodelistItemDAO.php b/classes/codelist/ONIXCodelistItemDAO.php new file mode 100644 index 00000000000..b0ea94a226f --- /dev/null +++ b/classes/codelist/ONIXCodelistItemDAO.php @@ -0,0 +1,268 @@ +getListName() . 'Cache'; + + $cache = & Registry::get($cacheName, true, null); + if ($cache === null) { + $cacheManager = CacheManager::getManager(); + $cache = $cacheManager->getFileCache( + $this->getListName() . '_codelistItems', + $locale, + [$this, '_cacheMiss'] + ); + $cacheTime = $cache->getCacheTime(); + if ($cacheTime !== null && $cacheTime < filemtime($this->getFilename($locale))) { + $cache->flush(); + } + } + + return $cache; + } + + public function _cacheMiss($cache, $id) + { + $allCodelistItems = & Registry::get('all' . $this->getListName() . 'CodelistItems', true, null); + if ($allCodelistItems === null) { + // Add a locale load to the debug notes. + $notes = & Registry::get('system.debug.notes'); + $locale = $cache->cacheId ?? Locale::getLocale(); + $filename = $this->getFilename($locale); + $notes[] = ['debug.notes.codelistItemListLoad', ['filename' => $filename]]; + + // Reload locale registry file + $xmlDao = new XMLDAO(); + $listName = $this->getListName(); // i.e., 'List30' + $handler = new ONIXParserDOMHandler($listName); + + $temporaryFileManager = new TemporaryFileManager(); + $fileManager = new FileManager(); + + // Ensure that the temporary file dir exists + $tmpDir = $temporaryFileManager->getBasePath(); + if (!file_exists($tmpDir)) { + mkdir($tmpDir); + } + + $tmpName = tempnam($tmpDir, 'ONX'); + $xslTransformer = new XSLTransformer(); + $xslTransformer->setParameters(['listName' => $listName]); + $xslTransformer->setRegisterPHPFunctions(true); + + $xslFile = 'lib/pkp/xml/onixFilter.xsl'; + $filteredXml = $xslTransformer->transform($filename, XSLTransformer::XSL_TRANSFORMER_DOCTYPE_FILE, $xslFile, XSLTransformer::XSL_TRANSFORMER_DOCTYPE_FILE, XSLTransformer::XSL_TRANSFORMER_DOCTYPE_STRING); + if (!$filteredXml) { + assert(false); + } + + $data = null; + + if (is_writeable($tmpName)) { + $fp = fopen($tmpName, 'wb'); + fwrite($fp, $filteredXml); + fclose($fp); + $data = $xmlDao->parseWithHandler($tmpName, $handler); + $fileManager->deleteByPath($tmpName); + } else { + fatalError('misconfigured directory permissions on: ' . $tmpDir); + } + + // Build array with ($charKey => [stuff]) + + if (isset($data[$listName])) { + foreach ($data[$listName] as $code => $codelistData) { + $allCodelistItems[$code] = $codelistData; + } + } + if (is_array($allCodelistItems)) { + asort($allCodelistItems); + } + + $cache->setEntireCache($allCodelistItems); + } + return null; + } + + /** + * Get the filename for the ONIX codelist document. Use a localized + * version if available, but if not, fall back on the master locale. + * + * @param string $locale Locale code + * + * @return string Path and filename to ONIX codelist document + */ + public function getFilename($locale) + { + $masterLocale = LocaleInterface::DEFAULT_LOCALE; + $localizedFile = "locale/{$locale}/ONIX_BookProduct_CodeLists.xsd"; + if (Locale::isLocaleValid($locale) && file_exists($localizedFile)) { + return $localizedFile; + } + + // Fall back on the version for the master locale. + return "locale/{$masterLocale}/ONIX_BookProduct_CodeLists.xsd"; + } + + /** + * Set the name of the list we want. + * + * @param string $list + */ + public function setListName($list) + { + $this->_list = & $list; + } + + /** + * Get the base node name particular codelist database. + * + * @return string + */ + public function getListName() + { + return $this->_list; + } + + /** + * Get the name of the CodelistItem subclass. + * + * @return ONIXCodelistItem + */ + public function newDataObject() + { + return new ONIXCodelistItem(); + } + + /** + * Retrieve an array of all the codelist items. + * + * @param string $list the List string for this code list (i.e., List30) + * @param string $locale an optional locale to use + * + * @return array of CodelistItems + */ + public function &getCodelistItems($list, $locale = null) + { + $this->setListName($list); + $cache = & $this->_getCache($locale); + $returner = []; + foreach ($cache->getContents() as $code => $entry) { + $returner[] = & $this->_fromRow($code, $entry); + } + return $returner; + } + + /** + * Retrieve an array of all codelist codes and values for a given list. + * + * @param string $list the List string for this code list (i.e., List30) + * @param array $codesToExclude an optional list of codes to exclude from the returned list + * @param string $codesFilter an optional filter to match codes against. + * @param string $locale an optional locale to use + * + * @return array of CodelistItem names + */ + public function &getCodes($list, $codesToExclude = [], $codesFilter = null, $locale = null) + { + $this->setListName($list); + $cache = & $this->_getCache($locale); + $returner = []; + $cacheContents = & $cache->getContents(); + if ($codesFilter = trim($codesFilter ?? '')) { + $codesFilter = '/' . implode('|', array_map(fn ($term) => preg_quote($term, '/'), PKPString::regexp_split('/\s+/', $codesFilter))) . '/i'; + } + if (is_array($cacheContents)) { + foreach ($cache->getContents() as $code => $entry) { + if ($code != '') { + if (!in_array($code, $codesToExclude) && (!$codesFilter || preg_match($codesFilter, $entry[0]))) { + $returner[$code] = & $entry[0]; + } + } + } + } + return $returner; + } + + /** + * Determines if a particular code value is valid for a given list. + * + * @return bool + */ + public function codeExistsInList($code, $list) + { + $listKeys = array_keys($this->getCodes($list)); + return ($code != null && in_array($code, $listKeys)); + } + + /** + * Returns an ONIX code based on a unique value and List number. + * + * @return string + */ + public function getCodeFromValue($value, $list) + { + $codes = $this->getCodes($list); + $codes = array_flip($codes); + if (array_key_exists($value, $codes)) { + return $codes[$value]; + } + return ''; + } + + /** + * Internal function to return a Codelist object from a row. + * + * @return ONIXCodelistItem + */ + public function &_fromRow($code, &$entry) + { + $codelistItem = $this->newDataObject(); + $codelistItem->setCode($code); + $codelistItem->setText($entry[0]); + + Hook::call('ONIXCodelistItemDAO::_fromRow', [&$codelistItem, &$code, &$entry]); + + return $codelistItem; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\codelist\ONIXCodelistItemDAO', '\ONIXCodelistItemDAO'); +} diff --git a/classes/codelist/ONIXParserDOMHandler.inc.php b/classes/codelist/ONIXParserDOMHandler.inc.php deleted file mode 100644 index 0694581a642..00000000000 --- a/classes/codelist/ONIXParserDOMHandler.inc.php +++ /dev/null @@ -1,133 +0,0 @@ -... - */ - -import('lib.pkp.classes.xml.XMLParserDOMHandler'); -import('lib.pkp.classes.xml.XMLNode'); - -class ONIXParserDOMHandler extends XMLParserDOMHandler { - - /** @var string the list being searched for */ - var $_listName = null; - - /** @var boolean to maintain state */ - var $_foundRequestedList = false; - - /** @var array of items the parser eventually returns */ - var $_listItems = null; - - /** @var string to store the current character data */ - var $_currentValue = null; - - /** @var boolean currently inside an xs:documentation element */ - var $_insideDocumentation = false; - - /** - * Constructor. - * @param $listName string - */ - function __construct($listName) { - parent::__construct(); - $this->_listName = $listName; - $this->_listItems = array(); - } - - /** - * Callback function to act as the start element handler. - * @param $parser XMLParser - * @param $tag string - * @param $attributes array - */ - function startElement($parser, $tag, $attributes) { - $this->currentData = null; - - switch ($tag) { - case 'xs:simpleType': - if ($attributes['name'] == $this->_listName) { - $this->_foundRequestedList = true; - } - break; - case 'xs:enumeration': - if ($this->_foundRequestedList) { - $this->_currentValue = $attributes['value']; - $this->_listItems[$this->_currentValue] = array(); // initialize the array cell - } - break; - case 'xs:documentation': - if ($this->_foundRequestedList) { - $this->_insideDocumentation = true; - } - break; - } - - $node = new XMLNode($tag); - $node->setAttributes($attributes); - if (isset($this->currentNode)) { - $this->currentNode->addChild($node); - $node->setParent($this->currentNode); - - } else { - $this->rootNode = $node; - } - - $this->currentNode = $node; - } - - /** - * Callback function to act as the character data handler. - * @param $parser XMLParser - * @param $data string - */ - function characterData($parser, $data) { - if ($this->_insideDocumentation) { - if (count($this->_listItems[$this->_currentValue]) == 1) - $this->_listItems[$this->_currentValue][0] .= $data; - else - $this->_listItems[$this->_currentValue][0] = $data; - } - } - - /** - * Callback function to act as the end element handler. - * @param $parser XMLParser - * @param $tag string - */ - function endElement($parser, $tag) { - - switch ($tag) { - case 'xs:simpleType': - $this->_foundRequestedList = false; - break; - case 'xs:documentation': - $this->_insideDocumentation = false; - break; - } - } - - /** - * Returns the array of found list items - * @return array - */ - function getResult() { - return array($this->_listName => $this->_listItems); - } -} - - diff --git a/classes/codelist/ONIXParserDOMHandler.php b/classes/codelist/ONIXParserDOMHandler.php new file mode 100644 index 00000000000..ff62e516207 --- /dev/null +++ b/classes/codelist/ONIXParserDOMHandler.php @@ -0,0 +1,149 @@ +... + */ + +namespace APP\codelist; + +use PKP\xml\XMLNode; +use PKP\xml\XMLParserDOMHandler; +use XMLParser; + +class ONIXParserDOMHandler extends XMLParserDOMHandler +{ + /** @var string the list being searched for */ + public $_listName = null; + + /** @var bool to maintain state */ + public $_foundRequestedList = false; + + /** @var array of items the parser eventually returns */ + public $_listItems = null; + + /** @var string to store the current character data */ + public $_currentValue = null; + + /** @var bool currently inside an xs:documentation element */ + public $_insideDocumentation = false; + + /** + * Constructor. + * + * @param string $listName + */ + public function __construct($listName) + { + parent::__construct(); + $this->_listName = $listName; + $this->_listItems = []; + } + + /** + * Callback function to act as the start element handler. + * + * @param XMLParser $parser + * @param string $tag + * @param array $attributes + */ + public function startElement($parser, $tag, $attributes) + { + $this->currentData = null; + + switch ($tag) { + case 'xs:simpleType': + if ($attributes['name'] == $this->_listName) { + $this->_foundRequestedList = true; + } + break; + case 'xs:enumeration': + if ($this->_foundRequestedList) { + $this->_currentValue = $attributes['value']; + $this->_listItems[$this->_currentValue] = []; // initialize the array cell + } + break; + case 'xs:documentation': + if ($this->_foundRequestedList) { + $this->_insideDocumentation = true; + } + break; + } + + $node = new XMLNode($tag); + $node->setAttributes($attributes); + if (isset($this->currentNode)) { + $this->currentNode->addChild($node); + $node->setParent($this->currentNode); + } else { + $this->rootNode = $node; + } + + $this->currentNode = $node; + } + + /** + * Callback function to act as the character data handler. + * + * @param XMLParser $parser + * @param string $data + */ + public function characterData($parser, $data) + { + if ($this->_insideDocumentation) { + if (count($this->_listItems[$this->_currentValue]) == 1) { + $this->_listItems[$this->_currentValue][0] .= $data; + } else { + $this->_listItems[$this->_currentValue][0] = $data; + } + } + } + + /** + * Callback function to act as the end element handler. + * + * @param XMLParser $parser + * @param string $tag + */ + public function endElement($parser, $tag) + { + switch ($tag) { + case 'xs:simpleType': + $this->_foundRequestedList = false; + break; + case 'xs:documentation': + $this->_insideDocumentation = false; + break; + } + } + + /** + * Returns the array of found list items + * + * @return array + */ + public function getResult() + { + return [$this->_listName => $this->_listItems]; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\codelist\ONIXParserDOMHandler', '\ONIXParserDOMHandler'); +} diff --git a/classes/codelist/Qualifier.inc.php b/classes/codelist/Qualifier.inc.php deleted file mode 100644 index 9862ef5a9d3..00000000000 --- a/classes/codelist/Qualifier.inc.php +++ /dev/null @@ -1,46 +0,0 @@ -_onixSubjectSchemeIdentifier; - } -} - - diff --git a/classes/codelist/Qualifier.php b/classes/codelist/Qualifier.php new file mode 100644 index 00000000000..ebe5b052631 --- /dev/null +++ b/classes/codelist/Qualifier.php @@ -0,0 +1,44 @@ +_onixSubjectSchemeIdentifier; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\codelist\Qualifier', '\Qualifier'); +} diff --git a/classes/codelist/QualifierDAO.inc.php b/classes/codelist/QualifierDAO.inc.php deleted file mode 100644 index 5b791c00472..00000000000 --- a/classes/codelist/QualifierDAO.inc.php +++ /dev/null @@ -1,61 +0,0 @@ -_onixSubjectSchemeIdentifier; - } -} - - diff --git a/classes/codelist/Subject.php b/classes/codelist/Subject.php new file mode 100644 index 00000000000..c2e92d0871b --- /dev/null +++ b/classes/codelist/Subject.php @@ -0,0 +1,46 @@ +_onixSubjectSchemeIdentifier; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\codelist\Subject', '\Subject'); +} diff --git a/classes/codelist/SubjectDAO.inc.php b/classes/codelist/SubjectDAO.inc.php deleted file mode 100644 index c0c74909d41..00000000000 --- a/classes/codelist/SubjectDAO.inc.php +++ /dev/null @@ -1,60 +0,0 @@ -id, 'PUT', $action, $locales); - - $this->addField(new FieldSelectSubmissions('submissionIds', [ - 'label' => __('catalog.manage.findSubmissions'), - 'value' => [], - 'apiUrl' => $apiUrl, - 'getParams' => [ - 'stageIds' => [WORKFLOW_STAGE_ID_EDITING, WORKFLOW_STAGE_ID_PRODUCTION], - 'status' => [STATUS_QUEUED, STATUS_SCHEDULED], - ], - ])); - } -} diff --git a/classes/components/forms/catalog/AddEntryForm.php b/classes/components/forms/catalog/AddEntryForm.php new file mode 100644 index 00000000000..c797d461403 --- /dev/null +++ b/classes/components/forms/catalog/AddEntryForm.php @@ -0,0 +1,46 @@ +id, 'PUT', $action, $locales); + + $this->addField(new FieldSelectSubmissions('submissionIds', [ + 'label' => __('catalog.manage.findSubmissions'), + 'value' => [], + 'apiUrl' => $apiUrl, + 'getParams' => [ + 'stageIds' => [WORKFLOW_STAGE_ID_EDITING, WORKFLOW_STAGE_ID_PRODUCTION], + 'status' => [PKPSubmission::STATUS_QUEUED, PKPSubmission::STATUS_SCHEDULED], + ], + ])); + } +} diff --git a/classes/components/forms/context/AppearanceAdvancedForm.inc.php b/classes/components/forms/context/AppearanceAdvancedForm.inc.php deleted file mode 100644 index cdd1782f88a..00000000000 --- a/classes/components/forms/context/AppearanceAdvancedForm.inc.php +++ /dev/null @@ -1,38 +0,0 @@ -addField(new FieldText('coverThumbnailsMaxWidth', [ - 'label' => __('manager.setup.coverThumbnailsMaxWidth'), - 'description' => __('manager.setup.coverThumbnailsMaxWidthHeight.description'), - 'value' => $context->getData('coverThumbnailsMaxWidth'), - ])) - ->addField(new FieldText('coverThumbnailsMaxHeight', [ - 'label' => __('manager.setup.coverThumbnailsMaxHeight'), - 'description' => __('manager.setup.coverThumbnailsMaxWidthHeight.description'), - 'value' => $context->getData('coverThumbnailsMaxHeight'), - ])); - } -} diff --git a/classes/components/forms/context/AppearanceAdvancedForm.php b/classes/components/forms/context/AppearanceAdvancedForm.php new file mode 100644 index 00000000000..86aaab72507 --- /dev/null +++ b/classes/components/forms/context/AppearanceAdvancedForm.php @@ -0,0 +1,42 @@ +addField(new FieldText('coverThumbnailsMaxWidth', [ + 'label' => __('manager.setup.coverThumbnailsMaxWidth'), + 'description' => __('manager.setup.coverThumbnailsMaxWidthHeight.description'), + 'value' => $context->getData('coverThumbnailsMaxWidth'), + ])) + ->addField(new FieldText('coverThumbnailsMaxHeight', [ + 'label' => __('manager.setup.coverThumbnailsMaxHeight'), + 'description' => __('manager.setup.coverThumbnailsMaxWidthHeight.description'), + 'value' => $context->getData('coverThumbnailsMaxHeight'), + ])); + } +} diff --git a/classes/components/forms/context/AppearanceSetupForm.inc.php b/classes/components/forms/context/AppearanceSetupForm.inc.php deleted file mode 100644 index 1a3b5bc0c94..00000000000 --- a/classes/components/forms/context/AppearanceSetupForm.inc.php +++ /dev/null @@ -1,72 +0,0 @@ -getSortSelectOptions(); - $catalogSortOptions = array_map(function($key, $label) { - return ['value' => $key, 'label' => $label]; - }, array_keys($catalogSortOptions), $catalogSortOptions); - - $this->addField(new FieldOptions('displayInSpotlight', [ - 'label' => __('manager.setup.displayInSpotlight.label'), - 'value' => (bool) $context->getData('displayInSpotlight'), - 'options' => [ - ['value' => 'true', 'label' => __('manager.setup.displayInSpotlight')], - ], - ])) - ->addField(new FieldOptions('displayFeaturedBooks', [ - 'label' => __('manager.setup.displayFeaturedBooks.label'), - 'value' => (bool) $context->getData('displayFeaturedBooks'), - 'options' => [ - ['value' => 'true', 'label' => __('manager.setup.displayFeaturedBooks')], - ], - ])) - ->addField(new FieldOptions('displayNewReleases', [ - 'label' => __('manager.setup.displayNewReleases.label'), - 'value' => (bool) $context->getData('displayNewReleases'), - 'options' => [ - ['value' => 'true', 'label' => __('manager.setup.displayNewReleases')], - ], - ])) - ->addField(new FieldOptions('catalogSortOption', [ - 'label' => __('catalog.sortBy'), - 'description' => __('catalog.sortBy.catalogDescription'), - 'type' => 'radio', - 'value' => $context->getData('catalogSortOption'), - 'options' => $catalogSortOptions, - ])) - ->addField(new FieldUploadImage('pressThumbnail', [ - 'label' => __('manager.setup.pressThumbnail'), - 'tooltip' => __('manager.setup.pressThumbnail.description'), - 'isMultilingual' => true, - 'value' => $context->getData('pressThumbnail'), - 'baseUrl' => $baseUrl, - 'options' => [ - 'url' => $temporaryFileApiUrl, - ], - ]), [FIELD_POSITION_AFTER, 'pageHeaderLogoImage']); - } -} diff --git a/classes/components/forms/context/AppearanceSetupForm.php b/classes/components/forms/context/AppearanceSetupForm.php new file mode 100644 index 00000000000..bd20670ab52 --- /dev/null +++ b/classes/components/forms/context/AppearanceSetupForm.php @@ -0,0 +1,77 @@ +getSortSelectOptions(); + $catalogSortOptions = array_map(function ($key, $label) { + return ['value' => $key, 'label' => $label]; + }, array_keys($catalogSortOptions), $catalogSortOptions); + + $this->addField(new FieldOptions('displayInSpotlight', [ + 'label' => __('manager.setup.displayInSpotlight.label'), + 'value' => (bool) $context->getData('displayInSpotlight'), + 'options' => [ + ['value' => 'true', 'label' => __('manager.setup.displayInSpotlight')], + ], + ])) + ->addField(new FieldOptions('displayFeaturedBooks', [ + 'label' => __('manager.setup.displayFeaturedBooks.label'), + 'value' => (bool) $context->getData('displayFeaturedBooks'), + 'options' => [ + ['value' => 'true', 'label' => __('manager.setup.displayFeaturedBooks')], + ], + ])) + ->addField(new FieldOptions('displayNewReleases', [ + 'label' => __('manager.setup.displayNewReleases.label'), + 'value' => (bool) $context->getData('displayNewReleases'), + 'options' => [ + ['value' => 'true', 'label' => __('manager.setup.displayNewReleases')], + ], + ])) + ->addField(new FieldOptions('catalogSortOption', [ + 'label' => __('catalog.sortBy'), + 'description' => __('catalog.sortBy.catalogDescription'), + 'type' => 'radio', + 'value' => $context->getData('catalogSortOption'), + 'options' => $catalogSortOptions, + ])) + ->addField(new FieldUploadImage('pressThumbnail', [ + 'label' => __('manager.setup.pressThumbnail'), + 'tooltip' => __('manager.setup.pressThumbnail.description'), + 'isMultilingual' => true, + 'value' => $context->getData('pressThumbnail'), + 'baseUrl' => $baseUrl, + 'options' => [ + 'url' => $temporaryFileApiUrl, + ], + ]), [FIELD_POSITION_AFTER, 'pageHeaderLogoImage']); + } +} diff --git a/classes/components/forms/context/ContextForm.inc.php b/classes/components/forms/context/ContextForm.inc.php deleted file mode 100644 index d7d6edcde22..00000000000 --- a/classes/components/forms/context/ContextForm.inc.php +++ /dev/null @@ -1,34 +0,0 @@ -addField(new FieldOptions('enabled', [ - 'label' => __('common.enable'), - 'options' => [ - ['value' => true, 'label' => __('manager.setup.enablePressInstructions')], - ], - 'value' => $context ? (bool) $context->getData('enabled') : false, - ])); - } -} diff --git a/classes/components/forms/context/ContextForm.php b/classes/components/forms/context/ContextForm.php new file mode 100644 index 00000000000..6a86f05d12b --- /dev/null +++ b/classes/components/forms/context/ContextForm.php @@ -0,0 +1,38 @@ +addField(new FieldOptions('enabled', [ + 'label' => __('common.enable'), + 'options' => [ + ['value' => true, 'label' => __('manager.setup.enablePressInstructions')], + ], + 'value' => $context ? (bool) $context->getData('enabled') : false, + ])); + } +} diff --git a/classes/components/forms/context/DoiSetupSettingsForm.php b/classes/components/forms/context/DoiSetupSettingsForm.php new file mode 100644 index 00000000000..6219aa2f04f --- /dev/null +++ b/classes/components/forms/context/DoiSetupSettingsForm.php @@ -0,0 +1,83 @@ +objectTypeOptions = [ + [ + 'value' => Repo::doi()::TYPE_PUBLICATION, + 'label' => __('common.publications'), + 'allowedBy' => [], + ], + [ + 'value' => Repo::doi()::TYPE_CHAPTER, + 'label' => __('submission.chapters'), + 'allowedBy' => [], + ], + [ + 'value' => Repo::doi()::TYPE_REPRESENTATION, + 'label' => __('monograph.publicationFormats'), + 'allowedBy' => [], + ], + [ + 'value' => Repo::doi()::TYPE_SUBMISSION_FILE, + 'label' => __('doi.manager.settings.enableSubmissionFileDoi'), + 'allowedBy' => [], + ], + ]; + Hook::call('DoiSetupSettingsForm::getObjectTypes', [&$this->objectTypeOptions]); + if ($this->enabledRegistrationAgency === null) { + $filteredOptions = $this->objectTypeOptions; + } else { + $filteredOptions = array_filter($this->objectTypeOptions, function ($option) { + return in_array($this->enabledRegistrationAgency, $option['allowedBy']); + }); + } + + // Added in PKPDoiSetupSettingsForm, but not currently applicable to OMP + $this->removeField(Context::SETTING_DOI_AUTOMATIC_DEPOSIT); + + $this->addField(new FieldOptions(Context::SETTING_ENABLED_DOI_TYPES, [ + 'label' => __('doi.manager.settings.doiObjects'), + 'description' => __('doi.manager.settings.doiObjectsRequired'), + 'groupId' => self::DOI_SETTINGS_GROUP, + 'options' => $filteredOptions, + 'value' => $context->getData(Context::SETTING_ENABLED_DOI_TYPES) ? $context->getData(Context::SETTING_ENABLED_DOI_TYPES) : [], + ]), [FIELD_POSITION_BEFORE, Context::SETTING_DOI_PREFIX]) + ->addField(new FieldText(Repo::doi()::CUSTOM_CHAPTER_PATTERN, [ + 'label' => __('submission.chapters'), + 'groupId' => self::DOI_CUSTOM_SUFFIX_GROUP, + 'value' => $context->getData(Repo::doi()::CUSTOM_CHAPTER_PATTERN), + ]), [FIELD_POSITION_BEFORE, Repo::doi()::CUSTOM_REPRESENTATION_PATTERN]) + ->addField(new FieldText(Repo::doi()::CUSTOM_FILE_PATTERN, [ + 'label' => __('doi.manager.settings.enableSubmissionFileDoi'), + 'groupId' => self::DOI_CUSTOM_SUFFIX_GROUP, + 'value' => $context->getData(Repo::doi()::CUSTOM_FILE_PATTERN), + ])); + } +} diff --git a/classes/components/forms/context/LicenseForm.inc.php b/classes/components/forms/context/LicenseForm.inc.php deleted file mode 100644 index b51a7e045cf..00000000000 --- a/classes/components/forms/context/LicenseForm.inc.php +++ /dev/null @@ -1,17 +0,0 @@ -getCodes('List44'); - $codeTypeOptions = array_map(function($code, $name) { - return ['value' => $code, 'label' => $name]; - }, array_keys($codeTypes), $codeTypes); - - $this->addGroup([ - 'id' => 'onix', - 'label' => __('manager.settings.publisher.identity'), - 'description' => __('manager.settings.publisher.identity.description'), - ], [FIELD_POSITION_AFTER, 'identity']) - ->addField(new FieldText('publisher', [ - 'label' => __('manager.settings.publisher'), - 'value' => $context->getData('publisher'), - 'size' => 'large', - 'groupId' => 'onix', - ])) - ->addField(new FieldText('location', [ - 'label' => __('manager.settings.location'), - 'value' => $context->getData('location'), - 'groupId' => 'onix', - ])) - ->addField(new FieldSelect('codeType', [ - 'label' => __('manager.settings.publisherCodeType'), - 'value' => $context->getData('codeType'), - 'options' => $codeTypeOptions, - 'groupId' => 'onix', - ])) - ->addField(new FieldText('codeValue', [ - 'label' => __('manager.settings.publisherCode'), - 'value' => $context->getData('codeValue'), - 'groupId' => 'onix', - ])); - } -} diff --git a/classes/components/forms/context/MastheadForm.php b/classes/components/forms/context/MastheadForm.php new file mode 100644 index 00000000000..ccd9816de65 --- /dev/null +++ b/classes/components/forms/context/MastheadForm.php @@ -0,0 +1,68 @@ +getCodes('List44'); + $codeTypeOptions = array_map(function ($code, $name) { + return ['value' => $code, 'label' => $name]; + }, array_keys($codeTypes), $codeTypes); + + $this->addGroup([ + 'id' => 'onix', + 'label' => __('manager.settings.publisher.identity'), + 'description' => __('manager.settings.publisher.identity.description'), + ], [FIELD_POSITION_AFTER, 'identity']) + ->addField(new FieldText('publisher', [ + 'label' => __('manager.settings.publisher'), + 'value' => $context->getData('publisher'), + 'size' => 'large', + 'groupId' => 'onix', + ])) + ->addField(new FieldText('location', [ + 'label' => __('manager.settings.location'), + 'value' => $context->getData('location'), + 'groupId' => 'onix', + ])) + ->addField(new FieldSelect('codeType', [ + 'label' => __('manager.settings.publisherCodeType'), + 'value' => $context->getData('codeType'), + 'options' => $codeTypeOptions, + 'groupId' => 'onix', + ])) + ->addField(new FieldText('codeValue', [ + 'label' => __('manager.settings.publisherCode'), + 'value' => $context->getData('codeValue'), + 'groupId' => 'onix', + ])); + } +} diff --git a/classes/components/forms/context/MetadataSettingsForm.inc.php b/classes/components/forms/context/MetadataSettingsForm.inc.php deleted file mode 100644 index 7bb4fab71d3..00000000000 --- a/classes/components/forms/context/MetadataSettingsForm.inc.php +++ /dev/null @@ -1,50 +0,0 @@ -addField(new FieldOptions('enablePublisherId', [ - 'label' => __('submission.publisherId'), - 'description' => __('submission.publisherId.description'), - 'options' => [ - [ - 'value' => 'publication', - 'label' => __('submission.publisherId.enable', ['objects' => __('common.publications')]), - ], - [ - 'value' => 'chapter', - 'label' => __('submission.publisherId.enable', ['objects' => __('submission.chapters')]), - ], - [ - 'value' => 'representation', - 'label' => __('submission.publisherId.enable', ['objects' => __('monograph.publicationFormats')]), - ], - [ - 'value' => 'file', - 'label' => __('submission.publisherId.enable', ['objects' => __('submission.files')]), - ], - ], - 'value' => $context->getData('enablePublisherId') ? $context->getData('enablePublisherId') : [], - ])); - } -} diff --git a/classes/components/forms/context/MetadataSettingsForm.php b/classes/components/forms/context/MetadataSettingsForm.php new file mode 100644 index 00000000000..d35c3b23235 --- /dev/null +++ b/classes/components/forms/context/MetadataSettingsForm.php @@ -0,0 +1,54 @@ +addField(new FieldOptions('enablePublisherId', [ + 'label' => __('submission.publisherId'), + 'description' => __('submission.publisherId.description'), + 'options' => [ + [ + 'value' => 'publication', + 'label' => __('submission.publisherId.enable', ['objects' => __('common.publications')]), + ], + [ + 'value' => 'chapter', + 'label' => __('submission.publisherId.enable', ['objects' => __('submission.chapters')]), + ], + [ + 'value' => 'representation', + 'label' => __('submission.publisherId.enable', ['objects' => __('monograph.publicationFormats')]), + ], + [ + 'value' => 'file', + 'label' => __('submission.publisherId.enable', ['objects' => __('submission.files')]), + ], + ], + 'value' => $context->getData('enablePublisherId') ? $context->getData('enablePublisherId') : [], + ])); + } +} diff --git a/classes/components/forms/context/ReviewGuidanceForm.inc.php b/classes/components/forms/context/ReviewGuidanceForm.inc.php deleted file mode 100644 index f67248aa3da..00000000000 --- a/classes/components/forms/context/ReviewGuidanceForm.inc.php +++ /dev/null @@ -1,34 +0,0 @@ -addField(new FieldRichTextarea('internalReviewGuidelines', [ - 'label' => __('manager.setup.internalReviewGuidelines'), - 'helpTopic' => 'settings', - 'helpSection' => 'workflow-review-guidelines', - 'value' => $context->getData('internalReviewGuidelines'), - 'isMultilingual' => true, - ]), [FIELD_POSITION_BEFORE, 'reviewGuidelines']); - } -} diff --git a/classes/components/forms/context/ReviewGuidanceForm.php b/classes/components/forms/context/ReviewGuidanceForm.php new file mode 100644 index 00000000000..5b6378645d4 --- /dev/null +++ b/classes/components/forms/context/ReviewGuidanceForm.php @@ -0,0 +1,38 @@ +addField(new FieldRichTextarea('internalReviewGuidelines', [ + 'label' => __('manager.setup.internalReviewGuidelines'), + 'helpTopic' => 'settings', + 'helpSection' => 'workflow-review-guidelines', + 'value' => $context->getData('internalReviewGuidelines'), + 'isMultilingual' => true, + ]), [FIELD_POSITION_BEFORE, 'reviewGuidelines']); + } +} diff --git a/classes/components/forms/context/UserAccessForm.inc.php b/classes/components/forms/context/UserAccessForm.inc.php deleted file mode 100644 index 48f1736437b..00000000000 --- a/classes/components/forms/context/UserAccessForm.inc.php +++ /dev/null @@ -1,34 +0,0 @@ -addField(new FieldOptions('restrictMonographAccess', [ - 'label' => __('manager.setup.siteAccess.viewContent'), - 'value' => (bool) $context->getData('restrictMonographAccess'), - 'options' => [ - ['value' => true, 'label' => __('manager.setup.restrictMonographAccess')], - ], - ]), [FIELD_POSITION_AFTER, 'restrictSiteAccess']); - } -} diff --git a/classes/components/forms/context/UserAccessForm.php b/classes/components/forms/context/UserAccessForm.php new file mode 100644 index 00000000000..6b9d7ae23db --- /dev/null +++ b/classes/components/forms/context/UserAccessForm.php @@ -0,0 +1,38 @@ +addField(new FieldOptions('restrictMonographAccess', [ + 'label' => __('manager.setup.siteAccess.viewContent'), + 'value' => (bool) $context->getData('restrictMonographAccess'), + 'options' => [ + ['value' => true, 'label' => __('manager.setup.restrictMonographAccess')], + ], + ]), [FIELD_POSITION_AFTER, 'restrictSiteAccess']); + } +} diff --git a/classes/components/forms/counter/CounterReportForm.php b/classes/components/forms/counter/CounterReportForm.php new file mode 100644 index 00000000000..b7213d74edb --- /dev/null +++ b/classes/components/forms/counter/CounterReportForm.php @@ -0,0 +1,52 @@ +reportFields['PR'] = array_map(function ($field) { + $field->groupId = 'default'; + return $field; + }, $formFieldsPR); + + $formFieldsPR_P1 = PR_P1::getReportSettingsFormFields(); + $this->reportFields['PR_P1'] = array_map(function ($field) { + $field->groupId = 'default'; + return $field; + }, $formFieldsPR_P1); + + $formFieldsTR = TR::getReportSettingsFormFields(); + $this->reportFields['TR'] = array_map(function ($field) { + $field->groupId = 'default'; + return $field; + }, $formFieldsTR); + + $formFieldsTR_B3 = TR_B3::getReportSettingsFormFields(); + $this->reportFields['TR_B3'] = array_map(function ($field) { + $field->groupId = 'default'; + return $field; + }, $formFieldsTR_B3); + } +} diff --git a/classes/components/forms/publication/CatalogEntryForm.inc.php b/classes/components/forms/publication/CatalogEntryForm.inc.php deleted file mode 100644 index d6902893cad..00000000000 --- a/classes/components/forms/publication/CatalogEntryForm.inc.php +++ /dev/null @@ -1,109 +0,0 @@ -action = $action; - $this->successMessage = __('publication.catalogEntry.success'); - $this->locales = $locales; - - // Series options - $seriesOptions = [['value' => '', 'label' => '']]; - $result = DAORegistry::getDAO('SeriesDAO')->getByContextId($submission->getData('contextId')); - while (!$result->eof()) { - $series = $result->next(); - $seriesOptions[] = [ - 'value' => (int) $series->getId(), - 'label' => (($series->getIsInactive())? __('publication.inactiveSeries', ['series' => $series->getLocalizedTitle()]) : $series->getLocalizedTitle()), - ]; - } - - $this->addField(new FieldText('datePublished', [ - 'label' => __('publication.datePublished'), - 'value' => $publication->getData('datePublished'), - ])) - ->addField(new FieldSelect('seriesId', [ - 'label' => __('series.series'), - 'value' => $publication->getData('seriesId'), - 'options' => $seriesOptions, - ])) - ->addField(new FieldText('seriesPosition', [ - 'label' => __('submission.submit.seriesPosition'), - 'description' => __('submission.submit.seriesPosition.description'), - 'value' => $publication->getData('seriesPosition'), - ])); - - // Categories - $categoryOptions = []; - $categories = \DAORegistry::getDAO('CategoryDAO')->getByContextId($submission->getData('contextId'))->toAssociativeArray(); - foreach ($categories as $category) { - $label = $category->getLocalizedTitle(); - if ($category->getParentId()) { - $label = $categories[$category->getParentId()]->getLocalizedTitle() . ' > ' . $label; - } - $categoryOptions[] = [ - 'value' => (int) $category->getId(), - 'label' => $label, - ]; - } - if (!empty($categoryOptions)) { - $this->addField(new FieldOptions('categoryIds', [ - 'label' => __('submission.submit.placement.categories'), - 'value' => (array) $publication->getData('categoryIds'), - 'options' => $categoryOptions, - ])); - } - - $this->addField(new FieldText('urlPath', [ - 'label' => __('publication.urlPath'), - 'description' => __('publication.urlPath.description'), - 'value' => $publication->getData('urlPath'), - ])) - ->addField(new FieldUploadImage('coverImage', [ - 'label' => __('monograph.coverImage'), - 'value' => $publication->getData('coverImage'), - 'isMultilingual' => true, - 'baseUrl' => $baseUrl, - 'options' => [ - 'url' => $temporaryFileApiUrl, - ], - ])); - } -} diff --git a/classes/components/forms/publication/CatalogEntryForm.php b/classes/components/forms/publication/CatalogEntryForm.php new file mode 100644 index 00000000000..65475ba7880 --- /dev/null +++ b/classes/components/forms/publication/CatalogEntryForm.php @@ -0,0 +1,125 @@ +action = $action; + $this->successMessage = __('publication.catalogEntry.success'); + $this->locales = $locales; + + // Series options + $seriesOptions = [['value' => '', 'label' => '']]; + $result = Repo::section() + ->getCollector() + ->filterByContextIds([$submission->getData('contextId')]) + ->getMany(); + foreach ($result as $series) { + $seriesOptions[] = [ + 'value' => (int) $series->getId(), + 'label' => (($series->getIsInactive()) ? __('publication.inactiveSeries', ['series' => $series->getLocalizedTitle()]) : $series->getLocalizedTitle()), + ]; + } + + $this->addField(new FieldText('datePublished', [ + 'label' => __('publication.datePublished'), + 'value' => $publication->getData('datePublished'), + ])) + ->addField(new FieldSelect('seriesId', [ + 'label' => __('series.series'), + 'value' => $publication->getData('seriesId'), + 'options' => $seriesOptions, + ])) + ->addField(new FieldText('seriesPosition', [ + 'label' => __('submission.submit.seriesPosition'), + 'description' => __('submission.submit.seriesPosition.description'), + 'value' => $publication->getData('seriesPosition'), + ])); + + // Categories + $categoryOptions = []; + $categories = Repo::category()->getCollector() + ->filterByContextIds([$submission->getData('contextId')]) + ->getMany() + ->toArray(); + + foreach ($categories as $category) { + $label = $category->getLocalizedTitle(); + if ($category->getParentId()) { + $label = $categories[$category->getParentId()]->getLocalizedTitle() . ' > ' . $label; + } + $categoryOptions[] = [ + 'value' => (int) $category->getId(), + 'label' => $label, + ]; + } + if (!empty($categoryOptions)) { + $this->addField(new FieldOptions('categoryIds', [ + 'label' => __('submission.submit.placement.categories'), + 'value' => (array) $publication->getData('categoryIds'), + 'options' => $categoryOptions, + ])); + } + + $this->addField(new FieldText('urlPath', [ + 'label' => __('publication.urlPath'), + 'description' => __('publication.urlPath.description'), + 'value' => $publication->getData('urlPath'), + ])) + ->addField(new FieldUploadImage('coverImage', [ + 'label' => __('monograph.coverImage'), + 'value' => $publication->getData('coverImage'), + 'isMultilingual' => true, + 'baseUrl' => $baseUrl, + 'options' => [ + 'url' => $temporaryFileApiUrl, + ], + ])); + } +} diff --git a/classes/components/forms/publication/ContributorForm.php b/classes/components/forms/publication/ContributorForm.php new file mode 100644 index 00000000000..d78aef7f6c3 --- /dev/null +++ b/classes/components/forms/publication/ContributorForm.php @@ -0,0 +1,41 @@ +getData('workType') === Submission::WORK_TYPE_EDITED_VOLUME) { + $this->addField(new FieldOptions('isVolumeEditor', [ + 'label' => __('author.volumeEditor'), + 'value' => false, + 'options' => [ + [ + 'value' => true, + 'label' => __('author.isVolumeEditor'), + ], + ], + ])); + } + } +} diff --git a/classes/components/forms/publication/PublicationLicenseForm.php b/classes/components/forms/publication/PublicationLicenseForm.php new file mode 100644 index 00000000000..527511873ae --- /dev/null +++ b/classes/components/forms/publication/PublicationLicenseForm.php @@ -0,0 +1,79 @@ + $userGroups User groups in this context + */ + public function __construct($action, $locales, $publication, $context, $userGroups) + { + parent::__construct($action, $locales, $publication, $context, $userGroups); + + $submission = Repo::submission()->get($publication->getData('submissionId')); + if ($submission->getData('workType') === Submission::WORK_TYPE_EDITED_VOLUME) { + // Get the name of the context's license setting + $chapterLicenseUrlDescription = ''; + $licenseOptions = Application::getCCLicenseOptions(); + if ($publication->getData('licenseUrl')) { + if (array_key_exists($publication->getData('licenseUrl'), $licenseOptions)) { + $licenseName = __($licenseOptions[$publication->getData('licenseUrl')]); + } else { + $licenseName = $publication->getData('licenseUrl'); + } + $chapterLicenseUrlDescription = __('submission.license.description', [ + 'licenseUrl' => $publication->getData('licenseUrl'), + 'licenseName' => $licenseName, + ]); + } elseif ($context->getData('licenseUrl')) { + if (array_key_exists($context->getData('licenseUrl'), $licenseOptions)) { + $licenseName = __($licenseOptions[$context->getData('licenseUrl')]); + } else { + $licenseName = $context->getData('licenseUrl'); + } + $chapterLicenseUrlDescription = __('submission.license.description', [ + 'licenseUrl' => $context->getData('licenseUrl'), + 'licenseName' => $licenseName, + ]); + } + + $this->addField(new FieldText('chapterLicenseUrl', [ + 'label' => __('publication.chapterDefaultLicenseURL'), + 'description' => $chapterLicenseUrlDescription, + 'optIntoEdit' => ($publication->getData('licenseUrl') || $context->getData('licenseUrl')) && !$publication->getData('chapterLicenseUrl'), + 'optIntoEditLabel' => __('common.override'), + 'value' => $publication->getData('chapterLicenseUrl'), + ])); + } + } +} diff --git a/classes/components/forms/publication/PublishForm.inc.php b/classes/components/forms/publication/PublishForm.inc.php deleted file mode 100644 index 7f7c63a9d18..00000000000 --- a/classes/components/forms/publication/PublishForm.inc.php +++ /dev/null @@ -1,79 +0,0 @@ -action = $action; - $this->successMessage = __('publication.publish.success'); - $this->errors = $requirementErrors; - $this->publication = $publication; - $this->submissionContext = $submissionContext; - - // Set separate messages and buttons if publication requirements have passed - if (empty($requirementErrors)) { - $msg = __('publication.publish.confirmation'); - $this->addPage([ - 'id' => 'default', - 'submitButton' => [ - 'label' => __('publication.publish'), - ], - ]); - } else { - $msg = '

' . __('publication.publish.requirements') . '

'; - $msg .= ''; - $this->addPage([ - 'id' => 'default', - ]); - } - - $this->addGroup([ - 'id' => 'default', - 'pageId' => 'default', - ]) - ->addField(new FieldHTML('validation', [ - 'description' => $msg, - 'groupId' => 'default', - ])); - } -} diff --git a/classes/components/forms/publication/PublishForm.php b/classes/components/forms/publication/PublishForm.php new file mode 100644 index 00000000000..8beb3d4b51d --- /dev/null +++ b/classes/components/forms/publication/PublishForm.php @@ -0,0 +1,88 @@ +action = $action; + $this->successMessage = __('publication.publish.success'); + $this->errors = $requirementErrors; + $this->publication = $publication; + $this->submissionContext = $submissionContext; + + // Set separate messages and buttons if publication requirements have passed + if (empty($requirementErrors)) { + $msg = __('publication.publish.confirmation'); + $this->addPage([ + 'id' => 'default', + 'submitButton' => [ + 'label' => __('publication.publish'), + ], + ]); + } else { + $msg = '

' . __('publication.publish.requirements') . '

'; + $msg .= ''; + $this->addPage([ + 'id' => 'default', + ]); + } + + $this->addGroup([ + 'id' => 'default', + 'pageId' => 'default', + ]) + ->addField(new FieldHTML('validation', [ + 'description' => $msg, + 'groupId' => 'default', + ])); + } +} diff --git a/classes/components/forms/submission/AudienceForm.inc.php b/classes/components/forms/submission/AudienceForm.inc.php deleted file mode 100644 index 73a3d910cd4..00000000000 --- a/classes/components/forms/submission/AudienceForm.inc.php +++ /dev/null @@ -1,85 +0,0 @@ -action = $action; - $this->successMessage = __('monograph.audience.success'); - - $audienceCodes = $this->getOptions(DAORegistry::getDAO('ONIXCodelistItemDAO')->getCodes('List28')); - $audienceRangeQualifiers = $this->getOptions(DAORegistry::getDAO('ONIXCodelistItemDAO')->getCodes('List30')); - $audienceRanges = $this->getOptions(DAORegistry::getDAO('ONIXCodelistItemDAO')->getCodes('List77')); - - $this->addField(new FieldSelect('audience', [ - 'label' => __('monograph.audience'), - 'value' => $submission->getData('audience'), - 'options' => $audienceCodes, - ])) - ->addField(new FieldSelect('audienceRangeQualifier', [ - 'label' => __('monograph.audience.rangeQualifier'), - 'value' => $submission->getData('audienceRangeQualifier'), - 'options' => $audienceRangeQualifiers, - ])) - ->addField(new FieldSelect('audienceRangeFrom', [ - 'label' => __('monograph.audience.rangeFrom'), - 'value' => $submission->getData('audienceRangeFrom'), - 'options' => $audienceRanges, - ])) - ->addField(new FieldSelect('audienceRangeTo', [ - 'label' => __('monograph.audience.rangeTo'), - 'value' => $submission->getData('audienceRangeTo'), - 'options' => $audienceRanges, - ])) - ->addField(new FieldSelect('audienceRangeExact', [ - 'label' => __('monograph.audience.rangeExact'), - 'value' => $submission->getData('audienceRangeExact'), - 'options' => $audienceRanges, - ])); - } - - /** - * Convert Onix code list to select field options - * - * @param array the list items - * @return array - */ - public function getOptions($list) { - $options = []; - foreach ($list as $value => $label) { - $options[] = [ - 'value' => $value, - 'label' => $label, - ]; - } - return $options; - } -} diff --git a/classes/components/forms/submission/AudienceForm.php b/classes/components/forms/submission/AudienceForm.php new file mode 100644 index 00000000000..6692a1e4a7c --- /dev/null +++ b/classes/components/forms/submission/AudienceForm.php @@ -0,0 +1,99 @@ +action = $action; + $this->successMessage = __('monograph.audience.success'); + + /** @var ONIXCodelistItemDAO */ + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); + $audienceCodes = $this->getOptions($onixCodelistItemDao->getCodes('List28')); + $audienceRangeQualifiers = $this->getOptions($onixCodelistItemDao->getCodes('List30')); + $audienceRanges = $this->getOptions($onixCodelistItemDao->getCodes('List77')); + + $this->addField(new FieldSelect('audience', [ + 'label' => __('monograph.audience'), + 'value' => $submission->getData('audience'), + 'options' => $audienceCodes, + ])) + ->addField(new FieldSelect('audienceRangeQualifier', [ + 'label' => __('monograph.audience.rangeQualifier'), + 'value' => $submission->getData('audienceRangeQualifier'), + 'options' => $audienceRangeQualifiers, + ])) + ->addField(new FieldSelect('audienceRangeFrom', [ + 'label' => __('monograph.audience.rangeFrom'), + 'value' => $submission->getData('audienceRangeFrom'), + 'options' => $audienceRanges, + ])) + ->addField(new FieldSelect('audienceRangeTo', [ + 'label' => __('monograph.audience.rangeTo'), + 'value' => $submission->getData('audienceRangeTo'), + 'options' => $audienceRanges, + ])) + ->addField(new FieldSelect('audienceRangeExact', [ + 'label' => __('monograph.audience.rangeExact'), + 'value' => $submission->getData('audienceRangeExact'), + 'options' => $audienceRanges, + ])); + } + + /** + * Convert Onix code list to select field options + * + * @param array $list the list items + * + * @return array + */ + public function getOptions($list) + { + $options = []; + foreach ($list as $value => $label) { + $options[] = [ + 'value' => $value, + 'label' => $label, + ]; + } + return $options; + } +} diff --git a/classes/components/forms/submission/ForTheEditors.php b/classes/components/forms/submission/ForTheEditors.php new file mode 100644 index 00000000000..aae0364d58e --- /dev/null +++ b/classes/components/forms/submission/ForTheEditors.php @@ -0,0 +1,57 @@ +addSeriesField($series, $publication); + } + + protected function addSeriesField(array $series, Publication $publication): void + { + if (empty($series)) { + return; + } + $seriesOptions = []; + /** @var Section $iSeries */ + foreach ($series as $iSeries) { + $seriesOptions[] = [ + 'value' => $iSeries->getId(), + 'label' => $iSeries->getLocalizedFullTitle(), + ]; + } + $this->addField(new FieldOptions('seriesId', [ + 'label' => __('series.series'), + 'type' => 'radio', + 'options' => $seriesOptions, + 'value' => $publication->getData('seriesId') ?? '', + ])); + } +} diff --git a/classes/components/forms/submission/PublicationDatesForm.inc.php b/classes/components/forms/submission/PublicationDatesForm.inc.php deleted file mode 100644 index 1e8303939f7..00000000000 --- a/classes/components/forms/submission/PublicationDatesForm.inc.php +++ /dev/null @@ -1,48 +0,0 @@ -action = $action; - $this->successMessage = __('publication.catalogEntry.success'); - - $this->addField(new FieldOptions('enableChapterPublicationDates', [ - 'label' => __('submission.catalogEntry.chapterPublicationDates'), - 'type' => 'checkbox', - 'value' => $submission->getData('enableChapterPublicationDates'), - 'options' => [ - ['value' => true, 'false' => __('submission.catalogEntry.disableChapterPublicationDates')], - ['value' => true, 'label' => __('submission.catalogEntry.enableChapterPublicationDates')], - ] - ])); - } -} diff --git a/classes/components/forms/submission/PublicationDatesForm.php b/classes/components/forms/submission/PublicationDatesForm.php new file mode 100644 index 00000000000..757b17bcdac --- /dev/null +++ b/classes/components/forms/submission/PublicationDatesForm.php @@ -0,0 +1,57 @@ +action = $action; + $this->successMessage = __('publication.catalogEntry.success'); + + $this->addField(new FieldOptions('enableChapterPublicationDates', [ + 'label' => __('submission.catalogEntry.chapterPublicationDates'), + 'type' => 'radio', + 'value' => $submission->getData('enableChapterPublicationDates'), + 'options' => [ + ['value' => false, 'label' => __('submission.catalogEntry.disableChapterPublicationDates')], + ['value' => true, 'label' => __('submission.catalogEntry.enableChapterPublicationDates')], + ] + ])); + } +} diff --git a/classes/components/forms/submission/ReconfigureSubmission.php b/classes/components/forms/submission/ReconfigureSubmission.php new file mode 100644 index 00000000000..165df0cf113 --- /dev/null +++ b/classes/components/forms/submission/ReconfigureSubmission.php @@ -0,0 +1,48 @@ +addField(new FieldOptions('workType', [ + 'type' => 'radio', + 'label' => __('submission.workflowType'), + 'description' => __('submission.workflowType.description'), + 'options' => [ + [ + 'value' => Submission::WORK_TYPE_AUTHORED_WORK, + 'label' => __('submission.workflowType.authoredWork'), + ], + [ + 'value' => Submission::WORK_TYPE_EDITED_VOLUME, + 'label' => __('submission.workflowType.editedVolume'), + ], + ], + 'value' => $submission->getData('workType'), + 'isRequired' => true, + ])); + } +} diff --git a/classes/components/forms/submission/StartSubmission.php b/classes/components/forms/submission/StartSubmission.php new file mode 100644 index 00000000000..6c7cd0e3753 --- /dev/null +++ b/classes/components/forms/submission/StartSubmission.php @@ -0,0 +1,48 @@ +addField(new FieldOptions('workType', [ + 'type' => 'radio', + 'label' => __('submission.workflowType'), + 'description' => __('submission.workflowType.description'), + 'options' => [ + [ + 'value' => Submission::WORK_TYPE_AUTHORED_WORK, + 'label' => __('submission.workflowType.authoredWork'), + ], + [ + 'value' => Submission::WORK_TYPE_EDITED_VOLUME, + 'label' => __('submission.workflowType.editedVolume'), + ], + ], + 'value' => Submission::WORK_TYPE_AUTHORED_WORK, + 'isRequired' => true, + + ]), [FIELD_POSITION_AFTER, 'title']); + } +} diff --git a/classes/components/listPanels/CatalogListPanel.inc.php b/classes/components/listPanels/CatalogListPanel.inc.php deleted file mode 100644 index 71277c92133..00000000000 --- a/classes/components/listPanels/CatalogListPanel.inc.php +++ /dev/null @@ -1,168 +0,0 @@ -getRequest(); - $context = $request->getContext(); - - list($catalogSortBy, $catalogSortDir) = explode('-', $context->getData('catalogSortOption')); - $catalogSortBy = empty($catalogSortBy) ? ORDERBY_DATE_PUBLISHED : $catalogSortBy; - $catalogSortDir = $catalogSortDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC'; - $config['catalogSortBy'] = $catalogSortBy; - $config['catalogSortDir'] = $catalogSortDir; - - $this->getParams = array_merge( - $this->getParams, - [ - 'status' => STATUS_PUBLISHED, - 'orderByFeatured' => true, - 'orderBy' => $catalogSortBy, - 'orderDirection' => $catalogSortDir, - ] - ); - - $config = parent::getConfig(); - - $config['apiUrl'] = $this->apiUrl; - $config['count'] = $this->count; - $config['getParams'] = $this->getParams; - $config['itemsMax'] = $this->itemsMax; - - $config['filters'] = []; - - if ($context) { - $config['contextId'] = $context->getId(); - - $categories = []; - $categoryDao = \DAORegistry::getDAO('CategoryDAO'); - $categoriesResult = $categoryDao->getByContextId($context->getId()); - while (!$categoriesResult->eof()) { - $category = $categoriesResult->next(); - list($categorySortBy, $categorySortDir) = explode('-', $category->getSortOption()); - $categorySortDir = empty($categorySortDir) ? $catalogSortDir : ($categorySortDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC'); - $categories[] = [ - 'param' => 'categoryIds', - 'value' => (int) $category->getId(), - 'title' => $category->getLocalizedTitle(), - 'sortBy' => $categorySortBy, - 'sortDir' => $categorySortDir, - ]; - } - if (count($categories)) { - $config['filters'][] = [ - 'heading' => __('catalog.categories'), - 'filters' => $categories, - ]; - } - - $series = []; - $seriesDao = \DAORegistry::getDAO('SeriesDAO'); - $seriesResult = $seriesDao->getByPressId($context->getId()); - while (!$seriesResult->eof()) { - $seriesObj = $seriesResult->next(); - list($seriesSortBy, $seriesSortDir) = explode('-', $seriesObj->getSortOption()); - $seriesSortDir = empty($seriesSortDir) ? $catalogSortDir : ($seriesSortDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC'); - $series[] = [ - 'param' => 'seriesIds', - 'value' => (int) $seriesObj->getId(), - 'title' => $seriesObj->getLocalizedTitle(), - 'sortBy' => $seriesSortBy, - 'sortDir' => $seriesSortDir, - ]; - } - if (count($series)) { - $config['filters'][] = [ - 'heading' => __('catalog.manage.series'), - 'filters' => $series, - ]; - } - } - - // Attach a CSRF token for post requests - $config['csrfToken'] = $request->getSession()->getCSRFToken(); - - // Get the form to add a new entry - $addEntryApiUrl = $request->getDispatcher()->url( - $request, - ROUTE_API, - $context->getPath(), - '_submissions/addToCatalog' - ); - $searchSubmissionsApiUrl = $request->getDispatcher()->url( - $request, - ROUTE_API, - $context->getPath(), - 'submissions' - ); - $supportedFormLocales = $context->getSupportedFormLocales(); - $localeNames = \AppLocale::getAllLocales(); - $locales = array_map(function($localeKey) use ($localeNames) { - return ['key' => $localeKey, 'label' => $localeNames[$localeKey]]; - }, $supportedFormLocales); - $addEntryForm = new \APP\components\forms\catalog\AddEntryForm($addEntryApiUrl, $searchSubmissionsApiUrl, $locales); - $config['addEntryForm'] = $addEntryForm->getConfig(); - - $templateMgr = \TemplateManager::getManager($request); - $templateMgr->setConstants([ - 'ASSOC_TYPE_PRESS', - 'ASSOC_TYPE_CATEGORY', - 'ASSOC_TYPE_SERIES', - ]); - - $templateMgr->setLocaleKeys([ - 'submission.catalogEntry.new', - 'submission.list.saveFeatureOrder', - 'submission.list.orderFeatures', - 'catalog.manage.categoryFeatured', - 'catalog.manage.seriesFeatured', - 'catalog.manage.featured', - 'catalog.manage.feature.categoryNewRelease', - 'catalog.manage.feature.seriesNewRelease', - 'catalog.manage.feature.newRelease', - 'submission.list.orderingFeatures', - 'submission.list.orderingFeaturesSection', - 'catalog.manage.isFeatured', - 'catalog.manage.isNotFeatured', - 'catalog.manage.isNewRelease', - 'catalog.manage.isNotNewRelease', - 'submission.list.viewEntry', - 'submission.list.viewSubmission', - ]); - - return $config; - } -} diff --git a/classes/components/listPanels/CatalogListPanel.php b/classes/components/listPanels/CatalogListPanel.php new file mode 100644 index 00000000000..f1ced69a352 --- /dev/null +++ b/classes/components/listPanels/CatalogListPanel.php @@ -0,0 +1,175 @@ +getRequest(); + $context = $request->getContext(); + + $catalogSortBy = Collector::ORDERBY_DATE_PUBLISHED; + $catalogSortDir = 'DESC'; + if ($context->getData('catalogSortOption')) { + [$catalogSortBy, $catalogSortDir] = explode('-', $context->getData('catalogSortOption')); + } + $config['catalogSortBy'] = $catalogSortBy; + $config['catalogSortDir'] = $catalogSortDir; + + $this->getParams = array_merge( + $this->getParams, + [ + 'status' => PKPSubmission::STATUS_PUBLISHED, + 'orderByFeatured' => true, + 'orderBy' => $catalogSortBy, + 'orderDirection' => $catalogSortDir, + ] + ); + + $config = parent::getConfig(); + + $config['apiUrl'] = $this->apiUrl; + $config['count'] = $this->count; + $config['getParams'] = $this->getParams; + $config['itemsMax'] = $this->itemsMax; + + $config['filters'] = []; + + if ($context) { + $config['contextId'] = $context->getId(); + + $categories = []; + $categoriesCollection = Repo::category()->getCollector() + ->filterByContextIds([$context->getId()]) + ->getMany(); + + foreach ($categoriesCollection as $category) { + [$categorySortBy, $categorySortDir] = explode('-', $category->getSortOption()); + $categorySortDir = empty($categorySortDir) ? $catalogSortDir : ($categorySortDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC'); + $categories[] = [ + 'param' => 'categoryIds', + 'value' => (int) $category->getId(), + 'title' => $category->getLocalizedTitle(), + 'sortBy' => $categorySortBy, + 'sortDir' => $categorySortDir, + ]; + } + if (count($categories)) { + $config['filters'][] = [ + 'heading' => __('catalog.categories'), + 'filters' => $categories, + ]; + } + + $series = []; + $seriesResult = Repo::section() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ->getMany(); + foreach ($seriesResult as $seriesObj) { + [$seriesSortBy, $seriesSortDir] = explode('-', $seriesObj->getSortOption()); + $seriesSortDir = empty($seriesSortDir) ? $catalogSortDir : ($seriesSortDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC'); + $series[] = [ + 'param' => 'seriesIds', + 'value' => (int) $seriesObj->getId(), + 'title' => $seriesObj->getLocalizedTitle(), + 'sortBy' => $seriesSortBy, + 'sortDir' => $seriesSortDir, + ]; + } + if (count($series)) { + $config['filters'][] = [ + 'heading' => __('catalog.manage.series'), + 'filters' => $series, + ]; + } + } + + // Attach a CSRF token for post requests + $config['csrfToken'] = $request->getSession()->getCSRFToken(); + + // Get the form to add a new entry + $addEntryApiUrl = $request->getDispatcher()->url( + $request, + PKPApplication::ROUTE_API, + $context->getPath(), + '_submissions/addToCatalog' + ); + $searchSubmissionsApiUrl = $request->getDispatcher()->url( + $request, + PKPApplication::ROUTE_API, + $context->getPath(), + 'submissions' + ); + + $locales = $context->getSupportedFormLocaleNames(); + $locales = array_map(fn (string $locale, string $name) => ['key' => $locale, 'label' => $name], array_keys($locales), $locales); + $addEntryForm = new \APP\components\forms\catalog\AddEntryForm($addEntryApiUrl, $searchSubmissionsApiUrl, $locales); + $config['addEntryForm'] = $addEntryForm->getConfig(); + + $templateMgr = TemplateManager::getManager($request); + $templateMgr->setConstants([ + 'ASSOC_TYPE_PRESS' => Application::ASSOC_TYPE_PRESS, + 'ASSOC_TYPE_CATEGORY' => Application::ASSOC_TYPE_CATEGORY, + 'ASSOC_TYPE_SERIES' => Application::ASSOC_TYPE_SERIES, + ]); + + $templateMgr->setLocaleKeys([ + 'submission.catalogEntry.new', + 'submission.list.saveFeatureOrder', + 'submission.list.orderFeatures', + 'catalog.manage.categoryFeatured', + 'catalog.manage.seriesFeatured', + 'catalog.manage.featured', + 'catalog.manage.feature.categoryNewRelease', + 'catalog.manage.feature.seriesNewRelease', + 'catalog.manage.feature.newRelease', + 'submission.list.orderingFeatures', + 'submission.list.orderingFeaturesSection', + 'catalog.manage.isFeatured', + 'catalog.manage.isNotFeatured', + 'catalog.manage.isNewRelease', + 'catalog.manage.isNotNewRelease', + 'submission.list.viewEntry', + 'submission.list.viewSubmission', + ]); + + return $config; + } +} diff --git a/classes/components/listPanels/ContributorsListPanel.php b/classes/components/listPanels/ContributorsListPanel.php new file mode 100644 index 00000000000..8124df5e99c --- /dev/null +++ b/classes/components/listPanels/ContributorsListPanel.php @@ -0,0 +1,31 @@ +locales, + $this->submission, + $this->context + ); + } +} diff --git a/classes/components/listPanels/DoiListPanel.php b/classes/components/listPanels/DoiListPanel.php new file mode 100644 index 00000000000..f1a358e0dbf --- /dev/null +++ b/classes/components/listPanels/DoiListPanel.php @@ -0,0 +1,70 @@ +getRequest(); + $templateMgr = TemplateManager::getManager($request); + $templateMgr->setLocaleKeys([ + 'manager.dois.formatIdentifier.file' + ]); + + return $config; + } + + /** + * Add any application-specific config to the list panel setup + */ + protected function setAppConfig(array &$config): void + { + $config['executeActionApiUrl'] = $this->doiApiUrl . '/submissions'; + $config['filters'][] = [ + 'heading' => __('manager.dois.publicationStatus'), + 'filters' => [ + [ + 'title' => __('publication.status.published'), + 'param' => 'status', + 'value' => (string) PKPSubmission::STATUS_PUBLISHED + ], + [ + 'title' => __('publication.status.unpublished'), + 'param' => 'status', + 'value' => PKPSubmission::STATUS_QUEUED . ', ' . PKPSubmission::STATUS_SCHEDULED + ] + ] + ]; + + // Provide required locale keys + $request = Application::get()->getRequest(); + $templateMgr = TemplateManager::getManager($request); + $templateMgr->setLocaleKeys(['submission.monograph']); + } +} diff --git a/classes/components/listPanels/EmailTemplatesListPanel.inc.php b/classes/components/listPanels/EmailTemplatesListPanel.inc.php deleted file mode 100644 index b7e5b4d2401..00000000000 --- a/classes/components/listPanels/EmailTemplatesListPanel.inc.php +++ /dev/null @@ -1,30 +0,0 @@ - 'stageIds', - 'value' => WORKFLOW_STAGE_ID_SUBMISSION, - 'title' => __('manager.publication.submissionStage'), - ), - array( - 'param' => 'stageIds', - 'value' => WORKFLOW_STAGE_ID_INTERNAL_REVIEW, - 'title' => __('workflow.review.internalReview'), - ), - array( - 'param' => 'stageIds', - 'value' => WORKFLOW_STAGE_ID_EXTERNAL_REVIEW, - 'title' => __('workflow.review.externalReview'), - ), - array( - 'param' => 'stageIds', - 'value' => WORKFLOW_STAGE_ID_EDITING, - 'title' => __('submission.copyediting'), - ), - array( - 'param' => 'stageIds', - 'value' => WORKFLOW_STAGE_ID_PRODUCTION, - 'title' => __('manager.publication.productionStage'), - ), - ); - } -} diff --git a/classes/components/listPanels/SubmissionsListPanel.php b/classes/components/listPanels/SubmissionsListPanel.php new file mode 100644 index 00000000000..a092feca1ff --- /dev/null +++ b/classes/components/listPanels/SubmissionsListPanel.php @@ -0,0 +1,57 @@ + 'stageIds', + 'value' => WORKFLOW_STAGE_ID_SUBMISSION, + 'title' => __('manager.publication.submissionStage'), + ], + [ + 'param' => 'stageIds', + 'value' => WORKFLOW_STAGE_ID_INTERNAL_REVIEW, + 'title' => __('workflow.review.internalReview'), + ], + [ + 'param' => 'stageIds', + 'value' => WORKFLOW_STAGE_ID_EXTERNAL_REVIEW, + 'title' => __('workflow.review.externalReview'), + ], + [ + 'param' => 'stageIds', + 'value' => WORKFLOW_STAGE_ID_EDITING, + 'title' => __('submission.copyediting'), + ], + [ + 'param' => 'stageIds', + 'value' => WORKFLOW_STAGE_ID_PRODUCTION, + 'title' => __('manager.publication.productionStage'), + ], + ]; + } +} diff --git a/classes/controllers/grid/users/author/form/AuthorForm.php b/classes/controllers/grid/users/author/form/AuthorForm.php new file mode 100644 index 00000000000..38adbda1c41 --- /dev/null +++ b/classes/controllers/grid/users/author/form/AuthorForm.php @@ -0,0 +1,25 @@ +app->bind(Request::class, PKPRequest::class); + + $this->app->bind(\APP\submissionFile\Collector::class, SubmissionFileCollector::class); + $this->app->bind(\APP\submissionFile\SubmissionFile::class, BaseSubmissionFile::class); + } +} diff --git a/classes/core/Application.inc.php b/classes/core/Application.inc.php deleted file mode 100644 index 5dbd79b318e..00000000000 --- a/classes/core/Application.inc.php +++ /dev/null @@ -1,217 +0,0 @@ - full.class.Path for this application. - * @return array - */ - public function getDAOMap() { - return array_merge(parent::getDAOMap(), array( - 'AuthorDAO' => 'classes.monograph.AuthorDAO', - 'ChapterAuthorDAO' => 'classes.monograph.ChapterAuthorDAO', - 'ChapterDAO' => 'classes.monograph.ChapterDAO', - 'FeatureDAO' => 'classes.press.FeatureDAO', - 'IdentificationCodeDAO' => 'classes.publicationFormat.IdentificationCodeDAO', - 'LayoutAssignmentDAO' => 'submission.layoutAssignment.LayoutAssignmentDAO', - 'MarketDAO' => 'classes.publicationFormat.MarketDAO', - 'MetricsDAO' => 'lib.pkp.classes.statistics.PKPMetricsDAO', - 'SubmissionDAO' => 'classes.submission.SubmissionDAO', - 'MonographFileEmailLogDAO' => 'classes.log.MonographFileEmailLogDAO', - 'MonographSearchDAO' => 'classes.search.MonographSearchDAO', - 'NewReleaseDAO' => 'classes.press.NewReleaseDAO', - 'OAIDAO' => 'classes.oai.omp.OAIDAO', - 'OMPCompletedPaymentDAO' => 'classes.payment.omp.OMPCompletedPaymentDAO', - 'ONIXCodelistItemDAO' => 'classes.codelist.ONIXCodelistItemDAO', - 'PressDAO' => 'classes.press.PressDAO', - 'PressSettingsDAO' => 'classes.press.PressSettingsDAO', - 'ProductionAssignmentDAO' => 'classes.submission.productionAssignment.ProductionAssignmentDAO', - 'PublicationDateDAO' => 'classes.publicationFormat.PublicationDateDAO', - 'PublicationFormatDAO' => 'classes.publicationFormat.PublicationFormatDAO', - 'QualifierDAO' => 'classes.codelist.QualifierDAO', - 'RepresentativeDAO' => 'classes.monograph.RepresentativeDAO', - 'ReviewerSubmissionDAO' => 'classes.submission.reviewer.ReviewerSubmissionDAO', - 'SalesRightsDAO' => 'classes.publicationFormat.SalesRightsDAO', - 'SeriesDAO' => 'classes.press.SeriesDAO', - 'SpotlightDAO' => 'classes.spotlight.SpotlightDAO', - 'SubjectDAO' => 'classes.codelist.SubjectDAO', - )); - } - - /** - * Get the list of plugin categories for this application. - * @return array - */ - public function getPluginCategories() { - return array( - // NB: Meta-data plug-ins are first in the list as this - // will make them being loaded (and installed) first. - // This is necessary as several other plug-in categories - // depend on meta-data. This is a very rudimentary type of - // dependency management for plug-ins. - 'metadata', - 'pubIds', - 'blocks', - 'generic', - 'gateways', - 'themes', - 'importexport', - 'oaiMetadataFormats', - 'paymethod', - 'reports', - ); - } - - /** - * Get the top-level context DAO. - */ - public static function getContextDAO() { - return DAORegistry::getDAO('PressDAO'); - } - - /** - * Get the section DAO. - * @return SeriesDAO - */ - public static function getSectionDAO() { - return DAORegistry::getDAO('SeriesDAO'); - } - - /** - * Get the representation DAO. - */ - public static function getRepresentationDAO() { - return DAORegistry::getDAO('PublicationFormatDAO'); - } - - /** - * Get a SubmissionSearchIndex instance. - */ - public static function getSubmissionSearchIndex() { - import('classes.search.MonographSearchIndex'); - return new MonographSearchIndex(); - } - - /** - * Get a SubmissionSearchDAO instance. - */ - public static function getSubmissionSearchDAO() { - return DAORegistry::getDAO('MonographSearchDAO'); - } - - /** - * Get the stages used by the application. - */ - public static function getApplicationStages() { - // We leave out WORKFLOW_STAGE_ID_PUBLISHED since it technically is not a 'stage'. - return array( - WORKFLOW_STAGE_ID_SUBMISSION, - WORKFLOW_STAGE_ID_INTERNAL_REVIEW, - WORKFLOW_STAGE_ID_EXTERNAL_REVIEW, - WORKFLOW_STAGE_ID_EDITING, - WORKFLOW_STAGE_ID_PRODUCTION - ); - } - - /** - * Get the file directory array map used by the application. - */ - public static function getFileDirectories() { - return array('context' => '/presses/', 'submission' => '/monographs/'); - } - - /** - * Returns the context type for this application. - */ - public static function getContextAssocType() { - return ASSOC_TYPE_PRESS; - } - - /** - * Get the payment manager. - * @param $context Context - * @return OMPPaymentManager - */ - public static function getPaymentManager($context) { - import('classes.payment.omp.OMPPaymentManager'); - return new OMPPaymentManager($context); - } -} diff --git a/classes/core/Application.php b/classes/core/Application.php new file mode 100644 index 00000000000..51ede4c20d7 --- /dev/null +++ b/classes/core/Application.php @@ -0,0 +1,255 @@ + full.class.Path for this application. + * + * @return array + */ + public function getDAOMap() + { + return array_merge(parent::getDAOMap(), [ + 'ChapterDAO' => 'APP\monograph\ChapterDAO', + 'FeatureDAO' => 'APP\press\FeatureDAO', + 'IdentificationCodeDAO' => 'APP\publicationFormat\IdentificationCodeDAO', + 'LayoutAssignmentDAO' => 'submission\layoutAssignment\LayoutAssignmentDAO', + 'MarketDAO' => 'APP\publicationFormat\MarketDAO', + 'MetricsDAO' => 'PKP\statistics\PKPMetricsDAO', + 'MonographFileEmailLogDAO' => 'APP\log\MonographFileEmailLogDAO', + 'MonographSearchDAO' => 'APP\search\MonographSearchDAO', + 'NewReleaseDAO' => 'APP\press\NewReleaseDAO', + 'OAIDAO' => 'APP\oai\omp\OAIDAO', + 'OMPCompletedPaymentDAO' => 'APP\payment\omp\OMPCompletedPaymentDAO', + 'ONIXCodelistItemDAO' => 'APP\codelist\ONIXCodelistItemDAO', + 'PressDAO' => 'APP\press\PressDAO', + 'ProductionAssignmentDAO' => 'APP\submission\productionAssignment\ProductionAssignmentDAO', + 'PublicationDateDAO' => 'APP\publicationFormat\PublicationDateDAO', + 'PublicationFormatDAO' => 'APP\publicationFormat\PublicationFormatDAO', + 'QualifierDAO' => 'APP\codelist\QualifierDAO', + 'RepresentativeDAO' => 'APP\monograph\RepresentativeDAO', + 'SalesRightsDAO' => 'APP\publicationFormat\SalesRightsDAO', + 'SpotlightDAO' => 'APP\spotlight\SpotlightDAO', + 'SubjectDAO' => 'APP\codelist\SubjectDAO', + 'TemporaryTotalsDAO' => 'APP\statistics\TemporaryTotalsDAO', + 'TemporaryItemInvestigationsDAO' => 'APP\statistics\TemporaryItemInvestigationsDAO', + 'TemporaryItemRequestsDAO' => 'APP\statistics\TemporaryItemRequestsDAO', + 'TemporaryTitleInvestigationsDAO' => 'APP\statistics\TemporaryTitleInvestigationsDAO', + 'TemporaryTitleRequestsDAO' => 'APP\statistics\TemporaryTitleRequestsDAO', + ]); + } + + /** + * Get the list of plugin categories for this application. + * + * @return array + */ + public function getPluginCategories() + { + return [ + // NB: Meta-data plug-ins are first in the list as this + // will make them being loaded (and installed) first. + // This is necessary as several other plug-in categories + // depend on meta-data. This is a very rudimentary type of + // dependency management for plug-ins. + 'metadata', + 'pubIds', + 'blocks', + 'generic', + 'gateways', + 'themes', + 'importexport', + 'oaiMetadataFormats', + 'paymethod', + 'reports', + ]; + } + + /** + * Get the top-level context DAO. + */ + public static function getContextDAO(): PressDAO + { + /** @var PressDAO */ + $dao = DAORegistry::getDAO('PressDAO'); + return $dao; + } + + /** + * Get the representation DAO. + * + * @return PublicationFormatDAO|RepresentationDAOInterface + */ + public static function getRepresentationDAO(): RepresentationDAOInterface + { + /** @var PublicationFormatDAO|RepresentationDAOInterface */ + $dao = DAORegistry::getDAO('PublicationFormatDAO'); + return $dao; + } + + /** + * Get a SubmissionSearchIndex instance. + */ + public static function getSubmissionSearchIndex() + { + return new \APP\search\MonographSearchIndex(); + } + + /** + * Get a SubmissionSearchDAO instance. + */ + public static function getSubmissionSearchDAO() + { + return DAORegistry::getDAO('MonographSearchDAO'); + } + + /** + * Get the stages used by the application. + */ + public static function getApplicationStages() + { + // We leave out WORKFLOW_STAGE_ID_PUBLISHED since it technically is not a 'stage'. + return [ + WORKFLOW_STAGE_ID_SUBMISSION, + WORKFLOW_STAGE_ID_INTERNAL_REVIEW, + WORKFLOW_STAGE_ID_EXTERNAL_REVIEW, + WORKFLOW_STAGE_ID_EDITING, + WORKFLOW_STAGE_ID_PRODUCTION + ]; + } + + /** + * Get the file directory array map used by the application. + */ + public static function getFileDirectories() + { + return ['context' => '/presses/', 'submission' => '/monographs/']; + } + + /** + * Returns the context type for this application. + */ + public static function getContextAssocType() + { + return self::ASSOC_TYPE_PRESS; + } + + /** + * Get the payment manager. + * + * @param Press $context + * + * @return OMPPaymentManager + */ + public static function getPaymentManager($context) + { + return new OMPPaymentManager($context); + } + + public static function getSectionIdPropName(): string + { + return 'seriesId'; + } +} diff --git a/classes/core/PageRouter.inc.php b/classes/core/PageRouter.inc.php deleted file mode 100644 index f3704788f49..00000000000 --- a/classes/core/PageRouter.inc.php +++ /dev/null @@ -1,37 +0,0 @@ -/// - * is assumed to be "index" for top-level site requests. - */ - - -import('lib.pkp.classes.core.PKPRequest'); - -class Request extends PKPRequest { - /** - * Deprecated - * @see PKPPageRouter::getRequestedContextPath() - */ - public function getRequestedPressPath() { - $press = $this->_delegateToRouter('getRequestedContextPath', 1); - HookRegistry::call('Request::getRequestedPressPath', array(&$press)); - return $press; - } - - /** - * Deprecated - * @see PKPPageRouter::getContext() - */ - public function &getPress() { - $returner = $this->_delegateToRouter('getContext', 1); - return $returner; - } - - /** - * Deprecated - * @see PKPPageRouter::getRequestedContextPath() - */ - public function getRequestedContextPath($contextLevel = null) { - // Emulate the old behavior of getRequestedContextPath for - // backwards compatibility. - if (is_null($contextLevel)) { - return $this->_delegateToRouter('getRequestedContextPaths'); - } else { - return array($this->_delegateToRouter('getRequestedContextPath', $contextLevel)); - } - } - - /** - * Deprecated - * @see PKPPageRouter::getContext() - */ - public function &getContext($level = 1) { - $returner = $this->_delegateToRouter('getContext', $level); - return $returner; - } - - /** - * Deprecated - * @see PKPPageRouter::getContextByName() - */ - public function &getContextByName($contextName) { - $returner = $this->_delegateToRouter('getContextByName', $contextName); - return $returner; - } - - /** - * Deprecated - * @see PKPPageRouter::url() - */ - public function url($pressPath = null, $page = null, $op = null, $path = null, - $params = null, $anchor = null, $escape = false) { - return $this->_delegateToRouter('url', $pressPath, $page, $op, $path, - $params, $anchor, $escape); - } - - /** - * Deprecated - * @see PageRouter::redirectHome() - */ - public function redirectHome() { - return $this->_delegateToRouter('redirectHome'); - } - - /** - * @see PKPRequest::getUserAgent() - */ - public function getUserAgent() { - static $userAgent; - $userAgent = parent::getUserAgent(); - - if (strpos($userAgent, 'Shockwave Flash')) { - $userAgent = $_SERVER['HTTP_BROWSER_USER_AGENT']; - } - - return $userAgent; - } -} - - diff --git a/classes/core/Request.php b/classes/core/Request.php new file mode 100644 index 00000000000..110f1bab09f --- /dev/null +++ b/classes/core/Request.php @@ -0,0 +1,76 @@ +/// + * is assumed to be "index" for top-level site requests. + */ + +namespace APP\core; + +use APP\press\Press; +use PKP\core\PKPRequest; + +class Request extends PKPRequest +{ + /** + * @see PKPPageRouter::getContext() + */ + public function getPress(): ?Press + { + return $this->getContext(); + } + + /** + * Deprecated + * + * @see PKPPageRouter::getContext() + */ + public function getContext(): ?Press + { + return parent::getContext(); + } + + /** + * Deprecated + * + * @see PKPPageRouter::url() + * + * @param null|mixed $pressPath + * @param null|mixed $page + * @param null|mixed $op + * @param null|mixed $path + * @param null|mixed $params + * @param null|mixed $anchor + */ + public function url( + $pressPath = null, + $page = null, + $op = null, + $path = null, + $params = null, + $anchor = null, + $escape = false + ) { + return $this->_delegateToRouter( + 'url', + $pressPath, + $page, + $op, + $path, + $params, + $anchor, + $escape + ); + } +} diff --git a/classes/core/Services.inc.php b/classes/core/Services.inc.php deleted file mode 100644 index 4bb1da2a9bc..00000000000 --- a/classes/core/Services.inc.php +++ /dev/null @@ -1,28 +0,0 @@ -container->register(new APP\Services\OMPServiceProvider()); - } - -} diff --git a/classes/core/Services.php b/classes/core/Services.php new file mode 100644 index 00000000000..dd255c97be3 --- /dev/null +++ b/classes/core/Services.php @@ -0,0 +1,34 @@ +container->register(new \APP\services\OMPServiceProvider()); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\core\Services', '\Services'); +} diff --git a/classes/decision/Decision.php b/classes/decision/Decision.php new file mode 100644 index 00000000000..1a4c287bc27 --- /dev/null +++ b/classes/decision/Decision.php @@ -0,0 +1,39 @@ +decisionTypes)) { + $decisionTypes = new Collection([ + new Accept(), + new AcceptFromInternal(), + new Decline(), + new DeclineInternal(), + new InitialDecline(), + new NewInternalReviewRound(), + new NewExternalReviewRound(), + new RecommendAccept(), + new RecommendDecline(), + new RecommendResubmit(), + new RecommendRevisions(), + new RecommendAcceptInternal(), + new RecommendDeclineInternal(), + new RecommendResubmitInternal(), + new RecommendRevisionsInternal(), + new RecommendSendExternalReview(), + new RequestRevisionsInternal(), + new RequestRevisions(), + new Resubmit(), + new RevertDecline(), + new RevertDeclineInternal(), + new RevertInitialDecline(), + new SendExternalReview(), + new SendInternalReview(), + new SendToProduction(), + new SkipInternalReview(), + new SkipExternalReview(), + new BackFromProduction(), + new BackFromCopyediting(), + new CancelInternalReviewRound(), + new CancelReviewRound(), + ]); + Hook::call('Decision::types', [$decisionTypes]); + $this->decisionTypes = $decisionTypes; + } + + return $this->decisionTypes; + } + + public function getDeclineDecisionTypes(): array + { + return [ + new InitialDecline(), + new DeclineInternal(), + new Decline(), + ]; + } + + public function isRecommendation(int $decision): bool + { + return in_array($decision, [ + Decision::RECOMMEND_ACCEPT, + Decision::RECOMMEND_DECLINE, + Decision::RECOMMEND_PENDING_REVISIONS, + Decision::RECOMMEND_RESUBMIT, + Decision::RECOMMEND_ACCEPT_INTERNAL, + Decision::RECOMMEND_DECLINE_INTERNAL, + Decision::RECOMMEND_PENDING_REVISIONS_INTERNAL, + Decision::RECOMMEND_RESUBMIT_INTERNAL, + Decision::RECOMMEND_EXTERNAL_REVIEW + ]); + } + + protected function getReviewNotificationTypes(): array + { + return [ + Notification::NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS, + Notification::NOTIFICATION_TYPE_PENDING_EXTERNAL_REVISIONS, + ]; + } + + public function getDecisionTypesMadeByRecommendingUsers(int $stageId): array + { + $recommendatorsAvailableDecisions = []; + switch($stageId) { + case WORKFLOW_STAGE_ID_SUBMISSION: + $recommendatorsAvailableDecisions = [ + new SendInternalReview() + ]; + } + + Hook::call('Workflow::RecommendatorDecisions', [&$recommendatorsAvailableDecisions, $stageId]); + + return $recommendatorsAvailableDecisions; + } +} diff --git a/classes/decision/types/AcceptFromInternal.php b/classes/decision/types/AcceptFromInternal.php new file mode 100644 index 00000000000..e802b46b217 --- /dev/null +++ b/classes/decision/types/AcceptFromInternal.php @@ -0,0 +1,28 @@ +getReviewRoundCountBySubmissionId($submission->getId(), WORKFLOW_STAGE_ID_INTERNAL_REVIEW) > 1) { + return WORKFLOW_STAGE_ID_INTERNAL_REVIEW; + } + + return WORKFLOW_STAGE_ID_SUBMISSION; + } +} diff --git a/classes/decision/types/DeclineInternal.php b/classes/decision/types/DeclineInternal.php new file mode 100644 index 00000000000..45170cd521e --- /dev/null +++ b/classes/decision/types/DeclineInternal.php @@ -0,0 +1,28 @@ +addFileList( + __('editor.submission.revisions'), + Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$submission->getId()]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_INTERNAL_REVIEW_REVISION]) + ); + } +} diff --git a/classes/decision/types/SendInternalReview.php b/classes/decision/types/SendInternalReview.php new file mode 100644 index 00000000000..65f397a59fc --- /dev/null +++ b/classes/decision/types/SendInternalReview.php @@ -0,0 +1,184 @@ + $submission?->getCurrentPublication()?->getLocalizedFullTitle(null, 'html') ?? '']); + } + + public function validate(array $props, Submission $submission, Context $context, Validator $validator, ?int $reviewRoundId = null) + { + parent::validate($props, $submission, $context, $validator, $reviewRoundId); + + if (!isset($props['actions'])) { + return; + } + + foreach ((array) $props['actions'] as $index => $action) { + $actionErrorKey = 'actions.' . $index; + switch ($action['id']) { + case $this->ACTION_NOTIFY_AUTHORS: + $this->validateNotifyAuthorsAction($action, $actionErrorKey, $validator, $submission); + break; + } + } + } + + public function runAdditionalActions(Decision $decision, Submission $submission, User $editor, Context $context, array $actions) + { + parent::runAdditionalActions($decision, $submission, $editor, $context, $actions); + + foreach ($actions as $action) { + switch ($action['id']) { + case $this->ACTION_NOTIFY_AUTHORS: + $this->sendAuthorEmail( + new DecisionSendInternalReviewNotifyAuthor($context, $submission, $decision), + $this->getEmailDataFromAction($action), + $editor, + $submission, + $context + ); + break; + } + } + } + + public function getSteps(Submission $submission, Context $context, User $editor, ?ReviewRound $reviewRound): Steps + { + $steps = new Steps($this, $submission, $context); + + $fakeDecision = $this->getFakeDecision($submission, $editor); + $fileAttachers = $this->getFileAttachers($submission, $context); + + $authors = $steps->getStageParticipants(Role::ROLE_ID_AUTHOR); + if (count($authors)) { + $mailable = new DecisionSendInternalReviewNotifyAuthor($context, $submission, $fakeDecision); + $steps->addStep(new Email( + $this->ACTION_NOTIFY_AUTHORS, + __('editor.submission.decision.notifyAuthors'), + __('editor.submission.decision.sendInternalReview.notifyAuthorsDescription'), + $authors, + $mailable + ->sender($editor) + ->recipients($authors), + $context->getSupportedFormLocales(), + $fileAttachers + )); + } + + $promoteFilesStep = new PromoteFiles( + 'promoteFilesToReview', + __('editor.submission.selectFiles'), + __('editor.submission.decision.promoteFiles.internalReview'), + SubmissionFile::SUBMISSION_FILE_INTERNAL_REVIEW_FILE, + $submission, + $this->getFileGenres($context->getId()) + ); + + $steps->addStep($this->withFilePromotionLists($submission, $promoteFilesStep)); + + return $steps; + } + + /** + * Get the submission file stages that are permitted to be attached to emails + * sent in this decision + * + * @return int[] + */ + protected function getAllowedAttachmentFileStages(): array + { + return [ + SubmissionFile::SUBMISSION_FILE_SUBMISSION, + ]; + } + + /** + * Get the file promotion step with file promotion lists + * added to it + */ + protected function withFilePromotionLists(Submission $submission, PromoteFiles $step): PromoteFiles + { + return $step->addFileList( + __('submission.submit.submissionFiles'), + Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$submission->getId()]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_SUBMISSION]) + ); + } +} diff --git a/classes/decision/types/SkipInternalReview.php b/classes/decision/types/SkipInternalReview.php new file mode 100644 index 00000000000..9b28ead1e28 --- /dev/null +++ b/classes/decision/types/SkipInternalReview.php @@ -0,0 +1,25 @@ + + */ + protected function getAllowedAttachmentFileStages(): array + { + return [ + SubmissionFile::SUBMISSION_FILE_REVIEW_ATTACHMENT, + SubmissionFile::SUBMISSION_FILE_INTERNAL_REVIEW_FILE, + SubmissionFile::SUBMISSION_FILE_INTERNAL_REVIEW_REVISION, + ]; + } + + /** + * Get the file attacher components supported for emails in this decision + */ + protected function getFileAttachers(Submission $submission, Context $context, ?ReviewRound $reviewRound = null): array + { + $attachers = [ + new Upload( + $context, + __('common.upload.addFile'), + __('common.upload.addFile.description'), + __('common.upload.addFile') + ), + ]; + + if ($reviewRound) { + /** @var ReviewAssignmentDAO $reviewAssignmentDAO */ + $reviewAssignmentDAO = DAORegistry::getDAO('ReviewAssignmentDAO'); + $reviewAssignments = $reviewAssignmentDAO->getByReviewRoundId($reviewRound->getId()); + $reviewerFiles = []; + if (!empty($reviewAssignments)) { + $reviewerFiles = Repo::submissionFile()->getCollector() + ->filterBySubmissionIds([$submission->getId()]) + ->filterByAssoc(Application::ASSOC_TYPE_REVIEW_ASSIGNMENT, array_keys($reviewAssignments)) + ->getMany(); + } + $attachers[] = new ReviewFiles( + __('reviewer.submission.reviewFiles'), + __('email.addAttachment.reviewFiles.description'), + __('email.addAttachment.reviewFiles.attach'), + $reviewerFiles, + $reviewAssignments, + $context + ); + } + + $attachers[] = (new FileStage( + $context, + $submission, + __('submission.submit.submissionFiles'), + __('email.addAttachment.submissionFiles.reviewDescription'), + __('email.addAttachment.submissionFiles.attach') + )) + ->withFileStage( + $this->getRevisionFileStage(), + __('editor.submission.revisions'), + $reviewRound + )->withFileStage( + $this->getReviewFileStage(), + __('reviewer.submission.reviewFiles'), + $reviewRound + ); + + $attachers[] = new Library( + $context, + $submission + ); + + return $attachers; + } +} diff --git a/classes/doi/DAO.php b/classes/doi/DAO.php new file mode 100644 index 00000000000..73e6a7bf15a --- /dev/null +++ b/classes/doi/DAO.php @@ -0,0 +1,99 @@ +getData(Context::SETTING_ENABLED_DOI_TYPES) ?? []; + + $q = DB::table($this->table, 'd') + ->leftJoin('publications as p', 'd.doi_id', '=', 'p.doi_id') + ->leftJoin('submissions as s', 'p.publication_id', '=', 's.current_publication_id') + ->where('d.context_id', '=', $context->getId()) + ->where(function (Builder $q) use ($enabledDoiTypes) { + // Publication DOIs + $q->when(in_array(Repo::doi()::TYPE_PUBLICATION, $enabledDoiTypes), function (Builder $q) { + $q->whereIn('d.doi_id', function (Builder $q) { + $q->select('p.doi_id') + ->from('publications', 'p') + ->leftJoin('submissions as s', 'p.publication_id', '=', 's.current_publication_id') + ->whereColumn('p.publication_id', '=', 's.current_publication_id') + ->whereNotNull('p.doi_id') + ->where('p.status', '=', PKPSubmission::STATUS_PUBLISHED); + }); + }); + // Chapter DOIs + $q->when(in_array(Repo::doi()::TYPE_CHAPTER, $enabledDoiTypes), function (Builder $q) { + $q->orWhereIn('d.doi_id', function (Builder $q) { + $q->select('spc.doi_id') + ->from('submission_chapters', 'spc') + ->join('publications as p', 'spc.publication_id', '=', 'p.publication_id') + ->leftJoin('submissions as s', 'p.publication_id', '=', 's.current_publication_id') + ->whereColumn('p.publication_id', '=', 's.current_publication_id') + ->whereNotNull('spc.doi_id') + ->where('p.status', '=', PKPSubmission::STATUS_PUBLISHED); + }); + }); + // Publication format DOIs + $q->when(in_array(Repo::doi()::TYPE_REPRESENTATION, $enabledDoiTypes), function (Builder $q) { + $q->orWhereIn('d.doi_id', function (Builder $q) { + $q->select('pf.doi_id') + ->from('publication_formats', 'pf') + ->join('publications as p', 'pf.publication_id', '=', 'p.publication_id') + ->leftJoin('submissions as s', 'p.publication_id', '=', 's.current_publication_id') + ->whereColumn('p.publication_id', '=', 's.current_publication_id') + ->whereNotNull('pf.doi_id') + ->where('p.status', '=', PKPSubmission::STATUS_PUBLISHED); + }); + }); + // Submission file DOIs + $q->when(in_array(Repo::doi()::TYPE_SUBMISSION_FILE, $enabledDoiTypes), function (Builder $q) { + $q->orWhereIn('d.doi_id', function (Builder $q) { + $q->select('sf.doi_id') + ->from('submission_files', 'sf') + ->join('submissions as s', 's.submission_id', '=', 'sf.submission_id') + ->leftJoin('publications as p', 's.current_publication_id', '=', 'p.publication_id') + ->whereColumn('p.publication_id', '=', 's.current_publication_id') + ->where('sf.file_stage', '=', SubmissionFile::SUBMISSION_FILE_PROOF) + ->whereNotNull('sf.doi_id') + ->where('p.status', '=', PKPSubmission::STATUS_PUBLISHED); + }); + }); + }) + ->whereIn('d.status', [Doi::STATUS_UNREGISTERED, Doi::STATUS_ERROR, Doi::STATUS_STALE]); + return $q->get(['s.submission_id', 'd.doi_id']); + } +} diff --git a/classes/doi/Repository.php b/classes/doi/Repository.php new file mode 100644 index 00000000000..1231424d211 --- /dev/null +++ b/classes/doi/Repository.php @@ -0,0 +1,278 @@ + $this->dao]); + } + + /** + * Create a DOI for the given publication + */ + public function mintPublicationDoi(Publication $publication, Submission $submission, Context $context): int + { + if ($context->getData(Context::SETTING_DOI_SUFFIX_TYPE) === Repo::doi()::SUFFIX_DEFAULT) { + $doiSuffix = $this->generateDefaultSuffix(); + } else { + $doiSuffix = $this->generateSuffixPattern($publication, $context, $context->getData(Context::SETTING_DOI_SUFFIX_TYPE), $submission); + } + + return $this->mintAndStoreDoi($context, $doiSuffix); + } + + /** + * Create a DOI for the given chapter + */ + public function mintChapterDoi(Chapter $chapter, Submission $submission, Context $context): int + { + if ($context->getData(Context::SETTING_DOI_SUFFIX_TYPE) === Repo::doi()::SUFFIX_DEFAULT) { + $doiSuffix = $this->generateDefaultSuffix(); + } else { + $doiSuffix = $this->generateSuffixPattern($chapter, $context, $context->getData(Context::SETTING_DOI_SUFFIX_TYPE), $submission, $chapter); + } + + return $this->mintAndStoreDoi($context, $doiSuffix); + } + + /** + * Create a DOI for the given publication format + */ + public function mintPublicationFormatDoi(PublicationFormat $publicationFormat, Submission $submission, Context $context): int + { + if ($context->getData(Context::SETTING_DOI_SUFFIX_TYPE) === Repo::doi()::SUFFIX_DEFAULT) { + $doiSuffix = $this->generateDefaultSuffix(); + } else { + $doiSuffix = $this->generateSuffixPattern($publicationFormat, $context, $context->getData(Context::SETTING_DOI_SUFFIX_TYPE), $submission, null, $publicationFormat); + } + + return $this->mintAndStoreDoi($context, $doiSuffix); + } + + /** + * Create a DOI for the given submission file + */ + public function mintSubmissionFileDoi(SubmissionFile $submissionFile, Submission $submission, Context $context): int + { + if ($context->getData(Context::SETTING_DOI_SUFFIX_TYPE) === Repo::doi()::SUFFIX_DEFAULT) { + $doiSuffix = $this->generateDefaultSuffix(); + } else { + $doiSuffix = $this->generateSuffixPattern($submissionFile, $context, $context->getData(Context::SETTING_DOI_SUFFIX_TYPE), $submission, null, null, $submissionFile); + } + + return $this->mintAndStoreDoi($context, $doiSuffix); + } + + public function getDoisForSubmission(int $submissionId): array + { + $doiIds = Collection::make(); + + $submission = Repo::submission()->get($submissionId); + /** @var Publication[] $publications */ + $publications = [$submission->getCurrentPublication()]; + + /** @var PressDAO $contextDao */ + $contextDao = Application::getContextDAO(); + /** @var Press */ + $context = $contextDao->getById($submission->getData('contextId')); + + foreach ($publications as $publication) { + $publicationDoiId = $publication->getData('doiId'); + if (!empty($publicationDoiId) && $context->isDoiTypeEnabled(self::TYPE_PUBLICATION)) { + $doiIds->add($publicationDoiId); + } + + // Chapters + $chapters = $publication->getData('chapters'); + foreach ($chapters as $chapter) { + $chapterDoiId = $chapter->getData('doiId'); + if (!empty($chapterDoiId) && $context->isDoiTypeEnabled(self::TYPE_CHAPTER)) { + $doiIds->add($chapterDoiId); + } + } + + // Publication formats + $publicationFormats = $publication->getData('publicationFormats'); + foreach ($publicationFormats as $publicationFormat) { + $publicationFormatDoiId + = $publicationFormat->getData('doiId'); + if (!empty($publicationFormatDoiId) && $context->isDoiTypeEnabled(self::TYPE_REPRESENTATION)) { + $doiIds->add($publicationFormatDoiId); + } + } + + // Submission files + if ($context->isDoiTypeEnabled(self::TYPE_SUBMISSION_FILE)) { + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$publication->getData('submissionId')]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_PROOF]) + ->getMany(); + + /** @var SubmissionFile $submissionFile */ + foreach ($submissionFiles as $submissionFile) { + $submissionFileDoiId = $submissionFile->getData('doiId'); + if (!empty($submissionFileDoiId)) { + $doiIds->add($submissionFileDoiId); + } + } + } + } + + return $doiIds->unique()->toArray(); + } + + /** + * Generate a suffix using a provided pattern type + * + * @param string $patternType Repo::doi()::CUSTOM_SUFFIX_* constants + * + */ + protected function generateSuffixPattern( + DataObject $object, + Context $context, + string $patternType, + ?Submission $submission = null, + ?Chapter $chapter = null, + ?Representation $representation = null, + ?SubmissionFile $submissionFile = null + ): string { + $doiSuffix = ''; + switch ($patternType) { + case self::SUFFIX_CUSTOM_PATTERN: + $pubIdSuffixPattern = $this->getPubIdSuffixPattern($object, $context); + $doiSuffix = PubIdPlugin::generateCustomPattern($context, $pubIdSuffixPattern, $object, $submission, $chapter, $representation, $submissionFile); + break; + case self::SUFFIX_MANUAL: + break; + } + + return $doiSuffix; + } + + /** + * Gets legacy, user-generated suffix pattern associated with object type and context + * + */ + private function getPubIdSuffixPattern(DataObject $object, Context $context): ?string + { + if ($object instanceof SubmissionFile) { + return $context->getData(Repo::doi()::CUSTOM_FILE_PATTERN); + } elseif ($object instanceof Representation) { + return $context->getData(Repo::doi()::CUSTOM_REPRESENTATION_PATTERN); + } elseif ($object instanceof Chapter) { + return $context->getData(Repo::doi()::CUSTOM_CHAPTER_PATTERN); + } else { + return $context->getData(Repo::doi()::CUSTOM_PUBLICATION_PATTERN); + } + } + + /** + * Get app-specific DOI type constants to check when scheduling deposit for submissions + * + */ + protected function getValidSubmissionDoiTypes(): array + { + return [ + self::TYPE_PUBLICATION, + self::TYPE_CHAPTER, + self::TYPE_REPRESENTATION, + self::TYPE_SUBMISSION_FILE + ]; + } + + /** + * Checks whether a DOI object is referenced by ID on any pub objects for a given pub object type. + * + * @param string $pubObjectType One of Repo::doi()::TYPE_* constants + */ + public function isAssigned(int $doiId, string $pubObjectType): bool + { + $getChapterCount = function () use ($doiId) { + /** @var ChapterDAO $chapterDao */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + return count($chapterDao->getByDoiId($doiId)->toArray()); + }; + + $getPublicationFormatCount = function () use ($doiId) { + /** @var PublicationFormatDAO $publicationFormatDao */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); + return count($publicationFormatDao->getByDoiId($doiId)->toArray()); + }; + + $getSubmissionFilesCount = function () use ($doiId) { + Hook::add('SubmissionFile::Collector::getQueryBuilder', function ($hookName, $args) use ($doiId) { + /** @var Builder $qb */ + $qb = & $args[0]; + $qb->when($doiId !== null, function (Builder $qb) use ($doiId) { + $qb->where('sf.doi_id', '=', $doiId); + }); + }); + + return Repo::submissionFile() + ->getCollector() + ->getQueryBuilder() + ->getCountForPagination(); + }; + + $isAssigned = match ($pubObjectType) { + Repo::doi()::TYPE_CHAPTER => $getChapterCount(), + Repo::doi()::TYPE_REPRESENTATION => $getPublicationFormatCount(), + Repo::doi()::TYPE_SUBMISSION_FILE => $getSubmissionFilesCount(), + default => false, + }; + + + + return $isAssigned || parent::isAssigned($doiId, $pubObjectType); + } +} diff --git a/classes/emailTemplate/DAO.php b/classes/emailTemplate/DAO.php new file mode 100644 index 00000000000..3e2fca2e1c9 --- /dev/null +++ b/classes/emailTemplate/DAO.php @@ -0,0 +1,29 @@ + 'pressName', + 'contextUrl' => 'pressUrl', + 'contextSignature' => 'pressSignature', + ]; + } +} diff --git a/classes/facades/Repo.php b/classes/facades/Repo.php new file mode 100644 index 00000000000..2e64dc5e88d --- /dev/null +++ b/classes/facades/Repo.php @@ -0,0 +1,73 @@ +make(DoiRepository::class); + } + + public static function publication(): PublicationRepository + { + return app(PublicationRepository::class); + } + + public static function section(): SectionRepository + { + return app(SectionRepository::class); + } + + public static function submission(): SubmissionRepository + { + return app(SubmissionRepository::class); + } + + public static function submissionFile(): SubmissionFileRepository + { + return app(SubmissionFileRepository::class); + } + + public static function user(): UserRepository + { + return app(UserRepository::class); + } + + public static function mailable(): MailRepository + { + return app(MailRepository::class); + } +} diff --git a/classes/file/LibraryFileManager.inc.php b/classes/file/LibraryFileManager.inc.php deleted file mode 100644 index 497da0b5bd8..00000000000 --- a/classes/file/LibraryFileManager.inc.php +++ /dev/null @@ -1,78 +0,0 @@ -getTypeSuffixMap(); - return $typeSuffixMap[$type]; - } - - /** - * Get the type => suffix mapping array - * @return array - */ - function &getTypeSuffixMap() { - static $map = array( - LIBRARY_FILE_TYPE_CONTRACT => 'CON', - ); - $parent = parent::getTypeSuffixMap(); - $map = array_merge($map, $parent); - return $map; - } - - /** - * Get the type => locale key mapping array - * @return array - */ - function &getTypeTitleKeyMap() { - static $map = array( - LIBRARY_FILE_TYPE_CONTRACT => 'settings.libraryFiles.category.contracts', - ); - $parent = parent::getTypeTitleKeyMap(); - $map = array_merge($map, $parent); - return $map; - } - - /** - * Get the type => name mapping array - * @return array - */ - function &getTypeNameMap() { - static $map = array( - LIBRARY_FILE_TYPE_CONTRACT => 'contacts', - ); - $parent = parent::getTypeNameMap(); - $map = array_merge($map, $parent); - return $map; - } -} - - diff --git a/classes/file/LibraryFileManager.php b/classes/file/LibraryFileManager.php new file mode 100644 index 00000000000..b31c1c11833 --- /dev/null +++ b/classes/file/LibraryFileManager.php @@ -0,0 +1,83 @@ +getTypeSuffixMap(); + return $typeSuffixMap[$type]; + } + + /** + * Get the type => suffix mapping array + * + * @return array + */ + public function &getTypeSuffixMap() + { + static $map = [ + LibraryFile::LIBRARY_FILE_TYPE_CONTRACT => 'CON', + ]; + $parent = parent::getTypeSuffixMap(); + $map = array_merge($map, $parent); + return $map; + } + + /** + * Get the type => locale key mapping array + * + * @return array + */ + public function &getTypeTitleKeyMap() + { + static $map = [ + LibraryFile::LIBRARY_FILE_TYPE_CONTRACT => 'settings.libraryFiles.category.contracts', + ]; + $parent = parent::getTypeTitleKeyMap(); + $map = array_merge($map, $parent); + return $map; + } + + /** + * Get the type => name mapping array + * + * @return array + */ + public function &getTypeNameMap() + { + static $map = [ + LibraryFile::LIBRARY_FILE_TYPE_CONTRACT => 'contacts', + ]; + $parent = parent::getTypeNameMap(); + $map = array_merge($map, $parent); + return $map; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\file\LibraryFileManager', '\LibraryFileManager'); +} diff --git a/classes/file/PublicFileManager.inc.php b/classes/file/PublicFileManager.inc.php deleted file mode 100644 index 2d56f879e59..00000000000 --- a/classes/file/PublicFileManager.inc.php +++ /dev/null @@ -1,27 +0,0 @@ - $baseDir . 'locale.po', - LOCALE_COMPONENT_APP_AUTHOR => $baseDir . 'author.po', - LOCALE_COMPONENT_APP_MANAGER => $baseDir . 'manager.po', - LOCALE_COMPONENT_APP_SUBMISSION => $baseDir . 'submission.po', - LOCALE_COMPONENT_APP_EDITOR => $baseDir . 'editor.po', - LOCALE_COMPONENT_APP_ADMIN => $baseDir . 'admin.po', - LOCALE_COMPONENT_APP_DEFAULT => $baseDir . 'default.po', - LOCALE_COMPONENT_APP_API => $baseDir . 'api.po', - LOCALE_COMPONENT_APP_EMAIL => $baseDir . 'emails.po', - ); - } -} - - diff --git a/classes/i18n/AppLocale.php b/classes/i18n/AppLocale.php new file mode 100644 index 00000000000..9cabf4ce5cb --- /dev/null +++ b/classes/i18n/AppLocale.php @@ -0,0 +1,35 @@ +getSite(); - $adminEmail = $site->getLocalizedContactEmail(); - import('lib.pkp.classes.submission.SubmissionFile'); // SUBMISSION_FILE_ constants - import('lib.pkp.classes.file.FileManager'); - $fileManager = new FileManager(); - - $contexts = $pressDao->getAll(); - while ($context = $contexts->next()) { - $submissions = $submissionDao->getByContextId($context->getId()); - while ($submission = $submissions->next()) { - $submissionDir = Services::get('submissionFile')->getSubmissionDir($context->getId(), $submission->getId()); - $rows = Capsule::table('submission_files') - ->where('submission_id', '=', $submission->getId()) - ->get(); - foreach ($rows as $row) { - $generatedFilename = sprintf( - '%d-%s-%d-%d-%d-%s.%s', - $row->submission_id, - $row->genre_id, - $row->file_id, - $row->revision, - $row->file_stage, - date('Ymd', strtotime($row->date_uploaded)), - strtolower_codesafe($fileManager->parseFileExtension($row->original_file_name)) - ); - $basePath = sprintf( - '%s/%s/%s/', - Config::getVar('files', 'files_dir'), - $submissionDir, - $this->_fileStageToPath($row->file_stage) - ); - $globPattern = $$row->submission_id . '-' . - '*' . '-' . // Genre name and designation globbed (together) - $row->file_id . '-' . - $row->revision . '-' . - $row->file_stage . '-' . - date('Ymd', strtotime($row->date_uploaded)) . - '.' . strtolower_codesafe($fileManager->parseFileExtension($row->original_file_name)); - - $matchedResults = glob($basePath . $globPattern); - if (count($matchedResults)>1) { - error_log("Duplicate potential files for \"$globPattern\"!", 1, $adminEmail); - continue; - } - if (count($matchedResults) == 1) { - // 1 result matched. - $discoveredFilename = array_shift($matchedResults); - if ($dryrun) { - echo "Need to rename \"$discoveredFilename\" to \"$generatedFilename\".\n"; - } else { - rename($discoveredFilename, $basePath . $generatedFilename); - } - } else { - // 0 results matched. - error_log("Unable to find a match for \"$globPattern\".\n", 1, $adminEmail); - continue; - } - } - } - } - return true; - } - - /** - * Enable the default theme plugin for versions < 1.1. - * @return boolean - */ - function enableDefaultTheme() { - $pressDao = DAORegistry::getDAO('PressDAO'); /* @var $pressDao PressDAO */ - $contexts = $pressDao->getAll(); - $pluginSettingsDao = DAORegistry::getDAO('PluginSettingsDAO'); /* @var $pluginSettingsDao PluginSettingsDAO */ - - // Site-wide - $pluginSettingsDao->updateSetting(0, 'defaultthemeplugin', 'enabled', '1', 'int'); - - // For each press - while ($context = $contexts->next()) { - $pluginSettingsDao->updateSetting($context->getId(), 'defaultthemeplugin', 'enabled', '1', 'int'); - } - return true; - } - - /** - * Synchronize the ASSOC_TYPE_SERIES constant to ASSOC_TYPE_SECTION defined in PKPApplication. - * @return boolean - */ - function syncSeriesAssocType() { - // Can be any DAO. - $dao = DAORegistry::getDAO('UserDAO'); /* @var $dao DAO */ - $tablesToUpdate = [ - 'features', - 'data_object_tombstone_oai_set_objects', - 'new_releases', - 'spotlights', - 'notifications', - 'email_templates', - 'email_templates_data', - 'controlled_vocabs', - 'event_log', - 'email_log', - 'metadata_descriptions', - 'notes', - 'item_views' - ]; - - foreach ($tablesToUpdate as $tableName) { - $dao->update('UPDATE ' . $tableName . ' SET assoc_type = ' . ASSOC_TYPE_SERIES . ' WHERE assoc_type = 526'); - } - - return true; - } - - /** - * Fix incorrectly stored author settings. (See bug #8663.) - * @return boolean - */ - function fixAuthorSettings() { - $authorDao = DAORegistry::getDAO('AuthorDAO'); /* @var $authorDao AuthorDAO */ - - // Get all authors with broken data - $result = $authorDao->retrieve( - 'SELECT DISTINCT author_id - FROM author_settings - WHERE (setting_name = ? OR setting_name = ?) - AND setting_type = ?', - ['affiliation', 'biography', 'object'] - ); - - foreach ($result as $row) { - $authorId = $row->author_id; - - $author = $authorDao->getById($authorId); - if (!$author) continue; // Bonehead check (DB integrity) - - foreach ((array) $author->getAffiliation(null) as $locale => $affiliation) { - if (is_array($affiliation)) foreach($affiliation as $locale => $s) { - $author->setAffiliation($s, $locale); - } - } - - foreach ((array) $author->getBiography(null) as $locale => $biography) { - if (is_array($biography)) foreach($biography as $locale => $s) { - $author->setBiography($s, $locale); - } - } - $authorDao->updateObject($author); - } - return true; - } - - /** - * Convert email templates to HTML. - * @return boolean True indicates success. - */ - function htmlifyEmailTemplates() { - $emailTemplateDao = DAORegistry::getDAO('EmailTemplateDAO'); /* @var $emailTemplateDao EmailTemplateDAO */ - - // Convert the email templates in email_templates_data to localized - $result = $emailTemplateDao->retrieve('SELECT * FROM email_templates_data'); - foreach ($result as $row) { - $emailTemplateDao->update( - 'UPDATE email_templates_data - SET body = ? - WHERE email_key = ? AND - locale = ? AND - assoc_type = ? AND - assoc_id = ?', - [ - preg_replace('/{\$[a-zA-Z]+Url}/', '\0', nl2br($row->body)), - $row->email_key, - $row->locale, - $row->assoc_type, - $row->assoc_id - ] - ); - } - - // Convert the email templates in email_templates_default_data to localized - $result = $emailTemplateDao->retrieve('SELECT * FROM email_templates_default_data'); - foreach ($result as $row) { - $emailTemplateDao->update( - 'UPDATE email_templates_default_data - SET body = ? - WHERE email_key = ? AND - locale = ?', - [ - preg_replace('/{\$[a-zA-Z]+Url}/', '\0', nl2br($row->body)), - $row->email_key, - $row->locale, - ] - ); - } - - // Localize the email header and footer fields. - $contextDao = DAORegistry::getDAO('PressDAO'); /* @var $contextDao PressDAO */ - $settingsDao = DAORegistry::getDAO('PressSettingsDAO'); /* @var $settingsDao PressSettingsDAO */ - $contexts = $contextDao->getAll(); - while ($context = $contexts->next()) { - foreach (['emailFooter', 'emailSignature'] as $settingName) { - $settingsDao->updateSetting( - $context->getId(), - $settingName, - $context->getData('emailHeader'), - 'string' - ); - } - } - - return true; - } - - /** - * Convert signoffs to queries. - * @return boolean True indicates success. - */ - function convertQueries() { - $submissionFileDao = DAORegistry::getDAO('SubmissionFileDAO'); /* @var $submissionFileDao SubmissionFileDAO */ - import('lib.pkp.classes.submission.SubmissionFile'); - - $filesResult = $submissionFileDao->retrieve( - 'SELECT DISTINCT sf.file_id, sf.assoc_type, sf.assoc_id, sf.submission_id, sf.original_file_name, sf.revision, s.symbolic, s.date_notified, s.date_completed, s.user_id, s.signoff_id FROM submission_files sf, signoffs s WHERE s.assoc_type=? AND s.assoc_id=sf.file_id AND s.symbolic IN (?, ?)', - [ASSOC_TYPE_SUBMISSION_FILE, 'SIGNOFF_COPYEDITING', 'SIGNOFF_PROOFING'] - ); - - $queryDao = DAORegistry::getDAO('QueryDAO'); /* @var $queryDao QueryDAO */ - $noteDao = DAORegistry::getDAO('NoteDAO'); /* @var $noteDao NoteDAO */ - $userDao = DAORegistry::getDAO('UserDAO'); /* @var $userDao UserDAO */ - $stageAssignmentDao = DAORegistry::getDAO('StageAssignmentDAO'); /* @var $stageAssignmentDao StageAssignmentDAO */ - - // - // 1. Go through all signoff/file pairs and migrate them into queries. - // Queries should be created per file and users should be consolidated - // from potentially multiple audit assignments into fewer queries. - // - foreach ($filesResult as $row) { - $fileId = $row->file_id; - $symbolic = $row->symbolic; - $dateNotified = $row->date_notified?strtotime($row->date_notified):null; - $dateCompleted = $row->date_completed?strtotime($row->date_completed):null; - $userId = $row->user_id; - $signoffId = $row->signoff_id; - $fileAssocType = $row->assoc_type; - $fileAssocId = $row->assoc_id; - $submissionId = $row->submission_id; - $originalFileName = $row->original_file_name; - $revision = $row->revision; - - // Reproduces removed SubmissionFile::getFileLabel() method - $label = $originalFileName; - $filename = Capsule::table('submission_file_settings') - ->where('file_id', '=', $fileId) - ->where('setting_name', '=', 'name') - ->first(); - if ($filename) { - $label = $filename->setting_value; - } - if ($revision) { - $label .= '(' . $revision . ')'; - } - - $assocType = $assocId = $query = null; // Prevent PHP scrutinizer warnings - switch ($symbolic) { - case 'SIGNOFF_COPYEDITING': - $query = $queryDao->newDataObject(); - $query->setAssocType($assocType = ASSOC_TYPE_SUBMISSION); - $query->setAssocId($assocId = $submissionId); - $query->setStageId(WORKFLOW_STAGE_ID_EDITING); - break; - case 'SIGNOFF_PROOFING': - // We've already migrated a signoff for this file; add this user to it too. - if ($fileAssocType == ASSOC_TYPE_NOTE) { - $note = $noteDao->getById($fileAssocId); - assert($note && $note->getAssocType() == ASSOC_TYPE_QUERY); - if (count($queryDao->getParticipantIds($note->getAssocId(), $userId))==0) $queryDao->insertParticipant($fileAssocId, $userId); - $this->_transferSignoffData($signoffId, $note->getAssocId()); - continue 2; - } - $query = $queryDao->newDataObject(); - assert($fileAssocType==ASSOC_TYPE_REPRESENTATION); - $query->setAssocType($assocType = ASSOC_TYPE_SUBMISSION); - $query->setAssocId($assocId = $submissionId); - $query->setStageId(WORKFLOW_STAGE_ID_PRODUCTION); - break; - default: assert(false); - } - $query->setSequence(REALLY_BIG_NUMBER); - $query->setIsClosed($dateCompleted?true:false); - $queryDao->insertObject($query); - $queryDao->resequence($assocType, $assocId); - - // Build a list of all users who should be involved in the query - $user = $userDao->getById($userId); - $assignedUserIds = [$userId]; - foreach ([ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT] as $roleId) { - $stageAssignments = $stageAssignmentDao->getBySubmissionAndRoleId($submissionId, $roleId, $query->getStageId()); - while ($stageAssignment = $stageAssignments->next()) { - $assignedUserIds[] = $stageAssignment->getUserId(); - } - } - // Add the assigned auditor as a query participant - foreach (array_unique($assignedUserIds) as $assignedUserId) { - $queryDao->insertParticipant($query->getId(), $assignedUserId); - } - - // Create a head note - $headNote = $noteDao->newDataObject(); - $headNote->setAssocType(ASSOC_TYPE_QUERY); - $headNote->setAssocId($query->getId()); - switch($symbolic) { - case 'SIGNOFF_COPYEDITING': - $headNote->setTitle('Copyediting for "' . $label . '"'); - $headNote->setContents('Auditing assignment for the file "' . htmlspecialchars($label) . '" (Signoff ID: ' . $signoffId . ')'); - break; - case 'SIGNOFF_PROOFING': - $headNote->setTitle('Proofreading for ' . $label); - $headNote->setContents('Proofing assignment for the file "' . htmlspecialchars($label) . '" (Signoff ID: ' . $signoffId . ')'); - break; - default: assert(false); - } - $noteDao->insertObject($headNote); - - // Correct the creation date (automatically assigned) with the signoff value - $headNote->setDateCreated($dateNotified); - $noteDao->updateObject($headNote); - - // Add completion as a note - if ($dateCompleted) { - $completionNote = $noteDao->newDataObject(); - $completionNote->setAssocType(ASSOC_TYPE_QUERY); - $completionNote->setAssocId($query->getId()); - $completionNote->setContents('The assignment is complete.'); - $completionNote->setUserId($userId); - $noteDao->insertObject($completionNote); - $completionNote->setDateCreated($dateCompleted); - $noteDao->updateObject($completionNote); - } - - $this->_transferSignoffData($signoffId, $query->getId()); - } - return true; - } - - /** - * The assoc_type = ASSOC_TYPE_REPRESENTATION (from SIGNOFF_PROOFING migration) - * should be changed to assoc_type = ASSOC_TYPE_SUBMISSION, for queries to be - * displayed in the production discussions list. - * After changing this, the submission queries should be resequenced, in their - * order in the DB table. - * @return boolean True indicates success. - */ - function fixQueriesAssocTypes() { - // Get queries by submission ids, in order to resequence them correctly after the assoc_type change - $queryDao = DAORegistry::getDAO('QueryDAO'); /* @var $queryDao QueryDAO */ - $allQueriesResult = $queryDao->retrieve( - 'SELECT DISTINCT q.*, - COALESCE(pf.submission_id, qs.assoc_id) AS submission_id - FROM queries q - LEFT JOIN publication_formats pf ON (q.assoc_type = ? AND q.assoc_id = pf.publication_format_id AND q.stage_id = ?) - LEFT JOIN queries qs ON (qs.assoc_type = ?) - WHERE q.assoc_type = ? OR q.assoc_type = ? - ORDER BY query_id', - [(int) ASSOC_TYPE_REPRESENTATION, (int) WORKFLOW_STAGE_ID_PRODUCTION, (int) ASSOC_TYPE_SUBMISSION, (int) ASSOC_TYPE_SUBMISSION, (int) ASSOC_TYPE_REPRESENTATION] - ); - $allQueries = []; - foreach ($allQueriesResult as $row) { - $allQueries[$row->submission_id]['queries'][] = $query = $queryDao->_fromRow((array) $row); - // mark if this submission queries should be fixed - $fix = array_key_exists('fix', $allQueries[$row->submission_id]) ? $allQueries[$row->submission_id]['fix'] : false; - $allQueries[$row->submission_id]['fix'] = ($query->getAssocType() == ASSOC_TYPE_REPRESENTATION) || $fix; - } - foreach ($allQueries as $submissionId => $queriesBySubmission) { - // Touch i.e. fix and resequence only the submission queries that contained assoc_type = ASSOC_TYPE_REPRESENTATION - if ($allQueries[$submissionId]['fix']) { - $i = 1; - foreach($queriesBySubmission['queries'] as $query) { - if ($query->getAssocType() == ASSOC_TYPE_REPRESENTATION) { - $query->setAssocType(ASSOC_TYPE_SUBMISSION); - $query->setAssocId($submissionId); - } - $query->setSequence($i); - $queryDao->updateObject($query); - $i++; - } - } - } - return true; - } - - /** - * Convert comments to editors to queries. - * @return boolean True indicates success. - */ - function convertCommentsToEditor() { - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); /* @var $submissionDao SubmissionDAO */ - $stageAssignmetDao = DAORegistry::getDAO('StageAssignmentDAO'); /* @var $stageAssignmetDao StageAssignmentDAO */ - $queryDao = DAORegistry::getDAO('QueryDAO'); /* @var $queryDao QueryDAO */ - $noteDao = DAORegistry::getDAO('NoteDAO'); /* @var $noteDao NoteDAO */ - $userGroupDao = DAORegistry::getDAO('UserGroupDAO'); /* @var $userGroupDao UserGroupDAO */ - - import('lib.pkp.classes.security.Role'); // ROLE_ID_... - - $commentsResult = $submissionDao->retrieve( - 'SELECT s.submission_id, s.context_id, s.comments_to_ed, s.date_submitted - FROM submissions_tmp s - WHERE s.comments_to_ed IS NOT NULL AND s.comments_to_ed != \'\'' - ); - foreach ($commentsResult as $row) { - $commentsToEd = PKPString::stripUnsafeHtml($row->comments_to_ed); - if ($commentsToEd == '') continue; - - $authorAssignments = $stageAssignmetDao->getBySubmissionAndRoleId($row->submission_id, ROLE_ID_AUTHOR); - if ($authorAssignment = $authorAssignments->next()) { - // We assume the results are ordered by stage_assignment_id i.e. first author assignemnt is first - $userId = $authorAssignment->getUserId(); - } else { - $managerUserGroup = $userGroupDao->getDefaultByRoleId($row->context_id, ROLE_ID_MANAGER); - $managerUsers = $userGroupDao->getUsersById($managerUserGroup->getId(), $row->context_id); - $userId = $managerUsers->next()->getId(); - } - assert($userId); - - $query = $queryDao->newDataObject(); - $query->setAssocType(ASSOC_TYPE_SUBMISSION); - $query->setAssocId($row->submission_id); - $query->setStageId(WORKFLOW_STAGE_ID_SUBMISSION); - $query->setSequence(REALLY_BIG_NUMBER); - - $queryDao->insertObject($query); - $queryDao->resequence(ASSOC_TYPE_SUBMISSION, $row->submission_id); - $queryDao->insertParticipant($query->getId(), $userId); - - $queryId = $query->getId(); - - $note = $noteDao->newDataObject(); - $note->setUserId($userId); - $note->setAssocType(ASSOC_TYPE_QUERY); - $note->setTitle('Cover Note to Editor'); - $note->setContents($commentsToEd); - $note->setDateCreated(strtotime($row->date_submitted)); - $note->setDateModified(strtotime($row->date_submitted)); - $note->setAssocId($queryId); - $noteDao->insertObject($note); - } - - // remove temporary table - $submissionDao->update('DROP TABLE submissions_tmp'); - - return true; - } - - /** - * Private function to reassign signoff notes and files to queries. - * @param $signoffId int Signoff ID - * @param $queryId int Query ID - */ - private function _transferSignoffData($signoffId, $queryId) { - $noteDao = DAORegistry::getDAO('NoteDAO'); /* @var $noteDao NoteDAO */ - $submissionFileDao = DAORegistry::getDAO('SubmissionFileDAO'); /* @var $submissionFileDao SubmissionFileDAO */ - $userDao = DAORegistry::getDAO('UserDAO'); /* @var $userDao UserDAO */ - - $notes = $noteDao->getByAssoc(1048582 /* ASSOC_TYPE_SIGNOFF */, $signoffId); - while ($note = $notes->next()) { - $note->setAssocType(ASSOC_TYPE_QUERY); - $note->setAssocId($queryId); - $noteDao->updateObject($note); - - // Convert any attached files - $submissionFilesIterator = Services::get('submissionFile')->getMany([ - 'assocTypes' => [ASSOC_TYPE_NOTE], - 'assocIds' => [$note->getId()], - ]); - foreach ($submissionFilesIterator as $submissionFile) { - $submissionFile->setData('fileStage', SUBMISSION_FILE_QUERY); - $submissionFileDao->updateObject($submissionFile); - } - } - - // Transfer signoff signoffs into notes - $signoffsResult = $submissionFileDao->retrieve( - 'SELECT * FROM signoffs WHERE symbolic = ? AND assoc_type = ? AND assoc_id = ?', - ['SIGNOFF_SIGNOFF', 1048582 /* ASSOC_TYPE_SIGNOFF */, $signoffId] - ); - foreach ($signoffsResult as $row) { - $metaSignoffId = $row->signoff_id; - $userId = $row->user_id; - $dateCompleted = $row->date_completed ? strtotime($row->date_completed) : null; - - if ($dateCompleted) { - $user = $userDao->getById($userId); - $note = $noteDao->newDataObject(); - $note->setAssocType(ASSOC_TYPE_QUERY); - $note->setAssocId($queryId); - $note->setUserId($userId); - $note->setContents('The completed task has been reviewed by ' . htmlspecialchars($user->getFullName()) . ' (' . $user->getEmail() . ').'); - $noteDao->insertObject($note); - $note->setDateCreated(Core::getCurrentDate()); - $noteDao->updateObject($note); - } - $submissionFileDao->update('DELETE FROM signoffs WHERE signoff_id=?', [$metaSignoffId]); - } - - $submissionFileDao->update('DELETE FROM signoffs WHERE signoff_id=?', [$signoffId]); - } - - /** - * If StaticPages table exists we should port the data as NMIs - * @return boolean - */ - function migrateStaticPagesToNavigationMenuItems() { - if ($this->tableExists('static_pages')) { - $contextDao = Application::getContextDAO(); - $navigationMenuItemDao = DAORegistry::getDAO('NavigationMenuItemDAO'); /* @var $navigationMenuItemDao NavigationMenuItemDAO */ - - import('plugins.generic.staticPages.classes.StaticPagesDAO'); - - $staticPagesDao = new StaticPagesDAO(); - - $contexts = $contextDao->getAll(); - while ($context = $contexts->next()) { - $contextStaticPages = $staticPagesDao->getByContextId($context->getId())->toAssociativeArray(); - foreach($contextStaticPages as $staticPage) { - $retNMIId = $navigationMenuItemDao->portStaticPage($staticPage); - if ($retNMIId) { - $staticPagesDao->deleteById($staticPage->getId()); - } else { - error_log('WARNING: The StaticPage "' . $staticPage->getLocalizedTitle() . '" uses a path (' . $staticPage->getPath() . ') that conflicts with an existing Custom Navigation Menu Item path. Skipping this StaticPage.'); - } - } - } - } - - return true; - } - - /** - * Migrate first and last user names as multilingual into the DB table user_settings. - * @return boolean - */ - function migrateUserAndAuthorNames() { - $userDao = DAORegistry::getDAO('UserDAO'); /* @var $userDao UserDAO */ - import('lib.pkp.classes.identity.Identity'); // IDENTITY_SETTING_... - // the user names will be saved in the site's primary locale - $userDao->update("INSERT INTO user_settings (user_id, locale, setting_name, setting_value, setting_type) SELECT DISTINCT u.user_id, s.primary_locale, ?, u.first_name, 'string' FROM users_tmp u, site s", [IDENTITY_SETTING_GIVENNAME]); - $userDao->update("INSERT INTO user_settings (user_id, locale, setting_name, setting_value, setting_type) SELECT DISTINCT u.user_id, s.primary_locale, ?, u.last_name, 'string' FROM users_tmp u, site s", [IDENTITY_SETTING_FAMILYNAME]); - // the author names will be saved in the submission's primary locale - $userDao->update("INSERT INTO author_settings (author_id, locale, setting_name, setting_value, setting_type) SELECT DISTINCT a.author_id, s.locale, ?, a.first_name, 'string' FROM authors_tmp a, submissions s WHERE s.submission_id = a.submission_id", [IDENTITY_SETTING_GIVENNAME]); - $userDao->update("INSERT INTO author_settings (author_id, locale, setting_name, setting_value, setting_type) SELECT DISTINCT a.author_id, s.locale, ?, a.last_name, 'string' FROM authors_tmp a, submissions s WHERE s.submission_id = a.submission_id", [IDENTITY_SETTING_FAMILYNAME]); - - // middle name will be migrated to the given name - // note that given names are already migrated to the settings table - switch (Config::getVar('database', 'driver')) { - case 'mysql': - case 'mysqli': - // the alias for _settings table cannot be used for some reason -- syntax error - $userDao->update("UPDATE user_settings, users_tmp u SET user_settings.setting_value = CONCAT(user_settings.setting_value, ' ', u.middle_name) WHERE user_settings.setting_name = ? AND u.user_id = user_settings.user_id AND u.middle_name IS NOT NULL AND u.middle_name <> ''", [IDENTITY_SETTING_GIVENNAME]); - $userDao->update("UPDATE author_settings, authors_tmp a SET author_settings.setting_value = CONCAT(author_settings.setting_value, ' ', a.middle_name) WHERE author_settings.setting_name = ? AND a.author_id = author_settings.author_id AND a.middle_name IS NOT NULL AND a.middle_name <> ''", [IDENTITY_SETTING_GIVENNAME]); - break; - case 'postgres': - case 'postgres64': - case 'postgres7': - case 'postgres8': - case 'postgres9': - $userDao->update("UPDATE user_settings SET setting_value = CONCAT(setting_value, ' ', u.middle_name) FROM users_tmp u WHERE user_settings.setting_name = ? AND u.user_id = user_settings.user_id AND u.middle_name IS NOT NULL AND u.middle_name <> ''", [IDENTITY_SETTING_GIVENNAME]); - $userDao->update("UPDATE author_settings SET setting_value = CONCAT(setting_value, ' ', a.middle_name) FROM authors_tmp a WHERE author_settings.setting_name = ? AND a.author_id = author_settings.author_id AND a.middle_name IS NOT NULL AND a.middle_name <> ''", [IDENTITY_SETTING_GIVENNAME]); - break; - default: throw new Exception('Unknown database type!'); - } - - // salutation and suffix will be migrated to the preferred public name - // user preferred public names will be inserted for each supported site locales - $siteDao = DAORegistry::getDAO('SiteDAO'); /* @var $siteDao SiteDAO */ - $site = $siteDao->getSite(); - $supportedLocales = $site->getSupportedLocales(); - $userResult = $userDao->retrieve( - "SELECT user_id, first_name, last_name, middle_name, salutation, suffix FROM users_tmp - WHERE (salutation IS NOT NULL AND salutation <> '') OR - (suffix IS NOT NULL AND suffix <> '')" - ); - foreach ($userResult as $row) { - $userId = $row->user_id; - $firstName = $row->first_name; - $lastName = $row->last_name; - $middleName = $row->middle_name; - $salutation = $row->salutation; - $suffix = $row->suffix; - foreach ($supportedLocales as $siteLocale) { - $preferredPublicName = ($salutation != '' ? "$salutation " : '') . "$firstName " . ($middleName != '' ? "$middleName " : '') . $lastName . ($suffix != '' ? ", $suffix" : ''); - if (AppLocale::isLocaleWithFamilyFirst($siteLocale)) { - $preferredPublicName = "$lastName, " . ($salutation != '' ? "$salutation " : '') . $firstName . ($middleName != '' ? " $middleName" : ''); - } - $userDao->update( - "INSERT INTO user_settings (user_id, locale, setting_name, setting_value, setting_type) VALUES (?, ?, 'preferredPublicName', ?, 'string')", - [(int) $userId, $siteLocale, $preferredPublicName] - ); - } - } - - // author suffix will be migrated to the author preferred public name - // author preferred public names will be inserted for each press supported locale - // get supported locales for the press (there shold actually be only one press) - $pressDao = DAORegistry::getDAO('PressDAO'); /* @var $pressDao PressDAO */ - $presses = $pressDao->getAll(); - $pressessSupportedLocales = []; - while ($press = $presses->next()) { - $pressessSupportedLocales[$press->getId()] = $press->getSupportedLocales(); - } - // get all authors with a suffix - $authorResult = $userDao->retrieve( - "SELECT a.author_id, a.first_name, a.last_name, a.middle_name, a.suffix, p.press_id FROM authors_tmp a - LEFT JOIN submissions s ON (s.submission_id = a.submission_id) - LEFT JOIN presses p ON (p.press_id = s.context_id) - WHERE suffix IS NOT NULL AND suffix <> ''" - ); - foreach ($authorResult as $row) { - $authorId = $row->author_id; - $firstName = $row->first_name; - $lastName = $row->last_name; - $middleName = $row->middle_name; - $suffix = $row->suffix; - $pressId = $row->press_id; - $supportedLocales = $pressessSupportedLocales[$pressId]; - foreach ($supportedLocales as $locale) { - $preferredPublicName = "$firstName " . ($middleName != '' ? "$middleName " : '') . $lastName . ($suffix != '' ? ", $suffix" : ''); - if (AppLocale::isLocaleWithFamilyFirst($locale)) { - $preferredPublicName = "$lastName, " . $firstName . ($middleName != '' ? " $middleName" : ''); - } - $userDao->update( - "INSERT INTO author_settings (author_id, locale, setting_name, setting_value, setting_type) VALUES (?, ?, 'preferredPublicName', ?, 'string')", - [(int) $authorId, $locale, $preferredPublicName] - ); - } - } - - // remove temporary table - $siteDao->update('DROP TABLE users_tmp'); - $siteDao->update('DROP TABLE authors_tmp'); - return true; - } - - /** - * Update permit_metadata_edit and can_change_metadata for user_groups and stage_assignments tables. - * - * @return boolean True indicates success. - */ - function changeUserRolesAndStageAssignmentsForStagePermitSubmissionEdit() { - $stageAssignmentDao = DAORegistry::getDAO('StageAssignmentDAO'); /** @var $stageAssignmentDao StageAssignmentDAO */ - $userGroupDao = DAORegistry::getDAO('UserGroupDAO'); /** @var $userGroupDao UserGroupDAO */ - - $roles = UserGroupDAO::getNotChangeMetadataEditPermissionRoles(); - $roleString = '(' . implode(",", $roles) . ')'; - - $userGroupDao->update('UPDATE user_groups SET permit_metadata_edit = 1 WHERE role_id IN ' . $roleString); - switch (Config::getVar('database', 'driver')) { - case 'mysql': - case 'mysqli': - $stageAssignmentDao->update('UPDATE stage_assignments sa JOIN user_groups ug on sa.user_group_id = ug.user_group_id SET sa.can_change_metadata = 1 WHERE ug.role_id IN ' . $roleString); - break; - case 'postgres': - case 'postgres64': - case 'postgres7': - case 'postgres8': - case 'postgres9': - $stageAssignmentDao->update('UPDATE stage_assignments sa SET can_change_metadata=1 FROM user_groups ug WHERE sa.user_group_id = ug.user_group_id AND ug.role_id IN ' . $roleString); - break; - default: throw new Exception("Unknown database type!"); - } - - return true; - } - - /** - * Update how submission cover images are stored - * - * 1. Move the cover images into /public and rename them. - * - * 2. Change the coverImage setting to a multilingual setting - * stored under the submission_settings table, which will - * be migrated to the publication_settings table once it - * is created. - */ - function migrateSubmissionCoverImages() { - import('lib.pkp.classes.file.FileManager'); - import('classes.file.PublicFileManager'); - - $fileManager = new \FileManager(); - $publicFileManager = new \PublicFileManager(); - $contexts = []; - - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); /* @var $submissionDao SubmissionDAO */ - $result = $submissionDao->retrieve( - 'SELECT ps.submission_id as submission_id, - ps.cover_image as cover_image, - s.context_id as context_id - FROM published_submissions ps - LEFT JOIN submissions s ON (s.submission_id = ps.submission_id)' - ); - foreach ($result as $row) { - if (empty($row->cover_image)) continue; - $coverImage = unserialize($row->cover_image); - if (empty($coverImage)) continue; - - if (!isset($contexts[$row->context_id])) { - $contexts[$row->context_id] = Services::get('context')->get($row->context_id); - }; - $context = $contexts[$row->context_id]; - - // Get existing image paths - $basePath = Services::get('submissionFile')->getSubmissionDir($row->context_id, $row->submission_id); - $coverPath = Config::getVar('files', 'files_dir') . '/' . $basePath . '/simple/' . $coverImage['name']; - $coverPathInfo = pathinfo($coverPath); - $thumbPath = Config::getVar('files', 'files_dir') . '/' . $basePath . '/simple/' . $coverImage['thumbnailName']; - $thumbPathInfo = pathinfo($thumbPath); - - // Copy the files to the public directory - $newCoverPath = join('_', [ - 'submission', - $row->submission_id, - $row->submission_id, - 'coverImage', - ]) . '.' . $coverPathInfo['extension']; - $publicFileManager->copyContextFile( - $row->context_id, - $coverPath, - $newCoverPath - ); - $newThumbPath = join('_', [ - 'submission', - $row->submission_id, - $row->submission_id, - 'coverImage', - 't' - ]) . '.' . $thumbPathInfo['extension']; - $publicFileManager->copyContextFile( - $row->context_id, - $thumbPath, - $newThumbPath - ); - - // Create a submission_settings entry for each locale - if(isset($context)) { - foreach ($context->getSupportedFormLocales() as $localeKey) { - $newCoverPathInfo = pathinfo($newCoverPath); - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); - /* @var $submissionDao SubmissionDAO */ - $submissionDao->update( - 'INSERT INTO submission_settings (submission_id, setting_name, setting_value, setting_type, locale) - VALUES (?, ?, ?, ?, ?)', - [ - $row->submission_id, - 'coverImage', - serialize([ - 'uploadName' => $newCoverPathInfo['basename'], - 'dateUploaded' => $coverImage['dateUploaded'], - 'altText' => '', - ]), - 'object', - $localeKey, - ] - ); - } - } - - // Delete the old images - $fileManager->deleteByPath($coverPath); - $fileManager->deleteByPath($thumbPath); - } - - return true; - } - - /** - * Get the directory of a file based on its file stage - * - * @param int $fileStage ONe of SUBMISSION_FILE_ constants - * @return string - */ - function _fileStageToPath($fileStage) { - import('lib.pkp.classes.submission.SubmissionFile'); - static $fileStagePathMap = [ - SUBMISSION_FILE_SUBMISSION => 'submission', - SUBMISSION_FILE_NOTE => 'note', - SUBMISSION_FILE_REVIEW_FILE => 'submission/review', - SUBMISSION_FILE_REVIEW_ATTACHMENT => 'submission/review/attachment', - SUBMISSION_FILE_REVIEW_REVISION => 'submission/review/revision', - SUBMISSION_FILE_FINAL => 'submission/final', - SUBMISSION_FILE_COPYEDIT => 'submission/copyedit', - SUBMISSION_FILE_DEPENDENT => 'submission/proof', - SUBMISSION_FILE_PROOF => 'submission/proof', - SUBMISSION_FILE_PRODUCTION_READY => 'submission/productionReady', - SUBMISSION_FILE_ATTACHMENT => 'attachment', - SUBMISSION_FILE_QUERY => 'submission/query', - ]; - - if (!isset($fileStagePathMap[$fileStage])) { - throw new Exception('A file assigned to the file stage ' . $fileStage . ' could not be migrated.'); - } - - return $fileStagePathMap[$fileStage]; - } -} - - diff --git a/classes/install/Upgrade.php b/classes/install/Upgrade.php new file mode 100644 index 00000000000..172d2fc7254 --- /dev/null +++ b/classes/install/Upgrade.php @@ -0,0 +1,366 @@ + 'pressName', + 'contextUrl' => 'pressUrl', + 'contextSignature' => 'pressSignature', + ]; + + /** + * Constructor. + * + * @param array $params upgrade parameters + */ + public function __construct($params, $installFile = 'upgrade.xml', $isPlugin = false) + { + parent::__construct($installFile, $params, $isPlugin); + } + + + /** + * Returns true iff this is an upgrade process. + * + * @return bool + */ + public function isUpgrade() + { + return true; + } + + + // + // Specific upgrade actions + // + /** + * If StaticPages table exists we should port the data as NMIs + * + * @return bool + */ + public function migrateStaticPagesToNavigationMenuItems() + { + if ($this->tableExists('static_pages')) { + $contextDao = Application::getContextDAO(); + $navigationMenuItemDao = DAORegistry::getDAO('NavigationMenuItemDAO'); /** @var NavigationMenuItemDAO $navigationMenuItemDao */ + + $staticPagesDao = new \APP\plugins\generic\staticPages\classes\StaticPagesDAO(); + + $contexts = $contextDao->getAll(); + while ($context = $contexts->next()) { + $contextStaticPages = $staticPagesDao->getByContextId($context->getId())->toAssociativeArray(); + foreach ($contextStaticPages as $staticPage) { + $retNMIId = $navigationMenuItemDao->portStaticPage($staticPage); + if ($retNMIId) { + $staticPagesDao->deleteById($staticPage->getId()); + } else { + error_log('WARNING: The StaticPage "' . $staticPage->getLocalizedTitle() . '" uses a path (' . $staticPage->getPath() . ') that conflicts with an existing Custom Navigation Menu Item path. Skipping this StaticPage.'); + } + } + } + } + + return true; + } + + /** + * Migrate first and last user names as multilingual into the DB table user_settings. + * + * @return bool + */ + public function migrateUserAndAuthorNames() + { + // the user names will be saved in the site's primary locale + DB::update("INSERT INTO user_settings (user_id, locale, setting_name, setting_value, setting_type) SELECT DISTINCT u.user_id, s.primary_locale, ?, u.first_name, 'string' FROM users_tmp u, site s", [Identity::IDENTITY_SETTING_GIVENNAME]); + DB::update("INSERT INTO user_settings (user_id, locale, setting_name, setting_value, setting_type) SELECT DISTINCT u.user_id, s.primary_locale, ?, u.last_name, 'string' FROM users_tmp u, site s", [Identity::IDENTITY_SETTING_FAMILYNAME]); + // the author names will be saved in the submission's primary locale + DB::update("INSERT INTO author_settings (author_id, locale, setting_name, setting_value, setting_type) SELECT DISTINCT a.author_id, s.locale, ?, a.first_name, 'string' FROM authors_tmp a, submissions s WHERE s.submission_id = a.submission_id", [Identity::IDENTITY_SETTING_GIVENNAME]); + DB::update("INSERT INTO author_settings (author_id, locale, setting_name, setting_value, setting_type) SELECT DISTINCT a.author_id, s.locale, ?, a.last_name, 'string' FROM authors_tmp a, submissions s WHERE s.submission_id = a.submission_id", [Identity::IDENTITY_SETTING_FAMILYNAME]); + + // middle name will be migrated to the given name + // note that given names are already migrated to the settings table + switch (Config::getVar('database', 'driver')) { + case 'mysql': + case 'mysqli': + // the alias for _settings table cannot be used for some reason -- syntax error + DB::update("UPDATE user_settings, users_tmp u SET user_settings.setting_value = CONCAT(user_settings.setting_value, ' ', u.middle_name) WHERE user_settings.setting_name = ? AND u.user_id = user_settings.user_id AND u.middle_name IS NOT NULL AND u.middle_name <> ''", [Identity::IDENTITY_SETTING_GIVENNAME]); + DB::update("UPDATE author_settings, authors_tmp a SET author_settings.setting_value = CONCAT(author_settings.setting_value, ' ', a.middle_name) WHERE author_settings.setting_name = ? AND a.author_id = author_settings.author_id AND a.middle_name IS NOT NULL AND a.middle_name <> ''", [Identity::IDENTITY_SETTING_GIVENNAME]); + break; + case 'postgres': + case 'postgres64': + case 'postgres7': + case 'postgres8': + case 'postgres9': + DB::update("UPDATE user_settings SET setting_value = CONCAT(setting_value, ' ', u.middle_name) FROM users_tmp u WHERE user_settings.setting_name = ? AND u.user_id = user_settings.user_id AND u.middle_name IS NOT NULL AND u.middle_name <> ''", [Identity::IDENTITY_SETTING_GIVENNAME]); + DB::update("UPDATE author_settings SET setting_value = CONCAT(setting_value, ' ', a.middle_name) FROM authors_tmp a WHERE author_settings.setting_name = ? AND a.author_id = author_settings.author_id AND a.middle_name IS NOT NULL AND a.middle_name <> ''", [Identity::IDENTITY_SETTING_GIVENNAME]); + break; + default: throw new Exception('Unknown database type!'); + } + + // salutation and suffix will be migrated to the preferred public name + // user preferred public names will be inserted for each supported site locales + $siteDao = DAORegistry::getDAO('SiteDAO'); /** @var SiteDAO $siteDao */ + $site = $siteDao->getSite(); + $supportedLocales = $site->getSupportedLocales(); + $userResult = DB::select( + "SELECT user_id, first_name, last_name, middle_name, salutation, suffix FROM users_tmp + WHERE (salutation IS NOT NULL AND salutation <> '') OR + (suffix IS NOT NULL AND suffix <> '')" + ); + foreach ($userResult as $row) { + $userId = $row->user_id; + $firstName = $row->first_name; + $lastName = $row->last_name; + $middleName = $row->middle_name; + $salutation = $row->salutation; + $suffix = $row->suffix; + foreach ($supportedLocales as $siteLocale) { + $preferredPublicName = ($salutation != '' ? "{$salutation} " : '') . "{$firstName} " . ($middleName != '' ? "{$middleName} " : '') . $lastName . ($suffix != '' ? ", {$suffix}" : ''); + DB::update( + "INSERT INTO user_settings (user_id, locale, setting_name, setting_value, setting_type) VALUES (?, ?, 'preferredPublicName', ?, 'string')", + [(int) $userId, $siteLocale, $preferredPublicName] + ); + } + } + + // author suffix will be migrated to the author preferred public name + // author preferred public names will be inserted for each press supported locale + // get supported locales for the press (there should actually be only one press) + $pressDao = DAORegistry::getDAO('PressDAO'); /** @var PressDAO $pressDao */ + $presses = $pressDao->getAll(); + $pressessSupportedLocales = []; + while ($press = $presses->next()) { + $pressessSupportedLocales[$press->getId()] = $press->getSupportedLocales(); + } + // get all authors with a suffix + $authorResult = DB::select( + "SELECT a.author_id, a.first_name, a.last_name, a.middle_name, a.suffix, p.press_id FROM authors_tmp a + LEFT JOIN submissions s ON (s.submission_id = a.submission_id) + LEFT JOIN presses p ON (p.press_id = s.context_id) + WHERE suffix IS NOT NULL AND suffix <> ''" + ); + foreach ($authorResult as $row) { + $authorId = $row->author_id; + $firstName = $row->first_name; + $lastName = $row->last_name; + $middleName = $row->middle_name; + $suffix = $row->suffix; + $pressId = $row->press_id; + $supportedLocales = $pressessSupportedLocales[$pressId]; + foreach ($supportedLocales as $locale) { + $preferredPublicName = "{$firstName} " . ($middleName != '' ? "{$middleName} " : '') . $lastName . ($suffix != '' ? ", {$suffix}" : ''); + DB::update( + "INSERT INTO author_settings (author_id, locale, setting_name, setting_value, setting_type) VALUES (?, ?, 'preferredPublicName', ?, 'string')", + [(int) $authorId, $locale, $preferredPublicName] + ); + } + } + + // remove temporary table + $siteDao->update('DROP TABLE users_tmp'); + $siteDao->update('DROP TABLE authors_tmp'); + return true; + } + + /** + * Update permit_metadata_edit and can_change_metadata for user_groups and stage_assignments tables. + * + * @return bool True indicates success. + */ + public function changeUserRolesAndStageAssignmentsForStagePermitSubmissionEdit() + { + $stageAssignmentDao = DAORegistry::getDAO('StageAssignmentDAO'); /** @var StageAssignmentDAO $stageAssignmentDao */ + + $roles = Repo::userGroup()::NOT_CHANGE_METADATA_EDIT_PERMISSION_ROLES; + $roleString = '(' . implode(',', $roles) . ')'; + + DB::table('user_groups') + ->whereIn('role_id', $roles) + ->update(['permit_metadata_edit' => 1]); + + switch (Config::getVar('database', 'driver')) { + case 'mysql': + case 'mysqli': + $stageAssignmentDao->update('UPDATE stage_assignments sa JOIN user_groups ug on sa.user_group_id = ug.user_group_id SET sa.can_change_metadata = 1 WHERE ug.role_id IN ' . $roleString); + break; + case 'postgres': + case 'postgres64': + case 'postgres7': + case 'postgres8': + case 'postgres9': + $stageAssignmentDao->update('UPDATE stage_assignments sa SET can_change_metadata=1 FROM user_groups ug WHERE sa.user_group_id = ug.user_group_id AND ug.role_id IN ' . $roleString); + break; + default: throw new Exception('Unknown database type!'); + } + + return true; + } + + /** + * Update how submission cover images are stored + * + * 1. Move the cover images into /public and rename them. + * + * 2. Change the coverImage setting to a multilingual setting + * stored under the submission_settings table, which will + * be migrated to the publication_settings table once it + * is created. + */ + public function migrateSubmissionCoverImages() + { + $fileManager = new FileManager(); + $publicFileManager = new PublicFileManager(); + $contexts = []; + + $result = Repo::submission()->dao->deprecatedDao->retrieve( + 'SELECT ps.submission_id as submission_id, + ps.cover_image as cover_image, + s.context_id as context_id + FROM published_submissions ps + LEFT JOIN submissions s ON (s.submission_id = ps.submission_id)' + ); + foreach ($result as $row) { + if (empty($row->cover_image)) { + continue; + } + $coverImage = unserialize($row->cover_image); + if (empty($coverImage)) { + continue; + } + + if (!isset($contexts[$row->context_id])) { + $contexts[$row->context_id] = Services::get('context')->get($row->context_id); + }; + $context = $contexts[$row->context_id]; + + // Get existing image paths + $basePath = Repo::submissionFile() + ->getSubmissionDir($row->context_id, $row->submission_id); + $coverPath = Config::getVar('files', 'files_dir') . '/' . $basePath . '/simple/' . $coverImage['name']; + $coverPathInfo = pathinfo($coverPath); + $thumbPath = Config::getVar('files', 'files_dir') . '/' . $basePath . '/simple/' . $coverImage['thumbnailName']; + $thumbPathInfo = pathinfo($thumbPath); + + // Copy the files to the public directory + $newCoverPath = join('_', [ + 'submission', + $row->submission_id, + $row->submission_id, + 'coverImage', + ]) . '.' . $coverPathInfo['extension']; + $publicFileManager->copyContextFile( + $row->context_id, + $coverPath, + $newCoverPath + ); + $newThumbPath = join('_', [ + 'submission', + $row->submission_id, + $row->submission_id, + 'coverImage', + 't' + ]) . '.' . $thumbPathInfo['extension']; + $publicFileManager->copyContextFile( + $row->context_id, + $thumbPath, + $newThumbPath + ); + + // Create a submission_settings entry for each locale + if (isset($context)) { + foreach ($context->getSupportedFormLocales() as $localeKey) { + $newCoverPathInfo = pathinfo($newCoverPath); + Repo::submission()->dao->deprecatedDao->update( + 'INSERT INTO submission_settings (submission_id, setting_name, setting_value, setting_type, locale) + VALUES (?, ?, ?, ?, ?)', + [ + $row->submission_id, + 'coverImage', + serialize([ + 'uploadName' => $newCoverPathInfo['basename'], + 'dateUploaded' => $coverImage['dateUploaded'], + 'altText' => '', + ]), + 'object', + $localeKey, + ] + ); + } + } + + // Delete the old images + $fileManager->deleteByPath($coverPath); + $fileManager->deleteByPath($thumbPath); + } + + return true; + } + + /** + * Get the directory of a file based on its file stage + * + * @param int $fileStage One of SubmissionFile::SUBMISSION_FILE_ constants + * + * @return string + */ + public function _fileStageToPath($fileStage) + { + static $fileStagePathMap = [ + SubmissionFile::SUBMISSION_FILE_SUBMISSION => 'submission', + SubmissionFile::SUBMISSION_FILE_NOTE => 'note', + SubmissionFile::SUBMISSION_FILE_REVIEW_FILE => 'submission/review', + SubmissionFile::SUBMISSION_FILE_REVIEW_ATTACHMENT => 'submission/review/attachment', + SubmissionFile::SUBMISSION_FILE_REVIEW_REVISION => 'submission/review/revision', + SubmissionFile::SUBMISSION_FILE_FINAL => 'submission/final', + SubmissionFile::SUBMISSION_FILE_COPYEDIT => 'submission/copyedit', + SubmissionFile::SUBMISSION_FILE_DEPENDENT => 'submission/proof', + SubmissionFile::SUBMISSION_FILE_PROOF => 'submission/proof', + SubmissionFile::SUBMISSION_FILE_PRODUCTION_READY => 'submission/productionReady', + SubmissionFile::SUBMISSION_FILE_ATTACHMENT => 'attachment', + SubmissionFile::SUBMISSION_FILE_QUERY => 'submission/query', + ]; + + if (!isset($fileStagePathMap[$fileStage])) { + throw new Exception('A file assigned to the file stage ' . $fileStage . ' could not be migrated.'); + } + + return $fileStagePathMap[$fileStage]; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\install\Upgrade', '\Upgrade'); +} diff --git a/classes/log/MonographFileEmailLogDAO.inc.php b/classes/log/MonographFileEmailLogDAO.inc.php deleted file mode 100644 index cbc19450869..00000000000 --- a/classes/log/MonographFileEmailLogDAO.inc.php +++ /dev/null @@ -1,43 +0,0 @@ -setAssocType(ASSOC_TYPE_SUBMISSION_FILE); - return $returner; - } - - /** - * Get monograph file email log entries by file ID and event type. - * @param $fileId int - * @param $eventType int SUBMISSION_EMAIL_... - * @param $userId int optional Return only emails sent to this user. - * @return DAOResultFactory - */ - function getByEventType($fileId, $eventType, $userId = null) { - return parent::_getByEventType(ASSOC_TYPE_SUBMISSION_FILE, $fileId, $eventType, $userId); - } -} - - diff --git a/classes/log/MonographFileEmailLogDAO.php b/classes/log/MonographFileEmailLogDAO.php new file mode 100644 index 00000000000..ab1cd656b8a --- /dev/null +++ b/classes/log/MonographFileEmailLogDAO.php @@ -0,0 +1,57 @@ +setAssocType(Application::ASSOC_TYPE_SUBMISSION_FILE); + return $returner; + } + + /** + * Get monograph file email log entries by file ID and event type. + * + * @param int $fileId + * @param int $eventType SUBMISSION_EMAIL_... + * @param int $userId optional Return only emails sent to this user. + * + * @return DAOResultFactory + */ + public function getByEventType($fileId, $eventType, $userId = null) + { + return parent::_getByEventType(Application::ASSOC_TYPE_SUBMISSION_FILE, $fileId, $eventType, $userId); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\log\MonographFileEmailLogDAO', '\MonographFileEmailLogDAO'); +} diff --git a/classes/log/MonographFileEmailLogEntry.inc.php b/classes/log/MonographFileEmailLogEntry.inc.php deleted file mode 100644 index a8554fc24c3..00000000000 --- a/classes/log/MonographFileEmailLogEntry.inc.php +++ /dev/null @@ -1,37 +0,0 @@ -setAssocId($fileId); - } - - function getFileId() { - return $this->getAssocId(); - } - -} - - diff --git a/classes/log/MonographFileEmailLogEntry.php b/classes/log/MonographFileEmailLogEntry.php new file mode 100644 index 00000000000..b61a0b13ca9 --- /dev/null +++ b/classes/log/MonographFileEmailLogEntry.php @@ -0,0 +1,38 @@ +setAssocId($fileId); + } + + public function getFileId() + { + return $this->getAssocId(); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\log\MonographFileEmailLogEntry', '\MonographFileEmailLogEntry'); +} diff --git a/classes/log/SubmissionEventLogEntry.inc.php b/classes/log/SubmissionEventLogEntry.inc.php deleted file mode 100644 index 610e969f6cf..00000000000 --- a/classes/log/SubmissionEventLogEntry.inc.php +++ /dev/null @@ -1,34 +0,0 @@ -submission; - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($submission->getSeriesId()); - $paramArray['seriesPath'] = $series ? htmlspecialchars($series->getPath()) : ''; - $paramArray['seriesName'] = $series ? htmlspecialchars($series->getLocalizedTitle()) : ''; - parent::assignParams($paramArray); - } - - /** - * Send this email to all assigned series editors in the given stage - * @param $submissionId int - * @param $stageId int - */ - function toAssignedSeriesEditors($submissionId, $stageId) { - return $this->toAssignedSubEditors($submissionId, $stageId); - } - - /** - * CC this email to all assigned series editors in the given stage - * @param $submissionId int - * @param $stageId int - * @return array of Users (note, this differs from OxS which returns EditAssignment objects) - */ - function ccAssignedSeriesEditors($submissionId, $stageId) { - return $this->ccAssignedSubEditors($submissionId, $stageId); - } - - /** - * BCC this email to all assigned series editors in the given stage - * @param $submissionId int - * @param $stageId int - */ - function bccAssignedSeriesEditors($submissionId, $stageId) { - return $this->bccAssignedSubEditors($submissionId, $stageId); - } -} - - diff --git a/classes/mail/Repository.php b/classes/mail/Repository.php new file mode 100644 index 00000000000..f9213f6deae --- /dev/null +++ b/classes/mail/Repository.php @@ -0,0 +1,29 @@ +merge(collect([ + mailables\DecisionSendInternalReviewNotifyAuthor::class, + ])); + } +} diff --git a/classes/mail/mailables/DecisionSendInternalReviewNotifyAuthor.php b/classes/mail/mailables/DecisionSendInternalReviewNotifyAuthor.php new file mode 100644 index 00000000000..8f647234339 --- /dev/null +++ b/classes/mail/mailables/DecisionSendInternalReviewNotifyAuthor.php @@ -0,0 +1,32 @@ + __('emailTemplate.variable.context.contextAcronym'), + ] + ); + } + + /** + * @copydoc Variable::values() + */ + public function values(string $locale): array + { + $values = parent::values($locale); + + // Pass the values into the context signature so variables + // used in the signature can be rendered. + $values[static::CONTEXT_SIGNATURE] = $this->getContextSignature($values); + $values[static::CONTEXT_ACRONYM] = htmlspecialchars($this->context->getLocalizedData('acronym')); + + return $values; + } +} diff --git a/classes/mail/variables/SubmissionEmailVariable.php b/classes/mail/variables/SubmissionEmailVariable.php new file mode 100644 index 00000000000..5983f5edc08 --- /dev/null +++ b/classes/mail/variables/SubmissionEmailVariable.php @@ -0,0 +1,35 @@ +getDispatcher()->url( + Application::get()->getRequest(), + Application::ROUTE_PAGE, + $context->getPath(), + 'catalog', + 'book', + $this->submission->getBestId() + ); + } +} diff --git a/classes/migration/OMPMigration.inc.php b/classes/migration/OMPMigration.inc.php deleted file mode 100644 index e51bfaa0639..00000000000 --- a/classes/migration/OMPMigration.inc.php +++ /dev/null @@ -1,326 +0,0 @@ -create('identification_codes', function (Blueprint $table) { - $table->bigInteger('identification_code_id')->autoIncrement(); - $table->bigInteger('publication_format_id'); - $table->string('code', 40); - $table->string('value', 255); - $table->index(['identification_code_id', 'publication_format_id', 'code'], 'identification_codes_key'); - }); - - Capsule::schema()->create('publication_dates', function (Blueprint $table) { - $table->bigInteger('publication_date_id')->autoIncrement(); - $table->bigInteger('publication_format_id'); - $table->string('role', 40); - $table->string('date_format', 40); - $table->string('date', 255); - $table->index(['publication_date_id', 'publication_format_id', 'role'], 'format_publication_dates_pkey'); - }); - - Capsule::schema()->create('sales_rights', function (Blueprint $table) { - $table->bigInteger('sales_rights_id')->autoIncrement(); - $table->bigInteger('publication_format_id'); - $table->string('type', 40); - // ROW is 'rest of world'. ROW sales types have no territories assigned to them - $table->smallInteger('row_setting')->default(0); - $table->text('countries_included')->nullable(); - $table->text('countries_excluded')->nullable(); - $table->text('regions_included')->nullable(); - $table->text('regions_excluded')->nullable(); - $table->index(['sales_rights_id', 'publication_format_id'], 'format_sales_rights_pkey'); - }); - - Capsule::schema()->create('markets', function (Blueprint $table) { - $table->bigInteger('market_id')->autoIncrement(); - $table->bigInteger('publication_format_id'); - $table->text('countries_included')->nullable(); - $table->text('countries_excluded')->nullable(); - $table->text('regions_included')->nullable(); - $table->text('regions_excluded')->nullable(); - $table->string('market_date_role', 40); - $table->string('market_date_format', 40); - $table->string('market_date', 255); - $table->string('price', 255)->nullable(); - $table->string('discount', 255)->nullable(); - $table->string('price_type_code', 255)->nullable(); - $table->string('currency_code', 255)->nullable(); - $table->string('tax_rate_code', 255)->nullable(); - $table->string('tax_type_code', 255)->nullable(); - $table->bigInteger('agent_id')->nullable(); - $table->bigInteger('supplier_id')->nullable(); - $table->index(['market_id', 'publication_format_id'], 'format_markets_pkey'); - }); - - Capsule::schema()->create('representatives', function (Blueprint $table) { - $table->bigInteger('representative_id')->autoIncrement(); - $table->bigInteger('submission_id'); - $table->string('role', 40); - $table->string('representative_id_type', 255)->nullable(); - $table->string('representative_id_value', 255)->nullable(); - $table->string('name', 255)->nullable(); - $table->string('phone', 255)->nullable(); - $table->string('email', 255)->nullable(); - $table->string('url', 2047)->nullable(); - $table->smallInteger('is_supplier')->default(1); - $table->index(['representative_id', 'submission_id'], 'format_representatives_pkey'); - }); - - Capsule::schema()->create('features', function (Blueprint $table) { - $table->bigInteger('submission_id'); - $table->bigInteger('assoc_type'); - $table->bigInteger('assoc_id'); - $table->bigInteger('seq'); - $table->unique(['assoc_type', 'assoc_id', 'submission_id'], 'press_features_pkey'); - }); - - Capsule::schema()->create('new_releases', function (Blueprint $table) { - $table->bigInteger('submission_id'); - $table->bigInteger('assoc_type'); - $table->bigInteger('assoc_id'); - $table->unique(['assoc_type', 'assoc_id', 'submission_id'], 'new_releases_pkey'); - }); - - // Press series. - Capsule::schema()->create('series', function (Blueprint $table) { - $table->bigInteger('series_id')->autoIncrement(); - $table->bigInteger('press_id'); - $table->bigInteger('review_form_id')->nullable(); - // NOTNULL not included for the sake of 1.1 upgrade, which didn't include this column - $table->float('seq', 8, 2)->default(0)->nullable(); - $table->smallInteger('featured')->default(0); - $table->smallInteger('editor_restricted')->default(0); - $table->string('path', 255); - $table->text('image')->nullable(); - $table->smallInteger('is_inactive')->default(0); - $table->index(['press_id'], 'series_press_id'); - $table->unique(['press_id', 'path'], 'series_path'); - }); - - // Series-specific settings - Capsule::schema()->create('series_settings', function (Blueprint $table) { - $table->bigInteger('series_id'); - $table->string('locale', 14)->default(''); - $table->string('setting_name', 255); - $table->text('setting_value')->nullable(); - $table->string('setting_type', 6)->comment('(bool|int|float|string|object)'); - $table->unique(['series_id', 'locale', 'setting_name'], 'series_settings_pkey'); - }); - - // Associations for categories within a series. - Capsule::schema()->create('series_categories', function (Blueprint $table) { - $table->bigInteger('series_id'); - $table->bigInteger('category_id'); - $table->unique(['series_id', 'category_id'], 'series_categories_id'); - }); - - // Publications - Capsule::schema()->create('publications', function (Blueprint $table) { - $table->bigInteger('publication_id')->autoIncrement(); - $table->date('date_published')->nullable(); - $table->datetime('last_modified')->nullable(); - $table->string('locale', 14)->nullable(); - $table->bigInteger('primary_contact_id')->nullable(); - $table->string('publication_date_type', 32)->default('pub')->nullable(); - // PUBLICATION_TYPE_PUBLICATION - $table->string('publication_type', 32)->default('publication')->nullable(); - $table->float('seq', 8, 2)->default(0); - $table->bigInteger('series_id')->nullable(); - $table->string('series_position', 255)->nullable(); - $table->bigInteger('submission_id'); - $table->smallInteger('status')->default(1); - $table->string('url_path', 64)->nullable(); - $table->bigInteger('version')->nullable(); - $table->index(['submission_id'], 'publications_submission_id'); - $table->index(['series_id'], 'publications_section_id'); - }); - - // Publication formats assigned to published submissions - Capsule::schema()->create('publication_formats', function (Blueprint $table) { - $table->bigInteger('publication_format_id')->autoIncrement(); - $table->bigInteger('publication_id'); - // DEPRECATED: Held over for the OJS 2.x to 3. upgrade process pkp/pkp-lib#3572 - $table->bigInteger('submission_id')->nullable(); - $table->smallInteger('physical_format')->default(1)->nullable(); - $table->string('entry_key', 64)->nullable(); - $table->float('seq', 8, 2)->default(0); - $table->string('file_size', 255)->nullable(); - $table->string('front_matter', 255)->nullable(); - $table->string('back_matter', 255)->nullable(); - $table->string('height', 255)->nullable(); - $table->string('height_unit_code', 255)->nullable(); - $table->string('width', 255)->nullable(); - $table->string('width_unit_code', 255)->nullable(); - $table->string('thickness', 255)->nullable(); - $table->string('thickness_unit_code', 255)->nullable(); - $table->string('weight', 255)->nullable(); - $table->string('weight_unit_code', 255)->nullable(); - $table->string('product_composition_code', 255)->nullable(); - $table->string('product_form_detail_code', 255)->nullable(); - $table->string('country_manufacture_code', 255)->nullable(); - $table->string('imprint', 255)->nullable(); - $table->string('product_availability_code', 255)->nullable(); - $table->string('technical_protection_code', 255)->nullable(); - $table->string('returnable_indicator_code', 255)->nullable(); - $table->string('remote_url', 2047)->nullable(); - $table->string('url_path', 64)->nullable(); - $table->smallInteger('is_approved')->default(0); - $table->smallInteger('is_available')->default(0); - $table->index(['submission_id'], 'publication_format_submission_id'); - }); - - // Publication Format metadata. - Capsule::schema()->create('publication_format_settings', function (Blueprint $table) { - $table->bigInteger('publication_format_id'); - $table->string('locale', 14)->default(''); - $table->string('setting_name', 255); - $table->text('setting_value')->nullable(); - $table->string('setting_type', 6)->comment('(bool|int|float|string|object)'); - $table->index(['publication_format_id'], 'publication_format_id_key'); - $table->unique(['publication_format_id', 'locale', 'setting_name'], 'publication_format_settings_pkey'); - }); - - Capsule::schema()->create('submission_chapters', function (Blueprint $table) { - $table->bigInteger('chapter_id')->autoIncrement(); - $table->bigInteger('primary_contact_id')->nullable(); - $table->bigInteger('publication_id'); - $table->float('seq', 8, 2)->default(0); - $table->index(['chapter_id'], 'chapters_chapter_id'); - $table->index(['publication_id'], 'chapters_publication_id'); - }); - - // Language dependent monograph chapter metadata. - Capsule::schema()->create('submission_chapter_settings', function (Blueprint $table) { - $table->bigInteger('chapter_id'); - $table->string('locale', 14)->default(''); - $table->string('setting_name', 255); - $table->text('setting_value')->nullable(); - $table->string('setting_type', 6)->comment('(bool|int|float|string|object)'); - $table->index(['chapter_id'], 'submission_chapter_settings_chapter_id'); - $table->unique(['chapter_id', 'locale', 'setting_name'], 'submission_chapter_settings_pkey'); - }); - - Capsule::schema()->create('submission_chapter_authors', function (Blueprint $table) { - $table->bigInteger('author_id'); - $table->bigInteger('chapter_id'); - $table->smallInteger('primary_contact')->default(0); - $table->float('seq', 8, 2)->default(0); - $table->unique(['author_id', 'chapter_id'], 'chapter_authors_pkey'); - }); - - // Presses and basic press settings. - Capsule::schema()->create('presses', function (Blueprint $table) { - $table->bigInteger('press_id')->autoIncrement(); - $table->string('path', 32); - $table->float('seq', 8, 2)->default(0); - $table->string('primary_locale', 14); - $table->smallInteger('enabled')->default(1); - $table->unique(['path'], 'press_path'); - }); - - // Press settings. - Capsule::schema()->create('press_settings', function (Blueprint $table) { - $table->bigInteger('press_id'); - $table->string('locale', 14)->default(''); - $table->string('setting_name', 255); - $table->text('setting_value')->nullable(); - $table->string('setting_type', 6)->nullable(); - $table->index(['press_id'], 'press_settings_press_id'); - $table->unique(['press_id', 'locale', 'setting_name'], 'press_settings_pkey'); - }); - - // Spotlights - Capsule::schema()->create('spotlights', function (Blueprint $table) { - $table->bigInteger('spotlight_id')->autoIncrement(); - $table->smallInteger('assoc_type'); - $table->smallInteger('assoc_id'); - $table->bigInteger('press_id'); - $table->index(['assoc_type', 'assoc_id'], 'spotlights_assoc'); - }); - - // Spotlight metadata. - Capsule::schema()->create('spotlight_settings', function (Blueprint $table) { - $table->bigInteger('spotlight_id'); - $table->string('locale', 14)->default(''); - $table->string('setting_name', 255); - $table->text('setting_value')->nullable(); - $table->string('setting_type', 6)->comment('(bool|int|float|string|object|date)'); - $table->index(['spotlight_id'], 'spotlight_settings_id'); - $table->unique(['spotlight_id', 'locale', 'setting_name'], 'spotlight_settings_pkey'); - }); - - // Logs queued (unfulfilled) payments. - Capsule::schema()->create('queued_payments', function (Blueprint $table) { - $table->bigInteger('queued_payment_id')->autoIncrement(); - $table->datetime('date_created'); - $table->datetime('date_modified'); - $table->date('expiry_date')->nullable(); - $table->text('payment_data')->nullable(); - }); - - // Logs completed (fulfilled) payments. - Capsule::schema()->create('completed_payments', function (Blueprint $table) { - $table->bigInteger('completed_payment_id')->autoIncrement(); - $table->datetime('timestamp'); - $table->bigInteger('payment_type'); - $table->bigInteger('context_id'); - $table->bigInteger('user_id')->nullable(); - // NOTE: assoc_id NOT numeric to incorporate file idents - $table->string('assoc_id', 16)->nullable(); - $table->float('amount', 8, 2); - $table->string('currency_code_alpha', 3)->nullable(); - $table->string('payment_method_plugin_name', 80)->nullable(); - }); - } - - /** - * Reverse the migration. - * @return void - */ - public function down() { - Capsule::schema()->drop('completed_payments'); - Capsule::schema()->drop('identification_codes'); - Capsule::schema()->drop('publication_dates'); - Capsule::schema()->drop('sales_rights'); - Capsule::schema()->drop('markets'); - Capsule::schema()->drop('representatives'); - Capsule::schema()->drop('features'); - Capsule::schema()->drop('new_releases'); - Capsule::schema()->drop('series'); - Capsule::schema()->drop('series_settings'); - Capsule::schema()->drop('series_categories'); - Capsule::schema()->drop('publications'); - Capsule::schema()->drop('publication_formats'); - Capsule::schema()->drop('publication_format_settings'); - Capsule::schema()->drop('submission_chapters'); - Capsule::schema()->drop('submission_chapter_settings'); - Capsule::schema()->drop('submission_chapter_authors'); - Capsule::schema()->drop('presses'); - Capsule::schema()->drop('press_settings'); - Capsule::schema()->drop('spotlights'); - Capsule::schema()->drop('spotlight_settings'); - Capsule::schema()->drop('queued_payments'); - Capsule::schema()->drop('completed_payments'); - } -} diff --git a/classes/migration/install/MetricsMigration.php b/classes/migration/install/MetricsMigration.php new file mode 100644 index 00000000000..decb60c44ce --- /dev/null +++ b/classes/migration/install/MetricsMigration.php @@ -0,0 +1,529 @@ +comment('Daily statistics for views of the homepage.'); + $table->bigIncrements('metrics_context_id'); + + $table->string('load_id', 50); + $table->index(['load_id'], 'metrics_context_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_context_context_id'); + + $table->date('date'); + $table->integer('metric'); + }); + Schema::create('metrics_series', function (Blueprint $table) { + $table->comment('Daily statistics for views of published submissions in each series.'); + $table->bigIncrements('metrics_series_id'); + + $table->string('load_id', 50); + $table->index(['load_id'], 'metrics_series_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_series_context_id'); + + $table->bigInteger('series_id'); + $table->foreign('series_id')->references('series_id')->on('series')->onDelete('cascade'); + $table->index(['series_id'], 'metrics_series_series_id'); + + $table->date('date'); + $table->integer('metric'); + + $table->index(['context_id', 'series_id'], 'metrics_series_context_id_series_id'); + }); + Schema::create('metrics_submission', function (Blueprint $table) { + $table->comment('Daily statistics for views and downloads of published submissions and files.'); + $table->bigIncrements('metrics_submission_id'); + + $table->string('load_id', 50); + $table->index(['load_id'], 'ms_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_submission_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_submission_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'metrics_submission_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'metrics_submission_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'metrics_submission_submission_file_id'); + + $table->bigInteger('file_type')->nullable(); + $table->bigInteger('assoc_type'); + $table->date('date'); + $table->integer('metric'); + + $table->index(['context_id', 'submission_id', 'assoc_type', 'file_type'], 'ms_context_id_submission_id_assoc_type_file_type'); + }); + Schema::create('metrics_counter_submission_daily', function (Blueprint $table) { + $table->comment('Daily statistics matching the COUNTER R5 protocol for views and downloads of published submissions and files.'); + $table->bigIncrements('metrics_counter_submission_daily_id'); + + $table->string('load_id', 50); + $table->index(['load_id'], 'msd_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msd_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_counter_submission_daily_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msd_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_counter_submission_daily_submission_id'); + + $table->date('date'); + $table->integer('metric_book_investigations'); + $table->integer('metric_book_investigations_unique'); + $table->integer('metric_book_requests'); + $table->integer('metric_book_requests_unique'); + $table->integer('metric_chapter_investigations'); + $table->integer('metric_chapter_investigations_unique'); + $table->integer('metric_chapter_requests'); + $table->integer('metric_chapter_requests_unique'); + $table->integer('metric_title_investigations_unique'); + $table->integer('metric_title_requests_unique'); + + $table->index(['context_id', 'submission_id'], 'msd_context_id_submission_id'); + $table->unique(['load_id', 'context_id', 'submission_id', 'date'], 'msd_uc_load_id_context_id_submission_id_date'); + }); + Schema::create('metrics_counter_submission_monthly', function (Blueprint $table) { + $table->comment('Monthly statistics matching the COUNTER R5 protocol for views and downloads of published submissions and files.'); + $table->bigIncrements('metrics_counter_submission_monthly_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msm_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_counter_submission_monthly_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msm_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_counter_submission_monthly_submission_id'); + + $table->integer('month'); + $table->integer('metric_book_investigations'); + $table->integer('metric_book_investigations_unique'); + $table->integer('metric_book_requests'); + $table->integer('metric_book_requests_unique'); + $table->integer('metric_chapter_investigations'); + $table->integer('metric_chapter_investigations_unique'); + $table->integer('metric_chapter_requests'); + $table->integer('metric_chapter_requests_unique'); + $table->integer('metric_title_investigations_unique'); + $table->integer('metric_title_requests_unique'); + + $table->index(['context_id', 'submission_id'], 'msm_context_id_submission_id'); + $table->unique(['context_id', 'submission_id', 'month'], 'msm_uc_context_id_submission_id_month'); + }); + Schema::create('metrics_counter_submission_institution_daily', function (Blueprint $table) { + $table->comment('Daily statistics matching the COUNTER R5 protocol for views and downloads from institutions.'); + $table->bigIncrements('metrics_counter_submission_institution_daily_id'); + + $table->string('load_id', 50); + $table->index(['load_id'], 'msid_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msid_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'msid_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msid_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'msid_submission_id'); + + $table->bigInteger('institution_id'); + $table->foreign('institution_id', 'msid_institution_id_foreign')->references('institution_id')->on('institutions')->onDelete('cascade'); + $table->index(['institution_id'], 'msid_institution_id'); + + $table->date('date'); + $table->integer('metric_book_investigations'); + $table->integer('metric_book_investigations_unique'); + $table->integer('metric_book_requests'); + $table->integer('metric_book_requests_unique'); + $table->integer('metric_chapter_investigations'); + $table->integer('metric_chapter_investigations_unique'); + $table->integer('metric_chapter_requests'); + $table->integer('metric_chapter_requests_unique'); + $table->integer('metric_title_investigations_unique'); + $table->integer('metric_title_requests_unique'); + + $table->index(['context_id', 'submission_id'], 'msid_context_id_submission_id'); + $table->unique(['load_id', 'context_id', 'submission_id', 'institution_id', 'date'], 'msid_uc_load_id_context_id_submission_id_institution_id_date'); + }); + Schema::create('metrics_counter_submission_institution_monthly', function (Blueprint $table) { + $table->comment('Monthly statistics matching the COUNTER R5 protocol for views and downloads from institutions.'); + $table->bigIncrements('metrics_counter_submission_institution_monthly_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msim_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'msim_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msim_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'msim_submission_id'); + + $table->bigInteger('institution_id'); + $table->foreign('institution_id', 'msim_institution_id_foreign')->references('institution_id')->on('institutions')->onDelete('cascade'); + $table->index(['institution_id'], 'msim_institution_id'); + + $table->integer('month'); + $table->integer('metric_book_investigations'); + $table->integer('metric_book_investigations_unique'); + $table->integer('metric_book_requests'); + $table->integer('metric_book_requests_unique'); + $table->integer('metric_chapter_investigations'); + $table->integer('metric_chapter_investigations_unique'); + $table->integer('metric_chapter_requests'); + $table->integer('metric_chapter_requests_unique'); + $table->integer('metric_title_investigations_unique'); + $table->integer('metric_title_requests_unique'); + + $table->index(['context_id', 'submission_id'], 'msim_context_id_submission_id'); + $table->unique(['context_id', 'submission_id', 'institution_id', 'month'], 'msim_uc_context_id_submission_id_institution_id_month'); + }); + Schema::create('metrics_submission_geo_daily', function (Blueprint $table) { + $table->comment('Daily statistics by country, region and city for views and downloads of published submissions and files.'); + $table->bigIncrements('metrics_submission_geo_daily_id'); + + $table->string('load_id', 50); + $table->index(['load_id'], 'msgd_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msgd_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_submission_geo_daily_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msgd_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_submission_geo_daily_submission_id'); + + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->date('date'); + $table->integer('metric'); + $table->integer('metric_unique'); + + $table->index(['context_id', 'submission_id'], 'msgd_context_id_submission_id'); + switch (DB::getDriverName()) { + case 'mysql': + // See "Create a database table" here: https://db-ip.com/db/format/ip-to-city-lite/csv.html + // where city is defined as varchar(80) + $table->unique([DB::raw('load_id, context_id, submission_id, country, region, city(80), date')], 'msgd_uc_load_context_submission_c_r_c_date'); + break; + case 'pgsql': + $table->unique(['load_id', 'context_id', 'submission_id', 'country', 'region', 'city', 'date'], 'msgd_uc_load_context_submission_c_r_c_date'); + break; + } + }); + Schema::create('metrics_submission_geo_monthly', function (Blueprint $table) { + $table->comment('Monthly statistics by country, region and city for views and downloads of published submissions and files.'); + $table->bigIncrements('metrics_submission_geo_monthly_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msgm_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_submission_geo_monthly_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msgm_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_submission_geo_monthly_submission_id'); + + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->integer('month'); + $table->integer('metric'); + $table->integer('metric_unique'); + + $table->index(['context_id', 'submission_id'], 'msgm_context_id_submission_id'); + switch (DB::getDriverName()) { + case 'mysql': + // See "Create a database table" here: https://db-ip.com/db/format/ip-to-city-lite/csv.html + // where city is defined as varchar(80) + $table->unique([DB::raw('context_id, submission_id, country, region, city(80), month')], 'msgm_uc_context_submission_c_r_c_month'); + break; + case 'pgsql': + $table->unique(['context_id', 'submission_id', 'country', 'region', 'city', 'month'], 'msgm_uc_context_submission_c_r_c_month'); + break; + } + }); + + // Usage stats total book and chapter item temporary records + Schema::create('usage_stats_total_temporary_records', function (Blueprint $table) { + $table->comment('Temporary stats totals based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.'); + $table->bigIncrements('usage_stats_temp_total_id'); + + $table->dateTime('date', $precision = 0); + $table->string('ip', 64); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + $table->string('canonical_url', 255); + + $table->bigInteger('series_id')->nullable(); + $table->foreign('series_id', 'ust_series_id_foreign')->references('series_id')->on('series')->onDelete('cascade'); + $table->index(['series_id'], 'ust_series_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'ust_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'ust_context_id'); + + $table->bigInteger('submission_id')->nullable(); + $table->foreign('submission_id', 'ust_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'ust_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'ust_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'ust_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'ust_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'ust_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'ust_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'ust_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 50); + + $table->index(['load_id', 'context_id', 'ip'], 'ust_load_id_context_id_ip'); + }); + + // Usage stats unique book and chapter item investigations temporary records + // No need to consider series_id here because investigations are only relevant/calculated on submission level. + Schema::create('usage_stats_unique_item_investigations_temporary_records', function (Blueprint $table) { + $table->comment('Temporary stats on unique downloads based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.'); + $table->bigIncrements('usage_stats_temp_unique_item_id'); + + $table->dateTime('date', $precision = 0); + $table->string('ip', 64); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'usii_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'usii_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'usii_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'usii_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'usii_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'usii_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'usii_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'usii_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'usii_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'usii_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 50); + + $table->index(['load_id', 'context_id', 'ip'], 'usii_load_id_context_id_ip'); + }); + + // Usage stats unique book and chapter item requests temporary records + // No need to consider series_id here because requests are only relevant/calculated on submission level. + Schema::create('usage_stats_unique_item_requests_temporary_records', function (Blueprint $table) { + $table->comment('Temporary stats on unique views based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.'); + $table->bigIncrements('usage_stats_temp_item_id'); + + $table->dateTime('date', $precision = 0); + $table->string('ip', 64); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'usir_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'usir_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'usir_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'usir_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'usir_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'usir_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'usir_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'usir_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'usir_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'usir_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 50); + + $table->index(['load_id', 'context_id', 'ip'], 'usir_load_id_context_id_ip'); + }); + + // Usage stats unique title investigations temporary records + // No need to consider series_id here because investigations are only relevant/calculated on submission level. + Schema::create('usage_stats_unique_title_investigations_temporary_records', function (Blueprint $table) { + $table->comment('Temporary stats for views and downloads from institutions based on visitor log records. Data in this table is provisional. See the metrics_* tables for compiled stats.'); + $table->bigIncrements('usage_stats_temp_unique_investigations_id'); + $table->dateTime('date', $precision = 0); + $table->string('ip', 64); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'usti_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'usti_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'usti_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'usti_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'usti_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'usti_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'usti_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'usti_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'usti_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'usti_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 50); + + $table->index(['load_id', 'context_id', 'ip'], 'usti_load_id_context_id_ip'); + }); + + // Usage stats unique title requests temporary records + // No need to consider series_id here because requests are only relevant/calculated on submission level. + Schema::create('usage_stats_unique_title_requests_temporary_records', function (Blueprint $table) { + $table->comment('Temporary stats for unique title requests. Data in this table is provisional. See the metrics_* tables for compiled stats.'); + $table->bigIncrements('usage_stats_temp_unique_requests_id'); + + $table->dateTime('date', $precision = 0); + $table->string('ip', 64); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'ustr_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'ustr_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'ustr_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'ustr_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'ustr_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'ustr_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'ustr_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'ustr_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'ustr_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'ustr_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 50); + + $table->index(['load_id', 'context_id', 'ip'], 'ustr_load_id_context_id_ip'); + }); + + // Usage stats institution temporary records + Schema::create('usage_stats_institution_temporary_records', function (Blueprint $table) { + $table->comment('Temporary stats by institution. Data in this table is provisional. See the metrics_* tables for compiled stats.'); + $table->bigIncrements('usage_stats_temp_institution_id'); + + $table->string('load_id', 50); + $table->bigInteger('line_number'); + + $table->bigInteger('institution_id'); + $table->foreign('institution_id', 'usi_institution_id_foreign')->references('institution_id')->on('institutions')->onDelete('cascade'); + $table->index(['institution_id'], 'usi_institution_id'); + + $table->unique(['load_id', 'line_number', 'institution_id'], 'usi_load_id_line_number_institution_id'); + }); + } + + /** + * Reverse the migration. + */ + public function down(): void + { + Schema::drop('metrics_context'); + Schema::drop('metrics_series'); + Schema::drop('metrics_submission'); + Schema::drop('metrics_counter_submission_daily'); + Schema::drop('metrics_counter_submission_monthly'); + Schema::drop('metrics_counter_submission_institution_daily'); + Schema::drop('metrics_counter_submission_institution_monthly'); + Schema::drop('metrics_submission_geo_daily'); + Schema::drop('metrics_submission_geo_monthly'); + Schema::drop('usage_stats_total_temporary_records'); + Schema::drop('usage_stats_unique_item_investigations_temporary_records'); + Schema::drop('usage_stats_unique_item_requests_temporary_records'); + Schema::drop('usage_stats_unique_title_investigations_temporary_records'); + Schema::drop('usage_stats_unique_title_requests_temporary_records'); + Schema::drop('usage_stats_institution_temporary_records'); + } +} diff --git a/classes/migration/install/OMPMigration.php b/classes/migration/install/OMPMigration.php new file mode 100644 index 00000000000..bb93fa74e47 --- /dev/null +++ b/classes/migration/install/OMPMigration.php @@ -0,0 +1,459 @@ +comment('Each publication is one version of a submission.'); + $table->bigInteger('publication_id')->autoIncrement(); + $table->date('date_published')->nullable(); + $table->datetime('last_modified')->nullable(); + + $table->bigInteger('primary_contact_id')->nullable(); + $table->foreign('primary_contact_id', 'publications_author_id')->references('author_id')->on('authors')->onDelete('set null'); + $table->index(['primary_contact_id'], 'publications_primary_contact_id'); + + $table->string('publication_date_type', 32)->default('pub')->nullable(); + // PUBLICATION_TYPE_PUBLICATION + $table->string('publication_type', 32)->default('publication')->nullable(); + $table->float('seq', 8, 2)->default(0); + + // FK relationship is defined where series table is created + $table->bigInteger('series_id')->nullable(); + $table->index(['series_id'], 'publications_section_id'); + + $table->string('series_position', 255)->nullable(); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'publications_submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'publications_submission_id'); + + $table->smallInteger('status')->default(1); + $table->string('url_path', 64)->nullable(); + $table->bigInteger('version')->nullable(); + + $table->bigInteger('doi_id')->nullable(); + $table->foreign('doi_id')->references('doi_id')->on('dois')->nullOnDelete(); + $table->index(['doi_id'], 'publications_doi_id'); + }); + // The following foreign key relationships are for tables defined in SubmissionsMigration + // but they depend on publications to exist so are created here. + Schema::table('submissions', function (Blueprint $table) { + $table->foreign('current_publication_id', 'submissions_publication_id')->references('publication_id')->on('publications')->onDelete('set null'); + }); + Schema::table('publication_settings', function (Blueprint $table) { + $table->foreign('publication_id')->references('publication_id')->on('publications')->onDelete('cascade'); + }); + Schema::table('authors', function (Blueprint $table) { + $table->foreign('publication_id')->references('publication_id')->on('publications')->onDelete('cascade'); + }); + + // Publication formats assigned to published submissions + Schema::create('publication_formats', function (Blueprint $table) { + $table->comment('Publication formats are representations of a publication in a particular format, e.g. PDF, hardcover, etc. Each publication format may contain many chapters.'); + $table->bigInteger('publication_format_id')->autoIncrement(); + + $table->bigInteger('publication_id'); + $table->foreign('publication_id', 'publication_formats_publication_id')->references('publication_id')->on('publications')->onDelete('cascade'); + $table->index(['publication_id'], 'publication_formats_publication_id'); + + $table->smallInteger('physical_format')->default(1)->nullable(); + $table->string('entry_key', 64)->nullable(); + $table->float('seq', 8, 2)->default(0); + $table->string('file_size', 255)->nullable(); + $table->string('front_matter', 255)->nullable(); + $table->string('back_matter', 255)->nullable(); + $table->string('height', 255)->nullable(); + $table->string('height_unit_code', 255)->nullable(); + $table->string('width', 255)->nullable(); + $table->string('width_unit_code', 255)->nullable(); + $table->string('thickness', 255)->nullable(); + $table->string('thickness_unit_code', 255)->nullable(); + $table->string('weight', 255)->nullable(); + $table->string('weight_unit_code', 255)->nullable(); + $table->string('product_composition_code', 255)->nullable(); + $table->string('product_form_detail_code', 255)->nullable(); + $table->string('country_manufacture_code', 255)->nullable(); + $table->string('imprint', 255)->nullable(); + $table->string('product_availability_code', 255)->nullable(); + $table->string('technical_protection_code', 255)->nullable(); + $table->string('returnable_indicator_code', 255)->nullable(); + $table->string('remote_url', 2047)->nullable(); + $table->string('url_path', 64)->nullable(); + $table->smallInteger('is_approved')->default(0); + $table->smallInteger('is_available')->default(0); + + $table->bigInteger('doi_id')->nullable(); + $table->foreign('doi_id')->references('doi_id')->on('dois')->nullOnDelete(); + $table->index(['doi_id'], 'publication_formats_doi_id'); + }); + + // Publication Format metadata. + Schema::create('publication_format_settings', function (Blueprint $table) { + $table->comment('More data about publication formats, including localized properties.'); + $table->bigIncrements('publication_format_setting_id'); + + $table->bigInteger('publication_format_id'); + $table->foreign('publication_format_id', 'publication_format_settings_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'publication_format_id_key'); + + $table->string('locale', 14)->default(''); + $table->string('setting_name', 255); + $table->text('setting_value')->nullable(); + $table->string('setting_type', 6)->comment('(bool|int|float|string|object)'); + $table->unique(['publication_format_id', 'locale', 'setting_name'], 'publication_format_settings_unique'); + }); + + Schema::create('identification_codes', function (Blueprint $table) { + $table->comment('ONIX identification codes for publication formats.'); + $table->bigInteger('identification_code_id')->autoIncrement(); + + $table->bigInteger('publication_format_id'); + $table->foreign('publication_format_id', 'identification_codes_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'identification_codes_publication_format_id'); + + $table->string('code', 40); + $table->string('value', 255); + + $table->index(['identification_code_id', 'publication_format_id', 'code'], 'identification_codes_key'); + }); + + Schema::create('publication_dates', function (Blueprint $table) { + $table->comment('ONIX publication dates for publication formats.'); + $table->bigInteger('publication_date_id')->autoIncrement(); + + $table->bigInteger('publication_format_id'); + $table->foreign('publication_format_id', 'publication_dates_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'publication_dates_publication_format_id'); + + $table->string('role', 40); + $table->string('date_format', 40); + $table->string('date', 255); + + $table->index(['publication_date_id', 'publication_format_id', 'role'], 'format_publication_dates_pkey'); + }); + + Schema::create('sales_rights', function (Blueprint $table) { + $table->comment('ONIX sales rights for publication formats.'); + $table->bigInteger('sales_rights_id')->autoIncrement(); + + $table->bigInteger('publication_format_id'); + $table->foreign('publication_format_id', 'sales_rights_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'sales_rights_publication_format_id'); + + $table->string('type', 40); + // ROW is 'rest of world'. ROW sales types have no territories assigned to them + $table->smallInteger('row_setting')->default(0); + $table->text('countries_included')->nullable(); + $table->text('countries_excluded')->nullable(); + $table->text('regions_included')->nullable(); + $table->text('regions_excluded')->nullable(); + + $table->index(['sales_rights_id', 'publication_format_id'], 'format_sales_rights_pkey'); + }); + + Schema::create('markets', function (Blueprint $table) { + $table->comment('ONIX market information for publication formats.'); + $table->bigInteger('market_id')->autoIncrement(); + + $table->bigInteger('publication_format_id'); + $table->foreign('publication_format_id', 'markets_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'markets_publication_format_id'); + + $table->text('countries_included')->nullable(); + $table->text('countries_excluded')->nullable(); + $table->text('regions_included')->nullable(); + $table->text('regions_excluded')->nullable(); + $table->string('market_date_role', 40); + $table->string('market_date_format', 40); + $table->string('market_date', 255); + $table->string('price', 255)->nullable(); + $table->string('discount', 255)->nullable(); + $table->string('price_type_code', 255)->nullable(); + $table->string('currency_code', 255)->nullable(); + $table->string('tax_rate_code', 255)->nullable(); + $table->string('tax_type_code', 255)->nullable(); + + // FIXME: These columns don't appear to be used + $table->bigInteger('agent_id')->nullable(); + $table->bigInteger('supplier_id')->nullable(); + + $table->index(['market_id', 'publication_format_id'], 'format_markets_pkey'); + }); + + Schema::create('representatives', function (Blueprint $table) { + $table->comment('ONIX representatives for publication formats.'); + $table->bigInteger('representative_id')->autoIncrement(); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'representatives_submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'representatives_submission_id'); + + $table->string('role', 40); + $table->string('representative_id_type', 255)->nullable(); + $table->string('representative_id_value', 255)->nullable(); + $table->string('name', 255)->nullable(); + $table->string('phone', 255)->nullable(); + $table->string('email', 255)->nullable(); + $table->string('url', 2047)->nullable(); + $table->smallInteger('is_supplier')->default(1); + + $table->index(['representative_id', 'submission_id'], 'format_representatives_pkey'); + }); + + Schema::create('features', function (Blueprint $table) { + $table->comment('Information about which submissions are featured in the press.'); + $table->bigIncrements('feature_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'features_submission_id'); + + $table->bigInteger('assoc_type'); + $table->bigInteger('assoc_id'); + + $table->bigInteger('seq'); + + $table->unique(['assoc_type', 'assoc_id', 'submission_id'], 'press_features_unique'); + }); + + Schema::create('new_releases', function (Blueprint $table) { + $table->comment('Information about which submissions in the press are considered new releases.'); + $table->bigIncrements('new_release_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'new_releases_submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'new_releases_submission_id'); + + $table->bigInteger('assoc_type'); + $table->bigInteger('assoc_id'); + + $table->unique(['assoc_type', 'assoc_id', 'submission_id'], 'new_releases_unique'); + }); + + // Press series. + Schema::create('series', function (Blueprint $table) { + $table->comment('A list of press series, into which submissions can be organized.'); + $table->bigInteger('series_id')->autoIncrement(); + + $table->bigInteger('press_id'); + $table->foreign('press_id', 'series_press_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['press_id'], 'series_press_id'); + + $table->bigInteger('review_form_id')->nullable(); + $table->foreign('review_form_id', 'series_review_form_id')->references('review_form_id')->on('review_forms')->onDelete('set null'); + $table->index(['review_form_id'], 'series_review_form_id'); + + // NOT NULL not included for the sake of 1.1 upgrade, which didn't include this column + $table->float('seq', 8, 2)->default(0)->nullable(); + + $table->smallInteger('featured')->default(0); + $table->smallInteger('editor_restricted')->default(0); + $table->string('path', 255); + $table->text('image')->nullable(); + $table->smallInteger('is_inactive')->default(0); + + $table->unique(['press_id', 'path'], 'series_path'); + }); + Schema::table('publications', function (Blueprint $table) { + $table->foreign('series_id', 'publications_series_id')->references('series_id')->on('series')->onDelete('set null'); + }); + + // Series-specific settings + Schema::create('series_settings', function (Blueprint $table) { + $table->comment('More data about series, including localized properties such as series titles.'); + $table->bigIncrements('series_setting_id'); + + $table->bigInteger('series_id'); + $table->foreign('series_id', 'series_settings_series_id')->references('series_id')->on('series')->onDelete('cascade'); + $table->index(['series_id'], 'series_settings_series_id'); + + $table->string('locale', 14)->default(''); + $table->string('setting_name', 255); + $table->text('setting_value')->nullable(); + + $table->unique(['series_id', 'locale', 'setting_name'], 'series_settings_unique'); + }); + + Schema::create('submission_chapters', function (Blueprint $table) { + $table->comment('A list of chapters for each submission (when submissions are divided into chapters).'); + $table->bigInteger('chapter_id')->autoIncrement(); + $table->index(['chapter_id'], 'chapters_chapter_id'); + + $table->bigInteger('primary_contact_id')->nullable(); + $table->foreign('primary_contact_id')->references('author_id')->on('authors')->onDelete('set null'); + $table->index(['primary_contact_id'], 'submission_chapters_primary_contact_id'); + + $table->bigInteger('publication_id'); + $table->foreign('publication_id', 'submission_chapters_publication_id')->references('publication_id')->on('publications')->onDelete('cascade'); + $table->index(['publication_id'], 'submission_chapters_publication_id'); + + $table->float('seq', 8, 2)->default(0); + + // FK defined below (circular reference) + $table->bigInteger('source_chapter_id')->nullable(); + $table->index(['source_chapter_id'], 'submission_chapters_source_chapter_id'); + + $table->bigInteger('doi_id')->nullable(); + $table->foreign('doi_id')->references('doi_id')->on('dois')->nullOnDelete(); + }); + Schema::table('submission_chapters', function (Blueprint $table) { + $table->foreign('source_chapter_id')->references('chapter_id')->on('submission_chapters')->onDelete('set null'); + }); + + // Language dependent monograph chapter metadata. + Schema::create('submission_chapter_settings', function (Blueprint $table) { + $table->comment('More information about submission chapters, including localized properties such as chapter titles.'); + $table->bigIncrements('submission_chapter_setting_id'); + + $table->bigInteger('chapter_id'); + + $table->foreign('chapter_id')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'submission_chapter_settings_chapter_id'); + + $table->string('locale', 14)->default(''); + $table->string('setting_name', 255); + $table->text('setting_value')->nullable(); + $table->string('setting_type', 6)->comment('(bool|int|float|string|object)'); + + $table->unique(['chapter_id', 'locale', 'setting_name'], 'submission_chapter_settings_unique'); + }); + + Schema::create('submission_chapter_authors', function (Blueprint $table) { + $table->comment('The list of authors associated with each submission chapter.'); + $table->bigInteger('author_id'); + $table->foreign('author_id')->references('author_id')->on('authors')->onDelete('cascade'); + $table->index(['author_id'], 'submission_chapter_authors_author_id'); + + $table->bigInteger('chapter_id'); + $table->foreign('chapter_id')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'submission_chapter_authors_chapter_id'); + + $table->smallInteger('primary_contact')->default(0); + $table->float('seq', 8, 2)->default(0); + + $table->unique(['author_id', 'chapter_id'], 'chapter_authors_pkey'); + }); + + // Add doi_id to submission files + Schema::table('submission_files', function (Blueprint $table) { + $table->bigInteger('doi_id')->nullable(); + $table->foreign('doi_id')->references('doi_id')->on('dois')->nullOnDelete(); + $table->index(['doi_id'], 'submission_files_doi_id'); + }); + + + // Spotlights + Schema::create('spotlights', function (Blueprint $table) { + $table->comment('Information about which submissions to the press are spotlighted.'); + $table->bigInteger('spotlight_id')->autoIncrement(); + + $table->smallInteger('assoc_type'); + $table->smallInteger('assoc_id'); + + $table->bigInteger('press_id'); + $table->foreign('press_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['press_id'], 'spotlights_press_id'); + + $table->index(['assoc_type', 'assoc_id'], 'spotlights_assoc'); + }); + + // Spotlight metadata. + Schema::create('spotlight_settings', function (Blueprint $table) { + $table->comment('More data about spotlights, including localized properties.'); + $table->bigIncrements('spotlight_setting_id'); + + $table->bigInteger('spotlight_id'); + $table->foreign('spotlight_id')->references('spotlight_id')->on('spotlights')->onCascade('delete'); + $table->index(['spotlight_id'], 'spotlight_settings_id'); + + $table->string('locale', 14)->default(''); + $table->string('setting_name', 255); + $table->text('setting_value')->nullable(); + $table->string('setting_type', 6)->comment('(bool|int|float|string|object|date)'); + + $table->unique(['spotlight_id', 'locale', 'setting_name'], 'spotlight_settings_unique'); + }); + + // Logs queued (unfulfilled) payments. + Schema::create('queued_payments', function (Blueprint $table) { + $table->comment('A list of queued (unfilled) payments, i.e. payments that have not yet been completed via an online payment system.'); + $table->bigInteger('queued_payment_id')->autoIncrement(); + $table->datetime('date_created'); + $table->datetime('date_modified'); + $table->date('expiry_date')->nullable(); + $table->text('payment_data')->nullable(); + }); + + // Logs completed (fulfilled) payments. + Schema::create('completed_payments', function (Blueprint $table) { + $table->comment('A list of completed (fulfilled) payments, with information about the type of payment and the entity it relates to.'); + $table->bigInteger('completed_payment_id')->autoIncrement(); + $table->datetime('timestamp'); + $table->bigInteger('payment_type'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'completed_payments_context_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'completed_payments_context_id'); + + $table->bigInteger('user_id')->nullable(); + $table->foreign('user_id')->references('user_id')->on('users')->onDelete('set null'); + $table->index(['user_id'], 'completed_payments_user_id'); + + // NOTE: assoc_id NOT numeric to incorporate file idents + $table->string('assoc_id', 16)->nullable(); + $table->float('amount', 8, 2); + $table->string('currency_code_alpha', 3)->nullable(); + $table->string('payment_method_plugin_name', 80)->nullable(); + }); + } + + /** + * Reverse the migration. + */ + public function down(): void + { + Schema::drop('completed_payments'); + Schema::drop('identification_codes'); + Schema::drop('publication_dates'); + Schema::drop('sales_rights'); + Schema::drop('markets'); + Schema::drop('representatives'); + Schema::drop('features'); + Schema::drop('new_releases'); + Schema::drop('series'); + Schema::drop('series_settings'); + Schema::drop('publications'); + Schema::drop('submission_chapters'); + Schema::drop('submission_chapter_settings'); + Schema::drop('submission_chapter_authors'); + Schema::drop('spotlights'); + Schema::drop('spotlight_settings'); + Schema::drop('queued_payments'); + Schema::drop('completed_payments'); + Schema::drop('publication_formats'); + Schema::drop('publication_format_settings'); + } +} diff --git a/classes/migration/install/PressMigration.php b/classes/migration/install/PressMigration.php new file mode 100644 index 00000000000..382e3d40043 --- /dev/null +++ b/classes/migration/install/PressMigration.php @@ -0,0 +1,63 @@ +comment('A list of presses managed by the system.'); + $table->bigInteger('press_id')->autoIncrement(); + $table->string('path', 32); + $table->float('seq', 8, 2)->default(0); + $table->string('primary_locale', 14); + $table->smallInteger('enabled')->default(1); + $table->unique(['path'], 'press_path'); + }); + + // Press settings. + Schema::create('press_settings', function (Blueprint $table) { + $table->comment('More data about presses, including localized properties such as policies.'); + $table->bigIncrements('press_setting_id'); + + $table->bigInteger('press_id'); + $table->foreign('press_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['press_id'], 'press_settings_press_id'); + + $table->string('locale', 14)->default(''); + $table->string('setting_name', 255); + $table->text('setting_value')->nullable(); + + $table->unique(['press_id', 'locale', 'setting_name'], 'press_settings_unique'); + }); + } + + /** + * Reverse the migration. + */ + public function down(): void + { + Schema::drop('presses'); + Schema::drop('press_settings'); + } +} diff --git a/classes/migration/install/SeriesCategoriesMigration.php b/classes/migration/install/SeriesCategoriesMigration.php new file mode 100644 index 00000000000..37f8c2a18ed --- /dev/null +++ b/classes/migration/install/SeriesCategoriesMigration.php @@ -0,0 +1,48 @@ +comment('A list of relationships between series and category information.'); + $table->bigInteger('series_id'); + $table->foreign('series_id', 'series_categories_series_id')->references('series_id')->on('series')->onDelete('cascade'); + $table->index(['series_id'], 'series_categories_series_id'); + + $table->bigInteger('category_id'); + $table->foreign('category_id', 'series_categories_category_id')->references('category_id')->on('categories')->onDelete('cascade'); + $table->index(['category_id'], 'series_categories_category_id'); + + $table->unique(['series_id', 'category_id'], 'series_categories_id'); + }); + } + + /** + * Reverse the migration. + */ + public function down(): void + { + Schema::drop('series_categories'); + } +} diff --git a/classes/migration/upgrade/OMPv3_3_0UpgradeMigration.inc.php b/classes/migration/upgrade/OMPv3_3_0UpgradeMigration.inc.php deleted file mode 100644 index d49ec598a9a..00000000000 --- a/classes/migration/upgrade/OMPv3_3_0UpgradeMigration.inc.php +++ /dev/null @@ -1,229 +0,0 @@ -table('press_settings', function (Blueprint $table) { - // pkp/pkp-lib#6096 DB field type TEXT is cutting off long content - $table->mediumText('setting_value')->nullable()->change(); - }); - if (!Capsule::schema()->hasColumn('series', 'is_inactive')) { - Capsule::schema()->table('series', function (Blueprint $table) { - $table->smallInteger('is_inactive')->default(0); - }); - } - Capsule::schema()->table('review_forms', function (Blueprint $table) { - $table->bigInteger('assoc_type')->nullable(false)->change(); - $table->bigInteger('assoc_id')->nullable(false)->change(); - }); - - $this->_settingsAsJSON(); - - $this->_migrateSubmissionFiles(); - - // Delete the old MODS34 filters - Capsule::statement("DELETE FROM filters WHERE class_name='plugins.metadata.mods34.filter.Mods34SchemaMonographAdapter'"); - Capsule::statement("DELETE FROM filter_groups WHERE symbolic IN ('monograph=>mods34', 'mods34=>monograph')"); - - // pkp/pkp-lib#6604 ONIX filters still refer to Monograph rather than Submission - Capsule::statement("UPDATE filter_groups SET input_type = 'class::classes.submission.Submission' WHERE input_type = 'class::classes.monograph.Monograph';"); - Capsule::statement("UPDATE filter_groups SET output_type = 'class::classes.submission.Submission[]' WHERE input_type = 'class::classes.monograph.Monograph[]';"); - - // pkp/pkp-lib#6609 ONIX filters does not take array of submissions as input - Capsule::statement("UPDATE filter_groups SET input_type = 'class::classes.submission.Submission[]' WHERE symbolic = 'monograph=>onix30-xml';"); - - // pkp/pkp-lib#6807 Make sure all submission last modification dates are set - Capsule::statement('UPDATE submissions SET last_modified = NOW() WHERE last_modified IS NULL'); - } - - /** - * Reverse the downgrades - * @return void - */ - public function down() { - Capsule::schema()->table('press_settings', function (Blueprint $table) { - // pkp/pkp-lib#6096 DB field type TEXT is cutting off long content - $table->text('setting_value')->nullable()->change(); - }); - } - - /** - * @return void - * @brief reset serialized arrays and convert array and objects to JSON for serialization, see pkp/pkp-lib#5772 - */ - private function _settingsAsJSON() { - - // Convert settings where type can be retrieved from schema.json - $schemaDAOs = ['SiteDAO', 'AnnouncementDAO', 'AuthorDAO', 'PressDAO', 'EmailTemplateDAO', 'PublicationDAO', 'SubmissionDAO']; - $processedTables = []; - foreach ($schemaDAOs as $daoName) { - $dao = DAORegistry::getDAO($daoName); - $schemaService = Services::get('schema'); - - if (is_a($dao, 'SchemaDAO')) { - $schema = $schemaService->get($dao->schemaName); - $tableName = $dao->settingsTableName; - } else if ($daoName === 'SiteDAO') { - $schema = $schemaService->get(SCHEMA_SITE); - $tableName = 'site_settings'; - } else { - continue; // if parent class changes, the table is processed with other settings tables - } - - $processedTables[] = $tableName; - foreach ($schema->properties as $propName => $propSchema) { - if (empty($propSchema->readOnly)) { - if ($propSchema->type === 'array' || $propSchema->type === 'object') { - Capsule::table($tableName)->where('setting_name', $propName)->get()->each(function ($row) use ($tableName) { - $this->_toJSON($row, $tableName, ['setting_name', 'locale'], 'setting_value'); - }); - } - } - } - } - - // Convert settings where only setting_type column is available - $tables = Capsule::connection()->getDoctrineSchemaManager()->listTableNames(); - foreach ($tables as $tableName) { - if (substr($tableName, -9) !== '_settings' || in_array($tableName, $processedTables)) continue; - if ($tableName === 'plugin_settings') { - Capsule::table($tableName)->where('setting_type', 'object')->get()->each(function ($row) use ($tableName) { - $this->_toJSON($row, $tableName, ['plugin_name', 'context_id', 'setting_name'], 'setting_value'); - }); - } else { - Capsule::table($tableName)->where('setting_type', 'object')->get()->each(function ($row) use ($tableName) { - $this->_toJSON($row, $tableName, ['setting_name', 'locale'], 'setting_value'); - }); - } - } - - // Finally, convert values of other tables dependent from DAO::convertToDB - Capsule::table('review_form_responses')->where('response_type', 'object')->get()->each(function ($row) { - $this->_toJSON($row, 'review_form_responses', ['review_id'], 'response_value'); - }); - - Capsule::table('site')->get()->each(function ($row) { - $localeToConvert = function($localeType) use($row) { - $serializedValue = $row->{$localeType}; - if (@unserialize($serializedValue) === false) return; - $oldLocaleValue = unserialize($serializedValue); - - if (is_array($oldLocaleValue) && $this->_isNumerical($oldLocaleValue)) $oldLocaleValue = array_values($oldLocaleValue); - - $newLocaleValue = json_encode($oldLocaleValue, JSON_UNESCAPED_UNICODE); - Capsule::table('site')->take(1)->update([$localeType => $newLocaleValue]); - }; - - $localeToConvert('installed_locales'); - $localeToConvert('supported_locales'); - }); - } - - /** - * @param $row stdClass row representation - * @param $tableName string name of a settings table - * @param $searchBy array additional parameters to the where clause that should be combined with AND operator - * @param $valueToConvert string column name for values to convert to JSON - * @return void - */ - private function _toJSON($row, $tableName, $searchBy, $valueToConvert) { - // Check if value can be unserialized - $serializedOldValue = $row->{$valueToConvert}; - if (@unserialize($serializedOldValue) === false) return; - $oldValue = unserialize($serializedOldValue); - - // Reset arrays to avoid keys being mixed up - if (is_array($oldValue) && $this->_isNumerical($oldValue)) $oldValue = array_values($oldValue); - $newValue = json_encode($oldValue, JSON_UNESCAPED_UNICODE); // don't convert utf-8 characters to unicode escaped code - - $id = array_key_first((array)$row); // get first/primary key column - - // Remove empty filters - $searchBy = array_filter($searchBy, function ($item) use ($row) { - if (empty($row->{$item})) return false; - return true; - }); - - $queryBuilder = Capsule::table($tableName)->where($id, $row->{$id}); - foreach ($searchBy as $key => $column) { - $queryBuilder = $queryBuilder->where($column, $row->{$column}); - } - $queryBuilder->update([$valueToConvert => $newValue]); - } - - /** - * @param $array array to check - * @return bool - * @brief checks unserialized array; returns true if array keys are integers - * otherwise if keys are mixed and sequence starts from any positive integer it will be serialized as JSON object instead of an array - * See pkp/pkp-lib#5690 for more details - */ - private function _isNumerical($array) { - foreach ($array as $item => $value) { - if (!is_integer($item)) return false; // is an associative array; - } - - return true; - } - - /** - * Complete submission file migrations specific to OMP - * - * The main submission file migration is done in - * PKPv3_3_0UpgradeMigration and that migration must - * be run before this one. - */ - private function _migrateSubmissionFiles() { - - // Update file stage for all internal review files - Capsule::table('submission_files as sf') - ->leftJoin('review_round_files as rrf', 'sf.submission_file_id', '=', 'rrf.submission_file_id') - ->where('sf.file_stage', '=', SUBMISSION_FILE_REVIEW_FILE) - ->where('rrf.stage_id', '=', WORKFLOW_STAGE_ID_INTERNAL_REVIEW) - ->update(['sf.file_stage' => SUBMISSION_FILE_INTERNAL_REVIEW_FILE]); - Capsule::table('submission_files as sf') - ->leftJoin('review_round_files as rrf', 'sf.submission_file_id', '=', 'rrf.submission_file_id') - ->where('sf.file_stage', '=', SUBMISSION_FILE_REVIEW_REVISION) - ->where('rrf.stage_id', '=', WORKFLOW_STAGE_ID_INTERNAL_REVIEW) - ->update(['sf.file_stage' => SUBMISSION_FILE_INTERNAL_REVIEW_REVISION]); - - // Update the fileStage property for all event logs where the - // file has been moved to an internal review file stage - $internalStageIds = [ - SUBMISSION_FILE_INTERNAL_REVIEW_FILE, - SUBMISSION_FILE_INTERNAL_REVIEW_REVISION, - ]; - foreach ($internalStageIds as $internalStageId) { - $submissionIds = Capsule::table('submission_files') - ->where('file_stage', '=', $internalStageId) - ->pluck('submission_file_id'); - $logIdsToChange = Capsule::table('event_log_settings') - ->where('setting_name', '=', 'submissionFileId') - ->whereIn('setting_value', $submissionIds) - ->pluck('log_id'); - Capsule::table('event_log_settings') - ->whereIn('log_id', $logIdsToChange) - ->where('setting_name', '=', 'fileStage') - ->update(['setting_value' => $internalStageId]); - } - } -} diff --git a/classes/migration/upgrade/OMPv3_3_0UpgradeMigration.php b/classes/migration/upgrade/OMPv3_3_0UpgradeMigration.php new file mode 100644 index 00000000000..10806dacbcb --- /dev/null +++ b/classes/migration/upgrade/OMPv3_3_0UpgradeMigration.php @@ -0,0 +1,156 @@ + [ + 'enableBulkEmails', + 'installedLocales', + 'pageHeaderTitleImage', + 'sidebar', + 'styleSheet', + 'supportedLocales', + ], + 'press_settings' => [ + 'disableBulkEmailUserGroups', + 'favicon', + 'homepageImage', + 'pageHeaderLogoImage', + 'sidebar', + 'styleSheet', + 'submissionChecklist', + 'supportedFormLocales', + 'supportedLocales', + 'supportedSubmissionLocales', + 'enablePublisherId', + 'pressThumbnail', + ], + 'publication_settings' => [ + 'categoryIds', + 'coverImage', + 'disciplines', + 'keywords', + 'languages', + 'subjects', + 'supportingAgencies', + ] + ]; + } + + /** + * Run the migrations. + */ + public function up(): void + { + parent::up(); + + // Delete the old MODS34 filters + DB::statement("DELETE FROM filters WHERE class_name='plugins.metadata.mods34.filter.Mods34SchemaMonographAdapter'"); + DB::statement("DELETE FROM filter_groups WHERE symbolic IN ('monograph=>mods34', 'mods34=>monograph')"); + + // pkp/pkp-lib#6604 ONIX filters still refer to Monograph rather than Submission + DB::statement("UPDATE filter_groups SET input_type = 'class::classes.submission.Submission' WHERE input_type = 'class::classes.monograph.Monograph';"); + DB::statement("UPDATE filter_groups SET output_type = 'class::classes.submission.Submission[]' WHERE input_type = 'class::classes.monograph.Monograph[]';"); + + // pkp/pkp-lib#6609 ONIX filters does not take array of submissions as input + DB::statement("UPDATE filter_groups SET input_type = 'class::classes.submission.Submission[]' WHERE symbolic = 'monograph=>onix30-xml';"); + } + + /** + * Complete specific submission file migrations + * + * The main submission file migration is done in + * PKPv3_3_0UpgradeMigration and that migration must + * be run before this one. + */ + protected function migrateSubmissionFiles() + { + parent::migrateSubmissionFiles(); + + // Update file stage for all internal review files + DB::table('submission_files as sf') + ->leftJoin('review_round_files as rrf', 'sf.submission_file_id', '=', 'rrf.submission_file_id') + ->where('sf.file_stage', '=', self::SUBMISSION_FILE_REVIEW_FILE) + ->where('rrf.stage_id', '=', self::WORKFLOW_STAGE_ID_INTERNAL_REVIEW) + ->update(['sf.file_stage' => self::SUBMISSION_FILE_INTERNAL_REVIEW_FILE]); + DB::table('submission_files as sf') + ->leftJoin('review_round_files as rrf', 'sf.submission_file_id', '=', 'rrf.submission_file_id') + ->where('sf.file_stage', '=', self::SUBMISSION_FILE_REVIEW_REVISION) + ->where('rrf.stage_id', '=', self::WORKFLOW_STAGE_ID_INTERNAL_REVIEW) + ->update(['sf.file_stage' => self::SUBMISSION_FILE_INTERNAL_REVIEW_REVISION]); + + // Update the fileStage property for all event logs where the + // file has been moved to an internal review file stage + $internalStageIds = [ + self::SUBMISSION_FILE_INTERNAL_REVIEW_FILE, + self::SUBMISSION_FILE_INTERNAL_REVIEW_REVISION, + ]; + foreach ($internalStageIds as $internalStageId) { + $submissionIds = DB::table('submission_files') + ->where('file_stage', '=', $internalStageId) + ->pluck('submission_file_id'); + $logIdsToChange = DB::table('event_log_settings') + ->where('setting_name', '=', 'submissionFileId') + ->whereIn('setting_value', $submissionIds) + ->pluck('log_id'); + DB::table('event_log_settings') + ->whereIn('log_id', $logIdsToChange) + ->where('setting_name', '=', 'fileStage') + ->update(['setting_value' => $internalStageId]); + } + } +} diff --git a/classes/migration/upgrade/v3_4_0/I3573_AddPrimaryKeys.php b/classes/migration/upgrade/v3_4_0/I3573_AddPrimaryKeys.php new file mode 100644 index 00000000000..0bef23e2d7d --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I3573_AddPrimaryKeys.php @@ -0,0 +1,60 @@ + 'publication_format_setting_id', + 'features' => 'feature_id', // INDEX RENAME? + 'new_releases' => 'new_release_id', + 'spotlight_settings' => 'spotlight_setting_id', + 'submission_chapter_settings' => 'submission_chapter_setting_id', + 'series_settings' => 'series_setting_id', + 'press_settings' => 'press_setting_id', + 'metrics_context' => 'metrics_context_id', + 'metrics_series' => 'metrics_series_id', + 'metrics_submission' => 'metrics_submission_id', + 'metrics_counter_submission_daily' => 'metrics_counter_submission_daily_id', + 'metrics_counter_submission_monthly' => 'metrics_counter_submission_monthly_id', + 'metrics_counter_submission_institution_daily' => 'metrics_counter_submission_institution_daily_id', + 'metrics_counter_submission_institution_monthly' => 'metrics_counter_submission_institution_monthly_id', + 'metrics_submission_geo_daily' => 'metrics_submission_geo_daily_id', + 'metrics_submission_geo_monthly' => 'metrics_submission_geo_monthly_id', + 'usage_stats_total_temporary_records' => 'usage_stats_temp_total_id', + 'usage_stats_unique_item_investigations_temporary_records' => 'usage_stats_temp_unique_item_id', + 'usage_stats_unique_item_requests_temporary_records' => 'usage_stats_temp_item_id', + 'usage_stats_unique_title_investigations_temporary_records' => 'usage_stats_temp_unique_investigations_id', + 'usage_stats_unique_title_requests_temporary_records' => 'usage_stats_temp_unique_requests_id', + 'usage_stats_institution_temporary_records' => 'usage_stats_temp_institution_id', + ]); + } + + public static function getIndexData(): array + { + return array_merge(parent::getIndexData(), [ + 'press_settings' => ['press_settings_pkey', ['press_id', 'locale', 'setting_name'], 'press_settings_unique', true], + 'series_settings' => ['series_settings_pkey', ['series_id', 'locale', 'setting_name'], 'series_settings_unique', true], + 'publication_format_settings' => ['publication_format_settings_pkey', ['publication_format_id', 'locale', 'setting_name'], 'publication_format_settings_unique', true], + 'submission_chapter_settings' => ['submission_chapter_settings_pkey', ['chapter_id', 'locale', 'setting_name'], 'submission_chapter_settings_unique', true], + 'features' => ['press_features_pkey', ['assoc_type', 'assoc_id', 'submission_id'], 'press_features_unique', true], + 'new_releases' => ['new_releases_pkey', ['assoc_type', 'assoc_id', 'submission_id'], 'new_releases_unique', true], + 'spotlight_settings' => ['spotlight_settings_pkey', ['spotlight_id', 'locale', 'setting_name'], 'spotlight_settings_unique', true], + ]); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I5716_EmailTemplateAssignments.php b/classes/migration/upgrade/v3_4_0/I5716_EmailTemplateAssignments.php new file mode 100644 index 00000000000..c886c8c615a --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I5716_EmailTemplateAssignments.php @@ -0,0 +1,49 @@ + 'APP\plugins\metadata\dc11\filter\Dc11SchemaPublicationFormatAdapter', + 'plugins.importexport.native.filter.MonographNativeXmlFilter' => 'APP\plugins\importexport\native\filter\MonographNativeXmlFilter', + 'plugins.importexport.native.filter.NativeXmlMonographFilter' => 'APP\plugins\importexport\native\filter\NativeXmlMonographFilter', + 'plugins.importexport.native.filter.AuthorNativeXmlFilter' => 'APP\plugins\importexport\native\filter\AuthorNativeXmlFilter', + 'plugins.importexport.native.filter.NativeXmlAuthorFilter' => 'APP\plugins\importexport\native\filter\NativeXmlAuthorFilter', + 'plugins.importexport.native.filter.PublicationFormatNativeXmlFilter' => 'APP\plugins\importexport\native\filter\PublicationFormatNativeXmlFilter', + 'plugins.importexport.native.filter.NativeXmlPublicationFormatFilter' => 'APP\plugins\importexport\native\filter\NativeXmlPublicationFormatFilter', + 'plugins.importexport.native.filter.NativeXmlMonographFileFilter' => 'APP\plugins\importexport\native\filter\NativeXmlMonographFileFilter', + 'plugins.importexport.onix30.filter.MonographONIX30XmlFilter' => 'APP\plugins\importexport\onix30\filter\MonographONIX30XmlFilter', + 'plugins.importexport.native.filter.PublicationNativeXmlFilter' => 'APP\plugins\importexport\native\filter\PublicationNativeXmlFilter', + 'plugins.importexport.native.filter.NativeXmlPublicationFilter' => 'APP\plugins\importexport\native\filter\NativeXmlPublicationFilter', + 'plugins.importexport.native.filter.ChapterNativeXmlFilter' => 'APP\plugins\importexport\native\filter\ChapterNativeXmlFilter', + 'plugins.importexport.native.filter.NativeXmlChapterFilter' => 'APP\plugins\importexport\native\filter\NativeXmlChapterFilter', + + // pkp-lib filters + 'lib.pkp.plugins.importexport.users.filter.PKPUserUserXmlFilter' => 'PKP\plugins\importexport\users\filter\PKPUserUserXmlFilter', + 'lib.pkp.plugins.importexport.users.filter.UserXmlPKPUserFilter' => 'PKP\plugins\importexport\users\filter\UserXmlPKPUserFilter', + 'lib.pkp.plugins.importexport.users.filter.UserGroupNativeXmlFilter' => 'PKP\plugins\importexport\users\filter\UserGroupNativeXmlFilter', + 'lib.pkp.plugins.importexport.users.filter.NativeXmlUserGroupFilter' => 'PKP\plugins\importexport\users\filter\NativeXmlUserGroupFilter', + 'lib.pkp.plugins.importexport.native.filter.SubmissionFileNativeXmlFilter' => 'PKP\plugins\importexport\native\filter\SubmissionFileNativeXmlFilter', + ]; + + public const TASK_RENAME_MAP = [ + 'lib.pkp.classes.task.ReviewReminder' => 'PKP\task\ReviewReminder', + 'lib.pkp.classes.task.PublishSubmissions' => 'PKP\task\PublishSubmissions', + 'lib.pkp.classes.task.StatisticsReport' => '\PKP\task\StatisticsReport', + 'lib.pkp.classes.task.RemoveUnvalidatedExpiredUsers' => 'PKP\task\RemoveUnvalidatedExpiredUsers', + 'lib.pkp.classes.task.UpdateIPGeoDB' => 'PKP\classes\task\UpdateIPGeoDB', + 'classes.tasks.UsageStatsLoader' => 'APP\tasks\UsageStatsLoader', + 'lib.pkp.classes.task.EditorialReminders' => 'PKP\task\EditorialReminders', + ]; + + /** + * Run the migration. + */ + public function up(): void + { + foreach (self::FILTER_RENAME_MAP as $oldName => $newName) { + DB::statement('UPDATE filters SET class_name = ? WHERE class_name = ?', [$newName, $oldName]); + } + foreach (self::TASK_RENAME_MAP as $oldName => $newName) { + DB::statement('UPDATE scheduled_tasks SET class_name = ? WHERE class_name = ?', [$newName, $oldName]); + } + DB::statement('UPDATE filter_groups SET output_type=? WHERE output_type = ?', ['metadata::APP\plugins\metadata\dc11\schema\Dc11Schema(PUBLICATION_FORMAT)', 'metadata::plugins.metadata.dc11.schema.Dc11Schema(PUBLICATION_FORMAT)']); + } + + /** + * Reverse the downgrades + */ + public function down(): void + { + foreach (self::FILTER_RENAME_MAP as $oldName => $newName) { + DB::statement('UPDATE filters SET class_name = ? WHERE class_name = ?', [$oldName, $newName]); + } + foreach (self::TASK_RENAME_MAP as $oldName => $newName) { + DB::statement('UPDATE scheduled_tasks SET class_name = ? WHERE class_name = ?', [$oldName, $newName]); + } + DB::statement('UPDATE filter_groups SET output_type=? WHERE output_type = ?', ['metadata::plugins.metadata.dc11.schema.Dc11Schema(PUBLICATION_FORMAT)', 'metadata::APP\plugins\metadata\dc11\schema\Dc11Schema(PUBLICATION_FORMAT)']); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I6093_AddForeignKeys.php b/classes/migration/upgrade/v3_4_0/I6093_AddForeignKeys.php new file mode 100644 index 00000000000..9b1d2d7fc70 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I6093_AddForeignKeys.php @@ -0,0 +1,147 @@ +foreign('press_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['press_id'], 'spotlights_press_id'); + }); + Schema::table('spotlight_settings', function (Blueprint $table) { + $table->foreign('spotlight_id')->references('spotlight_id')->on('spotlights')->onDelete('cascade'); + $table->index(['spotlight_id'], 'spotlight_settings_spotlight_id'); + }); + Schema::table('series_settings', function (Blueprint $table) { + $table->foreign('series_id', 'series_settings_series_id')->references('series_id')->on('series')->onDelete('cascade'); + $table->index(['series_id'], 'series_settings_series_id'); + }); + Schema::table('series_categories', function (Blueprint $table) { + $table->foreign('series_id', 'series_categories_series_id')->references('series_id')->on('series')->onDelete('cascade'); + $table->index(['series_id'], 'series_categories_series_id'); + + $table->foreign('category_id', 'series_categories_category_id')->references('category_id')->on('categories')->onDelete('cascade'); + $table->index(['category_id'], 'series_categories_category_id'); + }); + Schema::table('series', function (Blueprint $table) { + $table->foreign('press_id', 'series_press_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->foreign('review_form_id', 'series_review_form_id')->references('review_form_id')->on('review_forms')->onDelete('set null'); + $table->index(['review_form_id'], 'series_review_form_id'); + }); + Schema::table('completed_payments', function (Blueprint $table) { + $table->foreign('context_id', 'completed_payments_context_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'completed_payments_context_id'); + + $table->foreign('user_id')->references('user_id')->on('users')->onDelete('set null'); + $table->index(['user_id'], 'completed_payments_user_id'); + }); + + Schema::table('publications', function (Blueprint $table) { + $table->foreign('primary_contact_id', 'publications_author_id')->references('author_id')->on('authors')->onDelete('set null'); + $table->index(['primary_contact_id'], 'publications_primary_contact_id'); + + $table->foreign('submission_id', 'publications_submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + + $table->foreign('series_id', 'publications_series_id')->references('series_id')->on('series')->onDelete('set null'); + }); + + Schema::table('publication_formats', function (Blueprint $table) { + $table->foreign('publication_id', 'publication_formats_publication_id')->references('publication_id')->on('publications')->onDelete('cascade'); + $table->index(['publication_id'], 'publication_formats_publication_id'); + }); + + Schema::table('submission_chapters', function (Blueprint $table) { + $table->foreign('publication_id', 'submission_chapters_publication_id')->references('publication_id')->on('publications')->onDelete('cascade'); + $table->index(['publication_id'], 'submission_chapters_publication_id'); + + $table->foreign('primary_contact_id')->references('author_id')->on('authors')->onDelete('set null'); + $table->index(['primary_contact_id'], 'submission_chapters_primary_contact_id'); + }); + + Schema::table('submission_chapter_settings', function (Blueprint $table) { + $table->foreign('chapter_id')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + }); + + Schema::table('submission_chapter_authors', function (Blueprint $table) { + $table->foreign('chapter_id')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'submission_chapter_authors_chapter_id'); + + $table->foreign('author_id')->references('author_id')->on('authors')->onDelete('cascade'); + $table->index(['author_id'], 'submission_chapter_authors_author_id'); + }); + + Schema::table('markets', function (Blueprint $table) { + $table->foreign('publication_format_id', 'markets_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'markets_publication_format_id'); + }); + + Schema::table('publication_format_settings', function (Blueprint $table) { + $table->foreign('publication_format_id', 'publication_format_settings_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'publication_format_settings_publication_format_id'); + }); + + Schema::table('publication_dates', function (Blueprint $table) { + $table->foreign('publication_format_id', 'publication_dates_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'publication_dates_publication_format_id'); + }); + + Schema::table('identification_codes', function (Blueprint $table) { + $table->foreign('publication_format_id', 'identification_codes_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'identification_codes_publication_format_id'); + }); + + Schema::table('sales_rights', function (Blueprint $table) { + $table->foreign('publication_format_id', 'sales_rights_publication_format_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['publication_format_id'], 'sales_rights_publication_format_id'); + }); + + Schema::table('new_releases', function (Blueprint $table) { + $table->foreign('submission_id', 'new_releases_submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'new_releases_submission_id'); + }); + + Schema::table('representatives', function (Blueprint $table) { + $table->foreign('submission_id', 'representatives_submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'representatives_submission_id'); + }); + + Schema::table('features', function (Blueprint $table) { + $table->foreign('submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'features_submission_id'); + }); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I6241_RequiredGenres.php b/classes/migration/upgrade/v3_4_0/I6241_RequiredGenres.php new file mode 100644 index 00000000000..30611ab31f4 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I6241_RequiredGenres.php @@ -0,0 +1,29 @@ +where('entry_key', 'MANUSCRIPT') // "Book Manuscript" from genres.xml + ->update(['required' => 1]); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I6306_EnableCategories.php b/classes/migration/upgrade/v3_4_0/I6306_EnableCategories.php new file mode 100644 index 00000000000..4b0ed7ed820 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I6306_EnableCategories.php @@ -0,0 +1,29 @@ +bigIncrements('metrics_context_id'); + + $table->string('load_id', 255); + $table->index(['load_id'], 'metrics_context_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_context_context_id'); + + $table->date('date'); + $table->integer('metric'); + }); + Schema::create('metrics_series', function (Blueprint $table) { + $table->bigIncrements('metrics_series_id'); + + $table->string('load_id', 255); + $table->index(['load_id'], 'metrics_series_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_series_context_id'); + + $table->bigInteger('series_id'); + $table->foreign('series_id')->references('series_id')->on('series')->onDelete('cascade'); + $table->index(['series_id'], 'metrics_series_series_id'); + + $table->date('date'); + $table->integer('metric'); + + $table->index(['context_id', 'series_id'], 'metrics_series_context_id_series_id'); + }); + Schema::create('metrics_submission', function (Blueprint $table) { + $table->bigIncrements('metrics_submission_id'); + + $table->string('load_id', 255); + $table->index(['load_id'], 'ms_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_submission_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_submission_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'metrics_submission_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'metrics_submission_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'metrics_submission_submission_file_id'); + + $table->bigInteger('file_type')->nullable(); + $table->bigInteger('assoc_type'); + $table->date('date'); + $table->integer('metric'); + + $table->index(['context_id', 'submission_id', 'assoc_type', 'file_type'], 'ms_context_id_submission_id_assoc_type_file_type'); + }); + Schema::create('metrics_counter_submission_daily', function (Blueprint $table) { + $table->bigIncrements('metrics_counter_submission_daily_id'); + + $table->string('load_id', 255); + $table->index(['load_id'], 'msd_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msd_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_counter_submission_daily_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msd_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_counter_submission_daily_submission_id'); + + $table->date('date'); + $table->integer('metric_book_investigations'); + $table->integer('metric_book_investigations_unique'); + $table->integer('metric_book_requests'); + $table->integer('metric_book_requests_unique'); + $table->integer('metric_chapter_investigations'); + $table->integer('metric_chapter_investigations_unique'); + $table->integer('metric_chapter_requests'); + $table->integer('metric_chapter_requests_unique'); + $table->integer('metric_title_investigations_unique'); + $table->integer('metric_title_requests_unique'); + + $table->index(['context_id', 'submission_id'], 'msd_context_id_submission_id'); + $table->unique(['load_id', 'context_id', 'submission_id', 'date'], 'msd_uc_load_id_context_id_submission_id_date'); + }); + Schema::create('metrics_counter_submission_monthly', function (Blueprint $table) { + $table->bigIncrements('metrics_counter_submission_monthly_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msm_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_counter_submission_monthly_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msm_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_counter_submission_monthly_submission_id'); + + $table->integer('month'); + $table->integer('metric_book_investigations'); + $table->integer('metric_book_investigations_unique'); + $table->integer('metric_book_requests'); + $table->integer('metric_book_requests_unique'); + $table->integer('metric_chapter_investigations'); + $table->integer('metric_chapter_investigations_unique'); + $table->integer('metric_chapter_requests'); + $table->integer('metric_chapter_requests_unique'); + $table->integer('metric_title_investigations_unique'); + $table->integer('metric_title_requests_unique'); + + $table->index(['context_id', 'submission_id'], 'msm_context_id_submission_id'); + $table->unique(['context_id', 'submission_id', 'month'], 'msm_uc_context_id_submission_id_month'); + }); + Schema::create('metrics_counter_submission_institution_daily', function (Blueprint $table) { + $table->bigIncrements('metrics_counter_submission_institution_daily_id'); + + $table->string('load_id', 255); + $table->index(['load_id'], 'msid_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msid_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'msid_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msid_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'msid_submission_id'); + + $table->bigInteger('institution_id'); + $table->foreign('institution_id', 'msid_institution_id_foreign')->references('institution_id')->on('institutions')->onDelete('cascade'); + $table->index(['institution_id'], 'msid_institution_id'); + + $table->date('date'); + $table->integer('metric_book_investigations'); + $table->integer('metric_book_investigations_unique'); + $table->integer('metric_book_requests'); + $table->integer('metric_book_requests_unique'); + $table->integer('metric_chapter_investigations'); + $table->integer('metric_chapter_investigations_unique'); + $table->integer('metric_chapter_requests'); + $table->integer('metric_chapter_requests_unique'); + $table->integer('metric_title_investigations_unique'); + $table->integer('metric_title_requests_unique'); + + $table->index(['context_id', 'submission_id'], 'msid_context_id_submission_id'); + $table->unique(['load_id', 'context_id', 'submission_id', 'institution_id', 'date'], 'msid_uc_load_id_context_id_submission_id_institution_id_date'); + }); + Schema::create('metrics_counter_submission_institution_monthly', function (Blueprint $table) { + $table->bigIncrements('metrics_counter_submission_institution_monthly_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msim_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'msim_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msim_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'msim_submission_id'); + + $table->bigInteger('institution_id'); + $table->foreign('institution_id', 'msim_institution_id_foreign')->references('institution_id')->on('institutions')->onDelete('cascade'); + $table->index(['institution_id'], 'msim_institution_id'); + + $table->integer('month'); + $table->integer('metric_book_investigations'); + $table->integer('metric_book_investigations_unique'); + $table->integer('metric_book_requests'); + $table->integer('metric_book_requests_unique'); + $table->integer('metric_chapter_investigations'); + $table->integer('metric_chapter_investigations_unique'); + $table->integer('metric_chapter_requests'); + $table->integer('metric_chapter_requests_unique'); + $table->integer('metric_title_investigations_unique'); + $table->integer('metric_title_requests_unique'); + + $table->index(['context_id', 'submission_id'], 'msim_context_id_submission_id'); + $table->unique(['context_id', 'submission_id', 'institution_id', 'month'], 'msim_uc_context_id_submission_id_institution_id_month'); + }); + Schema::create('metrics_submission_geo_daily', function (Blueprint $table) { + $table->bigIncrements('metrics_submission_geo_daily_id'); + + $table->string('load_id', 255); + $table->index(['load_id'], 'msgd_load_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msgd_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_submission_geo_daily_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msgd_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_submission_geo_daily_submission_id'); + + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->date('date'); + $table->integer('metric'); + $table->integer('metric_unique'); + + $table->index(['context_id', 'submission_id'], 'msgd_context_id_submission_id'); + $table->unique(['load_id', 'context_id', 'submission_id', 'country', 'region', 'city', 'date'], 'msgd_uc_load_context_submission_c_r_c_date'); + }); + Schema::create('metrics_submission_geo_monthly', function (Blueprint $table) { + $table->bigIncrements('metrics_submission_geo_monthly_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'msgm_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'metrics_submission_geo_monthly_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'msgm_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'metrics_submission_geo_monthly_submission_id'); + + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->integer('month'); + $table->integer('metric'); + $table->integer('metric_unique'); + + $table->index(['context_id', 'submission_id'], 'msgm_context_id_submission_id'); + $table->unique(['context_id', 'submission_id', 'country', 'region', 'city', 'month'], 'msgm_uc_context_submission_c_r_c_month'); + }); + // Usage stats total book and chapter item temporary records + Schema::create('usage_stats_total_temporary_records', function (Blueprint $table) { + $table->bigIncrements('usage_stats_temp_total_id'); + + $table->dateTime('date', $precision = 0); + $table->string('ip', 255); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + $table->string('canonical_url', 255); + + $table->bigInteger('series_id')->nullable(); + $table->foreign('series_id', 'ust_series_id_foreign')->references('series_id')->on('series')->onDelete('cascade'); + $table->index(['series_id'], 'ust_series_id'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'ust_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'ust_context_id'); + + $table->bigInteger('submission_id')->nullable(); + $table->foreign('submission_id', 'ust_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'ust_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'ust_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'ust_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'ust_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'ust_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'ust_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'ust_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 255); + }); + // Usage stats unique book and chapter item investigations temporary records + // No need to consider series_id here because investigations are only relevant/calculated on submission level. + Schema::create('usage_stats_unique_item_investigations_temporary_records', function (Blueprint $table) { + $table->bigIncrements('usage_stats_temp_unique_item_id'); + + $table->dateTime('date', $precision = 0); + $table->string('ip', 255); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'usii_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'usii_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'usii_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'usii_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'usii_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'usii_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'usii_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'usii_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'usii_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'usii_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 255); + }); + // Usage stats unique book and chapter item requests temporary records + // No need to consider series_id here because requests are only relevant/calculated on submission level. + Schema::create('usage_stats_unique_item_requests_temporary_records', function (Blueprint $table) { + $table->bigIncrements('usage_stats_temp_item_id'); + + $table->dateTime('date', $precision = 0); + $table->string('ip', 255); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'usir_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'usir_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'usir_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'usir_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'usir_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'usir_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'usir_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'usir_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'usir_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'usir_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 255); + }); + // Usage stats unique title investigations temporary records + // No need to consider series_id here because investigations are only relevant/calculated on submission level. + Schema::create('usage_stats_unique_title_investigations_temporary_records', function (Blueprint $table) { + $table->bigIncrements('usage_stats_temp_unique_investigations_id'); + + $table->dateTime('date', $precision = 0); + $table->string('ip', 255); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'usti_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'usti_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'usti_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'usti_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'usti_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'usti_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'usti_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'usti_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'usti_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'usti_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 255); + }); + // Usage stats unique title requests temporary records + // No need to consider series_id here because requests are only relevant/calculated on submission level. + Schema::create('usage_stats_unique_title_requests_temporary_records', function (Blueprint $table) { + $table->bigIncrements('usage_stats_temp_unique_requests_id'); + + $table->dateTime('date', $precision = 0); + $table->string('ip', 255); + $table->string('user_agent', 255); + $table->bigInteger('line_number'); + + $table->bigInteger('context_id'); + $table->foreign('context_id', 'ustr_context_id_foreign')->references('press_id')->on('presses')->onDelete('cascade'); + $table->index(['context_id'], 'ustr_context_id'); + + $table->bigInteger('submission_id'); + $table->foreign('submission_id', 'ustr_submission_id_foreign')->references('submission_id')->on('submissions')->onDelete('cascade'); + $table->index(['submission_id'], 'ustr_submission_id'); + + $table->bigInteger('chapter_id')->nullable(); + $table->foreign('chapter_id', 'ustr_chapter_id_foreign')->references('chapter_id')->on('submission_chapters')->onDelete('cascade'); + $table->index(['chapter_id'], 'ustr_chapter_id'); + + $table->bigInteger('representation_id')->nullable(); + $table->foreign('representation_id', 'ustr_representation_id_foreign')->references('publication_format_id')->on('publication_formats')->onDelete('cascade'); + $table->index(['representation_id'], 'ustr_representation_id'); + + $table->bigInteger('submission_file_id')->unsigned()->nullable(); + $table->foreign('submission_file_id', 'ustr_submission_file_id_foreign')->references('submission_file_id')->on('submission_files')->onDelete('cascade'); + $table->index(['submission_file_id'], 'ustr_submission_file_id'); + + $table->bigInteger('assoc_type'); + $table->smallInteger('file_type')->nullable(); + $table->string('country', 2)->default(''); + $table->string('region', 3)->default(''); + $table->string('city', 255)->default(''); + $table->string('load_id', 255); + }); + // Usage stats institution temporary records + Schema::create('usage_stats_institution_temporary_records', function (Blueprint $table) { + $table->bigIncrements('usage_stats_temp_institution_id'); + + $table->string('load_id', 255); + $table->bigInteger('line_number'); + + $table->bigInteger('institution_id'); + $table->foreign('institution_id', 'usi_institution_id_foreign')->references('institution_id')->on('institutions')->onDelete('cascade'); + $table->index(['institution_id'], 'usi_institution_id'); + + $table->unique(['load_id', 'line_number', 'institution_id'], 'usi_load_id_line_number_institution_id'); + }); + } + + /** + * Reverse the downgrades + * + * @throws DowngradeNotSupportedException + */ + public function down(): void + { + throw new DowngradeNotSupportedException(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I6782_MetricsContext.php b/classes/migration/upgrade/v3_4_0/I6782_MetricsContext.php new file mode 100644 index 00000000000..134f8fd4262 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I6782_MetricsContext.php @@ -0,0 +1,30 @@ +select(DB::raw("m.load_id, m.context_id, m.assoc_id, {$dayFormatSql}, m.metric")) + ->where('m.assoc_type', '=', self::ASSOC_TYPE_SERIES) + ->where('m.metric_type', '=', 'omp::counter'); + DB::table('metrics_series')->insertUsing(['load_id', 'context_id', 'series_id', 'date', 'metric'], $selectSeriesMetrics); + } + + /** + * Reverse the downgrades + * + * @throws DowngradeNotSupportedException + */ + public function down(): void + { + throw new DowngradeNotSupportedException(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I6782_MetricsSubmission.php b/classes/migration/upgrade/v3_4_0/I6782_MetricsSubmission.php new file mode 100644 index 00000000000..781d3f71f90 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I6782_MetricsSubmission.php @@ -0,0 +1,80 @@ +select(DB::raw("m.load_id, m.context_id, m.assoc_id, null, null, null, null, m.assoc_type, {$dayFormatSql}, m.metric")) + ->where('m.assoc_type', '=', self::ASSOC_TYPE_SUBMISSION) + ->where('m.metric_type', '=', 'omp::counter'); + DB::table('metrics_submission')->insertUsing(['load_id', 'context_id', 'submission_id', 'chapter_id', 'representation_id', 'submission_file_id', 'file_type', 'assoc_type', 'date', 'metric'], $selectSubmissionMetrics); + + $selectSubmissionFileMetrics = DB::table('metrics as m') + ->leftJoin('submission_file_settings as sfs', function ($join) { + $join->on('m.assoc_id', '=', 'sfs.submission_file_id'); + $join->where('m.assoc_type', '=', self::ASSOC_TYPE_SUBMISSION_FILE); + $join->where('sfs.setting_name', '=', 'chapterId'); + }) + ->select(DB::raw("m.load_id, m.context_id, m.submission_id, CAST(sfs.setting_value AS {$bigIntCast}), m.representation_id, m.assoc_id, m.file_type, m.assoc_type, {$dayFormatSql}, m.metric")) + ->where('m.assoc_type', '=', self::ASSOC_TYPE_SUBMISSION_FILE) + ->where('m.metric_type', '=', 'omp::counter'); + DB::table('metrics_submission')->insertUsing(['load_id', 'context_id', 'submission_id', 'chapter_id', 'representation_id', 'submission_file_id', 'file_type', 'assoc_type', 'date', 'metric'], $selectSubmissionFileMetrics); + + $selectSubmissionSuppFileMetrics = DB::table('metrics as m') + ->leftJoin('submission_file_settings as sfs', function ($join) { + $join->on('m.assoc_id', '=', 'sfs.submission_file_id'); + $join->where('m.assoc_type', '=', self::ASSOC_TYPE_SUBMISSION_FILE_COUNTER_OTHER); + $join->where('sfs.setting_name', '=', 'chapterId'); + }) + ->select(DB::raw("m.load_id, m.context_id, m.submission_id, CAST(sfs.setting_value AS {$bigIntCast}), m.representation_id, m.assoc_id, m.file_type, m.assoc_type, {$dayFormatSql}, m.metric")) + ->where('m.assoc_type', '=', self::ASSOC_TYPE_SUBMISSION_FILE_COUNTER_OTHER) + ->where('m.metric_type', '=', 'omp::counter'); + DB::table('metrics_submission')->insertUsing(['load_id', 'context_id', 'submission_id', 'chapter_id', 'representation_id', 'submission_file_id', 'file_type', 'assoc_type', 'date', 'metric'], $selectSubmissionSuppFileMetrics); + } + + /** + * Reverse the downgrades + * + * @throws DowngradeNotSupportedException + */ + public function down(): void + { + throw new DowngradeNotSupportedException(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I6782_OrphanedMetrics.php b/classes/migration/upgrade/v3_4_0/I6782_OrphanedMetrics.php new file mode 100644 index 00000000000..6527bb9d43a --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I6782_OrphanedMetrics.php @@ -0,0 +1,85 @@ +leftJoin('series AS s', 'm.assoc_id', '=', 's.series_id')->where('m.assoc_type', '=', self::ASSOC_TYPE_SERIES)->whereNull('s.series_id')->distinct()->pluck('m.assoc_id'); + $orphanedSeries = DB::table('metrics')->select($metricsColumns)->where('assoc_type', '=', self::ASSOC_TYPE_SERIES)->whereIn('assoc_id', $orphanedIds)->where('metric_type', '=', $this->getMetricType()); + DB::table('metrics_tmp')->insertUsing($metricsColumns, $orphanedSeries); + DB::table('metrics')->where('assoc_type', '=', self::ASSOC_TYPE_SERIES)->whereIn('assoc_id', $orphanedIds)->delete(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I6782_RemovePlugins.php b/classes/migration/upgrade/v3_4_0/I6782_RemovePlugins.php new file mode 100644 index 00000000000..b19e3e0db9b --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I6782_RemovePlugins.php @@ -0,0 +1,58 @@ +disableVersion, we will remove the entry from the table 'versions' and 'plugin_settings' + // because the plugin cannot be used any more + DB::table('versions') + ->where('product_type', '=', 'plugins.generic') + ->where('product', '=', 'usageStats') + ->delete(); + DB::table('plugin_settings') + ->where('plugin_name', '=', 'usagestatsplugin') + ->delete(); + + // It is not needed to remove usageStats plugin scheduled task from the Acron plugin, because + // PKPAcronPlugin function _parseCrontab() will be called at the end of update, that + // will overwrite the old crontab setting. + + // Remove the old scheduled task from the table scheduled_tasks + DB::table('scheduled_tasks')->where('class_name', '=', 'plugins.generic.usageStats.UsageStatsLoader')->delete(); + } + + /** + * Reverse the downgrades + * + * @throws DowngradeNotSupportedException + */ + public function down(): void + { + throw new DowngradeNotSupportedException(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I6807_SetLastModified.php b/classes/migration/upgrade/v3_4_0/I6807_SetLastModified.php new file mode 100644 index 00000000000..8ee2d3f3888 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I6807_SetLastModified.php @@ -0,0 +1,37 @@ +bigInteger('doi_id')->nullable(); + $table->foreign('doi_id')->references('doi_id')->on('dois')->nullOnDelete(); + $table->index(['doi_id'], 'submission_chapters_doi_id'); + }); + + // Add doiId to publication formats + Schema::table('publication_formats', function (Blueprint $table) { + $table->bigInteger('doi_id')->nullable(); + $table->foreign('doi_id')->references('doi_id')->on('dois')->nullOnDelete(); + $table->index(['doi_id'], 'publication_formats_doi_id'); + }); + + // Add doiId to submission files + Schema::table('submission_files', function (Blueprint $table) { + $table->bigInteger('doi_id')->nullable(); + $table->foreign('doi_id')->references('doi_id')->on('dois')->nullOnDelete(); + $table->index(['doi_id'], 'submission_files_doi_id'); + }); + + $this->migrateExistingDataUp(); + } + + /** + * Reverse the downgrades + * + * @throws DowngradeNotSupportedException + */ + public function down(): void + { + throw new DowngradeNotSupportedException(); + } + + protected function migrateExistingDataUp(): void + { + parent::migrateExistingDataUp(); + // Find all existing DOIs, move to new DOI objects and add foreign key for pub object + $this->_migrateRepresentationDoisUp(); + $this->_migrateChapterDoisUp(); + $this->_migrateSubmissionFileDoisUp(); + } + + /** + * Move representation/publication format DOIs from publication_format_settings table to DOI objects + */ + private function _migrateRepresentationDoisUp(): void + { + $q = DB::table('submissions', 's') + ->select(['s.context_id', 'pf.publication_format_id', 'pf.doi_id', 'pfss.setting_name', 'pfss.setting_value']) + ->leftJoin('publications as p', 'p.submission_id', '=', 's.submission_id') + ->leftJoin('publication_formats as pf', 'p.publication_id', '=', 'pf.publication_id') + ->leftJoin('publication_format_settings as pfss', 'pf.publication_format_id', '=', 'pfss.publication_format_id') + ->where('pfss.setting_name', '=', 'pub-id::doi'); + + $q->chunkById(1000, function ($items) { + foreach ($items as $item) { + // Double-check to ensure a DOI object does not already exist for publication + if ($item->doi_id === null) { + $doiId = $this->_addDoi($item->context_id, $item->setting_value); + + // Add association to newly created DOI to publication + DB::table('publication_formats') + ->where('publication_format_id', '=', $item->publication_format_id) + ->update(['doi_id' => $doiId]); + } else { + // Otherwise, update existing DOI object + $this->_updateDoi($item->doi_id, $item->context_id, $item->setting_value); + } + } + }, 'pf.publication_format_id', 'publication_format_id'); + + // Remove pub-id::doi settings entry + DB::table('publication_settings') + ->where('setting_name', '=', 'pub-id::doi') + ->delete(); + } + + /** + * Move chapter DOIs from submission_chapter_settings table to DOI objects + */ + private function _migrateChapterDoisUp(): void + { + $q = DB::table('submissions', 's') + ->select(['s.context_id', 'sc.chapter_id', 'sc.doi_id', 'scss.setting_name', 'scss.setting_value']) + ->leftJoin('publications as p', 'p.submission_id', '=', 's.submission_id') + ->leftJoin('submission_chapters as sc', 'p.publication_id', '=', 'sc.publication_id') + ->leftJoin('submission_chapter_settings as scss', 'sc.chapter_id', '=', 'scss.chapter_id') + ->where('scss.setting_name', '=', 'pub-id::doi'); + + $q->chunkById(1000, function ($items) { + foreach ($items as $item) { + // Double-check to ensure a DOI object does not already exist for publication + if ($item->doi_id === null) { + $doiId = $this->_addDoi($item->context_id, $item->setting_value); + + // Add association to newly created DOI to publication + DB::table('submission_chapters') + ->where('chapter_id', '=', $item->chapter_id) + ->update(['doi_id' => $doiId]); + } else { + // Otherwise, update existing DOI object + $this->_updateDoi($item->doi_id, $item->context_id, $item->setting_value); + } + } + }, 'sc.chapter_id', 'chapter_id'); + + // Remove pub-id::doi settings entry + DB::table('publication_settings') + ->where('setting_name', '=', 'pub-id::doi') + ->delete(); + } + + /** + * Move submission file DOIs from submission_file_settings table to DOI objects + */ + private function _migrateSubmissionFileDoisUp(): void + { + $q = DB::table('submissions', 's') + ->select(['s.context_id', 'sf.submission_file_id', 'sf.doi_id', 'sfss.setting_name', 'sfss.setting_value']) + ->leftJoin('submission_files as sf', 's.submission_id', '=', 'sf.submission_id') + ->leftJoin('submission_file_settings as sfss', 'sf.submission_file_id', '=', 'sfss.submission_file_id') + ->where('sfss.setting_name', '=', 'pub-id::doi'); + + $q->chunkById(1000, function ($items) { + foreach ($items as $item) { + // Double-check to ensure a DOI object does not already exist for publication + if ($item->doi_id === null) { + $doiId = $this->_addDoi($item->context_id, $item->setting_value); + + // Add association to newly created DOI to publication + DB::table('submission_files') + ->where('submission_file_id', '=', $item->submission_file_id) + ->update(['doi_id' => $doiId]); + } else { + // Otherwise, update existing DOI object + $this->_updateDoi($item->doi_id, $item->context_id, $item->setting_value); + } + } + }, 'sf.submission_file_id', 'submission_file_id'); + + // Remove pub-id::doi settings entry + DB::table('publication_settings') + ->where('setting_name', '=', 'pub-id::doi') + ->delete(); + } + + /** + * Gets app-specific context table name, e.g. journals + */ + protected function getContextTable(): string + { + return 'presses'; + } + + /** + * Gets app-specific context_id column, e.g. journal_id + */ + protected function getContextIdColumn(): string + { + return 'press_id'; + } + + /** + * Gets app-specific context settings table, e.g. journal_settings + */ + protected function getContextSettingsTable(): string + { + return 'press_settings'; + } + + /** + * Adds app-specific suffix patterns to data collector stdClass + */ + protected function addSuffixPatternsData(\stdClass $data): \stdClass + { + $data->doiChapterSuffixPattern = []; + $data->doiSubmissionFileSuffixPattern = []; + + return $data; + } + + /** + * Adds suffix pattern settings from DB into reducer's data + */ + protected function insertSuffixPatternsData(\stdClass $carry, \stdClass $item): \stdClass + { + switch ($item->setting_name) { + case 'doiChapterSuffixPattern': + $carry->doiChapterSuffixPattern[] = [ + $this->getContextIdColumn() => $item->context_id, + 'setting_name' => $item->setting_name, + 'setting_value' => $item->setting_value + ]; + return $carry; + case 'doiSubmissionFileSuffixPattern': + $carry->doiSubmissionFileSuffixPattern[] = [ + $this->getContextIdColumn() => $item->context_id, + 'setting_name' => $item->setting_name, + 'setting_value' => $item->setting_value + ]; + return $carry; + default: + return $carry; + } + } + + /** + * Adds insert-ready statements for all applicable suffix pattern items + */ + protected function prepareSuffixPatternsForInsert(\stdClass $processedData, array $insertData): array + { + foreach ($processedData->doiChapterSuffixPattern as $item) { + $insertData[] = $item; + } + foreach ($processedData->doiSubmissionFileSuffixPattern as $item) { + $insertData[] = $item; + } + + return $insertData; + } + + /** + * Add app-specific enabled DOI types for insert into DB + */ + protected function insertEnabledDoiTypes(\stdClass $carry, \stdClass $item): \stdClass + { + $enabledType = null; + if ($item->setting_name === 'enableChapterDoi') { + $enabledType = 'chapter'; + } elseif ($item->setting_name === 'enableSubmissionFileDoi') { + $enabledType = 'file'; + } + + + if ($enabledType !== null) { + if (!isset($carry->enabledDoiTypes[$item->context_id])) { + $carry->enabledDoiTypes[$item->context_id] = [ + $this->getContextIdColumn() => $item->context_id, + 'setting_name' => 'enabledDoiTypes', + 'setting_value' => [], + ]; + } + + if ($item->setting_value === '1') { + $carry->enabledDoiTypes[$item->context_id]['setting_value'][] = $enabledType; + } + } + + return $carry; + } + + /** + * Get an array with the keys for each suffix pattern type + */ + protected function getSuffixPatternNames(): array + { + return [ + 'doiPublicationSuffixPattern', + 'doiRepresentationSuffixPattern', + 'doiChapterSuffixPattern', + 'doiSubmissionFileSuffixPattern', + ]; + } + + /** + * Returns the default pattern for the given suffix pattern type + */ + protected function getSuffixPatternValue(string $suffixPatternName): string + { + $pattern = ''; + switch ($suffixPatternName) { + case 'doiPublicationSuffixPattern': + $pattern = '%p.%m'; + break; + case 'doiRepresentationSuffixPattern': + $pattern = '%p.%m.%f'; + break; + case 'doiChapterSuffixPattern': + $pattern = '%p.%m.c%c'; + break; + case 'doiSubmissionFileSuffixPattern': + $pattern = '%p.%m.%f.%s'; + break; + } + + return $pattern; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\migration\upgrade\v3_4_0\I7014_DoiMigration', '\I7014_DoiMigration'); +} diff --git a/classes/migration/upgrade/v3_4_0/I7128_SeriesEntityDAORefactor.php b/classes/migration/upgrade/v3_4_0/I7128_SeriesEntityDAORefactor.php new file mode 100644 index 00000000000..15af525b70e --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I7128_SeriesEntityDAORefactor.php @@ -0,0 +1,44 @@ +dropColumn('setting_type'); + }); + } + } + + /** + * Reverse the downgrades + * + * @throws DowngradeNotSupportedException + */ + public function down(): void + { + throw new DowngradeNotSupportedException(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I7132_AddSourceChapterId.php b/classes/migration/upgrade/v3_4_0/I7132_AddSourceChapterId.php new file mode 100644 index 00000000000..bcdbecb3fe3 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I7132_AddSourceChapterId.php @@ -0,0 +1,45 @@ +bigInteger('source_chapter_id')->nullable(); + $table->foreign('source_chapter_id')->references('chapter_id')->on('submission_chapters')->onDelete('set null'); + $table->index(['source_chapter_id'], 'submission_chapters_source_chapter_id'); + }); + } + + /** + * Reverse the downgrades + */ + public function down(): void + { + //remove source_chapter_id + Schema::table('submission_chapters', function ($table) { + $table->dropForeign('submission_chapters_source_chapter_id_foreign'); + $table->dropColumn('source_chapter_id'); + }); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I7190_RemoveOrphanFilters.php b/classes/migration/upgrade/v3_4_0/I7190_RemoveOrphanFilters.php new file mode 100644 index 00000000000..1ca82be838d --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I7190_RemoveOrphanFilters.php @@ -0,0 +1,62 @@ +whereNotIn( + 'symbolic', + [ + 'mods34=>mods34-xml', + 'ArtworkFile=>native-xml', + 'native-xml=>ArtworkFile', + 'MonographFile=>native-xml', + 'SubmissionArtworkFile=>native-xml', + 'SupplementaryFile=>native-xml', + 'native-xml=>SubmissionArtworkFile', + 'native-xml=>SupplementaryFile' + ] + ) + ->delete(); + + DB::table('filters') + ->whereNotExists( + fn (Builder $query) => $query + ->from('filter_groups', 'fg') + ->whereColumn('fg.filter_group_id', '=', 'filters.filter_group_id') + ) + ->delete(); + } + + /** + * Reverse the downgrades + * + * @throws DowngradeNotSupportedException + */ + public function down(): void + { + throw new DowngradeNotSupportedException(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I7191_EditorAssignments.php b/classes/migration/upgrade/v3_4_0/I7191_EditorAssignments.php new file mode 100644 index 00000000000..1f688e423db --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I7191_EditorAssignments.php @@ -0,0 +1,33 @@ +upNewDecisions(); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + parent::down(); + $this->downNewDecisions(); + } + + /** + * Migrate to the new decision classes + * + * The same decision may have been taken in more than one stage + * before. For example, SUBMISSION_EDITOR_DECISION_ACCEPT may + * have been taken in the submission, internal review, or external + * review stage. Now, this is represented by three decisions: + * + * APP\decision\Decision::ACCEPT + * APP\decision\Decision::SKIP_EXTERNAL_REVIEW + * APP\decision\Decision::ACCEPT_INTERNAL + * + * This migration maps all of the old decisions to the new ones. + */ + public function upNewDecisions() + { + foreach ($this->getDecisionMap() as $oldDecision => $changes) { + foreach ($changes as $stageId => $newDecision) { + DB::table('edit_decisions') + ->where('stage_id', '=', $stageId) + ->where('decision', '=', $oldDecision) + ->update(['decision' => $newDecision]); + } + } + } + + /** + * Reverse the decision type changes + * + * @see self::upNewSubmissionDecisions() + */ + public function downNewDecisions() + { + foreach ($this->getDecisionMap() as $oldDecision => $changes) { + foreach ($changes as $stageId => $newDecision) { + DB::table('edit_decisions') + ->where('stage_id', '=', $stageId) + ->where('decision', '=', $newDecision) + ->update(['decision' => $oldDecision]); + } + } + } + + /** + * Get a map of the decisions in the following format + * + * [ + * $oldDecisionA => [ + * $stageId1 => $newDecision1, + * $stageId2 => $newDecision2, + * ], + * $oldDecisionB => [ + * $stageId1 => $newDecision1, + * ], + * ] + * + * Only decisions that need to be changed are listed. + */ + protected function getDecisionMap(): array + { + return [ + // Change Decision::ACCEPT... + 2 => [ + // ...in WORKFLOW_STAGE_ID_SUBMISSION to Decision::SKIP_EXTERNAL_REVIEW + 1 => 19, + // ...in WORKFLOW_STAGE_ID_INTERNAL_REVIEW to Decision::ACCEPT_INTERNAL + 2 => 24, + // Accept decisions in WORKFLOW_STAGE_ID_EXTERNAL_REVIEW are not changed. + ], + + // Change Decision::EXTERNAL_REVIEW... + 3 => [ + // ...in WORKFLOW_STAGE_ID_SUBMISSION to Decision::SKIP_INTERNAL_REVIEW + 1 => 23, + // Send to external review decisions in WORKFLOW_STAGE_ID_INTERNAL_REVIEW are not changed. + ], + + // Change Decision::DECLINE... + 6 => [ + // ...in WORKFLOW_STAGE_ID_INTERNAL_REVIEW to Decision::DECLINE_INTERNAL + 2 => 27, + ], + + // Change Decision::RECOMMEND_ACCEPT... + 11 => [ + // ... in WORKFLOW_STAGE_ID_INTERNAL_REVIEW to Decision::RECOMMEND_ACCEPT_INTERNAL + 2 => 28, + ], + + // Change Decision::RECOMMEND_DECLINE... + 14 => [ + // ... in WORKFLOW_STAGE_ID_INTERNAL_REVIEW to Decision::RECOMMEND_DECLINE_INTERNAL + 2 => 31, + ], + + // Change Decision::RECOMMEND_RESUBMIT... + 13 => [ + // ... in WORKFLOW_STAGE_ID_INTERNAL_REVIEW to Decision::RECOMMEND_RESUBMIT_INTERNAL + 2 => 30, + ], + + // Change Decision::RECOMMEND_PENDING_REVISIONS... + 12 => [ + // ... in WORKFLOW_STAGE_ID_INTERNAL_REVIEW to Decision::RECOMMEND_PENDING_REVISIONS_INTERNAL + 2 => 29, + ], + + // Change Decision::PENDING_REVISIONS... + 4 => [ + // ... in WORKFLOW_STAGE_ID_INTERNAL_REVIEW to Decision::PENDING_REVISIONS_INTERNAL + 2 => 25, + ], + + // Change Decision::RESUBMIT... + 5 => [ + // ... in WORKFLOW_STAGE_ID_INTERNAL_REVIEW to Decision::RESUBMIT_INTERNAL + 2 => 26, + ], + ]; + } + + protected function getContextTable(): string + { + return 'presses'; + } + + protected function getContextSettingsTable(): string + { + return 'press_settings'; + } + + protected function getContextIdColumn(): string + { + return 'press_id'; + } +} diff --git a/classes/migration/upgrade/v3_4_0/I7434_WorkType.php b/classes/migration/upgrade/v3_4_0/I7434_WorkType.php new file mode 100644 index 00000000000..140c5fff159 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I7434_WorkType.php @@ -0,0 +1,54 @@ +where('setting_name', '=', 'workType') + ->delete(); + } + + /** + * Reverse the migration + */ + public function down(): void + { + // Data should not be returned to the settings table + } +} diff --git a/classes/migration/upgrade/v3_4_0/I7725_DecisionConstantsUpdate.php b/classes/migration/upgrade/v3_4_0/I7725_DecisionConstantsUpdate.php new file mode 100644 index 00000000000..800333298b3 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I7725_DecisionConstantsUpdate.php @@ -0,0 +1,204 @@ + [WORKFLOW_STAGE_ID_SUBMISSION], + 'current_value' => 9, + 'updated_value' => 8, + ], + + // \PKP\decision\Decision::RECOMMEND_ACCEPT + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 11, + 'updated_value' => 9, + ], + + // \PKP\decision\Decision::RECOMMEND_PENDING_REVISIONS + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 12, + 'updated_value' => 10, + ], + + // \PKP\decision\Decision::RECOMMEND_RESUBMIT + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 13, + 'updated_value' => 11, + ], + + // \PKP\decision\Decision::RECOMMEND_DECLINE + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 14, + 'updated_value' => 12, + ], + + // \PKP\decision\Decision::RECOMMEND_EXTERNAL_REVIEW + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 15, + 'updated_value' => 13, + ], + + // \PKP\decision\Decision::NEW_EXTERNAL_ROUND + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 16, + 'updated_value' => 14, + ], + + // \PKP\decision\Decision::REVERT_DECLINE + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 17, + 'updated_value' => 15, + ], + + // \PKP\decision\Decision::REVERT_INITIAL_DECLINE + [ + 'stage_id' => [WORKFLOW_STAGE_ID_SUBMISSION], + 'current_value' => 18, + 'updated_value' => 16, + ], + + // \PKP\decision\Decision::SKIP_EXTERNAL_REVIEW + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EDITING], + 'current_value' => 19, + 'updated_value' => 17, + ], + + // \PKP\decision\Decision::SKIP_INTERNAL_REVIEW + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 20, + 'updated_value' => 18, + ], + + // \PKP\decision\Decision::ACCEPT_INTERNAL + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EDITING], + 'current_value' => 21, + 'updated_value' => 19, + ], + + // \PKP\decision\Decision::PENDING_REVISIONS_INTERNAL + [ + 'stage_id' => [WORKFLOW_STAGE_ID_INTERNAL_REVIEW], + 'current_value' => 22, + 'updated_value' => 20 + ], + + // \PKP\decision\Decision::RESUBMIT_INTERNAL + [ + 'stage_id' => [], + 'current_value' => 23, + 'updated_value' => 21, + ], + + // \PKP\decision\Decision::DECLINE_INTERNAL + [ + 'stage_id' => [WORKFLOW_STAGE_ID_INTERNAL_REVIEW], + 'current_value' => 24, + 'updated_value' => 22, + ], + + // \PKP\decision\Decision::RECOMMEND_ACCEPT_INTERNAL + [ + 'stage_id' => [WORKFLOW_STAGE_ID_INTERNAL_REVIEW], + 'current_value' => 25, + 'updated_value' => 23, + ], + + // \PKP\decision\Decision::RECOMMEND_PENDING_REVISIONS_INTERNAL + [ + 'stage_id' => [WORKFLOW_STAGE_ID_INTERNAL_REVIEW], + 'current_value' => 26, + 'updated_value' => 24, + ], + + // \PKP\decision\Decision::RECOMMEND_RESUBMIT_INTERNAL + [ + 'stage_id' => [WORKFLOW_STAGE_ID_INTERNAL_REVIEW], + 'current_value' => 27, + 'updated_value' => 25, + ], + + // \PKP\decision\Decision::RECOMMEND_DECLINE_INTERNAL + [ + 'stage_id' => [], + 'current_value' => 28, + 'updated_value' => 26, + ], + + // \PKP\decision\Decision::REVERT_INTERNAL_DECLINE + [ + 'stage_id' => [WORKFLOW_STAGE_ID_INTERNAL_REVIEW], + 'current_value' => 29, + 'updated_value' => 27, + ], + + // \PKP\decision\Decision::NEW_INTERNAL_ROUND + [ + 'stage_id' => [WORKFLOW_STAGE_ID_INTERNAL_REVIEW], + 'current_value' => 30, + 'updated_value' => 28, + ], + + // \PKP\decision\Decision::BACK_FROM_PRODUCTION + [ + 'stage_id' => [WORKFLOW_STAGE_ID_EDITING], + 'current_value' => 31, + 'updated_value' => 29, + ], + + // \PKP\decision\Decision::BACK_FROM_COPYEDITING + [ + 'stage_id' => [WORKFLOW_STAGE_ID_SUBMISSION, WORKFLOW_STAGE_ID_INTERNAL_REVIEW, WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 32, + 'updated_value' => 30, + ], + + // \PKP\decision\Decision::CANCEL_REVIEW_ROUND + [ + 'stage_id' => [WORKFLOW_STAGE_ID_SUBMISSION, WORKFLOW_STAGE_ID_INTERNAL_REVIEW, WORKFLOW_STAGE_ID_EXTERNAL_REVIEW], + 'current_value' => 33, + 'updated_value' => 31, + ], + + // \PKP\decision\Decision::CANCEL_INTERNAL_REVIEW_ROUND + [ + 'stage_id' => [WORKFLOW_STAGE_ID_SUBMISSION, WORKFLOW_STAGE_ID_INTERNAL_REVIEW], + 'current_value' => 34, + 'updated_value' => 32, + ], + ]; + } +} diff --git a/classes/migration/upgrade/v3_4_0/I8027_DoiVersioning.php b/classes/migration/upgrade/v3_4_0/I8027_DoiVersioning.php new file mode 100644 index 00000000000..342f18ea594 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I8027_DoiVersioning.php @@ -0,0 +1,52 @@ +distinct() + ->get(['press_id']); + $insertStatements = $pressIds->reduce(function ($carry, $item) { + $carry[] = [ + 'press_id' => $item->press_id, + 'setting_name' => 'doiVersioning', + 'setting_value' => 0 + ]; + + return $carry; + }, []); + + DB::table('press_settings') + ->insert($insertStatements); + } + + /** + * @inheritDoc + */ + public function down(): void + { + DB::table('press_settings') + ->where('setting_name', '=', 'doiVersioning') + ->delete(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I8151_ExtendSettingValues.php b/classes/migration/upgrade/v3_4_0/I8151_ExtendSettingValues.php new file mode 100755 index 00000000000..cf3ae64daf2 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I8151_ExtendSettingValues.php @@ -0,0 +1,57 @@ +mediumText('setting_value')->nullable()->change(); + }); + + Schema::table('series_settings', function (Blueprint $table) { + $table->mediumText('setting_value')->nullable()->change(); + }); + + Schema::table('submission_chapter_settings', function (Blueprint $table) { + $table->mediumText('setting_value')->nullable()->change(); + }); + + Schema::table('press_settings', function (Blueprint $table) { + $table->mediumText('setting_value')->nullable()->change(); + }); + + Schema::table('spotlight_settings', function (Blueprint $table) { + $table->mediumText('setting_value')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + // This downgrade is intentionally not implemented. Changing MEDIUMTEXT back to TEXT + // may result in data truncation. Having MEDIUMTEXT in place of TEXT in an otherwise + // downgraded database will not have side-effects. + } +} diff --git a/classes/migration/upgrade/v3_4_0/I8933_EventLogLocalized.php b/classes/migration/upgrade/v3_4_0/I8933_EventLogLocalized.php new file mode 100644 index 00000000000..d9e689b0de2 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I8933_EventLogLocalized.php @@ -0,0 +1,96 @@ +get(['press_id', 'primary_locale']); + // Add site primary locale at the end of the collection; to be used when associated context (based on a submission) cannot be determined + $contexts->push((object) [ + 'press_id' => null, + 'primary_locale' => DB::table('site')->value('primary_locale') + ]); + /** + * Update locale for localized settings by context primary locale. + * All event types using settings that require update have submission assoc type, + * we can join event logs with submissions table to get the context ID + */ + foreach ($contexts as $context) { + $idsToUpdate = DB::table('event_log as e') + ->leftJoin('submissions as s', 'e.assoc_id', '=', 's.submission_id') + ->where('assoc_type', 0x0100009) // PKPApplication::ASSOC_TYPE_SUBMISSION + ->whereIn('event_type', [ + 268435475, // SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_REMOVE + 268435474, // SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_CREATE + 268435464, // SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_PUBLISH + 268435465, // SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_UNPUBLISH + 268435476, // SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_AVAILABLE + 268435477, // SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_UNAVAILABLE + ]) + ->whereIn('e.log_id', function (Builder $qb) { + $qb->select('es.log_id') + ->from('event_log_settings as es') + ->whereIn('setting_name', ['publicationFormatName', 'filename']); + }) + ->where('s.context_id', $context->press_id) + ->pluck('log_id'); + + foreach ($idsToUpdate->chunk(parent::CHUNK_SIZE) as $ids) { + DB::table('event_log_settings')->whereIn('log_id', $ids)->update(['locale' => $context->primary_locale]); + } + } + } + + /** + * Add setting to the map for renaming + */ + protected function mapSettings(): Collection + { + $map = parent::mapSettings(); + $map->put(268435475, [ // SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_REMOVE + 'formatName' => 'publicationFormatName' + ]); + $map->put(0x50000007, [ // SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_CREATE + 'file' => 'filename', + 'name' => 'userFullName' + ]); + $map->put(268435474, [ // SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_CREATE + 'formatName' => 'publicationFormatName' + ]); + return $map; + } +} diff --git a/classes/migration/upgrade/v3_4_0/I8992_FixEmptyUrlPaths.php b/classes/migration/upgrade/v3_4_0/I8992_FixEmptyUrlPaths.php new file mode 100644 index 00000000000..5b865dc1c8e --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I8992_FixEmptyUrlPaths.php @@ -0,0 +1,30 @@ +introspectTable('publication_formats')->hasIndex('publication_format_submission_id')) { + Schema::table('publication_formats', fn (Blueprint $table) => $table->dropIndex('publication_format_submission_id')); + } + + if (Schema::hasColumn('publication_formats', 'submission_id')) { + Schema::dropColumns('publication_formats', 'submission_id'); + } + } +} diff --git a/classes/migration/upgrade/v3_4_0/I9040_DropSettingType.php b/classes/migration/upgrade/v3_4_0/I9040_DropSettingType.php new file mode 100644 index 00000000000..35cba3b13f0 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I9040_DropSettingType.php @@ -0,0 +1,26 @@ + 'title-ASC', + 'title-2' => 'title-DESC', + 'datePublished-1' => 'datePublished-ASC', + 'datePublished-2' => 'datePublished-DESC', + 'seriesPosition-1' => 'seriesPosition-ASC', + 'seriesPosition-2' => 'seriesPosition-DESC', + ]; + + /** + * Run the migration. + */ + public function up(): void + { + foreach (static::SETTING_VALUE_MAP as $from => $to) { + DB::statement('UPDATE press_settings SET setting_value=? WHERE setting_value=? AND setting_name = ?', [$to, $from, 'catalogSortOption']); + } + } + + /** + * Reverse the migration + */ + public function down(): void + { + foreach (static::SETTING_VALUE_MAP as $from => $to) { + DB::statement('UPDATE press_settings SET setting_value=? WHERE setting_value=? AND setting_name = ?', [$from, $to, 'catalogSortOption']); + } + } +} diff --git a/classes/migration/upgrade/v3_4_0/I9231_FixMetricsIndexes.php b/classes/migration/upgrade/v3_4_0/I9231_FixMetricsIndexes.php new file mode 100644 index 00000000000..389c7bd7191 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I9231_FixMetricsIndexes.php @@ -0,0 +1,88 @@ +string('load_id', 50)->change(); + }); + } + + // Drop the too big unique indexes + // msgd_uc_load_context_submission_c_r_c_date and + // msgm_uc_context_submission_c_r_c_month, + // and create new ones using city column prefix for MySQL + Schema::table('metrics_submission_geo_daily', function (Blueprint $table) { + $table->dropUnique('msgd_uc_load_context_submission_c_r_c_date'); + switch (DB::getDriverName()) { + case 'mysql': + $table->unique([DB::raw('load_id, context_id, submission_id, country, region, city(80), date')], 'msgd_uc_load_context_submission_c_r_c_date'); + break; + case 'pgsql': + $table->unique(['load_id', 'context_id', 'submission_id', 'country', 'region', 'city', 'date'], 'msgd_uc_load_context_submission_c_r_c_date'); + break; + } + }); + Schema::table('metrics_submission_geo_monthly', function (Blueprint $table) { + $table->dropUnique('msgm_uc_context_submission_c_r_c_month'); + switch (DB::getDriverName()) { + case 'mysql': + $table->unique([DB::raw('context_id, submission_id, country, region, city(80), month')], 'msgm_uc_context_submission_c_r_c_month'); + break; + case 'pgsql': + $table->unique(['context_id', 'submission_id', 'country', 'region', 'city', 'month'], 'msgm_uc_context_submission_c_r_c_month'); + break; + } + }); + } + + /** + * Reverse the downgrades + * + * @throws DowngradeNotSupportedException + */ + public function down(): void + { + throw new DowngradeNotSupportedException(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/I9627_AddUsageStatsTemporaryTablesIndexes.php b/classes/migration/upgrade/v3_4_0/I9627_AddUsageStatsTemporaryTablesIndexes.php new file mode 100644 index 00000000000..ddee3c6e76f --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/I9627_AddUsageStatsTemporaryTablesIndexes.php @@ -0,0 +1,62 @@ +getDoctrineSchemaManager(); + Schema::table('usage_stats_unique_title_investigations_temporary_records', function (Blueprint $table) use ($sm) { + $indexesFound = $sm->listTableIndexes('usage_stats_unique_title_investigations_temporary_records'); + if (!array_key_exists('usti_load_id_context_id_ip', $indexesFound)) { + $table->index(['load_id', 'context_id', 'ip'], 'usti_load_id_context_id_ip'); + } + }); + Schema::table('usage_stats_unique_title_requests_temporary_records', function (Blueprint $table) use ($sm) { + $indexesFound = $sm->listTableIndexes('usage_stats_unique_title_requests_temporary_records'); + if (!array_key_exists('ustr_load_id_context_id_ip', $indexesFound)) { + $table->index(['load_id', 'context_id', 'ip'], 'ustr_load_id_context_id_ip'); + } + }); + } + + /** + * Reverse the downgrades + * + * @throws DowngradeNotSupportedException + */ + public function down(): void + { + throw new DowngradeNotSupportedException(); + } +} diff --git a/classes/migration/upgrade/v3_4_0/InstallEmailTemplates.php b/classes/migration/upgrade/v3_4_0/InstallEmailTemplates.php new file mode 100644 index 00000000000..7c4ac7a89e4 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/InstallEmailTemplates.php @@ -0,0 +1,56 @@ + 'pressName', + 'contextUrl' => 'pressUrl', + 'contextSignature' => 'pressSignature', + ]; + } +} diff --git a/classes/migration/upgrade/v3_4_0/MergeLocalesMigration.php b/classes/migration/upgrade/v3_4_0/MergeLocalesMigration.php new file mode 100644 index 00000000000..2ceb5cdd16d --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/MergeLocalesMigration.php @@ -0,0 +1,35 @@ + ['press_id', 'press_setting_id'], + 'publication_format_settings' => ['publication_format_id', 'publication_format_setting_id'], + 'series_settings' => ['series_id', 'series_setting_id'], + 'spotlight_settings' => ['spotlight_id', 'spotlight_setting_id'], + 'submission_chapter_settings' => ['chapter_id', 'submission_chapter_setting_id'], + ])->merge(parent::getSettingsTables()); + } +} diff --git a/classes/migration/upgrade/v3_4_0/PreflightCheckMigration.php b/classes/migration/upgrade/v3_4_0/PreflightCheckMigration.php new file mode 100644 index 00000000000..32e4ab81114 --- /dev/null +++ b/classes/migration/upgrade/v3_4_0/PreflightCheckMigration.php @@ -0,0 +1,228 @@ +addTableProcessor('publication_formats', function (): int { + $affectedRows = 0; + // Depends directly on ~2 entities: doi_id->dois.doi_id(not found in previous version) publication_id->publications.publication_id + $affectedRows += $this->deleteRequiredReference('publication_formats', 'publication_id', 'publications', 'publication_id'); + return $affectedRows; + }); + + $this->addTableProcessor('submission_chapters', function (): int { + $affectedRows = 0; + // Depends directly on ~4 entities: doi_id->dois.doi_id(not found in previous version) primary_contact_id->authors.author_id publication_id->publications.publication_id source_chapter_id->submission_chapters.chapter_id + $affectedRows += $this->deleteRequiredReference('submission_chapters', 'publication_id', 'publications', 'publication_id'); + + $affectedRows += $this->cleanOptionalReference('submission_chapters', 'primary_contact_id', 'authors', 'author_id'); + return $affectedRows; + }); + + $this->addTableProcessor('publications', function (): int { + $affectedRows = 0; + // Depends directly on ~4 entities: primary_contact_id->authors.author_id doi_id->dois.doi_id(not found in previous version) series_id->series.series_id submission_id->submissions.submission_id + $affectedRows += $this->cleanOptionalReference('publications', 'series_id', 'series', 'series_id'); + return $affectedRows; + }); + + $this->addTableProcessor('series', function (): int { + $affectedRows = 0; + // Depends directly on ~2 entities: press_id->presses.press_id review_form_id->review_forms.review_form_id + $affectedRows += $this->deleteRequiredReference('series', $this->getContextKeyField(), $this->getContextTable(), $this->getContextKeyField()); + $affectedRows += $this->cleanOptionalReference('series', 'review_form_id', 'review_forms', 'review_form_id'); + return $affectedRows; + }); + + $this->addTableProcessor('spotlights', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: press_id->presses.press_id + $affectedRows += $this->deleteRequiredReference('spotlights', $this->getContextKeyField(), $this->getContextTable(), $this->getContextKeyField()); + return $affectedRows; + }); + + $this->addTableProcessor('completed_payments', function (): int { + $affectedRows = 0; + // Depends directly on ~2 entities: context_id->presses.press_id user_id->users.user_id + $affectedRows += $this->deleteRequiredReference('completed_payments', 'context_id', $this->getContextTable(), $this->getContextKeyField()); + $affectedRows += $this->deleteOptionalReference('completed_payments', 'user_id', 'users', 'user_id'); + return $affectedRows; + }); + + $this->addTableProcessor('features', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: submission_id->submissions.submission_id + $affectedRows += $this->deleteRequiredReference('features', 'submission_id', 'submissions', 'submission_id'); + return $affectedRows; + }); + + $this->addTableProcessor('identification_codes', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: publication_format_id->publication_formats.publication_format_id + $affectedRows += $this->deleteRequiredReference('identification_codes', 'publication_format_id', 'publication_formats', 'publication_format_id'); + return $affectedRows; + }); + + $this->addTableProcessor('markets', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: publication_format_id->publication_formats.publication_format_id + $affectedRows += $this->deleteRequiredReference('markets', 'publication_format_id', 'publication_formats', 'publication_format_id'); + return $affectedRows; + }); + + $this->addTableProcessor('new_releases', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: submission_id->submissions.submission_id + $affectedRows += $this->deleteRequiredReference('new_releases', 'submission_id', 'submissions', 'submission_id'); + return $affectedRows; + }); + + $this->addTableProcessor('press_settings', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: press_id->presses.press_id + $affectedRows += $this->deleteRequiredReference($this->getContextSettingsTable(), $this->getContextKeyField(), $this->getContextTable(), $this->getContextKeyField()); + return $affectedRows; + }); + + $this->addTableProcessor('publication_dates', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: publication_format_id->publication_formats.publication_format_id + $affectedRows += $this->deleteRequiredReference('publication_dates', 'publication_format_id', 'publication_formats', 'publication_format_id'); + return $affectedRows; + }); + + $this->addTableProcessor('publication_format_settings', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: publication_format_id->publication_formats.publication_format_id + $affectedRows += $this->deleteRequiredReference('publication_format_settings', 'publication_format_id', 'publication_formats', 'publication_format_id'); + return $affectedRows; + }); + + $this->addTableProcessor('representatives', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: submission_id->submissions.submission_id + $affectedRows += $this->deleteRequiredReference('representatives', 'submission_id', 'submissions', 'submission_id'); + return $affectedRows; + }); + + $this->addTableProcessor('sales_rights', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: publication_format_id->publication_formats.publication_format_id + $affectedRows += $this->deleteRequiredReference('sales_rights', 'publication_format_id', 'publication_formats', 'publication_format_id'); + return $affectedRows; + }); + + $this->addTableProcessor('series_categories', function (): int { + $affectedRows = 0; + // Depends directly on ~2 entities: category_id->categories.category_id series_id->series.series_id + $affectedRows += $this->deleteRequiredReference('series_categories', 'series_id', 'series', 'series_id'); + $affectedRows += $this->deleteRequiredReference('series_categories', 'category_id', 'categories', 'category_id'); + return $affectedRows; + }); + + $this->addTableProcessor('series_settings', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: series_id->series.series_id + $affectedRows += $this->deleteRequiredReference('series_settings', 'series_id', 'series', 'series_id'); + return $affectedRows; + }); + + $this->addTableProcessor('spotlight_settings', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: spotlight_id->spotlights.spotlight_id + $affectedRows += $this->deleteRequiredReference('spotlight_settings', 'spotlight_id', 'spotlights', 'spotlight_id'); + return $affectedRows; + }); + + $this->addTableProcessor('submission_chapter_authors', function (): int { + $affectedRows = 0; + // Depends directly on ~2 entities: author_id->authors.author_id chapter_id->submission_chapters.chapter_id + $affectedRows += $this->deleteRequiredReference('submission_chapter_authors', 'chapter_id', 'submission_chapters', 'chapter_id'); + $affectedRows += $this->deleteRequiredReference('submission_chapter_authors', 'author_id', 'authors', 'author_id'); + return $affectedRows; + }); + + $this->addTableProcessor('submission_chapter_settings', function (): int { + $affectedRows = 0; + // Depends directly on ~1 entities: chapter_id->submission_chapters.chapter_id + $affectedRows += $this->deleteRequiredReference('submission_chapter_settings', 'chapter_id', 'submission_chapters', 'chapter_id'); + return $affectedRows; + }); + } + + protected function getEntityRelationships(): array + { + return [ + $this->getContextTable() => ['submissions', 'user_groups', 'series', 'categories', 'navigation_menu_items', 'filters', 'genres', 'announcement_types', 'navigation_menus', 'spotlights', 'notifications', 'library_files', 'email_templates', $this->getContextSettingsTable(), 'plugin_settings', 'user_group_stage', 'subeditor_submission_group', 'notification_subscription_settings', 'completed_payments'], + 'submissions' => ['publication_formats', 'submission_files', 'publications', 'review_rounds', 'review_assignments', 'submission_search_objects', 'library_files', 'submission_settings', 'submission_comments', 'stage_assignments', 'review_round_files', 'representatives', 'new_releases', 'features', 'edit_decisions'], + 'users' => ['submission_files', 'review_assignments', 'email_log', 'notifications', 'event_log', 'user_user_groups', 'user_settings', 'user_interests', 'temporary_files', 'submission_comments', 'subeditor_submission_group', 'stage_assignments', 'sessions', 'query_participants', 'notification_subscription_settings', 'notes', 'email_log_users', 'edit_decisions', 'completed_payments', 'access_keys'], + 'submission_files' => ['submission_files', 'submission_file_settings', 'submission_file_revisions', 'review_round_files', 'review_files'], + 'publication_formats' => ['sales_rights', 'publication_format_settings', 'publication_dates', 'markets', 'identification_codes'], + 'submission_chapters' => ['submission_chapters', 'submission_chapter_settings', 'submission_chapter_authors'], + 'publications' => ['submissions', 'publication_formats', 'submission_chapters', 'authors', 'citations', 'publication_settings', 'publication_categories'], + 'user_groups' => ['authors', 'user_user_groups', 'user_group_stage', 'user_group_settings', 'subeditor_submission_group', 'stage_assignments'], + 'series' => ['publications', 'series_settings', 'series_categories'], + 'authors' => ['submission_chapters', 'publications', 'submission_chapter_authors', 'author_settings'], + 'categories' => ['categories', 'series_categories', 'publication_categories', 'category_settings'], + 'review_forms' => ['series', 'review_assignments', 'review_form_elements', 'review_form_settings'], + 'review_rounds' => ['review_assignments', 'review_round_files', 'edit_decisions'], + 'data_object_tombstones' => ['data_object_tombstone_settings', 'data_object_tombstone_oai_set_objects'], + 'files' => ['submission_files', 'submission_file_revisions'], + 'filters' => ['filters', 'filter_settings'], + 'genres' => ['submission_files', 'genre_settings'], + 'navigation_menu_item_assignments' => ['navigation_menu_item_assignments', 'navigation_menu_item_assignment_settings'], + 'navigation_menu_items' => ['navigation_menu_item_assignments', 'navigation_menu_item_settings'], + 'announcement_types' => ['announcements', 'announcement_type_settings'], + 'review_assignments' => ['review_form_responses', 'review_files'], + 'review_form_elements' => ['review_form_responses', 'review_form_element_settings'], + 'controlled_vocab_entries' => ['user_interests', 'controlled_vocab_entry_settings'], + 'queries' => ['query_participants'], + 'navigation_menus' => ['navigation_menu_item_assignments'], + 'library_files' => ['library_file_settings'], + 'event_log' => ['event_log_settings'], + 'email_templates' => ['email_templates_settings'], + 'email_log' => ['email_log_users'], + 'spotlights' => ['spotlight_settings'], + 'static_pages' => ['static_page_settings'], + 'controlled_vocabs' => ['controlled_vocab_entries'], + 'citations' => ['citation_settings'], + 'submission_search_keyword_list' => ['submission_search_object_keywords'], + 'submission_search_objects' => ['submission_search_object_keywords'], + 'announcements' => ['announcement_settings'], + 'filter_groups' => ['filters'], + 'notifications' => ['notification_settings'] + ]; + } +} diff --git a/classes/monograph/Author.inc.php b/classes/monograph/Author.inc.php deleted file mode 100644 index ecc84315231..00000000000 --- a/classes/monograph/Author.inc.php +++ /dev/null @@ -1,38 +0,0 @@ -getData('isVolumeEditor'); - } - - /** - * Set whether or not this author should be displayed as a volume editor - * @param $isVolumeEditor boolean - */ - public function setIsVolumeEditor($isVolumeEditor) { - $this->setData('isVolumeEditor', $isVolumeEditor); - } -} - - diff --git a/classes/monograph/AuthorDAO.inc.php b/classes/monograph/AuthorDAO.inc.php deleted file mode 100644 index 71cc4d00f90..00000000000 --- a/classes/monograph/AuthorDAO.inc.php +++ /dev/null @@ -1,26 +0,0 @@ -getData($key, $preferredLocale)) { - return $this->getData($key, $preferredLocale); - } - // 2. User's current locale - if (!empty($this->getData($key, AppLocale::getLocale()))) { - return $this->getData($key, AppLocale::getLocale()); - } - // 3. The first locale we can find data for - $data = $this->getData($key, null); - foreach ((array) $data as $value) { - if (!empty($value)) { - return $value; - } - } - - return null; - } - - /** - * Get the combined prefix, title and subtitle for all locales - * @return array - */ - function getFullTitles() { - $allTitles = (array) $this->getData('title'); - $return = []; - foreach ($allTitles as $locale => $title) { - if (!$title) { - continue; - } - $return[$locale] = $this->getLocalizedFullTitle($locale); - } - return $return; - } - - /** - * Get the chapter full title (with title and subtitle). - * @param string $preferedLocale - * @return string - */ - function getLocalizedFullTitle($preferedLocale = null) { - - $fullTitle = $this->getLocalizedTitle($preferedLocale); - - if ($subtitle = $this->getLocalizedSubtitle($preferedLocale)) { - $fullTitle = PKPString::concatTitleFields(array($fullTitle, $subtitle)); - } - - return $fullTitle; - } - - /** - * Get localized title of a chapter. - */ - function getLocalizedTitle($preferedLocale = null) { - return $this->getLocalizedData('title', $preferedLocale); - } - - /** - * Get title of chapter (primary locale) - * @param $locale string - * @return string - */ - function getTitle($locale = null) { - return $this->getData('title', $locale); - } - - /** - * Set title of chapter - * @param $title string - * @param $locale string - */ - function setTitle($title, $locale = null) { - return $this->setData('title', $title, $locale); - } - - /** - * Get localized sub title of a chapter. - */ - function getLocalizedSubtitle($preferedLocale = null) { - return $this->getLocalizedData('subtitle', $preferedLocale); - } - - /** - * Get sub title of chapter (primary locale) - * @param $locale string - * @return string - */ - function getSubtitle($locale = null) { - return $this->getData('subtitle', $locale); - } - - /** - * Set sub title of chapter - * @param $subtitle string - * @param $locale string - */ - function setSubtitle($subtitle, $locale = null) { - return $this->setData('subtitle', $subtitle, $locale); - } - - /** - * Get sequence of chapter. - * @return float - */ - function getSequence() { - return $this->getData('sequence'); - } - - /** - * Set sequence of chapter. - * @param $sequence float - */ - function setSequence($sequence) { - return $this->setData('sequence', $sequence); - } - - /** - * Get all authors of this chapter. - * @return DAOResultFactory Iterator of authors - */ - function getAuthors() { - $chapterAuthorDao = DAORegistry::getDAO('ChapterAuthorDAO'); /* @var $chapterAuthorDao ChapterAuthorDAO */ - return $chapterAuthorDao->getAuthors($this->getData('publicationId'), $this->getId()); - } - - /** - * Get the author names for this chapter and return them as a string. - * @param $preferred boolean If the preferred public name should be used, if exist - * @return string - */ - function getAuthorNamesAsString($preferred = true) { - $authorNames = array(); - $authors = $this->getAuthors(); - while ($author = $authors->next()) { - $authorNames[] = $author->getFullName($preferred); - } - return join(', ', $authorNames); - } - - /** - * Get stored public ID of the chapter. - * @param @literal $pubIdType string One of the NLM pub-id-type values or - * 'other::something' if not part of the official NLM list - * (see ). @endliteral - * @return int - */ - function getStoredPubId($pubIdType) { - return $this->getData('pub-id::'.$pubIdType); - } - - /** - * Set the stored public ID of the chapter. - * @param $pubIdType string One of the NLM pub-id-type values or - * 'other::something' if not part of the official NLM list - * (see ). - * @param $pubId string - */ - function setStoredPubId($pubIdType, $pubId) { - $this->setData('pub-id::'.$pubIdType, $pubId); - } - - /** - * @copydoc DataObject::getDAO() - */ - function getDAO() { - return DAORegistry::getDAO('ChapterDAO'); - } - - /** - * Get abstract of chapter (primary locale) - * @param $locale string - * @return string - */ - function getAbstract($locale = null) { - return $this->getData('abstract', $locale); - } - - /** - * Set abstract of chapter - * @param $abstract string - * @param $locale string - */ - function setAbstract($abstract, $locale = null) { - return $this->setData('abstract', $abstract, $locale); - } - /** - * Get localized abstract of a chapter. - */ - function getLocalizedAbstract() { - return $this->getLocalizedData('abstract'); - } - - /** - * get date published - * @return date - */ - function getDatePublished() { - return $this->getData('datePublished'); - } - - /** - * set date published - * @param $datePublished date - */ - function setDatePublished($datePublished) { - return $this->setData('datePublished', $datePublished); - } - - /** - * get pages - * @return string - */ - function getPages() { - return $this->getData('pages'); - } - - /** - * set pages - * @param $pages string - */ - function setPages($pages) { - $this->setData('pages', $pages); - } -} - - diff --git a/classes/monograph/Chapter.php b/classes/monograph/Chapter.php new file mode 100644 index 00000000000..39827e827c2 --- /dev/null +++ b/classes/monograph/Chapter.php @@ -0,0 +1,386 @@ +getData('title'); + $fullTitles = []; + foreach ($titles as $locale => $title) { + if (!$title) { + continue; + } + $fullTitles[$locale] = $this->getLocalizedFullTitle($locale); + } + return $fullTitles; + } + + /** + * Get the chapter full title (with title and subtitle). + * + * @param null|mixed $preferredLocale + * + * @return string + */ + public function getLocalizedFullTitle($preferredLocale = null) + { + $title = $this->getLocalizedData('title', $preferredLocale); + $subtitle = $this->getLocalizedData('subtitle', $preferredLocale); + if ($subtitle) { + return PKPString::concatTitleFields([$title, $subtitle]); + } + return $title; + } + + /** + * Get localized title of a chapter. + */ + public function getLocalizedTitle() + { + return $this->getLocalizedData('title'); + } + + /** + * Get title of chapter (primary locale) + * + * @param string $locale + * + * @return string + */ + public function getTitle($locale = null) + { + return $this->getData('title', $locale); + } + + /** + * Set title of chapter + * + * @param string $title + * @param string $locale + */ + public function setTitle($title, $locale = null) + { + return $this->setData('title', $title, $locale); + } + + /** + * Get localized sub title of a chapter. + */ + public function getLocalizedSubtitle() + { + return $this->getLocalizedData('subtitle'); + } + + /** + * Get sub title of chapter (primary locale) + * + * @param string $locale + * + * @return string + */ + public function getSubtitle($locale = null) + { + return $this->getData('subtitle', $locale); + } + + /** + * Set sub title of chapter + * + * @param string $subtitle + * @param string $locale + */ + public function setSubtitle($subtitle, $locale = null) + { + return $this->setData('subtitle', $subtitle, $locale); + } + + /** + * Get sequence of chapter. + * + * @return float + */ + public function getSequence() + { + return $this->getData('sequence'); + } + + /** + * Set sequence of chapter. + * + * @param float $sequence + */ + public function setSequence($sequence) + { + return $this->setData('sequence', $sequence); + } + + /** + * Get all authors of this chapter. + * + * @return LazyCollection Iterator of authors + */ + public function getAuthors() + { + return Repo::author()->getCollector() + ->filterByChapterIds([$this->getId()]) + ->filterByPublicationIds([$this->getData('publicationId')]) + ->getMany(); + } + + /** + * Get the author names for this chapter and return them as a string. + * + * @param bool $preferred If the preferred public name should be used, if exist + * + * @return string + */ + public function getAuthorNamesAsString($preferred = true) + { + $authorNames = []; + $authors = $this->getAuthors(); + foreach ($authors as $author) { + $authorNames[] = $author->getFullName($preferred); + } + return join(', ', $authorNames); + } + + /** + * Get stored public ID of the chapter. + * + * @param string $pubIdType @literal string One of the NLM pub-id-type values or + * 'other::something' if not part of the official NLM list + * (see ). @endliteral + * + * @return string + */ + public function getStoredPubId($pubIdType) + { + if ($pubIdType == 'doi') { + return $this->getDoi(); + } else { + return $this->getData('pub-id::' . $pubIdType); + } + } + + /** + * Set the stored public ID of the chapter. + * + * @param string $pubIdType One of the NLM pub-id-type values or + * 'other::something' if not part of the official NLM list + * (see ). + * @param string $pubId + */ + public function setStoredPubId($pubIdType, $pubId) + { + if ($pubIdType == 'doi') { + if ($doiObject = $this->getData('doiObject')) { + Repo::doi()->edit($doiObject, ['doi' => $pubId]); + } else { + $publication = Repo::publication()->get($this->getData('publicationId')); + $submission = Repo::submission()->get($publication->getId()); + $contextId = $submission->getData('contextId'); + + $newDoiObject = Repo::doi()->newDataObject( + [ + 'doi' => $pubId, + 'contextId' => $contextId + ] + ); + $doiId = Repo::doi()->add($newDoiObject); + $this->setData('doiId', $doiId); + } + } else { + $this->setData('pub-id::' . $pubIdType, $pubId); + } + } + + /** + * @copydoc DataObject::getDAO() + */ + public function getDAO() + { + return DAORegistry::getDAO('ChapterDAO'); + } + + /** + * Get abstract of chapter (primary locale) + * + * @param string $locale + * + * @return string + */ + public function getAbstract($locale = null) + { + return $this->getData('abstract', $locale); + } + + /** + * Set abstract of chapter + * + * @param string $abstract + * @param string $locale + */ + public function setAbstract($abstract, $locale = null) + { + return $this->setData('abstract', $abstract, $locale); + } + /** + * Get localized abstract of a chapter. + */ + public function getLocalizedAbstract() + { + return $this->getLocalizedData('abstract'); + } + + /** + * get date published + * + * @return string + */ + public function getDatePublished() + { + return $this->getData('datePublished'); + } + + /** + * set date published + * + * @param string $datePublished + */ + public function setDatePublished($datePublished) + { + return $this->setData('datePublished', $datePublished); + } + + /** + * get pages + * + * @return string + */ + public function getPages() + { + return $this->getData('pages'); + } + + /** + * set pages + * + * @param string $pages + */ + public function setPages($pages) + { + $this->setData('pages', $pages); + } + + /** + * Get source chapter id of chapter. + * + * @return null|int + */ + public function getSourceChapterId() + { + if (!$this->getData('sourceChapterId')) { + $this->setSourceChapterId($this->getId()); + } + return $this->getData('sourceChapterId'); + } + + /** + * Set source chapter id of chapter. + * + */ + public function setSourceChapterId(?int $sourceChapterId): void + { + $this->setData('sourceChapterId', $sourceChapterId); + } + + /** + * Is a landing page enabled or disabled. + * + * @return null|int + */ + public function isPageEnabled() + { + return $this->getData('isPageEnabled'); + } + + /** + * Enable or disable a landing page. + * + */ + public function setPageEnabled(?int $enable): void + { + $this->setData('isPageEnabled', $enable); + } + + /** + * Returns current DOI + * + */ + public function getDoi(): ?string + { + $doiObject = $this->getData('doiObject'); + + if (empty($doiObject)) { + return null; + } else { + return $doiObject->getData('doi'); + } + } + + /** + * get license url + * + * @return null|string + */ + public function getLicenseUrl() + { + return $this->getData('licenseUrl'); + } + + /** + * set license url + * + */ + public function setLicenseUrl(?string $licenseUrl): void + { + $this->setData('licenseUrl', $licenseUrl); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\monograph\Chapter', '\Chapter'); +} diff --git a/classes/monograph/ChapterAuthor.inc.php b/classes/monograph/ChapterAuthor.inc.php deleted file mode 100644 index 87b8d98da14..00000000000 --- a/classes/monograph/ChapterAuthor.inc.php +++ /dev/null @@ -1,42 +0,0 @@ -getData('chapterId'); - } - - /** - * Set ID of chapter. - * @param $chapterId int - */ - function setChapterId($chapterId) { - return $this->setData('chapterId', $chapterId); - } -} - - diff --git a/classes/monograph/ChapterAuthorDAO.inc.php b/classes/monograph/ChapterAuthorDAO.inc.php deleted file mode 100644 index 02e334744ee..00000000000 --- a/classes/monograph/ChapterAuthorDAO.inc.php +++ /dev/null @@ -1,164 +0,0 @@ -retrieve( - 'SELECT a.*, - sca.chapter_id, - sca.primary_contact, - sca.seq, - ug.show_title, - s.locale AS submission_locale - FROM authors a - JOIN publications p ON (p.publication_id = a.publication_id) - JOIN submissions s ON (s.submission_id = p.submission_id) - JOIN submission_chapter_authors sca ON (a.author_id = sca.author_id) - JOIN user_groups ug ON (a.user_group_id = ug.user_group_id)' . - ( (count($params) > 0) ? ' WHERE' : '' ) . - ( isset($publicationId) ? ' a.publication_id = ?' : '' ) . - ( (isset($publicationId) && isset($chapterId)) ? ' AND' : '' ) . - ( isset($chapterId) ? ' sca.chapter_id = ?' : '' ) . - ' ORDER BY sca.chapter_id, sca.seq', - $params - ), - $this, - '_fromRow', - ['id'] - ); - } - - /** - * Get all authors IDs for a given chapter. - * @param $chapterId int - * @return array - */ - function getAuthorIdsByChapterId($chapterId) { - $result = $this->retrieve( - 'SELECT author_id - FROM submission_chapter_authors - WHERE chapter_id = ?', - [(int) $chapterId] - ); - $authorIds = []; - foreach ($result as $row) $authorIds[] = $row->author_id; - return $authorIds; - } - - /** - * Add an author to a chapter. - * @param $chapterId int - * @param $monographId int - * @return array - */ - function insertChapterAuthor($authorId, $chapterId, $isPrimary = false, $sequence = 0) { - //FIXME: How to handle sequence? - $this->update( - 'INSERT INTO submission_chapter_authors - (author_id, chapter_id, primary_contact, seq) - VALUES - (?, ?, ?, ?)', - [ - (int) $authorId, - (int) $chapterId, - (int) $isPrimary, - (int) $sequence - ] - ); - } - - /** - * Remove an author from a chapter - * @param $chapterId int - */ - function deleteChapterAuthorById($authorId, $chapterId = null) { - $params = [(int) $authorId]; - if ($chapterId) $params[] = (int) $chapterId; - - $this->update( - 'DELETE FROM submission_chapter_authors WHERE author_id = ?' . - ($chapterId?' AND chapter_id = ?':''), - $params - ); - } - - /** - * Remove all authors from a chapter - * @param $chapterId int - */ - function deleteChapterAuthorsByChapterId($chapterId) { - $this->update( - 'DELETE FROM submission_chapter_authors WHERE chapter_id = ?', - [(int) $chapterId] - ); - } - - /** - * Construct and return a new data object. - * @return ChapterAuthor - */ - function newDataObject() { - return new ChapterAuthor(); - } - - /** - * Internal function to return an Author object from a row. - * @param $row array - * @return Author - */ - function _fromRow($row) { - // Start with an Author object and copy the common elements - $authorDao = DAORegistry::getDAO('AuthorDAO'); /* @var $authorDao AuthorDAO */ - $author = $authorDao->_fromRow($row); - - $chapterAuthor = $this->newDataObject(); - $chapterAuthor->setId((int) $author->getId()); - $chapterAuthor->setGivenName($author->getGivenName(null), null); - $chapterAuthor->setFamilyName($author->getFamilyName(null), null); - $chapterAuthor->setAffiliation($author->getAffiliation(null), null); - $chapterAuthor->setCountry($author->getCountry()); - $chapterAuthor->setEmail($author->getEmail()); - $chapterAuthor->setUrl($author->getUrl()); - $chapterAuthor->setUserGroupId($author->getUserGroupId()); - - // Add additional data that is chapter author specific - $chapterAuthor->setPrimaryContact($row['primary_contact']); - $chapterAuthor->setSequence((int) $row['seq']); ; - $chapterAuthor->setChapterId((int) $row['chapter_id']); - - return $chapterAuthor; - } -} - - diff --git a/classes/monograph/ChapterDAO.inc.php b/classes/monograph/ChapterDAO.inc.php deleted file mode 100644 index d1b428f6598..00000000000 --- a/classes/monograph/ChapterDAO.inc.php +++ /dev/null @@ -1,306 +0,0 @@ -retrieve( - 'SELECT * FROM submission_chapters WHERE chapter_id = ?' - . ($publicationId !== null?' AND publication_id = ? ':''), - $params - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Retrieve all chapters of a publication. - * @param $publicationId int - * @param $orderBySequence boolean - * @return DAOResultFactory - */ - function getByPublicationId($publicationId, $orderBySequence = true) { - return new DAOResultFactory( - $this->retrieve( - 'SELECT spc.* - FROM submission_chapters spc - INNER JOIN publications p ON (spc.publication_id = p.publication_id) - WHERE p.publication_id = ?' - . ($orderBySequence ? ' ORDER BY spc.seq ASC' : ''), - [(int) $publicationId] - ), - $this, - '_fromRow' - ); - } - - /** - * Retrieve all chapters of a press. - * @param $pressId int - * @return DAOResultFactory - */ - function getByContextId($pressId) { - return new DAOResultFactory( - $this->retrieve( - 'SELECT spc.* - FROM submission_chapters spc - INNER JOIN publications p ON (spc.publication_id = p.publication_id) - INNER JOIN submissions s ON (p.submission_id = s.submission_id) - WHERE s.context_id = ?', - [(int) $pressId] - ), - $this, - '_fromRow' - ); - } - - /** - * Get the list of fields for which locale data is stored. - * @return array - */ - function getLocaleFieldNames() { - return ['title', 'subtitle','abstract']; - } - - /** - * Get a list of additional fields that do not have - * dedicated accessors. - * @return array - */ - function getAdditionalFieldNames() { - $additionalFields = parent::getAdditionalFieldNames(); - // FIXME: Move this to a PID plug-in. - $additionalFields[] = 'pub-id::publisher-id'; - $additionalFields[] = 'datePublished'; - $additionalFields[] = 'pages'; - return $additionalFields; - } - - /** - * Get a new data object - * @return Chapter - */ - function newDataObject() { - return new Chapter(); - } - - /** - * Internal function to return a Chapter object from a row. - * @param $row array - * @return Chapter - */ - function _fromRow($row) { - $chapter = $this->newDataObject(); - $chapter->setId((int) $row['chapter_id']); - $chapter->setData('publicationId', (int) $row['publication_id']); - $chapter->setSequence((int) $row['seq']); - - $this->getDataObjectSettings('submission_chapter_settings', 'chapter_id', $row['chapter_id'], $chapter); - - HookRegistry::call('ChapterDAO::_fromRow', array(&$chapter, &$row)); - - return $chapter; - } - - /** - * Update the settings for this object - * @param $chapter object - */ - function updateLocaleFields($chapter) { - $this->updateDataObjectSettings( - 'submission_chapter_settings', - $chapter, - ['chapter_id' => $chapter->getId()] - ); - } - - /** - * Insert a new board chapter. - * @param $chapter Chapter - */ - function insertChapter($chapter) { - $this->update( - 'INSERT INTO submission_chapters - (publication_id, seq) - VALUES - (?, ?)', - [ - (int) $chapter->getData('publicationId'), - (int) $chapter->getSequence(), - ] - ); - - $chapter->setId($this->getInsertId()); - $this->updateLocaleFields($chapter); - return $chapter->getId(); - } - - /** - * Update an existing board chapter. - * @param $chapter Chapter - */ - function updateObject($chapter) { - $this->update( - 'UPDATE submission_chapters - SET publication_id = ?, - seq = ? - WHERE - chapter_id = ?', - [ - (int) $chapter->getData('publicationId'), - (int) $chapter->getSequence(), - (int) $chapter->getId() - ] - ); - $this->updateLocaleFields($chapter); - } - - /** - * Delete a board chapter, including membership info - * @param $chapter Chapter - */ - function deleteObject($chapter) { - $this->deleteById($chapter->getId()); - } - - /** - * Delete a board chapter, including membership info - * @param $chapterId int - */ - function deleteById($chapterId) { - $this->update('DELETE FROM submission_chapter_authors WHERE chapter_id = ?', [(int) $chapterId]); - $this->update('DELETE FROM submission_chapter_settings WHERE chapter_id = ?', [(int) $chapterId]); - $this->update('DELETE FROM submission_chapters WHERE chapter_id = ?', [(int) $chapterId]); - $this->update('DELETE FROM submission_file_settings WHERE setting_name = ? AND setting_value = ?', ['chapterId', (int) $chapterId]); - } - - /** - * Sequentially renumber chapters in their sequence order, optionally by monographId - * @param $publicationId int - */ - function resequenceChapters($publicationId) { - $params = []; - if ($publicationId !== null) $params[] = (int) $publicationId; - - $result = $this->retrieve( - 'SELECT chapter_id FROM submission_chapters - WHERE 1=1' - . ($publicationId !== null ? ' AND publication_id = ?':'') - . ' ORDER BY seq', - $params - ); - - $i=0; - foreach ($result as $row) { - $this->update( - 'UPDATE submission_chapters SET seq = ? WHERE chapter_id = ?', - [++$i, $row->chapter_id] - ); - } - } - - /** - * Get the ID of the last inserted board chapter. - * @return int - */ - function getInsertId() { - return $this->_getInsertId('submission_chapters', 'chapter_id'); - } - - /** - * @copydoc PKPPubIdPluginDAO::pubIdExists() - */ - function pubIdExists($pubIdType, $pubId, $excludePubObjectId, $contextId) { - $result = $this->retrieve( - 'SELECT COUNT(*) AS row_count - FROM submission_chapter_settings scs - INNER JOIN submission_chapters sc ON scs.chapter_id = sc.chapter_id - INNER JOIN publications p ON sc.publication_id = p.publication_id - INNER JOIN submissions s ON p.submission_id = s.submission_id - WHERE scs.setting_name = ? - AND scs.setting_value = ? - AND sc.chapter_id <> ? - AND s.context_id = ?', - [ - 'pub-id::' . $pubIdType, - $pubId, - (int) $excludePubObjectId, - (int) $contextId - ] - ); - $row = $result->current(); - return $row ? (boolean) $row->row_count : false; - } - - /** - * @copydoc PKPPubIdPluginDAO::changePubId() - */ - function changePubId($pubObjectId, $pubIdType, $pubId) { - $this->replace( - 'submission_chapter_settings', - [ - 'chapter_id' => (int) $pubObjectId, - 'locale' => '', - 'setting_name' => 'pub-id::' . $pubIdType, - 'setting_type' => 'string', - 'setting_value' => (string) $pubId - ], - ['chapter_id', 'locale', 'setting_name'] - ); - } - - /** - * @copydoc PKPPubIdPluginDAO::deletePubId() - */ - function deletePubId($pubObjectId, $pubIdType) { - $this->update( - 'DELETE FROM submission_chapter_settings WHERE setting_name = ? AND chapter_id = ?', - [ - 'pub-id::' . $pubIdType, - (int) $pubObjectId - ] - ); - $this->flushCache(); - } - - /** - * @copydoc PKPPubIdPluginDAO::deleteAllPubIds() - */ - function deleteAllPubIds($contextId, $pubIdType) { - $chapters = $this->getByContextId($contextId); - while ($chapter = $chapters->next()) { - $this->update( - 'DELETE FROM submission_chapter_settings WHERE setting_name = ? AND chapter_id = ?', - [ - 'pub-id::' . $pubIdType, - (int) $chapter->getId() - ] - ); - } - $this->flushCache(); - } -} diff --git a/classes/monograph/ChapterDAO.php b/classes/monograph/ChapterDAO.php new file mode 100644 index 00000000000..87e87e235e0 --- /dev/null +++ b/classes/monograph/ChapterDAO.php @@ -0,0 +1,414 @@ +retrieve( + 'SELECT * FROM submission_chapters WHERE chapter_id = ?' + . ($publicationId !== null ? ' AND publication_id = ? ' : ''), + $params + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Retrieve all chapters of a publication. + * + * @param int $publicationId + * @param bool $orderBySequence + * + * @return DAOResultFactory + */ + public function getByPublicationId($publicationId, $orderBySequence = true) + { + return new DAOResultFactory( + $this->retrieve( + 'SELECT spc.* + FROM submission_chapters spc + INNER JOIN publications p ON (spc.publication_id = p.publication_id) + WHERE p.publication_id = ?' + . ($orderBySequence ? ' ORDER BY spc.seq ASC' : ''), + [(int) $publicationId] + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve all chapters of a press. + * + * @param int $pressId + * + * @return DAOResultFactory + */ + public function getByContextId($pressId) + { + return new DAOResultFactory( + $this->retrieve( + 'SELECT spc.* + FROM submission_chapters spc + INNER JOIN publications p ON (spc.publication_id = p.publication_id) + INNER JOIN submissions s ON (p.submission_id = s.submission_id) + WHERE s.context_id = ?', + [(int) $pressId] + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve all chapters that include a given DOI ID + * + * @return DAOResultFactory + */ + public function getByDoiId(int $doiId): DAOResultFactory + { + return new DAOResultFactory( + $this->retrieve( + 'SELECT spc.* + FROM submission_chapters spc + WHERE spc.doi_id = ?', + [$doiId] + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve all chapters by source chapter id. + * + * @return DAOResultFactory + */ + public function getBySourceChapterId(int $sourceChapterId, bool $orderByPublicationId = true): DAOResultFactory + { + return new DAOResultFactory( + $this->retrieve( + 'SELECT * + FROM submission_chapters + WHERE source_chapter_id = ? + OR (source_chapter_id IS NULL AND chapter_id = ?)' + . ($orderByPublicationId ? ' ORDER BY publication_id ASC' : ''), + [$sourceChapterId, $sourceChapterId] + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve a chapter by source chapter ID and publication ID. + */ + public function getBySourceChapterAndPublication(int $sourceChapterId, int $publicationId): Chapter|null + { + $result = $this->retrieve( + 'SELECT * + FROM submission_chapters + WHERE (source_chapter_id = ? OR (source_chapter_id IS NULL AND chapter_id = ?)) + AND publication_id = ?', + [$sourceChapterId, $sourceChapterId, $publicationId] + ); + + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Get the list of fields for which locale data is stored. + * + * @return array + */ + public function getLocaleFieldNames() + { + $localFieldNames = parent::getLocaleFieldNames(); + $localFieldNames[] = 'title'; + $localFieldNames[] = 'subtitle'; + $localFieldNames[] = 'abstract'; + + return $localFieldNames; + } + + /** + * Get a list of additional fields that do not have + * dedicated accessors. + * + * @return array + */ + public function getAdditionalFieldNames() + { + $additionalFields = parent::getAdditionalFieldNames(); + // FIXME: Move this to a PID plug-in. + $additionalFields[] = 'pub-id::publisher-id'; + $additionalFields[] = 'datePublished'; + $additionalFields[] = 'pages'; + $additionalFields[] = 'isPageEnabled'; + $additionalFields[] = 'licenseUrl'; + return $additionalFields; + } + + /** + * Get a new data object + * + * @return Chapter + */ + public function newDataObject() + { + return new Chapter(); + } + + /** + * Internal function to return a Chapter object from a row. + * + * @param array $row + * + * @return Chapter + */ + public function _fromRow($row) + { + $chapter = $this->newDataObject(); + $chapter->setId((int) $row['chapter_id']); + $chapter->setData('publicationId', (int) $row['publication_id']); + $chapter->setSequence((int) $row['seq']); + $chapter->setData('sourceChapterId', (int) ($row['source_chapter_id'] ?? $row['chapter_id'])); + $chapter->setData('doiId', $row['doi_id']); + + if (!empty($chapter->getData('doiId'))) { + $chapter->setData('doiObject', Repo::doi()->get($chapter->getData('doiId'))); + } else { + $chapter->setData('doiObject', null); + } + + $this->getDataObjectSettings('submission_chapter_settings', 'chapter_id', $row['chapter_id'], $chapter); + + Hook::call('ChapterDAO::_fromRow', [&$chapter, &$row]); + + return $chapter; + } + + /** + * Update the settings for this object + * + * @param object $chapter + */ + public function updateLocaleFields($chapter) + { + $this->updateDataObjectSettings( + 'submission_chapter_settings', + $chapter, + ['chapter_id' => $chapter->getId()] + ); + } + + /** + * Insert a new board chapter. + * + * @param Chapter $chapter + */ + public function insertChapter($chapter) + { + $params = [ + (int) $chapter->getData('publicationId'), + (int) $chapter->getSequence(), + $chapter->getSourceChapterId(), + ]; + $query = 'INSERT INTO submission_chapters (publication_id, seq, source_chapter_id) VALUES (?, ?, ?)'; + + $this->update($query, $params); + $chapter->setId($this->getInsertId()); + $this->updateObject($chapter); + return $chapter->getId(); + } + + /** + * Update an existing board chapter. + * + * @param Chapter $chapter + */ + public function updateObject($chapter): void + { + $this->update( + 'UPDATE submission_chapters + SET publication_id = ?, + seq = ?, + source_chapter_id = ?, + doi_id = ? + WHERE + chapter_id = ?', + [ + (int) $chapter->getData('publicationId'), + (int) $chapter->getSequence(), + $chapter->getSourceChapterId(), + $chapter->getData('doiId'), + (int) $chapter->getId() + ] + ); + $this->updateLocaleFields($chapter); + } + + /** + * Delete a board chapter, including membership info + * + * @param Chapter $chapter + */ + public function deleteObject($chapter) + { + $this->deleteById($chapter->getId()); + } + + /** + * Delete a board chapter, including membership info + * + * @param int $chapterId + */ + public function deleteById($chapterId) + { + $this->update('DELETE FROM submission_chapter_authors WHERE chapter_id = ?', [(int) $chapterId]); + $this->update('DELETE FROM submission_chapter_settings WHERE chapter_id = ?', [(int) $chapterId]); + $this->update('DELETE FROM submission_chapters WHERE chapter_id = ?', [(int) $chapterId]); + $this->update('DELETE FROM submission_file_settings WHERE setting_name = ? AND setting_value = ?', ['chapterId', (int) $chapterId]); + } + + /** + * Sequentially renumber chapters in their sequence order, optionally by monographId + * + * @param int $publicationId + */ + public function resequenceChapters($publicationId) + { + $params = []; + if ($publicationId !== null) { + $params[] = (int) $publicationId; + } + + $result = $this->retrieve( + 'SELECT chapter_id FROM submission_chapters + WHERE 1=1' + . ($publicationId !== null ? ' AND publication_id = ?' : '') + . ' ORDER BY seq', + $params + ); + + $i = 0; + foreach ($result as $row) { + $this->update( + 'UPDATE submission_chapters SET seq = ? WHERE chapter_id = ?', + [++$i, $row->chapter_id] + ); + } + } + + /** + * @copydoc PKPPubIdPluginDAO::pubIdExists() + */ + public function pubIdExists($pubIdType, $pubId, $excludePubObjectId, $contextId) + { + $result = $this->retrieve( + 'SELECT COUNT(*) AS row_count + FROM submission_chapter_settings scs + INNER JOIN submission_chapters sc ON scs.chapter_id = sc.chapter_id + INNER JOIN publications p ON sc.publication_id = p.publication_id + INNER JOIN submissions s ON p.submission_id = s.submission_id + WHERE scs.setting_name = ? + AND scs.setting_value = ? + AND sc.chapter_id <> ? + AND s.context_id = ?', + [ + 'pub-id::' . $pubIdType, + $pubId, + (int) $excludePubObjectId, + (int) $contextId + ] + ); + $row = $result->current(); + return $row ? (bool) $row->row_count : false; + } + + /** + * @copydoc PKPPubIdPluginDAO::changePubId() + */ + public function changePubId($pubObjectId, $pubIdType, $pubId) + { + DB::table('submission_chapter_settings')->updateOrInsert( + ['chapter_id' => (int) $pubObjectId, 'locale' => '', 'setting_name' => 'pub-id::' . $pubIdType], + ['setting_type' => 'string', 'setting_value' => (string) $pubId] + ); + } + + /** + * @copydoc PKPPubIdPluginDAO::deletePubId() + */ + public function deletePubId($pubObjectId, $pubIdType) + { + $this->update( + 'DELETE FROM submission_chapter_settings WHERE setting_name = ? AND chapter_id = ?', + [ + 'pub-id::' . $pubIdType, + (int) $pubObjectId + ] + ); + $this->flushCache(); + } + + /** + * @copydoc PKPPubIdPluginDAO::deleteAllPubIds() + */ + public function deleteAllPubIds($contextId, $pubIdType) + { + $chapters = $this->getByContextId($contextId); + while ($chapter = $chapters->next()) { + $this->update( + 'DELETE FROM submission_chapter_settings WHERE setting_name = ? AND chapter_id = ?', + [ + 'pub-id::' . $pubIdType, + (int) $chapter->getId() + ] + ); + } + $this->flushCache(); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\monograph\ChapterDAO', '\ChapterDAO'); +} diff --git a/classes/monograph/Representative.inc.php b/classes/monograph/Representative.inc.php deleted file mode 100644 index ca56cce7bad..00000000000 --- a/classes/monograph/Representative.inc.php +++ /dev/null @@ -1,177 +0,0 @@ -getData('monographId'); - } - - /** - * set monograph id. - * @param $monographId int - */ - function setMonographId($monographId) { - return $this->setData('monographId', $monographId); - } - - /** - * Set the ONIX code for this representative role (List93 for Suppliers, List69 for Agents) - * @param $type string - */ - function setRole($role) { - $this->setData('role', $role); - } - - /** - * Get the ONIX code for this representative role. - * @return string - */ - function getRole() { - return $this->getData('role'); - } - - /** - * Get the human readable name for this ONIX code - * @return string - */ - function getNameForONIXCode() { - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - if ($this->getIsSupplier()) { - $listName = 'List93'; // List93 -> Publisher to retailers, Wholesaler, etc - } else { - $listName = 'List69'; // List93 -> Local Publisher, Sales Agent, etc - } - $codes =& $onixCodelistItemDao->getCodes($listName); - return $codes[$this->getRole()]; - } - - /** - * Set the ONIX code for this representative's ID type (List92) (GLN, SAN, etc). GLN is the recommended one. - * @param $representativeIdType string - */ - function setRepresentativeIdType($representativeIdType) { - $this->setData('representativeIdType', $representativeIdType); - } - - /** - * Get the representative ID type (ONIX Code). - * @return string - */ - function getRepresentativeIdType() { - return $this->getData('representativeIdType'); - } - - /** - * Set this representative's ID value. - * @param $representativeIdValue string - */ - function setRepresentativeIdValue($representativeIdValue) { - $this->setData('representativeIdValue', $representativeIdValue); - } - - /** - * Get the representative ID value. - * @return string - */ - function getRepresentativeIdValue() { - return $this->getData('representativeIdValue'); - } - - /** - * Get the representative name. - * @return string - */ - function getName() { - return $this->getData('name'); - } - - /** - * Set the representative name. - * @param string $name - */ - function setName($name) { - $this->setData('name', $name); - } - - /** - * Get the representative phone. - * @return string - */ - function getPhone() { - return $this->getData('phone'); - } - - /** - * Set the representative phone. - * @param string $phone - */ - function setPhone($phone) { - $this->setData('phone', $phone); - } - - /** - * Get the representative email address. - * @return string - */ - function getEmail() { - return $this->getData('email'); - } - - /** - * Set the representative email address. - * @param string $email - */ - function setEmail($email) { - $this->setData('email', $email); - } - - /** - * Get the representative's url. - * @return string - */ - function getUrl() { - return $this->getData('url'); - } - - /** - * Set the representative url. - * @param string $url - */ - function setUrl($url) { - $this->setData('url', $url); - } - - /** - * Get the representative's is_supplier setting. - * @return int - */ - function getIsSupplier() { - return $this->getData('isSupplier'); - } - - /** - * Set the representative's is_supplier setting. - * @param int $isSupplier - */ - function setIsSupplier($isSupplier) { - $this->setData('isSupplier', $isSupplier); - } -} - diff --git a/classes/monograph/Representative.php b/classes/monograph/Representative.php new file mode 100644 index 00000000000..8991930e9d0 --- /dev/null +++ b/classes/monograph/Representative.php @@ -0,0 +1,224 @@ +getData('monographId'); + } + + /** + * set monograph id. + * + * @param int $monographId + */ + public function setMonographId($monographId) + { + return $this->setData('monographId', $monographId); + } + + /** + * Set the ONIX code for this representative role (List93 for Suppliers, List69 for Agents) + */ + public function setRole($role) + { + $this->setData('role', $role); + } + + /** + * Get the ONIX code for this representative role. + * + * @return string + */ + public function getRole() + { + return $this->getData('role'); + } + + /** + * Get the human readable name for this ONIX code + * + * @return string + */ + public function getNameForONIXCode() + { + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + if ($this->getIsSupplier()) { + $listName = 'List93'; // List93 -> Publisher to retailers, Wholesaler, etc + } else { + $listName = 'List69'; // List93 -> Local Publisher, Sales Agent, etc + } + $codes = & $onixCodelistItemDao->getCodes($listName); + return $codes[$this->getRole()]; + } + + /** + * Set the ONIX code for this representative's ID type (List92) (GLN, SAN, etc). GLN is the recommended one. + * + * @param string $representativeIdType + */ + public function setRepresentativeIdType($representativeIdType) + { + $this->setData('representativeIdType', $representativeIdType); + } + + /** + * Get the representative ID type (ONIX Code). + * + * @return string + */ + public function getRepresentativeIdType() + { + return $this->getData('representativeIdType'); + } + + /** + * Set this representative's ID value. + * + * @param string $representativeIdValue + */ + public function setRepresentativeIdValue($representativeIdValue) + { + $this->setData('representativeIdValue', $representativeIdValue); + } + + /** + * Get the representative ID value. + * + * @return string + */ + public function getRepresentativeIdValue() + { + return $this->getData('representativeIdValue'); + } + + /** + * Get the representative name. + * + * @return string + */ + public function getName() + { + return $this->getData('name'); + } + + /** + * Set the representative name. + * + * @param string $name + */ + public function setName($name) + { + $this->setData('name', $name); + } + + /** + * Get the representative phone. + * + * @return string + */ + public function getPhone() + { + return $this->getData('phone'); + } + + /** + * Set the representative phone. + * + * @param string $phone + */ + public function setPhone($phone) + { + $this->setData('phone', $phone); + } + + /** + * Get the representative email address. + * + * @return string + */ + public function getEmail() + { + return $this->getData('email'); + } + + /** + * Set the representative email address. + * + * @param string $email + */ + public function setEmail($email) + { + $this->setData('email', $email); + } + + /** + * Get the representative's url. + * + * @return string + */ + public function getUrl() + { + return $this->getData('url'); + } + + /** + * Set the representative url. + * + * @param string $url + */ + public function setUrl($url) + { + $this->setData('url', $url); + } + + /** + * Get the representative's is_supplier setting. + * + * @return int + */ + public function getIsSupplier() + { + return $this->getData('isSupplier'); + } + + /** + * Set the representative's is_supplier setting. + * + * @param int $isSupplier + */ + public function setIsSupplier($isSupplier) + { + $this->setData('isSupplier', $isSupplier); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\monograph\Representative', '\Representative'); +} diff --git a/classes/monograph/RepresentativeDAO.inc.php b/classes/monograph/RepresentativeDAO.inc.php deleted file mode 100644 index 23a59586070..00000000000 --- a/classes/monograph/RepresentativeDAO.inc.php +++ /dev/null @@ -1,190 +0,0 @@ -retrieve( - 'SELECT r.* - FROM representatives r - JOIN submissions s ON (r.submission_id = s.submission_id) - WHERE r.representative_id = ? - ' . ($monographId?' AND s.submission_id = ?':''), - $params - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Retrieve all supplier representatives for a monograph. - * @param $monographId int - * @return DAOResultFactory containing matching representatives. - */ - function getSuppliersByMonographId($monographId) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT * FROM representatives WHERE submission_id = ? AND is_supplier = ?', - [(int) $monographId, 1] - ), - $this, - '_fromRow' - ); - } - - /** - * Retrieve all agent representatives for a monograph. - * @param $monographId int - * @return DAOResultFactory containing matching representatives. - */ - function getAgentsByMonographId($monographId) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT * FROM representatives WHERE submission_id = ? AND is_supplier = ?', - [(int) $monographId, 0] - ), - $this, - '_fromRow' - ); - } - - /** - * Construct a new data object corresponding to this DAO. - * @return Representative - */ - function newDataObject() { - return new Representative(); - } - - /** - * Internal function to return a Representative object from a row. - * @param $row array - * @param $callHooks boolean - * @return Representative - */ - function _fromRow($row, $callHooks = true) { - $representative = $this->newDataObject(); - $representative->setId($row['representative_id']); - $representative->setRole($row['role']); - $representative->setRepresentativeIdType($row['representative_id_type']); - $representative->setRepresentativeIdValue($row['representative_id_value']); - $representative->setName($row['name']); - $representative->setPhone($row['phone']); - $representative->setEmail($row['email']); - $representative->setUrl($row['url']); - $representative->setIsSupplier($row['is_supplier']); - $representative->setMonographId($row['submission_id']); - - if ($callHooks) HookRegistry::call('RepresentativeDAO::_fromRow', array(&$representative, &$row)); - - return $representative; - } - - /** - * Insert a new representative entry. - * @param $representative Representative - */ - function insertObject($representative) { - $this->update( - 'INSERT INTO representatives - (submission_id, role, representative_id_type, representative_id_value, name, phone, email, url, is_supplier) - VALUES - (?, ?, ?, ?, ?, ?, ?, ?, ?)', - [ - (int) $representative->getMonographId(), - $representative->getRole(), - $representative->getRepresentativeIdType(), - $representative->getRepresentativeIdValue(), - $representative->getName(), - $representative->getPhone(), - $representative->getEmail(), - $representative->getUrl(), - (int) $representative->getIsSupplier() - ] - ); - - $representative->setId($this->getInsertId()); - return $representative->getId(); - } - - /** - * Update an existing representative entry. - * @param $representative Representative - */ - function updateObject($representative) { - $this->update( - 'UPDATE representatives - SET role = ?, - representative_id_type = ?, - representative_id_value = ?, - name = ?, - phone = ?, - email = ?, - url = ?, - is_supplier = ? - WHERE representative_id = ?', - [ - $representative->getRole(), - $representative->getRepresentativeIdType(), - $representative->getRepresentativeIdValue(), - $representative->getName(), - $representative->getPhone(), - $representative->getEmail(), - $representative->getUrl(), - (int) $representative->getIsSupplier(), - (int) $representative->getId() - ] - ); - } - - /** - * Delete a representative entry by object. - * @param $representative Representative - */ - function deleteObject($representative) { - return $this->deleteById($representative->getId()); - } - - /** - * delete a representative entry by id. - * @param $entryId int - */ - function deleteById($entryId) { - return $this->update( - 'DELETE FROM representatives WHERE representative_id = ?', [(int) $entryId] - ); - } - - /** - * Get the ID of the last inserted representative entry. - * @return int - */ - function getInsertId() { - return $this->_getInsertId('representatives', 'representative_id'); - } -} - - diff --git a/classes/monograph/RepresentativeDAO.php b/classes/monograph/RepresentativeDAO.php new file mode 100644 index 00000000000..4ad4ff1fd6d --- /dev/null +++ b/classes/monograph/RepresentativeDAO.php @@ -0,0 +1,217 @@ +retrieve( + 'SELECT r.* + FROM representatives r + JOIN submissions s ON (r.submission_id = s.submission_id) + WHERE r.representative_id = ? + ' . ($monographId ? ' AND s.submission_id = ?' : ''), + $params + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Retrieve all supplier representatives for a monograph. + * + * @param int $monographId + * + * @return DAOResultFactory containing matching representatives. + */ + public function getSuppliersByMonographId($monographId) + { + return new DAOResultFactory( + $this->retrieveRange( + 'SELECT * FROM representatives WHERE submission_id = ? AND is_supplier = ?', + [(int) $monographId, 1] + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve all agent representatives for a monograph. + * + * @param int $monographId + * + * @return DAOResultFactory containing matching representatives. + */ + public function getAgentsByMonographId($monographId) + { + return new DAOResultFactory( + $this->retrieveRange( + 'SELECT * FROM representatives WHERE submission_id = ? AND is_supplier = ?', + [(int) $monographId, 0] + ), + $this, + '_fromRow' + ); + } + + /** + * Construct a new data object corresponding to this DAO. + * + * @return Representative + */ + public function newDataObject() + { + return new Representative(); + } + + /** + * Internal function to return a Representative object from a row. + * + * @param array $row + * @param bool $callHooks + * + * @return Representative + */ + public function _fromRow($row, $callHooks = true) + { + $representative = $this->newDataObject(); + $representative->setId($row['representative_id']); + $representative->setRole($row['role']); + $representative->setRepresentativeIdType($row['representative_id_type']); + $representative->setRepresentativeIdValue($row['representative_id_value']); + $representative->setName($row['name']); + $representative->setPhone($row['phone']); + $representative->setEmail($row['email']); + $representative->setUrl($row['url']); + $representative->setIsSupplier($row['is_supplier']); + $representative->setMonographId($row['submission_id']); + + if ($callHooks) { + Hook::call('RepresentativeDAO::_fromRow', [&$representative, &$row]); + } + + return $representative; + } + + /** + * Insert a new representative entry. + * + * @param Representative $representative + */ + public function insertObject($representative) + { + $this->update( + 'INSERT INTO representatives + (submission_id, role, representative_id_type, representative_id_value, name, phone, email, url, is_supplier) + VALUES + (?, ?, ?, ?, ?, ?, ?, ?, ?)', + [ + (int) $representative->getMonographId(), + $representative->getRole(), + $representative->getRepresentativeIdType(), + $representative->getRepresentativeIdValue(), + $representative->getName(), + $representative->getPhone(), + $representative->getEmail(), + $representative->getUrl(), + (int) $representative->getIsSupplier() + ] + ); + + $representative->setId($this->getInsertId()); + return $representative->getId(); + } + + /** + * Update an existing representative entry. + * + * @param Representative $representative + */ + public function updateObject($representative) + { + $this->update( + 'UPDATE representatives + SET role = ?, + representative_id_type = ?, + representative_id_value = ?, + name = ?, + phone = ?, + email = ?, + url = ?, + is_supplier = ? + WHERE representative_id = ?', + [ + $representative->getRole(), + $representative->getRepresentativeIdType(), + $representative->getRepresentativeIdValue(), + $representative->getName(), + $representative->getPhone(), + $representative->getEmail(), + $representative->getUrl(), + (int) $representative->getIsSupplier(), + (int) $representative->getId() + ] + ); + } + + /** + * Delete a representative entry by object. + * + * @param Representative $representative + */ + public function deleteObject($representative) + { + return $this->deleteById($representative->getId()); + } + + /** + * delete a representative entry by id. + * + * @param int $entryId + */ + public function deleteById($entryId) + { + return $this->update( + 'DELETE FROM representatives WHERE representative_id = ?', + [(int) $entryId] + ); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\monograph\RepresentativeDAO', '\RepresentativeDAO'); +} diff --git a/classes/notification/Notification.inc.php b/classes/notification/Notification.inc.php deleted file mode 100644 index e28564ffda6..00000000000 --- a/classes/notification/Notification.inc.php +++ /dev/null @@ -1,27 +0,0 @@ -getType()) { - case NOTIFICATION_TYPE_CONFIGURE_PAYMENT_METHOD: - return __('notification.type.configurePaymentMethod.title'); - } - return parent::getNotificationTitle($notification); - } - - /** - * @copydoc PKPNotificationManager::getIconClass() - */ - public function getIconClass($notification) { - switch ($notification->getType()) { - case NOTIFICATION_TYPE_REVIEWER_COMMENT: - return 'notifyIconNewComment'; - } - return parent::getIconClass($notification); - } - - /** - * @copydoc PKPNotificationManager::getStyleClass() - */ - public function getStyleClass($notification) { - switch ($notification->getType()) { - case NOTIFICATION_TYPE_LAYOUT_ASSIGNMENT: - case NOTIFICATION_TYPE_INDEX_ASSIGNMENT: - case NOTIFICATION_TYPE_CONFIGURE_PAYMENT_METHOD: - return NOTIFICATION_STYLE_CLASS_WARNING; - } - return parent::getStyleClass($notification); - } - - /** - * @copydoc PKPNotificationManager::isVisibleToAllUsers() - */ - public function isVisibleToAllUsers($notificationType, $assocType, $assocId) { - switch ($notificationType) { - case NOTIFICATION_TYPE_CONFIGURE_PAYMENT_METHOD: - return true; - default: - return parent::isVisibleToAllUsers($notificationType, $assocType, $assocId); - } - } - - /** - * @copydoc PKPNotificationManager::getMgrDelegate() - */ - protected function getMgrDelegate($notificationType, $assocType, $assocId) { - switch ($notificationType) { - case NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_INTERNAL_REVIEW: - assert($assocType == ASSOC_TYPE_SUBMISSION && is_numeric($assocId)); - import('lib.pkp.classes.notification.managerDelegate.EditorAssignmentNotificationManager'); - return new EditorAssignmentNotificationManager($notificationType); - case NOTIFICATION_TYPE_EDITOR_DECISION_INTERNAL_REVIEW: - assert($assocType == ASSOC_TYPE_SUBMISSION && is_numeric($assocId)); - import('lib.pkp.classes.notification.managerDelegate.EditorDecisionNotificationManager'); - return new EditorDecisionNotificationManager($notificationType); - case NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS: - assert($assocType == ASSOC_TYPE_SUBMISSION && is_numeric($assocId)); - import('lib.pkp.classes.notification.managerDelegate.PendingRevisionsNotificationManager'); - return new PendingRevisionsNotificationManager($notificationType); - case NOTIFICATION_TYPE_APPROVE_SUBMISSION: - case NOTIFICATION_TYPE_FORMAT_NEEDS_APPROVED_SUBMISSION: - case NOTIFICATION_TYPE_VISIT_CATALOG: - assert($assocType == ASSOC_TYPE_SUBMISSION && is_numeric($assocId)); - import('classes.notification.managerDelegate.ApproveSubmissionNotificationManager'); - return new ApproveSubmissionNotificationManager($notificationType); - } - // Otherwise, fall back on parent class - return parent::getMgrDelegate($notificationType, $assocType, $assocId); - } -} - - diff --git a/classes/notification/NotificationManager.php b/classes/notification/NotificationManager.php new file mode 100644 index 00000000000..d222527b8a6 --- /dev/null +++ b/classes/notification/NotificationManager.php @@ -0,0 +1,127 @@ +getType()) { + case Notification::NOTIFICATION_TYPE_CONFIGURE_PAYMENT_METHOD: + return __('notification.type.configurePaymentMethod.title'); + } + return parent::getNotificationTitle($notification); + } + + /** + * @copydoc PKPNotificationManager::getIconClass() + */ + public function getIconClass($notification) + { + switch ($notification->getType()) { + case Notification::NOTIFICATION_TYPE_REVIEWER_COMMENT: + return 'notifyIconNewComment'; + } + return parent::getIconClass($notification); + } + + /** + * @copydoc PKPNotificationManager::getStyleClass() + */ + public function getStyleClass($notification) + { + switch ($notification->getType()) { + case Notification::NOTIFICATION_TYPE_LAYOUT_ASSIGNMENT: + case Notification::NOTIFICATION_TYPE_INDEX_ASSIGNMENT: + case Notification::NOTIFICATION_TYPE_CONFIGURE_PAYMENT_METHOD: + return NOTIFICATION_STYLE_CLASS_WARNING; + } + return parent::getStyleClass($notification); + } + + /** + * @copydoc PKPNotificationManager::isVisibleToAllUsers() + */ + public function isVisibleToAllUsers($notificationType, $assocType, $assocId) + { + switch ($notificationType) { + case Notification::NOTIFICATION_TYPE_CONFIGURE_PAYMENT_METHOD: + return true; + default: + return parent::isVisibleToAllUsers($notificationType, $assocType, $assocId); + } + } + + /** + * @copydoc PKPNotificationManager::getMgrDelegate() + */ + protected function getMgrDelegate($notificationType, $assocType, $assocId) + { + switch ($notificationType) { + case Notification::NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_INTERNAL_REVIEW: + assert($assocType == Application::ASSOC_TYPE_SUBMISSION && is_numeric($assocId)); + return new EditorAssignmentNotificationManager($notificationType); + case Notification::NOTIFICATION_TYPE_EDITOR_DECISION_INTERNAL_REVIEW: + assert($assocType == Application::ASSOC_TYPE_SUBMISSION && is_numeric($assocId)); + return new EditorDecisionNotificationManager($notificationType); + case Notification::NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS: + assert($assocType == Application::ASSOC_TYPE_SUBMISSION && is_numeric($assocId)); + return new PendingRevisionsNotificationManager($notificationType); + case Notification::NOTIFICATION_TYPE_APPROVE_SUBMISSION: + case Notification::NOTIFICATION_TYPE_FORMAT_NEEDS_APPROVED_SUBMISSION: + case Notification::NOTIFICATION_TYPE_VISIT_CATALOG: + assert($assocType == Application::ASSOC_TYPE_SUBMISSION && is_numeric($assocId)); + return new ApproveSubmissionNotificationManager($notificationType); + } + // Otherwise, fall back on parent class + return parent::getMgrDelegate($notificationType, $assocType, $assocId); + } + + public function getNotificationTypeByEditorDecision(Decision $decision): ?int + { + switch ($decision->getData('decision')) { + case Decision::INTERNAL_REVIEW: + return Notification::NOTIFICATION_TYPE_EDITOR_DECISION_INTERNAL_REVIEW; + case Decision::PENDING_REVISIONS_INTERNAL: + return Notification::NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS; + default: + return parent::getNotificationTypeByEditorDecision($decision); + } + return null; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\notification\NotificationManager', '\NotificationManager'); +} diff --git a/classes/notification/form/NotificationSettingsForm.inc.php b/classes/notification/form/NotificationSettingsForm.inc.php deleted file mode 100644 index 8249d2472ca..00000000000 --- a/classes/notification/form/NotificationSettingsForm.inc.php +++ /dev/null @@ -1,21 +0,0 @@ -getRouter(); - $dispatcher = $router->getDispatcher(); - $contextDao = Application::getContextDAO(); - $context = $contextDao->getById($notification->getContextId()); - - switch ($notification->getType()) { - case NOTIFICATION_TYPE_VISIT_CATALOG: - return $dispatcher->url($request, ROUTE_PAGE, $context->getPath(), 'manageCatalog'); - } - - return parent::getNotificationUrl($request, $notification); - } - - /** - * @copydoc PKPNotificationOperationManager::getNotificationTitle() - */ - function getNotificationTitle($notification) { - switch ($notification->getType()) { - case NOTIFICATION_TYPE_APPROVE_SUBMISSION: - case NOTIFICATION_TYPE_FORMAT_NEEDS_APPROVED_SUBMISSION: - return __('notification.type.approveSubmissionTitle'); - case NOTIFICATION_TYPE_VISIT_CATALOG: - return __('notification.type.visitCatalogTitle'); - } - } - - /** - * @copydoc PKPNotificationOperationManager::getNotificationMessage() - */ - public function getNotificationMessage($request, $notification) { - switch ($notification->getType()) { - case NOTIFICATION_TYPE_FORMAT_NEEDS_APPROVED_SUBMISSION: - return __('notification.type.formatNeedsApprovedSubmission'); - case NOTIFICATION_TYPE_VISIT_CATALOG: - return __('notification.type.visitCatalog'); - case NOTIFICATION_TYPE_APPROVE_SUBMISSION: - return __('notification.type.approveSubmission'); - } - - return parent::getNotificationMessage($request, $notification); - } -} - diff --git a/classes/notification/managerDelegate/ApproveSubmissionNotificationManager.php b/classes/notification/managerDelegate/ApproveSubmissionNotificationManager.php new file mode 100644 index 00000000000..c91b2c1891d --- /dev/null +++ b/classes/notification/managerDelegate/ApproveSubmissionNotificationManager.php @@ -0,0 +1,78 @@ +getRouter(); + $dispatcher = $router->getDispatcher(); + $contextDao = Application::getContextDAO(); + $context = $contextDao->getById($notification->getContextId()); + + switch ($notification->getType()) { + case Notification::NOTIFICATION_TYPE_VISIT_CATALOG: + return $dispatcher->url($request, Application::ROUTE_PAGE, $context->getPath(), 'manageCatalog'); + } + + return parent::getNotificationUrl($request, $notification); + } + + /** + * @copydoc PKPNotificationOperationManager::getNotificationTitle() + */ + public function getNotificationTitle($notification) + { + switch ($notification->getType()) { + case Notification::NOTIFICATION_TYPE_APPROVE_SUBMISSION: + case Notification::NOTIFICATION_TYPE_FORMAT_NEEDS_APPROVED_SUBMISSION: + return __('notification.type.approveSubmissionTitle'); + case Notification::NOTIFICATION_TYPE_VISIT_CATALOG: + return __('notification.type.visitCatalogTitle'); + } + } + + /** + * @copydoc PKPNotificationOperationManager::getNotificationMessage() + */ + public function getNotificationMessage($request, $notification) + { + switch ($notification->getType()) { + case Notification::NOTIFICATION_TYPE_FORMAT_NEEDS_APPROVED_SUBMISSION: + return __('notification.type.formatNeedsApprovedSubmission'); + case Notification::NOTIFICATION_TYPE_VISIT_CATALOG: + return __('notification.type.visitCatalog'); + case Notification::NOTIFICATION_TYPE_APPROVE_SUBMISSION: + return __('notification.type.approveSubmission'); + } + + return parent::getNotificationMessage($request, $notification); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\notification\managerDelegate\ApproveSubmissionNotificationManager', '\ApproveSubmissionNotificationManager'); +} diff --git a/classes/oai/omp/OAIDAO.inc.php b/classes/oai/omp/OAIDAO.inc.php deleted file mode 100644 index 0195d74dd80..00000000000 --- a/classes/oai/omp/OAIDAO.inc.php +++ /dev/null @@ -1,247 +0,0 @@ -_publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); - $this->_seriesDao = DAORegistry::getDAO('SeriesDAO'); - $this->_pressDao = DAORegistry::getDAO('PressDAO'); - } - - /** - * Cached function to get a press - * @param $pressId int - * @return Press - */ - function getPress($pressId) { - if (!isset($this->_pressCache[$pressId])) { - $this->_pressCache[$pressId] = $this->_pressDao->getById($pressId); - } - return $this->_pressCache[$pressId]; - } - - /** - * Cached function to get a press series - * @param $seriesId int - * @return Series - */ - function getSeries($seriesId) { - if (!isset($this->_seriesCache[$seriesId])) { - $this->_seriesCache[$seriesId] = $this->_seriesDao->getById($seriesId); - } - return $this->_seriesCache[$seriesId]; - } - - // - // Sets - // - - /** - * Return hierarchy of OAI sets (presses plus press series). - * @param $pressId int|null - * @param $offset int - * @param $total int - * @return array OAISet - */ - function getSets($pressId, $offset, $limit, &$total) { - if (isset($pressId)) { - $presses = [$this->getPress($pressId)]; - } else { - $pressFactory = $this->_pressDao->getAll(); - $presses = $pressFactory->toArray(); - } - - // FIXME Set descriptions - $sets = []; - foreach ($presses as $press) { - $title = $press->getLocalizedName(); - $abbrev = $press->getPath(); - - $dataObjectTombstoneDao = DAORegistry::getDAO('DataObjectTombstoneDAO'); /* @var $dataObjectTombstoneDao DataObjectTombstoneDAO */ - $publicationFormatSets = $dataObjectTombstoneDao->getSets(ASSOC_TYPE_PRESS, $press->getId()); - - if (!array_key_exists(urlencode($abbrev), $publicationFormatSets)) array_push($sets, new OAISet(urlencode($abbrev), $title, '')); - - $seriesFactory = $this->_seriesDao->getByPressId($press->getId()); - foreach ($seriesFactory->toArray() as $series) { - if (array_key_exists(urlencode($abbrev) . ':' . urlencode($series->getPath()), $publicationFormatSets)) { - unset($publicationFormatSets[urlencode($abbrev) . ':' . urlencode($series->getPath())]); - } - array_push($sets, new OAISet(urlencode($abbrev) . ':' . urlencode($series->getPath()), $series->getLocalizedTitle(), '')); - } - foreach ($publicationFormatSets as $publicationFormatSetSpec => $publicationFormatSetName) { - array_push($sets, new OAISet($publicationFormatSetSpec, $publicationFormatSetName, '')); - } - } - - HookRegistry::call('OAIDAO::getSets', [&$this, $pressId, $offset, $limit, $total, &$sets]); - - $total = count($sets); - $sets = array_slice($sets, $offset, $limit); - - return $sets; - } - - /** - * Return the press ID and series ID corresponding to a press/series pairing. - * @param $pressSpec string - * @param $seriesSpec string - * @param $restrictPressId int - * @return array (int, int, int) - */ - function getSetPressSeriesId($pressSpec, $seriesSpec, $restrictPressId = null) { - $press = $this->_pressDao->getByPath($pressSpec); - if (!isset($press) || (isset($restrictPressId) && $press->getId() != $restrictPressId)) { - return [0, 0]; - } - - $pressId = $press->getId(); - $seriesId = null; - - if (isset($seriesSpec)) { - $series = $this->_seriesDao->getByPath($seriesSpec, $press->getId()); - if ($series && is_a($series, 'Series')) { - $seriesId = $series->getId(); - } else { - $seriesId = 0; - } - } - - return [$pressId, $seriesId]; - } - - - // - // Protected methods. - // - /** - * @see lib/pkp/classes/oai/PKPOAIDAO::setOAIData() - */ - function setOAIData($record, $row, $isRecord = true) { - $press = $this->getPress($row['press_id']); - $series = $this->getSeries($row['series_id']); - $publicationFormatId = $row['data_object_id']; - - $record->identifier = $this->oai->publicationFormatIdToIdentifier($publicationFormatId); - $record->sets = [urlencode($press->getPath()) . ($series?':' . urlencode($series->getPath()):'')]; - - if ($isRecord) { - $publicationFormat = $this->_publicationFormatDao->getById($publicationFormatId); - $publication = Services::get('publication')->get($publicationFormat->getData('publicationId')); - $submission = Services::get('submission')->get($publication->getData('submissionId')); - $record->setData('publicationFormat', $publicationFormat); - $record->setData('monograph', $submission); - $record->setData('press', $press); - $record->setData('series', $series); - } - - return $record; - } - - /** - * Get a OAI records record set. - * @param $setIds array Objects ids that specify an OAI set, - * in hierarchical order. - * @param $from int/string *nix timestamp or ISO datetime string - * @param $until int/string *nix timestamp or ISO datetime string - * @param $set string - * @param $submissionId int Optional - * @param $orderBy string UNFILTERED - * @return Iterable - */ - function _getRecordsRecordSet($setIds, $from, $until, $set, $submissionId = null, $orderBy = 'press_id, data_object_id') { - $pressId = array_shift($setIds); - $seriesId = array_shift($setIds); - - $params = []; - if ($pressId) $params[] = (int) $pressId; - if ($seriesId) $params[] = (int) $seriesId; - if ($submissionId) $params[] = (int) $submissionId; - if ($pressId) $params[] = (int) $pressId; - if ($seriesId) $params[] = (int) $seriesId; - if (isset($set)) $params[] = $set; - if ($submissionId) $params[] = (int) $submissionId; - - import('lib.pkp.classes.submission.PKPSubmission'); // STATUS_PUBLISHED - return $this->retrieve( - 'SELECT ms.last_modified AS last_modified, - pf.publication_format_id AS data_object_id, - p.press_id AS press_id, - pub.series_id AS series_id, - NULL AS tombstone_id, - NULL AS set_spec, - NULL AS oai_identifier - FROM publication_formats pf - JOIN publications pub ON (pub.publication_id = pf.publication_id) - JOIN submissions ms ON (ms.current_publication_id = pub.publication_id) - LEFT JOIN series s ON (s.series_id = pub.series_id) - JOIN presses p ON (p.press_id = ms.context_id) - WHERE p.enabled = 1 - ' . ($pressId?' AND p.press_id = ?':'') . ' - ' . ($seriesId?' AND pub.series_id = ?':'') . ' - AND ms.status = ' . STATUS_PUBLISHED . ' - AND pf.is_available = 1 - AND pub.date_published IS NOT NULL - ' . ($from?' AND ms.last_modified >= ' . $this->datetimeToDB($from):'') . ' - ' . ($until?' AND ms.last_modified <= ' . $this->datetimeToDB($until):'') . ' - ' . ($submissionId?' AND pf.publication_format_id=?':'') . ' - UNION - SELECT dot.date_deleted AS last_modified, - dot.data_object_id AS data_object_id, - tsop.assoc_id AS press_id, - tsos.assoc_id AS series_id, - dot.tombstone_id, - dot.set_spec, - dot.oai_identifier - FROM - data_object_tombstones dot - LEFT JOIN data_object_tombstone_oai_set_objects tsop ON ' . (isset($pressId) ? '(tsop.tombstone_id = dot.tombstone_id AND tsop.assoc_type = ' . ASSOC_TYPE_PRESS . ' AND tsop.assoc_id = ?)' : 'tsop.assoc_id = null') . ' - LEFT JOIN data_object_tombstone_oai_set_objects tsos ON ' . (isset($seriesId) ? '(tsos.tombstone_id = dot.tombstone_id AND tsos.assoc_type = ' . ASSOC_TYPE_SERIES . ' AND tsos.assoc_id = ?)' : 'tsos.assoc_id = null') . ' - WHERE 1=1 - ' . ($from?' AND dot.date_deleted >= ' . $this->datetimeToDB($from):'') . ' - ' . ($until?' AND dot.date_deleted <= ' . $this->datetimeToDB($until):'') . ' - ' . (isset($set)?' AND dot.set_spec = ?':'') . ' - ' . ($submissionId?' AND dot.data_object_id = ?':'') . ' - ORDER BY ' . $orderBy, - $params - ); - } -} - - diff --git a/classes/oai/omp/OAIDAO.php b/classes/oai/omp/OAIDAO.php new file mode 100644 index 00000000000..ac5f7356480 --- /dev/null +++ b/classes/oai/omp/OAIDAO.php @@ -0,0 +1,303 @@ +_publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); + $this->_pressDao = DAORegistry::getDAO('PressDAO'); + } + + /** + * Cached function to get a press + * + * @param int $pressId + * + * @return Press + */ + public function getPress($pressId) + { + if (!isset($this->_pressCache[$pressId])) { + $this->_pressCache[$pressId] = $this->_pressDao->getById($pressId); + } + return $this->_pressCache[$pressId]; + } + + /** + * Cached function to get a press series + * + * @param int $seriesId + * + * @return Section + */ + public function getSeries($seriesId) + { + if (!isset($this->_seriesCache[$seriesId])) { + $this->_seriesCache[$seriesId] = $seriesId ? Repo::section()->get($seriesId) : null; + } + return $this->_seriesCache[$seriesId]; + } + + // + // Sets + // + + /** + * Return hierarchy of OAI sets (presses plus press series). + * + * @param int|null $pressId + * @param int $offset + * @param int $total + * + * @return array OAISet + */ + public function getSets($pressId, $offset, $limit, &$total) + { + if (isset($pressId)) { + $presses = [$this->getPress($pressId)]; + } else { + $pressFactory = $this->_pressDao->getAll(); + $presses = $pressFactory->toArray(); + } + + // FIXME Set descriptions + $sets = []; + foreach ($presses as $press) { + $title = $press->getLocalizedName(); + + $dataObjectTombstoneDao = DAORegistry::getDAO('DataObjectTombstoneDAO'); /** @var DataObjectTombstoneDAO $dataObjectTombstoneDao */ + $publicationFormatSets = $dataObjectTombstoneDao->getSets(Application::ASSOC_TYPE_PRESS, $press->getId()); + + if (!array_key_exists(self::setSpec($press), $publicationFormatSets)) { + array_push($sets, new OAISet(self::setSpec($press), $title, '')); + } + + $seriesFactory = Repo::section() + ->getCollector() + ->filterByContextIds([$press->getId()]) + ->getMany(); + foreach ($seriesFactory as $series) { + $setSpec = self::setSpec($press, $series); + if (array_key_exists($setSpec, $publicationFormatSets)) { + unset($publicationFormatSets[$setSpec]); + } + array_push($sets, new OAISet($setSpec, $series->getLocalizedTitle(), '')); + } + foreach ($publicationFormatSets as $publicationFormatSetSpec => $publicationFormatSetName) { + array_push($sets, new OAISet($publicationFormatSetSpec, $publicationFormatSetName, '')); + } + } + + Hook::call('OAIDAO::getSets', [&$this, $pressId, $offset, $limit, $total, &$sets]); + + $total = count($sets); + $sets = array_slice($sets, $offset, $limit); + + return $sets; + } + + /** + * Return the press ID and series ID corresponding to a press/series pairing. + * + * @param string $pressSpec + * @param string $seriesSpec + * @param int $restrictPressId + * + * @return int[] (int, int) + */ + public function getSetPressSeriesId($pressSpec, $seriesSpec, $restrictPressId = null) + { + $press = $this->_pressDao->getByPath($pressSpec); + if (!isset($press) || (isset($restrictPressId) && $press->getId() != $restrictPressId)) { + return [0, 0]; + } + + $pressId = $press->getId(); + $seriesId = null; + + if (isset($seriesSpec)) { + $series = Repo::section()->getByPath($seriesSpec, $press->getId()); + $seriesId = !is_null($series) ? $series->getId() : 0; + } + + return [$pressId, $seriesId]; + } + + public static function setSpec($press, $series = null): string + { + // path is restricted to ascii alphanumeric, '-' and '_' so it only contains valid setSpec chars + return isset($series) + ? $press->getPath() . ':' . $series->getPath() + : $press->getPath(); + } + + + // + // Protected methods. + // + /** + * @see lib/pkp/classes/oai/PKPOAIDAO::setOAIData() + */ + public function setOAIData($record, $row, $isRecord = true) + { + $press = $this->getPress($row['press_id']); + $series = $this->getSeries($row['series_id']); + $publicationFormatId = $row['data_object_id']; + + /** @var PressOAI */ + $oai = $this->oai; + $record->identifier = $oai->publicationFormatIdToIdentifier($publicationFormatId); + $record->sets = [self::setSpec($press, $series)]; + + if ($isRecord) { + $publicationFormat = $this->_publicationFormatDao->getById($publicationFormatId); + $publication = Repo::publication()->get($publicationFormat->getData('publicationId')); + $submission = Repo::submission()->get($publication->getData('submissionId')); + $record->setData('publicationFormat', $publicationFormat); + $record->setData('monograph', $submission); + $record->setData('press', $press); + $record->setData('series', $series); + } + + return $record; + } + + /** + * @copydoc PKPOAIDAO::_getRecordsRecordSet + * + * @param null|mixed $submissionId + */ + public function _getRecordsRecordSetQuery($setIds, $from, $until, $set, $submissionId = null, $orderBy = 'press_id, data_object_id') + { + $pressId = array_shift($setIds); + $seriesId = array_shift($setIds); + + return DB::table('publication_formats AS pf') + ->select([ + 'ms.last_modified AS last_modified', + 'pf.publication_format_id AS data_object_id', + DB::raw('NULL AS tombstone_id'), + DB::raw('NULL AS set_spec'), + DB::raw('NULL AS oai_identifier'), + 'p.press_id AS press_id', + 'pub.series_id AS series_id', + ]) + ->join('publications AS pub', 'pub.publication_id', '=', 'pf.publication_id') + ->join('submissions AS ms', 'ms.current_publication_id', '=', 'pub.publication_id') + ->leftJoin('series AS s', 's.series_id', '=', 'pub.series_id') + ->join('presses AS p', 'p.press_id', '=', 'ms.context_id') + ->where('p.enabled', '=', 1) + ->when($pressId, function ($query, $pressId) { + return $query->where('p.press_id', '=', $pressId); + }) + ->when($seriesId, function ($query, $seriesId) { + return $query->where('pub.series_id', '=', $seriesId); + }) + ->where('ms.status', '=', PKPSubmission::STATUS_PUBLISHED) + ->where('pf.is_available', '=', 1) + ->whereNotNull('pub.date_published') + ->when($from, function ($query, $from) { + return $query->whereDate('ms.last_modified', '>=', \DateTime::createFromFormat('U', $from)); + }) + ->when($until, function ($query, $until) { + return $query->whereDate('ms.last_modified', '<=', \DateTime::createFromFormat('U', $until)); + }) + ->when($submissionId, function ($query, $submissionId) { + return $query->where('pf.publication_format_id', '=', $submissionId); + }) + ->union( + DB::table('data_object_tombstones AS dot') + ->select([ + 'dot.date_deleted AS last_modified', + 'dot.data_object_id AS data_object_id', + 'dot.tombstone_id', + 'dot.set_spec', + 'dot.oai_identifier', + ]) + ->when(isset($pressId), function ($query, $pressId) { + return $query->join('data_object_tombstone_oai_set_objects AS tsop', function ($join) use ($pressId) { + $join->on('tsop.tombstone_id', '=', 'dot.tombstone_id'); + $join->where('tsop.assoc_type', '=', Application::ASSOC_TYPE_PRESS); + $join->where('tsop.assoc_id', '=', (int) $pressId); + })->addSelect(['tsop.assoc_id AS press_id']); + }, function ($query) { + return $query->addSelect([DB::raw('NULL AS press_id')]); + }) + ->when(isset($seriesId), function ($query, $seriesId) { + return $query->join('data_object_tombstone_oai_set_objects AS tsos', function ($join) use ($seriesId) { + $join->on('tsos.tombstone_id', '=', 'dot.tombstone_id'); + $join->where('tsos.assoc_type', '=', Application::ASSOC_TYPE_SERIES); + $join->where('tsos.assoc_id', '=', (int) $seriesId); + })->addSelect(['tsos.assoc_id AS series_id']); + }, function ($query) { + return $query->addSelect([DB::raw('NULL AS series_id')]); + }) + ->when(isset($set), function ($query) use ($set) { + return $query->where('dot.set_spec', '=', $set); + }) + ->when($from, function ($query, $from) { + return $query->whereDate('dot.date_deleted', '>=', \DateTime::createFromFormat('U', $from)); + }) + ->when($until, function ($query, $until) { + return $query->whereDate('dot.date_deleted', '<=', \DateTime::createFromFormat('U', $until)); + }) + ->when($submissionId, function ($query, $submissionId) { + return $query->where('dot.data_object_id', '=', (int) $submissionId); + }) + ) + ->orderBy(DB::raw($orderBy)); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\oai\omp\OAIDAO', '\OAIDAO'); +} diff --git a/classes/oai/omp/PressOAI.inc.php b/classes/oai/omp/PressOAI.inc.php deleted file mode 100644 index 83f5e99f957..00000000000 --- a/classes/oai/omp/PressOAI.inc.php +++ /dev/null @@ -1,252 +0,0 @@ -getRequest(); - - $this->site = $request->getSite(); - $this->press = $request->getPress(); - $this->pressId = isset($this->press) ? $this->press->getId() : null; - $this->dao = DAORegistry::getDAO('OAIDAO'); - $this->dao->setOAI($this); - } - - /** - * Return a list of ignorable GET parameters. - * @return array - */ - function getNonPathInfoParams() { - return array('press', 'page'); - } - - /** - * Convert monograph ID to OAI identifier. - * @param $publicationFormatId int - * @return string - */ - function publicationFormatIdToIdentifier($publicationFormatId) { - return $this->_getIdentifierPrefix() . $publicationFormatId; - } - - /** - * Convert OAI identifier to monograph ID. - * @param $identifier string - * @return int - */ - function identifierToPublicationFormatId($identifier) { - $prefix = $this->_getIdentifierPrefix(); - if (strstr($identifier, $prefix)) { - return (int) str_replace($prefix, '', $identifier); - } else { - return false; - } - } - - /** - * Get press ID and series ID corresponding to a set specifier. - * @param $setSpec string - * @param $pressId int - * @return array - */ - function setSpecToSeriesId($setSpec, $pressId = null) { - $tmpArray = preg_split('/:/', $setSpec); - if (count($tmpArray) == 1) { - list($pressSpec) = $tmpArray; - $pressSpec = urldecode($pressSpec); - $seriesSpec = null; - } else if (count($tmpArray) == 2) { - list($pressSpec, $seriesSpec) = $tmpArray; - $pressSpec = urldecode($pressSpec); - $seriesSpec = urldecode($seriesSpec); - } else { - return array(0, 0); - } - return $this->dao->getSetPressSeriesId($pressSpec, $seriesSpec, $this->pressId); - } - - - // - // OAI interface functions - // - - /** - * @see OAI#repositoryInfo - */ - function repositoryInfo() { - $info = new OAIRepository(); - - if (isset($this->press)) { - $info->repositoryName = $this->press->getLocalizedName(); - $info->adminEmail = $this->press->getSetting('contactEmail'); - - } else { - $info->repositoryName = $this->site->getLocalizedTitle(); - $info->adminEmail = $this->site->getLocalizedContactEmail(); - } - - $info->sampleIdentifier = $this->publicationFormatIdToIdentifier(1); - $info->earliestDatestamp = $this->dao->getEarliestDatestamp(array($this->pressId)); - - $info->toolkitTitle = 'Open Monograph Press'; - $versionDao = DAORegistry::getDAO('VersionDAO'); /* @var $versionDao VersionDAO */ - $currentVersion = $versionDao->getCurrentVersion(); - $info->toolkitVersion = $currentVersion->getVersionString(false); - $info->toolkitURL = 'http://pkp.sfu.ca/omp/'; - - return $info; - } - - /** - * @see OAI#validIdentifier - */ - function validIdentifier($identifier) { - return $this->identifierToPublicationFormatId($identifier) !== false; - } - - /** - * @see OAI#identifierExists - */ - function identifierExists($identifier) { - $recordExists = false; - $publicationFormatId = $this->identifierToPublicationFormatId($identifier); - if ($publicationFormatId) { - $recordExists = $this->dao->recordExists($publicationFormatId, array($this->pressId)); - } - return $recordExists; - } - - /** - * @see OAI#record - */ - function record($identifier) { - $publicationFormatId = $this->identifierToPublicationFormatId($identifier); - if ($publicationFormatId) { - $record = $this->dao->getRecord($publicationFormatId, array($this->pressId)); - } - if (!isset($record)) { - $record = false; - } - return $record; - } - - /** - * @see OAI#records - */ - function records($metadataPrefix, $from, $until, $set, $offset, $limit, &$total) { - $records = null; - if (!HookRegistry::call('PressOAI::records', array(&$this, $from, $until, $set, $offset, $limit, &$total, &$records))) { - $seriesId = null; - if (isset($set)) { - list($pressId, $seriesId) = $this->setSpecToSeriesId($set); - } else { - $pressId = $this->pressId; - } - $records = $this->dao->getRecords(array($pressId, $seriesId), $from, $until, $set, $offset, $limit, $total); - } - return $records; - } - - /** - * @see OAI#identifiers - */ - function identifiers($metadataPrefix, $from, $until, $set, $offset, $limit, &$total) { - $records = null; - if (!HookRegistry::call('PressOAI::identifiers', array(&$this, $from, $until, $set, $offset, $limit, &$total, &$records))) { - $seriesId = null; - if (isset($set)) { - list($pressId, $seriesId) = $this->setSpecToSeriesId($set); - } else { - $pressId = $this->pressId; - } - $records = $this->dao->getIdentifiers(array($pressId, $seriesId), $from, $until, $set, $offset, $limit, $total); - } - return $records; - } - - /** - * @see OAI#sets - */ - function sets($offset, $limit, &$total) { - $sets = null; - if (!HookRegistry::call('PressOAI::sets', array(&$this, $offset, $limit, &$total, &$sets))) { - $sets = $this->dao->getSets($this->pressId, $offset, $limit, $total); - } - return $sets; - } - - /** - * @see OAI#resumptionToken - */ - function resumptionToken($tokenId) { - $this->dao->clearTokens(); - $token = $this->dao->getToken($tokenId); - if (!isset($token)) { - $token = false; - } - return $token; - } - - /** - * @see OAI#saveResumptionToken - */ - function saveResumptionToken($offset, $params) { - $token = new OAIResumptionToken(null, $offset, $params, time() + $this->config->tokenLifetime); - $this->dao->insertToken($token); - return $token; - } - - - // - // Private helper methods - // - /** - * Get the OAI identifier prefix. - * @return string - */ - function _getIdentifierPrefix() { - return 'oai:' . $this->config->repositoryId . ':' . 'publicationFormat/'; - } -} - - diff --git a/classes/oai/omp/PressOAI.php b/classes/oai/omp/PressOAI.php new file mode 100644 index 00000000000..58d9e31b696 --- /dev/null +++ b/classes/oai/omp/PressOAI.php @@ -0,0 +1,276 @@ +getRequest(); + + $this->site = $request->getSite(); + $this->press = $request->getPress(); + $this->pressId = isset($this->press) ? $this->press->getId() : null; + /** @var OAIDAO */ + $this->dao = DAORegistry::getDAO('OAIDAO'); + $this->dao->setOAI($this); + } + + /** + * Convert monograph ID to OAI identifier. + * + * @param int $publicationFormatId + * + * @return string + */ + public function publicationFormatIdToIdentifier($publicationFormatId) + { + return $this->_getIdentifierPrefix() . $publicationFormatId; + } + + /** + * Convert OAI identifier to monograph ID. + * + * @param string $identifier + * + * @return int + */ + public function identifierToPublicationFormatId($identifier) + { + $prefix = $this->_getIdentifierPrefix(); + if (strstr($identifier, $prefix)) { + return (int) str_replace($prefix, '', $identifier); + } else { + return false; + } + } + + /** + * Get press ID and series ID corresponding to a set specifier. + * + * @param string $setSpec + * @param int $pressId + * + * @return array + */ + public function setSpecToSeriesId($setSpec, $pressId = null) + { + $tmpArray = preg_split('/:/', $setSpec); + if (count($tmpArray) == 1) { + [$pressSpec] = $tmpArray; + $seriesSpec = null; + } elseif (count($tmpArray) == 2) { + [$pressSpec, $seriesSpec] = $tmpArray; + } else { + return [0, 0]; + } + return $this->dao->getSetPressSeriesId($pressSpec, $seriesSpec, $this->pressId); + } + + + // + // OAI interface functions + // + + /** + * @see OAI#repositoryInfo + */ + public function repositoryInfo() + { + $info = new OAIRepository(); + + if (isset($this->press)) { + $info->repositoryName = $this->press->getLocalizedName(); + $info->adminEmail = $this->press->getSetting('contactEmail'); + } else { + $info->repositoryName = $this->site->getLocalizedTitle(); + $info->adminEmail = $this->site->getLocalizedContactEmail(); + } + + $info->sampleIdentifier = $this->publicationFormatIdToIdentifier(1); + $info->earliestDatestamp = $this->dao->getEarliestDatestamp([$this->pressId]); + + $info->toolkitTitle = 'Open Monograph Press'; + $versionDao = DAORegistry::getDAO('VersionDAO'); /** @var VersionDAO $versionDao */ + $currentVersion = $versionDao->getCurrentVersion(); + $info->toolkitVersion = $currentVersion->getVersionString(false); + $info->toolkitURL = 'https://pkp.sfu.ca/omp/'; + + return $info; + } + + /** + * @see OAI#validIdentifier + */ + public function validIdentifier($identifier) + { + return $this->identifierToPublicationFormatId($identifier) !== false; + } + + /** + * @see OAI#identifierExists + */ + public function identifierExists($identifier) + { + $recordExists = false; + $publicationFormatId = $this->identifierToPublicationFormatId($identifier); + if ($publicationFormatId) { + $recordExists = $this->dao->recordExists($publicationFormatId, [$this->pressId]); + } + return $recordExists; + } + + /** + * @see OAI#record + */ + public function record($identifier) + { + $publicationFormatId = $this->identifierToPublicationFormatId($identifier); + if ($publicationFormatId) { + $record = $this->dao->getRecord($publicationFormatId, [$this->pressId]); + } + if (!isset($record)) { + $record = false; + } + return $record; + } + + /** + * @see OAI#records + */ + public function records($metadataPrefix, $from, $until, $set, $offset, $limit, &$total) + { + $records = null; + if (!Hook::call('PressOAI::records', [&$this, $from, $until, $set, $offset, $limit, &$total, &$records])) { + $seriesId = null; + if (isset($set)) { + [$pressId, $seriesId] = $this->setSpecToSeriesId($set); + } else { + $pressId = $this->pressId; + } + $records = $this->dao->getRecords([$pressId, $seriesId], $from, $until, $set, $offset, $limit, $total); + } + return $records; + } + + /** + * @see OAI#identifiers + */ + public function identifiers($metadataPrefix, $from, $until, $set, $offset, $limit, &$total) + { + $records = null; + if (!Hook::call('PressOAI::identifiers', [&$this, $from, $until, $set, $offset, $limit, &$total, &$records])) { + $seriesId = null; + if (isset($set)) { + [$pressId, $seriesId] = $this->setSpecToSeriesId($set); + } else { + $pressId = $this->pressId; + } + $records = $this->dao->getIdentifiers([$pressId, $seriesId], $from, $until, $set, $offset, $limit, $total); + } + return $records; + } + + /** + * @see OAI#sets + */ + public function sets($offset, $limit, &$total) + { + $sets = null; + if (!Hook::call('PressOAI::sets', [&$this, $offset, $limit, &$total, &$sets])) { + $sets = $this->dao->getSets($this->pressId, $offset, $limit, $total); + } + return $sets; + } + + /** + * @see OAI#resumptionToken + */ + public function resumptionToken($tokenId) + { + $this->dao->clearTokens(); + $token = $this->dao->getToken($tokenId); + if (!isset($token)) { + $token = false; + } + return $token; + } + + /** + * @see OAI#saveResumptionToken + */ + public function saveResumptionToken($offset, $params) + { + $token = new OAIResumptionToken(null, $offset, $params, time() + $this->config->tokenLifetime); + $this->dao->insertToken($token); + return $token; + } + + + // + // Private helper methods + // + /** + * Get the OAI identifier prefix. + * + * @return string + */ + public function _getIdentifierPrefix() + { + return 'oai:' . $this->config->repositoryId . ':' . 'publicationFormat/'; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\oai\omp\PressOAI', '\PressOAI'); +} diff --git a/classes/observers/events/UsageEvent.php b/classes/observers/events/UsageEvent.php new file mode 100644 index 00000000000..329ec063cc5 --- /dev/null +++ b/classes/observers/events/UsageEvent.php @@ -0,0 +1,97 @@ +chapter = $chapter; + $this->series = $series; + parent::__construct($assocType, $context, $submission, $publicationFormat, $submissionFile); + } + + /** + * Get the canonical URL for the usage object + * + * @throws Exception + */ + protected function getCanonicalUrl(): string + { + if (in_array($this->assocType, [Application::ASSOC_TYPE_CHAPTER, Application::ASSOC_TYPE_SERIES, Application::ASSOC_TYPE_PRESS])) { + $canonicalUrlPage = $canonicalUrlOp = null; + $canonicalUrlParams = []; + switch ($this->assocType) { + case Application::ASSOC_TYPE_CHAPTER: + $canonicalUrlOp = 'book'; + $canonicalUrlParams = [$this->submission->getId()]; + $router = $this->request->getRouter(); /** @var PageRouter $router */ + $op = $router->getRequestedOp($this->request); + $args = $router->getRequestedArgs($this->request); + if ($op == 'book' && count($args) > 1) { + $submissionId = array_shift($args); + $subPath = empty($args) ? 0 : array_shift($args); + if ($subPath === 'version') { + $publicationId = (int) array_shift($args); + $canonicalUrlParams[] = 'version'; + $canonicalUrlParams[] = $publicationId; + $subPath = empty($args) ? 0 : array_shift($args); + } + if ($subPath === 'chapter') { + $canonicalUrlParams[] = 'chapter'; + $canonicalUrlParams[] = $this->chapter->getId(); + } + } + break; + case Application::ASSOC_TYPE_SERIES: + $router = $this->request->getRouter(); /** @var PageRouter $router */ + $args = $router->getRequestedArgs($this->request); + $canonicalUrlOp = 'series'; + $canonicalUrlParams = [$args[0]]; // series path + break; + case Application::ASSOC_TYPE_PRESS: + $router = $this->request->getRouter(); /** @var PageRouter $router */ + $page = $router->getRequestedPage($this->request); + if ($page == 'catalog') { + $canonicalUrlPage = 'catalog'; + $canonicalUrlOp = 'index'; + break; + } else { + return parent::getCanonicalUrl(); + } + } + $canonicalUrl = $this->getRouterCanonicalUrl($this->request, $canonicalUrlPage, $canonicalUrlOp, $canonicalUrlParams); + return $canonicalUrl; + } else { + return parent::getCanonicalUrl(); + } + } +} diff --git a/classes/observers/listeners/SendSubmissionAcknowledgement.php b/classes/observers/listeners/SendSubmissionAcknowledgement.php new file mode 100644 index 00000000000..3a7a47abf16 --- /dev/null +++ b/classes/observers/listeners/SendSubmissionAcknowledgement.php @@ -0,0 +1,34 @@ +listen( + SubmissionSubmitted::class, + SendSubmissionAcknowledgement::class + ); + } +} diff --git a/classes/payment/omp/OMPCompletedPaymentDAO.inc.php b/classes/payment/omp/OMPCompletedPaymentDAO.inc.php deleted file mode 100644 index 6cc9803908c..00000000000 --- a/classes/payment/omp/OMPCompletedPaymentDAO.inc.php +++ /dev/null @@ -1,190 +0,0 @@ -retrieve( - 'SELECT * FROM completed_payments WHERE completed_payment_id = ?' . ($contextId?' AND context_id = ?':''), - $params - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Insert a new completed payment. - * @param $completedPayment CompletedPayment - */ - function insertCompletedPayment($completedPayment) { - $this->update( - sprintf('INSERT INTO completed_payments - (timestamp, payment_type, context_id, user_id, assoc_id, amount, currency_code_alpha, payment_method_plugin_name) - VALUES - (%s, ?, ?, ?, ?, ?, ?, ?)', - $this->datetimeToDB(Core::getCurrentDate())), - [ - (int) $completedPayment->getType(), - (int) $completedPayment->getContextId(), - (int) $completedPayment->getUserId(), - $completedPayment->getAssocId(), /* NOT int */ - $completedPayment->getAmount(), - $completedPayment->getCurrencyCode(), - $completedPayment->getPayMethodPluginName() - ] - ); - - return $this->getInsertId(); - } - - /** - * Update an existing completed payment. - * @param $completedPayment CompletedPayment - */ - function updateObject($completedPayment) { - $returner = false; - - $this->update( - sprintf('UPDATE completed_payments - SET - timestamp = %s, - payment_type = ?, - context_id = ?, - user_id = ?, - assoc_id = ?, - amount = ?, - currency_code_alpha = ?, - payment_method_plugin_name = ? - WHERE completed_payment_id = ?', - $this->datetimeToDB($completedPayment->getTimestamp())), - [ - (int) $completedPayment->getType(), - (int) $completedPayment->getContextId(), - (int) $completedPayment->getUserId(), - (int) $completedPayment->getAssocId(), - $completedPayment->getAmount(), - $completedPayment->getCurrencyCode(), - $completedPayment->getPayMethodPluginName(), - (int) $completedPayment->getId() - ] - ); - } - - /** - * Get the ID of the last inserted completed payment. - * @return int - */ - function getInsertId() { - return $this->_getInsertId('completed_payments', 'completed_payment_id'); - } - - /** - * Look for a completed PURCHASE_PUBLICATION_FORMAT payment matching the article ID - * @param $userId int - * @param $submissionFileId int - * @return boolean - */ - function hasPaidPurchaseFile ($userId, $submissionFileId) { - $result = $this->retrieve( - 'SELECT count(*) AS row_count FROM completed_payments WHERE payment_type = ? AND user_id = ? AND assoc_id = ?', - [ - PAYMENT_TYPE_PURCHASE_FILE, - (int) $userId, - $submissionFileId - ] - ); - $row = $result->current(); - return $row ? (boolean) $row->row_count : false; - } - - /** - * Retrieve an array of payments for a particular context ID. - * @param $contextId int - * @param $rangeInfo DBResultRange|null - * @return object DAOResultFactory containing matching payments - */ - function getByContextId($contextId, $rangeInfo = null) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT * FROM completed_payments WHERE context_id = ? ORDER BY timestamp DESC', - [(int) $contextId], - $rangeInfo - ), - $this, - '_fromRow' - ); - } - - /** - * Retrieve an array of payments for a particular user ID. - * @param $userId int - * @param $rangeInfo DBResultRange|null - * @return DAOResultFactory Matching payments - */ - function getByUserId($userId, $rangeInfo = null) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT * FROM completed_payments WHERE user_id = ? ORDER BY timestamp DESC', - [(int) $userId], - $rangeInfo - ), - $this, - '_returnPaymentFromRow' - ); - } - - /** - * Return a new data object. - * @return CompletedPayment - */ - function newDataObject() { - return new CompletedPayment(); - } - - /** - * Internal function to return a CompletedPayment object from a row. - * @param $row array - * @return CompletedPayment - */ - function _fromRow($row) { - $payment = $this->newDataObject(); - $payment->setTimestamp($this->datetimeFromDB($row['timestamp'])); - $payment->setId($row['completed_payment_id']); - $payment->setType($row['payment_type']); - $payment->setContextId($row['context_id']); - $payment->setAmount($row['amount']); - $payment->setCurrencyCode($row['currency_code_alpha']); - $payment->setUserId($row['user_id']); - $payment->setAssocId($row['assoc_id']); - $payment->setPayMethodPluginName($row['payment_method_plugin_name']); - - return $payment; - } -} - - diff --git a/classes/payment/omp/OMPCompletedPaymentDAO.php b/classes/payment/omp/OMPCompletedPaymentDAO.php new file mode 100644 index 00000000000..feb3269672c --- /dev/null +++ b/classes/payment/omp/OMPCompletedPaymentDAO.php @@ -0,0 +1,219 @@ +retrieve( + 'SELECT * FROM completed_payments WHERE completed_payment_id = ?' . ($contextId ? ' AND context_id = ?' : ''), + $params + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Insert a new completed payment. + * + * @param CompletedPayment $completedPayment + */ + public function insertCompletedPayment($completedPayment) + { + $this->update( + sprintf( + 'INSERT INTO completed_payments + (timestamp, payment_type, context_id, user_id, assoc_id, amount, currency_code_alpha, payment_method_plugin_name) + VALUES + (%s, ?, ?, ?, ?, ?, ?, ?)', + $this->datetimeToDB(Core::getCurrentDate()) + ), + [ + (int) $completedPayment->getType(), + (int) $completedPayment->getContextId(), + (int) $completedPayment->getUserId(), + $completedPayment->getAssocId(), /* NOT int */ + $completedPayment->getAmount(), + $completedPayment->getCurrencyCode(), + $completedPayment->getPayMethodPluginName() + ] + ); + + return $this->getInsertId(); + } + + /** + * Update an existing completed payment. + * + * @param CompletedPayment $completedPayment + */ + public function updateObject($completedPayment) + { + $returner = false; + + $this->update( + sprintf( + 'UPDATE completed_payments + SET + timestamp = %s, + payment_type = ?, + context_id = ?, + user_id = ?, + assoc_id = ?, + amount = ?, + currency_code_alpha = ?, + payment_method_plugin_name = ? + WHERE completed_payment_id = ?', + $this->datetimeToDB($completedPayment->getTimestamp()) + ), + [ + (int) $completedPayment->getType(), + (int) $completedPayment->getContextId(), + (int) $completedPayment->getUserId(), + (int) $completedPayment->getAssocId(), + $completedPayment->getAmount(), + $completedPayment->getCurrencyCode(), + $completedPayment->getPayMethodPluginName(), + (int) $completedPayment->getId() + ] + ); + } + + /** + * Look for a completed PURCHASE_PUBLICATION_FORMAT payment matching the article ID + * + * @param int $userId + * @param int $submissionFileId + * + * @return bool + */ + public function hasPaidPurchaseFile($userId, $submissionFileId) + { + $result = $this->retrieve( + 'SELECT count(*) AS row_count FROM completed_payments WHERE payment_type = ? AND user_id = ? AND assoc_id = ?', + [ + OMPPaymentManager::PAYMENT_TYPE_PURCHASE_FILE, + (int) $userId, + $submissionFileId + ] + ); + $row = $result->current(); + return $row ? (bool) $row->row_count : false; + } + + /** + * Retrieve an array of payments for a particular context ID. + * + * @param int $contextId + * @param DBResultRange|null $rangeInfo + * + * @return DAOResultFactory containing matching payments + */ + public function getByContextId($contextId, $rangeInfo = null) + { + return new DAOResultFactory( + $this->retrieveRange( + 'SELECT * FROM completed_payments WHERE context_id = ? ORDER BY timestamp DESC', + [(int) $contextId], + $rangeInfo + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve an array of payments for a particular user ID. + * + * @param int $userId + * @param DBResultRange|null $rangeInfo + * + * @return DAOResultFactory Matching payments + */ + public function getByUserId($userId, $rangeInfo = null) + { + return new DAOResultFactory( + $this->retrieveRange( + 'SELECT * FROM completed_payments WHERE user_id = ? ORDER BY timestamp DESC', + [(int) $userId], + $rangeInfo + ), + $this, + '_fromRow' + ); + } + + /** + * Return a new data object. + * + * @return CompletedPayment + */ + public function newDataObject() + { + return new CompletedPayment(); + } + + /** + * Internal function to return a CompletedPayment object from a row. + * + * @param array $row + * + * @return CompletedPayment + */ + public function _fromRow($row) + { + $payment = $this->newDataObject(); + $payment->setTimestamp($this->datetimeFromDB($row['timestamp'])); + $payment->setId($row['completed_payment_id']); + $payment->setType($row['payment_type']); + $payment->setContextId($row['context_id']); + $payment->setAmount($row['amount']); + $payment->setCurrencyCode($row['currency_code_alpha']); + $payment->setUserId($row['user_id']); + $payment->setAssocId($row['assoc_id']); + $payment->setPayMethodPluginName($row['payment_method_plugin_name']); + + return $payment; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\payment\omp\OMPCompletedPaymentDAO', '\OMPCompletedPaymentDAO'); +} diff --git a/classes/payment/omp/OMPPaymentManager.inc.php b/classes/payment/omp/OMPPaymentManager.inc.php deleted file mode 100644 index 1f26000ffa6..00000000000 --- a/classes/payment/omp/OMPPaymentManager.inc.php +++ /dev/null @@ -1,153 +0,0 @@ -_context && $this->_context->getData('currency'); - } - - /** - * Create a queued payment. - * @param $request PKPRequest - * @param $type int PAYMENT_TYPE_... - * @param $userId int ID of user responsible for payment - * @param $assocId int ID of associated entity - * @param $amount numeric Amount of currency $currencyCode - * @param $currencyCode string optional ISO 4217 currency code - * @return QueuedPayment - */ - function createQueuedPayment($request, $type, $userId, $assocId, $amount, $currencyCode = null) { - $payment = new QueuedPayment($amount, $this->_context->getData('currency'), $userId, $assocId); - $payment->setContextId($this->_context->getId()); - $payment->setType($type); - - switch ($type) { - case PAYMENT_TYPE_PURCHASE_FILE: - import('lib.pkp.classes.submission.SubmissionFile'); // const - $submissionFile = Services::get('submissionFile')->get($assocId); - if ($submissionFile->getData('fileStage') != SUBMISSION_FILE_PROOF) { - throw new Exception('The submission file for this queued payment is not in the correct file stage.'); - } - assert($submissionFile); - $payment->setRequestUrl($request->url(null, 'catalog', 'view', array( - $submissionFile->getData('submissionId'), - $submissionFile->getData('assocId'), - $assocId - ))); - break; - default: - // Invalid payment type. - assert(false); - break; - } - - return $payment; - } - - /** - * Get the payment plugin. - * @return PaymentPlugin - */ - function getPaymentPlugin() { - $paymentMethodPluginName = $this->_context->getData('paymentPluginName'); - $paymentMethodPlugin = null; - if (!empty($paymentMethodPluginName)) { - $plugins = PluginRegistry::loadCategory('paymethod'); - if (isset($plugins[$paymentMethodPluginName])) $paymentMethodPlugin = $plugins[$paymentMethodPluginName]; - } - return $paymentMethodPlugin; - } - - /** - * Fulfill a queued payment. - * @param $request PKPRequest - * @param $queuedPayment QueuedPayment - * @param $payMethodPluginName string Name of payment plugin. - * @return mixed Dependent on payment type. - */ - function fulfillQueuedPayment($request, $queuedPayment, $payMethodPluginName = null) { - $returner = false; - if ($queuedPayment) switch ($queuedPayment->getType()) { - case PAYMENT_TYPE_PURCHASE_FILE: - $returner = true; - break; - default: - // Invalid payment type - assert(false); - } - - $ompCompletedPaymentDao = DAORegistry::getDAO('OMPCompletedPaymentDAO'); /* @var $ompCompletedPaymentDao OMPCompletedPaymentDAO */ - $completedPayment = $this->createCompletedPayment($queuedPayment, $payMethodPluginName); - $ompCompletedPaymentDao->insertCompletedPayment($completedPayment); - - $queuedPaymentDao = DAORegistry::getDAO('QueuedPaymentDAO'); /* @var $queuedPaymentDao QueuedPaymentDAO */ - $queuedPaymentDao->deleteById($queuedPayment->getId()); - - return $returner; - } - - /** - * Create a completed payment from a queued payment. - * @param $queuedPayment QueuedPayment Payment to complete. - * @param $payMethod string Name of payment plugin used. - * @return CompletedPayment - */ - function createCompletedPayment($queuedPayment, $payMethod) { - import('lib.pkp.classes.payment.CompletedPayment'); - $payment = new CompletedPayment(); - $payment->setContextId($queuedPayment->getContextId()); - $payment->setType($queuedPayment->getType()); - $payment->setAmount($queuedPayment->getAmount()); - $payment->setCurrencyCode($queuedPayment->getCurrencyCode()); - $payment->setUserId($queuedPayment->getUserId()); - $payment->setAssocId($queuedPayment->getAssocId()); - $payment->setPayMethodPluginName($payMethod); - - return $payment; - } - - /** - * Returns the name of a payment. - * @return string - */ - function getPaymentName($payment) { - switch ($payment->getType()) { - case PAYMENT_TYPE_PURCHASE_FILE: - $submissionFile = Services::get('submissionFile')->get($payment->getAssocId()); - if (!$submissionFile || $submissionFile->getData('assocType') !== ASSOC_TYPE_PUBLICATION_FORMAT) { - return false; - } - - return $submissionFile->getLocalizedData('name'); - default: - // Invalid payment type - assert(false); - } - } -} - - diff --git a/classes/payment/omp/OMPPaymentManager.php b/classes/payment/omp/OMPPaymentManager.php new file mode 100644 index 00000000000..f67c698eee7 --- /dev/null +++ b/classes/payment/omp/OMPPaymentManager.php @@ -0,0 +1,187 @@ +_context && $this->_context->getData('currency'); + } + + /** + * Create a queued payment. + * + * @param Request $request + * @param int $type PAYMENT_TYPE_... + * @param int $userId ID of user responsible for payment + * @param int $assocId ID of associated entity + * @param float $amount Amount of currency $currencyCode + * @param string $currencyCode optional ISO 4217 currency code + * + * @return QueuedPayment + */ + public function createQueuedPayment($request, $type, $userId, $assocId, $amount, $currencyCode = null) + { + $payment = new QueuedPayment($amount, $this->_context->getData('currency'), $userId, $assocId); + $payment->setContextId($this->_context->getId()); + $payment->setType($type); + + switch ($type) { + case self::PAYMENT_TYPE_PURCHASE_FILE: + $submissionFile = Repo::submissionFile()->get($assocId); + if ($submissionFile->getData('fileStage') != SubmissionFile::SUBMISSION_FILE_PROOF) { + throw new Exception('The submission file for this queued payment is not in the correct file stage.'); + } + assert($submissionFile); + $payment->setRequestUrl($request->url(null, 'catalog', 'view', [ + $submissionFile->getData('submissionId'), + $submissionFile->getData('assocId'), + $assocId + ])); + break; + default: + // Invalid payment type. + assert(false); + break; + } + + return $payment; + } + + /** + * Get the payment plugin. + * + * @return PaymethodPlugin + */ + public function getPaymentPlugin() + { + $paymentMethodPluginName = $this->_context->getData('paymentPluginName'); + $paymentMethodPlugin = null; + if (!empty($paymentMethodPluginName)) { + $plugins = PluginRegistry::loadCategory('paymethod'); + if (isset($plugins[$paymentMethodPluginName])) { + $paymentMethodPlugin = $plugins[$paymentMethodPluginName]; + } + } + return $paymentMethodPlugin; + } + + /** + * Fulfill a queued payment. + * + * @param Request $request + * @param QueuedPayment $queuedPayment + * @param string $payMethodPluginName Name of payment plugin. + * + * @return mixed Dependent on payment type. + */ + public function fulfillQueuedPayment($request, $queuedPayment, $payMethodPluginName = null) + { + $returner = false; + if ($queuedPayment) { + switch ($queuedPayment->getType()) { + case self::PAYMENT_TYPE_PURCHASE_FILE: + $returner = true; + break; + default: + // Invalid payment type + assert(false); + } + } + + $ompCompletedPaymentDao = DAORegistry::getDAO('OMPCompletedPaymentDAO'); /** @var OMPCompletedPaymentDAO $ompCompletedPaymentDao */ + $completedPayment = $this->createCompletedPayment($queuedPayment, $payMethodPluginName); + $ompCompletedPaymentDao->insertCompletedPayment($completedPayment); + + $queuedPaymentDao = DAORegistry::getDAO('QueuedPaymentDAO'); /** @var QueuedPaymentDAO $queuedPaymentDao */ + $queuedPaymentDao->deleteById($queuedPayment->getId()); + + return $returner; + } + + /** + * Create a completed payment from a queued payment. + * + * @param QueuedPayment $queuedPayment Payment to complete. + * @param string $payMethod Name of payment plugin used. + * + * @return CompletedPayment + */ + public function createCompletedPayment($queuedPayment, $payMethod) + { + $payment = new CompletedPayment(); + $payment->setContextId($queuedPayment->getContextId()); + $payment->setType($queuedPayment->getType()); + $payment->setAmount($queuedPayment->getAmount()); + $payment->setCurrencyCode($queuedPayment->getCurrencyCode()); + $payment->setUserId($queuedPayment->getUserId()); + $payment->setAssocId($queuedPayment->getAssocId()); + $payment->setPayMethodPluginName($payMethod); + + return $payment; + } + + /** + * Returns the name of a payment. + * + * @return string + */ + public function getPaymentName($payment) + { + switch ($payment->getType()) { + case self::PAYMENT_TYPE_PURCHASE_FILE: + $submissionFile = Repo::submissionFile()->get($payment->getAssocId()); + if (!$submissionFile || $submissionFile->getData('assocType') !== Application::ASSOC_TYPE_PUBLICATION_FORMAT) { + return false; + } + + return $submissionFile->getLocalizedData('name'); + default: + // Invalid payment type + assert(false); + } + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\payment\omp\OMPPaymentManager', '\OMPPaymentManager'); + define('PAYMENT_TYPE_PURCHASE_FILE', OMPPaymentManager::PAYMENT_TYPE_PURCHASE_FILE); +} diff --git a/classes/plugins/IDoiRegistrationAgency.php b/classes/plugins/IDoiRegistrationAgency.php new file mode 100644 index 00000000000..76f03a0ae03 --- /dev/null +++ b/classes/plugins/IDoiRegistrationAgency.php @@ -0,0 +1,36 @@ +getPubIdType(); - - // If we already have an assigned pub id, use it. - $storedPubId = $pubObject->getStoredPubId($pubIdType); - if ($storedPubId) return $storedPubId; - - // Determine the type of the publishing object. - $pubObjectType = $this->getPubObjectType($pubObject); - - // Initialize variables for publication objects. - $submission = ($pubObjectType == 'Submission' ? $pubObject : null); - $representation = ($pubObjectType == 'Representation' ? $pubObject : null); - $submissionFile = ($pubObjectType == 'SubmissionFile' ? $pubObject : null); - $chapter = ($pubObjectType == 'Chapter' ? $pubObject : null); - - // Get the context id. - if ($pubObjectType == 'Submission') { - $contextId = $pubObject->getContextId(); - } else { - // Retrieve the submission. - if (is_a($pubObject, 'Chapter') || is_a($pubObject, 'Representation')) { - $publication = Services::get('publication')->get($pubObject->getData('publicationId')); - $submission = Services::get('submission')->get($publication->getData('submissionId')); - } else { - assert(is_a($pubObject, 'SubmissionFile')); - $submission = Services::get('submission')->get($pubObject->getData('submissionId')); - } - if (!$submission) return null; - // Now we can identify the context. - $contextId = $submission->getContextId(); - } - // Check the context - $context = $this->getContext($contextId); - if (!$context) return null; - $contextId = $context->getId(); - - // Check whether pub ids are enabled for the given object type. - $objectTypeEnabled = $this->isObjectTypeEnabled($pubObjectType, $contextId); - if (!$objectTypeEnabled) return null; - - // Retrieve the pub id prefix. - $pubIdPrefix = $this->getSetting($contextId, $this->getPrefixFieldName()); - if (empty($pubIdPrefix)) return null; - - // Generate the pub id suffix. - $suffixFieldName = $this->getSuffixFieldName(); - $suffixGenerationStrategy = $this->getSetting($contextId, $suffixFieldName); - switch ($suffixGenerationStrategy) { - case 'customId': - $pubIdSuffix = $pubObject->getData($suffixFieldName); - break; - - case 'pattern': - $suffixPatternsFieldNames = $this->getSuffixPatternsFieldNames(); - $pubIdSuffix = $this->getSetting($contextId, $suffixPatternsFieldNames[$pubObjectType]); - - // %p - press initials - $pubIdSuffix = PKPString::regexp_replace('/%p/', PKPString::regexp_replace('/[^-._;()\/A-Za-z0-9]/', '', PKPString::strtolower($context->getAcronym($context->getPrimaryLocale()))), $pubIdSuffix); - - // %x - custom identifier - if ($pubObject->getStoredPubId('publisher-id')) { - $pubIdSuffix = PKPString::regexp_replace('/%x/', $pubObject->getStoredPubId('publisher-id'), $pubIdSuffix); - } - - if ($submission) { - // %m - monograph id - $pubIdSuffix = PKPString::regexp_replace('/%m/', $submission->getId(), $pubIdSuffix); - } - - if ($chapter) { - // %c - chapter id - $pubIdSuffix = PKPString::regexp_replace('/%c/', $chapter->getId(), $pubIdSuffix); - } - - if ($representation) { - // %f - publication format id - $pubIdSuffix = PKPString::regexp_replace('/%f/', $representation->getId(), $pubIdSuffix); - } - - if ($submissionFile) { - // %s - file id - $pubIdSuffix = PKPString::regexp_replace('/%s/', $submissionFile->getId(), $pubIdSuffix); - } - - break; - - default: - $pubIdSuffix = PKPString::regexp_replace('/[^-._;()\/A-Za-z0-9]/', '', PKPString::strtolower($context->getAcronym($context->getPrimaryLocale()))); - - if ($submission) { - $pubIdSuffix .= '.' . $submission->getId(); - } - - if ($chapter) { - $pubIdSuffix .= '.c' . $chapter->getId(); - } - - if ($representation) { - $pubIdSuffix .= '.' . $representation->getId(); - } - - if ($submissionFile) { - $pubIdSuffix .= '.' . $submissionFile->getId(); - } - } - if (empty($pubIdSuffix)) return null; - - // Costruct the pub id from prefix and suffix. - $pubId = $this->constructPubId($pubIdPrefix, $pubIdSuffix, $contextId); - - return $pubId; - } - - /** - * @copydoc PKPPubIdPlugin::getDAOs() - */ - function getDAOs() { - return array_merge(parent::getDAOs(), array('Chapter' => DAORegistry::getDAO('ChapterDAO'))); - } - - /** - * @copydoc PKPPubIdPlugin::checkDuplicate() - */ - function checkDuplicate($pubId, $pubObjectType, $excludeId, $contextId) { - foreach ($this->getPubObjectTypes() as $type) { - if ($type === 'Chapter') { - $excludeTypeId = $type === $pubObjectType ? $excludeId : null; - if (DAORegistry::getDAO('ChapterDAO')->pubIdExists($this->getPubIdType(), $pubId, $excludeTypeId, $contextId)) { - return false; - } - } - } - - return true; - } -} - - diff --git a/classes/plugins/PubIdPlugin.php b/classes/plugins/PubIdPlugin.php new file mode 100644 index 00000000000..c5011076c60 --- /dev/null +++ b/classes/plugins/PubIdPlugin.php @@ -0,0 +1,239 @@ +getPubIdType(); + + // If we already have an assigned pub id, use it. + $storedPubId = $pubObject->getStoredPubId($pubIdType); + if ($storedPubId) { + return $storedPubId; + } + + // Determine the type of the publishing object. + $pubObjectType = $this->getPubObjectType($pubObject); + + // Initialize variables for publication objects. + $submission = null; + // Publication is actually handled differently now, but keep it here however for now. + $publication = ($pubObjectType == 'Publication' ? $pubObject : null); + $representation = ($pubObjectType == 'Representation' ? $pubObject : null); + $submissionFile = ($pubObjectType == 'SubmissionFile' ? $pubObject : null); + $chapter = ($pubObjectType == 'Chapter' ? $pubObject : null); + + // Retrieve the submission. + if (is_a($pubObject, 'Chapter') || is_a($pubObject, 'Representation')) { + $publication = Repo::publication()->get($pubObject->getData('publicationId')); + $submission = Repo::submission()->get($publication->getData('submissionId')); + } else { // Publication or SubmissionFile + $submission = Repo::submission()->get($pubObject->getData('submissionId')); + } + if (!$submission) { + return null; + } + // Now we can identify the context. + $contextId = $submission->getData('contextId'); + + // Check the context + $context = $this->getContext($contextId); + if (!$context) { + return null; + } + $contextId = $context->getId(); + + // Check whether pub ids are enabled for the given object type. + $objectTypeEnabled = $this->isObjectTypeEnabled($pubObjectType, $contextId); + if (!$objectTypeEnabled) { + return null; + } + + // Retrieve the pub id prefix. + $pubIdPrefix = $this->getSetting($contextId, $this->getPrefixFieldName()); + if (empty($pubIdPrefix)) { + return null; + } + + // Generate the pub id suffix. + $suffixFieldName = $this->getSuffixFieldName(); + $suffixGenerationStrategy = $this->getSetting($contextId, $suffixFieldName); + switch ($suffixGenerationStrategy) { + case 'customId': + $pubIdSuffix = $pubObject->getData($suffixFieldName); + break; + + case 'pattern': + $suffixPatternsFieldNames = $this->getSuffixPatternsFieldNames(); + $pubIdSuffix = $this->getSetting($contextId, $suffixPatternsFieldNames[$pubObjectType]); + + $pubIdSuffix = $this::generateCustomPattern($context, $pubIdSuffix, $pubObject, $submission, $chapter, $representation, $submissionFile); + + break; + + default: + $pubIdSuffix = $this::generateDefaultPattern($context, $submission, $chapter, $representation, $submissionFile); + } + if (empty($pubIdSuffix)) { + return null; + } + + // Construct the pub id from prefix and suffix. + $pubId = $this->constructPubId($pubIdPrefix, $pubIdSuffix, $contextId); + + return $pubId; + } + + /** + * Generate the default, semantic-based pub-id suffix pattern + * + */ + public static function generateDefaultPattern( + Context $context, + ?Submission $submission = null, + ?Chapter $chapter = null, + ?Representation $representation = null, + ?SubmissionFile $submissionFile = null + ): string { + $pubIdSuffix = PKPString::regexp_replace('/[^-._;()\/A-Za-z0-9]/', '', PKPString::strtolower($context->getAcronym($context->getPrimaryLocale()))); + + if ($submission) { + $pubIdSuffix .= '.' . $submission->getId(); + } + + if ($chapter) { + $pubIdSuffix .= '.c' . $chapter->getId(); + } + + if ($representation) { + $pubIdSuffix .= '.' . $representation->getId(); + } + + if ($submissionFile) { + $pubIdSuffix .= '.' . $submissionFile->getId(); + } + + return $pubIdSuffix; + } + + /** + * Generate the custom, user-defined pub-id suffix pattern + * + */ + public static function generateCustomPattern( + Context $context, + string $pubIdSuffix, + DataObject $pubObject, + ?Submission $submission = null, + ?Chapter $chapter = null, + ?Representation $representation = null, + ?SubmissionFile $submissionFile = null + ): string { + // %p - press initials + $pubIdSuffix = PKPString::regexp_replace('/%p/', PKPString::regexp_replace('/[^-._;()\/A-Za-z0-9]/', '', PKPString::strtolower($context->getAcronym($context->getPrimaryLocale()))), $pubIdSuffix); + /** @var Chapter $pubObject */ + // %x - custom identifier + if ($pubObject->getStoredPubId('publisher-id')) { + $pubIdSuffix = PKPString::regexp_replace('/%x/', $pubObject->getStoredPubId('publisher-id'), $pubIdSuffix); + } + + if ($submission) { + // %m - monograph id + $pubIdSuffix = PKPString::regexp_replace('/%m/', $submission->getId(), $pubIdSuffix); + } + + if ($chapter) { + // %c - chapter id + $pubIdSuffix = PKPString::regexp_replace('/%c/', $chapter->getId(), $pubIdSuffix); + } + + if ($representation) { + // %f - publication format id + $pubIdSuffix = PKPString::regexp_replace('/%f/', $representation->getId(), $pubIdSuffix); + } + + if ($submissionFile) { + // %s - file id + $pubIdSuffix = PKPString::regexp_replace('/%s/', $submissionFile->getId(), $pubIdSuffix); + } + + return $pubIdSuffix; + } + + /** + * @copydoc PKPPubIdPlugin::getDAOs() + */ + public function getDAOs() + { + return array_merge(parent::getDAOs(), [DAORegistry::getDAO('ChapterDAO')]); + } + + /** + * @copydoc PKPPubIdPlugin::checkDuplicate() + */ + public function checkDuplicate($pubId, $pubObjectType, $excludeId, $contextId) + { + /** @var ChapterDAO */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + foreach ($this->getPubObjectTypes() as $type => $fqcn) { + if ($type === 'Chapter') { + $excludeTypeId = $type === $pubObjectType ? $excludeId : null; + if ($chapterDao->pubIdExists($this->getPubIdType(), $pubId, $excludeTypeId, $contextId)) { + return false; + } + } + } + + return parent::checkDuplicate($pubId, $pubObjectType, $excludeId, $contextId); + } +} diff --git a/classes/press/FeatureDAO.inc.php b/classes/press/FeatureDAO.inc.php deleted file mode 100644 index 8aed73c3f0c..00000000000 --- a/classes/press/FeatureDAO.inc.php +++ /dev/null @@ -1,209 +0,0 @@ - monograph ID - */ - function getMonographIdsByAssoc($assocType, $assocId) { - $result = $this->retrieve( - 'SELECT submission_id, seq FROM features WHERE assoc_type = ? AND assoc_id = ? ORDER BY seq', - [(int) $assocType, (int) $assocId] - ); - - $returner = []; - foreach ($result as $row) { - $returner[$row->seq] = $row->submission_id; - } - return $returner; - } - - /** - * Get feature sequences by association. - * @param $assocType int ASSOC_TYPE_... - * @param $assocId int - * @return array Associative array monograph ID => seq - */ - function getSequencesByAssoc($assocType, $assocId) { - return array_flip($this->getMonographIdsByAssoc($assocType, $assocId)); - } - - /** - * Insert a new feature. - * @param $monographId int - * @param $assocType int ASSOC_TYPE_... - * @param $assocId int - * @param $seq int - */ - function insertFeature($monographId, $assocType, $assocId, $seq) { - $this->update( - 'INSERT INTO features - (submission_id, assoc_type, assoc_id, seq) - VALUES - (?, ?, ?, ?)', - [ - (int) $monographId, - (int) $assocType, - (int) $assocId, - (int) $seq - ] - ); - } - - /** - * Delete a feature by ID. - * @param $featureId int - * @param $pressId int optional - */ - function deleteByMonographId($monographId) { - $this->update( - 'DELETE FROM features WHERE submission_id = ?', - [(int) $monographId] - ); - } - - /** - * Delete a feature by association. - * @param $assocType int ASSOC_TYPE_... - * @param $assocId int - */ - function deleteByAssoc($assocType, $assocId) { - $this->update( - 'DELETE FROM features WHERE assoc_type = ? AND assoc_id = ?', - [(int) $assocType, (int) $assocId] - ); - } - - /** - * Delete a feature. - * @param $monographId int - * @param $assocType int ASSOC_TYPE_... - * @param $assocId int - */ - function deleteFeature($monographId, $assocType, $assocId) { - $this->update( - 'DELETE FROM features - WHERE submission_id = ? AND - assoc_type = ? AND - assoc_id = ?', - [ - (int) $monographId, - (int) $assocType, - (int) $assocId - ] - ); - } - - /** - * Check if the passed monograph id is featured on the - * passed associated object. - * @param $monographId int The monograph id to check the feature state. - * @param $assocType int The associated object type that the monograph - * is featured. - * @param $assocId int The associated object id that the monograph is - * featured. - * @return boolean Whether or not the monograph is featured. - */ - function isFeatured($monographId, $assocType, $assocId) { - $result = $this->retrieve( - 'SELECT submission_id FROM features WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', - [(int) $monographId, (int) $assocType, (int) $assocId] - ); - return (boolean) $result->current(); - } - - /** - * Return the monograph's featured settings in all assoc types - * @param $monographId int The monograph id to get the feature state. - * @return array - */ - function getFeaturedAll($monographId) { - $result = $this->retrieve( - 'SELECT assoc_type, assoc_id, seq FROM features WHERE submission_id = ?', - [(int) $monographId] - ); - - $featured = []; - foreach ($result as $row) { - $featured[] = array( - 'assoc_type' => (int) $row->assoc_type, - 'assoc_id' => (int) $row->assoc_id, - 'seq' => (int) $row->seq, - ); - } - return $featured; - } - - /** - * Get the current sequence position of the passed monograph id. - * @param $monographId int The monograph id to check the sequence position. - * @param $assocType int The monograph associated object type. - * @param $assocId int The monograph associated object id. - * @return int or boolean The monograph sequence position or false if no - * monograph feature is set. - */ - function getSequencePosition($monographId, $assocType, $assocId) { - $result = $this->retrieve( - 'SELECT seq FROM features WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', - [(int) $monographId, (int) $assocType, (int) $assocId] - ); - $row = $result->current(); - return $row ? $row->seq : false; - } - - function setSequencePosition($monographId, $assocType, $assocId, $sequencePosition) { - $this->update( - 'UPDATE features SET seq = ? WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', - [(int) $sequencePosition, (int) $monographId, (int) $assocType, (int) $assocId] - ); - } - - /** - * Resequence features by association. - * @param $assocType int ASSOC_TYPE_... - * @param $assocId int per $assocType - * @param $seqMonographId if specified, sequence of monograph to return - * @return array Associative array of id => seq for resequenced set - */ - function resequenceByAssoc($assocType, $assocId) { - $result = $this->retrieve( - 'SELECT submission_id FROM features WHERE assoc_type = ? AND assoc_id = ? ORDER BY seq', - [(int) $assocType, (int) $assocId] - ); - - $returner = []; - $i=2; - foreach ($result as $row) { - $this->update( - 'UPDATE features SET seq = ? WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', - [ - $i, - $row->submission_id, - (int) $assocType, - (int) $assocId - ] - ); - $returner[$row->submission_id] = $i; - $i += 2; - } - return $returner; - } -} - - diff --git a/classes/press/FeatureDAO.php b/classes/press/FeatureDAO.php new file mode 100644 index 00000000000..0b479399965 --- /dev/null +++ b/classes/press/FeatureDAO.php @@ -0,0 +1,239 @@ + monograph ID + */ + public function getMonographIdsByAssoc($assocType, $assocId) + { + $result = $this->retrieve( + 'SELECT submission_id, seq FROM features WHERE assoc_type = ? AND assoc_id = ? ORDER BY seq', + [(int) $assocType, (int) $assocId] + ); + + $returner = []; + foreach ($result as $row) { + $returner[$row->seq] = $row->submission_id; + } + return $returner; + } + + /** + * Get feature sequences by association. + * + * @param int $assocType Application::ASSOC_TYPE_... + * @param int $assocId + * + * @return array Associative array monograph ID => seq + */ + public function getSequencesByAssoc($assocType, $assocId) + { + return array_flip($this->getMonographIdsByAssoc($assocType, $assocId)); + } + + /** + * Insert a new feature. + * + * @param int $monographId + * @param int $assocType Application::ASSOC_TYPE_... + * @param int $assocId + * @param int $seq + */ + public function insertFeature($monographId, $assocType, $assocId, $seq) + { + $this->update( + 'INSERT INTO features + (submission_id, assoc_type, assoc_id, seq) + VALUES + (?, ?, ?, ?)', + [ + (int) $monographId, + (int) $assocType, + (int) $assocId, + (int) $seq + ] + ); + } + + /** + * Delete a feature by ID. + */ + public function deleteByMonographId($monographId) + { + $this->update( + 'DELETE FROM features WHERE submission_id = ?', + [(int) $monographId] + ); + } + + /** + * Delete a feature by association. + * + * @param int $assocType Application::ASSOC_TYPE_... + * @param int $assocId + */ + public function deleteByAssoc($assocType, $assocId) + { + $this->update( + 'DELETE FROM features WHERE assoc_type = ? AND assoc_id = ?', + [(int) $assocType, (int) $assocId] + ); + } + + /** + * Delete a feature. + * + * @param int $monographId + * @param int $assocType Application::ASSOC_TYPE_... + * @param int $assocId + */ + public function deleteFeature($monographId, $assocType, $assocId) + { + $this->update( + 'DELETE FROM features + WHERE submission_id = ? AND + assoc_type = ? AND + assoc_id = ?', + [ + (int) $monographId, + (int) $assocType, + (int) $assocId + ] + ); + } + + /** + * Check if the passed monograph id is featured on the + * passed associated object. + * + * @param int $monographId The monograph id to check the feature state. + * @param int $assocType The associated object type that the monograph + * is featured. + * @param int $assocId The associated object id that the monograph is + * featured. + * + * @return bool Whether or not the monograph is featured. + */ + public function isFeatured($monographId, $assocType, $assocId) + { + $result = $this->retrieve( + 'SELECT submission_id FROM features WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', + [(int) $monographId, (int) $assocType, (int) $assocId] + ); + return (bool) $result->current(); + } + + /** + * Return the monograph's featured settings in all assoc types + * + * @param int $monographId The monograph id to get the feature state. + * + * @return array + */ + public function getFeaturedAll($monographId) + { + $result = $this->retrieve( + 'SELECT assoc_type, assoc_id, seq FROM features WHERE submission_id = ?', + [(int) $monographId] + ); + + $featured = []; + foreach ($result as $row) { + $featured[] = [ + 'assoc_type' => (int) $row->assoc_type, + 'assoc_id' => (int) $row->assoc_id, + 'seq' => (int) $row->seq, + ]; + } + return $featured; + } + + /** + * Get the current sequence position of the passed monograph id. + * + * @param int $monographId The monograph id to check the sequence position. + * @param int $assocType The monograph associated object type. + * @param int $assocId The monograph associated object id. + * + * @return int or boolean The monograph sequence position or false if no + * monograph feature is set. + */ + public function getSequencePosition($monographId, $assocType, $assocId) + { + $result = $this->retrieve( + 'SELECT seq FROM features WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', + [(int) $monographId, (int) $assocType, (int) $assocId] + ); + $row = $result->current(); + return $row ? $row->seq : false; + } + + public function setSequencePosition($monographId, $assocType, $assocId, $sequencePosition) + { + $this->update( + 'UPDATE features SET seq = ? WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', + [(int) $sequencePosition, (int) $monographId, (int) $assocType, (int) $assocId] + ); + } + + /** + * Resequence features by association. + * + * @param int $assocType Application::ASSOC_TYPE_... + * @param int $assocId per $assocType + * + * @return array Associative array of id => seq for resequenced set + */ + public function resequenceByAssoc($assocType, $assocId) + { + $result = $this->retrieve( + 'SELECT submission_id FROM features WHERE assoc_type = ? AND assoc_id = ? ORDER BY seq', + [(int) $assocType, (int) $assocId] + ); + + $returner = []; + $i = 2; + foreach ($result as $row) { + $this->update( + 'UPDATE features SET seq = ? WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', + [ + $i, + $row->submission_id, + (int) $assocType, + (int) $assocId + ] + ); + $returner[$row->submission_id] = $i; + $i += 2; + } + return $returner; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\press\FeatureDAO', '\FeatureDAO'); +} diff --git a/classes/press/NewReleaseDAO.inc.php b/classes/press/NewReleaseDAO.inc.php deleted file mode 100644 index 9dbf867b37b..00000000000 --- a/classes/press/NewReleaseDAO.inc.php +++ /dev/null @@ -1,178 +0,0 @@ - true] - */ - function getMonographIdsByAssoc($assocType, $assocId) { - $result = $this->retrieve( - 'SELECT submission_id FROM new_releases WHERE assoc_type = ? AND assoc_id = ?', - [(int) $assocType, (int) $assocId] - ); - - $returner = []; - foreach ($result as $row) { - $returner[$row->submission_id] = true; - } - return $returner; - } - - /** - * Get monographs by association. - * @param $assocType int ASSOC_TYPE_... - * @param $assocId int - * @return array Monograph - */ - function getMonographsByAssoc($assocType, $assocId) { - // import STATUS_PUBLISHED constant - import('classes.submission.Submission'); - $result = $this->retrieve( - 'SELECT n.submission_id AS submission_id - FROM new_releases n, - submissions s, - publications p - WHERE n.submission_id = s.submission_id - AND p.publication_id = s.current_publication_id - AND n.assoc_type = ? AND n.assoc_id = ? - AND s.status = ? - ORDER BY p.date_published DESC', - [(int) $assocType, (int) $assocId, STATUS_PUBLISHED] - ); - - $returner = []; - foreach ($result as $row) { - $returner[] = Services::get('submission')->get($row->submission_id); - } - return $returner; - } - - /** - * Insert a new NewRelease. - * @param $monographId int - * @param $assocType int ASSOC_TYPE_... - * @param $assocId int - */ - function insertNewRelease($monographId, $assocType, $assocId) { - $this->update( - 'INSERT INTO new_releases - (submission_id, assoc_type, assoc_id) - VALUES - (?, ?, ?)', - [ - (int) $monographId, - (int) $assocType, - (int) $assocId - ] - ); - } - - /** - * Delete a new release by ID. - * @param $monographId int - * @param $pressId int optional - */ - function deleteByMonographId($monographId) { - $this->update( - 'DELETE FROM new_releases WHERE submission_id = ?', - [(int) $monographId] - ); - } - - /** - * Delete a new release by association. - * @param $assocType int ASSOC_TYPE_... - * @param $assocId int - */ - function deleteByAssoc($assocType, $assocId) { - $this->update( - 'DELETE FROM new_releases WHERE assoc_type = ? AND assoc_id = ?', - [(int) $assocType, (int) $assocId] - ); - } - - /** - * Delete a new release. - * @param $monographId int - * @param $assocType int ASSOC_TYPE_... - * @param $assocId int - */ - function deleteNewRelease($monographId, $assocType, $assocId) { - $this->update( - 'DELETE FROM new_releases - WHERE submission_id = ? AND - assoc_type = ? AND - assoc_id = ?', - [ - (int) $monographId, - (int) $assocType, - (int) $assocId - ] - ); - } - - /** - * Check if the passed monograph id is marked as new release - * on the passed associated object. - * @param $monographId int The monograph id to check the new release state. - * @param $assocType int The associated object type that the monograph - * is checked for a new release mark. - * @param $assocId int The associated object id that the monograph is - * checked for a new release mark. - * @return boolean Whether or not the monograph is marked as a new release. - */ - function isNewRelease($monographId, $assocType, $assocId) { - $result = $this->retrieve( - 'SELECT submission_id FROM new_releases WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', - [(int) $monographId, (int) $assocType, (int) $assocId] - ); - return (boolean) $result->current(); - } - - /** - * Return the monograph's new release settings in all assoc types - * - * @param $monographId int The monograph ID to get the new release state - * @return array - */ - function getNewReleaseAll($monographId) { - $result = $this->retrieve( - 'SELECT assoc_type, assoc_id FROM new_releases WHERE submission_id = ?', - [(int) $monographId] - ); - - $newRelease = []; - foreach ($result as $row) { - $newRelease[] = [ - 'assoc_type' => (int) $row->assoc_type, - 'assoc_id' => (int) $row->assoc_id, - ]; - } - return $newRelease; - } -} - - diff --git a/classes/press/NewReleaseDAO.php b/classes/press/NewReleaseDAO.php new file mode 100644 index 00000000000..2afe54a65cb --- /dev/null +++ b/classes/press/NewReleaseDAO.php @@ -0,0 +1,197 @@ + true] + */ + public function getMonographIdsByAssoc($assocType, $assocId) + { + $result = $this->retrieve( + 'SELECT submission_id FROM new_releases WHERE assoc_type = ? AND assoc_id = ?', + [(int) $assocType, (int) $assocId] + ); + + $returner = []; + foreach ($result as $row) { + $returner[$row->submission_id] = true; + } + return $returner; + } + + /** + * Get monographs by association. + * + * @param int $assocType Application::ASSOC_TYPE_... + * @param int $assocId + * + * @return array Monograph + */ + public function getMonographsByAssoc($assocType, $assocId) + { + $result = $this->retrieve( + 'SELECT n.submission_id AS submission_id + FROM new_releases n, + submissions s, + publications p + WHERE n.submission_id = s.submission_id + AND p.publication_id = s.current_publication_id + AND n.assoc_type = ? AND n.assoc_id = ? + AND s.status = ? + ORDER BY p.date_published DESC', + [(int) $assocType, (int) $assocId, PKPSubmission::STATUS_PUBLISHED] + ); + + $returner = []; + foreach ($result as $row) { + $returner[] = Repo::submission()->get($row->submission_id); + } + return $returner; + } + + /** + * Insert a new NewRelease. + * + * @param int $monographId + * @param int $assocType Application::ASSOC_TYPE_... + * @param int $assocId + */ + public function insertNewRelease($monographId, $assocType, $assocId) + { + $this->update( + 'INSERT INTO new_releases + (submission_id, assoc_type, assoc_id) + VALUES + (?, ?, ?)', + [ + (int) $monographId, + (int) $assocType, + (int) $assocId + ] + ); + } + + /** + * Delete a new release by ID. + * + * @param int $monographId + */ + public function deleteByMonographId($monographId) + { + $this->update( + 'DELETE FROM new_releases WHERE submission_id = ?', + [(int) $monographId] + ); + } + + /** + * Delete a new release by association. + * + * @param int $assocType Application::ASSOC_TYPE_... + * @param int $assocId + */ + public function deleteByAssoc($assocType, $assocId) + { + $this->update( + 'DELETE FROM new_releases WHERE assoc_type = ? AND assoc_id = ?', + [(int) $assocType, (int) $assocId] + ); + } + + /** + * Delete a new release. + * + * @param int $monographId + * @param int $assocType Application::ASSOC_TYPE_... + * @param int $assocId + */ + public function deleteNewRelease($monographId, $assocType, $assocId) + { + $this->update( + 'DELETE FROM new_releases + WHERE submission_id = ? AND + assoc_type = ? AND + assoc_id = ?', + [ + (int) $monographId, + (int) $assocType, + (int) $assocId + ] + ); + } + + /** + * Check if the passed monograph id is marked as new release + * on the passed associated object. + * + * @param int $monographId The monograph id to check the new release state. + * @param int $assocType The associated object type that the monograph + * is checked for a new release mark. + * @param int $assocId The associated object id that the monograph is + * checked for a new release mark. + * + * @return bool Whether or not the monograph is marked as a new release. + */ + public function isNewRelease($monographId, $assocType, $assocId) + { + $result = $this->retrieve( + 'SELECT submission_id FROM new_releases WHERE submission_id = ? AND assoc_type = ? AND assoc_id = ?', + [(int) $monographId, (int) $assocType, (int) $assocId] + ); + return (bool) $result->current(); + } + + /** + * Return the monograph's new release settings in all assoc types + * + * @param int $monographId The monograph ID to get the new release state + * + * @return array + */ + public function getNewReleaseAll($monographId) + { + $result = $this->retrieve( + 'SELECT assoc_type, assoc_id FROM new_releases WHERE submission_id = ?', + [(int) $monographId] + ); + + $newRelease = []; + foreach ($result as $row) { + $newRelease[] = [ + 'assoc_type' => (int) $row->assoc_type, + 'assoc_id' => (int) $row->assoc_id, + ]; + } + return $newRelease; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\press\NewReleaseDAO', '\NewReleaseDAO'); +} diff --git a/classes/press/Press.inc.php b/classes/press/Press.inc.php deleted file mode 100644 index 745e616dcf5..00000000000 --- a/classes/press/Press.inc.php +++ /dev/null @@ -1,101 +0,0 @@ -getData('name'); - foreach (array(AppLocale::getLocale(), AppLocale::getPrimaryLocale()) as $locale) { - if (isset($titleArray[$locale])) return $titleArray[$locale]; - } - return null; - } - - /** - * @deprecated Since OMP 3.2.1, use getLocalizedPageHeaderTitle instead. - * @return string - */ - function getPageHeaderTitle() { - return $this->getLocalizedPageHeaderTitle(); - } - - /** - * Get "localized" press page logo (if applicable). - * @return array|null - * @deprecated 3.3.0, use getLocalizedData() instead - */ - function getLocalizedPageHeaderLogo() { - $logoArray = $this->getData('pageHeaderLogoImage'); - foreach (array(AppLocale::getLocale(), AppLocale::getPrimaryLocale()) as $locale) { - if (isset($logoArray[$locale])) return $logoArray[$locale]; - } - return null; - } - - /** - * @deprecated Since OMP 3.2.1, use getLocalizedPageHeaderLogo instead. - * @return array|null - */ - function getPageHeaderLogo() { - return $this->getLocalizedPageHeaderLogo(); - } - - /** - * Returns true if this press contains the fields required for creating valid - * ONIX export metadata. - * @return boolean - */ - function hasRequiredOnixHeaderFields() { - if ($this->getData('codeType') != '' && $this->getData('codeValue') != '') { - return true; - } else { - return false; - } - } - - /** - * Get the association type for this context. - * @return int - */ - public function getAssocType() { - return ASSOC_TYPE_PRESS; - } - - /** - * Get the DAO for this context object. - * @return DAO - */ - function getDAO() { - return DAORegistry::getDAO('PressDAO'); - } -} diff --git a/classes/press/Press.php b/classes/press/Press.php new file mode 100644 index 00000000000..2a577d38199 --- /dev/null +++ b/classes/press/Press.php @@ -0,0 +1,128 @@ +getData('name'); + foreach ([Locale::getLocale(), $this->getPrimaryLocale()] as $locale) { + if (isset($titleArray[$locale])) { + return $titleArray[$locale]; + } + } + return null; + } + + /** + * @deprecated Since OMP 3.2.1, use getLocalizedPageHeaderTitle instead. + * + * @return string + */ + public function getPageHeaderTitle() + { + return $this->getLocalizedPageHeaderTitle(); + } + + /** + * Get "localized" press page logo (if applicable). + * + * @return array|null + * + * @deprecated 3.3.0, use getLocalizedData() instead + */ + public function getLocalizedPageHeaderLogo() + { + $logoArray = $this->getData('pageHeaderLogoImage'); + foreach ([Locale::getLocale(), $this->getPrimaryLocale()] as $locale) { + if (isset($logoArray[$locale])) { + return $logoArray[$locale]; + } + } + return null; + } + + /** + * @deprecated Since OMP 3.2.1, use getLocalizedPageHeaderLogo instead. + * + * @return array|null + */ + public function getPageHeaderLogo() + { + return $this->getLocalizedPageHeaderLogo(); + } + + /** + * Returns true if this press contains the fields required for creating valid + * ONIX export metadata. + * + * @return bool + */ + public function hasRequiredOnixHeaderFields() + { + if ($this->getData('codeType') != '' && $this->getData('codeValue') != '') { + return true; + } else { + return false; + } + } + + /** + * Get the association type for this context. + * + * @return int + */ + public function getAssocType() + { + return Application::ASSOC_TYPE_PRESS; + } + + /** + * Get the DAO for this context object. + * + * @return PressDAO + */ + public function getDAO() + { + /** @var PressDAO */ + $dao = DAORegistry::getDAO('PressDAO'); + return $dao; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\press\Press', '\Press'); +} diff --git a/classes/press/PressDAO.inc.php b/classes/press/PressDAO.inc.php deleted file mode 100644 index 88bbf464cd8..00000000000 --- a/classes/press/PressDAO.inc.php +++ /dev/null @@ -1,106 +0,0 @@ - 'press_id', - 'urlPath' => 'path', - 'enabled' => 'enabled', - 'seq' => 'seq', - 'primaryLocale' => 'primary_locale', - ]; - - /** - * Construct a new data object corresponding to this DAO. - * @return Press - */ - function newDataObject() { - return new Press(); - } - - /** - * Delete the public IDs of all publishing objects in a press. - * @param $pressId int - * @param $pubIdType string One of the NLM pub-id-type values or - * 'other::something' if not part of the official NLM list - * (see ). - */ - function deleteAllPubIds($pressId, $pubIdType) { - $pubObjectDaos = array('PublicationDAO', 'ChapterDAO', 'PublicationFormatDAO'); - foreach($pubObjectDaos as $daoName) { - $dao = DAORegistry::getDAO($daoName); - $dao->deleteAllPubIds($pressId, $pubIdType); - } - import('classes.submission.SubmissionFileDAO'); - $submissionFileDao = new SubmissionFileDAO(); - $submissionFileDao->deleteAllPubIds($pressId, $pubIdType); - } - - - /** - * Check whether the given public ID exists for any publishing - * object in a press. - * @param $pressId int - * @param $pubIdType string One of the NLM pub-id-type values or - * 'other::something' if not part of the official NLM list - * (see ). - * @param $pubId string - * @param $assocType int The object type of an object to be excluded from - * the search. Identified by one of the ASSOC_TYPE_* constants. - * @param $assocId int The id of an object to be excluded from the search. - * @param $forSameType boolean Whether only the same objects should be considered. - * @return boolean - */ - function anyPubIdExists($pressId, $pubIdType, $pubId, - $assocType = ASSOC_TYPE_ANY, $assocId = 0, $forSameType = false) { - $pubObjectDaos = array( - ASSOC_TYPE_SUBMISSION => DAORegistry::getDAO('SubmissionDAO'), - ASSOC_TYPE_CHAPTER => DAORegistry::getDAO('ChapterDAO'), - ASSOC_TYPE_REPRESENTATION => Application::getRepresentationDAO(), - ASSOC_TYPE_SUBMISSION_FILE => DAORegistry::getDAO('SubmissionFileDAO') - ); - if ($forSameType) { - $dao = $pubObjectDaos[$assocType]; - $excludedId = $assocId; - if ($dao->pubIdExists($pubIdType, $pubId, $excludedId, $pressId)) return true; - return false; - } - foreach($pubObjectDaos as $daoAssocType => $dao) { - if ($assocType == $daoAssocType) { - $excludedId = $assocId; - } else { - $excludedId = 0; - } - if ($dao->pubIdExists($pubIdType, $pubId, $excludedId, $pressId)) return true; - } - return false; - } -} diff --git a/classes/press/PressDAO.php b/classes/press/PressDAO.php new file mode 100644 index 00000000000..ec2714fb276 --- /dev/null +++ b/classes/press/PressDAO.php @@ -0,0 +1,140 @@ + + */ +class PressDAO extends ContextDAO +{ + /** @copydoc SchemaDAO::$schemaName */ + public $schemaName = 'context'; + + /** @copydoc SchemaDAO::$tableName */ + public $tableName = 'presses'; + + /** @copydoc SchemaDAO::$settingsTableName */ + public $settingsTableName = 'press_settings'; + + /** @copydoc SchemaDAO::$primaryKeyColumn */ + public $primaryKeyColumn = 'press_id'; + + /** @var array Maps schema properties for the primary table to their column names */ + public $primaryTableColumns = [ + 'id' => 'press_id', + 'urlPath' => 'path', + 'enabled' => 'enabled', + 'seq' => 'seq', + 'primaryLocale' => 'primary_locale', + ]; + + /** + * Construct a new data object corresponding to this DAO. + * + * @return Press + */ + public function newDataObject() + { + return new Press(); + } + + /** + * Delete the public IDs of all publishing objects in a press. + * + * @param int $pressId + * @param string $pubIdType One of the NLM pub-id-type values or + * 'other::something' if not part of the official NLM list + * (see ). + */ + public function deleteAllPubIds($pressId, $pubIdType) + { + $pubObjectDaos = ['ChapterDAO', 'PublicationFormatDAO']; + foreach ($pubObjectDaos as $daoName) { + /** @var ChapterDAO|PublicationFormatDAO */ + $dao = DAORegistry::getDAO($daoName); + $dao->deleteAllPubIds($pressId, $pubIdType); + } + + Repo::submissionFile()->dao->deleteAllPubIds($pressId, $pubIdType); + Repo::publication()->dao->deleteAllPubIds($pressId, $pubIdType); + } + + + /** + * Check whether the given public ID exists for any publishing + * object in a press. + * + * @param int $pressId + * @param string $pubIdType One of the NLM pub-id-type values or + * 'other::something' if not part of the official NLM list + * (see ). + * @param string $pubId + * @param int $assocType The object type of an object to be excluded from + * the search. Identified by one of the Application::ASSOC_TYPE_* constants. + * @param int $assocId The id of an object to be excluded from the search. + * @param bool $forSameType Whether only the same objects should be considered. + * + * @return bool + */ + public function anyPubIdExists( + $pressId, + $pubIdType, + $pubId, + $assocType = MetadataTypeDescription::ASSOC_TYPE_ANY, + $assocId = 0, + $forSameType = false + ) { + $pubObjectDaos = [ + Application::ASSOC_TYPE_SUBMISSION => Repo::submission()->dao, + Application::ASSOC_TYPE_CHAPTER => DAORegistry::getDAO('ChapterDAO'), + Application::ASSOC_TYPE_REPRESENTATION => Application::getRepresentationDAO(), + Application::ASSOC_TYPE_SUBMISSION_FILE => Repo::submissionFile()->dao, + ]; + if ($forSameType) { + $dao = $pubObjectDaos[$assocType]; + $excludedId = $assocId; + if ($dao->pubIdExists($pubIdType, $pubId, $excludedId, $pressId)) { + return true; + } + return false; + } + foreach ($pubObjectDaos as $daoAssocType => $dao) { + if ($assocType == $daoAssocType) { + $excludedId = $assocId; + } else { + $excludedId = 0; + } + if ($dao->pubIdExists($pubIdType, $pubId, $excludedId, $pressId)) { + return true; + } + } + return false; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\press\PressDAO', '\PressDAO'); +} diff --git a/classes/press/PressSettingsDAO.inc.php b/classes/press/PressSettingsDAO.inc.php deleted file mode 100644 index 7ac8fe8497a..00000000000 --- a/classes/press/PressSettingsDAO.inc.php +++ /dev/null @@ -1,42 +0,0 @@ -getContextId(); - } - - /** - * Set ID of press. - * @param $pressId int - */ - function setPressId($pressId) { - return $this->setContextId($pressId); - } - - /** - * Get localized title of section. - * @param $includePrefix bool - * @return string - */ - function getLocalizedTitle($includePrefix = true) { - $title = $this->getLocalizedData('title'); - if ($includePrefix) { - $title = $this->getLocalizedPrefix() . ' ' . $title; - } - return $title; - } - - /** - * Get title of section. - * @param $locale - * @param $includePrefix bool - * @return string - */ - function getTitle($locale, $includePrefix = true) { - $title = $this->getData('title', $locale); - if ($includePrefix) { - if (is_array($title)) { - foreach($title as $locale => $currentTitle) { - $title[$locale] = $this->getPrefix($locale) . ' ' . $currentTitle; - } - } else { - $title = $this->getPrefix($locale) . ' ' . $title; - } - } - return $title; - } - - /** - * Get the series full title (with title and subtitle). - * @return string - */ - function getLocalizedFullTitle() { - $fullTitle = $this->getLocalizedTitle(); - - if ($subtitle = $this->getLocalizedSubtitle()) { - $fullTitle = PKPString::concatTitleFields(array($fullTitle, $subtitle)); - } - - return $fullTitle; - } - - /** - * Get localized prefix for the series. - * @return string - */ - function getLocalizedPrefix() { - return $this->getLocalizedData('prefix'); - } - - /** - * Get prefix of series. - * @param $locale string - * @return string - */ - function getPrefix($locale) { - return $this->getData('prefix', $locale); - } - - /** - * Set prefix of series. - * @param $prefix string - * @param $locale string - */ - function setPrefix($prefix, $locale) { - return $this->setData('prefix', $prefix, $locale); - } - - /** - * Get the localized version of the subtitle - * @return string - */ - function getLocalizedSubtitle() { - return $this->getLocalizedData('subtitle'); - } - - /** - * Get the subtitle for a given locale - * @param string $locale - * @return string - */ - function getSubtitle($locale) { - return $this->getData('subtitle', $locale); - } - - /** - * Set the subtitle for a locale - * @param string $subtitle - * @param string $locale - */ - function setSubtitle($subtitle, $locale) { - return $this->setData('subtitle', $subtitle, $locale); - } - - /** - * Get path to series (in URL). - * @return string - */ - function getPath() { - return $this->getData('path'); - } - - /** - * Set path to series (in URL). - * @param $path string - */ - function setPath($path) { - return $this->setData('path', $path); - } - - /** - * Get series description. - * @return string - */ - function getLocalizedDescription() { - return $this->getLocalizedData('description'); - } - - /** - * Get series description. - * @return string - */ - function getDescription($locale) { - return $this->getData('description', $locale); - } - - /** - * Set series description. - * @param string - */ - function setDescription($description, $locale) { - $this->setData('description', $description, $locale); - } - - /** - * Get the featured flag. - * @return boolean - */ - function getFeatured() { - return $this->getData('featured'); - } - - /** - * Set the featured flag. - * @param $featured boolean - */ - function setFeatured($featured) { - $this->setData('featured', $featured); - } - - /** - * Get the image. - * @return array - */ - function getImage() { - return $this->getData('image'); - } - - /** - * Set the image. - * @param $image array - */ - function setImage($image) { - return $this->setData('image', $image); - } - - /** - * Get online ISSN. - * @return string - */ - function getOnlineISSN() { - return $this->getData('onlineIssn'); - } - - /** - * Set online ISSN. - * @param $onlineIssn string - */ - function setOnlineISSN($onlineIssn) { - return $this->setData('onlineIssn', $onlineIssn); - } - - /** - * Get print ISSN. - * @return string - */ - function getPrintISSN() { - return $this->getData('printIssn'); - } - - /** - * Set print ISSN. - * @param $printIssn string - */ - function setPrintISSN($printIssn) { - return $this->setData('printIssn', $printIssn); - } - - /** - * Get the option how the books in this series should be sorted, - * in the form: concat(sortBy, sortDir). - * @return string - */ - function getSortOption() { - return $this->getData('sortOption'); - } - - /** - * Set the option how the books in this series should be sorted, - * in the form: concat(sortBy, sortDir). - * @param $sortOption string - */ - function setSortOption($sortOption) { - return $this->setData('sortOption', $sortOption); - } - - /** - * Returns a string with the full name of all series - * editors, separated by a comma. - * @return string - */ - function getEditorsString() { - $subEditorsDao = DAORegistry::getDAO('SubEditorsDAO'); /* @var $subEditorsDao SubEditorsDAO */ - $editors = $subEditorsDao->getBySubmissionGroupId($this->getId(), ASSOC_TYPE_SECTION, $this->getPressId()); - - $separator = ', '; - $str = ''; - - foreach ($editors as $editor) { - if (!empty($str)) { - $str .= $separator; - } - - $str .= $editor->getFullName(); - $editor = null; - } - - return $str; - } - - /** - * Return boolean indicating if series should be inactivated. - * @return int - */ - function getIsInactive() { - return $this->getData('isInactive'); - } - - /** - * Set if series should be inactivated. - * @param $isInactive int - */ - function setIsInactive($isInactive) { - $this->setData('isInactive', $isInactive); - } - -} - - diff --git a/classes/press/SeriesDAO.inc.php b/classes/press/SeriesDAO.inc.php deleted file mode 100644 index d2b659011d0..00000000000 --- a/classes/press/SeriesDAO.inc.php +++ /dev/null @@ -1,375 +0,0 @@ -retrieve( - 'SELECT * - FROM series - WHERE series_id = ? - ' . ($pressId?' AND press_id = ?':''), - $params - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Retrieve a series by path. - * @param $path string - * @param $pressId int - * @return Series|null - */ - function getByPath($path, $pressId) { - $result = $this->retrieve( - 'SELECT * FROM series WHERE path = ? AND press_id = ?', - [(string) $path, (int) $pressId] - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Construct a new data object corresponding to this DAO. - * @return Series - */ - function newDataObject() { - return new Series(); - } - - /** - * Internal function to return an Series object from a row. - * @param $row array - * @return Series - */ - function _fromRow($row) { - $series = parent::_fromRow($row); - - $series->setId($row['series_id']); - $series->setPressId($row['press_id']); - $series->setFeatured($row['featured']); - $series->setImage(unserialize($row['image'])); - $series->setPath($row['path']); - $series->setIsInactive($row['is_inactive']); - - $this->getDataObjectSettings('series_settings', 'series_id', $row['series_id'], $series); - - HookRegistry::call('SeriesDAO::_fromRow', array(&$series, &$row)); - - return $series; - } - - /** - * Get the list of fields for which data can be localized. - * @return array - */ - function getLocaleFieldNames() { - return array_merge( - parent::getLocaleFieldNames(), - ['description', 'prefix', 'subtitle'] - ); - } - - /** - * Get a list of additional fields. - * @return array - */ - function getAdditionalFieldNames() { - return array_merge( - parent::getAdditionalFieldNames(), - ['onlineIssn', 'printIssn', 'sortOption'] - ); - } - - /** - * Update the localized fields for this table - * @param $series object - */ - function updateLocaleFields($series) { - $this->updateDataObjectSettings( - 'series_settings', - $series, - ['series_id' => (int) $series->getId()] - ); - } - - /** - * Insert a new series. - * @param $series Series - */ - function insertObject($series) { - $this->update( - 'INSERT INTO series - (press_id, seq, featured, path, image, editor_restricted, is_inactive) - VALUES - (?, ?, ?, ?, ?, ?, ?)', - [ - (int) $series->getPressId(), - (float) $series->getSequence(), - (int) $series->getFeatured(), - (string) $series->getPath(), - serialize($series->getImage() ? $series->getImage() : array()), - (int) $series->getEditorRestricted(), - (int) $series->getIsInactive() ? 1 : 0, - ] - ); - - $series->setId($this->getInsertId()); - $this->updateLocaleFields($series); - return $series->getId(); - } - - /** - * Update an existing series. - * @param $series Series - */ - function updateObject($series) { - $this->update( - 'UPDATE series - SET press_id = ?, - seq = ?, - featured = ?, - path = ?, - image = ?, - editor_restricted = ?, - is_inactive = ? - WHERE series_id = ?', - [ - (int) $series->getPressId(), - (float) $series->getSequence(), - (int) $series->getFeatured(), - (string) $series->getPath(), - serialize($series->getImage() ? $series->getImage() : array()), - (int) $series->getEditorRestricted(), - (int) $series->getIsInactive(), - (int) $series->getId(), - ] - ); - $this->updateLocaleFields($series); - } - - /** - * Delete an series by ID. - * @param $seriesId int - * @param $contextId int optional - */ - function deleteById($seriesId, $contextId = null) { - // Validate the $contextId, if supplied. - if (!$this->seriesExists($seriesId, $contextId)) return false; - - $subEditorsDao = DAORegistry::getDAO('SubEditorsDAO'); /* @var $subEditorsDao SubEditorsDAO */ - $subEditorsDao->deleteBySubmissionGroupId($seriesId, ASSOC_TYPE_SECTION, $contextId); - - // Remove monographs from this series - $submissionsIterator = Services::get('submission')->getMany(['seriesIds' => $seriesId, 'count' => 1000]); - foreach ($submissionsIterator as $submission) { - foreach ((array) $submission->getData('publications') as $publication) { - Services::get('publication')->edit($publication, ['seriesId' => 0]); - } - } - - // Delete the series and settings. - $this->update('DELETE FROM series WHERE series_id = ?', [(int) $seriesId]); - $this->update('DELETE FROM series_settings WHERE series_id = ?', [(int) $seriesId]); - } - - /** - * Delete series by press ID - * NOTE: This does not delete dependent entries EXCEPT from series_editors. It is intended - * to be called only when deleting a press. - * @param $pressId int - */ - function deleteByPressId($pressId) { - $this->deleteByContextId($pressId); - } - - /** - * Retrieve all series for a press. - * @return DAOResultFactory containing Series ordered by sequence - */ - function getByPressId($pressId, $rangeInfo = null) { - return $this->getByContextId($pressId, $rangeInfo); - } - - /** - * @copydoc PKPSectionDAO::getByContextId() - */ - function getByContextId($pressId, $rangeInfo = null, $submittableOnly = false) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT s.*, COALESCE(stpl.setting_value, stl.setting_value) AS series_title FROM series s - LEFT JOIN series_settings stpl ON (s.series_id = stpl.series_id AND stpl.setting_name = ? AND stpl.locale = ?) - LEFT JOIN series_settings stl ON (s.series_id = stl.series_id AND stl.setting_name = ? AND stl.locale = ?) - WHERE press_id = ? - ORDER BY seq', - [ - 'title', AppLocale::getPrimaryLocale(), - 'title', AppLocale::getLocale(), - (int) $pressId - ], - $rangeInfo - ), - $this, - '_fromRow' - ); - } - - /** - * Retrieve the IDs and titles of the series for a press in an associative array. - * @return array - */ - function getTitlesByPressId($pressId, $submittableOnly = false) { - $seriesTitles = []; - - $seriesIterator = $this->getByPressId($pressId, null); - while ($series = $seriesIterator->next()) { - if ($submittableOnly) { - if (!$series->getEditorRestricted()) { - $seriesTitles[$series->getId()] = $series->getLocalizedTitle(); - } - } else { - $seriesTitles[$series->getId()] = $series->getLocalizedTitle(); - } - } - - return $seriesTitles; - } - - /** - * Check if an series exists with the specified ID. - * @param $seriesId int - * @param $pressId int - * @return boolean - */ - function seriesExists($seriesId, $pressId) { - $result = $this->retrieve( - 'SELECT COUNT(*) AS row_count FROM series WHERE series_id = ? AND press_id = ?', - [(int) $seriesId, (int) $pressId] - ); - $row = $result->current(); - return $row && $row->row_count; - } - - /** - * Get the ID of the last inserted series. - * @return int - */ - function getInsertId() { - return $this->_getInsertId('series', 'series_id'); - } - - /** - * Associate a category with a series. - * @param $seriesId int - * @param $categoryId int - */ - function addCategory($seriesId, $categoryId) { - $this->update( - 'INSERT INTO series_categories - (series_id, category_id) - VALUES - (?, ?)', - [(int) $seriesId, (int) $categoryId] - ); - } - - /** - * Unassociate all categories with a series - * - * @param $seriesId int - */ - public function removeCategories($seriesId) { - $this->update('DELETE FROM series_categories WHERE series_id = ?', [(int) $seriesId]); - } - - /** - * Get the categories associated with a given series. - * @param $seriesId int - * @return DAOResultFactory - */ - function getCategories($seriesId, $pressId = null) { - $params = [(int) $seriesId]; - if ($pressId) $params[] = (int) $pressId; - return new DAOResultFactory( - $this->retrieve( - 'SELECT c.* - FROM categories c, - series_categories sc, - series s - WHERE c.category_id = sc.category_id AND - s.series_id = ? AND - ' . ($pressId?' c.context_id = s.press_id AND s.press_id = ? AND':'') . ' - s.series_id = sc.series_id', - $params - ), - DAORegistry::getDAO('CategoryDAO'), - '_fromRow' - ); - } - - /** - * Get the categories not associated with a given series. - * @param $seriesId int - * @return DAOResultFactory - */ - function getUnassignedCategories($seriesId, $pressId = null) { - $params = [(int) $seriesId]; - if ($pressId) $params[] = (int) $pressId; - return new DAOResultFactory( - $this->retrieve( - 'SELECT c.* - FROM series s - JOIN categories c ON (c.context_id = s.press_id) - LEFT JOIN series_categories sc ON (s.series_id = sc.series_id AND sc.category_id = c.category_id) - WHERE s.series_id = ? AND - ' . ($pressId?' s.press_id = ? AND':'') . ' - sc.series_id IS NULL', - $params - ), - DAORegistry::getDAO('CategoryDAO'), - '_fromRow' - ); - } - - /** - * Check if an series exists with the specified ID. - * @param $seriesId int - * @param $pressId int - * @return boolean - */ - function categoryAssociationExists($seriesId, $categoryId) { - $result = $this->retrieve( - 'SELECT COUNT(*) AS row_count FROM series_categories WHERE series_id = ? AND category_id = ?', - array((int) $seriesId, (int) $categoryId) - ); - $row = $result->current(); - return $row && $row->row_count; - } -} - - diff --git a/classes/publication/DAO.php b/classes/publication/DAO.php new file mode 100644 index 00000000000..555bef3ab5a --- /dev/null +++ b/classes/publication/DAO.php @@ -0,0 +1,52 @@ + 'publication_id', + 'accessStatus' => 'access_status', + 'datePublished' => 'date_published', + 'lastModified' => 'last_modified', + 'locale' => 'locale', + 'primaryContactId' => 'primary_contact_id', + 'seq' => 'seq', + 'seriesId' => 'series_id', + 'submissionId' => 'submission_id', + 'status' => 'status', + 'urlPath' => 'url_path', + 'version' => 'version', + 'seriesPosition' => 'series_position', + 'doiId' => 'doi_id' + ]; + + /** + * @copydoc SchemaDAO::_fromRow() + */ + public function fromRow(object $primaryRow): Publication + { + /** @var ChapterDAO */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + $publication = parent::fromRow($primaryRow); + $publication->setData('publicationFormats', Application::getRepresentationDao()->getByPublicationId($publication->getId())); + $publication->setData('chapters', $chapterDao->getByPublicationId($publication->getId())->toArray()); + return $publication; + } +} diff --git a/classes/publication/Publication.inc.php b/classes/publication/Publication.inc.php deleted file mode 100644 index c06eaa449da..00000000000 --- a/classes/publication/Publication.inc.php +++ /dev/null @@ -1,76 +0,0 @@ -getData('authors'); - $editorNames = []; - foreach ($authors as $author) { - if ($author->getIsVolumeEditor()) { - $editorNames[] = __('submission.editorName', array('editorName' => $author->getFullName())); - } - } - - // Spaces are stripped from the locale strings, so we have to add the - // space in here. - return join(__('common.commaListSeparator') . ' ', $editorNames); - } - - /** - * Get the URL to a localized cover image - * - * @param int $contextId - * @return string - */ - public function getLocalizedCoverImageUrl($contextId) { - $coverImage = $this->getLocalizedData('coverImage'); - - if (!$coverImage) { - return Application::get()->getRequest()->getBaseUrl() . '/templates/images/book-default.png'; - } - - import('classes.file.PublicFileManager'); - $publicFileManager = new PublicFileManager(); - - return join('/', [ - Application::get()->getRequest()->getBaseUrl(), - $publicFileManager->getContextFilesPath($contextId), - $coverImage['uploadName'], - ]); - } - - /** - * Get the URL to the thumbnail of a localized cover image - * - * @param int $contextId - * @return string - */ - public function getLocalizedCoverImageThumbnailUrl($contextId) { - $url = $this->getLocalizedCoverImageUrl($contextId); - $pathParts = pathinfo($url); - return join('/', [ - $pathParts['dirname'], - Services::get('publication')->getThumbnailFilename($pathParts['basename']), - ]); - } -} \ No newline at end of file diff --git a/classes/publication/Publication.php b/classes/publication/Publication.php new file mode 100644 index 00000000000..e21def25782 --- /dev/null +++ b/classes/publication/Publication.php @@ -0,0 +1,93 @@ +getData('authors'); + $editorNames = []; + foreach ($authors as $author) { + if ($author->getIsVolumeEditor()) { + $editorNames[] = __('submission.editorName', ['editorName' => $author->getFullName()]); + } + } + + // Spaces are stripped from the locale strings, so we have to add the + // space in here. + return join(__('common.commaListSeparator') . ' ', $editorNames); + } + + /** + * Get the URL to a localized cover image + * + * @param int $contextId + * @param string $preferredLocale Return the cover image in a specified locale. + * + * @return string + */ + public function getLocalizedCoverImageUrl($contextId, $preferredLocale = null) + { + $coverImage = $this->getLocalizedData('coverImage', $preferredLocale); + + if (!$coverImage) { + return Application::get()->getRequest()->getBaseUrl() . '/templates/images/book-default.png'; + } + + $publicFileManager = new PublicFileManager(); + + return join('/', [ + Application::get()->getRequest()->getBaseUrl(), + $publicFileManager->getContextFilesPath($contextId), + $coverImage['uploadName'], + ]); + } + + /** + * Get the URL to the thumbnail of a localized cover image + * + * @param int $contextId + * + * @return string + */ + public function getLocalizedCoverImageThumbnailUrl($contextId) + { + $url = $this->getLocalizedCoverImageUrl($contextId); + $pathParts = pathinfo($url); + return join('/', [ + $pathParts['dirname'], + Repo::publication()->getThumbnailFilename($pathParts['basename']), + ]); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publication\Publication', '\Publication'); +} diff --git a/classes/publication/PublicationDAO.inc.php b/classes/publication/PublicationDAO.inc.php deleted file mode 100644 index de16366fb7c..00000000000 --- a/classes/publication/PublicationDAO.inc.php +++ /dev/null @@ -1,48 +0,0 @@ - 'publication_id', - 'accessStatus' => 'access_status', - 'datePublished' => 'date_published', - 'lastModified' => 'last_modified', - 'locale' => 'locale', - 'primaryContactId' => 'primary_contact_id', - 'seq' => 'seq', - 'seriesId' => 'series_id', - 'submissionId' => 'submission_id', - 'status' => 'status', - 'urlPath' => 'url_path', - 'version' => 'version', - 'seriesPosition' => 'series_position', - ]; - - /** - * @copydoc SchemaDAO::_fromRow() - */ - public function _fromRow($primaryRow) { - $publication = parent::_fromRow($primaryRow); - - $publication->setData('publicationFormats', Application::getRepresentationDao()->getByPublicationId($publication->getId())->toArray()); - $publication->setData('chapters', DAORegistry::getDAO('ChapterDAO')->getByPublicationId($publication->getId())->toArray()); - - return $publication; - } -} \ No newline at end of file diff --git a/classes/publication/Repository.php b/classes/publication/Repository.php new file mode 100644 index 00000000000..6c5ef04cace --- /dev/null +++ b/classes/publication/Repository.php @@ -0,0 +1,514 @@ + $this->dao]); + } + + /** @copydoc PKP\publication\Repository::validate() */ + public function validate($publication, array $props, Submission $submission, Context $context): array + { + $errors = parent::validate($publication, $props, $submission, $context); + + // Ensure that the specified series exists + if (isset($props['seriesId'])) { + $series = Repo::section()->get($props['seriesId']); + if (!$series) { + $errors['seriesId'] = [__('publication.invalidSeries')]; + } + } + + return $errors; + } + + /** @copydoc \PKP\publication\Repository::add() */ + public function add(Publication $publication): int + { + $id = parent::add($publication); + + $publication = $this->get($id); + + // Create a thumbnail for the cover image + if ($publication->getData('coverImage')) { + $submission = Repo::submission()->get($publication->getData('submissionId')); + $submissionContext = $this->request->getContext(); + if ($submissionContext->getId() !== $submission->getData('contextId')) { + $submissionContext = Services::get('context')->get($submission->getData('contextId')); + } + + $supportedLocales = $submissionContext->getSupportedSubmissionLocales(); + foreach ($supportedLocales as $localeKey) { + if (!array_key_exists($localeKey, $publication->getData('coverImage'))) { + continue; + } + + $publicFileManager = new PublicFileManager(); + $coverImage = $publication->getData('coverImage', $localeKey); + $coverImageFilePath = $publicFileManager->getContextFilesPath($submissionContext->getId()) . '/' . $coverImage['uploadName']; + $this->makeThumbnail( + $coverImageFilePath, + $this->getThumbnailFileName($coverImage['uploadName']), + $submissionContext->getData('coverThumbnailsMaxWidth'), + $submissionContext->getData('coverThumbnailsMaxHeight') + ); + } + } + + return $id; + } + + /** @copydoc \PKP\publication\Repository::version() */ + public function version(Publication $publication): int + { + // Get some data about the publication being versioned before any changes are made + $oldPublicationFormats = $publication->getData('publicationFormats'); + $oldAuthors = Repo::author()->getCollector() + ->filterByPublicationIds([$publication->getId()]) + ->getMany(); + + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + $oldChaptersIterator = $chapterDao->getByPublicationId($publication->getId()); + $oldPublicationId = $publication->getId(); + $submissionId = $publication->getData('submissionId'); + + $newId = parent::version($publication); + + $newPublication = $this->get($newId); + + $context = Application::get()->getRequest()->getContext(); + + $isDoiVersioningEnabled = $context->getData(Context::SETTING_DOI_VERSIONING); + + // Publication Formats (and all associated objects) + $newSubmissionFiles = []; + foreach ($oldPublicationFormats as $oldPublicationFormat) { + $newPublicationFormat = clone $oldPublicationFormat; + $newPublicationFormat->setData('id', null); + $newPublicationFormat->setData('publicationId', $newPublication->getId()); + if ($isDoiVersioningEnabled) { + $newPublicationFormat->setData('doiId', null); + } + Application::getRepresentationDAO()->insertObject($newPublicationFormat); + + // Duplicate publication format metadata + $metadataDaos = ['IdentificationCodeDAO', 'MarketDAO', 'PublicationDateDAO', 'SalesRightsDAO']; + foreach ($metadataDaos as $metadataDao) { + /** @var IdentificationCodeDAO|MarketDAO|PublicationDateDAO|SalesRightsDAO */ + $dao = DAORegistry::getDAO($metadataDao); + $result = $dao->getByPublicationFormatId($oldPublicationFormat->getId()); + while (!$result->eof()) { + $oldObject = $result->next(); + $newObject = clone $oldObject; + $newObject->setData('id', null); + $newObject->setData('publicationFormatId', $newPublicationFormat->getId()); + $dao->insertObject($newObject); + } + } + + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$submissionId]) + ->filterByAssoc( + Application::ASSOC_TYPE_REPRESENTATION, + [$oldPublicationFormat->getId()] + ) + ->getMany(); + + // Duplicate publication format files + foreach ($submissionFiles as $submissionFile) { + $newSubmissionFile = clone $submissionFile; + $newSubmissionFile->setData('id', null); + $newSubmissionFile->setData('assocId', $newPublicationFormat->getId()); + if ($isDoiVersioningEnabled) { + $newSubmissionFile->setData('doiId', null); + } + $newSubmissionFileId = Repo::submissionFile()->add($newSubmissionFile); + $newSubmissionFile = Repo::submissionFile()->get($newSubmissionFileId); + $newSubmissionFiles[] = $newSubmissionFile; + + $dependentFiles = Repo::submissionFile() + ->getCollector() + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_DEPENDENT]) + ->filterByAssoc( + Application::ASSOC_TYPE_SUBMISSION_FILE, + [$submissionFile->getId()] + ) + ->includeDependentFiles() + ->getMany(); + + foreach ($dependentFiles as $dependentFile) { + $newDependentFile = clone $dependentFile; + $newDependentFile->setData('id', null); + $newDependentFile->setData('assocId', $newSubmissionFile->getId()); + Repo::submissionFile()->add($newDependentFile); + } + } + } + + // Chapters (and all associated objects) + $newAuthors = Repo::author()->getCollector() + ->filterByPublicationIds([$newPublication->getId()]) + ->getMany(); + + while ($oldChapter = $oldChaptersIterator->next()) { + $newChapter = clone $oldChapter; + $newChapter->setData('id', null); + $newChapter->setData('publicationId', $newPublication->getId()); + if ($isDoiVersioningEnabled) { + $newChapter->setData('doiId', null); + } + $newChapterId = $chapterDao->insertChapter($newChapter); + $newChapter = $chapterDao->getChapter($newChapterId); + + // Update file chapter associations for new files + foreach ($newSubmissionFiles as $newSubmissionFile) { + if ($newSubmissionFile->getChapterId() == $oldChapter->getId()) { + Repo::submissionFile() + ->edit( + $newSubmissionFile, + ['chapterId' => $newChapter->getId()] + ); + } + } + + // We need to link new authors to chapters. To do this, we need a way to + // link old authors to the new ones. We use seq property, which should be + // unique for each author to determine which new author is a copy of the + // old one. We then map the old chapter author associations to the new + // authors. + $oldChapterAuthors = Repo::author()->getCollector() + ->filterByChapterIds([$oldChapter->getId()]) + ->filterByPublicationIds([$oldPublicationId]) + ->getMany(); + + foreach ($newAuthors as $newAuthor) { + foreach ($oldAuthors as $oldAuthor) { + if ($newAuthor->getData('seq') === $oldAuthor->getData('seq')) { + foreach ($oldChapterAuthors as $oldChapterAuthor) { + if ($oldChapterAuthor->getId() === $oldAuthor->getId()) { + Repo::author()->addToChapter( + $newAuthor->getId(), + $newChapter->getId(), + $newAuthor->getId() === $newPublication->getData('primaryContactId'), + $oldChapterAuthor->getData('seq') + ); + } + } + } + } + } + } + + return $newId; + } + + /** @copydoc \PKP\publication\Repository::edit() */ + public function edit(Publication $publication, array $params): Publication + { + $oldCoverImage = $publication->getData('coverImage'); + + $updatedPublication = parent::edit($publication, $params); + + $coverImages = $updatedPublication->getData('coverImage'); + + // Create or delete the thumbnail of a cover image + if (array_key_exists('coverImage', $params)) { + $publicFileManager = new PublicFileManager(); + $submission = Repo::submission()->get($publication->getData('submissionId')); + $submissionContext = $this->request->getContext(); + if ($submissionContext->getId() !== $submission->getData('contextId')) { + $submissionContext = Services::get('context')->get($submission->getData('contextId')); + } + + foreach ($params['coverImage'] as $localeKey => $newCoverImage) { + if (is_null($newCoverImage)) { + if (empty($oldCoverImage[$localeKey])) { + continue; + } + + $coverImageFilePath = $publicFileManager->getContextFilesPath($submission->getData('contextId')) . '/' . $oldCoverImage[$localeKey]['uploadName']; + if (!file_exists($coverImageFilePath)) { + $publicFileManager->removeContextFile($submission->getData('contextId'), $this->getThumbnailFileName($oldCoverImage[$localeKey]['uploadName'])); + } + + // Otherwise generate a new thumbnail if a cover image exists + } elseif (!empty($newCoverImage) && array_key_exists('temporaryFileId', $newCoverImage)) { + $coverImageFilePath = $publicFileManager->getContextFilesPath($submission->getData('contextId')) . '/' . $coverImages[$localeKey]['uploadName']; + $this->makeThumbnail( + $coverImageFilePath, + $this->getThumbnailFileName($coverImages[$localeKey]['uploadName']), + $submissionContext->getData('coverThumbnailsMaxWidth'), + $submissionContext->getData('coverThumbnailsMaxHeight') + ); + } + } + } + return $updatedPublication; + } + + /** @copydoc \PKP\publication\Repository::publish() */ + public function publish(Publication $publication) + { + Hook::add('Publication::publish::before', [$this, 'addChapterLicense']); + parent::publish($publication); + + $submission = Repo::submission()->get($publication->getData('submissionId')); + + // If this is a new current publication (the "version of record"), then + // tombstones must be updated to reflect the new publication format entries + // in the OAI feed + if ($submission->getData('currentPublicationId') === $publication->getId()) { + $context = $this->request->getContext(); + if (!$context || $context->getId() !== $submission->getData('contextId')) { + $context = Services::get('context')->get($submission->getData('contextId')); + } + + // Remove publication format tombstones for this publication + $publicationFormatTombstoneMgr = new PublicationFormatTombstoneManager(); + $publicationFormatTombstoneMgr->deleteTombstonesByPublicationId($publication->getId()); + + // Create publication format tombstones for any other published versions + foreach ($submission->getData('publications') as $iPublication) { + if ($iPublication->getId() !== $publication->getId() && $iPublication->getData('status') === Submission::STATUS_PUBLISHED) { + $publicationFormatTombstoneMgr->insertTombstonesByPublicationId($iPublication->getId(), $context); + } + } + } + + // Update notification + $notificationMgr = new NotificationManager(); + $notificationMgr->updateNotification( + $this->request, + [Notification::NOTIFICATION_TYPE_APPROVE_SUBMISSION], + null, + Application::ASSOC_TYPE_MONOGRAPH, + $publication->getData('submissionId') + ); + } + + /** @copydoc \PKP\publication\Repository::setStatusOnPublish() */ + protected function setStatusOnPublish(Publication $publication) + { + // If the publish date is in the future, set the status to scheduled + $datePublished = $publication->getData('datePublished'); + if ($datePublished && strtotime($datePublished) > strtotime(Core::getCurrentDate())) { + $publication->setData('status', Submission::STATUS_SCHEDULED); + } else { + $publication->setData('status', Submission::STATUS_PUBLISHED); + } + + // If there is no publish date, set it + if (!$publication->getData('datePublished')) { + $publication->setData('datePublished', Core::getCurrentDate()); + } + } + + /** @copydoc \PKP\publication\Repository::unpublish() */ + public function unpublish(Publication $publication) + { + parent::unpublish($publication); + + $submission = Repo::submission()->get($publication->getData('submissionId')); + $submissionContext = Services::get('context')->get($submission->getData('contextId')); + + // Create tombstones for this publication + $publicationFormatTombstoneMgr = new PublicationFormatTombstoneManager(); + $publicationFormatTombstoneMgr->insertTombstonesByPublicationId($publication->getId(), $submissionContext); + + // Delete tombstones for the new current publication + $currentPublication = null; + foreach ($submission->getData('publications') as $publication) { + if ($publication->getId() === $submission->getData('currentPublicationId')) { + $currentPublication = $publication; + break; + } + } + if ($currentPublication && $currentPublication->getData('status') === Submission::STATUS_PUBLISHED) { + $publicationFormatTombstoneMgr->deleteTombstonesByPublicationId($currentPublication->getId()); + } + + + // Update notification + $notificationMgr = new NotificationManager(); + $notificationMgr->updateNotification( + $this->request, + [Notification::NOTIFICATION_TYPE_APPROVE_SUBMISSION], + null, + Application::ASSOC_TYPE_MONOGRAPH, + $publication->getData('submissionId') + ); + } + + /** @copydoc \PKP\publication\Repository::delete() */ + public function delete(Publication $publication) + { + $submission = Repo::submission()->get($publication->getData('submissionId')); + $context = Services::get('context')->get($submission->getData('contextId')); + + // Delete Publication Formats (and all related objects) + $publicationFormats = $publication->getData('publicationFormats'); + foreach ($publicationFormats as $publicationFormat) { + Services::get('publicationFormat')->deleteFormat($publicationFormat, $submission, $context); + } + + // Delete chapters and assigned chapter authors. + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + $chapters = $chapterDao->getByPublicationId($publication->getId()); + while ($chapter = $chapters->next()) { + // also removes Chapter Author and file associations + $chapterDao->deleteObject($chapter); + } + + parent::delete($publication); + } + + /** + * Derive a thumbnail filename from the cover image filename + * + * book_1_1_cover.png --> book_1_1_cover_t.png + * + * @param string $fileName + * + * @return string The thumbnail filename + */ + public function getThumbnailFileName($fileName) + { + $pathInfo = pathinfo($fileName); + return $pathInfo['filename'] . '_t.' . $pathInfo['extension']; + } + + /** + * Generate a thumbnail of an image + * + * @param string $filePath The full path and name of the file + * @param int $maxWidth The maximum allowed width of the thumbnail + * @param int $maxHeight The maximum allowed height of the thumbnail + */ + public function makeThumbnail($filePath, $thumbFileName, $maxWidth, $maxHeight) + { + $pathParts = pathinfo($filePath); + $thumbFilePath = $pathParts['dirname'] . '/' . $thumbFileName; + + $cover = null; + switch ($pathParts['extension']) { + case 'jpg': $cover = imagecreatefromjpeg($filePath); + break; + case 'png': $cover = imagecreatefrompng($filePath); + break; + case 'gif': $cover = imagecreatefromgif($filePath); + break; + case 'webp': $cover = imagecreatefromwebp($filePath); + break; + case 'svg': $cover = copy($filePath, $thumbFilePath); + break; + } + if (!isset($cover)) { + throw new Exception('Can not build thumbnail because the file was not found or the file extension was not recognized.'); + } + + if ($pathParts['extension'] != 'svg') { + // Calculate the scaling ratio for each dimension. + $originalSizeArray = getimagesize($filePath); + $xRatio = min(1, $maxWidth / $originalSizeArray[0]); + $yRatio = min(1, $maxHeight / $originalSizeArray[1]); + + // Choose the smallest ratio and create the target. + $ratio = min($xRatio, $yRatio); + + $thumbWidth = round($ratio * $originalSizeArray[0]); + $thumbHeight = round($ratio * $originalSizeArray[1]); + $thumb = imagecreatetruecolor($thumbWidth, $thumbHeight); + imagecopyresampled($thumb, $cover, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $originalSizeArray[0], $originalSizeArray[1]); + + switch ($pathParts['extension']) { + case 'jpg': imagejpeg($thumb, $pathParts['dirname'] . '/' . $thumbFileName); + break; + case 'png': imagepng($thumb, $pathParts['dirname'] . '/' . $thumbFileName); + break; + case 'gif': imagegif($thumb, $pathParts['dirname'] . '/' . $thumbFileName); + break; + case 'webp': imagewebp($thumb, $thumbFilePath); + break; + } + + imagedestroy($thumb); + } + } + + /** + * Create all DOIs associated with the publication + * + * @return mixed + */ + protected function createDois(Publication $newPublication): void + { + $submission = Repo::submission()->get($newPublication->getData('submissionId')); + Repo::submission()->createDois($submission); + } + + public function addChapterLicense(string $hookName, array $params): bool + { + $newPublication = $params[0]; + $publication = $params[1]; + $itsPublished = ($newPublication->getData('status') === PKPSubmission::STATUS_PUBLISHED); + $submission = Repo::submission()->get($publication->getData('submissionId')); + + if ($itsPublished && $submission->getData('workType') === Submission::WORK_TYPE_EDITED_VOLUME) { + if (!$newPublication->getData('chapterLicenseUrl')) { + $newPublication->setData('chapterLicenseUrl', $newPublication->getData('licenseUrl')); + } + + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + $chaptersIterator = $chapterDao->getByPublicationId($newPublication->getId()); + + while ($chapter = $chaptersIterator->next()) { + if (!$chapter->getLicenseUrl()) { + $chapter->setLicenseUrl($newPublication->getData('chapterLicenseUrl')); + $chapterDao->updateLocaleFields($chapter); + } + } + } + return false; + } +} diff --git a/classes/publication/maps/Schema.php b/classes/publication/maps/Schema.php new file mode 100644 index 00000000000..b46a130af66 --- /dev/null +++ b/classes/publication/maps/Schema.php @@ -0,0 +1,105 @@ +_data; + if ($anonymize) { + $data['authors'] = []; + } else { + $data['authors'] = Repo::author() + ->getCollector() + ->filterByChapterIds([$chapter->getId()]) + ->filterByPublicationIds([$publication->getId()]) + ->getMany() + ->map(function ($chapterAuthor) { + return $chapterAuthor->_data; + }); + } + if ($data['doiId'] !== null) { + $data['doiObject'] = Repo::doi()->getSchemaMap()->summarize($data['doiObject']); + } + return $data; + }, $publication->getData('chapters')); + } + + if (in_array('publicationFormats', $props)) { + // Get all submission files assigned to a publication format + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$publication->getData('submissionId')]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_PROOF]) + ->getMany(); + + /** @var GenreDAO $genreDao */ + $genreDao = DAORegistry::getDAO('GenreDAO'); + $genres = $genreDao->getByContextId($this->submission->getData('contextId'))->toArray(); + + $publicationFormats = array_map( + function ($publicationFormat) use ($submissionFiles, $genres) { + $data = $publicationFormat->_data; + + if ($data['doiId'] !== null) { + $data['doiObject'] = Repo::doi()->getSchemaMap()->summarize($data['doiObject']); + } + + // Get SubmissionFiles related to each format and attach + $formatSpecificFiles = $submissionFiles->filter(function ($submissionFile) use ($publicationFormat) { + return $publicationFormat->getId() === $submissionFile->getData('assocId'); + }); + return array_merge($data, [ + 'submissionFiles' => Repo::submissionFile()->getSchemaMap()->mapMany($formatSpecificFiles, $genres)->values()->toArray() + ]); + }, + $publication->getData('publicationFormats') + ); + + // Call array_values to reset array keys so that the output will convert to an array in JSON + $output['publicationFormats'] = array_values($publicationFormats); + } + + if (in_array('urlPublished', $props)) { + $output['urlPublished'] = $this->request->getDispatcher()->url( + $this->request, + Application::ROUTE_PAGE, + $this->context->getData('urlPath'), + 'catalog', + 'book', + [$this->submission->getBestId(), 'version', $publication->getId()] + ); + } + + $output = $this->schemaService->addMissingMultilingualValues(PKPSchemaService::SCHEMA_PUBLICATION, $output, $this->context->getSupportedSubmissionLocales()); + + ksort($output); + + return $this->withExtensions($output, $publication); + } +} diff --git a/classes/publicationFormat/IdentificationCode.inc.php b/classes/publicationFormat/IdentificationCode.inc.php deleted file mode 100644 index 78276333322..00000000000 --- a/classes/publicationFormat/IdentificationCode.inc.php +++ /dev/null @@ -1,84 +0,0 @@ -getData('publicationFormatId'); - } - - /** - * set publication format id - * @param $pressId int - */ - function setPublicationFormatId($publicationFormatId) { - return $this->setData('publicationFormatId', $publicationFormatId); - } - - /** - * Set the ONIX code for this identification code - * @param $code string - */ - function setCode($code) { - $this->setData('code', $code); - } - - /** - * Get the ONIX code for the identification code - * @return string - */ - function getCode() { - return $this->getData('code'); - } - - /** - * Get the human readable name for this ONIX code - * @return string - */ - function getNameForONIXCode() { - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $codes =& $onixCodelistItemDao->getCodes('List5'); // List5 is for ISBN, GTIN-13, etc. - return $codes[$this->getCode()]; - } - - /** - * Set the value for this identification code - * @param $value string - */ - function setValue($value) { - $this->setData('value', $value); - } - - /** - * Get the value for the identification code - * @return string - */ - function getValue() { - return $this->getData('value'); - } -} - - diff --git a/classes/publicationFormat/IdentificationCode.php b/classes/publicationFormat/IdentificationCode.php new file mode 100644 index 00000000000..125a3b8e65f --- /dev/null +++ b/classes/publicationFormat/IdentificationCode.php @@ -0,0 +1,100 @@ +getData('publicationFormatId'); + } + + /** + * set publication format id + */ + public function setPublicationFormatId($publicationFormatId) + { + return $this->setData('publicationFormatId', $publicationFormatId); + } + + /** + * Set the ONIX code for this identification code + * + * @param string $code + */ + public function setCode($code) + { + $this->setData('code', $code); + } + + /** + * Get the ONIX code for the identification code + * + * @return string + */ + public function getCode() + { + return $this->getData('code'); + } + + /** + * Get the human readable name for this ONIX code + * + * @return string + */ + public function getNameForONIXCode() + { + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $codes = & $onixCodelistItemDao->getCodes('List5'); // List5 is for ISBN, GTIN-13, etc. + return $codes[$this->getCode()]; + } + + /** + * Set the value for this identification code + * + * @param string $value + */ + public function setValue($value) + { + $this->setData('value', $value); + } + + /** + * Get the value for the identification code + * + * @return string + */ + public function getValue() + { + return $this->getData('value'); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publicationFormat\IdentificationCode', '\IdentificationCode'); +} diff --git a/classes/publicationFormat/IdentificationCodeDAO.inc.php b/classes/publicationFormat/IdentificationCodeDAO.inc.php deleted file mode 100644 index ef5b365b495..00000000000 --- a/classes/publicationFormat/IdentificationCodeDAO.inc.php +++ /dev/null @@ -1,149 +0,0 @@ -retrieve( - 'SELECT i.* - FROM identification_codes i - JOIN publication_formats pf ON (i.publication_format_id = pf.publication_format_id) - WHERE i.identification_code_id = ? - ' . ($publicationId?' AND pf.publication_id = ?':''), - $params - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Retrieve all identification codes for a publication format - * @param $publicationFormatId int - * @return DAOResultFactory containing matching identification codes - */ - function getByPublicationFormatId($publicationFormatId) { - return new DAOResultFactory( - $result = $this->retrieveRange( - 'SELECT * FROM identification_codes WHERE publication_format_id = ?', - [(int) $publicationFormatId] - ), - $this, - '_fromRow' - ); - } - - /** - * Construct a new data object corresponding to this DAO. - * @return IdentificationCode - */ - function newDataObject() { - return new IdentificationCode(); - } - - /** - * Internal function to return a IdentificationCode object from a row. - * @param $row array - * @param $callHooks boolean - * @return IdentificationCode - */ - function _fromRow($row, $callHooks = true) { - $identificationCode = $this->newDataObject(); - $identificationCode->setId($row['identification_code_id']); - $identificationCode->setCode($row['code']); - $identificationCode->setValue($row['value']); - $identificationCode->setPublicationFormatId($row['publication_format_id']); - - if ($callHooks) HookRegistry::call('IdentificationCodeDAO::_fromRow', [&$identificationCode, &$row]); - - return $identificationCode; - } - - /** - * Insert a new identification code. - * @param $identificationCode IdentificationCode - */ - function insertObject($identificationCode) { - $this->update( - 'INSERT INTO identification_codes - (publication_format_id, code, value) - VALUES - (?, ?, ?)', - [ - (int) $identificationCode->getPublicationFormatId(), - $identificationCode->getCode(), - $identificationCode->getValue() - ] - ); - - $identificationCode->setId($this->getInsertId()); - return $identificationCode->getId(); - } - - /** - * Update an existing identification code. - * @param $identificationCode IdentificationCode - */ - function updateObject($identificationCode) { - $this->update( - 'UPDATE identification_codes - SET code = ?, value = ? - WHERE identification_code_id = ?', - [ - $identificationCode->getCode(), - $identificationCode->getValue(), - (int) $identificationCode->getId() - ] - ); - } - - /** - * Delete an identification code by id. - * @param $identificationCode IdentificationCode - */ - function deleteObject($identificationCode) { - return $this->deleteById($identificationCode->getId()); - } - - /** - * delete a identification code by id. - * @param $entryId int - */ - function deleteById($entryId) { - return $this->update( - 'DELETE FROM identification_codes WHERE identification_code_id = ?', [(int) $entryId] - ); - } - - /** - * Get the ID of the last inserted identification code. - * @return int - */ - function getInsertId() { - return $this->_getInsertId('identification_codes', 'identification_code_id'); - } -} - - diff --git a/classes/publicationFormat/IdentificationCodeDAO.php b/classes/publicationFormat/IdentificationCodeDAO.php new file mode 100644 index 00000000000..63c0d1cd53e --- /dev/null +++ b/classes/publicationFormat/IdentificationCodeDAO.php @@ -0,0 +1,173 @@ +retrieve( + 'SELECT i.* + FROM identification_codes i + JOIN publication_formats pf ON (i.publication_format_id = pf.publication_format_id) + WHERE i.identification_code_id = ? + ' . ($publicationId ? ' AND pf.publication_id = ?' : ''), + $params + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Retrieve all identification codes for a publication format + * + * @param int $publicationFormatId + * + * @return DAOResultFactory containing matching identification codes + */ + public function getByPublicationFormatId($publicationFormatId) + { + return new DAOResultFactory( + $result = $this->retrieveRange( + 'SELECT * FROM identification_codes WHERE publication_format_id = ?', + [(int) $publicationFormatId] + ), + $this, + '_fromRow' + ); + } + + /** + * Construct a new data object corresponding to this DAO. + * + * @return IdentificationCode + */ + public function newDataObject() + { + return new IdentificationCode(); + } + + /** + * Internal function to return a IdentificationCode object from a row. + * + * @param array $row + * @param bool $callHooks + * + * @return IdentificationCode + */ + public function _fromRow($row, $callHooks = true) + { + $identificationCode = $this->newDataObject(); + $identificationCode->setId($row['identification_code_id']); + $identificationCode->setCode($row['code']); + $identificationCode->setValue($row['value']); + $identificationCode->setPublicationFormatId($row['publication_format_id']); + + if ($callHooks) { + Hook::call('IdentificationCodeDAO::_fromRow', [&$identificationCode, &$row]); + } + + return $identificationCode; + } + + /** + * Insert a new identification code. + * + * @param IdentificationCode $identificationCode + */ + public function insertObject($identificationCode) + { + $this->update( + 'INSERT INTO identification_codes + (publication_format_id, code, value) + VALUES + (?, ?, ?)', + [ + (int) $identificationCode->getPublicationFormatId(), + $identificationCode->getCode(), + $identificationCode->getValue() + ] + ); + + $identificationCode->setId($this->getInsertId()); + return $identificationCode->getId(); + } + + /** + * Update an existing identification code. + * + * @param IdentificationCode $identificationCode + */ + public function updateObject($identificationCode) + { + $this->update( + 'UPDATE identification_codes + SET code = ?, value = ? + WHERE identification_code_id = ?', + [ + $identificationCode->getCode(), + $identificationCode->getValue(), + (int) $identificationCode->getId() + ] + ); + } + + /** + * Delete an identification code by id. + * + * @param IdentificationCode $identificationCode + */ + public function deleteObject($identificationCode) + { + return $this->deleteById($identificationCode->getId()); + } + + /** + * delete a identification code by id. + * + * @param int $entryId + */ + public function deleteById($entryId) + { + return $this->update( + 'DELETE FROM identification_codes WHERE identification_code_id = ?', + [(int) $entryId] + ); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publicationFormat\IdentificationCodeDAO', '\IdentificationCodeDAO'); +} diff --git a/classes/publicationFormat/Market.inc.php b/classes/publicationFormat/Market.inc.php deleted file mode 100644 index ff7b3e2dec5..00000000000 --- a/classes/publicationFormat/Market.inc.php +++ /dev/null @@ -1,329 +0,0 @@ -getData('publicationFormatId'); - } - - /** - * set publication format id - * @param $pressId int - */ - function setPublicationFormatId($publicationFormatId) { - return $this->setData('publicationFormatId', $publicationFormatId); - } - - /** - * Get the included countries for this market entry - * @return array - */ - function getCountriesIncluded() { - return $this->getData('countriesIncluded'); - } - - /** - * Set the included country list for this market entry - * @param $countriesIncluded array - */ - function setCountriesIncluded($countriesIncluded) { - $this->setData('countriesIncluded', array_filter($countriesIncluded, array(&$this, '_removeEmptyElements'))); - } - - /** - * Get the excluded countries for this market entry - * @return array - */ - function getCountriesExcluded() { - return $this->getData('countriesExcluded'); - } - - /** - * Set the excluded country list for this market entry - * @param $countriesExcluded array - */ - function setCountriesExcluded($countriesExcluded) { - $this->setData('countriesExcluded', array_filter($countriesExcluded, array(&$this, '_removeEmptyElements'))); - } - - /** - * Get the included regions for this market entry - * @return array - */ - function getRegionsIncluded() { - return $this->getData('regionsIncluded'); - } - - /** - * Set the included region list for this market entry - * @param $regionsIncluded array - */ - function setRegionsIncluded($regionsIncluded) { - $this->setData('regionsIncluded', array_filter($regionsIncluded, array(&$this, '_removeEmptyElements'))); - } - - /** - * Get the excluded regions for this market entry - * @return array - */ - function getRegionsExcluded() { - return $this->getData('regionsExcluded'); - } - - /** - * Set the excluded region list for this market entry - * @param $regionsExcluded array - */ - function setRegionsExcluded($regionsExcluded) { - $this->setData('regionsExcluded', array_filter($regionsExcluded, array(&$this, '_removeEmptyElements'))); - } - - /** - * Get the date role for this Market. - * @return string - */ - function getDateRole() { - return $this->getData('dateRole'); - } - - /** - * Set the date role for this Market. (List163) - * @param String $dateRole - */ - function setDateRole($dateRole) { - $this->setData('dateRole', $dateRole); - } - - /** - * Get the date format for this Market. - * @return string - */ - function getDateFormat() { - return $this->getData('dateFormat'); - } - - /** - * Set the date format for this Market. (List55) - * @param string $dateFormat - */ - function setDateFormat($dateFormat) { - $this->setData('dateFormat', $dateFormat); - } - - /** - * Get the date for this Market. - * @return string - */ - function getDate() { - return $this->getData('date'); - } - - /** - * Set this Market's date. - * @param string $date - */ - function setDate($date) { - $this->setData('date', $date); - } - - /** - * Get the currency code (ONIX value) used for this market (List96). - * @return string - */ - function getCurrencyCode() { - return $this->getData('currencyCode'); - } - - /** - * Set the currency code (ONIX value) for a market. - * @param string $currencyCode - */ - function setCurrencyCode($currencyCode) { - return $this->setData('currencyCode', $currencyCode); - } - - /** - * Get the price. - * @return string - */ - function getPrice() { - return $this->getData('price'); - } - - /** - * Set the price. - * @param string $price - */ - function setPrice($price) { - return $this->setData('price', $price); - } - - /** - * Get the discount. - * @return string - */ - function getDiscount() { - return $this->getData('discount'); - } - - /** - * Set the discount. - * @param string $discount - */ - function setDiscount($discount) { - return $this->setData('discount', $discount); - } - - - /** - * Get the price type code (ONIX code) used for this market (List58). - * @return string - */ - function getPriceTypeCode() { - return $this->getData('priceTypeCode'); - } - - /** - * Set the price type code (ONIX code) for a market. - * @param string $priceTypeCode - */ - function setPriceTypeCode($priceTypeCode) { - return $this->setData('priceTypeCode', $priceTypeCode); - } - - /** - * Get the tax rate code (ONIX value) used for this market (List62). - * @return string - */ - function getTaxRateCode() { - return $this->getData('taxRateCode'); - } - - /** - * Set the tax rate code (ONIX value) for a market. - * @param string $taxRateCode - */ - function setTaxRateCode($taxRateCode) { - return $this->setData('taxRateCode', $taxRateCode); - } - - /** - * Get the tax type code used (ONIX value) for this market (List171). - * @return string - */ - function getTaxTypeCode() { - return $this->getData('taxTypeCode'); - } - - /** - * Set the tax type code (ONIX value) for a market. - * @param string $taxTypeCode - */ - function setTaxTypeCode($taxTypeCode) { - return $this->setData('taxTypeCode', $taxTypeCode); - } - - /** - * Get the id of the assigned agent, if there is one. - * @return string - */ - function getAgentId() { - return $this->getData('agentId'); - } - - /** - * Set the id of the assigned agent. - * @param int $agentId - */ - function setAgentId($agentId) { - return $this->setData('agentId', $agentId); - } - - /** - * Get the id of the assigned supplier, if there is one. - * @return string - */ - function getSupplierId() { - return $this->getData('supplierId'); - } - - /** - * Set the id of the assigned supplier. - * @param int $supplierId - */ - function setSupplierId($supplierId) { - return $this->setData('supplierId', $supplierId); - } - - /** - * Returns a string briefly describing the territories for this market - * @return string - */ - function getTerritoriesAsString() { - $territories = __('grid.catalogEntry.included'); - $territories .= ': ' . join(', ', array_merge($this->getCountriesIncluded(), $this->getRegionsIncluded())); - $territories .= ', ' . __('grid.catalogEntry.excluded'); - $territories .= ': ' . join(', ', array_merge($this->getCountriesExcluded(), $this->getRegionsExcluded())); - - return $territories; - } - - /** - * Returns a string containing the name of the reps assigned to this Market territory. - * @return string - */ - function getAssignedRepresentativeNames() { - $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /* @var $representativeDao RepresentativeDAO */ - $agent = $representativeDao->getById($this->getAgentId()); - $supplier = $representativeDao->getById($this->getSupplierId()); - - $returner = ''; - - if (isset($agent) && isset($supplier)) { - $returner = join(', ', array($agent->getName(), $supplier->getName())); - } else if (isset($agent) && !isset($supplier)) { - $returner = $agent->getName(); - } else if (isset($supplier)) { - $returner = $supplier->getName(); - } - - return $returner; - } - - /** - * Internal function for an array_filter to remove empty countries. - * array_filter() can be called without a callback to remove empty array elements but it depends - * on type juggling and may not be reliable. - * @param String $value - * @return boolean - */ - function _removeEmptyElements($value) { - return (trim($value) != '') ? true : false; - } -} - - diff --git a/classes/publicationFormat/Market.php b/classes/publicationFormat/Market.php new file mode 100644 index 00000000000..3918960f77d --- /dev/null +++ b/classes/publicationFormat/Market.php @@ -0,0 +1,402 @@ +getData('publicationFormatId'); + } + + /** + * set publication format id + */ + public function setPublicationFormatId($publicationFormatId) + { + return $this->setData('publicationFormatId', $publicationFormatId); + } + + /** + * Get the included countries for this market entry + * + * @return array + */ + public function getCountriesIncluded() + { + return $this->getData('countriesIncluded'); + } + + /** + * Set the included country list for this market entry + * + * @param array $countriesIncluded + */ + public function setCountriesIncluded($countriesIncluded) + { + $this->setData('countriesIncluded', array_filter($countriesIncluded, [&$this, '_removeEmptyElements'])); + } + + /** + * Get the excluded countries for this market entry + * + * @return array + */ + public function getCountriesExcluded() + { + return $this->getData('countriesExcluded'); + } + + /** + * Set the excluded country list for this market entry + * + * @param array $countriesExcluded + */ + public function setCountriesExcluded($countriesExcluded) + { + $this->setData('countriesExcluded', array_filter($countriesExcluded, [&$this, '_removeEmptyElements'])); + } + + /** + * Get the included regions for this market entry + * + * @return array + */ + public function getRegionsIncluded() + { + return $this->getData('regionsIncluded'); + } + + /** + * Set the included region list for this market entry + * + * @param array $regionsIncluded + */ + public function setRegionsIncluded($regionsIncluded) + { + $this->setData('regionsIncluded', array_filter($regionsIncluded, [&$this, '_removeEmptyElements'])); + } + + /** + * Get the excluded regions for this market entry + * + * @return array + */ + public function getRegionsExcluded() + { + return $this->getData('regionsExcluded'); + } + + /** + * Set the excluded region list for this market entry + * + * @param array $regionsExcluded + */ + public function setRegionsExcluded($regionsExcluded) + { + $this->setData('regionsExcluded', array_filter($regionsExcluded, [&$this, '_removeEmptyElements'])); + } + + /** + * Get the date role for this Market. + * + * @return string + */ + public function getDateRole() + { + return $this->getData('dateRole'); + } + + /** + * Set the date role for this Market. (List163) + * + * @param string $dateRole + */ + public function setDateRole($dateRole) + { + $this->setData('dateRole', $dateRole); + } + + /** + * Get the date format for this Market. + * + * @return string + */ + public function getDateFormat() + { + return $this->getData('dateFormat'); + } + + /** + * Set the date format for this Market. (List55) + * + * @param string $dateFormat + */ + public function setDateFormat($dateFormat) + { + $this->setData('dateFormat', $dateFormat); + } + + /** + * Get the date for this Market. + * + * @return string + */ + public function getDate() + { + return $this->getData('date'); + } + + /** + * Set this Market's date. + * + * @param string $date + */ + public function setDate($date) + { + $this->setData('date', $date); + } + + /** + * Get the currency code (ONIX value) used for this market (List96). + * + * @return string + */ + public function getCurrencyCode() + { + return $this->getData('currencyCode'); + } + + /** + * Set the currency code (ONIX value) for a market. + * + * @param string $currencyCode + */ + public function setCurrencyCode($currencyCode) + { + return $this->setData('currencyCode', $currencyCode); + } + + /** + * Get the price. + * + * @return string + */ + public function getPrice() + { + return $this->getData('price'); + } + + /** + * Set the price. + * + * @param string $price + */ + public function setPrice($price) + { + return $this->setData('price', $price); + } + + /** + * Get the discount. + * + * @return string + */ + public function getDiscount() + { + return $this->getData('discount'); + } + + /** + * Set the discount. + * + * @param string $discount + */ + public function setDiscount($discount) + { + return $this->setData('discount', $discount); + } + + + /** + * Get the price type code (ONIX code) used for this market (List58). + * + * @return string + */ + public function getPriceTypeCode() + { + return $this->getData('priceTypeCode'); + } + + /** + * Set the price type code (ONIX code) for a market. + * + * @param string $priceTypeCode + */ + public function setPriceTypeCode($priceTypeCode) + { + return $this->setData('priceTypeCode', $priceTypeCode); + } + + /** + * Get the tax rate code (ONIX value) used for this market (List62). + * + * @return string + */ + public function getTaxRateCode() + { + return $this->getData('taxRateCode'); + } + + /** + * Set the tax rate code (ONIX value) for a market. + * + * @param string $taxRateCode + */ + public function setTaxRateCode($taxRateCode) + { + return $this->setData('taxRateCode', $taxRateCode); + } + + /** + * Get the tax type code used (ONIX value) for this market (List171). + * + * @return string + */ + public function getTaxTypeCode() + { + return $this->getData('taxTypeCode'); + } + + /** + * Set the tax type code (ONIX value) for a market. + * + * @param string $taxTypeCode + */ + public function setTaxTypeCode($taxTypeCode) + { + return $this->setData('taxTypeCode', $taxTypeCode); + } + + /** + * Get the id of the assigned agent, if there is one. + * + * @return string + */ + public function getAgentId() + { + return $this->getData('agentId'); + } + + /** + * Set the id of the assigned agent. + * + * @param int $agentId + */ + public function setAgentId($agentId) + { + return $this->setData('agentId', $agentId); + } + + /** + * Get the id of the assigned supplier, if there is one. + * + * @return string + */ + public function getSupplierId() + { + return $this->getData('supplierId'); + } + + /** + * Set the id of the assigned supplier. + * + * @param int $supplierId + */ + public function setSupplierId($supplierId) + { + return $this->setData('supplierId', $supplierId); + } + + /** + * Returns a string briefly describing the territories for this market + * + * @return string + */ + public function getTerritoriesAsString() + { + $territories = __('grid.catalogEntry.included'); + $territories .= ': ' . join(', ', array_merge($this->getCountriesIncluded(), $this->getRegionsIncluded())); + $territories .= ', ' . __('grid.catalogEntry.excluded'); + $territories .= ': ' . join(', ', array_merge($this->getCountriesExcluded(), $this->getRegionsExcluded())); + + return $territories; + } + + /** + * Returns a string containing the name of the reps assigned to this Market territory. + * + * @return string + */ + public function getAssignedRepresentativeNames() + { + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /** @var RepresentativeDAO $representativeDao */ + $agent = $representativeDao->getById($this->getAgentId()); + $supplier = $representativeDao->getById($this->getSupplierId()); + + $returner = ''; + + if (isset($agent) && isset($supplier)) { + $returner = join(', ', [$agent->getName(), $supplier->getName()]); + } elseif (isset($agent) && !isset($supplier)) { + $returner = $agent->getName(); + } elseif (isset($supplier)) { + $returner = $supplier->getName(); + } + + return $returner; + } + + /** + * Internal function for an array_filter to remove empty countries. + * array_filter() can be called without a callback to remove empty array elements but it depends + * on type juggling and may not be reliable. + * + * @param string $value + * + * @return bool + */ + public function _removeEmptyElements($value) + { + return (trim($value) != '') ? true : false; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publicationFormat\Market', '\Market'); +} diff --git a/classes/publicationFormat/MarketDAO.inc.php b/classes/publicationFormat/MarketDAO.inc.php deleted file mode 100644 index 7cc3401153e..00000000000 --- a/classes/publicationFormat/MarketDAO.inc.php +++ /dev/null @@ -1,200 +0,0 @@ -retrieve( - 'SELECT m.* - FROM markets m - JOIN publication_formats pf ON (m.publication_format_id = pf.publication_format_id) - WHERE m.market_id = ? - ' . ($publicationId?' AND pf.publication_id = ?':''), - $params - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Retrieve all market for a publication format - * @param $publicationFormatId int - * @return DAOResultFactory containing matching market. - */ - function getByPublicationFormatId($publicationFormatId) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT * FROM markets WHERE publication_format_id = ?', - [(int) $publicationFormatId] - ), - $this, - '_fromRow' - ); - } - - /** - * Construct a new data object corresponding to this DAO. - * @return Market - */ - function newDataObject() { - return new Market(); - } - - /** - * Internal function to return a Market object from a row. - * @param $row array - * @param $callHooks boolean - * @return Market - */ - function _fromRow($row, $callHooks = true) { - $market = $this->newDataObject(); - $market->setId($row['market_id']); - $market->setCountriesIncluded(unserialize($row['countries_included'])); - $market->setCountriesExcluded(unserialize($row['countries_excluded'])); - $market->setRegionsIncluded(unserialize($row['regions_included'])); - $market->setRegionsExcluded(unserialize($row['regions_excluded'])); - $market->setDateRole($row['market_date_role']); - $market->setDateFormat($row['market_date_format']); - $market->setDate($row['market_date']); - $market->setDiscount($row['discount']); - $market->setPrice($row['price']); - $market->setPriceTypeCode($row['price_type_code']); - $market->setCurrencyCode($row['currency_code']); - $market->setTaxRateCode($row['tax_rate_code']); - $market->setTaxTypeCode($row['tax_type_code']); - $market->setAgentId($row['agent_id']); - $market->setSupplierId($row['supplier_id']); - $market->setPublicationFormatId($row['publication_format_id']); - - if ($callHooks) HookRegistry::call('MarketDAO::_fromRow', [&$market, &$row]); - - return $market; - } - - /** - * Insert a new market entry. - * @param $market Market - */ - function insertObject($market) { - $this->update( - 'INSERT INTO markets - (publication_format_id, countries_included, countries_excluded, regions_included, regions_excluded, market_date_role, market_date_format, market_date, price, discount, price_type_code, currency_code, tax_rate_code, tax_type_code, agent_id, supplier_id) - VALUES - (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', - [ - (int) $market->getPublicationFormatId(), - serialize($market->getCountriesIncluded() ? $market->getCountriesIncluded() : array()), - serialize($market->getCountriesExcluded() ? $market->getCountriesExcluded() : array()), - serialize($market->getRegionsIncluded() ? $market->getRegionsIncluded() : array()), - serialize($market->getRegionsExcluded() ? $market->getRegionsExcluded() : array()), - $market->getDateRole(), - $market->getDateFormat(), - $market->getDate(), - $market->getPrice(), - $market->getDiscount(), - $market->getPriceTypeCode(), - $market->getCurrencyCode(), - $market->getTaxRateCode(), - $market->getTaxTypeCode(), - (int) $market->getAgentId(), - (int) $market->getSupplierId() - ] - ); - - $market->setId($this->getInsertId()); - return $market->getId(); - } - - /** - * Update an existing market entry. - * @param $market Market - */ - function updateObject($market) { - $this->update( - 'UPDATE markets - SET countries_included = ?, - countries_excluded = ?, - regions_included = ?, - regions_excluded = ?, - market_date_role = ?, - market_date_format = ?, - market_date = ?, - price = ?, - discount = ?, - price_type_code = ?, - currency_code = ?, - tax_rate_code = ?, - tax_type_code = ?, - agent_id = ?, - supplier_id = ? - WHERE market_id = ?', - [ - serialize($market->getCountriesIncluded() ? $market->getCountriesIncluded() : array()), - serialize($market->getCountriesExcluded() ? $market->getCountriesExcluded() : array()), - serialize($market->getRegionsIncluded() ? $market->getRegionsIncluded() : array()), - serialize($market->getRegionsExcluded() ? $market->getRegionsExcluded() : array()), - $market->getDateRole(), - $market->getDateFormat(), - $market->getDate(), - $market->getPrice(), - $market->getDiscount(), - $market->getPriceTypeCode(), - $market->getCurrencyCode(), - $market->getTaxRateCode(), - $market->getTaxTypeCode(), - (int) $market->getAgentId(), - (int) $market->getSupplierId(), - (int) $market->getId() - ] - ); - } - - /** - * Delete a market entry by id. - * @param $market Market - */ - function deleteObject($market) { - return $this->deleteById($market->getId()); - } - - /** - * Delete a market entry by id. - * @param $entryId int - */ - function deleteById($entryId) { - $this->update('DELETE FROM markets WHERE market_id = ?', [(int) $entryId]); - } - - /** - * Get the ID of the last inserted market entry. - * @return int - */ - function getInsertId() { - return $this->_getInsertId('markets', 'market_id'); - } -} - - diff --git a/classes/publicationFormat/MarketDAO.php b/classes/publicationFormat/MarketDAO.php new file mode 100644 index 00000000000..f14952843f0 --- /dev/null +++ b/classes/publicationFormat/MarketDAO.php @@ -0,0 +1,219 @@ +retrieve( + 'SELECT m.* + FROM markets m + JOIN publication_formats pf ON (m.publication_format_id = pf.publication_format_id) + WHERE m.market_id = ? + ' . ($publicationId ? ' AND pf.publication_id = ?' : ''), + $params + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Retrieve all market for a publication format + * + * @param int $publicationFormatId + * + * @return DAOResultFactory containing matching market. + */ + public function getByPublicationFormatId($publicationFormatId) + { + return new DAOResultFactory( + $this->retrieveRange( + 'SELECT * FROM markets WHERE publication_format_id = ?', + [(int) $publicationFormatId] + ), + $this, + '_fromRow' + ); + } + + /** + * Construct a new data object corresponding to this DAO. + * + * @return Market + */ + public function newDataObject() + { + return new Market(); + } + + /** + * Internal function to return a Market object from a row. + * + * @param array $row + * @param bool $callHooks + * + * @return Market + */ + public function _fromRow($row, $callHooks = true) + { + $market = $this->newDataObject(); + $market->setId($row['market_id']); + $market->setCountriesIncluded(unserialize($row['countries_included'])); + $market->setCountriesExcluded(unserialize($row['countries_excluded'])); + $market->setRegionsIncluded(unserialize($row['regions_included'])); + $market->setRegionsExcluded(unserialize($row['regions_excluded'])); + $market->setDateRole($row['market_date_role']); + $market->setDateFormat($row['market_date_format']); + $market->setDate($row['market_date']); + $market->setDiscount($row['discount']); + $market->setPrice($row['price']); + $market->setPriceTypeCode($row['price_type_code']); + $market->setCurrencyCode($row['currency_code']); + $market->setTaxRateCode($row['tax_rate_code']); + $market->setTaxTypeCode($row['tax_type_code']); + $market->setAgentId($row['agent_id']); + $market->setSupplierId($row['supplier_id']); + $market->setPublicationFormatId($row['publication_format_id']); + + if ($callHooks) { + Hook::call('MarketDAO::_fromRow', [&$market, &$row]); + } + + return $market; + } + + /** + * Insert a new market entry. + * + * @param Market $market + */ + public function insertObject($market) + { + $this->update( + 'INSERT INTO markets + (publication_format_id, countries_included, countries_excluded, regions_included, regions_excluded, market_date_role, market_date_format, market_date, price, discount, price_type_code, currency_code, tax_rate_code, tax_type_code, agent_id, supplier_id) + VALUES + (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', + [ + (int) $market->getPublicationFormatId(), + serialize($market->getCountriesIncluded() ? $market->getCountriesIncluded() : []), + serialize($market->getCountriesExcluded() ? $market->getCountriesExcluded() : []), + serialize($market->getRegionsIncluded() ? $market->getRegionsIncluded() : []), + serialize($market->getRegionsExcluded() ? $market->getRegionsExcluded() : []), + $market->getDateRole(), + $market->getDateFormat(), + $market->getDate(), + $market->getPrice(), + $market->getDiscount(), + $market->getPriceTypeCode(), + $market->getCurrencyCode(), + $market->getTaxRateCode(), + $market->getTaxTypeCode(), + (int) $market->getAgentId(), + (int) $market->getSupplierId() + ] + ); + + $market->setId($this->getInsertId()); + return $market->getId(); + } + + /** + * Update an existing market entry. + * + * @param Market $market + */ + public function updateObject($market) + { + $this->update( + 'UPDATE markets + SET countries_included = ?, + countries_excluded = ?, + regions_included = ?, + regions_excluded = ?, + market_date_role = ?, + market_date_format = ?, + market_date = ?, + price = ?, + discount = ?, + price_type_code = ?, + currency_code = ?, + tax_rate_code = ?, + tax_type_code = ?, + agent_id = ?, + supplier_id = ? + WHERE market_id = ?', + [ + serialize($market->getCountriesIncluded() ? $market->getCountriesIncluded() : []), + serialize($market->getCountriesExcluded() ? $market->getCountriesExcluded() : []), + serialize($market->getRegionsIncluded() ? $market->getRegionsIncluded() : []), + serialize($market->getRegionsExcluded() ? $market->getRegionsExcluded() : []), + $market->getDateRole(), + $market->getDateFormat(), + $market->getDate(), + $market->getPrice(), + $market->getDiscount(), + $market->getPriceTypeCode(), + $market->getCurrencyCode(), + $market->getTaxRateCode(), + $market->getTaxTypeCode(), + (int) $market->getAgentId(), + (int) $market->getSupplierId(), + (int) $market->getId() + ] + ); + } + + /** + * Delete a market entry by id. + * + * @param Market $market + */ + public function deleteObject($market) + { + return $this->deleteById($market->getId()); + } + + /** + * Delete a market entry by id. + * + * @param int $entryId + */ + public function deleteById($entryId) + { + $this->update('DELETE FROM markets WHERE market_id = ?', [(int) $entryId]); + } +} diff --git a/classes/publicationFormat/PublicationDate.inc.php b/classes/publicationFormat/PublicationDate.inc.php deleted file mode 100644 index 177cb4adaf3..00000000000 --- a/classes/publicationFormat/PublicationDate.inc.php +++ /dev/null @@ -1,233 +0,0 @@ -dateFormats =& $onixCodelistItemDao->getCodes('List55'); - - parent::__construct(); - } - - /** - * get publication format id - * @return int - */ - function getPublicationFormatId() { - return $this->getData('publicationFormatId'); - } - - /** - * set publication format id - * @param $publicationFormatId int - */ - function setPublicationFormatId($publicationFormatId) { - return $this->setData('publicationFormatId', $publicationFormatId); - } - - /** - * Set the ONIX code for this publication date - * @param $role string - */ - function setRole($role) { - $this->setData('role', $role); - } - - /** - * Get the ONIX code for the publication date - * @return string - */ - function getRole() { - return $this->getData('role'); - } - - /** - * Set the date format for this publication date (ONIX Codelist List55) - * @param $format string - */ - function setDateFormat($format) { - $this->setData('dateFormat', $format); - } - - /** - * Get the date format for the publication date - * @return string - */ - function getDateFormat() { - return $this->getData('dateFormat'); - } - - /** - * Get the human readable name for this ONIX code - * @return string - */ - function getNameForONIXCode() { - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $codes =& $onixCodelistItemDao->getCodes('List163'); // List163 is for Publication date, Embargo date, Announcement date, etc - return $codes[$this->getRole()]; - } - - /** - * Set the date for this publication date - * @param $date string - */ - function setDate($date) { - $this->setData('date', $date); - } - - /** - * Get the date for the publication date - * @return string - */ - function getDate() { - return $this->getData('date'); - } - - /** - * Determines if this date is from the Hijri calendar. - * @return boolean - */ - function isHijriCalendar() { - $format = $this->dateFormats[$this->getDateFormat()]; - if (stristr($format, '(H)')) { - return true; - } else { - return false; - } - } - - /** - * determines whether or not the date should be parsed out with a date format. - * @return boolean - */ - function isFreeText() { - $format = $this->dateFormats[$this->getDateFormat()]; - if (stristr($format, 'string')) { - return true; - } else { - return false; - } - } - - /** - * returns a readable version of the entered date, based on - * the format specified from List55. Necessary, so it can be - * parsed correctly in the template. - * @return string - */ - function getReadableDates() { - $format = $this->dateFormats[$this->getDateFormat()]; - $dateFormatShort = \Application::get()->getRequest()->getContext()->getLocalizedDateFormatShort(); - - if ($this->isHijriCalendar()) { - $format = preg_replace('/\s*\(H\)/i', '', $format); - } - - // store the dates we parse. - $dates = array(); - - if (!$this->isFreeText()) { // this is not a free-form code - // assume that the characters in the format match up with - // the characters in the entered date. Iterate until the end. - - $numbers = str_split($this->getDate()); - - // these two should be the same length. - assert(count($numbers) == count(str_split($format))); - - // Some date codes have two dates (ie, a range). - // Split these up into both dates. - if (substr_count($format, 'Y') == 8) { - preg_match('/^(YYYY.*)(YYYY.*)$/', $format, $matches); - $dateFormats = array($matches[1], $matches[2]); - } else { - $dateFormats = array($format); - } - - foreach ($dateFormats as $format) { - $formatCharacters = str_split($format); - $previousFormatCharacter = ''; - $thisDate = ''; - $separator = '-'; - $containsMonth = false; - - for ($i = 0 ; $i < count($formatCharacters) ; $i ++) { - switch ($formatCharacters[$i]) { - // if there is a Time included, change the separator. - // Do not include the number, add a space instead. - case 'T': - $separator = ':'; - $thisDate .= ' '; - break; - case 'M': // falls through to default. This is just a marker. - $containsMonth = true; - default: - if ($i > 0 && $previousFormatCharacter != $formatCharacters[$i] && $previousFormatCharacter != 'T') { - $thisDate .= $separator; - } - $thisDate .= $numbers[$i]; - break; - } - - $previousFormatCharacter = $formatCharacters[$i]; - } - - // Perform date formatting here instead of in the template since - // testing is easier. - if ($containsMonth) { - $thisDate = strftime($dateFormatShort, strtotime($thisDate)); - } - - $dates[] = $thisDate; - // remove the first date from the numbers and extract again. - $numbers = array_slice($numbers, count($formatCharacters)); - } - - } else { - $dates[] = $this->getDate(); - } - return $dates; - } - - /** - * Return a best guess of the UNIX time corresponding to this date - * @return int? Number of seconds since the UNIX epoch, or null if it could not be determined - * FIXME: Hirji support - */ - function getUnixTime() { - $date = $this->getDate(); - switch ($this->getDateFormat()) { - case '12': return strtotime($date); - case '05': return strtotime("$date-01-01"); - case '01': return strtotime("$date-01"); - case '13': // FIXME: improve resolution below day - case '14': // FIXME: improve resolution below day - case '06': // FIXME: improve resolution below day - case '00': return strtotime(substr($date, 0, 4) . '-' . substr($date, 4, 2) . '-' . substr($date, 6, 2)); - } - return null; - } -} - - diff --git a/classes/publicationFormat/PublicationDate.php b/classes/publicationFormat/PublicationDate.php new file mode 100644 index 00000000000..dfdf2fa8e00 --- /dev/null +++ b/classes/publicationFormat/PublicationDate.php @@ -0,0 +1,271 @@ +dateFormats = & $onixCodelistItemDao->getCodes('List55'); + + parent::__construct(); + } + + /** + * get publication format id + * + * @return int + */ + public function getPublicationFormatId() + { + return $this->getData('publicationFormatId'); + } + + /** + * set publication format id + * + * @param int $publicationFormatId + */ + public function setPublicationFormatId($publicationFormatId) + { + return $this->setData('publicationFormatId', $publicationFormatId); + } + + /** + * Set the ONIX code for this publication date + * + * @param string $role + */ + public function setRole($role) + { + $this->setData('role', $role); + } + + /** + * Get the ONIX code for the publication date + * + * @return string + */ + public function getRole() + { + return $this->getData('role'); + } + + /** + * Set the date format for this publication date (ONIX Codelist List55) + * + * @param string $format + */ + public function setDateFormat($format) + { + $this->setData('dateFormat', $format); + } + + /** + * Get the date format for the publication date + * + * @return string + */ + public function getDateFormat() + { + return $this->getData('dateFormat'); + } + + /** + * Get the human readable name for this ONIX code + * + * @return string + */ + public function getNameForONIXCode() + { + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $codes = & $onixCodelistItemDao->getCodes('List163'); // List163 is for Publication date, Embargo date, Announcement date, etc + return $codes[$this->getRole()]; + } + + /** + * Set the date for this publication date + * + * @param string $date + */ + public function setDate($date) + { + $this->setData('date', $date); + } + + /** + * Get the date for the publication date + * + * @return string + */ + public function getDate() + { + return $this->getData('date'); + } + + /** + * Determines if this date is from the Hijri calendar. + * + * @return bool + */ + public function isHijriCalendar() + { + $format = $this->dateFormats[$this->getDateFormat()]; + if (stristr($format, '(H)')) { + return true; + } else { + return false; + } + } + + /** + * determines whether or not the date should be parsed out with a date format. + * + * @return bool + */ + public function isFreeText() + { + $format = $this->dateFormats[$this->getDateFormat()]; + if (stristr($format, 'string')) { + return true; + } else { + return false; + } + } + + /** + * returns a readable version of the entered date, based on + * the format specified from List55. Necessary, so it can be + * parsed correctly in the template. + * + * @return string[] + */ + public function getReadableDates() + { + $format = $this->dateFormats[$this->getDateFormat()]; + $dateFormatShort = PKPString::convertStrftimeFormat(Application::get()->getRequest()->getContext()->getLocalizedDateFormatShort()); + + if ($this->isHijriCalendar()) { + $format = preg_replace('/\s*\(H\)/i', '', $format); + } + + // store the dates we parse. + $dates = []; + + if (!$this->isFreeText()) { // this is not a free-form code + // assume that the characters in the format match up with + // the characters in the entered date. Iterate until the end. + + $numbers = str_split($this->getDate()); + + // these two should be the same length. + assert(count($numbers) == count(str_split($format))); + + // Some date codes have two dates (ie, a range). + // Split these up into both dates. + if (substr_count($format, 'Y') == 8) { + preg_match('/^(YYYY.*)(YYYY.*)$/', $format, $matches); + $dateFormats = [$matches[1], $matches[2]]; + } else { + $dateFormats = [$format]; + } + + foreach ($dateFormats as $format) { + $formatCharacters = str_split($format); + $previousFormatCharacter = ''; + $thisDate = ''; + $separator = '-'; + $containsMonth = false; + + for ($i = 0 ; $i < count($formatCharacters) ; $i ++) { + switch ($formatCharacters[$i]) { + // if there is a Time included, change the separator. + // Do not include the number, add a space instead. + case 'T': + $separator = ':'; + $thisDate .= ' '; + break; + case 'M': // falls through to default. This is just a marker. + $containsMonth = true; + // no break + default: + if ($i > 0 && $previousFormatCharacter != $formatCharacters[$i] && $previousFormatCharacter != 'T') { + $thisDate .= $separator; + } + $thisDate .= $numbers[$i]; + break; + } + + $previousFormatCharacter = $formatCharacters[$i]; + } + + // Perform date formatting here instead of in the template since + // testing is easier. + if ($containsMonth) { + $thisDate = date($dateFormatShort, strtotime($thisDate)); + } + + $dates[] = $thisDate; + // remove the first date from the numbers and extract again. + $numbers = array_slice($numbers, count($formatCharacters)); + } + } else { + $dates[] = $this->getDate(); + } + return $dates; + } + + /** + * Return a best guess of the UNIX time corresponding to this date + * + * @return ?int Number of seconds since the UNIX epoch, or null if it could not be determined + * FIXME: Hirji support + */ + public function getUnixTime() + { + $date = $this->getDate(); + switch ($this->getDateFormat()) { + case '12': return strtotime($date); + case '05': return strtotime("{$date}-01-01"); + case '01': return strtotime("{$date}-01"); + case '13': // FIXME: improve resolution below day + case '14': // FIXME: improve resolution below day + case '06': // FIXME: improve resolution below day + case '00': return strtotime(substr($date, 0, 4) . '-' . substr($date, 4, 2) . '-' . substr($date, 6, 2)); + } + return null; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publicationFormat\PublicationDate', '\PublicationDate'); +} diff --git a/classes/publicationFormat/PublicationDateDAO.inc.php b/classes/publicationFormat/PublicationDateDAO.inc.php deleted file mode 100644 index 00e38716d0f..00000000000 --- a/classes/publicationFormat/PublicationDateDAO.inc.php +++ /dev/null @@ -1,150 +0,0 @@ -retrieve( - 'SELECT p.* - FROM publication_dates p - JOIN publication_formats pf ON (p.publication_format_id = pf.publication_format_id) - WHERE p.publication_date_id = ? - ' . ($publicationId?' AND pf.publication_id = ?':''), - $params - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Retrieve all publication dates for an assigned publication format - * @param $representationId int - * @return DAOResultFactory containing matching publication dates - */ - function getByPublicationFormatId($representationId) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT * FROM publication_dates WHERE publication_format_id = ?', - [(int) $representationId] - ), - $this, - '_fromRow' - ); - } - - /** - * Construct a new data object corresponding to this DAO. - * @return PublicationDate - */ - function newDataObject() { - return new PublicationDate(); - } - - /** - * Internal function to return a PublicationDate object from a row. - * @param $row array - * @param $callHooks boolean - * @return PublicationDate - */ - function _fromRow($row, $callHooks = true) { - $publicationDate = $this->newDataObject(); - $publicationDate->setId($row['publication_date_id']); - $publicationDate->setRole($row['role']); - $publicationDate->setDateFormat($row['date_format']); - $publicationDate->setDate($row['date']); - $publicationDate->setPublicationFormatId($row['publication_format_id']); - - if ($callHooks) HookRegistry::call('PublicationDateDAO::_fromRow', [&$publicationDate, &$row]); - - return $publicationDate; - } - - /** - * Insert a new publication date. - * @param $publicationDate PublicationDate - */ - function insertObject($publicationDate) { - $this->update( - 'INSERT INTO publication_dates - (publication_format_id, role, date_format, date) - VALUES - (?, ?, ?, ?)', - [ - (int) $publicationDate->getPublicationFormatId(), - $publicationDate->getRole(), - $publicationDate->getDateFormat(), - $publicationDate->getDate() - ] - ); - - $publicationDate->setId($this->getInsertId()); - return $publicationDate->getId(); - } - - /** - * Update an existing publication date. - * @param $publicationDate PublicationDate - */ - function updateObject($publicationDate) { - $this->update( - 'UPDATE publication_dates - SET role = ?, date_format =?, date = ? - WHERE publication_date_id = ?', - [ - $publicationDate->getRole(), - $publicationDate->getDateFormat(), - $publicationDate->getDate(), - (int) $publicationDate->getId() - ] - ); - } - - /** - * Delete a publication date. - * @param $publicationDate PublicationDate - */ - function deleteObject($publicationDate) { - return $this->deleteById($publicationDate->getId()); - } - - /** - * delete a publication date by id. - * @param $entryId int - */ - function deleteById($entryId) { - $this->update('DELETE FROM publication_dates WHERE publication_date_id = ?', [(int) $entryId]); - } - - /** - * Get the ID of the last inserted publication date. - * @return int - */ - function getInsertId() { - return $this->_getInsertId('publication_dates', 'publication_date_id'); - } -} - - diff --git a/classes/publicationFormat/PublicationDateDAO.php b/classes/publicationFormat/PublicationDateDAO.php new file mode 100644 index 00000000000..e4b98683df7 --- /dev/null +++ b/classes/publicationFormat/PublicationDateDAO.php @@ -0,0 +1,173 @@ +retrieve( + 'SELECT p.* + FROM publication_dates p + JOIN publication_formats pf ON (p.publication_format_id = pf.publication_format_id) + WHERE p.publication_date_id = ? + ' . ($publicationId ? ' AND pf.publication_id = ?' : ''), + $params + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Retrieve all publication dates for an assigned publication format + * + * @param int $representationId + * + * @return DAOResultFactory containing matching publication dates + */ + public function getByPublicationFormatId($representationId) + { + return new DAOResultFactory( + $this->retrieveRange( + 'SELECT * FROM publication_dates WHERE publication_format_id = ?', + [(int) $representationId] + ), + $this, + '_fromRow' + ); + } + + /** + * Construct a new data object corresponding to this DAO. + * + * @return PublicationDate + */ + public function newDataObject() + { + return new PublicationDate(); + } + + /** + * Internal function to return a PublicationDate object from a row. + * + * @param array $row + * @param bool $callHooks + * + * @return PublicationDate + */ + public function _fromRow($row, $callHooks = true) + { + $publicationDate = $this->newDataObject(); + $publicationDate->setId($row['publication_date_id']); + $publicationDate->setRole($row['role']); + $publicationDate->setDateFormat($row['date_format']); + $publicationDate->setDate($row['date']); + $publicationDate->setPublicationFormatId($row['publication_format_id']); + + if ($callHooks) { + Hook::call('PublicationDateDAO::_fromRow', [&$publicationDate, &$row]); + } + + return $publicationDate; + } + + /** + * Insert a new publication date. + * + * @param PublicationDate $publicationDate + */ + public function insertObject($publicationDate) + { + $this->update( + 'INSERT INTO publication_dates + (publication_format_id, role, date_format, date) + VALUES + (?, ?, ?, ?)', + [ + (int) $publicationDate->getPublicationFormatId(), + $publicationDate->getRole(), + $publicationDate->getDateFormat(), + $publicationDate->getDate() + ] + ); + + $publicationDate->setId($this->getInsertId()); + return $publicationDate->getId(); + } + + /** + * Update an existing publication date. + * + * @param PublicationDate $publicationDate + */ + public function updateObject($publicationDate) + { + $this->update( + 'UPDATE publication_dates + SET role = ?, date_format =?, date = ? + WHERE publication_date_id = ?', + [ + $publicationDate->getRole(), + $publicationDate->getDateFormat(), + $publicationDate->getDate(), + (int) $publicationDate->getId() + ] + ); + } + + /** + * Delete a publication date. + * + * @param PublicationDate $publicationDate + */ + public function deleteObject($publicationDate) + { + return $this->deleteById($publicationDate->getId()); + } + + /** + * delete a publication date by id. + * + * @param int $entryId + */ + public function deleteById($entryId) + { + $this->update('DELETE FROM publication_dates WHERE publication_date_id = ?', [(int) $entryId]); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publicationFormat\PublicationDateDAO', '\PublicationDateDAO'); +} diff --git a/classes/publicationFormat/PublicationFormat.inc.php b/classes/publicationFormat/PublicationFormat.inc.php deleted file mode 100644 index 96ee16a1119..00000000000 --- a/classes/publicationFormat/PublicationFormat.inc.php +++ /dev/null @@ -1,525 +0,0 @@ -getData('urlPath') - ? $this->getData('urlPath') - : $this->getId(); - } - - /** - * get physical format flag - * @return bool - */ - function getPhysicalFormat() { - return $this->getData('physicalFormat'); - } - - /** - * set physical format flag - * @param $physicalFormat bool - */ - function setPhysicalFormat($physicalFormat) { - return $this->setData('physicalFormat', $physicalFormat); - } - - /** - * Get the ONIX code for this publication format - * @return string - */ - function getEntryKey() { - return $this->getData('entryKey'); - } - - /** - * Sets the ONIX code for the publication format - * @param $code string - */ - function setEntryKey($entryKey) { - $this->setData('entryKey', $entryKey); - } - - /** - * Get the human readable name for this ONIX code - * @return string - */ - function getNameForONIXCode() { - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $codes = $onixCodelistItemDao->getCodes('List7'); // List7 is for object formats - return $codes[$this->getEntryKey()]; - } - - /** - * Get the country of manufacture code that this format was manufactured in. - * @return string - */ - function getCountryManufactureCode() { - return $this->getData('countryManufactureCode'); - } - - /** - * Set the country of manufacture code for a publication format. - * @param $countryManufactureCode string - */ - function setCountryManufactureCode($countryManufactureCode) { - return $this->setData('countryManufactureCode', $countryManufactureCode); - } - - /** - * Get the product availability code (ONIX value) for this format (List65). - * @return string - */ - function getProductAvailabilityCode() { - return $this->getData('productAvailabilityCode'); - } - - /** - * Set the product availability code (ONIX value) for a publication format. - * @param $productAvailabilityCode string - */ - function setProductAvailabilityCode($productAvailabilityCode) { - return $this->setData('productAvailabilityCode', $productAvailabilityCode); - } - - /** - * Get the height of the monograph format. - * @return string - */ - function getHeight() { - return $this->getData('height'); - } - - /** - * Set the height of a publication format. - * @param $height string - */ - function setHeight($height) { - return $this->setData('height', $height); - } - - /** - * Get the height unit (ONIX value) of the monograph format (List50). - * @return string - */ - function getHeightUnitCode() { - return $this->getData('heightUnitCode'); - } - - /** - * Set the height unit (ONIX value) for a publication format. - * @param $heightUnitCode string - */ - function setHeightUnitCode($heightUnitCode) { - return $this->setData('heightUnitCode', $heightUnitCode); - } - - /** - * Get the width of the monograph format. - * @return string - */ - function getWidth() { - return $this->getData('width'); - } - - /** - * Set the width of a publication format. - * @param $width string - */ - function setWidth($width) { - return $this->setData('width', $width); - } - - /** - * Get the width unit code (ONIX value) of the monograph format (List50). - * @return string - */ - function getWidthUnitCode() { - return $this->getData('widthUnitCode'); - } - - /** - * Set the width unit code (ONIX value) for a publication format. - * @param $widthUnitCode string - */ - function setWidthUnitCode($widthUnitCode) { - return $this->setData('widthUnitCode', $widthUnitCode); - } - - /** - * Get the thickness of the monograph format. - * @return string - */ - function getThickness() { - return $this->getData('thickness'); - } - - /** - * Set the thickness of a publication format. - * @param $thickness string - */ - function setThickness($thickness) { - return $this->setData('thickness', $thickness); - } - - /** - * Get the thickness unit code (ONIX value) of the monograph format (List50). - * @return string - */ - function getThicknessUnitCode() { - return $this->getData('thicknessUnitCode'); - } - - /** - * Set the thickness unit code (ONIX value) for a publication format. - * @param $thicknessUnitCode string - */ - function setThicknessUnitCode($thicknessUnitCode) { - return $this->setData('thicknessUnitCode', $thicknessUnitCode); - } - - /** - * Get the weight of the monograph format. - * @return string - */ - function getWeight() { - return $this->getData('weight'); - } - - /** - * Set the weight for a publication format. - * @param $weight string - */ - function setWeight($weight) { - return $this->setData('weight', $weight); - } - - /** - * Get the weight unit code (ONIX value) of the monograph format (List95). - * @return string - */ - function getWeightUnitCode() { - return $this->getData('weightUnitCode'); - } - - /** - * Set the weight unit code (ONIX value) for a publication format. - * @param $weightUnitCode string - */ - function setWeightUnitCode($weightUnitCode) { - return $this->setData('weightUnitCode', $weightUnitCode); - } - - /** - * Get the file size of the monograph format. - * @return string - */ - function getFileSize() { - return $this->getData('fileSize'); - } - - /** - * Get the file size of the monograph format based on calculated sizes - * for approved proof files. - * @return string - */ - function getCalculatedFileSize() { - $fileSize = 0; - $publication = Services::get('publication')->get($this->getData('publicationId')); - import('lib.pkp.classes.submission.SubmissionFile'); // File constants - $stageMonographFiles = Services::get('submissionFile')->getMany([ - 'submissionIds' => [$publication->getData('submissionId')], - 'fileStages' => [SUBMISSION_FILE_PROOF], - 'assocTypes' => [ASSOC_TYPE_PUBLICATION_FORMAT], - 'assocIds' => [$this->getId()], - ]); - - foreach ($stageMonographFiles as $monographFile) { - if ($monographFile->getViewable()) { - $fileSize += (int) Services::get('file')->fs->getSize($monographFile->getData('path')); - } - } - - return sprintf('%d.3', $fileSize/(1024*1024)); // bytes to Mb - } - - /** - * Set the file size of the publication format. - * @param $fileSize string - */ - function setFileSize($fileSize) { - return $this->setData('fileSize', $fileSize); - } - - /** - * Get the SalesRights objects for this format. - * @return DAOResultFactory SalesRights - */ - function getSalesRights() { - $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /* @var $salesRightsDao SalesRightsDAO */ - return $salesRightsDao->getByPublicationFormatId($this->getId()); - } - - /** - * Get the IdentificationCode objects for this format. - * @return DAOResultFactory IdentificationCode - */ - function getIdentificationCodes() { - $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /* @var $identificationCodeDao IdentificationCodeDAO */ - return $identificationCodeDao->getByPublicationFormatId($this->getId()); - } - - /** - * Get the PublicationDate objects for this format. - * @return Array PublicationDate - */ - function getPublicationDates() { - $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /* @var $publicationDateDao PublicationDateDAO */ - return $publicationDateDao->getByPublicationFormatId($this->getId()); - } - - /** - * Get the Market objects for this format. - * @return DAOResultFactory Market - */ - function getMarkets() { - $marketDao = DAORegistry::getDAO('MarketDAO'); /* @var $marketDao MarketDAO */ - return $marketDao->getByPublicationFormatId($this->getId()); - } - - /** - * Get the product form detail code (ONIX value) for the format used for this format (List151). - * @return string - */ - function getProductFormDetailCode() { - return $this->getData('productFormDetailCode'); - } - - /** - * Set the product form detail code (ONIX value) for a publication format. - * @param $productFormDetailCode string - */ - function setProductFormDetailCode($productFormDetailCode) { - return $this->setData('productFormDetailCode', $productFormDetailCode); - } - - /** - * Get the product composition code (ONIX value) used for this format (List2). - * @return string - */ - function getProductCompositionCode() { - return $this->getData('productCompositionCode'); - } - - /** - * Set the product composition code (ONIX value) for a publication format. - * @param $productCompositionCode string - */ - function setProductCompositionCode($productCompositionCode) { - return $this->setData('productCompositionCode', $productCompositionCode); - } - - /** - * Get the page count for the front matter section of a publication format. - * @return string - */ - function getFrontMatter() { - return $this->getData('frontMatter'); - } - - /** - * Set the front matter page count for a publication format. - * @param $frontMatter string - */ - function setFrontMatter($frontMatter) { - return $this->setData('frontMatter', $frontMatter); - } - - /** - * Get the page count for the back matter section of a publication format. - * @return string - */ - function getBackMatter() { - return $this->getData('backMatter'); - } - - /** - * Set the back matter page count for a publication format. - * @param $backMatter string - */ - function setBackMatter($backMatter) { - return $this->setData('backMatter', $backMatter); - } - - /** - * Get the imprint brand name for a publication format. - * @return string - */ - function getImprint() { - return $this->getData('imprint'); - } - - /** - * Set the imprint brand name for a publication format. - * @param $imprint string - */ - function setImprint($imprint) { - return $this->setData('imprint', $imprint); - } - - /** - * Get the technical protection code for a digital publication format (List144). - * @return string - */ - function getTechnicalProtectionCode() { - return $this->getData('technicalProtectionCode'); - } - - /** - * Set the technical protection code for a publication format. - * @param $technicalProtectionCode string - */ - function setTechnicalProtectionCode($technicalProtectionCode) { - return $this->setData('technicalProtectionCode', $technicalProtectionCode); - } - - /** - * Get the return code for a physical publication format (List66). - * @return string - */ - function getReturnableIndicatorCode() { - return $this->getData('returnableIndicatorCode'); - } - - /** - * Set the return code for a publication format. - * @param $returnableIndicatorCode string - */ - function setReturnableIndicatorCode($returnableIndicatorCode) { - return $this->setData('returnableIndicatorCode', $returnableIndicatorCode); - } - - /** - * Get whether or not this format is available in the catalog. - * @return int - */ - function getIsAvailable() { - return $this->getData('isAvailable'); - } - - /** - * Set whether or not this format is available in the catalog. - * @param $isAvailable int - */ - function setIsAvailable($isAvailable) { - return $this->setData('isAvailable', $isAvailable); - } - - /** - * Check to see if this publication format has everything it needs for valid ONIX export - * Ideally, do this with a DOMDocument schema validation. We do it this way for now because - * of a potential issue with libxml2: http://stackoverflow.com/questions/6284827 - * - * @return String - */ - function hasNeededONIXFields() { - // ONIX requires one identification code and a market region with a defined price. - $assignedIdentificationCodes = $this->getIdentificationCodes(); - $assignedMarkets = $this->getMarkets(); - - $errors = array(); - if ($assignedMarkets->wasEmpty()) { - $errors[] = 'monograph.publicationFormat.noMarketsAssigned'; - } - - if ($assignedIdentificationCodes->wasEmpty()) { - $errors[] = 'monograph.publicationFormat.noCodesAssigned'; - } - - return array_merge($errors, $this->_checkRequiredFieldsAssigned()); - } - - /** - * Internal function to provide some validation for the ONIX export by - * checking the required ONIX fields associated with this format. - * @return array - */ - function _checkRequiredFieldsAssigned() { - $requiredFields = array('productCompositionCode' => 'grid.catalogEntry.codeRequired', 'productAvailabilityCode' => 'grid.catalogEntry.productAvailabilityRequired'); - - $errors = array(); - - foreach ($requiredFields as $field => $errorCode) { - if ($this->getData($field) == '') { - $errors[] = $errorCode; - } - } - - if (!$this->getPhysicalFormat()) { - if (!$this->getFileSize() && !$this->getCalculatedFileSize()) { - $errors['fileSize'] = 'grid.catalogEntry.fileSizeRequired'; - } - } - - return $errors; - } - - /** - * Get the press id from the monograph assigned to this publication format. - * @return int - */ - function getPressId() { - return $this->getContextId(); - } - - /** - * Return the format's physical dimensions - * @return string - */ - function getDimensions() { - - if (!$this->getPhysicalFormat()) { - return ''; - } - - $width = $this->getWidth(); - $height = $this->getHeight(); - $thickness = $this->getThickness(); - - $dimensions = array(); - if (!empty($width)) { $dimensions[] = $width . $this->getWidthUnitCode(); } - if (!empty($height)) { $dimensions[] = $height . $this->getHeightUnitCode(); } - if (!empty($thickness)) { $dimensions[] = $thickness . $this->getThicknessUnitCode(); } - - return join( __('monograph.publicationFormat.productDimensionsSeparator'), $dimensions ); - } -} - - diff --git a/classes/publicationFormat/PublicationFormat.php b/classes/publicationFormat/PublicationFormat.php new file mode 100644 index 00000000000..fb7cffdf292 --- /dev/null +++ b/classes/publicationFormat/PublicationFormat.php @@ -0,0 +1,668 @@ +getData('urlPath')) ? $urlPath : $this->getId(); + } + + /** + * get physical format flag + * + * @return bool + */ + public function getPhysicalFormat() + { + return $this->getData('physicalFormat'); + } + + /** + * set physical format flag + * + * @param bool $physicalFormat + */ + public function setPhysicalFormat($physicalFormat) + { + return $this->setData('physicalFormat', $physicalFormat); + } + + /** + * Get the ONIX code for this publication format + * + * @return string + */ + public function getEntryKey() + { + return $this->getData('entryKey'); + } + + /** + * Sets the ONIX code for the publication format + */ + public function setEntryKey($entryKey) + { + $this->setData('entryKey', $entryKey); + } + + /** + * Get the human readable name for this ONIX code + * + * @return string + */ + public function getNameForONIXCode() + { + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $codes = $onixCodelistItemDao->getCodes('List7'); // List7 is for object formats + return $codes[$this->getEntryKey()]; + } + + /** + * Get the country of manufacture code that this format was manufactured in. + * + * @return string + */ + public function getCountryManufactureCode() + { + return $this->getData('countryManufactureCode'); + } + + /** + * Set the country of manufacture code for a publication format. + * + * @param string $countryManufactureCode + */ + public function setCountryManufactureCode($countryManufactureCode) + { + return $this->setData('countryManufactureCode', $countryManufactureCode); + } + + /** + * Get the product availability code (ONIX value) for this format (List65). + * + * @return string + */ + public function getProductAvailabilityCode() + { + return $this->getData('productAvailabilityCode'); + } + + /** + * Set the product availability code (ONIX value) for a publication format. + * + * @param string $productAvailabilityCode + */ + public function setProductAvailabilityCode($productAvailabilityCode) + { + return $this->setData('productAvailabilityCode', $productAvailabilityCode); + } + + /** + * Get the height of the monograph format. + * + * @return string + */ + public function getHeight() + { + return $this->getData('height'); + } + + /** + * Set the height of a publication format. + * + * @param string $height + */ + public function setHeight($height) + { + return $this->setData('height', $height); + } + + /** + * Get the height unit (ONIX value) of the monograph format (List50). + * + * @return string + */ + public function getHeightUnitCode() + { + return $this->getData('heightUnitCode'); + } + + /** + * Set the height unit (ONIX value) for a publication format. + * + * @param string $heightUnitCode + */ + public function setHeightUnitCode($heightUnitCode) + { + return $this->setData('heightUnitCode', $heightUnitCode); + } + + /** + * Get the width of the monograph format. + * + * @return string + */ + public function getWidth() + { + return $this->getData('width'); + } + + /** + * Set the width of a publication format. + * + * @param string $width + */ + public function setWidth($width) + { + return $this->setData('width', $width); + } + + /** + * Get the width unit code (ONIX value) of the monograph format (List50). + * + * @return string + */ + public function getWidthUnitCode() + { + return $this->getData('widthUnitCode'); + } + + /** + * Set the width unit code (ONIX value) for a publication format. + * + * @param string $widthUnitCode + */ + public function setWidthUnitCode($widthUnitCode) + { + return $this->setData('widthUnitCode', $widthUnitCode); + } + + /** + * Get the thickness of the monograph format. + * + * @return string + */ + public function getThickness() + { + return $this->getData('thickness'); + } + + /** + * Set the thickness of a publication format. + * + * @param string $thickness + */ + public function setThickness($thickness) + { + return $this->setData('thickness', $thickness); + } + + /** + * Get the thickness unit code (ONIX value) of the monograph format (List50). + * + * @return string + */ + public function getThicknessUnitCode() + { + return $this->getData('thicknessUnitCode'); + } + + /** + * Set the thickness unit code (ONIX value) for a publication format. + * + * @param string $thicknessUnitCode + */ + public function setThicknessUnitCode($thicknessUnitCode) + { + return $this->setData('thicknessUnitCode', $thicknessUnitCode); + } + + /** + * Get the weight of the monograph format. + * + * @return string + */ + public function getWeight() + { + return $this->getData('weight'); + } + + /** + * Set the weight for a publication format. + * + * @param string $weight + */ + public function setWeight($weight) + { + return $this->setData('weight', $weight); + } + + /** + * Get the weight unit code (ONIX value) of the monograph format (List95). + * + * @return string + */ + public function getWeightUnitCode() + { + return $this->getData('weightUnitCode'); + } + + /** + * Set the weight unit code (ONIX value) for a publication format. + * + * @param string $weightUnitCode + */ + public function setWeightUnitCode($weightUnitCode) + { + return $this->setData('weightUnitCode', $weightUnitCode); + } + + /** + * Get the file size of the monograph format. + * + * @return string + */ + public function getFileSize() + { + return $this->getData('fileSize'); + } + + /** + * Get the file size of the monograph format based on calculated sizes + * for approved proof files. + * + * @return string + */ + public function getCalculatedFileSize() + { + $fileSize = 0; + $publication = Repo::publication()->get((int) $this->getData('publicationId')); + $stageMonographFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$publication->getData('submissionId')]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_PROOF]) + ->filterByAssoc( + Application::ASSOC_TYPE_PUBLICATION_FORMAT, + [$this->getId()] + ) + ->getMany(); + + foreach ($stageMonographFiles as $monographFile) { + if ($monographFile->getViewable()) { + $fileSize += (int) Services::get('file')->fs->fileSize($monographFile->getData('path')); + } + } + + return sprintf('%d.3', $fileSize / (1024 * 1024)); // bytes to Mb + } + + /** + * Set the file size of the publication format. + * + * @param string $fileSize + */ + public function setFileSize($fileSize) + { + return $this->setData('fileSize', $fileSize); + } + + /** + * Get the SalesRights objects for this format. + * + * @return DAOResultFactory SalesRights + */ + public function getSalesRights() + { + $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /** @var SalesRightsDAO $salesRightsDao */ + return $salesRightsDao->getByPublicationFormatId($this->getId()); + } + + /** + * Get the IdentificationCode objects for this format. + * + * @return DAOResultFactory IdentificationCode + */ + public function getIdentificationCodes() + { + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + return $identificationCodeDao->getByPublicationFormatId($this->getId()); + } + + /** + * Get the PublicationDate objects for this format. + * + * @return DAOResultFactory PublicationDate + */ + public function getPublicationDates() + { + $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /** @var PublicationDateDAO $publicationDateDao */ + return $publicationDateDao->getByPublicationFormatId($this->getId()); + } + + /** + * Get the Market objects for this format. + * + * @return DAOResultFactory Market + */ + public function getMarkets() + { + $marketDao = DAORegistry::getDAO('MarketDAO'); /** @var MarketDAO $marketDao */ + return $marketDao->getByPublicationFormatId($this->getId()); + } + + /** + * Get the product form detail code (ONIX value) for the format used for this format (List151). + * + * @return string + */ + public function getProductFormDetailCode() + { + return $this->getData('productFormDetailCode'); + } + + /** + * Set the product form detail code (ONIX value) for a publication format. + * + * @param string $productFormDetailCode + */ + public function setProductFormDetailCode($productFormDetailCode) + { + return $this->setData('productFormDetailCode', $productFormDetailCode); + } + + /** + * Get the product composition code (ONIX value) used for this format (List2). + * + * @return string + */ + public function getProductCompositionCode() + { + return $this->getData('productCompositionCode'); + } + + /** + * Set the product composition code (ONIX value) for a publication format. + * + * @param string $productCompositionCode + */ + public function setProductCompositionCode($productCompositionCode) + { + return $this->setData('productCompositionCode', $productCompositionCode); + } + + /** + * Get the page count for the front matter section of a publication format. + * + * @return string + */ + public function getFrontMatter() + { + return $this->getData('frontMatter'); + } + + /** + * Set the front matter page count for a publication format. + * + * @param string $frontMatter + */ + public function setFrontMatter($frontMatter) + { + return $this->setData('frontMatter', $frontMatter); + } + + /** + * Get the page count for the back matter section of a publication format. + * + * @return string + */ + public function getBackMatter() + { + return $this->getData('backMatter'); + } + + /** + * Set the back matter page count for a publication format. + * + * @param string $backMatter + */ + public function setBackMatter($backMatter) + { + return $this->setData('backMatter', $backMatter); + } + + /** + * Get the imprint brand name for a publication format. + * + * @return string + */ + public function getImprint() + { + return $this->getData('imprint'); + } + + /** + * Set the imprint brand name for a publication format. + * + * @param string $imprint + */ + public function setImprint($imprint) + { + return $this->setData('imprint', $imprint); + } + + /** + * Get the technical protection code for a digital publication format (List144). + * + * @return string + */ + public function getTechnicalProtectionCode() + { + return $this->getData('technicalProtectionCode'); + } + + /** + * Set the technical protection code for a publication format. + * + * @param string $technicalProtectionCode + */ + public function setTechnicalProtectionCode($technicalProtectionCode) + { + return $this->setData('technicalProtectionCode', $technicalProtectionCode); + } + + /** + * Get the return code for a physical publication format (List66). + * + * @return string + */ + public function getReturnableIndicatorCode() + { + return $this->getData('returnableIndicatorCode'); + } + + /** + * Set the return code for a publication format. + * + * @param string $returnableIndicatorCode + */ + public function setReturnableIndicatorCode($returnableIndicatorCode) + { + return $this->setData('returnableIndicatorCode', $returnableIndicatorCode); + } + + /** + * Get whether or not this format is available in the catalog. + * + * @return int + */ + public function getIsAvailable() + { + return $this->getData('isAvailable'); + } + + /** + * Set whether or not this format is available in the catalog. + * + * @param int $isAvailable + */ + public function setIsAvailable($isAvailable) + { + return $this->setData('isAvailable', $isAvailable); + } + + /** + * Check to see if this publication format has everything it needs for valid ONIX export + * Ideally, do this with a DOMDocument schema validation. We do it this way for now because + * of a potential issue with libxml2: http://stackoverflow.com/questions/6284827 + * + * @return string[] + */ + public function hasNeededONIXFields() + { + // ONIX requires one identification code and a market region with a defined price. + $assignedIdentificationCodes = $this->getIdentificationCodes(); + $assignedMarkets = $this->getMarkets(); + + $errors = []; + if ($assignedMarkets->wasEmpty()) { + $errors[] = 'monograph.publicationFormat.noMarketsAssigned'; + } + + if ($assignedIdentificationCodes->wasEmpty()) { + $errors[] = 'monograph.publicationFormat.noCodesAssigned'; + } + + return array_merge($errors, $this->_checkRequiredFieldsAssigned()); + } + + /** + * Internal function to provide some validation for the ONIX export by + * checking the required ONIX fields associated with this format. + * + * @return array + */ + public function _checkRequiredFieldsAssigned() + { + $requiredFields = ['productCompositionCode' => 'grid.catalogEntry.codeRequired', 'productAvailabilityCode' => 'grid.catalogEntry.productAvailabilityRequired']; + + $errors = []; + + foreach ($requiredFields as $field => $errorCode) { + if ($this->getData($field) == '') { + $errors[] = $errorCode; + } + } + + if (!$this->getPhysicalFormat()) { + if (!$this->getFileSize() && !$this->getCalculatedFileSize()) { + $errors['fileSize'] = 'grid.catalogEntry.fileSizeRequired'; + } + } + + return $errors; + } + + /** + * Get the press id from the monograph assigned to this publication format. + * + * @return int + */ + public function getPressId() + { + return $this->getContextId(); + } + + /** + * Return the format's physical dimensions + * + * @return string + */ + public function getDimensions() + { + if (!$this->getPhysicalFormat()) { + return ''; + } + + $width = $this->getWidth(); + $height = $this->getHeight(); + $thickness = $this->getThickness(); + + $dimensions = []; + if (!empty($width)) { + $dimensions[] = $width . $this->getWidthUnitCode(); + } + if (!empty($height)) { + $dimensions[] = $height . $this->getHeightUnitCode(); + } + if (!empty($thickness)) { + $dimensions[] = $thickness . $this->getThicknessUnitCode(); + } + + return join(__('monograph.publicationFormat.productDimensionsSeparator'), $dimensions); + } + + /** + * Set the stored public ID of the submission. + * + * @param string $pubIdType One of the NLM pub-id-type values or + * 'other::something' if not part of the official NLM list + * (see ). + * @param string $pubId + */ + public function setStoredPubId($pubIdType, $pubId) + { + if ($pubIdType == 'doi') { + if ($doiObject = $this->getData('doiObject')) { + Repo::doi()->edit($doiObject, ['doi' => $pubId]); + } else { + $newDoiObject = Repo::doi()->newDataObject( + [ + 'doi' => $pubId, + 'contextId' => $this->getContextId() + ] + ); + $doiId = Repo::doi()->add($newDoiObject); + $this->setData('doiId', $doiId); + } + } else { + parent::setStoredPubId($pubIdType, $pubId); + } + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publicationFormat\PublicationFormat', '\PublicationFormat'); +} diff --git a/classes/publicationFormat/PublicationFormatDAO.inc.php b/classes/publicationFormat/PublicationFormatDAO.inc.php deleted file mode 100644 index d56b2334575..00000000000 --- a/classes/publicationFormat/PublicationFormatDAO.inc.php +++ /dev/null @@ -1,475 +0,0 @@ -retrieve( - 'SELECT pf.* - FROM publication_formats pf - ' . ($contextId?' - JOIN publications p ON (p.publication_id = pf.publicationId) - JOIN submissions s ON (s.submission_id=p.submission_id)':'') . ' - WHERE pf.publication_format_id=?' . - ($publicationId?' AND pf.publication_id = ?':'') . - ($contextId?' AND s.context_id = ?':''), - $params - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Find publication format by querying publication format settings. - * @param $settingName string - * @param $settingValue mixed - * @param $publicationId int optional - * @param $pressId int optional - * @return array The publication formats identified by setting. - */ - function getBySetting($settingName, $settingValue, $publicationId = null, $pressId = null) { - $params = [$settingName]; - - $sql = 'SELECT pf.* - FROM publication_formats pf '; - if ($pressId) { - $sql .= 'INNER JOIN publications p ON p.publication_id = pf.publication_id - INNER JOIN submissions s ON s.submission_id = p.submission_id '; - } - if (is_null($settingValue)) { - $sql .= 'LEFT JOIN publication_format_settings pfs ON pf.publication_format_id = pfs.publication_format_id AND pfs.setting_name = ? - WHERE (pfs.setting_value IS NULL OR pfs.setting_value = \'\')'; - } else { - $params[] = (string) $settingValue; - $sql .= 'INNER JOIN publication_format_settings pfs ON pf.publication_format_id = pfs.publication_format_id - WHERE pfs.setting_name = ? AND pfs.setting_value = ?'; - } - - if ($publicationId) { - $params[] = (int) $publicationId; - $sql .= ' AND pf.publication_id = ?'; - } - - if ($pressId) { - $params[] = (int) $pressId; - $sql .= ' AND s.context_id = ?'; - } - - $orderByContextId = $pressId ? 's.context_id, ' : ''; - $sql .= ' ORDER BY ' . $orderByContextId . 'pf.seq, pf.publication_format_id'; - $result = $this->retrieve($sql, $params); - - $publicationFormats = []; - foreach ($result as $row) { - $publicationFormats[] = $this->_fromRow((array) $row); - } - return $publicationFormats; - } - - /** - * Retrieve publication format by public ID - * @param $pubIdType string One of the NLM pub-id-type values or - * 'other::something' if not part of the official NLM list - * (see ). - * @param $pubId string - * @param $publicationId int optional - * @param $pressId int optional - * @return PublicationFormat|null - */ - function getByPubId($pubIdType, $pubId, $publicationId = null, $pressId = null) { - if (empty($pubId)) return null; - $publicationFormats = $this->getBySetting('pub-id::'.$pubIdType, $pubId, $publicationId, $pressId); - return array_shift($publicationFormats); - } - - /** - * Retrieve publication format by public ID or, failing that, - * internal ID; public ID takes precedence. - * @param $representationId string - * @param $publicationId int - * @return PublicationFormat|null - */ - function getByBestId($representationId, $publicationId) { - $result = $this->retrieve( - 'SELECT pf.* - FROM publication_formats pf - WHERE pf.url_path = ? - AND pf.publication_id = ?', - [ - $representationId, - $publicationId, - ] - ); - if ($row = $result->current()) { - return $this->_fromRow((array) $row); - } elseif (is_int($representationId) || ctype_digit($representationId)) { - return $this->getById($representationId); - } - return null; - } - - /** - * @copydoc RepresentationDAO::getByPublicationId() - */ - function getByPublicationId($publicationId, $contextId = null) { - $params = [(int) $publicationId]; - if ($contextId) $params[] = (int) $contextId; - - return new DAOResultFactory( - $this->retrieve( - 'SELECT pf.* - FROM publication_formats pf ' . - ($contextId ? - 'INNER JOIN publications p ON (pf.publication_id=p.publication_id) - INNER JOIN submissions s ON (s.submission_id = p.submission_id) ' - : '') . - 'WHERE pf.publication_id=? ' - . ($contextId?' AND s.context_id = ? ':'') - . 'ORDER BY pf.seq', - $params - ), - $this, - '_fromRow' - ); - } - - /** - * Retrieves a list of publication formats for a press - * @param int pressId - * @return DAOResultFactory (PublicationFormat) - */ - function getByContextId($pressId) { - return new DAOResultFactory( - $this->retrieve( - 'SELECT pf.* - FROM publication_formats pf - JOIN publications p ON (p.publication_id = pf.publication_id) - JOIN submissions s ON (s.submission_id = p.submission_id) - WHERE s.context_id = ? - ORDER BY pf.seq', - [(int) $pressId] - ), - $this, - '_fromRow' - ); - } - - /** - * Retrieves a list of approved publication formats for a publication - * @param int $publicationId - * @return DAOResultFactory (PublicationFormat) - */ - function getApprovedByPublicationId($publicationId) { - return new DAOResultFactory( - $this->retrieve( - 'SELECT * - FROM publication_formats - WHERE publication_id = ? AND is_approved=1 - ORDER BY seq', - [(int) $publicationId] - ), - $this, - '_fromRow' - ); - } - - /** - * Delete an publication format by ID. - * @param $representationId int - */ - function deleteById($representationId) { - $this->update('DELETE FROM publication_format_settings WHERE publication_format_id = ?', [(int) $representationId]); - $this->update('DELETE FROM publication_formats WHERE publication_format_id = ?', [(int) $representationId]); - } - - /** - * Update the settings for this object - * @param $publicationFormat object - */ - function updateLocaleFields($publicationFormat) { - $this->updateDataObjectSettings( - 'publication_format_settings', - $publicationFormat, - ['publication_format_id' => $publicationFormat->getId()] - ); - } - - /** - * Construct a new data object corresponding to this DAO. - * @return PublicationFormat - */ - function newDataObject() { - return new PublicationFormat(); - } - - /** - * Internal function to return an PublicationFormat object from a row. - * @param $row array - * @param $callHooks boolean - * @return PublicationFormat - */ - function _fromRow($row, $params = array(), $callHooks = true) { - $publicationFormat = $this->newDataObject(); - - // Add the additional Publication Format data - $publicationFormat->setIsApproved($row['is_approved']); - $publicationFormat->setEntryKey($row['entry_key']); - $publicationFormat->setPhysicalFormat($row['physical_format']); - $publicationFormat->setSequence((int) $row['seq']); - $publicationFormat->setId((int) $row['publication_format_id']); - $publicationFormat->setData('publicationId', (int) $row['publication_id']); - $publicationFormat->setFileSize($row['file_size']); - $publicationFormat->setFrontMatter($row['front_matter']); - $publicationFormat->setBackMatter($row['back_matter']); - $publicationFormat->setHeight($row['height']); - $publicationFormat->setHeightUnitCode($row['height_unit_code']); - $publicationFormat->setWidth($row['width']); - $publicationFormat->setWidthUnitCode($row['width_unit_code']); - $publicationFormat->setThickness($row['thickness']); - $publicationFormat->setThicknessUnitCode($row['thickness_unit_code']); - $publicationFormat->setWeight($row['weight']); - $publicationFormat->setWeightUnitCode($row['weight_unit_code']); - $publicationFormat->setProductCompositionCode($row['product_composition_code']); - $publicationFormat->setProductFormDetailCode($row['product_form_detail_code']); - $publicationFormat->setCountryManufactureCode($row['country_manufacture_code']); - $publicationFormat->setImprint($row['imprint']); - $publicationFormat->setProductAvailabilityCode($row['product_availability_code']); - $publicationFormat->setTechnicalProtectionCode($row['technical_protection_code']); - $publicationFormat->setReturnableIndicatorCode($row['returnable_indicator_code']); - $publicationFormat->setRemoteURL($row['remote_url']); - $publicationFormat->setData('urlPath', $row['url_path']); - $publicationFormat->setIsAvailable($row['is_available']); - - $this->getDataObjectSettings( - 'publication_format_settings', - 'publication_format_id', - $row['publication_format_id'], - $publicationFormat - ); - - if ($callHooks) HookRegistry::call('PublicationFormatDAO::_fromRow', [&$publicationFormat, &$row]); - - return $publicationFormat; - } - - /** - * Insert a publication format. - * @param $publicationFormat PublicationFormat - * @return int the publication format id. - */ - function insertObject($publicationFormat) { - $this->update( - 'INSERT INTO publication_formats - (is_approved, entry_key, physical_format, publication_id, seq, file_size, front_matter, back_matter, height, height_unit_code, width, width_unit_code, thickness, thickness_unit_code, weight, weight_unit_code, product_composition_code, product_form_detail_code, country_manufacture_code, imprint, product_availability_code, technical_protection_code, returnable_indicator_code, remote_url, url_path, is_available) - VALUES - (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', - [ - (int) $publicationFormat->getIsApproved(), - $publicationFormat->getEntryKey(), - (int) $publicationFormat->getPhysicalFormat(), - (int) $publicationFormat->getData('publicationId'), - (int) $publicationFormat->getSequence(), - $publicationFormat->getFileSize(), - $publicationFormat->getFrontMatter(), - $publicationFormat->getBackMatter(), - $publicationFormat->getHeight(), - $publicationFormat->getHeightUnitCode(), - $publicationFormat->getWidth(), - $publicationFormat->getWidthUnitCode(), - $publicationFormat->getThickness(), - $publicationFormat->getThicknessUnitCode(), - $publicationFormat->getWeight(), - $publicationFormat->getWeightUnitCode(), - $publicationFormat->getProductCompositionCode(), - $publicationFormat->getProductFormDetailCode(), - $publicationFormat->getCountryManufactureCode(), - $publicationFormat->getImprint(), - $publicationFormat->getProductAvailabilityCode(), - $publicationFormat->getTechnicalProtectionCode(), - $publicationFormat->getReturnableIndicatorCode(), - $publicationFormat->getRemoteURL(), - $publicationFormat->getData('urlPath'), - (int) $publicationFormat->getIsAvailable(), - ] - ); - - $publicationFormat->setId($this->_getInsertId('publication_formats', 'publication_format_id')); - $this->updateLocaleFields($publicationFormat); - - return $publicationFormat->getId(); - } - - /** - * Update an existing publication format. - * @param $publicationFormat PublicationFormat - */ - function updateObject($publicationFormat) { - $this->update( - 'UPDATE publication_formats - SET is_approved = ?, - entry_key = ?, - physical_format = ?, - seq = ?, - file_size = ?, - front_matter = ?, - back_matter = ?, - height = ?, - height_unit_code = ?, - width = ?, - width_unit_code = ?, - thickness = ?, - thickness_unit_code = ?, - weight = ?, - weight_unit_code = ?, - product_composition_code = ?, - product_form_detail_code = ?, - country_manufacture_code = ?, - imprint = ?, - product_availability_code = ?, - technical_protection_code = ?, - returnable_indicator_code = ?, - remote_url = ?, - url_path = ?, - is_available = ? - WHERE publication_format_id = ?', - [ - (int) $publicationFormat->getIsApproved(), - $publicationFormat->getEntryKey(), - (int) $publicationFormat->getPhysicalFormat(), - (int) $publicationFormat->getSequence(), - $publicationFormat->getFileSize(), - $publicationFormat->getFrontMatter(), - $publicationFormat->getBackMatter(), - $publicationFormat->getHeight(), - $publicationFormat->getHeightUnitCode(), - $publicationFormat->getWidth(), - $publicationFormat->getWidthUnitCode(), - $publicationFormat->getThickness(), - $publicationFormat->getThicknessUnitCode(), - $publicationFormat->getWeight(), - $publicationFormat->getWeightUnitCode(), - $publicationFormat->getProductCompositionCode(), - $publicationFormat->getProductFormDetailCode(), - $publicationFormat->getCountryManufactureCode(), - $publicationFormat->getImprint(), - $publicationFormat->getProductAvailabilityCode(), - $publicationFormat->getTechnicalProtectionCode(), - $publicationFormat->getReturnableIndicatorCode(), - $publicationFormat->getRemoteURL(), - $publicationFormat->getData('urlPath'), - (int) $publicationFormat->getIsAvailable(), - (int) $publicationFormat->getId() - ] - ); - - $this->updateLocaleFields($publicationFormat); - } - - /** - * Get a list of fields for which we store localized data - * @return array - */ - function getLocaleFieldNames() { - return ['name']; - } - - /** - * @see DAO::getAdditionalFieldNames() - */ - function getAdditionalFieldNames() { - $additionalFields = parent::getAdditionalFieldNames(); - $additionalFields[] = 'pub-id::publisher-id'; - return $additionalFields; - } - - /** - * @copydoc PKPPubIdPluginDAO::pubIdExists() - */ - function pubIdExists($pubIdType, $pubId, $excludePubObjectId, $contextId) { - $result = $this->retrieve( - 'SELECT COUNT(*) AS row_count - FROM publication_format_settings pft - INNER JOIN publication_formats pf ON pft.publication_format_id = pf.publication_format_id - INNER JOIN publications p ON p.publication_id = pf.publication_id - INNER JOIN submissions s ON p.submission_id = s.submission_id - WHERE pft.setting_name = ? - AND pft.setting_value = ? - AND pf.publication_format_id <> ? - AND s.context_id = ?', - [ - 'pub-id::' . $pubIdType, - $pubId, - (int) $excludePubObjectId, - (int) $contextId - ] - ); - $row = $result->current(); - return $row && $row->row_count; - } - - /** - * @copydoc PKPPubIdPluginDAO::changePubId() - */ - function changePubId($pubObjectId, $pubIdType, $pubId) { - $this->replace( - 'publication_format_settings', - [ - 'publication_format_id' => (int) $pubObjectId, - 'locale' => '', - 'setting_name' => 'pub-id::'.$pubIdType, - 'setting_type' => 'string', - 'setting_value' => (string)$pubId - ], - ['publication_format_id', 'locale', 'setting_name'] - ); - } - - /** - * @copydoc PKPPubIdPluginDAO::deletePubId() - */ - function deletePubId($pubObjectId, $pubIdType) { - $this->update( - 'DELETE FROM publication_format_settings WHERE setting_name = ? AND publication_format_id = ?', - ['pub-id::' . $pubIdType, (int)$pubObjectId] - ); - $this->flushCache(); - } - - /** - * @copydoc PKPPubIdPluginDAO::deleteAllPubIds() - */ - function deleteAllPubIds($contextId, $pubIdType) { - $formats = $this->getByContextId($contextId); - while ($format = $formats->next()) { - $this->update( - 'DELETE FROM publication_format_settings WHERE setting_name = ? AND publication_format_id = ?', - ['pub-id::' . $pubIdType, (int)$format->getId()] - ); - } - $this->flushCache(); - } -} - - diff --git a/classes/publicationFormat/PublicationFormatDAO.php b/classes/publicationFormat/PublicationFormatDAO.php new file mode 100644 index 00000000000..8aca9988517 --- /dev/null +++ b/classes/publicationFormat/PublicationFormatDAO.php @@ -0,0 +1,563 @@ +retrieve( + 'SELECT pf.* + FROM publication_formats pf + ' . ($contextId ? ' + JOIN publications p ON (p.publication_id = pf.publicationId) + JOIN submissions s ON (s.submission_id=p.submission_id)' : '') . ' + WHERE pf.publication_format_id=?' . + ($publicationId ? ' AND pf.publication_id = ?' : '') . + ($contextId ? ' AND s.context_id = ?' : ''), + $params + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Find publication format by querying publication format settings. + * + * @param string $settingName + * @param int $publicationId optional + * @param int $pressId optional + * + * @return array The publication formats identified by setting. + */ + public function getBySetting($settingName, $settingValue, $publicationId = null, $pressId = null) + { + $params = [$settingName]; + + $sql = 'SELECT pf.* + FROM publication_formats pf '; + if ($pressId) { + $sql .= 'INNER JOIN publications p ON p.publication_id = pf.publication_id + INNER JOIN submissions s ON s.submission_id = p.submission_id '; + } + if (is_null($settingValue)) { + $sql .= 'LEFT JOIN publication_format_settings pfs ON pf.publication_format_id = pfs.publication_format_id AND pfs.setting_name = ? + WHERE (pfs.setting_value IS NULL OR pfs.setting_value = \'\')'; + } else { + $params[] = (string) $settingValue; + $sql .= 'INNER JOIN publication_format_settings pfs ON pf.publication_format_id = pfs.publication_format_id + WHERE pfs.setting_name = ? AND pfs.setting_value = ?'; + } + + if ($publicationId) { + $params[] = (int) $publicationId; + $sql .= ' AND pf.publication_id = ?'; + } + + if ($pressId) { + $params[] = (int) $pressId; + $sql .= ' AND s.context_id = ?'; + } + + $orderByContextId = $pressId ? 's.context_id, ' : ''; + $sql .= ' ORDER BY ' . $orderByContextId . 'pf.seq, pf.publication_format_id'; + $result = $this->retrieve($sql, $params); + + $publicationFormats = []; + foreach ($result as $row) { + $publicationFormats[] = $this->_fromRow((array) $row); + } + return $publicationFormats; + } + + /** + * Retrieve publication format by public ID + * + * @param string $pubIdType One of the NLM pub-id-type values or + * 'other::something' if not part of the official NLM list + * (see ). + * @param string $pubId + * @param int $publicationId optional + * @param int $pressId optional + * + * @return PublicationFormat|null + */ + public function getByPubId($pubIdType, $pubId, $publicationId = null, $pressId = null) + { + if (empty($pubId)) { + return null; + } + $publicationFormats = $this->getBySetting('pub-id::' . $pubIdType, $pubId, $publicationId, $pressId); + return array_shift($publicationFormats); + } + + /** + * Retrieve all publication formats that include a given DOI ID + * + * @return DAOResultFactory + */ + public function getByDoiId(int $doiId): DAOResultFactory + { + return new DAOResultFactory( + $this->retrieve( + 'SELECT pf.* + FROM publication_formats pf + WHERE pf.doi_id = ?', + [$doiId] + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve publication format by public ID or, failing that, + * internal ID; public ID takes precedence. + * + * @param string $representationId + * @param int $publicationId + * + * @return PublicationFormat|null + */ + public function getByBestId($representationId, $publicationId) + { + $result = $this->retrieve( + 'SELECT pf.* + FROM publication_formats pf + WHERE pf.url_path = ? + AND pf.publication_id = ?', + [ + $representationId, + $publicationId, + ] + ); + if ($row = $result->current()) { + return $this->_fromRow((array) $row); + } elseif (is_int($representationId) || ctype_digit($representationId)) { + return $this->getById($representationId); + } + return null; + } + + /** + * @copydoc RepresentationDAO::getByPublicationId() + * + * @param null|mixed $contextId + * + * @return DAOResultFactory + */ + public function getByPublicationId($publicationId, $contextId = null): array + { + $params = [(int) $publicationId]; + if ($contextId) { + $params[] = (int) $contextId; + } + + $result = new DAOResultFactory( + $this->retrieve( + 'SELECT pf.* + FROM publication_formats pf ' . + ($contextId ? + 'INNER JOIN publications p ON (pf.publication_id=p.publication_id) + INNER JOIN submissions s ON (s.submission_id = p.submission_id) ' + : '') . + 'WHERE pf.publication_id=? ' + . ($contextId ? ' AND s.context_id = ? ' : '') + . 'ORDER BY pf.seq', + $params + ), + $this, + '_fromRow' + ); + + return $result->toAssociativeArray(); + } + + /** + * Retrieves a list of publication formats for a press + * + * @param int $pressId + * + * @return DAOResultFactory + */ + public function getByContextId($pressId) + { + return new DAOResultFactory( + $this->retrieve( + 'SELECT pf.* + FROM publication_formats pf + JOIN publications p ON (p.publication_id = pf.publication_id) + JOIN submissions s ON (s.submission_id = p.submission_id) + WHERE s.context_id = ? + ORDER BY pf.seq', + [(int) $pressId] + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieves a list of approved publication formats for a publication + * + * @param int $publicationId + * + * @return DAOResultFactory + */ + public function getApprovedByPublicationId($publicationId) + { + return new DAOResultFactory( + $this->retrieve( + 'SELECT * + FROM publication_formats + WHERE publication_id = ? AND is_approved=1 + ORDER BY seq', + [(int) $publicationId] + ), + $this, + '_fromRow' + ); + } + + /** + * Delete an publication format by ID. + * + * @param int $representationId + */ + public function deleteById($representationId) + { + $this->update('DELETE FROM publication_format_settings WHERE publication_format_id = ?', [(int) $representationId]); + $this->update('DELETE FROM publication_formats WHERE publication_format_id = ?', [(int) $representationId]); + } + + /** + * Update the settings for this object + * + * @param object $publicationFormat + */ + public function updateLocaleFields($publicationFormat) + { + $this->updateDataObjectSettings( + 'publication_format_settings', + $publicationFormat, + ['publication_format_id' => $publicationFormat->getId()] + ); + } + + /** + * Construct a new data object corresponding to this DAO. + * + */ + public function newDataObject(): PublicationFormat + { + return new PublicationFormat(); + } + + /** + * Internal function to return an PublicationFormat object from a row. + * + * @param array $row + * @param bool $callHooks + * + * @return PublicationFormat + */ + public function _fromRow($row, $params = [], $callHooks = true) + { + $publicationFormat = $this->newDataObject(); + + // Add the additional Publication Format data + $publicationFormat->setIsApproved($row['is_approved']); + $publicationFormat->setEntryKey($row['entry_key']); + $publicationFormat->setPhysicalFormat($row['physical_format']); + $publicationFormat->setSequence((int) $row['seq']); + $publicationFormat->setId((int) $row['publication_format_id']); + $publicationFormat->setData('publicationId', (int) $row['publication_id']); + $publicationFormat->setFileSize($row['file_size']); + $publicationFormat->setFrontMatter($row['front_matter']); + $publicationFormat->setBackMatter($row['back_matter']); + $publicationFormat->setHeight($row['height']); + $publicationFormat->setHeightUnitCode($row['height_unit_code']); + $publicationFormat->setWidth($row['width']); + $publicationFormat->setWidthUnitCode($row['width_unit_code']); + $publicationFormat->setThickness($row['thickness']); + $publicationFormat->setThicknessUnitCode($row['thickness_unit_code']); + $publicationFormat->setWeight($row['weight']); + $publicationFormat->setWeightUnitCode($row['weight_unit_code']); + $publicationFormat->setProductCompositionCode($row['product_composition_code']); + $publicationFormat->setProductFormDetailCode($row['product_form_detail_code']); + $publicationFormat->setCountryManufactureCode($row['country_manufacture_code']); + $publicationFormat->setImprint($row['imprint']); + $publicationFormat->setProductAvailabilityCode($row['product_availability_code']); + $publicationFormat->setTechnicalProtectionCode($row['technical_protection_code']); + $publicationFormat->setReturnableIndicatorCode($row['returnable_indicator_code']); + $publicationFormat->setRemoteURL($row['remote_url']); + $publicationFormat->setData('urlPath', $row['url_path']); + $publicationFormat->setIsAvailable($row['is_available']); + $publicationFormat->setData('doiId', $row['doi_id']); + + if (!empty($publicationFormat->getData('doiId'))) { + $publicationFormat->setData('doiObject', Repo::doi()->get($publicationFormat->getData('doiId'))); + } else { + $publicationFormat->setData('doiObject', null); + } + + $this->getDataObjectSettings( + 'publication_format_settings', + 'publication_format_id', + $row['publication_format_id'], + $publicationFormat + ); + + if ($callHooks) { + Hook::call('PublicationFormatDAO::_fromRow', [&$publicationFormat, &$row]); + } + + return $publicationFormat; + } + + /** + * Insert a publication format. + * + * @param PublicationFormat $publicationFormat + * + * @return int the publication format id. + */ + public function insertObject($publicationFormat) + { + $this->update( + 'INSERT INTO publication_formats + (is_approved, entry_key, physical_format, publication_id, seq, file_size, front_matter, back_matter, height, height_unit_code, width, width_unit_code, thickness, thickness_unit_code, weight, weight_unit_code, product_composition_code, product_form_detail_code, country_manufacture_code, imprint, product_availability_code, technical_protection_code, returnable_indicator_code, remote_url, url_path, is_available, doi_id) + VALUES + (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', + [ + (int) $publicationFormat->getIsApproved(), + $publicationFormat->getEntryKey(), + (int) $publicationFormat->getPhysicalFormat(), + (int) $publicationFormat->getData('publicationId'), + (int) $publicationFormat->getSequence(), + $publicationFormat->getFileSize(), + $publicationFormat->getFrontMatter(), + $publicationFormat->getBackMatter(), + $publicationFormat->getHeight(), + $publicationFormat->getHeightUnitCode(), + $publicationFormat->getWidth(), + $publicationFormat->getWidthUnitCode(), + $publicationFormat->getThickness(), + $publicationFormat->getThicknessUnitCode(), + $publicationFormat->getWeight(), + $publicationFormat->getWeightUnitCode(), + $publicationFormat->getProductCompositionCode(), + $publicationFormat->getProductFormDetailCode(), + $publicationFormat->getCountryManufactureCode(), + $publicationFormat->getImprint(), + $publicationFormat->getProductAvailabilityCode(), + $publicationFormat->getTechnicalProtectionCode(), + $publicationFormat->getReturnableIndicatorCode(), + $publicationFormat->getRemoteURL(), + $publicationFormat->getData('urlPath'), + (int) $publicationFormat->getIsAvailable(), + $publicationFormat->getData('doiId') === null ? null : (int) $publicationFormat->getData('doiId') + ] + ); + + $publicationFormat->setId($this->_getInsertId()); + $this->updateLocaleFields($publicationFormat); + + return $publicationFormat->getId(); + } + + /** + * Update an existing publication format. + * + * @param PublicationFormat $publicationFormat + */ + public function updateObject(Representation $publicationFormat): void + { + $this->update( + 'UPDATE publication_formats + SET is_approved = ?, + entry_key = ?, + physical_format = ?, + seq = ?, + file_size = ?, + front_matter = ?, + back_matter = ?, + height = ?, + height_unit_code = ?, + width = ?, + width_unit_code = ?, + thickness = ?, + thickness_unit_code = ?, + weight = ?, + weight_unit_code = ?, + product_composition_code = ?, + product_form_detail_code = ?, + country_manufacture_code = ?, + imprint = ?, + product_availability_code = ?, + technical_protection_code = ?, + returnable_indicator_code = ?, + remote_url = ?, + url_path = ?, + is_available = ?, + doi_id = ? + WHERE publication_format_id = ?', + [ + (int) $publicationFormat->getIsApproved(), + $publicationFormat->getEntryKey(), + (int) $publicationFormat->getPhysicalFormat(), + (int) $publicationFormat->getSequence(), + $publicationFormat->getFileSize(), + $publicationFormat->getFrontMatter(), + $publicationFormat->getBackMatter(), + $publicationFormat->getHeight(), + $publicationFormat->getHeightUnitCode(), + $publicationFormat->getWidth(), + $publicationFormat->getWidthUnitCode(), + $publicationFormat->getThickness(), + $publicationFormat->getThicknessUnitCode(), + $publicationFormat->getWeight(), + $publicationFormat->getWeightUnitCode(), + $publicationFormat->getProductCompositionCode(), + $publicationFormat->getProductFormDetailCode(), + $publicationFormat->getCountryManufactureCode(), + $publicationFormat->getImprint(), + $publicationFormat->getProductAvailabilityCode(), + $publicationFormat->getTechnicalProtectionCode(), + $publicationFormat->getReturnableIndicatorCode(), + $publicationFormat->getRemoteURL(), + $publicationFormat->getData('urlPath'), + (int) $publicationFormat->getIsAvailable(), + $publicationFormat->getData('doiId'), + (int) $publicationFormat->getId() + ] + ); + + $this->updateLocaleFields($publicationFormat); + } + + /** + * Get a list of fields for which we store localized data + * + * @return array + */ + public function getLocaleFieldNames() + { + return ['name']; + } + + /** + * @see DAO::getAdditionalFieldNames() + */ + public function getAdditionalFieldNames() + { + $additionalFields = parent::getAdditionalFieldNames(); + $additionalFields[] = 'pub-id::publisher-id'; + return $additionalFields; + } + + /** + * @copydoc PKPPubIdPluginDAO::pubIdExists() + */ + public function pubIdExists($pubIdType, $pubId, $excludePubObjectId, $contextId) + { + $result = $this->retrieve( + 'SELECT COUNT(*) AS row_count + FROM publication_format_settings pft + INNER JOIN publication_formats pf ON pft.publication_format_id = pf.publication_format_id + INNER JOIN publications p ON p.publication_id = pf.publication_id + INNER JOIN submissions s ON p.submission_id = s.submission_id + WHERE pft.setting_name = ? + AND pft.setting_value = ? + AND pf.publication_format_id <> ? + AND s.context_id = ?', + [ + 'pub-id::' . $pubIdType, + $pubId, + (int) $excludePubObjectId, + (int) $contextId + ] + ); + $row = $result->current(); + return $row && $row->row_count; + } + + /** + * @copydoc PKPPubIdPluginDAO::changePubId() + */ + public function changePubId($pubObjectId, $pubIdType, $pubId) + { + DB::table('publication_format_settings')->updateOrInsert( + ['publication_format_id' => (int) $pubObjectId, 'locale' => '', 'setting_name' => 'pub-id::' . $pubIdType], + ['setting_type' => 'string', 'setting_value' => (string)$pubId] + ); + } + + /** + * @copydoc PKPPubIdPluginDAO::deletePubId() + */ + public function deletePubId($pubObjectId, $pubIdType) + { + $this->update( + 'DELETE FROM publication_format_settings WHERE setting_name = ? AND publication_format_id = ?', + ['pub-id::' . $pubIdType, (int)$pubObjectId] + ); + $this->flushCache(); + } + + /** + * @copydoc PKPPubIdPluginDAO::deleteAllPubIds() + */ + public function deleteAllPubIds($contextId, $pubIdType) + { + $formats = $this->getByContextId($contextId); + while ($format = $formats->next()) { + $this->update( + 'DELETE FROM publication_format_settings WHERE setting_name = ? AND publication_format_id = ?', + ['pub-id::' . $pubIdType, (int)$format->getId()] + ); + } + $this->flushCache(); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publicationFormat\PublicationFormatDAO', '\PublicationFormatDAO'); +} diff --git a/classes/publicationFormat/PublicationFormatTombstoneManager.inc.php b/classes/publicationFormat/PublicationFormatTombstoneManager.inc.php deleted file mode 100755 index 8ca636c87ef..00000000000 --- a/classes/publicationFormat/PublicationFormatTombstoneManager.inc.php +++ /dev/null @@ -1,157 +0,0 @@ -get($publicationFormat->getData('publicationId')); - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); /* @var $submissionDao SubmissionDAO */ - $monograph = $submissionDao->getById($publication->getData('submissionId')); - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($monograph->getSeriesId()); - - $dataObjectTombstoneDao = DAORegistry::getDAO('DataObjectTombstoneDAO'); /* @var $dataObjectTombstoneDao DataObjectTombstoneDAO */ - // delete publication format tombstone to ensure that there aren't - // more than one tombstone for this publication format - $dataObjectTombstoneDao->deleteByDataObjectId($publicationFormat->getId()); - // insert publication format tombstone - if (is_a($series, 'Series')) { - $setSpec = urlencode($press->getPath()) . ':' . urlencode($series->getPath()); - $setName = $series->getLocalizedTitle(); - } else { - $setSpec = urlencode($press->getPath()); - $setName = $press->getLocalizedName(); - } - $oaiIdentifier = 'oai:' . Config::getVar('oai', 'repository_id') . ':' . 'publicationFormat/' . $publicationFormat->getId(); - $OAISetObjectsIds = array( - ASSOC_TYPE_PRESS => $monograph->getPressId(), - ASSOC_TYPE_SERIES => $monograph->getSeriesId() - ); - - $publicationFormatTombstone = $dataObjectTombstoneDao->newDataObject(); /* @var $publicationFormatTombstone DataObjectTombstone */ - $publicationFormatTombstone->setDataObjectId($publicationFormat->getId()); - $publicationFormatTombstone->stampDateDeleted(); - $publicationFormatTombstone->setSetSpec($setSpec); - $publicationFormatTombstone->setSetName($setName); - $publicationFormatTombstone->setOAIIdentifier($oaiIdentifier); - $publicationFormatTombstone->setOAISetObjectsIds($OAISetObjectsIds); - $dataObjectTombstoneDao->insertObject($publicationFormatTombstone); - - if (HookRegistry::call('PublicationFormatTombstoneManager::insertPublicationFormatTombstone', array(&$publicationFormatTombstone, &$publicationFormat, &$press))) return; - } - - /** - * Insert tombstone for every publication format inside - * the passed array. - * @param $publicationFormats array - */ - function insertTombstonesByPublicationFormats($publicationFormats, $press) { - foreach($publicationFormats as $publicationFormat) { - $this->insertTombstoneByPublicationFormat($publicationFormat, $press); - } - } - - /** - * Insert tombstone for every publication format of the - * published submissions inside the passed press. - * @param $press - */ - function insertTombstonesByPress($press) { - import('lib.pkp.classes.submission.PKPSubmission'); - $submissionsIterator = Services::get('submission')->getMany(['contextId' => $press->getId(), 'status' => STATUS_PUBLISHED, 'count' => 2000]); - foreach ($submissionsIterator as $submission) { - foreach ($submission->getData('publications') as $publication) { - if ($publication->getData('status') === STATUS_PUBLISHED) { - foreach ((array) $publication->getData('publicationFormats') as $publicationFormat) { - if ($publication->getIsAvailable()) { - $this->insertTombstoneByPublicationFormat($publicationFormat, $press); - } - } - } - } - } - } - - /** - * Delete tombstone for every passed publication format. - * @param $publicationFormats array - */ - function deleteTombstonesByPublicationFormats($publicationFormats) { - foreach ($publicationFormats as $publicationFormat) { - $tombstoneDao = DAORegistry::getDAO('DataObjectTombstoneDAO'); /* @var $tombstoneDao DataObjectTombstoneDAO */ - $tombstoneDao->deleteByDataObjectId($publicationFormat->getId()); - } - } - - /** - * Delete tombstone for every publication format inside the passed press. - * @param $pressId int - */ - function deleteTombstonesByPressId($pressId) { - import('lib.pkp.classes.submission.PKPSubmission'); - $submissionsIterator = Services::get('submission')->getMany(['contextId' => $pressId, 'status' => STATUS_PUBLISHED, 'count' => 2000]); - foreach ($submissionsIterator as $submission) { - foreach ($submission->getData('publications') as $publication) { - $this->deleteTombstonesByPublicationFormats($publication->getData('publicationFormats')); - } - } - } - - /** - * Delete tombstones for every publication format in a publication - * - * @param int $publicationId - */ - function deleteTombstonesByPublicationId(int $publicationId) { - $publicationFormats = DAORegistry::getDAO('PublicationFormatDAO') - ->getByPublicationId($publicationId) - ->toArray(); - $this->deleteTombstonesByPublicationFormats($publicationFormats); - } - - /** - * Insert tombstones for every available publication format in a publication - * - * This method will delete any existing tombstones to ensure that duplicates - * are not created. - * - * @param int $publicationId - * @param Press $context - */ - function insertTombstonesByPublicationId(int $publicationId, $context) { - $this->deleteTombstonesByPublicationId($publicationId); - $publicationFormats = DAORegistry::getDAO('PublicationFormatDAO') - ->getByPublicationId($publicationId) - ->toArray(); - foreach ($publicationFormats as $publicationFormat) { - if ($publicationFormat->getIsAvailable()) { - $this->insertTombstoneByPublicationFormat($publicationFormat, $context); - } - } - } -} - - diff --git a/classes/publicationFormat/PublicationFormatTombstoneManager.php b/classes/publicationFormat/PublicationFormatTombstoneManager.php new file mode 100755 index 00000000000..ba99e945db6 --- /dev/null +++ b/classes/publicationFormat/PublicationFormatTombstoneManager.php @@ -0,0 +1,187 @@ +get($publicationFormat->getData('publicationId')); + $monograph = Repo::submission()->get($publication->getData('submissionId')); + $series = $publication->getData('seriesId') ? Repo::section()->get($publication->getData('seriesId')) : null; + + $dataObjectTombstoneDao = DAORegistry::getDAO('DataObjectTombstoneDAO'); /** @var DataObjectTombstoneDAO $dataObjectTombstoneDao */ + // delete publication format tombstone to ensure that there aren't + // more than one tombstone for this publication format + $dataObjectTombstoneDao->deleteByDataObjectId($publicationFormat->getId()); + // insert publication format tombstone + if ($series) { + $setSpec = OAIDAO::setSpec($press, $series); + $setName = $series->getLocalizedTitle(); + } else { + $setSpec = OAIDAO::setSpec($press); + $setName = $press->getLocalizedName(); + } + $oaiIdentifier = 'oai:' . Config::getVar('oai', 'repository_id') . ':' . 'publicationFormat/' . $publicationFormat->getId(); + $OAISetObjectsIds = [ + Application::ASSOC_TYPE_PRESS => $monograph->getData('contextId'), + Application::ASSOC_TYPE_SERIES => $publication->getData('seriesId') + ]; + + $publicationFormatTombstone = $dataObjectTombstoneDao->newDataObject(); /** @var DataObjectTombstone $publicationFormatTombstone */ + $publicationFormatTombstone->setDataObjectId($publicationFormat->getId()); + $publicationFormatTombstone->stampDateDeleted(); + $publicationFormatTombstone->setSetSpec($setSpec); + $publicationFormatTombstone->setSetName($setName); + $publicationFormatTombstone->setOAIIdentifier($oaiIdentifier); + $publicationFormatTombstone->setOAISetObjectsIds($OAISetObjectsIds); + $dataObjectTombstoneDao->insertObject($publicationFormatTombstone); + + if (Hook::call('PublicationFormatTombstoneManager::insertPublicationFormatTombstone', [&$publicationFormatTombstone, &$publicationFormat, &$press])) { + return; + } + } + + /** + * Insert tombstone for every publication format inside + * the passed array. + * + * @param array $publicationFormats + */ + public function insertTombstonesByPublicationFormats($publicationFormats, $press) + { + foreach ($publicationFormats as $publicationFormat) { + $this->insertTombstoneByPublicationFormat($publicationFormat, $press); + } + } + + /** + * Insert tombstone for every publication format of the + * published submissions inside the passed press. + * + * @param Press $press + */ + public function insertTombstonesByPress($press) + { + $submissions = Repo::submission() + ->getCollector() + ->filterByContextIds([$press->getId()]) + ->filterByStatus([Submission::STATUS_PUBLISHED]) + ->getMany(); + + foreach ($submissions as $submission) { + foreach ($submission->getData('publications') as $publication) { + if ($publication->getData('status') === PKPSubmission::STATUS_PUBLISHED) { + $this->insertTombstonesByPublicationId($publication->getId(), $press); + } + } + } + } + + /** + * Delete tombstone for every passed publication format. + * + * @param array $publicationFormats + */ + public function deleteTombstonesByPublicationFormats($publicationFormats) + { + foreach ($publicationFormats as $publicationFormat) { + $tombstoneDao = DAORegistry::getDAO('DataObjectTombstoneDAO'); /** @var DataObjectTombstoneDAO $tombstoneDao */ + $tombstoneDao->deleteByDataObjectId($publicationFormat->getId()); + } + } + + /** + * Delete tombstone for every publication format inside the passed press. + * + * @param int $pressId + */ + public function deleteTombstonesByPressId($pressId) + { + $submissions = Repo::submission() + ->getCollector() + ->filterByContextIds([$pressId]) + ->filterByStatus([Submission::STATUS_PUBLISHED]) + ->getMany(); + + foreach ($submissions as $submission) { + foreach ($submission->getData('publications') as $publication) { + $this->deleteTombstonesByPublicationFormats($publication->getData('publicationFormats')); + } + } + } + + /** + * Delete tombstones for every publication format in a publication + * + */ + public function deleteTombstonesByPublicationId(int $publicationId) + { + /** @var PublicationFormatDAO */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); + $publicationFormats = $publicationFormatDao + ->getByPublicationId($publicationId); + $this->deleteTombstonesByPublicationFormats($publicationFormats); + } + + /** + * Insert tombstones for every available publication format in a publication + * + * This method will delete any existing tombstones to ensure that duplicates + * are not created. + * + * @param Press $context + */ + public function insertTombstonesByPublicationId(int $publicationId, $context) + { + $this->deleteTombstonesByPublicationId($publicationId); + /** @var PublicationFormatDAO */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); + $publicationFormats = $publicationFormatDao + ->getByPublicationId($publicationId); + foreach ($publicationFormats as $publicationFormat) { + if ($publicationFormat->getIsAvailable()) { + $this->insertTombstoneByPublicationFormat($publicationFormat, $context); + } + } + } +} diff --git a/classes/publicationFormat/SalesRights.inc.php b/classes/publicationFormat/SalesRights.inc.php deleted file mode 100644 index 13a4032c3ee..00000000000 --- a/classes/publicationFormat/SalesRights.inc.php +++ /dev/null @@ -1,159 +0,0 @@ -getData('publicationFormatId'); - } - - /** - * set publication format id - * @param $pressId int - */ - function setPublicationFormatId($publicationFormatId) { - return $this->setData('publicationFormatId', $publicationFormatId); - } - - /** - * Set the ONIX code for this sales rights entry - * @param $type string - */ - function setType($type) { - $this->setData('type', $type); - } - - /** - * Get the ONIX code for this sales rights entry - * @return string - */ - function getType() { - return $this->getData('type'); - } - - /** - * Get the human readable name for this ONIX code - * @return string - */ - function getNameForONIXCode() { - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $codes =& $onixCodelistItemDao->getCodes('List46'); // List46 is for things like 'unrestricted sale with exclusive rights', etc. - return $codes[$this->getType()]; - } - - /** - * Set the ROWSetting for this sales rights entry (Rest Of World) - * @param $rowSetting boolean - */ - function setROWSetting($rowSetting) { - $this->setData('rowSetting', $rowSetting); - } - - /** - * Get the ROWSetting value for this sales rights entry (Rest Of World) - * @return string - */ - function getROWSetting() { - return $this->getData('rowSetting'); - } - - /** - * Get the included countries for this sales rights entry - * @return array - */ - function getCountriesIncluded() { - return $this->getData('countriesIncluded'); - } - - /** - * Set the included country list for this sales rights entry - * @param $countriesIncluded array - */ - function setCountriesIncluded($countriesIncluded) { - $this->setData('countriesIncluded', array_filter($countriesIncluded, array(&$this, '_removeEmptyElements'))); - } - - /** - * Get the excluded countries for this sales rights entry - * @return array - */ - function getCountriesExcluded() { - return $this->getData('countriesExcluded'); - } - - /** - * Set the excluded country list for this sales rights entry - * @param $countriesExcluded array - */ - function setCountriesExcluded($countriesExcluded) { - $this->setData('countriesExcluded', array_filter($countriesExcluded, array(&$this, '_removeEmptyElements'))); - } - - /** - * Get the included regions for this sales rights entry - * @return array - */ - function getRegionsIncluded() { - return $this->getData('regionsIncluded'); - } - - /** - * Set the included region list for this sales rights entry - * @param $regionsIncluded array - */ - function setRegionsIncluded($regionsIncluded) { - $this->setData('regionsIncluded', array_filter($regionsIncluded, array(&$this, '_removeEmptyElements'))); - } - - /** - * Get the excluded regions for this sales rights entry - * @return array - */ - function getRegionsExcluded() { - return $this->getData('regionsExcluded'); - } - - /** - * Set the excluded region list for this sales rights entry - * @param $regionsExcluded array - */ - function setRegionsExcluded($regionsExcluded) { - $this->setData('regionsExcluded', array_filter($regionsExcluded, array(&$this, '_removeEmptyElements'))); - } - - /** - * Internal function for an array_filter to remove empty countries. - * array_filter() can be called without a callback to remove empty array elements but it depends - * on type juggling and may not be reliable. - * @param String $value - * @return boolean - */ - function _removeEmptyElements($value) { - return (trim($value) != '') ? true : false; - } -} - - diff --git a/classes/publicationFormat/SalesRights.php b/classes/publicationFormat/SalesRights.php new file mode 100644 index 00000000000..954df4998cb --- /dev/null +++ b/classes/publicationFormat/SalesRights.php @@ -0,0 +1,193 @@ +getData('publicationFormatId'); + } + + /** + * set publication format id + */ + public function setPublicationFormatId($publicationFormatId) + { + return $this->setData('publicationFormatId', $publicationFormatId); + } + + /** + * Set the ONIX code for this sales rights entry + * + * @param string $type + */ + public function setType($type) + { + $this->setData('type', $type); + } + + /** + * Get the ONIX code for this sales rights entry + * + * @return string + */ + public function getType() + { + return $this->getData('type'); + } + + /** + * Get the human readable name for this ONIX code + * + * @return string + */ + public function getNameForONIXCode() + { + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $codes = & $onixCodelistItemDao->getCodes('List46'); // List46 is for things like 'unrestricted sale with exclusive rights', etc. + return $codes[$this->getType()]; + } + + /** + * Set the ROWSetting for this sales rights entry (Rest Of World) + * + * @param bool $rowSetting + */ + public function setROWSetting($rowSetting) + { + $this->setData('rowSetting', $rowSetting); + } + + /** + * Get the ROWSetting value for this sales rights entry (Rest Of World) + * + * @return string + */ + public function getROWSetting() + { + return $this->getData('rowSetting'); + } + + /** + * Get the included countries for this sales rights entry + * + * @return array + */ + public function getCountriesIncluded() + { + return $this->getData('countriesIncluded'); + } + + /** + * Set the included country list for this sales rights entry + * + * @param array $countriesIncluded + */ + public function setCountriesIncluded($countriesIncluded) + { + $this->setData('countriesIncluded', array_filter($countriesIncluded, [&$this, '_removeEmptyElements'])); + } + + /** + * Get the excluded countries for this sales rights entry + * + * @return array + */ + public function getCountriesExcluded() + { + return $this->getData('countriesExcluded'); + } + + /** + * Set the excluded country list for this sales rights entry + * + * @param array $countriesExcluded + */ + public function setCountriesExcluded($countriesExcluded) + { + $this->setData('countriesExcluded', array_filter($countriesExcluded, [&$this, '_removeEmptyElements'])); + } + + /** + * Get the included regions for this sales rights entry + * + * @return array + */ + public function getRegionsIncluded() + { + return $this->getData('regionsIncluded'); + } + + /** + * Set the included region list for this sales rights entry + * + * @param array $regionsIncluded + */ + public function setRegionsIncluded($regionsIncluded) + { + $this->setData('regionsIncluded', array_filter($regionsIncluded, [&$this, '_removeEmptyElements'])); + } + + /** + * Get the excluded regions for this sales rights entry + * + * @return array + */ + public function getRegionsExcluded() + { + return $this->getData('regionsExcluded'); + } + + /** + * Set the excluded region list for this sales rights entry + * + * @param array $regionsExcluded + */ + public function setRegionsExcluded($regionsExcluded) + { + $this->setData('regionsExcluded', array_filter($regionsExcluded, [&$this, '_removeEmptyElements'])); + } + + /** + * Internal function for an array_filter to remove empty countries. + * array_filter() can be called without a callback to remove empty array elements but it depends + * on type juggling and may not be reliable. + * + * @param string $value + * + * @return bool + */ + public function _removeEmptyElements($value) + { + return (trim($value) != '') ? true : false; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publicationFormat\SalesRights', '\SalesRights'); +} diff --git a/classes/publicationFormat/SalesRightsDAO.inc.php b/classes/publicationFormat/SalesRightsDAO.inc.php deleted file mode 100644 index 6bce94f802b..00000000000 --- a/classes/publicationFormat/SalesRightsDAO.inc.php +++ /dev/null @@ -1,179 +0,0 @@ -retrieve( - 'SELECT s.* - FROM sales_rights s - JOIN publication_formats pf ON (s.publication_format_id = pf.publication_format_id) - WHERE s.sales_rights_id = ? - ' . ($publicationId?' AND pf.publication_id = ?':''), - $params - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Retrieve all sales rights for a publication format - * @param $publicationFormatId int - * @return DAOResultFactory containing matching sales rights. - */ - function getByPublicationFormatId($publicationFormatId) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT * FROM sales_rights WHERE publication_format_id = ?', - [(int) $publicationFormatId] - ), - $this, - '_fromRow' - ); - } - - /** - * Retrieve the specific Sales Rights instance for which ROW is set to true. There should only be one per format. - * @param $publicationFormatId int - * @return SalesRights|null - */ - function getROWByPublicationFormatId($publicationFormatId) { - $result = $this->retrieve( - 'SELECT * FROM sales_rights WHERE row_setting = ? AND publication_format_id = ?', - [1, (int) $publicationFormatId] - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Construct a new data object corresponding to this DAO. - * @return SalesRights - */ - function newDataObject() { - return new SalesRights(); - } - - /** - * Internal function to return a SalesRights object from a row. - * @param $row array - * @param $callHooks boolean - * @return SalesRights - */ - function _fromRow($row, $callHooks = true) { - $salesRights = $this->newDataObject(); - $salesRights->setId($row['sales_rights_id']); - $salesRights->setType($row['type']); - $salesRights->setROWSetting($row['row_setting']); - $salesRights->setCountriesIncluded(unserialize($row['countries_included'])); - $salesRights->setCountriesExcluded(unserialize($row['countries_excluded'])); - $salesRights->setRegionsIncluded(unserialize($row['regions_included'])); - $salesRights->setRegionsExcluded(unserialize($row['regions_excluded'])); - - $salesRights->setPublicationFormatId($row['publication_format_id']); - - if ($callHooks) HookRegistry::call('SalesRightsDAO::_fromRow', array(&$salesRights, &$row)); - - return $salesRights; - } - - /** - * Insert a new sales rights entry. - * @param $salesRights SalesRights - */ - function insertObject($salesRights) { - $this->update( - 'INSERT INTO sales_rights - (publication_format_id, type, row_setting, countries_included, countries_excluded, regions_included, regions_excluded) - VALUES - (?, ?, ?, ?, ?, ?, ?)', - [ - (int) $salesRights->getPublicationFormatId(), - $salesRights->getType(), - $salesRights->getROWSetting(), - serialize($salesRights->getCountriesIncluded() ? $salesRights->getCountriesIncluded() : array()), - serialize($salesRights->getCountriesExcluded() ? $salesRights->getCountriesExcluded() : array()), - serialize($salesRights->getRegionsIncluded() ? $salesRights->getRegionsIncluded() : array()), - serialize($salesRights->getRegionsExcluded() ? $salesRights->getRegionsExcluded() : array()) - ] - ); - - $salesRights->setId($this->getInsertId()); - return $salesRights->getId(); - } - - /** - * Update an existing sales rights entry. - * @param $salesRights SalesRights - */ - function updateObject($salesRights) { - $this->update( - 'UPDATE sales_rights - SET type = ?, - row_setting = ?, - countries_included = ?, - countries_excluded = ?, - regions_included = ?, - regions_excluded = ? - WHERE sales_rights_id = ?', - [ - $salesRights->getType(), - $salesRights->getROWSetting(), - serialize($salesRights->getCountriesIncluded() ? $salesRights->getCountriesIncluded() : array()), - serialize($salesRights->getCountriesExcluded() ? $salesRights->getCountriesExcluded() : array()), - serialize($salesRights->getRegionsIncluded() ? $salesRights->getRegionsIncluded() : array()), - serialize($salesRights->getRegionsExcluded() ? $salesRights->getRegionsExcluded() : array()), - (int) $salesRights->getId() - ] - ); - } - - /** - * Delete a sales rights entry by id. - * @param $salesRights SalesRights - */ - function deleteObject($salesRights) { - return $this->deleteById($salesRights->getId()); - } - - /** - * delete a sales rights entry by id. - * @param $entryId int - */ - function deleteById($entryId) { - $this->update('DELETE FROM sales_rights WHERE sales_rights_id = ?', [(int) $entryId]); - } - - /** - * Get the ID of the last inserted sales rights entry. - * @return int - */ - function getInsertId() { - return $this->_getInsertId('sales_rights', 'sales_rights_id'); - } -} - - diff --git a/classes/publicationFormat/SalesRightsDAO.php b/classes/publicationFormat/SalesRightsDAO.php new file mode 100644 index 00000000000..1ae135e40f9 --- /dev/null +++ b/classes/publicationFormat/SalesRightsDAO.php @@ -0,0 +1,205 @@ +retrieve( + 'SELECT s.* + FROM sales_rights s + JOIN publication_formats pf ON (s.publication_format_id = pf.publication_format_id) + WHERE s.sales_rights_id = ? + ' . ($publicationId ? ' AND pf.publication_id = ?' : ''), + $params + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Retrieve all sales rights for a publication format + * + * @param int $publicationFormatId + * + * @return DAOResultFactory containing matching sales rights. + */ + public function getByPublicationFormatId($publicationFormatId) + { + return new DAOResultFactory( + $this->retrieveRange( + 'SELECT * FROM sales_rights WHERE publication_format_id = ?', + [(int) $publicationFormatId] + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve the specific Sales Rights instance for which ROW is set to true. There should only be one per format. + * + * @param int $publicationFormatId + * + * @return SalesRights|null + */ + public function getROWByPublicationFormatId($publicationFormatId) + { + $result = $this->retrieve( + 'SELECT * FROM sales_rights WHERE row_setting = ? AND publication_format_id = ?', + [1, (int) $publicationFormatId] + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Construct a new data object corresponding to this DAO. + * + * @return SalesRights + */ + public function newDataObject() + { + return new SalesRights(); + } + + /** + * Internal function to return a SalesRights object from a row. + * + * @param array $row + * @param bool $callHooks + * + * @return SalesRights + */ + public function _fromRow($row, $callHooks = true) + { + $salesRights = $this->newDataObject(); + $salesRights->setId($row['sales_rights_id']); + $salesRights->setType($row['type']); + $salesRights->setROWSetting($row['row_setting']); + $salesRights->setCountriesIncluded(unserialize($row['countries_included'])); + $salesRights->setCountriesExcluded(unserialize($row['countries_excluded'])); + $salesRights->setRegionsIncluded(unserialize($row['regions_included'])); + $salesRights->setRegionsExcluded(unserialize($row['regions_excluded'])); + + $salesRights->setPublicationFormatId($row['publication_format_id']); + + if ($callHooks) { + Hook::call('SalesRightsDAO::_fromRow', [&$salesRights, &$row]); + } + + return $salesRights; + } + + /** + * Insert a new sales rights entry. + * + * @param SalesRights $salesRights + */ + public function insertObject($salesRights) + { + $this->update( + 'INSERT INTO sales_rights + (publication_format_id, type, row_setting, countries_included, countries_excluded, regions_included, regions_excluded) + VALUES + (?, ?, ?, ?, ?, ?, ?)', + [ + (int) $salesRights->getPublicationFormatId(), + $salesRights->getType(), + $salesRights->getROWSetting(), + serialize($salesRights->getCountriesIncluded() ? $salesRights->getCountriesIncluded() : []), + serialize($salesRights->getCountriesExcluded() ? $salesRights->getCountriesExcluded() : []), + serialize($salesRights->getRegionsIncluded() ? $salesRights->getRegionsIncluded() : []), + serialize($salesRights->getRegionsExcluded() ? $salesRights->getRegionsExcluded() : []) + ] + ); + + $salesRights->setId($this->getInsertId()); + return $salesRights->getId(); + } + + /** + * Update an existing sales rights entry. + * + * @param SalesRights $salesRights + */ + public function updateObject($salesRights) + { + $this->update( + 'UPDATE sales_rights + SET type = ?, + row_setting = ?, + countries_included = ?, + countries_excluded = ?, + regions_included = ?, + regions_excluded = ? + WHERE sales_rights_id = ?', + [ + $salesRights->getType(), + $salesRights->getROWSetting(), + serialize($salesRights->getCountriesIncluded() ? $salesRights->getCountriesIncluded() : []), + serialize($salesRights->getCountriesExcluded() ? $salesRights->getCountriesExcluded() : []), + serialize($salesRights->getRegionsIncluded() ? $salesRights->getRegionsIncluded() : []), + serialize($salesRights->getRegionsExcluded() ? $salesRights->getRegionsExcluded() : []), + (int) $salesRights->getId() + ] + ); + } + + /** + * Delete a sales rights entry by id. + * + * @param SalesRights $salesRights + */ + public function deleteObject($salesRights) + { + return $this->deleteById($salesRights->getId()); + } + + /** + * delete a sales rights entry by id. + * + * @param int $entryId + */ + public function deleteById($entryId) + { + $this->update('DELETE FROM sales_rights WHERE sales_rights_id = ?', [(int) $entryId]); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\publicationFormat\SalesRightsDAO', '\SalesRightsDAO'); +} diff --git a/classes/search/MonographSearch.inc.php b/classes/search/MonographSearch.inc.php deleted file mode 100644 index 84c6f9e52e0..00000000000 --- a/classes/search/MonographSearch.inc.php +++ /dev/null @@ -1,341 +0,0 @@ - &$data) { - // Reference is necessary to permit modification - $data['score'] = ($resultCount * $data['count']) + $i++; - } - - // If we got a primary sort order then apply it and use score as secondary - // order only. - // NB: We apply order after merging and before paging/formatting. Applying - // order before merging would require us to retrieve dependent objects for - // results being purged later. Doing everything in a closed SQL is not - // possible (e.g. for authors). Applying sort order after paging and - // formatting is not possible as we have to order the whole list before - // slicing it. So this seems to be the most appropriate place, although we - // may have to retrieve some objects again when formatting results. - $orderedResults = array(); - $authorDao = DAORegistry::getDAO('AuthorDAO'); /* @var $authorDao AuthorDAO */ - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); /* @var $submissionDao SubmissionDAO */ - $contextDao = Application::getContextDAO(); - $contextTitles = array(); - if ($orderBy == 'popularityAll' || $orderBy == 'popularityMonth') { - $application = Application::get(); - $metricType = $application->getDefaultMetricType(); - if (is_null($metricType)) { - // If no default metric has been found then sort by score... - $orderBy = 'score'; - } else { - // Retrieve a metrics report for all submissions. - $column = STATISTICS_DIMENSION_SUBMISSION_ID; - $filter = array( - STATISTICS_DIMENSION_ASSOC_TYPE => array(ASSOC_TYPE_GALLEY, ASSOC_TYPE_SUBMISSION), - STATISTICS_DIMENSION_SUBMISSION_ID => array(array_keys($unorderedResults)) - ); - if ($orderBy == 'popularityMonth') { - $oneMonthAgo = date('Ymd', strtotime('-1 month')); - $today = date('Ymd'); - $filter[STATISTICS_DIMENSION_DAY] = array('from' => $oneMonthAgo, 'to' => $today); - } - $rawReport = $application->getMetrics($metricType, $column, $filter); - foreach ($rawReport as $row) { - $unorderedResults[$row['submission_id']]['metric'] = (int)$row['metric']; - } - } - } - - $i=0; // Used to prevent ties from clobbering each other - foreach ($unorderedResults as $submissionId => $data) { - // Exclude unwanted IDs. - if (in_array($submissionId, $exclude)) continue; - - switch ($orderBy) { - case 'authors': - $submission = $submissionDao->getById($submissionId); - $orderKey = $submission->getAuthorString(); - break; - - case 'title': - $submission = $submissionDao->getById($submissionId); - $orderKey = ''; - if (!empty($submission->getCurrentPublication())) { - $orderKey = $submission->getCurrentPublication()->getLocalizedData('title'); - } - break; - - case 'pressTitle': - if (!isset($contextTitles[$data['press_id']])) { - $press = $contextDao->getById($data['press_id']); - $contextTitles[$data['press_id']] = $press->getLocalizedName(); - } - $orderKey = $contextTitles[$data['press_id']]; - break; - - case 'publicationDate': - $orderKey = $data[$orderBy]; - break; - - case 'popularityAll': - case 'popularityMonth': - $orderKey = (isset($data['metric']) ? $data['metric'] : 0); - break; - - default: // order by score. - $orderKey = $data['score']; - } - if (!isset($orderedResults[$orderKey])) { - $orderedResults[$orderKey] = array(); - } - $orderedResults[$orderKey][$data['score'] + $i++] = $submissionId; - } - - // Order the results by primary order. - if (strtolower($orderDir) == 'asc') { - ksort($orderedResults); - } else { - krsort($orderedResults); - } - - // Order the result by secondary order and flatten it. - $finalOrder = array(); - foreach($orderedResults as $orderKey => $submissionIds) { - if (count($submissionIds) == 1) { - $finalOrder[] = array_pop($submissionIds); - } else { - if (strtolower($orderDir) == 'asc') { - ksort($submissionIds); - } else { - krsort($submissionIds); - } - $finalOrder = array_merge($finalOrder, array_values($submissionIds)); - } - } - return $finalOrder; - } - - /** - * Retrieve the search filters from the request. - * @param $request Request - * @return array All search filters (empty and active) - */ - function getSearchFilters($request) { - $searchFilters = array( - 'query' => $request->getUserVar('query'), - 'searchPress' => $request->getUserVar('searchPress'), - 'abstract' => $request->getUserVar('abstract'), - 'authors' => $request->getUserVar('authors'), - 'title' => $request->getUserVar('title'), - 'galleyFullText' => $request->getUserVar('galleyFullText'), - 'suppFiles' => $request->getUserVar('suppFiles'), - 'discipline' => $request->getUserVar('discipline'), - 'subject' => $request->getUserVar('subject'), - 'type' => $request->getUserVar('type'), - 'coverage' => $request->getUserVar('coverage'), - 'indexTerms' => $request->getUserVar('indexTerms') - ); - - // Is this a simplified query from the navigation - // block plugin? - $simpleQuery = $request->getUserVar('simpleQuery'); - if (!empty($simpleQuery)) { - // In the case of a simplified query we get the - // filter type from a drop-down. - $searchType = $request->getUserVar('searchField'); - if (array_key_exists($searchType, $searchFilters)) { - $searchFilters[$searchType] = $simpleQuery; - } - } - - // Publishing dates. - $fromDate = $request->getUserDateVar('dateFrom', 1, 1); - $searchFilters['fromDate'] = (is_null($fromDate) ? null : date('Y-m-d H:i:s', $fromDate)); - $toDate = $request->getUserDateVar('dateTo', 32, 12, null, 23, 59, 59); - $searchFilters['toDate'] = (is_null($toDate) ? null : date('Y-m-d H:i:s', $toDate)); - - // Instantiate the context. - $context = $request->getContext(); - $siteSearch = !((boolean)$context); - if ($siteSearch) { - $contextDao = Application::getContextDAO(); - if (!empty($searchFilters['searchPress'])) { - $context = $contextDao->getById($searchFilters['searchPress']); - } elseif (array_key_exists('pressTitle', $request->getUserVars())) { - $contexts = $contextDao->getAll(true); - while ($context = $contexts->next()) { - if (in_array( - $request->getUserVar('pressTitle'), - (array) $context->getTitle(null) - )) break; - } - } - } - $searchFilters['searchPress'] = $context; - $searchFilters['siteSearch'] = $siteSearch; - - return $searchFilters; - } - - /** - * Load the keywords array from a given search filter. - * @param $searchFilters array Search filters as returned from - * MonographSearch::getSearchFilters() - * @return array Keyword array as required by SubmissionSearch::retrieveResults() - */ - function getKeywordsFromSearchFilters($searchFilters) { - $indexFieldMap = $this->getIndexFieldMap(); - $indexFieldMap[SUBMISSION_SEARCH_INDEX_TERMS] = 'indexTerms'; - $keywords = array(); - if (isset($searchFilters['query'])) { - $keywords[null] = $searchFilters['query']; - } - foreach($indexFieldMap as $bitmap => $searchField) { - if (isset($searchFilters[$searchField]) && !empty($searchFilters[$searchField])) { - $keywords[$bitmap] = $searchFilters[$searchField]; - } - } - return $keywords; - } - - /** - * @copydoc SubmissionSearch::formatResults() - */ - function formatResults($results, $user = null) { - $contextDao = Application::getContextDAO(); - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - - $publishedSubmissionCache = array(); - $monographCache = array(); - $contextCache = array(); - $seriesCache = array(); - - $returner = array(); - foreach ($results as $monographId) { - // Get the monograph, storing in cache if necessary. - if (!isset($monographCache[$monographId])) { - $submission = Services::get('submission')->get($monographId); - $monographCache[$monographId] = $submission; - $publishedSubmissionCache[$monographId] = $submission; - } - unset($monograph, $publishedSubmission); - $monograph = $monographCache[$monographId]; - $publishedSubmission = $publishedSubmissionCache[$monographId]; - - if ($monograph) { - $seriesId = $monograph->getSeriesId(); - if (!isset($seriesCache[$seriesId])) { - $seriesCache[$seriesId] = $seriesDao->getById($seriesId); - } - - // Get the context, storing in cache if necessary. - $contextId = $monograph->getData('contextId'); - if (!isset($contextCache[$contextId])) { - $contextCache[$contextId] = $contextDao->getById($contextId); - } - - // Store the retrieved objects in the result array. - $returner[] = array( - 'press' => $contextCache[$contextId], - 'monograph' => $monograph, - 'publishedSubmission' => $publishedSubmission, - 'seriesArrangment' => $seriesCache[$seriesId] - ); - } - } - return $returner; - } - - function getIndexFieldMap() { - return array( - SUBMISSION_SEARCH_AUTHOR => 'authors', - SUBMISSION_SEARCH_TITLE => 'title', - SUBMISSION_SEARCH_ABSTRACT => 'abstract', - SUBMISSION_SEARCH_GALLEY_FILE => 'galleyFullText', - SUBMISSION_SEARCH_SUPPLEMENTARY_FILE => 'suppFiles', - SUBMISSION_SEARCH_DISCIPLINE => 'discipline', - SUBMISSION_SEARCH_SUBJECT => 'subject', - SUBMISSION_SEARCH_KEYWORD => 'keyword', - SUBMISSION_SEARCH_TYPE => 'type', - SUBMISSION_SEARCH_COVERAGE => 'coverage' - ); - } - - /** - * See SubmissionSearch::getResultSetOrderingOptions() - */ - function getResultSetOrderingOptions($request) { - $resultSetOrderingOptions = array( - 'score' => __('search.results.orderBy.relevance'), - 'authors' => __('search.results.orderBy.author'), - 'publicationDate' => __('search.results.orderBy.date'), - 'title' => __('search.results.orderBy.monograph') - ); - - // Only show the "popularity" options if we have a default metric. - $application = Application::get(); - $metricType = $application->getDefaultMetricType(); - if (!is_null($metricType)) { - $resultSetOrderingOptions['popularityAll'] = __('search.results.orderBy.popularityAll'); - $resultSetOrderingOptions['popularityMonth'] = __('search.results.orderBy.popularityMonth'); - } - - // Only show the "press title" option if we have several presses. - $context = $request->getContext(); - if (!is_a($context, 'Context')) { - $resultSetOrderingOptions['pressTitle'] = __('search.results.orderBy.press'); - } - - // Let plugins mangle the search ordering options. - HookRegistry::call( - 'SubmissionSearch::getResultSetOrderingOptions', - array($context, &$resultSetOrderingOptions) - ); - - return $resultSetOrderingOptions; - } - - /** - * See SubmissionSearch::getDefaultOrderDir() - */ - function getDefaultOrderDir($orderBy) { - $orderDir = 'asc'; - if (in_array($orderBy, array('score', 'publicationDate', 'popularityAll', 'popularityMonth'))) { - $orderDir = 'desc'; - } - return $orderDir; - } - - /** - * Return the search DAO - * @return DAO - */ - protected function getSearchDao() { - return DAORegistry::getDAO('MonographSearchDAO'); - } -} - - diff --git a/classes/search/MonographSearch.php b/classes/search/MonographSearch.php new file mode 100644 index 00000000000..63f4d910b53 --- /dev/null +++ b/classes/search/MonographSearch.php @@ -0,0 +1,362 @@ + $data) { + $unorderedResults[$submissionId]['score'] = ($resultCount * $data['count']) + $i++; + $contextIds[] = $data['press_id']; + } + + // If we got a primary sort order then apply it and use score as secondary + // order only. + // NB: We apply order after merging and before paging/formatting. Applying + // order before merging would require us to retrieve dependent objects for + // results being purged later. Doing everything in a closed SQL is not + // possible (e.g. for authors). Applying sort order after paging and + // formatting is not possible as we have to order the whole list before + // slicing it. So this seems to be the most appropriate place, although we + // may have to retrieve some objects again when formatting results. + $orderedResults = []; + $contextDao = Application::getContextDAO(); + $contextTitles = []; + if ($orderBy == 'popularityAll' || $orderBy == 'popularityMonth') { + // Retrieve a metrics report for all submissions. + $filter = [ + 'submissionIds' => [array_keys($unorderedResults)], + 'contextIds' => $contextIds, + 'assocTypes' => [Application::ASSOC_TYPE_SUBMISSION, Application::ASSOC_TYPE_SUBMISSION_FILE] + ]; + if ($orderBy == 'popularityMonth') { + $oneMonthAgo = date('Ymd', strtotime('-1 month')); + $today = date('Ymd'); + $filter['dateStart'] = $oneMonthAgo; + $filter['dateEnd'] = $today; + } + $rawReport = Services::get('publicationStats')->getTotals($filter); + foreach ($rawReport as $row) { + $unorderedResults[$row->submission_id]['metric'] = $row->metric; + } + } + + $i = 0; // Used to prevent ties from clobbering each other + $authorUserGroups = Repo::userGroup()->getCollector()->filterByRoleIds([\PKP\security\Role::ROLE_ID_AUTHOR])->getMany(); + foreach ($unorderedResults as $submissionId => $data) { + // Exclude unwanted IDs. + if (in_array($submissionId, $exclude)) { + continue; + } + + switch ($orderBy) { + case 'authors': + $submission = Repo::submission()->get($submissionId); + $orderKey = $submission->getCurrentPublication()->getAuthorString($authorUserGroups); + break; + + case 'title': + $submission = Repo::submission()->get($submissionId); + $orderKey = ''; + if (!empty($submission->getCurrentPublication())) { + $orderKey = $submission->getCurrentPublication()->getLocalizedData('title'); + } + break; + + case 'pressTitle': + if (!isset($contextTitles[$data['press_id']])) { + /** @var Press */ + $press = $contextDao->getById($data['press_id']); + $contextTitles[$data['press_id']] = $press->getLocalizedName(); + } + $orderKey = $contextTitles[$data['press_id']]; + break; + + case 'publicationDate': + $orderKey = $data[$orderBy]; + break; + + case 'popularityAll': + case 'popularityMonth': + $orderKey = ($data['metric'] ?? 0); + break; + + default: // order by score. + $orderKey = $data['score']; + } + if (!isset($orderedResults[$orderKey])) { + $orderedResults[$orderKey] = []; + } + $orderedResults[$orderKey][$data['score'] + $i++] = $submissionId; + } + + // Order the results by primary order. + if (strtolower($orderDir) == 'asc') { + ksort($orderedResults); + } else { + krsort($orderedResults); + } + + // Order the result by secondary order and flatten it. + $finalOrder = []; + foreach ($orderedResults as $orderKey => $submissionIds) { + if (count($submissionIds) == 1) { + $finalOrder[] = array_pop($submissionIds); + } else { + if (strtolower($orderDir) == 'asc') { + ksort($submissionIds); + } else { + krsort($submissionIds); + } + $finalOrder = array_merge($finalOrder, array_values($submissionIds)); + } + } + return $finalOrder; + } + + /** + * Retrieve the search filters from the request. + * + * @param Request $request + * + * @return array All search filters (empty and active) + */ + public function getSearchFilters($request) + { + $searchFilters = [ + 'query' => $request->getUserVar('query'), + 'searchPress' => $request->getUserVar('searchPress'), + 'abstract' => $request->getUserVar('abstract'), + 'authors' => $request->getUserVar('authors'), + 'title' => $request->getUserVar('title'), + 'galleyFullText' => $request->getUserVar('galleyFullText'), + 'suppFiles' => $request->getUserVar('suppFiles'), + 'discipline' => $request->getUserVar('discipline'), + 'subject' => $request->getUserVar('subject'), + 'type' => $request->getUserVar('type'), + 'coverage' => $request->getUserVar('coverage'), + 'indexTerms' => $request->getUserVar('indexTerms') + ]; + + // Is this a simplified query from the navigation + // block plugin? + $simpleQuery = $request->getUserVar('simpleQuery'); + if (!empty($simpleQuery)) { + // In the case of a simplified query we get the + // filter type from a drop-down. + $searchType = $request->getUserVar('searchField'); + if (array_key_exists($searchType, $searchFilters)) { + $searchFilters[$searchType] = $simpleQuery; + } + } + + // Publishing dates. + $fromDate = $request->getUserDateVar('dateFrom', 1, 1); + $searchFilters['fromDate'] = (is_null($fromDate) ? null : date('Y-m-d H:i:s', $fromDate)); + $toDate = $request->getUserDateVar('dateTo', 32, 12, null, 23, 59, 59); + $searchFilters['toDate'] = (is_null($toDate) ? null : date('Y-m-d H:i:s', $toDate)); + + // Instantiate the context. + $context = $request->getContext(); + $siteSearch = !((bool)$context); + if ($siteSearch) { + $contextDao = Application::getContextDAO(); + if (!empty($searchFilters['searchPress'])) { + $context = $contextDao->getById($searchFilters['searchPress']); + } elseif (array_key_exists('pressTitle', $request->getUserVars())) { + $contexts = $contextDao->getAll(true); + while ($context = $contexts->next()) { + if (in_array( + $request->getUserVar('pressTitle'), + (array) $context->getName(null) + )) { + break; + } + } + } + } + $searchFilters['searchPress'] = $context; + $searchFilters['siteSearch'] = $siteSearch; + + return $searchFilters; + } + + /** + * Load the keywords array from a given search filter. + * + * @param array $searchFilters Search filters as returned from + * MonographSearch::getSearchFilters() + * + * @return array Keyword array as required by SubmissionSearch::retrieveResults() + */ + public function getKeywordsFromSearchFilters($searchFilters) + { + $indexFieldMap = $this->getIndexFieldMap(); + $indexFieldMap[SubmissionSearch::SUBMISSION_SEARCH_INDEX_TERMS] = 'indexTerms'; + $keywords = []; + if (isset($searchFilters['query'])) { + $keywords[''] = $searchFilters['query']; + } + foreach ($indexFieldMap as $bitmap => $searchField) { + if (isset($searchFilters[$searchField]) && !empty($searchFilters[$searchField])) { + $keywords[$bitmap] = $searchFilters[$searchField]; + } + } + return $keywords; + } + + /** + * @copydoc SubmissionSearch::formatResults() + * + * @param null|mixed $user + */ + public function formatResults($results, $user = null) + { + $contextDao = Application::getContextDAO(); + + $publishedSubmissionCache = []; + $monographCache = []; + $contextCache = []; + $seriesCache = []; + + $returner = []; + foreach ($results as $monographId) { + // Get the monograph, storing in cache if necessary. + if (!isset($monographCache[$monographId])) { + $submission = Repo::submission()->get($monographId); + $monographCache[$monographId] = $submission; + $publishedSubmissionCache[$monographId] = $submission; + } + unset($monograph, $publishedSubmission); + $monograph = $monographCache[$monographId]; + $publishedSubmission = $publishedSubmissionCache[$monographId]; + + if ($monograph) { + $seriesId = $monograph->getSeriesId(); + if (!isset($seriesCache[$seriesId])) { + $seriesCache[$seriesId] = $seriesId ? Repo::section()->get($seriesId) : null; + } + + // Get the context, storing in cache if necessary. + $contextId = $monograph->getData('contextId'); + if (!isset($contextCache[$contextId])) { + $contextCache[$contextId] = $contextDao->getById($contextId); + } + + // Store the retrieved objects in the result array. + $returner[] = [ + 'press' => $contextCache[$contextId], + 'monograph' => $monograph, + 'publishedSubmission' => $publishedSubmission, + 'seriesArrangement' => $seriesCache[$seriesId] + ]; + } + } + return $returner; + } + + public function getIndexFieldMap() + { + return [ + SubmissionSearch::SUBMISSION_SEARCH_AUTHOR => 'authors', + SubmissionSearch::SUBMISSION_SEARCH_TITLE => 'title', + SubmissionSearch::SUBMISSION_SEARCH_ABSTRACT => 'abstract', + SubmissionSearch::SUBMISSION_SEARCH_GALLEY_FILE => 'galleyFullText', + SubmissionSearch::SUBMISSION_SEARCH_SUPPLEMENTARY_FILE => 'suppFiles', + SubmissionSearch::SUBMISSION_SEARCH_DISCIPLINE => 'discipline', + SubmissionSearch::SUBMISSION_SEARCH_SUBJECT => 'subject', + SubmissionSearch::SUBMISSION_SEARCH_KEYWORD => 'keyword', + SubmissionSearch::SUBMISSION_SEARCH_TYPE => 'type', + SubmissionSearch::SUBMISSION_SEARCH_COVERAGE => 'coverage' + ]; + } + + /** + * See SubmissionSearch::getResultSetOrderingOptions() + */ + public function getResultSetOrderingOptions($request) + { + $resultSetOrderingOptions = [ + 'score' => __('search.results.orderBy.relevance'), + 'authors' => __('search.results.orderBy.author'), + 'publicationDate' => __('search.results.orderBy.date'), + 'title' => __('search.results.orderBy.monograph') + ]; + + // Only show the "popularity" options if we have a default metric. + $resultSetOrderingOptions['popularityAll'] = __('search.results.orderBy.popularityAll'); + $resultSetOrderingOptions['popularityMonth'] = __('search.results.orderBy.popularityMonth'); + + // Only show the "press title" option if we have several presses. + $context = $request->getContext(); + if (!is_a($context, 'Context')) { + $resultSetOrderingOptions['pressTitle'] = __('search.results.orderBy.press'); + } + + // Let plugins mangle the search ordering options. + Hook::call( + 'SubmissionSearch::getResultSetOrderingOptions', + [$context, &$resultSetOrderingOptions] + ); + + return $resultSetOrderingOptions; + } + + /** + * See SubmissionSearch::getDefaultOrderDir() + */ + public function getDefaultOrderDir($orderBy) + { + $orderDir = 'asc'; + if (in_array($orderBy, ['score', 'publicationDate', 'popularityAll', 'popularityMonth'])) { + $orderDir = 'desc'; + } + return $orderDir; + } + + /** + * Return the search DAO + * + * @return MonographSearchDAO + */ + protected function getSearchDao() + { + /** @var MonographSearchDAO */ + $dao = DAORegistry::getDAO('MonographSearchDAO'); + return $dao; + } +} diff --git a/classes/search/MonographSearchDAO.inc.php b/classes/search/MonographSearchDAO.inc.php deleted file mode 100644 index a72753ca340..00000000000 --- a/classes/search/MonographSearchDAO.inc.php +++ /dev/null @@ -1,93 +0,0 @@ - 0) $sqlWhere .= ' AND o0.object_id = o'.$i.'.object_id AND o0.pos+'.$i.' = o'.$i.'.pos'; - - $params[] = $phrase[$i]; - } - - if (!empty($type)) { - $sqlWhere .= ' AND (o.type & ?) != 0'; - $params[] = $type; - } - - if (!empty($press)) { - $sqlWhere .= ' AND s.context_id = ?'; - $params[] = $press->getId(); - } - - import('classes.submission.Submission'); // import STATUS_PUBLISHED constant - $params[] = STATUS_PUBLISHED; - - $result = $this->retrieve( - $sql = 'SELECT - o.submission_id, - s.context_id as press_id, - p.date_published as s_pub, - COUNT(*) AS count - FROM - submissions s, - publications p, - submission_search_objects o NATURAL JOIN ' . $sqlFrom . ' - WHERE o.submission_id = s.submission_id - AND s.current_publication_id = p.publication_id - AND ' . $sqlWhere . ' - AND s.status = ? - GROUP BY o.submission_id, s.context_id, p.date_published - ORDER BY count DESC - LIMIT ' . $limit, - $params, - 3600 * $cacheHours // Cache for 24 hours - ); - - $returner = []; - foreach ($result as $row) { - $returner[$row->submission_id] = [ - 'count' => $row->count, - 'press_id' => $row->press_id, - 'publicationDate' => $this->datetimeFromDB($row->s_pub) - ]; - } - return $returner; - } -} - - diff --git a/classes/search/MonographSearchDAO.php b/classes/search/MonographSearchDAO.php new file mode 100644 index 00000000000..387aa900791 --- /dev/null +++ b/classes/search/MonographSearchDAO.php @@ -0,0 +1,111 @@ + 0) { + $sqlWhere .= ' AND o0.object_id = o' . $i . '.object_id AND o0.pos+' . $i . ' = o' . $i . '.pos'; + } + + $params[] = $phrase[$i]; + } + + if (!empty($type)) { + $sqlWhere .= ' AND (o.type & ?) != 0'; + $params[] = $type; + } + + if (!empty($press)) { + $sqlWhere .= ' AND s.context_id = ?'; + $params[] = $press->getId(); + } + + $params[] = PKPSubmission::STATUS_PUBLISHED; + + $result = $this->retrieve( + $sql = 'SELECT + o.submission_id, + s.context_id as press_id, + p.date_published as s_pub, + COUNT(*) AS count + FROM + submissions s, + publications p, + submission_search_objects o NATURAL JOIN ' . $sqlFrom . ' + WHERE o.submission_id = s.submission_id + AND s.current_publication_id = p.publication_id + AND ' . $sqlWhere . ' + AND s.status = ? + GROUP BY o.submission_id, s.context_id, p.date_published + ORDER BY count DESC + LIMIT ' . $limit, + $params, + 3600 * $cacheHours // Cache for 24 hours + ); + + $returner = []; + foreach ($result as $row) { + $returner[$row->submission_id] = [ + 'count' => $row->count, + 'press_id' => $row->press_id, + 'publicationDate' => $this->datetimeFromDB($row->s_pub) + ]; + } + return $returner; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\search\MonographSearchDAO', '\MonographSearchDAO'); +} diff --git a/classes/search/MonographSearchIndex.inc.php b/classes/search/MonographSearchIndex.inc.php deleted file mode 100644 index 0e60534921b..00000000000 --- a/classes/search/MonographSearchIndex.inc.php +++ /dev/null @@ -1,231 +0,0 @@ -filterKeywords($text); - for ($i = 0, $count = count($keywords); $i < $count; $i++) { - if ($searchDao->insertObjectKeyword($objectId, $keywords[$i], $position) !== null) { - $position += 1; - } - } - } - - /** - * Add a block of text to the search index. - * @param $monographId int - * @param $type int - * @param $text string - * @param $assocId int optional - */ - public function updateTextIndex($monographId, $type, $text, $assocId = null) { - $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /* @var $searchDao MonographSearchDAO */ - $objectId = $searchDao->insertObject($monographId, $type, $assocId); - $position = 0; - $this->indexObjectKeywords($objectId, $text, $position); - } - - /** - * Add a file to the search index. - * @param $monographId int - * @param $type int - * @param $submissionFileId int - */ - public function updateFileIndex($monographId, $type, $submissionFileId) { - $submisssionFile = Services::get('submissionFile')->get($submissionFileId); - - if (isset($submisssionFile)) { - $parser = SearchFileParser::fromFile($submisssionFile); - } - - if (isset($parser)) { - if ($parser->open()) { - $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /* @var $searchDao MonographSearchDAO */ - $objectId = $searchDao->insertObject($monographId, $type, $submissionFileId); - - $position = 0; - while(($text = $parser->read()) !== false) { - $this->indexObjectKeywords($objectId, $text, $position); - } - $parser->close(); - } else { - // cannot open parser; unsupported format? - } - } - } - - /** - * Delete keywords from the search index. - * @param $monographId int - * @param $type int optional - * @param $assocId int optional - */ - public function deleteTextIndex($monographId, $type = null, $assocId = null) { - $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /* @var $searchDao MonographSearchDAO */ - return $searchDao->deleteSubmissionKeywords($monographId, $type, $assocId); - } - - /** - * Index monograph metadata. - * @param Submission $submission - */ - public function submissionMetadataChanged($submission) { - $publication = $submission->getCurrentPublication(); - - // Build author keywords - $authorText = []; - foreach ($publication->getData('authors') as $author) { - $authorText = array_merge( - $authorText, - array_values((array) $author->getData('givenName')), - array_values((array) $author->getData('familyName')), - array_values((array) $author->getData('preferredPublicName')), - array_values(array_map('strip_tags', (array) $author->getData('affiliation'))), - array_values(array_map('strip_tags', (array) $author->getData('biography'))) - ); - } - - // Update search index - import('classes.search.MonographSearch'); - $submissionId = $submission->getId(); - $this->updateTextIndex($submissionId, SUBMISSION_SEARCH_AUTHOR, $authorText); - $this->updateTextIndex($submissionId, SUBMISSION_SEARCH_TITLE, $publication->getData('title')); - $this->updateTextIndex($submissionId, SUBMISSION_SEARCH_ABSTRACT, $publication->getData('abstract')); - - $this->updateTextIndex($submissionId, SUBMISSION_SEARCH_SUBJECT, (array) $this->_flattenLocalizedArray($publication->getData('subjects'))); - $this->updateTextIndex($submissionId, SUBMISSION_SEARCH_KEYWORD, (array) $this->_flattenLocalizedArray($publication->getData('keywords'))); - $this->updateTextIndex($submissionId, SUBMISSION_SEARCH_DISCIPLINE, (array) $this->_flattenLocalizedArray($publication->getData('disciplines'))); - $this->updateTextIndex($submissionId, SUBMISSION_SEARCH_TYPE, (array) $publication->getData('type')); - $this->updateTextIndex($submissionId, SUBMISSION_SEARCH_COVERAGE, (array) $publication->getData('coverage')); - // FIXME Index sponsors too? - } - - /** - * Index all monograph files (galley files). - * @param $monograph Monograph - */ - public function submissionFilesChanged($monograph) { - // Index galley files - import('lib.pkp.classes.submission.SubmissionFile'); // Constants - import('classes.search.MonographSearch'); // Constants - $submissionFiles = Services::get('submissionFile')->getMany([ - 'submissionIds' => [$monograph->getId()], - 'fileStages' => [SUBMISSION_FILE_PROOF], - ]); - - foreach ($submissionFiles as $submissionFile) { - $this->updateFileIndex($monograph->getId(), SUBMISSION_SEARCH_GALLEY_FILE, $submissionFile->getId()); - } - } - - /** - * @copydoc SubmissionSearchIndex::clearSubmissionFiles() - */ - public function clearSubmissionFiles($submission) { - $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /* @var $searchDao MonographSearchDAO */ - $searchDao->deleteSubmissionKeywords($submission->getId(), SUBMISSION_SEARCH_GALLEY_FILE); - } - - /** - * @copydoc SubmissionSearchIndex::submissionChangesFinished() - */ - public function submissionChangesFinished() { - // Trigger a hook to let the indexing back-end know that - // the index may be updated. - HookRegistry::call( - 'MonographSearchIndex::monographChangesFinished' - ); - - // The default indexing back-end works completely synchronously - // and will therefore not do anything here. - } - - /** - * @copydoc SubmissionSearchIndex::submissionChangesFinished() - */ - public function monographChangesFinished() { - if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated call to monographChangesFinished. Use submissionChangesFinished instead.'); - $this->submissionChangesFinished(); - } - - - /** - * Rebuild the search index for all presses. - * @param $log boolean Whether or not to log progress to the console. - */ - public function rebuildIndex($log = false) { - // Clear index - if ($log) echo 'Clearing index ... '; - $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /* @var $searchDao MonographSearchDAO */ - // FIXME Abstract into MonographSearchDAO? - $searchDao->update('DELETE FROM submission_search_object_keywords'); - $searchDao->update('DELETE FROM submission_search_objects'); - $searchDao->update('DELETE FROM submission_search_keyword_list'); - $searchDao->setCacheDir(Config::getVar('files', 'files_dir') . '/_db'); - if ($log) echo "done\n"; - - // Build index - $pressDao = DAORegistry::getDAO('PressDAO'); /* @var $pressDao PressDAO */ - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); /* @var $submissionDao SubmissionDAO */ - - $presses = $pressDao->getAll(); - while ($press = $presses->next()) { - $numIndexed = 0; - - if ($log) echo "Indexing \"", $press->getLocalizedName(), "\" ... "; - - $monographs = $submissionDao->getByContextId($press->getId()); - while (!$monographs->eof()) { - $monograph = $monographs->next(); - if ($monograph->getDatePublished()) { - $this->submissionMetadataChanged($monograph); - $this->submissionFilesChanged($monograph); - $numIndexed++; - } - } - $this->submissionChangesFinished(); - - if ($log) echo $numIndexed, " monographs indexed\n"; - } - } - - /** - * Flattens array of localized fields to a single, non-associative array of items - * - * @param $arrayWithLocales array Array of localized fields - * @return array - */ - protected function _flattenLocalizedArray($arrayWithLocales) { - $flattenedArray = array(); - foreach ($arrayWithLocales as $localeArray) { - $flattenedArray = array_merge( - $flattenedArray, - $localeArray - ); - } - return $flattenedArray; - } -} - diff --git a/classes/search/MonographSearchIndex.php b/classes/search/MonographSearchIndex.php new file mode 100644 index 00000000000..f54c317d0e5 --- /dev/null +++ b/classes/search/MonographSearchIndex.php @@ -0,0 +1,343 @@ +filterKeywords($text); + $searchDao->insertObjectKeywords($objectId, $keywords); + } + + /** + * Add a block of text to the search index. + * + * @param int $monographId + * @param int $type + * @param string|string[] $text + * @param int $assocId optional + */ + public function updateTextIndex($monographId, $type, $text, $assocId = null) + { + $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /** @var MonographSearchDAO $searchDao */ + $objectId = $searchDao->insertObject($monographId, $type, $assocId); + $this->indexObjectKeywords($objectId, $text); + } + + /** + * Add a file to the search index. + * + * @param int $monographId + * @param int $type + * @param SubmissionFile $submissionFile + */ + public function submissionFileChanged($monographId, $type, $submissionFile) + { + if (Hook::ABORT === Hook::call('MonographSearchIndex::submissionFileChanged', [$monographId, $type, $submissionFile->getId()])) { + return; + } + + // If no search plug-in is activated then fall back to the default database search implementation. + $parser = SearchFileParser::fromFile($submissionFile); + if (!$parser) { + error_log("Skipped indexation: No suitable parser for the submission file \"{$submissionFile->getData('path')}\""); + return; + } + try { + $parser->open(); + try { + $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /** @var MonographSearchDAO $searchDao */ + $objectId = $searchDao->insertObject($monographId, $type, $submissionFile->getId()); + do { + for ($buffer = ''; ($chunk = $parser->read()) !== false && strlen($buffer .= $chunk) < static::MINIMUM_DATA_LENGTH;); + if (strlen($buffer)) { + $this->indexObjectKeywords($objectId, $buffer); + } + } while ($chunk !== false); + } finally { + $parser->close(); + } + } catch (Throwable $e) { + throw new Exception("Indexation failed for the file: \"{$submissionFile->getData('path')}\"", 0, $e); + } + } + + /** + * Delete keywords from the search index. + * + * @param int $monographId + * @param int $type optional + * @param int $assocId optional + */ + public function deleteTextIndex($monographId, $type = null, $assocId = null) + { + $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /** @var MonographSearchDAO $searchDao */ + return $searchDao->deleteSubmissionKeywords($monographId, $type, $assocId); + } + + /** + * Index monograph metadata. + * + * @param Submission $submission + */ + public function submissionMetadataChanged($submission) + { + // Check whether a search plug-in jumps in. + if (Hook::ABORT === Hook::call('MonographSearchIndex::monographMetadataChanged', [$submission])) { + return; + } + + $publication = $submission->getCurrentPublication(); + + // Build author keywords + $authorText = []; + foreach ($publication->getData('authors') as $author) { + $authorText = array_merge( + $authorText, + array_values((array) $author->getData('givenName')), + array_values((array) $author->getData('familyName')), + array_values((array) $author->getData('preferredPublicName')), + array_values(array_map('strip_tags', (array) $author->getData('affiliation'))), + array_values(array_map('strip_tags', (array) $author->getData('biography'))) + ); + } + + // Update search index + $submissionId = $submission->getId(); + $this->updateTextIndex($submissionId, SubmissionSearch::SUBMISSION_SEARCH_AUTHOR, $authorText); + $this->updateTextIndex($submissionId, SubmissionSearch::SUBMISSION_SEARCH_TITLE, $publication->getData('title')); + $this->updateTextIndex($submissionId, SubmissionSearch::SUBMISSION_SEARCH_ABSTRACT, $publication->getData('abstract')); + + $this->updateTextIndex($submissionId, SubmissionSearch::SUBMISSION_SEARCH_SUBJECT, (array) $this->_flattenLocalizedArray($publication->getData('subjects'))); + $this->updateTextIndex($submissionId, SubmissionSearch::SUBMISSION_SEARCH_KEYWORD, (array) $this->_flattenLocalizedArray($publication->getData('keywords'))); + $this->updateTextIndex($submissionId, SubmissionSearch::SUBMISSION_SEARCH_DISCIPLINE, (array) $this->_flattenLocalizedArray($publication->getData('disciplines'))); + $this->updateTextIndex($submissionId, SubmissionSearch::SUBMISSION_SEARCH_TYPE, (array) $publication->getData('type')); + $this->updateTextIndex($submissionId, SubmissionSearch::SUBMISSION_SEARCH_COVERAGE, (array) $publication->getData('coverage')); + // FIXME Index sponsors too? + } + + /** + * Index all monograph files (galley files). + * + * @param Submission $monograph + */ + public function submissionFilesChanged($monograph) + { + // If a search plug-in is activated then skip the default database search implementation. + if (Hook::ABORT === Hook::call('MonographSearchIndex::submissionFilesChanged', [$monograph])) { + return; + } + + // Index galley files + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$monograph->getId()]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_PROOF]) + ->getMany(); + + $exceptions = []; + foreach ($submissionFiles as $submissionFile) { + try { + $this->submissionFileChanged($monograph->getId(), SubmissionSearch::SUBMISSION_SEARCH_GALLEY_FILE, $submissionFile); + } catch (Throwable $e) { + $exceptions[] = $e; + } + $dependentFiles = Repo::submissionFile()->getCollector() + ->filterByAssoc( + Application::ASSOC_TYPE_SUBMISSION_FILE, + [$submissionFile->getId()] + ) + ->filterBySubmissionIds([$monograph->getId()]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_DEPENDENT]) + ->includeDependentFiles() + ->getMany(); + + foreach ($dependentFiles as $dependentFile) { + try { + $this->submissionFileChanged($monograph->getId(), SubmissionSearch::SUBMISSION_SEARCH_SUPPLEMENTARY_FILE, $dependentFile); + } catch (Throwable $e) { + $exceptions[] = $e; + } + } + } + if (count($exceptions)) { + $errorMessage = implode("\n\n", $exceptions); + throw new Exception("The following errors happened while indexing the submission ID {$monograph->getId()}:\n{$errorMessage}"); + } + } + + /** + * @copydoc SubmissionSearchIndex::clearSubmissionFiles() + */ + public function clearSubmissionFiles($submission) + { + $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /** @var MonographSearchDAO $searchDao */ + $searchDao->deleteSubmissionKeywords($submission->getId(), SubmissionSearch::SUBMISSION_SEARCH_GALLEY_FILE); + } + + /** + * Signal to the indexing back-end that a file was deleted. + * + * @see MonographSearchIndex::submissionMetadataChanged() above for more + * comments. + * + * @param int $type optional + * @param int $assocId optional + */ + public function submissionFileDeleted($monographId, $type = null, $assocId = null) + { + // If a search plug-in is activated then skip the default database search implementation. + if (Hook::ABORT === Hook::call('MonographSearchIndex::submissionFileDeleted', [$monographId, $type, $assocId])) { + return; + } + + $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /** @var MonographSearchDAO $searchDao */ + return $searchDao->deleteSubmissionKeywords($monographId, $type, $assocId); + } + + /** + * @copydoc SubmissionSearchIndex::submissionChangesFinished() + */ + public function submissionChangesFinished() + { + // Trigger a hook to let the indexing back-end know that + // the index may be updated. + Hook::call( + 'MonographSearchIndex::monographChangesFinished' + ); + + // The default indexing back-end works completely synchronously + // and will therefore not do anything here. + } + + /** + * @copydoc SubmissionSearchIndex::submissionChangesFinished() + */ + public function monographChangesFinished() + { + if (Config::getVar('debug', 'deprecation_warnings')) { + trigger_error('Deprecated call to monographChangesFinished. Use submissionChangesFinished instead.'); + } + $this->submissionChangesFinished(); + } + + + /** + * Rebuild the search index for all presses. + * + * @param bool $log Whether or not to log progress to the console. + * @param \APP\press\Press $press If given the user wishes to + * re-index only one press. Not all search implementations + * may be able to do so. Most notably: The default SQL + * implementation does not support press-specific re-indexing + * as index data is not partitioned by press. + * @param array $switches Optional index administration switches. + */ + public function rebuildIndex($log = false, $press = null, $switches = []) + { + // If a search plug-in is activated then skip the default database search implementation. + if (Hook::ABORT === Hook::call('MonographSearchIndex::rebuildIndex', [$log, $press, $switches])) { + return; + } + + // Check that no press was given as we do not support press-specific re-indexing. + if ($press instanceof Press) { + exit(__('search.cli.rebuildIndex.indexingByPressNotSupported') . "\n"); + } + + // Clear index + if ($log) { + echo __('search.cli.rebuildIndex.clearingIndex') . ' ... '; + } + $searchDao = DAORegistry::getDAO('MonographSearchDAO'); /** @var MonographSearchDAO $searchDao */ + $searchDao->clearIndex(); + if ($log) { + echo __('search.cli.rebuildIndex.done') . "\n"; + } + + // Build index + $pressDao = DAORegistry::getDAO('PressDAO'); /** @var PressDAO $pressDao */ + + $presses = $pressDao->getAll()->toIterator(); + foreach ($presses as $press) { + $numIndexed = 0; + + if ($log) { + echo __('search.cli.rebuildIndex.indexing', ['pressName' => $press->getLocalizedName()]) . ' ... '; + } + + $submissions = Repo::submission() + ->getCollector() + ->filterByContextIds([$press->getId()]) + ->getMany(); + + foreach ($submissions as $submission) { + dispatch(new UpdateSubmissionSearchJob($submission->getId())); + ++$numIndexed; + } + + if ($log) { + echo __('search.cli.rebuildIndex.result', ['numIndexed' => $numIndexed]) . "\n"; + } + } + } + + /** + * Flattens array of localized fields to a single, non-associative array of items + * + * @param array $arrayWithLocales Array of localized fields + * + * @return array + */ + protected function _flattenLocalizedArray($arrayWithLocales) + { + $flattenedArray = []; + foreach ($arrayWithLocales as $localeArray) { + $flattenedArray = array_merge( + $flattenedArray, + $localeArray + ); + } + return $flattenedArray; + } +} diff --git a/classes/section/DAO.php b/classes/section/DAO.php new file mode 100644 index 00000000000..87a234fc709 --- /dev/null +++ b/classes/section/DAO.php @@ -0,0 +1,123 @@ + 'series_id', + 'contextId' => 'press_id', + 'reviewFormId' => 'review_form_id', + 'sequence' => 'seq', + 'featured' => 'featured', + 'editorRestricted' => 'editor_restricted', + 'path' => 'path', + 'image' => 'image', + 'isInactive' => 'is_inactive' + ]; + + /** + * Get the parent object ID column name + */ + public function getParentColumn(): string + { + return 'press_id'; + } + + /** + * Retrieve a series by path. + */ + public function getByPath(string $path, int $pressId = null): ?Section + { + $row = DB::table($this->table) + ->where('path', $path) + ->when($pressId !== null, fn (Builder $query) => $query->where($this->getParentColumn(), $pressId)) + ->first(); + return $row ? $this->fromRow($row) : null; + } + + /** + * Associate a category with a series. + */ + public function addToCategory(int $seriesId, int $categoryId): void + { + DB::table('series_categories') + ->insert(['series_id' => $seriesId, 'category_id' => $categoryId]); + } + + /** + * Disassociate all categories with a series + */ + public function removeFromCategory(int $seriesId): void + { + DB::table('series_categories') + ->where('series_id', $seriesId) + ->delete(); + } + + /** + * Get the category IDs associated with a series + */ + public function getAssignedCategoryIds(int $seriesId): Enumerable + { + return DB::table('series_categories') + ->where('series_id', $seriesId) + ->pluck('category_id'); + } + + /** + * Get the categories associated with a series. + */ + public function getAssignedCategories(int $seriesId, ?int $contextId = null): Enumerable + { + return $this + ->getAssignedCategoryIds($seriesId) + ->map(fn ($categoryId) => Repo::category()->get($categoryId, $contextId)); + } + + /** + * Check if an association between a series and a category exists. + */ + public function categoryAssociationExists(int $seriesId, int $categoryId): bool + { + return DB::table('series_categories') + ->where('series_id', $seriesId) + ->where('category_id', $categoryId) + ->exists(); + } +} diff --git a/classes/section/Repository.php b/classes/section/Repository.php new file mode 100644 index 00000000000..70a66266034 --- /dev/null +++ b/classes/section/Repository.php @@ -0,0 +1,70 @@ +dao->getByPath($path, $pressId); + } + + /** @copydoc DAO::addToCategory() */ + public function addToCategory(int $seriesId, int $categoryId): void + { + $this->dao->addToCategory($seriesId, $categoryId); + } + + /** @copydoc DAO::removeFromCategory() */ + public function removeFromCategory(int $seriesId): void + { + $this->dao->removeFromCategory($seriesId); + } + + /** @copydoc DAO::getAssignedCategoryIds() */ + public function getAssignedCategoryIds(int $seriesId): Enumerable + { + return $this->dao->getAssignedCategoryIds($seriesId); + } + + /** @copydoc DAO::getAssignedCategories() */ + public function getAssignedCategories(int $seriesId, ?int $contextId = null): Enumerable + { + return $this->dao->getAssignedCategories($seriesId, $contextId); + } + + /** @copydoc DAO::categoryAssociationExists() */ + public function categoryAssociationExists(int $seriesId, int $categoryId): bool + { + return $this->dao->categoryAssociationExists($seriesId, $categoryId); + } + + /** + * Check if the section has any submissions assigned to it. + */ + public function isEmpty(int $seriesId, int $contextId): bool + { + return Repo::submission() + ->getCollector() + ->filterByContextIds([$contextId]) + ->filterBySeriesIds([$seriesId]) + ->getCount() === 0; + } +} diff --git a/classes/section/Section.php b/classes/section/Section.php new file mode 100644 index 00000000000..9f23f1e2abf --- /dev/null +++ b/classes/section/Section.php @@ -0,0 +1,300 @@ +getLocalizedData('title'); + if ($includePrefix) { + $title = $this->getLocalizedPrefix() . ' ' . $title; + } + return $title; + } + + /** + * Get title of series. + */ + public function getTitle(?string $locale, bool $includePrefix = true): string|array|null + { + $title = $this->getData('title', $locale); + if ($includePrefix) { + if (is_array($title)) { + foreach ($title as $locale => $currentTitle) { + $title[$locale] = $this->getPrefix($locale) . ' ' . $currentTitle; + } + } else { + $title = $this->getPrefix($locale) . ' ' . $title; + } + } + return $title; + } + + /** + * Get the series full title (with title + prefix and subtitle). + */ + public function getLocalizedFullTitle(): string + { + $fullTitle = $this->getLocalizedTitle(); + if ($subtitle = $this->getLocalizedSubtitle()) { + $fullTitle = PKPString::concatTitleFields([$fullTitle, $subtitle]); + } + return $fullTitle; + } + + /** + * Get localized prefix of series. + */ + public function getLocalizedPrefix(): ?string + { + return $this->getLocalizedData('prefix'); + } + + /** + * Get prefix of series. + */ + public function getPrefix(?string $locale): string|array|null + { + return $this->getData('prefix', $locale); + } + + /** + * Set prefix of series. + */ + public function setPrefix(string|array $prefix, string $locale = null): void + { + $this->setData('prefix', $prefix, $locale); + } + + /** + * Get localized subtitle of series + */ + public function getLocalizedSubtitle(): ?string + { + return $this->getLocalizedData('subtitle'); + } + + /** + * Get subtitle of series + */ + public function getSubtitle(?string $locale): string|array|null + { + return $this->getData('subtitle', $locale); + } + + /** + * Set subtitle of series + */ + public function setSubtitle(string|array $subtitle, string $locale = null): void + { + $this->setData('subtitle', $subtitle, $locale); + } + + /** + * Get the featured flag. + */ + public function getFeatured(): bool + { + return $this->getData('featured'); + } + + /** + * Set the featured flag. + */ + public function setFeatured(bool $featured): void + { + $this->setData('featured', $featured); + } + + /** + * Get the image. + */ + public function getImage(): array + { + return $this->getData('image'); + } + + /** + * Set the image. + */ + public function setImage(array $image): void + { + $this->setData('image', $image); + } + + /** + * Get online ISSN. + */ + public function getOnlineISSN(): ?string + { + return $this->getData('onlineIssn'); + } + + /** + * Set online ISSN. + */ + public function setOnlineISSN(?string $onlineIssn): void + { + $this->setData('onlineIssn', $onlineIssn); + } + + /** + * Get print ISSN. + */ + public function getPrintISSN(): ?string + { + return $this->getData('printIssn'); + } + + /** + * Get ID of primary review form. + */ + public function getReviewFormId(): ?int + { + return $this->getData('reviewFormId'); + } + + /** + * Set ID of primary review form. + */ + public function setReviewFormId(?int $reviewFormId): void + { + $this->setData('reviewFormId', $reviewFormId); + } + + /** + * Set print ISSN. + */ + public function setPrintISSN(?string $printIssn): void + { + $this->setData('printIssn', $printIssn); + } + + /** + * Get the option how the books in this series should be sorted, + * in the form: sortBy-sortDir. + */ + public function getSortOption(): ?string + { + return $this->getData('sortOption'); + } + + /** + * Set the option how the books in this series should be sorted, + * in the form: sortBy-sortDir. + */ + public function setSortOption(?string $sortOption): void + { + $this->setData('sortOption', $sortOption); + } + + /** + * Get section path. + * + * @return string + */ + public function getPath() + { + return $this->getData('path'); + } + + /** + * Set section path. + * + * @param string $path + */ + public function setPath($path) + { + return $this->setData('path', $path); + } + + /** + * Get localized series description. + */ + public function getLocalizedDescription(): ?string + { + return $this->getLocalizedData('description'); + } + + /** + * Get series description. + */ + public function getDescription(?string $locale): string|array|null + { + return $this->getData('description', $locale); + } + + /** + * Set series description. + */ + public function setDescription(string|array $description, string $locale = null): void + { + $this->setData('description', $description, $locale); + } + + /** + * Returns a string with the full name of all series + * editors, separated by a comma. + * + */ + public function getEditorsString(): string + { + $subEditorsDao = DAORegistry::getDAO('SubEditorsDAO'); /** @var SubEditorsDAO $subEditorsDao */ + $assignments = $subEditorsDao->getBySubmissionGroupIds([$this->getId()], Application::ASSOC_TYPE_SECTION, $this->getData('contextId')); + $editors = Repo::user() + ->getCollector() + ->filterByUserIds( + $assignments + ->map(fn (stdClass $assignment) => $assignment->userId) + ->filter() + ->toArray() + ) + ->getMany(); + + $separator = ', '; + $str = ''; + + foreach ($editors as $editor) { + if (!empty($str)) { + $str .= $separator; + } + + $str .= $editor->getFullName(); + $editor = null; + } + + return $str; + } +} diff --git a/classes/section/maps/Schema.php b/classes/section/maps/Schema.php new file mode 100644 index 00000000000..c6d4d5034d7 --- /dev/null +++ b/classes/section/maps/Schema.php @@ -0,0 +1,41 @@ +request->getDispatcher()->url( + $this->request, + Application::ROUTE_PAGE, + $this->context->getPath(), + 'catalog', + 'series', + $series->getPath() + ); + } + $output = $this->schemaService->addMissingMultilingualValues($this->schema, $output, $this->context->getSupportedFormLocales()); + ksort($output); + return $this->withExtensions($output, $series); + } +} diff --git a/classes/security/authorization/OmpPublishedSubmissionAccessPolicy.inc.php b/classes/security/authorization/OmpPublishedSubmissionAccessPolicy.inc.php deleted file mode 100644 index 31ae83bf376..00000000000 --- a/classes/security/authorization/OmpPublishedSubmissionAccessPolicy.inc.php +++ /dev/null @@ -1,34 +0,0 @@ -addPolicy(new OmpPublishedSubmissionRequiredPolicy($request, $args, $submissionParameterName)); - } -} - - diff --git a/classes/security/authorization/OmpPublishedSubmissionAccessPolicy.php b/classes/security/authorization/OmpPublishedSubmissionAccessPolicy.php new file mode 100644 index 00000000000..faba10fdbe4 --- /dev/null +++ b/classes/security/authorization/OmpPublishedSubmissionAccessPolicy.php @@ -0,0 +1,42 @@ +addPolicy(new OmpPublishedSubmissionRequiredPolicy($request, $args, $submissionParameterName)); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\security\authorization\OmpPublishedSubmissionAccessPolicy', '\OmpPublishedSubmissionAccessPolicy'); +} diff --git a/classes/security/authorization/OmpPublishedSubmissionRequiredPolicy.inc.php b/classes/security/authorization/OmpPublishedSubmissionRequiredPolicy.inc.php deleted file mode 100644 index 5dabd01a4b0..00000000000 --- a/classes/security/authorization/OmpPublishedSubmissionRequiredPolicy.inc.php +++ /dev/null @@ -1,83 +0,0 @@ -context = $request->getContext(); - } - - // - // Implement template methods from AuthorizationPolicy - // - /** - * @see DataObjectRequiredPolicy::dataObjectEffect() - */ - function dataObjectEffect() { - $submissionId = $this->getDataObjectId(); - if (!$submissionId) return AUTHORIZATION_DENY; - - // Make sure the published submissions belongs to the press. - $submission = Services::get('submission')->getByUrlPath($submissionId, $this->context->getId()); - if (!$submission && ctype_digit((string) $submissionId)) { - $submission = Services::get('submission')->get($submissionId); - if ($submission && $submission->getContextId() != $this->context->getId()) return AUTHORIZATION_DENY; - } - if (!$submission || $submission->getData('status') !== STATUS_PUBLISHED) return AUTHORIZATION_DENY; - - // Save the published submission to the authorization context. - $this->addAuthorizedContextObject(ASSOC_TYPE_SUBMISSION, $submission); - return AUTHORIZATION_PERMIT; - } - - /** - * @copydoc DataObjectRequiredPolicy::getDataObjectId() - * Considers a not numeric public URL identifier - */ - function getDataObjectId($lookOnlyByParameterName = false) { - // Identify the data object id. - $router = $this->_request->getRouter(); - switch(true) { - case is_a($router, 'PKPPageRouter'): - if ( ctype_digit((string) $this->_request->getUserVar($this->_parameterName)) ) { - // We may expect a object id in the user vars - return (int) $this->_request->getUserVar($this->_parameterName); - } else if (isset($this->_args[0])) { - // Or the object id can be expected as the first path in the argument list - return $this->_args[0]; - } - break; - - default: - return parent::getDataObjectId($lookOnlyByParameterName); - } - - return false; - } -} - - diff --git a/classes/security/authorization/OmpPublishedSubmissionRequiredPolicy.php b/classes/security/authorization/OmpPublishedSubmissionRequiredPolicy.php new file mode 100644 index 00000000000..4245cec1a91 --- /dev/null +++ b/classes/security/authorization/OmpPublishedSubmissionRequiredPolicy.php @@ -0,0 +1,101 @@ +context = $request->getContext(); + } + + // + // Implement template methods from AuthorizationPolicy + // + /** + * @see DataObjectRequiredPolicy::dataObjectEffect() + */ + public function dataObjectEffect() + { + $submissionId = $this->getDataObjectId(); + if (!$submissionId) { + return AuthorizationPolicy::AUTHORIZATION_DENY; + } + + // Make sure the published submissions belongs to the press. + $submission = ctype_digit((string) $submissionId) + ? Repo::submission()->get((int) $submissionId, $this->context->getId()) + : Repo::submission()->getByUrlPath($submissionId, $this->context->getId()); + + if (!$submission) { + return AuthorizationPolicy::AUTHORIZATION_DENY; + } + + // Save the published submission to the authorization context. + $this->addAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION, $submission); + return AuthorizationPolicy::AUTHORIZATION_PERMIT; + } + + /** + * @copydoc DataObjectRequiredPolicy::getDataObjectId() + * Considers a not numeric public URL identifier + */ + public function getDataObjectId($lookOnlyByParameterName = false) + { + // Identify the data object id. + $router = $this->_request->getRouter(); + switch (true) { + case $router instanceof \PKP\core\PKPPageRouter: + if (ctype_digit((string) $this->_request->getUserVar($this->_parameterName))) { + // We may expect a object id in the user vars + return (int) $this->_request->getUserVar($this->_parameterName); + } elseif (isset($this->_args[0])) { + // Or the object id can be expected as the first path in the argument list + return $this->_args[0]; + } + break; + + default: + return parent::getDataObjectId($lookOnlyByParameterName); + } + + return false; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\security\authorization\OmpPublishedSubmissionRequiredPolicy', '\OmpPublishedSubmissionRequiredPolicy'); +} diff --git a/classes/services/ContextService.inc.php b/classes/services/ContextService.inc.php deleted file mode 100644 index 7ca52705730..00000000000 --- a/classes/services/ContextService.inc.php +++ /dev/null @@ -1,276 +0,0 @@ -installFileDirs = array( - \Config::getVar('files', 'files_dir') . '/%s/%d', - \Config::getVar('files', 'files_dir'). '/%s/%d/monographs', - \Config::getVar('files', 'public_files_dir') . '/%s/%d', - ); - - \HookRegistry::register('Context::edit', array($this, 'afterEditContext')); - \HookRegistry::register('Context::delete::before', array($this, 'beforeDeleteContext')); - \HookRegistry::register('Context::delete', array($this, 'afterDeleteContext')); - \HookRegistry::register('Context::validate', array($this, 'validateContext')); - } - - /** - * Update press-specific settings when a context is edited - * - * @param $hookName string - * @param $args array [ - * @option Press The new context - * @option Press The current context - * @option array The params to edit - * @option Request - * ] - */ - public function afterEditContext($hookName, $args) { - $newContext = $args[0]; - $currentContext = $args[1]; - $params = $args[2]; - $request = $args[3]; - - // If the context is enabled or disabled, create or delete publication - // format tombstones for all published submissions - if ($newContext->getData('enabled') !== $currentContext->getData('enabled')) { - import('classes.publicationFormat.PublicationFormatTombstoneManager'); - $publicationFormatTombstoneMgr = new \PublicationFormatTombstoneManager(); - if ($newContext->getData('enabled')) { - $publicationFormatTombstoneMgr->deleteTombstonesByPressId($newContext->getId()); - } else { - $publicationFormatTombstoneMgr->insertTombstonesByPress($newContext); - } - } - - // If the cover image sizes have been changed, resize existing images - if (($newContext->getData('coverThumbnailsMaxWidth') !== $currentContext->getData('coverThumbnailsMaxWidth')) - || ($newContext->getData('coverThumbnailsMaxHeight') !== $currentContext->getData('coverThumbnailsMaxHeight'))) { - $this->resizeCoverThumbnails($newContext, $newContext->getData('coverThumbnailsMaxWidth'), $newContext->getData('coverThumbnailsMaxHeight')); - } - - // Move an uploaded press thumbnail and set the updated data - if (!empty($params['pressThumbnail'])) { - $supportedLocales = $newContext->getSupportedFormLocales(); - foreach ($supportedLocales as $localeKey) { - if (!array_key_exists($localeKey, $params['pressThumbnail'])) { - continue; - } - $localeValue = $this->_saveFileParam( - $newContext, - $params['pressThumbnail'][$localeKey], - 'pressThumbnail', - $request->getUser()->getId(), - $localeKey, - true - ); - $newContext->setData('pressThumbnail', $localeValue, $localeKey); - } - } - } - - /** - * Perform actions before a context has been deleted - * - * This should only be used in cases where you need the context to still exist - * in the database to complete the actions. Otherwise, use - * ContextService::afterDeleteContext(). - * - * @param $hookName string - * @param $args array [ - * @option Context The new context - * @option Request - * ] - */ - public function beforeDeleteContext($hookName, $args) { - $context = $args[0]; - - // Create publication format tombstones for all published submissions - import('classes.publicationFormat.PublicationFormatTombstoneManager'); - $publicationFormatTombstoneMgr = new \PublicationFormatTombstoneManager(); - $publicationFormatTombstoneMgr->insertTombstonesByPress($context); - } - - /** - * Perform additional actions after a context has been deleted - * - * @param $hookName string - * @param $args array [ - * @option Context The new context - * @option Request - * ] - */ - public function afterDeleteContext($hookName, $args) { - $context = $args[0]; - - $seriesDao = \DAORegistry::getDAO('SeriesDAO'); - $seriesDao->deleteByPressId($context->getId()); - - $submissionDao = \DAORegistry::getDAO('SubmissionDAO'); - $submissionDao->deleteByContextId($context->getId()); - - $featureDao = \DAORegistry::getDAO('FeatureDAO'); - $featureDao->deleteByAssoc(ASSOC_TYPE_PRESS, $context->getId()); - - $newReleaseDao = \DAORegistry::getDAO('NewReleaseDAO'); - $newReleaseDao->deleteByAssoc(ASSOC_TYPE_PRESS, $context->getId()); - - import('classes.file.PublicFileManager'); - $publicFileManager = new \PublicFileManager(); - $publicFileManager->rmtree($publicFileManager->getContextFilesPath($context->getId())); - } - - /** - * Make additional validation checks - * - * @param $hookName string - * @param $args array [ - * @option Context The new context - * @option Request - * ] - */ - public function validateContext($hookName, $args) { - $errors =& $args[0]; - $props = $args[2]; - - if (!empty($props['codeType'])) { - if (!\DAORegistry::getDAO('ONIXCodelistItemDAO')->codeExistsInList($props['codeType'], 'List44')) { - $errors['codeType'] = [__('manager.settings.publisherCodeType.invalid')]; - } - } - } - - /** - * Resize cover image thumbnails - * - * Processes all cover images to resize the thumbnails according to the passed - * width and height maximums. - * - * @param $context Context - * @param $maxWidth int The maximum width allowed for a cover image - * @param $maxHeight int The maximum width allowed for a cover image - */ - public function resizeCoverThumbnails($context, $maxWidth, $maxHeight) { - import('lib.pkp.classes.file.FileManager'); - import('classes.file.PublicFileManager'); - import('lib.pkp.classes.file.ContextFileManager'); - $fileManager = new \FileManager(); - $publicFileManager = new \PublicFileManager(); - $contextFileManager = new \ContextFileManager($context->getId()); - - $objectDaos = [ - \DAORegistry::getDAO('CategoryDAO'), - \DAORegistry::getDAO('SeriesDAO'), - \DAORegistry::getDAO('SubmissionDAO'), - ]; - foreach ($objectDaos as $objectDao) { - $objects = $objectDao->getByContextId($context->getId()); - while ($object = $objects->next()) { - if (is_a($object, 'Submission')) { - foreach ($object->getData('publications') as $publication) { - foreach ((array) $publication->getData('coverImage') as $coverImage) { - $coverImageFilePath = $publicFileManager->getContextFilesPath($context->getId()) . '/' . $coverImage['uploadName']; - Services::get('publication')->makeThumbnail( - $coverImageFilePath, - Services::get('publication')->getThumbnailFileName($coverImage['uploadName']), - $maxWidth, - $maxHeight - ); - } - } - } else { - $cover = $object->getImage(); - if (is_a($object, 'Series')) { - $basePath = $contextFileManager->getBasePath() . 'series/'; - } elseif (is_a($object, 'Category')) { - $basePath = $contextFileManager->getBasePath() . 'categories/'; - } - } - if ($cover) { - // delete old cover thumbnail - $fileManager->deleteByPath($basePath . $cover['thumbnailName']); - - // get settings necessary for the new thumbnail - $coverExtension = $fileManager->getExtension($cover['name']); - $xRatio = min(1, $maxWidth / $cover['width']); - $yRatio = min(1, $maxHeight / $cover['height']); - $ratio = min($xRatio, $yRatio); - $thumbnailWidth = round($ratio * $cover['width']); - $thumbnailHeight = round($ratio * $cover['height']); - - // create a thumbnail image of the defined size - $thumbnail = imagecreatetruecolor($thumbnailWidth, $thumbnailHeight); - - // generate the image of the original cover - switch ($coverExtension) { - case 'jpg': $coverImage = imagecreatefromjpeg($basePath . $cover['name']); break; - case 'png': $coverImage = imagecreatefrompng($basePath . $cover['name']); break; - case 'gif': $coverImage = imagecreatefromgif($basePath . $cover['name']); break; - default: $coverImage = null; // Suppress warn - } - assert($coverImage); - - // copy the cover image to the thumbnail - imagecopyresampled($thumbnail, $coverImage, 0, 0, 0, 0, $thumbnailWidth, $thumbnailHeight, $cover['width'], $cover['height']); - - // create the thumbnail file - switch ($coverExtension) { - case 'jpg': imagejpeg($thumbnail, $basePath . $cover['thumbnailName']); break; - case 'png': imagepng($thumbnail, $basePath . $cover['thumbnailName']); break; - case 'gif': imagegif($thumbnail, $basePath . $cover['thumbnailName']); break; - } - - imagedestroy($thumbnail); - if (is_a($object, 'Submission')) { - $object->setCoverImage(array( - 'name' => $cover['name'], - 'width' => $cover['width'], - 'height' => $cover['height'], - 'thumbnailName' => $cover['thumbnailName'], - 'thumbnailWidth' => $thumbnailWidth, - 'thumbnailHeight' => $thumbnailHeight, - 'uploadName' => $cover['uploadName'], - 'dateUploaded' => $cover['dateUploaded'], - )); - } else { - $object->setImage(array( - 'name' => $cover['name'], - 'width' => $cover['width'], - 'height' => $cover['height'], - 'thumbnailName' => $cover['thumbnailName'], - 'thumbnailWidth' => $thumbnailWidth, - 'thumbnailHeight' => $thumbnailHeight, - 'uploadName' => $cover['uploadName'], - 'dateUploaded' => $cover['dateUploaded'], - )); - } - // Update category object to store new thumbnail information. - $objectDao->updateObject($object); - } - unset($object); - } - } - } -} diff --git a/classes/services/ContextService.php b/classes/services/ContextService.php new file mode 100644 index 00000000000..3e90ae8c03c --- /dev/null +++ b/classes/services/ContextService.php @@ -0,0 +1,335 @@ +installFileDirs = [ + Config::getVar('files', 'files_dir') . '/%s/%d', + Config::getVar('files', 'files_dir') . '/%s/%d/monographs', + Config::getVar('files', 'public_files_dir') . '/%s/%d', + ]; + + Hook::add('Context::edit', [$this, 'afterEditContext']); + Hook::add('Context::delete::before', [$this, 'beforeDeleteContext']); + Hook::add('Context::delete', [$this, 'afterDeleteContext']); + Hook::add('Context::validate', [$this, 'validateContext']); + } + + /** + * Update press-specific settings when a context is edited + * + * @param string $hookName + * @param array $args [ + * + * @option Press The new context + * @option Press The current context + * @option array The params to edit + * @option Request + * ] + */ + public function afterEditContext($hookName, $args) + { + $newContext = $args[0]; + $currentContext = $args[1]; + $params = $args[2]; + $request = $args[3]; + + // If the context is enabled or disabled, create or delete publication + // format tombstones for all published submissions + if ($newContext->getData('enabled') !== $currentContext->getData('enabled')) { + $publicationFormatTombstoneMgr = new PublicationFormatTombstoneManager(); + if ($newContext->getData('enabled')) { + $publicationFormatTombstoneMgr->deleteTombstonesByPressId($newContext->getId()); + } else { + $publicationFormatTombstoneMgr->insertTombstonesByPress($newContext); + } + } + + // If the cover image sizes have been changed, resize existing images + if (($newContext->getData('coverThumbnailsMaxWidth') !== $currentContext->getData('coverThumbnailsMaxWidth')) + || ($newContext->getData('coverThumbnailsMaxHeight') !== $currentContext->getData('coverThumbnailsMaxHeight'))) { + $this->resizeCoverThumbnails($newContext, $newContext->getData('coverThumbnailsMaxWidth'), $newContext->getData('coverThumbnailsMaxHeight')); + } + + // Move an uploaded press thumbnail and set the updated data + if (!empty($params['pressThumbnail'])) { + $supportedLocales = $newContext->getSupportedFormLocales(); + foreach ($supportedLocales as $localeKey) { + if (!array_key_exists($localeKey, $params['pressThumbnail'])) { + continue; + } + $localeValue = $this->_saveFileParam( + $newContext, + $params['pressThumbnail'][$localeKey], + 'pressThumbnail', + $request->getUser()->getId(), + $localeKey, + true + ); + $newContext->setData('pressThumbnail', $localeValue, $localeKey); + } + } + } + + /** + * Perform actions before a context has been deleted + * + * This should only be used in cases where you need the context to still exist + * in the database to complete the actions. Otherwise, use + * ContextService::afterDeleteContext(). + * + * @param string $hookName + * @param array $args [ + * + * @option Context The new context + * @option Request + * ] + */ + public function beforeDeleteContext($hookName, $args) + { + $context = $args[0]; + + // Create publication format tombstones for all published submissions + $publicationFormatTombstoneMgr = new PublicationFormatTombstoneManager(); + $publicationFormatTombstoneMgr->insertTombstonesByPress($context); + + /** @var GenreDAO */ + $genreDao = DAORegistry::getDAO('GenreDAO'); + $genreDao->deleteByContextId($context->getId()); + } + + /** + * Perform additional actions after a context has been deleted + * + * @param string $hookName + * @param array $args [ + * + * @option Context The new context + * @option Request + * ] + */ + public function afterDeleteContext($hookName, $args) + { + $context = $args[0]; + + Repo::section()->deleteMany( + Repo::section() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ); + + Repo::submission()->deleteByContextId($context->getId()); + + /** @var FeatureDAO */ + $featureDao = DAORegistry::getDAO('FeatureDAO'); + $featureDao->deleteByAssoc(Application::ASSOC_TYPE_PRESS, $context->getId()); + + /** @var NewReleaseDAO */ + $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); + $newReleaseDao->deleteByAssoc(Application::ASSOC_TYPE_PRESS, $context->getId()); + + $publicFileManager = new PublicFileManager(); + $publicFileManager->rmtree($publicFileManager->getContextFilesPath($context->getId())); + } + + /** + * Make additional validation checks + * + * @param string $hookName + * @param array $args [ + * + * @option Context The new context + * @option Request + * ] + */ + public function validateContext($hookName, $args) + { + $errors = & $args[0]; + $props = $args[2]; + + if (!empty($props['codeType'])) { + /** @var ONIXCodelistItemDAO */ + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); + if (!$onixCodelistItemDao->codeExistsInList($props['codeType'], 'List44')) { + $errors['codeType'] = [__('manager.settings.publisherCodeType.invalid')]; + } + } + } + + /** + * Resize cover image thumbnails + * + * Processes all cover images to resize the thumbnails according to the passed + * width and height maximums. + * + * @param Press $context + * @param int $maxWidth The maximum width allowed for a cover image + * @param int $maxHeight The maximum width allowed for a cover image + */ + public function resizeCoverThumbnails($context, $maxWidth, $maxHeight) + { + $fileManager = new FileManager(); + $publicFileManager = new PublicFileManager(); + $contextFileManager = new ContextFileManager($context->getId()); + + $objectDaos = [ + Repo::submission()->dao, + Repo::section()->dao, + Repo::submission()->dao, + ]; + foreach ($objectDaos as $objectDao) { + if ($objectDao instanceof \PKP\submission\DAO) { + $objects = Repo::submission() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ->getMany() + ->toArray(); + } elseif ($objectDao instanceof \PKP\category\DAO) { + $objects = Repo::category()->getCollector() + ->filterByContextIds([$context->getId()]) + ->getMany() + ->toArray(); + } elseif ($objectDao instanceof \PKP\section\DAO) { + $objects = Repo::section() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ->getMany() + ->toArray(); + } else { + throw new \Exception('Unknown DAO ' . get_class($objectDao) . ' for cover image!'); + } + + foreach ($objects as $object) { + if ($object instanceof Submission) { + foreach ($object->getData('publications') as $publication) { + foreach ((array) $publication->getData('coverImage') as $coverImage) { + $coverImageFilePath = $publicFileManager->getContextFilesPath($context->getId()) . '/' . $coverImage['uploadName']; + Repo::publication()->makeThumbnail( + $coverImageFilePath, + Repo::publication()->getThumbnailFileName($coverImage['uploadName']), + $maxWidth, + $maxHeight + ); + } + } + continue; + } + + // $object is a category or section + $cover = $object->getImage(); + if ($object instanceof \APP\section\Section) { + $basePath = $contextFileManager->getBasePath() . 'series/'; + } elseif ($object instanceof \PKP\category\Category) { + $basePath = $contextFileManager->getBasePath() . 'categories/'; + } + + if ($cover) { + // delete old cover thumbnail + $fileManager->deleteByPath($basePath . $cover['thumbnailName']); + + // get settings necessary for the new thumbnail + $coverExtension = $fileManager->getExtension($cover['name']); + $xRatio = min(1, $maxWidth / $cover['width']); + $yRatio = min(1, $maxHeight / $cover['height']); + $ratio = min($xRatio, $yRatio); + $thumbnailWidth = round($ratio * $cover['width']); + $thumbnailHeight = round($ratio * $cover['height']); + + // create a thumbnail image of the defined size + $thumbnail = imagecreatetruecolor($thumbnailWidth, $thumbnailHeight); + + // generate the image of the original cover + switch ($coverExtension) { + case 'jpg': $coverImage = imagecreatefromjpeg($basePath . $cover['name']); + break; + case 'png': $coverImage = imagecreatefrompng($basePath . $cover['name']); + break; + case 'gif': $coverImage = imagecreatefromgif($basePath . $cover['name']); + break; + default: $coverImage = null; // Suppress warn + } + assert($coverImage); + + // copy the cover image to the thumbnail + imagecopyresampled($thumbnail, $coverImage, 0, 0, 0, 0, $thumbnailWidth, $thumbnailHeight, $cover['width'], $cover['height']); + + // create the thumbnail file + switch ($coverExtension) { + case 'jpg': imagejpeg($thumbnail, $basePath . $cover['thumbnailName']); + break; + case 'png': imagepng($thumbnail, $basePath . $cover['thumbnailName']); + break; + case 'gif': imagegif($thumbnail, $basePath . $cover['thumbnailName']); + break; + } + + imagedestroy($thumbnail); + if ($object instanceof Submission) { + $object->setData('coverImage', [ + 'name' => $cover['name'], + 'width' => $cover['width'], + 'height' => $cover['height'], + 'thumbnailName' => $cover['thumbnailName'], + 'thumbnailWidth' => $thumbnailWidth, + 'thumbnailHeight' => $thumbnailHeight, + 'uploadName' => $cover['uploadName'], + 'dateUploaded' => $cover['dateUploaded'], + ]); + } else { + $object->setImage([ + 'name' => $cover['name'], + 'width' => $cover['width'], + 'height' => $cover['height'], + 'thumbnailName' => $cover['thumbnailName'], + 'thumbnailWidth' => $thumbnailWidth, + 'thumbnailHeight' => $thumbnailHeight, + 'uploadName' => $cover['uploadName'], + 'dateUploaded' => $cover['dateUploaded'], + ]); + } + // Update category object to store new thumbnail information. + $objectDao->update($object); + } + } + } + } +} diff --git a/classes/services/NavigationMenuService.inc.php b/classes/services/NavigationMenuService.inc.php deleted file mode 100644 index 20fc5e41803..00000000000 --- a/classes/services/NavigationMenuService.inc.php +++ /dev/null @@ -1,210 +0,0 @@ - array( - 'title' => __('navigation.catalog'), - 'description' => __('navigation.navigationMenus.catalog.description'), - ), - NMI_TYPE_NEW_RELEASE => array( - 'title' => __('navigation.navigationMenus.newRelease'), - 'description' => __('navigation.navigationMenus.newRelease.description'), - ), - ); - - $request = \Application::get()->getRequest(); - $context = $request->getContext(); - $contextId = $context ? $context->getId() : CONTEXT_ID_NONE; - - $seriesDao = \DAORegistry::getDAO('SeriesDAO'); - $series = $seriesDao->getByContextId($contextId); - - if ($series->count) { - $newArray = array( - NMI_TYPE_SERIES => array( - 'title' => __('navigation.navigationMenus.series.generic'), - 'description' => __('navigation.navigationMenus.series.description'), - ), - ); - - $ompTypes = array_merge($ompTypes, $newArray); - - } - - $categoryDao = \DAORegistry::getDAO('CategoryDAO'); - $categories = $categoryDao->getByParentId(null, $contextId); - - if ($categories->count) { - $newArray = array( - NMI_TYPE_CATEGORY => array( - 'title' => __('navigation.navigationMenus.category.generic'), - 'description' => __('navigation.navigationMenus.category.description'), - ), - ); - - $ompTypes = array_merge($ompTypes, $newArray); - } - - $types = array_merge($types, $ompTypes); - } - - /** - * Return all navigationMenuItem Types custom edit templates. - * @param $hookName string - * @param $args array of arguments passed - */ - public function getMenuItemCustomEditTemplatesCallback($hookName, $args) { - $templates =& $args[0]; - - \AppLocale::requireComponents(LOCALE_COMPONENT_APP_COMMON, LOCALE_COMPONENT_PKP_USER); - - $ompTemplates = array( - NMI_TYPE_CATEGORY => array( - 'template' => 'controllers/grid/navigationMenus/categoriesNMIType.tpl', - ), - NMI_TYPE_SERIES => array( - 'template' => 'controllers/grid/navigationMenus/seriesNMIType.tpl', - ), - ); - - $templates = array_merge($templates, $ompTemplates); - } - - /** - * Callback for display menu item functionallity - * @param $hookName string - * @param $args array of arguments passed - */ - function getDisplayStatusCallback($hookName, $args) { - $navigationMenuItem =& $args[0]; - - $request = \Application::get()->getRequest(); - $dispatcher = $request->getDispatcher(); - $templateMgr = \TemplateManager::getManager(\Application::get()->getRequest()); - - $isUserLoggedIn = \Validation::isLoggedIn(); - $isUserLoggedInAs = \Validation::isLoggedInAs(); - $context = $request->getContext(); - $contextId = $context ? $context->getId() : CONTEXT_ID_NONE; - - $this->transformNavMenuItemTitle($templateMgr, $navigationMenuItem); - - $menuItemType = $navigationMenuItem->getType(); - - if ($navigationMenuItem->getIsDisplayed()) { - $menuItemType = $navigationMenuItem->getType(); - - $relatedObject = null; - - switch ($menuItemType) { - case NMI_TYPE_SERIES: - $seriesId = $navigationMenuItem->getPath(); - - $seriesDao = \DAORegistry::getDAO('SeriesDAO'); - $relatedObject = $seriesDao->getById($seriesId, $contextId); - - break; - case NMI_TYPE_CATEGORY: - $categoryId = $navigationMenuItem->getPath(); - - $categoryDao = \DAORegistry::getDAO('CategoryDAO'); - $relatedObject = $categoryDao->getById($categoryId, $contextId); - - break; - } - - // Set the URL - switch ($menuItemType) { - case NMI_TYPE_CATALOG: - $navigationMenuItem->setUrl($dispatcher->url( - $request, - ROUTE_PAGE, - null, - 'catalog', - null, - null - )); - break; - case NMI_TYPE_NEW_RELEASE: - $navigationMenuItem->setUrl($dispatcher->url( - $request, - ROUTE_PAGE, - null, - 'catalog', - 'newReleases', - null - )); - break; - case NMI_TYPE_SERIES: - if ($relatedObject) { - $navigationMenuItem->setUrl($dispatcher->url( - $request, - ROUTE_PAGE, - null, - 'catalog', - 'series', - $relatedObject->getPath() - )); - } else { - $navigationMenuItem->setIsDisplayed(false); - } - break; - case NMI_TYPE_CATEGORY: - if ($relatedObject) { - $navigationMenuItem->setUrl($dispatcher->url( - $request, - ROUTE_PAGE, - null, - 'catalog', - 'category', - $relatedObject->getPath() - )); - } else { - $navigationMenuItem->setIsDisplayed(false); - } - break; - } - } - } -} diff --git a/classes/services/NavigationMenuService.php b/classes/services/NavigationMenuService.php new file mode 100644 index 00000000000..d4cb7e81de8 --- /dev/null +++ b/classes/services/NavigationMenuService.php @@ -0,0 +1,232 @@ + [ + 'title' => __('navigation.catalog'), + 'description' => __('navigation.navigationMenus.catalog.description'), + ], + self::NMI_TYPE_NEW_RELEASE => [ + 'title' => __('navigation.navigationMenus.newRelease'), + 'description' => __('navigation.navigationMenus.newRelease.description'), + ], + ]; + + $request = Application::get()->getRequest(); + $context = $request->getContext(); + $contextId = $context ? $context->getId() : Application::CONTEXT_ID_NONE; + + $series = Repo::section() + ->getCollector() + ->filterByContextIds([$contextId]) + ->getMany(); + + if ($series->count()) { + $newArray = [ + self::NMI_TYPE_SERIES => [ + 'title' => __('navigation.navigationMenus.series.generic'), + 'description' => __('navigation.navigationMenus.series.description'), + ], + ]; + + $ompTypes = array_merge($ompTypes, $newArray); + } + + $categoryCount = Repo::category()->getCollector() + ->filterByParentIds([null]) + ->filterByContextIds([$contextId]) + ->getCount(); + + if ($categoryCount) { + $newArray = [ + self::NMI_TYPE_CATEGORY => [ + 'title' => __('navigation.navigationMenus.category.generic'), + 'description' => __('navigation.navigationMenus.category.description'), + ], + ]; + + $ompTypes = array_merge($ompTypes, $newArray); + } + + $types = array_merge($types, $ompTypes); + } + + /** + * Return all navigationMenuItem Types custom edit templates. + * + * @param string $hookName + * @param array $args of arguments passed + */ + public function getMenuItemCustomEditTemplatesCallback($hookName, $args) + { + $templates = & $args[0]; + + $ompTemplates = [ + self::NMI_TYPE_CATEGORY => [ + 'template' => 'controllers/grid/navigationMenus/categoriesNMIType.tpl', + ], + self::NMI_TYPE_SERIES => [ + 'template' => 'controllers/grid/navigationMenus/seriesNMIType.tpl', + ], + ]; + + $templates = array_merge($templates, $ompTemplates); + } + + /** + * Callback for display menu item functionality + * + * @param string $hookName + * @param array $args of arguments passed + */ + public function getDisplayStatusCallback($hookName, $args) + { + $navigationMenuItem = & $args[0]; + + $request = Application::get()->getRequest(); + $dispatcher = $request->getDispatcher(); + $templateMgr = TemplateManager::getManager(Application::get()->getRequest()); + + $isUserLoggedIn = Validation::isLoggedIn(); + $isUserLoggedInAs = (bool) Validation::loggedInAs(); + $context = $request->getContext(); + $contextId = $context ? $context->getId() : Application::CONTEXT_ID_NONE; + + $this->transformNavMenuItemTitle($templateMgr, $navigationMenuItem); + + $menuItemType = $navigationMenuItem->getType(); + + if ($navigationMenuItem->getIsDisplayed()) { + $menuItemType = $navigationMenuItem->getType(); + + $relatedObject = null; + + switch ($menuItemType) { + case self::NMI_TYPE_SERIES: + $seriesId = $navigationMenuItem->getPath(); + $relatedObject = $seriesId ? Repo::section()->get($seriesId, $contextId) : null; + break; + case self::NMI_TYPE_CATEGORY: + $categoryId = $navigationMenuItem->getPath(); + $relatedObject = Repo::category()->get($categoryId); + if ($relatedObject && $relatedObject->getContextId() != $contextId) { + $relatedObject = null; + } + break; + } + + // Set the URL + switch ($menuItemType) { + case self::NMI_TYPE_CATALOG: + $navigationMenuItem->setUrl($dispatcher->url( + $request, + PKPApplication::ROUTE_PAGE, + null, + 'catalog', + null, + null + )); + break; + case self::NMI_TYPE_NEW_RELEASE: + $navigationMenuItem->setUrl($dispatcher->url( + $request, + PKPApplication::ROUTE_PAGE, + null, + 'catalog', + 'newReleases', + null + )); + break; + case self::NMI_TYPE_SERIES: + if ($relatedObject) { + $navigationMenuItem->setUrl($dispatcher->url( + $request, + PKPApplication::ROUTE_PAGE, + null, + 'catalog', + 'series', + $relatedObject->getPath() + )); + } else { + $navigationMenuItem->setIsDisplayed(false); + } + break; + case self::NMI_TYPE_CATEGORY: + if ($relatedObject) { + $navigationMenuItem->setUrl($dispatcher->url( + $request, + PKPApplication::ROUTE_PAGE, + null, + 'catalog', + 'category', + $relatedObject->getPath() + )); + } else { + $navigationMenuItem->setIsDisplayed(false); + } + break; + } + } + } +} + +if (!PKP_STRICT_MODE) { + foreach ([ + 'NMI_TYPE_CATALOG', + 'NMI_TYPE_SERIES', + 'NMI_TYPE_CATEGORY', + 'NMI_TYPE_NEW_RELEASE', + ] as $constantName) { + define($constantName, constant('\APP\services\NavigationMenuService::' . $constantName)); + } +} diff --git a/classes/services/OMPServiceProvider.inc.php b/classes/services/OMPServiceProvider.inc.php deleted file mode 100644 index 93088c258b7..00000000000 --- a/classes/services/OMPServiceProvider.inc.php +++ /dev/null @@ -1,119 +0,0 @@ -deleteById($publicationFormat->getId()); - - // Delete publication format metadata - $metadataDaos = ['IdentificationCodeDAO', 'MarketDAO', 'PublicationDateDAO', 'SalesRightsDAO']; - foreach ($metadataDaos as $metadataDao) { - $result = DAORegistry::getDAO($metadataDao)->getByPublicationFormatId($publicationFormat->getId()); - while (!$result->eof()) { - $object = $result->next(); - DAORegistry::getDAO($metadataDao)->deleteObject($object); - } - } - - // Delete submission files for this publication format - $submissionFiles = Services::get('submissionFile')->getMany([ - 'submissionIds' => [$submission->getId()], - 'assocTypes' => [ASSOC_TYPE_REPRESENTATION], - 'assocIds' => [$publicationFormat->getId()], - ]); - foreach ($submissionFiles as $submissionFile) { - Services::get('submissionFile')->delete($submissionFile); - } - - // Log the deletion of the format. - import('lib.pkp.classes.log.SubmissionLog'); - import('classes.log.SubmissionEventLogEntry'); - \SubmissionLog::logEvent(Application::get()->getRequest(), $submission, SUBMISSION_LOG_PUBLICATION_FORMAT_REMOVE, 'submission.event.publicationFormatRemoved', array('formatName' => $publicationFormat->getLocalizedName())); - } -} diff --git a/classes/services/PublicationFormatService.php b/classes/services/PublicationFormatService.php new file mode 100644 index 00000000000..ac49470cbee --- /dev/null +++ b/classes/services/PublicationFormatService.php @@ -0,0 +1,84 @@ +deleteById($publicationFormat->getId()); + + // Delete publication format metadata + $metadataDaos = ['IdentificationCodeDAO', 'MarketDAO', 'PublicationDateDAO', 'SalesRightsDAO']; + foreach ($metadataDaos as $metadataDao) { + /** @var IdentificationCodeDAO|MarketDAO|PublicationDateDAO|SalesRightsDAO */ + $dao = DAORegistry::getDAO($metadataDao); + $result = $dao->getByPublicationFormatId($publicationFormat->getId()); + while (!$result->eof()) { + $object = $result->next(); + $dao->deleteObject($object); + } + } + + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$submission->getId()]) + ->filterByAssoc( + Application::ASSOC_TYPE_REPRESENTATION, + [$publicationFormat->getId()] + ) + ->getMany(); + + // Delete submission files for this publication format + foreach ($submissionFiles as $submissionFile) { + Repo::submissionFile()->delete($submissionFile); + } + + // Log the deletion of the format. + $eventLog = Repo::eventLog()->newDataObject([ + 'assocType' => PKPApplication::ASSOC_TYPE_SUBMISSION, + 'assocId' => $submission->getId(), + 'eventType' => SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_REMOVE, + 'userId' => Application::get()->getRequest()->getUser()?->getId(), + 'message' => 'submission.event.publicationFormatRemoved', + 'isTranslated' => false, + 'dateLogged' => Core::getCurrentDate(), + 'publicationFormatName' => $publicationFormat->getData('name') // formatName + ]); + Repo::eventLog()->add($eventLog); + } +} diff --git a/classes/services/PublicationService.inc.php b/classes/services/PublicationService.inc.php deleted file mode 100644 index 0e894a66013..00000000000 --- a/classes/services/PublicationService.inc.php +++ /dev/null @@ -1,548 +0,0 @@ -getDispatcher(); - - // Get required submission and context - $submission = !empty($args['submission']) - ? $args['submission'] - : $args['submission'] = Services::get('submission')->get($publication->getData('submissionId')); - - $submissionContext = !empty($dependencies['context']) - ? $dependencies['context'] - : $dependencies['context'] = Services::get('context')->get($submission->getData('contextId')); - - foreach ($props as $prop) { - switch ($prop) { - case 'chapters': - $values[$prop] = array_map( - function($chapter) use ($publication) { - $data = $chapter->_data; - $data['authors'] = array_map( - function($chapterAuthor) { - return $chapterAuthor->_data; - }, - DAORegistry::getDAO('ChapterAuthorDAO')->getAuthors($publication->getId(), $chapter->getId())->toArray() - ); - return $data; - }, - $publication->getData('chapters') - ); - break; - case 'publicationFormats': - $values[$prop] = array_map( - function($publicationFormat) { - return $publicationFormat->_data; - }, - $publication->getData('publicationFormats') - ); - break; - case 'urlPublished': - $values[$prop] = $dispatcher->url( - $request, - ROUTE_PAGE, - $submissionContext->getData('urlPath'), - 'catalog', - 'book', - [$submission->getBestId(), 'version', $publication->getId()] - ); - break; - } - } - } - - /** - * Make additional validation checks - * - * @param $hookName string - * @param $args array [ - * @option array Validation errors already identified - * @option string One of the VALIDATE_ACTION_* constants - * @option array The props being validated - * @option array The locales accepted for this object - * @option string The primary locale for this object - * ] - */ - public function validatePublication($hookName, $args) { - $errors =& $args[0]; - $props = $args[2]; - - // Ensure that the specified series exists - if (isset($props['seriesId'])) { - $series = Application::get()->getSectionDAO()->getById($props['seriesId']); - if (!$series) { - $errors['seriesId'] = [__('publication.invalidSeries')]; - } - } - } - - /** - * Perform OMP-specific steps when adding a publication - * - * @param string $hookName - * @param array $args [ - * @option Publication - * @option Request - * ] - */ - public function addPublication($hookName, $args) { - $publication = $args[0]; - $request = $args[1]; - - // Create a thumbnail for the cover image - if ($publication->getData('coverImage')) { - - $submission = Services::get('submission')->get($publication->getData('submissionId')); - $submissionContext = $request->getContext(); - if ($submissionContext->getId() !== $submission->getData('contextId')) { - $submissionContext = Services::get('context')->get($submission->getData('contextId')); - } - - $supportedLocales = $submissionContext->getSupportedSubmissionLocales(); - foreach ($supportedLocales as $localeKey) { - if (!array_key_exists($localeKey, $publication->getData('coverImage'))) { - continue; - } - - import('classes.file.PublicFileManager'); - $publicFileManager = new \PublicFileManager(); - $coverImage = $publication->getData('coverImage', $localeKey); - $coverImageFilePath = $publicFileManager->getContextFilesPath($submissionContext->getId()) . '/' . $coverImage['uploadName']; - $this->makeThumbnail( - $coverImageFilePath, - $this->getThumbnailFileName($coverImage['uploadName']), - $submissionContext->getData('coverThumbnailsMaxWidth'), - $submissionContext->getData('coverThumbnailsMaxHeight') - ); - } - } - } - - /** - * Perform OMP-specific steps when editing a publication - * - * @param string $hookName - * @param array $args [ - * @option Publication The new publication details - * @option Publication The old publication details - * @option array The params with the edited values - * @option Request - * ] - */ - public function editPublication($hookName, $args) { - $newPublication = $args[0]; - $oldPublication = $args[1]; - $params = $args[2]; - - // Create or delete the thumbnail of a cover image - if (array_key_exists('coverImage', $params)) { - import('classes.file.PublicFileManager'); - $publicFileManager = new \PublicFileManager(); - $submission = Services::get('submission')->get($newPublication->getData('submissionId')); - - // Get the submission context - $submissionContext = \Application::get()->getRequest()->getContext(); - if ($submissionContext->getId() !== $submission->getData('contextId')) { - $submissionContext = Services::get('context')->get($submission->getData('contextId')); - } - - foreach ($params['coverImage'] as $localeKey => $value) { - - // Delete the thumbnail if the cover image has been deleted - if (is_null($value)) { - $oldCoverImage = $oldPublication->getData('coverImage', $localeKey); - if (!$oldCoverImage) { - continue; - } - - $coverImageFilePath = $publicFileManager->getContextFilesPath($submission->getData('contextId')) . '/' . $oldCoverImage['uploadName']; - if (!file_exists($coverImageFilePath)) { - $publicFileManager->removeContextFile($submission->getData('contextId'), $this->getThumbnailFileName($oldCoverImage['uploadName'])); - } - - // Otherwise generate a new thumbnail if a cover image exists - } else { - $newCoverImage = $newPublication->getData('coverImage', $localeKey); - if (!$newCoverImage) { - continue; - } - - $coverImageFilePath = $publicFileManager->getContextFilesPath($submission->getData('contextId')) . '/' . $newCoverImage['uploadName']; - $this->makeThumbnail( - $coverImageFilePath, - $this->getThumbnailFileName($newCoverImage['uploadName']), - $submissionContext->getData('coverThumbnailsMaxWidth'), - $submissionContext->getData('coverThumbnailsMaxHeight') - ); - } - } - } - } - - /** - * Copy OMP-specific objects when a new publication version is created - * - * @param $hookName string - * @param $args array [ - * @option Publication The new version of the publication - * @option Publication The old version of the publication - * @option Request - * ] - */ - public function versionPublication($hookName, $args) { - $newPublication =& $args[0]; - $oldPublication = $args[1]; - $request = $args[2]; - - // Publication Formats (and all associated objects) - $oldPublicationFormats = $oldPublication->getData('publicationFormats'); - $newSubmissionFiles = []; - foreach ($oldPublicationFormats as $oldPublicationFormat) { - $newPublicationFormat = clone $oldPublicationFormat; - $newPublicationFormat->setData('id', null); - $newPublicationFormat->setData('publicationId', $newPublication->getId()); - Application::getRepresentationDAO()->insertObject($newPublicationFormat); - - // Duplicate publication format metadata - $metadataDaos = ['IdentificationCodeDAO', 'MarketDAO', 'PublicationDateDAO', 'SalesRightsDAO']; - foreach ($metadataDaos as $metadataDao) { - $result = DAORegistry::getDAO($metadataDao)->getByPublicationFormatId($oldPublicationFormat->getId()); - while (!$result->eof()) { - $oldObject = $result->next(); - $newObject = clone $oldObject; - $newObject->setData('id', null); - $newObject->setData('publicationFormatId', $newPublicationFormat->getId()); - DAORegistry::getDAO($metadataDao)->insertObject($newObject); - } - } - - // Duplicate publication format files - $submissionFiles = Services::get('submissionFile')->getMany([ - 'submissionIds' => [$oldPublication->getData('submissionId')], - 'assocTypes' => [ASSOC_TYPE_REPRESENTATION], - 'assocIds' => [$oldPublicationFormat->getId()], - ]); - foreach ($submissionFiles as $submissionFile) { - $newSubmissionFile = clone $submissionFile; - $newSubmissionFile->setData('id', null); - $newSubmissionFile->setData('assocId', $newPublicationFormat->getId()); - $newSubmissionFile = Services::get('submissionFile')->add($newSubmissionFile, $request); - $newSubmissionFiles[] = $newSubmissionFile; - - $dependentFiles = Services::get('submissionFile')->getMany([ - 'fileStages' => [SUBMISSION_FILE_DEPENDENT], - 'assocTypes' => [ASSOC_TYPE_SUBMISSION_FILE], - 'assocIds' => [$submissionFile->getId()], - 'includeDependentFiles' => true, - ]); - foreach ($dependentFiles as $dependentFile) { - $newDependentFile = clone $dependentFile; - $newDependentFile->setData('id', null); - $newDependentFile->setData('assocId', $newSubmissionFile->getId()); - Services::get('submissionFile')->add($newDependentFile, $request); - } - } - } - - // Chapters (and all associated objects) - $oldAuthorsIterator = Services::get('author')->getMany(['publicationIds' => $oldPublication->getId()]); - $oldAuthors = iterator_to_array($oldAuthorsIterator); - $newAuthorsIterator = Services::get('author')->getMany(['publicationIds' => $newPublication->getId()]); - $newAuthors = iterator_to_array($newAuthorsIterator); - $result = DAORegistry::getDAO('ChapterDAO')->getByPublicationId($oldPublication->getId()); - while (!$result->eof()) { - $oldChapter = $result->next(); - $newChapter = clone $oldChapter; - $newChapter->setData('id', null); - $newChapter->setData('publicationId', $newPublication->getId()); - $newChapterId = DAORegistry::getDAO('ChapterDAO')->insertChapter($newChapter); - $newChapter = DAORegistry::getDAO('ChapterDAO')->getChapter($newChapterId); - - // Update file chapter associations for new files - foreach ($newSubmissionFiles as $newSubmissionFile) { - if ($newSubmissionFile->getChapterId() == $oldChapter->getId()) { - Services::get('submissionFile')->edit($newSubmissionFile, ['chapterId' => $newChapter->getId()], $request); - } - } - - // We need to link new authors to chapters. To do this, we need a way to - // link old authors to the new ones. We use seq property, which should be - // unique for each author to determine which new author is a copy of the - // old one. We then map the old chapter author associations to the new - // authors. - $oldChapterAuthors = DAORegistry::getDAO('ChapterAuthorDAO')->getAuthors($oldPublication->getId(), $oldChapter->getId())->toArray(); - foreach ($newAuthors as $newAuthor) { - foreach ($oldAuthors as $oldAuthor) { - if ($newAuthor->getData('seq') === $oldAuthor->getData('seq')) { - foreach ($oldChapterAuthors as $oldChapterAuthor) { - if ($oldChapterAuthor->getId() === $oldAuthor->getId()) { - DAORegistry::getDAO('ChapterAuthorDAO')->insertChapterAuthor( - $newAuthor->getId(), - $newChapter->getId(), - $newAuthor->getId() === $newPublication->getData('primaryContactId'), - $oldChapterAuthor->getData('seq') - ); - } - } - } - } - } - } - - $newPublication = $this->get($newPublication->getId()); - } - - /** - * Modify a publication before it is published - * - * @param $hookName string - * @param $args array [ - * @option Publication The new version of the publication - * @option Publication The old version of the publication - * ] - */ - public function publishPublicationBefore($hookName, $args) { - $newPublication = $args[0]; - $oldPublication = $args[1]; - - // If the publish date is in the future, set the status to scheduled - $datePublished = $oldPublication->getData('datePublished'); - if ($datePublished && strtotime($datePublished) > strtotime(\Core::getCurrentDate())) { - $newPublication->setData('status', STATUS_SCHEDULED); - } - } - - /** - * Fire events after a publication has been published - * - * @param $hookName string - * @param $args array [ - * @option Publication The new version of the publication - * @option Publication The old version of the publication - * @option Submission The publication's submission - * ] - */ - public function publishPublication($hookName, $args) { - $newPublication = $args[0]; - $submission = $args[2]; - - // If this is a new current publication (the "version of record"), then - // tombstones must be updated to reflect the new publication format entries - // in the OAI feed - if ($submission->getData('currentPublicationId') === $newPublication->getId()) { - $context = Application::get()->getRequest()->getContext(); - if (!$context || $context->getId() !== $submission->getData('contextId')) { - $context = Services::get('context')->get($submission->getData('contextId')); - } - - // Remove publication format tombstones for this publication - import('classes.publicationFormat.PublicationFormatTombstoneManager'); - $publicationFormatTombstoneMgr = new \PublicationFormatTombstoneManager(); - $publicationFormatTombstoneMgr->deleteTombstonesByPublicationId($newPublication->getId()); - - // Create publication format tombstones for any other published versions - foreach ($submission->getData('publications') as $publication) { - if ($publication->getId() !== $newPublication->getId() && $publication->getData('status') === STATUS_PUBLISHED) { - $publicationFormatTombstoneMgr->insertTombstonesByPublicationId($publication->getId(), $context); - } - } - } - - // Update notification - $request = \Application::get()->getRequest(); - $notificationMgr = new \NotificationManager(); - $notificationMgr->updateNotification( - $request, - array(NOTIFICATION_TYPE_APPROVE_SUBMISSION), - null, - ASSOC_TYPE_MONOGRAPH, - $newPublication->getData('submissionId') - ); - } - - /** - * Fire events after a publication has been unpublished - * - * @param $hookName string - * @param $args array [ - * @option Publication The new version of the publication - * @option Publication The old version of the publication - * @option Submission The publication's submission - * ] - */ - public function unpublishPublication($hookName, $args) { - $newPublication = $args[0]; - $oldPublication = $args[1]; - $submission = Services::get('submission')->get($newPublication->getData('submissionId')); - $submissionContext = Services::get('context')->get($submission->getData('contextId')); - - // Create tombstones for this publication - import('classes.publicationFormat.PublicationFormatTombstoneManager'); - $publicationFormatTombstoneMgr = new \PublicationFormatTombstoneManager(); - $publicationFormatTombstoneMgr->insertTombstonesByPublicationId($newPublication->getId(), $submissionContext); - - // Delete tombstones for the new current publication - $currentPublication = null; - foreach ($submission->getData('publications') as $publication) { - if ($publication->getId() === $submission->getData('currentPublicationId')) { - $currentPublication = $publication; - break; - } - } - if ($currentPublication->getData('status') === STATUS_PUBLISHED) { - $publicationFormatTombstoneMgr->deleteTombstonesByPublicationId($currentPublication->getId()); - } - - - // Update notification - $request = \Application::get()->getRequest(); - $notificationMgr = new \NotificationManager(); - $notificationMgr->updateNotification( - $request, - array(NOTIFICATION_TYPE_APPROVE_SUBMISSION), - null, - ASSOC_TYPE_MONOGRAPH, - $newPublication->getData('submissionId') - ); - } - - /** - * Delete OJS-specific objects before a publication is deleted - * - * @param $hookName string - * @param $args array [ - * @option Publication The publication being deleted - * ] - */ - public function deletePublicationBefore($hookName, $args) { - $publication = $args[0]; - $submission = Services::get('submission')->get($publication->getData('submissionId')); - $context = Services::get('context')->get($submission->getData('contextId')); - - // Publication Formats (and all related objects) - $publicationFormats = $publication->getData('publicationFormats'); - foreach ($publicationFormats as $publicationFormat) { - Services::get('publicationFormat')->deleteFormat($publicationFormat, $submission, $context); - } - - // Delete chapters and assigned chapter authors. - $chapters = DAORegistry::getDAO('ChapterDAO')->getByPublicationId($publication->getId()); - while ($chapter = $chapters->next()) { - // also removes Chapter Author and file associations - DAORegistry::getDAO('ChapterDAO')->deleteObject($chapter); - } - } - - /** - * Derive a thumbnail filename from the cover image filename - * - * book_1_1_cover.png --> book_1_1_cover_t.png - * - * @param string $fileName - * @return string The thumbnail filename - */ - public function getThumbnailFileName($fileName) { - $pathInfo = pathinfo($fileName); - return $pathInfo['filename'] . '_t.' . $pathInfo['extension']; - } - - /** - * Generate a thumbnail of an image - * - * @param string $filePath The full path and name of the file - * @param int $maxWidth The maximum allowed width of the thumbnail - * @param int $maxHeight The maximum allowed height of the thumbnail - */ - public function makeThumbnail($filePath, $thumbFileName, $maxWidth, $maxHeight) { - $pathParts = pathinfo($filePath); - $thumbFilePath = $pathParts['dirname'] . '/' . $thumbFileName; - - $cover = null; - switch ($pathParts['extension']) { - case 'jpg': $cover = imagecreatefromjpeg($filePath); break; - case 'png': $cover = imagecreatefrompng($filePath); break; - case 'gif': $cover = imagecreatefromgif($filePath); break; - case 'webp': $cover = imagecreatefromwebp($filePath); break; - case 'svg': $cover = copy($filePath, $thumbFilePath); break; - } - if (!isset($cover)) { - throw new \Exception('Can not build thumbnail because the file was not found or the file extension was not recognized.'); - } - if ($pathParts['extension'] != 'svg') { - // Calculate the scaling ratio for each dimension. - $originalSizeArray = getimagesize($filePath); - $xRatio = min(1, $maxWidth / $originalSizeArray[0]); - $yRatio = min(1, $maxHeight / $originalSizeArray[1]); - - // Choose the smallest ratio and create the target. - $ratio = min($xRatio, $yRatio); - - $thumbWidth = round($ratio * $originalSizeArray[0]); - $thumbHeight = round($ratio * $originalSizeArray[1]); - $thumb = imagecreatetruecolor($thumbWidth, $thumbHeight); - imagecopyresampled($thumb, $cover, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $originalSizeArray[0], $originalSizeArray[1]); - - switch ($pathParts['extension']) { - case 'jpg': imagejpeg($thumb, $thumbFilePath); break; - case 'png': imagepng($thumb, $thumbFilePath); break; - case 'gif': imagegif($thumb, $thumbFilePath); break; - case 'webp': imagewebp($thumb, $thumbFilePath); break; - } - - imagedestroy($thumb); - } - - } -} diff --git a/classes/services/StatsEditorialService.inc.php b/classes/services/StatsEditorialService.inc.php deleted file mode 100644 index 036af8ca4eb..00000000000 --- a/classes/services/StatsEditorialService.inc.php +++ /dev/null @@ -1,30 +0,0 @@ -filterBySections($args['seriesIds']); - } - return $statsQB; - } -} \ No newline at end of file diff --git a/classes/services/StatsEditorialService.php b/classes/services/StatsEditorialService.php new file mode 100644 index 00000000000..691b9e70651 --- /dev/null +++ b/classes/services/StatsEditorialService.php @@ -0,0 +1,55 @@ +filterBySections($args['seriesIds']); + } + return $statsQB; + } + + protected function getAcceptedDecisions(): array + { + return [ + Decision::ACCEPT, + Decision::ACCEPT_INTERNAL, + Decision::SKIP_EXTERNAL_REVIEW, + Decision::SEND_TO_PRODUCTION, + ]; + } + + protected function getDeclinedDecisions(): array + { + return [ + Decision::DECLINE, + Decision::INITIAL_DECLINE, + Decision::DECLINE_INTERNAL, + ]; + } +} diff --git a/classes/services/StatsPublicationService.php b/classes/services/StatsPublicationService.php new file mode 100644 index 00000000000..9ca88b0399e --- /dev/null +++ b/classes/services/StatsPublicationService.php @@ -0,0 +1,20 @@ +filterBySections($args['seriesIds']); - } - return $statsQB; - } -} \ No newline at end of file diff --git a/classes/services/SubmissionFileService.inc.php b/classes/services/SubmissionFileService.inc.php deleted file mode 100644 index 15509c4cbcb..00000000000 --- a/classes/services/SubmissionFileService.inc.php +++ /dev/null @@ -1,48 +0,0 @@ -filterByCategories($requestArgs['categoryIds']); - } - - if (!empty($requestArgs['seriesIds'])) { - $submissionQB->filterBySeries($requestArgs['seriesIds']); - } - - if (!empty($requestArgs['orderByFeatured'])) { - $submissionQB->orderByFeatured(); - } - - return $submissionQB; - } - - /** - * Add app-specific query statements to the list get query - * - * @param $hookName string - * @param $args array [ - * @option object $queryObject - * @option QueryBuilders\SubmissionQueryBuilder $queryBuilder - * ] - * - * @return object - */ - public function modifySubmissionQueryObject($hookName, $args) { - $queryObject =& $args[0]; - $queryBuilder = $args[1]; - - $queryObject = $queryBuilder->appGet($queryObject); - - return true; - } - - /** - * Add app-specific properties to submissions - * - * @param $hookName string Submission::getBackendListProperties::properties - * @param $args array [ - * @option $props array Existing properties - * @option $submission Submission The associated submission - * @option $args array Request args - * ] - * - * @return array - */ - public function modifyBackendListPropertyValues($hookName, $args) { - $props =& $args[0]; - - $props[] = 'series'; - $props[] = 'category'; - $props[] = 'featured'; - $props[] = 'newRelease'; - } - - /** - * Add app-specific property values to a submission - * - * @param $hookName string Submission::getProperties::values - * @param $args array [ - * @option $values array Key/value store of property values - * @option $submission Submission The associated submission - * @option $props array Requested properties - * @option $args array Request args - * ] - * - * @return array - */ - public function modifyPropertyValues($hookName, $args) { - $values =& $args[0]; - $submission = $args[1]; - $props = $args[2]; - $propertyArgs = $args[3]; - $request = $args[3]['request']; - $context = $request->getContext(); - $dispatcher = $request->getDispatcher(); - - foreach ($props as $prop) { - switch ($prop) { - case 'urlPublished': - $values[$prop] = $dispatcher->url( - $request, - ROUTE_PAGE, - $context->getPath(), - 'catalog', - 'book', - $submission->getBestId() - ); - break; - case 'featured': - $featureDao = \DAORegistry::getDAO('FeatureDAO'); - $values[$prop] = $featureDao->getFeaturedAll($submission->getId()); - break; - case 'newRelease': - $newReleaseDao = \DAORegistry::getDAO('NewReleaseDAO'); - $values[$prop] = $newReleaseDao->getNewReleaseAll($submission->getId()); - break; - } - } - } -} diff --git a/classes/services/queryBuilders/ContextQueryBuilder.inc.php b/classes/services/queryBuilders/ContextQueryBuilder.inc.php deleted file mode 100644 index 0e4c1a9c3b5..00000000000 --- a/classes/services/queryBuilders/ContextQueryBuilder.inc.php +++ /dev/null @@ -1,27 +0,0 @@ -seriesIds = $seriesIds; - return $this; - } - - /** - * Implement app-specific ordering options for catalog - * - * Publication date, Title or Series position, with featured items first - * - * @param string $column - * @param string $direction - * - * @return \App\Services\QueryBuilders\SubmissionQueryBuilder - */ - public function orderBy($column, $direction = 'DESC') { - // Bring in orderby constants - import('classes.submission.SubmissionDAO'); - switch ($column) { - case ORDERBY_SERIES_POSITION: - $this->orderColumn = 'po.series_position'; - break; - default: - return parent::orderBy($column, $direction); - } - $this->orderDirection = $direction; - - return $this; - } - - /** - * Order featured items first - * - * @return \App\Services\QueryBuilders\SubmissionQueryBuilder - */ - public function orderByFeatured() { - $this->orderByFeaturedSeq = true; - } - - /** - * Execute additional actions for app-specific query objects - * - * @param object Query object - * @param SubmissionQueryBuilder Query object - * @return object Query object - */ - public function appGet($q) { - - if (!empty($this->seriesIds)) { - $q->leftJoin('publications as publication_s', 's.current_publication_id', '=', 'publication_s.publication_id'); - $q->whereIn('publication_s.series_id', $this->seriesIds); - } - - // order by series position - if ($this->orderColumn === 'po.series_position') { - $this->columns[] = 'po.series_position'; - $q->leftJoin('publications as po', 's.current_publication_id', '=', 'po.publication_id'); - $q->groupBy('po.series_position'); - } - - if (!empty($this->orderByFeaturedSeq)) { - if (!empty($this->seriesIds)) { - $assocType = ASSOC_TYPE_SERIES; - $assocIds = $this->seriesIds; - } elseif (!empty($this->categoryIds)) { - $assocType = ASSOC_TYPE_CATEGORY; - $assocIds = $this->categoryIds; - } else { - $assocType = ASSOC_TYPE_PRESS; - $assocIds = [$this->contextId ? $this->contextId : CONTEXT_ID_NONE]; - } - $q->leftJoin('features as sf', function($join) use ($assocType, $assocIds) { - $join->on('s.submission_id', '=', 'sf.submission_id') - ->on('sf.assoc_type', '=', Capsule::raw($assocType)); - foreach ($assocIds as $assocId) { - $join->on('sf.assoc_id', '=', Capsule::raw(intval($assocId))); - } - }); - - // Featured sorting should be the first sort parameter. We sort by - // the seq parameter, with null values last - $q->groupBy(Capsule::raw('sf.seq')); - $this->columns[] = 'sf.seq'; - $this->columns[] = Capsule::raw('case when sf.seq is null then 1 else 0 end'); - array_unshift( - $q->orders, - array('type' => 'raw', 'sql' => 'case when sf.seq is null then 1 else 0 end'), - array('column' => 'sf.seq', 'direction' => 'ASC') - ); - } - - return $q; - } -} diff --git a/classes/spotlight/Spotlight.inc.php b/classes/spotlight/Spotlight.inc.php deleted file mode 100644 index a75abea8071..00000000000 --- a/classes/spotlight/Spotlight.inc.php +++ /dev/null @@ -1,167 +0,0 @@ -getData('assocId'); - } - - /** - * Set assoc ID for this spotlight. - * @param $assocId int - */ - function setAssocId($assocId) { - return $this->setData('assocId', $assocId); - } - - /** - * Get assoc type for this spotlight. - * @return int - */ - function getAssocType() { - return $this->getData('assocType'); - } - - /** - * Set assoc type for this spotlight. - * @param $assocType int - */ - function setAssocType($assocType) { - return $this->setData('assocType', $assocType); - } - - /** - * Get the press id for this spotlight. - * @return int - */ - function getPressId() { - return $this->getData('pressId'); - } - - /** - * Set press Id for this spotlight. - * @param $pressId int - */ - function setPressId($pressId) { - return $this->setData('pressId', $pressId); - } - - /** - * Get localized spotlight title - * @return string - */ - function getLocalizedTitle() { - return $this->getLocalizedData('title'); - } - - /** - * Get spotlight title. - * @param $locale - * @return string - */ - function getTitle($locale) { - return $this->getData('title', $locale); - } - - /** - * Set spotlight title. - * @param $title string - * @param $locale string - */ - function setTitle($title, $locale) { - return $this->setData('title', $title, $locale); - } - - /** - * Get localized full description - * @return string - */ - function getLocalizedDescription() { - return $this->getLocalizedData('description'); - } - - /** - * Get spotlight description. - * @param $locale string - * @return string - */ - function getDescription($locale) { - return $this->getData('description', $locale); - } - - /** - * Set spotlight description. - * @param $description string - * @param $locale string - */ - function setDescription($description, $locale) { - return $this->setData('description', $description, $locale); - } - - /** - * Fetch a plain text (localized) string for this Spotlight type - * @return string - */ - function getLocalizedType() { - $spotlightTypes = array( - SPOTLIGHT_TYPE_BOOK => __('grid.content.spotlights.form.type.book'), - SPOTLIGHT_TYPE_SERIES => __('series.series'), - ); - - return $spotlightTypes[$this->getAssocType()]; - } - - /** - * Returns the associated item with this spotlight. - * @return DataObject - */ - function getSpotlightItem() { - switch ($this->getAssocType()) { - case SPOTLIGHT_TYPE_BOOK: - return Services::get('submission')->get($this->getAssocId()); - break; - case SPOTLIGHT_TYPE_SERIES: - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - return $seriesDao->getById($this->getAssocId(), $this->getPressId()); - break; - default: - assert(false); - break; - } - } -} - - diff --git a/classes/spotlight/Spotlight.php b/classes/spotlight/Spotlight.php new file mode 100644 index 00000000000..5fecb2874b9 --- /dev/null +++ b/classes/spotlight/Spotlight.php @@ -0,0 +1,206 @@ +getData('assocId'); + } + + /** + * Set assoc ID for this spotlight. + * + * @param int $assocId + */ + public function setAssocId($assocId) + { + return $this->setData('assocId', $assocId); + } + + /** + * Get assoc type for this spotlight. + * + * @return int + */ + public function getAssocType() + { + return $this->getData('assocType'); + } + + /** + * Set assoc type for this spotlight. + * + * @param int $assocType + */ + public function setAssocType($assocType) + { + return $this->setData('assocType', $assocType); + } + + /** + * Get the press id for this spotlight. + * + * @return int + */ + public function getPressId() + { + return $this->getData('pressId'); + } + + /** + * Set press Id for this spotlight. + * + * @param int $pressId + */ + public function setPressId($pressId) + { + return $this->setData('pressId', $pressId); + } + + /** + * Get localized spotlight title + * + * @return string + */ + public function getLocalizedTitle() + { + return $this->getLocalizedData('title'); + } + + /** + * Get spotlight title. + * + * @param string $locale + * + * @return string + */ + public function getTitle($locale) + { + return $this->getData('title', $locale); + } + + /** + * Set spotlight title. + * + * @param string $title + * @param string $locale + */ + public function setTitle($title, $locale) + { + return $this->setData('title', $title, $locale); + } + + /** + * Get localized full description + * + * @return string + */ + public function getLocalizedDescription() + { + return $this->getLocalizedData('description'); + } + + /** + * Get spotlight description. + * + * @param string $locale + * + * @return string + */ + public function getDescription($locale) + { + return $this->getData('description', $locale); + } + + /** + * Set spotlight description. + * + * @param string $description + * @param string $locale + */ + public function setDescription($description, $locale) + { + return $this->setData('description', $description, $locale); + } + + /** + * Fetch a plain text (localized) string for this Spotlight type + * + * @return string + */ + public function getLocalizedType() + { + $spotlightTypes = [ + self::SPOTLIGHT_TYPE_BOOK => __('grid.content.spotlights.form.type.book'), + self::SPOTLIGHT_TYPE_SERIES => __('series.series'), + ]; + + return $spotlightTypes[$this->getAssocType()]; + } + + /** + * Returns the associated item with this spotlight. + * + * @return Section|Submission|null + */ + public function getSpotlightItem() + { + switch ($this->getAssocType()) { + case self::SPOTLIGHT_TYPE_BOOK: + return Repo::submission()->get($this->getAssocId()); + case self::SPOTLIGHT_TYPE_SERIES: + return Repo::section()->get($this->getAssocId(), $this->getPressId()); + default: + assert(false); + break; + } + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\spotlight\Spotlight', '\Spotlight'); + foreach ([ + 'SPOTLIGHT_TYPE_BOOK', + 'SPOTLIGHT_TYPE_SERIES', + 'MAX_SPOTLIGHTS_VISIBLE', + ] as $constantName) { + define($constantName, constant('\Spotlight::' . $constantName)); + } +} diff --git a/classes/spotlight/SpotlightDAO.inc.php b/classes/spotlight/SpotlightDAO.inc.php deleted file mode 100644 index 4e8bed9bcd5..00000000000 --- a/classes/spotlight/SpotlightDAO.inc.php +++ /dev/null @@ -1,321 +0,0 @@ -retrieve( - 'SELECT * FROM spotlights WHERE spotlight_id = ?', - [(int) $spotlightId] - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Retrieve spotlight Assoc ID by spotlight ID. - * @param $spotlightId int - * @return int - */ - function getSpotlightAssocId($spotlightId) { - $result = $this->retrieve( - 'SELECT assoc_id FROM spotlights WHERE spotlight_id = ?', - [(int) $spotlightId] - ); - $row = $result->current(); - return $row ? $row->assoc_id : 0; - } - - /** - * Retrieve spotlight Assoc ID by spotlight ID. - * @param $spotlightId int - * @return int - */ - function getSpotlightAssocType($spotlightId) { - $result = $this->retrieve( - 'SELECT assoc_type FROM spotlights WHERE spotlight_id = ?', - [(int) $spotlightId] - ); - $row = $result->current(); - return $row ? $row->assoc_type : 0; - } - - /** - * Get the list of localized field names for this table - * @return array - */ - function getLocaleFieldNames() { - return ['title', 'description']; - } - - /** - * Get a new data object. - * @return DataObject - */ - function newDataObject() { - return new Spotlight(); - } - - /** - * Internal function to return an Spotlight object from a row. - * @param $row array - * @return Spotlight - */ - function _fromRow($row) { - $spotlight = $this->newDataObject(); - $spotlight->setId($row['spotlight_id']); - $spotlight->setAssocType($row['assoc_type']); - $spotlight->setAssocId($row['assoc_id']); - $spotlight->setPressId($row['press_id']); - - $this->getDataObjectSettings('spotlight_settings', 'spotlight_id', $row['spotlight_id'], $spotlight); - - return $spotlight; - } - - /** - * Update the settings for this object - * @param $spotlight object - */ - function updateLocaleFields($spotlight) { - $this->updateDataObjectSettings( - 'spotlight_settings', - $spotlight, - ['spotlight_id' => $spotlight->getId()] - ); - } - - /** - * Insert a new Spotlight. - * @param $spotlight Spotlight - * @return int - */ - function insertObject($spotlight) { - $this->update( - 'INSERT INTO spotlights - (assoc_type, assoc_id, press_id) - VALUES - (?, ?, ?)', - [ - (int) $spotlight->getAssocType(), - (int) $spotlight->getAssocId(), - (int) $spotlight->getPressId(), - ] - ); - $spotlight->setId($this->getInsertId()); - $this->updateLocaleFields($spotlight); - return $spotlight->getId(); - } - - /** - * Update an existing spotlight. - * @param $spotlight Spotlight - * @return boolean - */ - function updateObject($spotlight) { - $returner = $this->update( - 'UPDATE spotlights - SET - assoc_type = ?, - assoc_id = ?, - press_id = ? - WHERE spotlight_id = ?', - [ - (int) $spotlight->getAssocType(), - (int) $spotlight->getAssocId(), - (int) $spotlight->getPressId(), - (int) $spotlight->getId() - ] - ); - $this->updateLocaleFields($spotlight); - return $returner; - } - - /** - * Delete a spotlight. - * @param $spotlight Spotlight - * @return boolean - */ - function deleteObject($spotlight) { - return $this->deleteById($spotlight->getId()); - } - - /** - * Delete an spotlight by spotlight ID. - * @param $spotlightId int - */ - function deleteById($spotlightId) { - $this->update('DELETE FROM spotlight_settings WHERE spotlight_id = ?', [(int) $spotlightId]); - $this->update('DELETE FROM spotlights WHERE spotlight_id = ?', [(int) $spotlightId]); - } - - /** - * Delete spotlights by spotlight type ID. - * @param $typeId int - * @return boolean - */ - function deleteByTypeId($typeId) { - $spotlights = $this->getByTypeId($typeId); - while (($spotlight = $spotlights->next())) { - $this->deleteObject($spotlight); - } - } - - /** - * Delete spotlights by Assoc ID - * @param $assocType int - * @param $assocId int - */ - function deleteByAssoc($assocType, $assocId) { - $spotlights = $this->getByAssocId($assocType, $assocId); - while ($spotlight = $spotlights->next()) { - $this->deleteById($spotlight->getId()); - } - } - - /** - * Retrieve an array of spotlights matching a press id. - * @param $pressId int - * @return array Array containing matching Spotlights - */ - function getByPressId($pressId, $rangeInfo = null) { - $result = $this->retrieveRange( - 'SELECT * - FROM spotlights - WHERE press_id = ? - ORDER BY spotlight_id DESC', - [(int) $pressId], - $rangeInfo - ); - $returner = []; - foreach ($result as $row) { - $spotlight = $this->_fromRow((array) $row); - if ($spotlight->getSpotlightItem()) { - $returner[$spotlight->getId()] = $spotlight; - } - } - return $returner; - } - - /** - * Retrieve a random spotlight matching a press id. - * @param $pressId int - * @param $quantity int (optional) If more than one is needed, - * specify here. - * @return array or null - */ - function getRandomByPressId($pressId, $quantity = 1) { - $spotlights = array_values($this->getByPressId($pressId)); - $returner = array(); - if (count($spotlights) > 0) { - if (count($spotlights) <= $quantity) { - // Return the ones that we have. - $returner = $spotlights; - } else { - // Get the random spotlights. - for($quantity; $quantity > 0; $quantity--) { - $randNumber = rand(0, count($spotlights) - 1); - $returner[] = $spotlights[$randNumber]; - unset($spotlights[$randNumber]); - // Reset spotlights array index. - $spotlights = array_values($spotlights); - } - } - } - - if (count($returner) == 0) { - $returner = null; - } - - return $returner; - } - - /** - * Retrieve an array of spotlights matching a particular assoc ID. - * @param $assocType int - * @param $assocId int - * @return object DAOResultFactory containing matching Spotlights - */ - function getByAssoc($assocType, $assocId, $rangeInfo = null) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT * - FROM spotlights - WHERE assoc_type = ? AND assoc_id = ? - ORDER BY spotlight_id DESC', - [(int) $assocType, (int) $assocId], - $rangeInfo - ), - $this, - '_fromRow' - ); - } - - /** - * Retrieve an array of numSpotlights spotlights matching a particular Assoc ID. - * @param $assocType int - * @return object DAOResultFactory containing matching Spotlights - */ - function getNumSpotlightsByAssoc($assocType, $assocId, $rangeInfo = null) { - return new DAOResultFactory( - $this->retrieveRange( - 'SELECT * - FROM spotlights - WHERE assoc_type = ? - AND assoc_id = ? - ORDER BY spotlight_id DESC', - [(int) $assocType, (int) $assocId], - $rangeInfo - ), - $this, - '_fromRow' - ); - } - - /** - * Retrieve most recent spotlight by Assoc ID. - * @param $assocType int - * @return Spotlight|null - */ - function getMostRecentSpotlightByAssoc($assocType, $assocId) { - $result = $this->retrieve( - 'SELECT * - FROM spotlights - WHERE assoc_type = ? - AND assoc_id = ? - ORDER BY spotlight_id DESC LIMIT 1', - [(int) $assocType, (int) $assocId] - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Get the ID of the last inserted spotlight. - * @return int - */ - function getInsertId() { - return $this->_getInsertId('spotlights', 'spotlight_id'); - } -} - - diff --git a/classes/spotlight/SpotlightDAO.php b/classes/spotlight/SpotlightDAO.php new file mode 100644 index 00000000000..f99287a521a --- /dev/null +++ b/classes/spotlight/SpotlightDAO.php @@ -0,0 +1,342 @@ +retrieve( + 'SELECT * FROM spotlights WHERE spotlight_id = ?', + [(int) $spotlightId] + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } + + /** + * Retrieve spotlight Assoc ID by spotlight ID. + * + * @param int $spotlightId + * + * @return int + */ + public function getSpotlightAssocId($spotlightId) + { + $result = $this->retrieve( + 'SELECT assoc_id FROM spotlights WHERE spotlight_id = ?', + [(int) $spotlightId] + ); + $row = $result->current(); + return $row ? $row->assoc_id : 0; + } + + /** + * Retrieve spotlight Assoc ID by spotlight ID. + * + * @param int $spotlightId + * + * @return int + */ + public function getSpotlightAssocType($spotlightId) + { + $result = $this->retrieve( + 'SELECT assoc_type FROM spotlights WHERE spotlight_id = ?', + [(int) $spotlightId] + ); + $row = $result->current(); + return $row ? $row->assoc_type : 0; + } + + /** + * Get the list of localized field names for this table + * + * @return array + */ + public function getLocaleFieldNames() + { + return ['title', 'description']; + } + + /** + * Get a new data object. + * + * @return Spotlight + */ + public function newDataObject() + { + return new Spotlight(); + } + + /** + * Internal function to return an Spotlight object from a row. + * + * @param array $row + * + * @return Spotlight + */ + public function _fromRow($row) + { + $spotlight = $this->newDataObject(); + $spotlight->setId($row['spotlight_id']); + $spotlight->setAssocType($row['assoc_type']); + $spotlight->setAssocId($row['assoc_id']); + $spotlight->setPressId($row['press_id']); + + $this->getDataObjectSettings('spotlight_settings', 'spotlight_id', $row['spotlight_id'], $spotlight); + + return $spotlight; + } + + /** + * Update the settings for this object + * + * @param object $spotlight + */ + public function updateLocaleFields($spotlight) + { + $this->updateDataObjectSettings( + 'spotlight_settings', + $spotlight, + ['spotlight_id' => $spotlight->getId()] + ); + } + + /** + * Insert a new Spotlight. + * + * @param Spotlight $spotlight + * + * @return int + */ + public function insertObject($spotlight) + { + $this->update( + 'INSERT INTO spotlights + (assoc_type, assoc_id, press_id) + VALUES + (?, ?, ?)', + [ + (int) $spotlight->getAssocType(), + (int) $spotlight->getAssocId(), + (int) $spotlight->getPressId(), + ] + ); + $spotlight->setId($this->getInsertId()); + $this->updateLocaleFields($spotlight); + return $spotlight->getId(); + } + + /** + * Update an existing spotlight. + * + * @param Spotlight $spotlight + * + * @return bool + */ + public function updateObject($spotlight) + { + $returner = $this->update( + 'UPDATE spotlights + SET + assoc_type = ?, + assoc_id = ?, + press_id = ? + WHERE spotlight_id = ?', + [ + (int) $spotlight->getAssocType(), + (int) $spotlight->getAssocId(), + (int) $spotlight->getPressId(), + (int) $spotlight->getId() + ] + ); + $this->updateLocaleFields($spotlight); + return $returner; + } + + /** + * Delete a spotlight. + * + * @param Spotlight $spotlight + */ + public function deleteObject($spotlight) + { + return $this->deleteById($spotlight->getId()); + } + + /** + * Delete an spotlight by spotlight ID. + * + * @param int $spotlightId + */ + public function deleteById($spotlightId) + { + $this->update('DELETE FROM spotlight_settings WHERE spotlight_id = ?', [(int) $spotlightId]); + $this->update('DELETE FROM spotlights WHERE spotlight_id = ?', [(int) $spotlightId]); + } + + /** + * Retrieve an array of spotlights matching a press id. + * + * @param int $pressId + * @param ?DBResultRange $rangeInfo + * + * @return array Array containing matching Spotlights + */ + public function getByPressId($pressId, $rangeInfo = null) + { + $result = $this->retrieveRange( + 'SELECT * + FROM spotlights + WHERE press_id = ? + ORDER BY spotlight_id DESC', + [(int) $pressId], + $rangeInfo + ); + $returner = []; + foreach ($result as $row) { + $spotlight = $this->_fromRow((array) $row); + if ($spotlight->getSpotlightItem()) { + $returner[$spotlight->getId()] = $spotlight; + } + } + return $returner; + } + + /** + * Retrieve a random spotlight matching a press id. + * + * @param int $pressId + * @param int $quantity (optional) If more than one is needed, + * specify here. + * + * @return array or null + */ + public function getRandomByPressId($pressId, $quantity = 1) + { + $spotlights = array_values($this->getByPressId($pressId)); + $returner = []; + if (count($spotlights) > 0) { + if (count($spotlights) <= $quantity) { + // Return the ones that we have. + $returner = $spotlights; + } else { + // Get the random spotlights. + for ($quantity; $quantity > 0; $quantity--) { + $randNumber = rand(0, count($spotlights) - 1); + $returner[] = $spotlights[$randNumber]; + unset($spotlights[$randNumber]); + // Reset spotlights array index. + $spotlights = array_values($spotlights); + } + } + } + + if (count($returner) == 0) { + $returner = null; + } + + return $returner; + } + + /** + * Retrieve an array of spotlights matching a particular assoc ID. + * + * @param int $assocType + * @param int $assocId + * @param ?DBResultRange $rangeInfo + * + * @return DAOResultFactory containing matching Spotlights + */ + public function getByAssoc($assocType, $assocId, $rangeInfo = null) + { + return new DAOResultFactory( + $this->retrieveRange( + 'SELECT * + FROM spotlights + WHERE assoc_type = ? AND assoc_id = ? + ORDER BY spotlight_id DESC', + [(int) $assocType, (int) $assocId], + $rangeInfo + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve an array of numSpotlights spotlights matching a particular Assoc ID. + * + * @param int $assocType + * @param ?DBResultRange $rangeInfo + * + * @return DAOResultFactory containing matching Spotlights + */ + public function getNumSpotlightsByAssoc($assocType, $assocId, $rangeInfo = null) + { + return new DAOResultFactory( + $this->retrieveRange( + 'SELECT * + FROM spotlights + WHERE assoc_type = ? + AND assoc_id = ? + ORDER BY spotlight_id DESC', + [(int) $assocType, (int) $assocId], + $rangeInfo + ), + $this, + '_fromRow' + ); + } + + /** + * Retrieve most recent spotlight by Assoc ID. + * + * @param int $assocType + * + * @return Spotlight|null + */ + public function getMostRecentSpotlightByAssoc($assocType, $assocId) + { + $result = $this->retrieve( + 'SELECT * + FROM spotlights + WHERE assoc_type = ? + AND assoc_id = ? + ORDER BY spotlight_id DESC LIMIT 1', + [(int) $assocType, (int) $assocId] + ); + $row = $result->current(); + return $row ? $this->_fromRow((array) $row) : null; + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\spotlight\SpotlightDAO', '\SpotlightDAO'); +} diff --git a/classes/statistics/StatisticsHelper.inc.php b/classes/statistics/StatisticsHelper.inc.php deleted file mode 100644 index 9d5de27f201..00000000000 --- a/classes/statistics/StatisticsHelper.inc.php +++ /dev/null @@ -1,61 +0,0 @@ - __('context.context'), - ASSOC_TYPE_SERIES => __('series.series'), - ASSOC_TYPE_MONOGRAPH => __('submission.monograph'), - ASSOC_TYPE_PUBLICATION_FORMAT => __('grid.catalogEntry.publicationFormatType') - ); - - return $objectTypes; - } - -} - - diff --git a/classes/statistics/StatisticsHelper.php b/classes/statistics/StatisticsHelper.php new file mode 100644 index 00000000000..3c2d10cbb3f --- /dev/null +++ b/classes/statistics/StatisticsHelper.php @@ -0,0 +1,58 @@ + $entryData->chapterId] + ); + } + + /** + * Remove Unique Clicks for book and chapter items + * If multiple transactions represent the same item and occur in the same user-sessions, only one unique activity MUST be counted for that item. + * Unique book item is a submission (with chapter ID = NULL). + * Unique chapter item is a chapter. + * A user session is defined by the combination of IP address + user agent + transaction date + hour of day. + * Only the last unique activity will be retained (and thus counted), all the other will be removed. + * + * See https://www.projectcounter.org/code-of-practice-five-sections/7-processing-rules-underlying-counter-reporting-data/#counting + */ + public function compileBookItemUniqueClicks(string $loadId): void + { + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + DB::statement( + " + DELETE FROM {$this->table} usui + WHERE EXISTS ( + SELECT * FROM ( + SELECT 1 FROM {$this->table} usuit + WHERE usui.load_id = ? AND usuit.load_id = usui.load_id AND + usuit.context_id = usui.context_id AND + usuit.ip = usui.ip AND + usuit.user_agent = usui.user_agent AND + usuit.submission_id = usui.submission_id AND + usuit.chapter_id IS NULL AND usui.chapter_id IS NULL AND + EXTRACT(HOUR FROM usuit.date) = EXTRACT(HOUR FROM usui.date) AND + usui.line_number < usuit.line_number + ) AS tmp + ) + ", + [$loadId] + ); + } else { + DB::statement( + " + DELETE FROM usui USING {$this->table} usui + INNER JOIN {$this->table} usuit ON ( + usuit.load_id = usui.load_id AND + usuit.context_id = usui.context_id AND + usuit.ip = usui.ip AND + usuit.user_agent = usui.user_agent AND + usuit.submission_id = usui.submission_id + ) + WHERE usui.load_id = ? AND + usuit.chapter_id IS NULL AND usui.chapter_id IS NULL AND + TIMESTAMPDIFF(HOUR, usui.date, usuit.date) = 0 AND + usui.line_number < usuit.line_number + ", + [$loadId] + ); + } + } + public function compileChapterItemUniqueClicks(string $loadId): void + { + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + DB::statement( + " + DELETE FROM {$this->table} usui + WHERE EXISTS ( + SELECT * FROM ( + SELECT 1 FROM {$this->table} usuit + WHERE usuit.load_id = ? AND usuit.load_id = usui.load_id AND + usuit.context_id = usui.context_id AND + usuit.ip = usui.ip AND + usuit.user_agent = usui.user_agent AND + usuit.submission_id = usui.submission_id AND + usuit.chapter_id = usui.chapter_id AND usuit.chapter_id IS NOT NULL AND + EXTRACT(HOUR FROM usuit.date) = EXTRACT(HOUR FROM usui.date) AND + usui.line_number < usuit.line_number + ) AS tmp + ) + ", + [$loadId] + ); + } else { + DB::statement( + " + DELETE FROM usui USING {$this->table} usui + INNER JOIN {$this->table} usuit ON ( + usuit.load_id = usui.load_id AND + usuit.context_id = usui.context_id AND + usuit.ip = usui.ip AND + usuit.user_agent = usui.user_agent AND + usuit.submission_id = usui.submission_id AND + usuit.chapter_id = usui.chapter_id + ) + WHERE usuit.load_id = ? AND + usuit.chapter_id IS NOT NULL AND + TIMESTAMPDIFF(HOUR, usui.date, usuit.date) = 0 AND + usui.line_number < usuit.line_number + ", + [$loadId] + ); + } + } + + /** + * Load unique COUNTER item (book and chapter) investigations + */ + public function compileCounterSubmissionDailyMetrics(string $loadId): void + { + // construct metric_book_investigations_unique upsert + $metricBookInvestigationsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, 0 as metric_book_investigations, count(*) as metric, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} + WHERE load_id = ? AND submission_id IS NOT NULL AND chapter_id IS NULL + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricBookInvestigationsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_book_investigations_unique = excluded.metric_book_investigations_unique; + '; + } else { + $metricBookInvestigationsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_book_investigations_unique = metric; + '; + } + DB::statement($metricBookInvestigationsUniqueUpsertSql, [$loadId]); + + // construct metric_chapter_investigations_unique upsert + $metricChapterInvestigationsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, count(*) as metric, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} + WHERE load_id = ? AND submission_id IS NOT NULL AND chapter_id IS NOT NULL + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricChapterInvestigationsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_chapter_investigations_unique = excluded.metric_chapter_investigations_unique; + '; + } else { + $metricChapterInvestigationsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_chapter_investigations_unique = metric; + '; + } + DB::statement($metricChapterInvestigationsUniqueUpsertSql, [$loadId]); + } + + /** + * Load unique institutional COUNTER item (book and chapter9 investigations + */ + public function compileCounterSubmissionInstitutionDailyMetrics(string $loadId): void + { + // construct metric_book_investigations_unique upsert + $metricBookInvestigationsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT usui.load_id, usui.context_id, usui.submission_id, DATE(usui.date) as date, usi.institution_id, 0 as metric_book_investigations, count(*) as metric, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} usui + JOIN usage_stats_institution_temporary_records usi on (usi.load_id = usui.load_id AND usi.line_number = usui.line_number) + WHERE usui.load_id = ? AND submission_id IS NOT NULL AND chapter_id IS NULL AND usi.institution_id = ? + GROUP BY usui.load_id, usui.context_id, usui.submission_id, DATE(usui.date), usi.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricBookInvestigationsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_book_investigations_unique = excluded.metric_book_investigations_unique; + '; + } else { + $metricBookInvestigationsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_book_investigations_unique = metric; + '; + } + + // construct metric_chapter_investigations_unique upsert + $metricChapterInvestigationsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT usuci.load_id, usuci.context_id, usuci.submission_id, DATE(usuci.date) as date, usi.institution_id, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, count(*) as metric, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} usuci + JOIN usage_stats_institution_temporary_records usi on (usi.load_id = usuci.load_id AND usi.line_number = usuci.line_number) + WHERE usuci.load_id = ? AND submission_id IS NOT NULL AND chapter_id IS NOT NULL AND usi.institution_id = ? + GROUP BY usuci.load_id, usuci.context_id, usuci.submission_id, DATE(usuci.date), usi.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricChapterInvestigationsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_chapter_investigations_unique = excluded.metric_chapter_investigations_unique; + '; + } else { + $metricChapterInvestigationsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_chapter_investigations_unique = metric; + '; + } + + $temporaryInstitutionsDAO = DAORegistry::getDAO('TemporaryInstitutionsDAO'); /** @var TemporaryInstitutionsDAO $temporaryInstitutionsDAO */ + $institutionIds = $temporaryInstitutionsDAO->getInstitutionIdsByLoadId($loadId); + foreach ($institutionIds as $institutionId) { + DB::statement($metricBookInvestigationsUniqueUpsertSql, [$loadId, (int) $institutionId]); + DB::statement($metricChapterInvestigationsUniqueUpsertSql, [$loadId, (int) $institutionId]); + } + } +} diff --git a/classes/statistics/TemporaryItemRequestsDAO.php b/classes/statistics/TemporaryItemRequestsDAO.php new file mode 100644 index 00000000000..ebdfc8a2bc5 --- /dev/null +++ b/classes/statistics/TemporaryItemRequestsDAO.php @@ -0,0 +1,239 @@ + $entryData->chapterId] + ); + } + + /** + * Remove Unique Clicks + * If multiple transactions represent the same item and occur in the same user-sessions, only one unique activity MUST be counted for that item. + * Unique book item is a submission (with chapter ID = NULL). + * Unique chapter item is a chapter. + * A user session is defined by the combination of IP address + user agent + transaction date + hour of day. + * Only the last unique activity will be retained (and thus counted), all the other will be removed. + * + * See https://www.projectcounter.org/code-of-practice-five-sections/7-processing-rules-underlying-counter-reporting-data/#counting + */ + public function compileBookItemUniqueClicks(string $loadId): void + { + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + DB::statement( + " + DELETE FROM {$this->table} usur + WHERE EXISTS ( + SELECT * FROM ( + SELECT 1 FROM {$this->table} usurt + WHERE usur.load_id = ? AND usurt.load_id = usur.load_id AND + usurt.context_id = usur.context_id AND + usurt.ip = usur.ip AND + usurt.user_agent = usur.user_agent AND + usurt.submission_id = usur.submission_id AND + usurt.chapter_id IS NULL AND usur.chapter_id IS NULL AND + EXTRACT(HOUR FROM usurt.date) = EXTRACT(HOUR FROM usur.date) AND + usur.line_number < usurt.line_number + ) AS tmp + ) + ", + [$loadId] + ); + } else { + DB::statement( + " + DELETE FROM usur USING {$this->table} usur + INNER JOIN {$this->table} usurt ON ( + usurt.load_id = usur.load_id AND + usurt.context_id = usur.context_id AND + usurt.ip = usur.ip AND + usurt.user_agent = usur.user_agent AND + usurt.submission_id = usur.submission_id + ) + WHERE usur.load_id = ? AND + usurt.chapter_id IS NULL AND usur.chapter_id IS NULL AND + TIMESTAMPDIFF(HOUR, usur.date, usurt.date) = 0 AND + usur.line_number < usurt.line_number + ", + [$loadId] + ); + } + } + public function compileChapterItemUniqueClicks(string $loadId): void + { + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + DB::statement( + " + DELETE FROM {$this->table} usur + WHERE EXISTS ( + SELECT * FROM ( + SELECT 1 FROM {$this->table} usurt + WHERE usur.load_id = ? AND usurt.load_id = usur.load_id AND + usurt.context_id = usur.context_id AND + usurt.ip = usur.ip AND + usurt.user_agent = usur.user_agent AND + usurt.submission_id = usur.submission_id AND + usurt.chapter_id = usur.chapter_id AND usurt.chapter_id IS NOT NULL AND + EXTRACT(HOUR FROM usurt.date) = EXTRACT(HOUR FROM usur.date) AND + usur.line_number < usurt.line_number + ) AS tmp + ) + ", + [$loadId] + ); + } else { + DB::statement( + " + DELETE FROM usur USING {$this->table} usur + INNER JOIN {$this->table} usurt ON ( + usurt.load_id = usur.load_id AND + usurt.context_id = usur.context_id AND + usurt.ip = usur.ip AND + usurt.user_agent = usur.user_agent AND + usurt.submission_id = usur.submission_id AND + usurt.chapter_id = usur.chapter_id + ) + WHERE usur.load_id = ? AND + usurt.chapter_id IS NOT NULL AND + TIMESTAMPDIFF(HOUR, usur.date, usurt.date) = 0 AND + usur.line_number < usurt.line_number + ", + [$loadId] + ); + } + } + + /** + * Load unique COUNTER item (book and chapter) requests (primary files downloads) + */ + public function compileCounterSubmissionDailyMetrics(string $loadId): void + { + // construct metric_book_requests_unique upsert + // assoc_type should always be Application::ASSOC_TYPE_SUBMISSION_FILE, but include the condition however + $metricBookRequestsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, count(*) as metric, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} + WHERE load_id = ? AND assoc_type = ? AND chapter_id IS NULL + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricBookRequestsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_book_requests_unique = excluded.metric_book_requests_unique; + '; + } else { + $metricBookRequestsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_book_requests_unique = metric; + '; + } + DB::statement($metricBookRequestsUniqueUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE]); + + // construct metric_chapter_requests_unique upsert + // assoc_type should always be Application::ASSOC_TYPE_SUBMISSION_FILE, but include the condition however + $metricChapterRequestsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, count(*) as metric, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} + WHERE load_id = ? AND assoc_type = ? AND chapter_id IS NOT NULL + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricChapterRequestsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_chapter_requests_unique = excluded.metric_chapter_requests_unique; + '; + } else { + $metricChapterRequestsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_chapter_requests_unique = metric; + '; + } + DB::statement($metricChapterRequestsUniqueUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE]); + } + + /** + * Load unique institutional COUNTER item (book and chapter) requests (primary files downloads) + */ + public function compileCounterSubmissionInstitutionDailyMetrics(string $loadId): void + { + // construct metric_book_requests_unique upsert + // assoc_type should always be Application::ASSOC_TYPE_SUBMISSION_FILE, but include the condition however + $metricBookRequestsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT usur.load_id, usur.context_id, usur.submission_id, DATE(usur.date) as date, usi.institution_id, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, count(*) as metric, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} usur + JOIN usage_stats_institution_temporary_records usi on (usi.load_id = usur.load_id AND usi.line_number = usur.line_number) + WHERE usur.load_id = ? AND usur.assoc_type = ? AND chapter_id IS NULL AND usi.institution_id = ? + GROUP BY usur.load_id, usur.context_id, usur.submission_id, DATE(usur.date), usi.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricBookRequestsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_book_requests_unique = excluded.metric_book_requests_unique; + '; + } else { + $metricBookRequestsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_book_requests_unique = metric; + '; + } + + // construct metric_chapter_requests_unique upsert + // assoc_type should always be Application::ASSOC_TYPE_SUBMISSION_FILE, but include the condition however + $metricChapterRequestsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT usucr.load_id, usucr.context_id, usucr.submission_id, DATE(usucr.date) as date, usi.institution_id, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, count(*) as metric, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} usucr + JOIN usage_stats_institution_temporary_records usi on (usi.load_id = usucr.load_id AND usi.line_number = usucr.line_number) + WHERE usucr.load_id = ? AND usucr.assoc_type = ? AND chapter_id IS NOT NULL AND usi.institution_id = ? + GROUP BY usucr.load_id, usucr.context_id, usucr.submission_id, DATE(usucr.date), usi.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricChapterRequestsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_chapter_requests_unique = excluded.metric_chapter_requests_unique; + '; + } else { + $metricChapterRequestsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_chapter_requests_unique = metric; + '; + } + + $temporaryInstitutionsDAO = DAORegistry::getDAO('TemporaryInstitutionsDAO'); /** @var TemporaryInstitutionsDAO $temporaryInstitutionsDAO */ + $institutionIds = $temporaryInstitutionsDAO->getInstitutionIdsByLoadId($loadId); + foreach ($institutionIds as $institutionId) { + DB::statement($metricBookRequestsUniqueUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE, (int) $institutionId]); + DB::statement($metricChapterRequestsUniqueUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE, (int) $institutionId]); + } + } +} diff --git a/classes/statistics/TemporaryTitleInvestigationsDAO.php b/classes/statistics/TemporaryTitleInvestigationsDAO.php new file mode 100644 index 00000000000..64d873531d5 --- /dev/null +++ b/classes/statistics/TemporaryTitleInvestigationsDAO.php @@ -0,0 +1,201 @@ +table)->insert([ + 'date' => $entryData->time, + 'ip' => $entryData->ip, + 'user_agent' => substr($entryData->userAgent, 0, 255), + 'line_number' => $lineNumber, + 'context_id' => $entryData->contextId, + 'submission_id' => $entryData->submissionId, + 'chapter_id' => $entryData->chapterId, + 'representation_id' => $entryData->representationId, + 'submission_file_id' => $entryData->submissionFileId, + 'assoc_type' => $entryData->assocType, + 'file_type' => $entryData->fileType, + 'country' => !empty($entryData->country) ? $entryData->country : '', + 'region' => !empty($entryData->region) ? $entryData->region : '', + 'city' => !empty($entryData->city) ? $entryData->city : '', + 'load_id' => $loadId, + ]); + } + + /** + * Delete all temporary records associated + * with the passed load id. + */ + public function deleteByLoadId(string $loadId): void + { + DB::table($this->table)->where('load_id', '=', $loadId)->delete(); + } + + /** + * Remove Unique Title Clicks + * If multiple transactions represent the same title and occur in the same user-sessions, only one unique activity MUST be counted for that item. + * A title represents the parent work that the item is part of. + * Unique title is a submission. + * A user session is defined by the combination of IP address + user agent + transaction date + hour of day. + * Only the last unique activity will be retained (and thus counted), all the other will be removed. + * + * See https://www.projectcounter.org/code-of-practice-five-sections/7-processing-rules-underlying-counter-reporting-data/#titles + */ + public function compileTitleUniqueClicks(string $loadId): void + { + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + DB::statement( + " + DELETE FROM {$this->table} usuti + WHERE EXISTS ( + SELECT * FROM ( + SELECT 1 FROM {$this->table} usutit + WHERE usuti.load_id = ? AND usutit.load_id = usuti.load_id AND + usutit.context_id = usuti.context_id AND + usutit.ip = usuti.ip AND + usutit.user_agent = usuti.user_agent AND + usutit.submission_id = usuti.submission_id AND + EXTRACT(HOUR FROM usutit.date) = EXTRACT(HOUR FROM usuti.date) AND + usuti.line_number < usutit.line_number + ) AS tmp + ) + ", + [$loadId] + ); + } else { + DB::statement( + " + DELETE FROM usuti USING {$this->table} usuti + INNER JOIN {$this->table} usutit ON ( + usutit.load_id = usuti.load_id AND + usutit.context_id = usuti.context_id AND + usutit.ip = usuti.ip AND + usutit.user_agent = usuti.user_agent AND + usutit.submission_id = usuti.submission_id) + WHERE usuti.load_id = ? AND + TIMESTAMPDIFF(HOUR, usuti.date, usutit.date) = 0 AND + usuti.line_number < usutit.line_number + ", + [$loadId] + ); + } + } + + /** + * Load unique geographical usage on the submission level + */ + public function compileSubmissionGeoDailyMetrics(string $loadId): void + { + // construct metric_unique upsert + $metricUniqueUpsertSql = " + INSERT INTO metrics_submission_geo_daily (load_id, context_id, submission_id, date, country, region, city, metric, metric_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, country, region, city, 0 as metric, count(*) as metric_unique_tmp + FROM {$this->table} + WHERE load_id = ? AND submission_id IS NOT NULL AND (country <> '' OR region <> '' OR city <> '') + GROUP BY load_id, context_id, submission_id, DATE(date), country, region, city) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msgd_uc_load_context_submission_c_r_c_date DO UPDATE + SET metric_unique = excluded.metric_unique; + '; + } else { + $metricUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_unique = metric_unique_tmp; + '; + } + // load metric_unique + DB::statement($metricUniqueUpsertSql, [$loadId]); + } + + /** + * Load unique COUNTER title (submission) investigations + */ + public function compileCounterSubmissionDailyMetrics(string $loadId): void + { + // construct metric_title_investigations_unique upsert + $metricTitleInvestigationsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, count(*) as metric, 0 as metric_title_requests_unique + FROM {$this->table} + WHERE load_id = ? AND submission_id IS NOT NULL + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricTitleInvestigationsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_title_investigations_unique = excluded.metric_title_investigations_unique; + '; + } else { + $metricTitleInvestigationsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_title_investigations_unique = metric; + '; + } + DB::statement($metricTitleInvestigationsUniqueUpsertSql, [$loadId]); + } + + /** + * Load unique institutional COUNTER title (submission) investigations + */ + public function compileCounterSubmissionInstitutionDailyMetrics(string $loadId): void + { + // construct metric_title_investigations_unique upsert + $metricTitleInvestigationsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT usuti.load_id, usuti.context_id, usuti.submission_id, DATE(usuti.date) as date, usi.institution_id, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, count(*) as metric, 0 as metric_title_requests_unique + FROM {$this->table} usuti + JOIN usage_stats_institution_temporary_records usi on (usi.load_id = usuti.load_id AND usi.line_number = usuti.line_number) + WHERE usuti.load_id = ? AND submission_id IS NOT NULL AND usi.institution_id = ? + GROUP BY usuti.load_id, usuti.context_id, usuti.submission_id, DATE(usuti.date), usi.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricTitleInvestigationsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_title_investigations_unique = excluded.metric_title_investigations_unique; + '; + } else { + $metricTitleInvestigationsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_title_investigations_unique = metric; + '; + } + + $temporaryInstitutionsDAO = DAORegistry::getDAO('TemporaryInstitutionsDAO'); /** @var TemporaryInstitutionsDAO $temporaryInstitutionsDAO */ + $institutionIds = $temporaryInstitutionsDAO->getInstitutionIdsByLoadId($loadId); + foreach ($institutionIds as $institutionId) { + DB::statement($metricTitleInvestigationsUniqueUpsertSql, [$loadId, (int) $institutionId]); + } + } +} diff --git a/classes/statistics/TemporaryTitleRequestsDAO.php b/classes/statistics/TemporaryTitleRequestsDAO.php new file mode 100644 index 00000000000..98abbbdadb2 --- /dev/null +++ b/classes/statistics/TemporaryTitleRequestsDAO.php @@ -0,0 +1,178 @@ +table)->insert([ + 'date' => $entryData->time, + 'ip' => $entryData->ip, + 'user_agent' => substr($entryData->userAgent, 0, 255), + 'line_number' => $lineNumber, + 'context_id' => $entryData->contextId, + 'submission_id' => $entryData->submissionId, + 'chapter_id' => $entryData->chapterId, + 'representation_id' => $entryData->representationId, + 'submission_file_id' => $entryData->submissionFileId, + 'assoc_type' => $entryData->assocType, + 'file_type' => $entryData->fileType, + 'country' => !empty($entryData->country) ? $entryData->country : '', + 'region' => !empty($entryData->region) ? $entryData->region : '', + 'city' => !empty($entryData->city) ? $entryData->city : '', + 'load_id' => $loadId, + ]); + } + + /** + * Delete all temporary records associated + * with the passed load id. + */ + public function deleteByLoadId(string $loadId): void + { + DB::table($this->table)->where('load_id', '=', $loadId)->delete(); + } + + /** + * Remove Unique Title Clicks + * If multiple transactions represent the same title and occur in the same user-sessions, only one unique activity MUST be counted for that item. + * A title represents the parent work that the item is part of. + * Unique title is a submission. + * A user session is defined by the combination of IP address + user agent + transaction date + hour of day. + * Only the last unique activity will be retained (and thus counted), all the other will be removed. + * + * See https://www.projectcounter.org/code-of-practice-five-sections/7-processing-rules-underlying-counter-reporting-data/#titles + */ + public function compileTitleUniqueClicks(string $loadId): void + { + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + DB::statement( + " + DELETE FROM {$this->table} usutr + WHERE EXISTS ( + SELECT * FROM ( + SELECT 1 FROM {$this->table} usutrt + WHERE usutr.load_id = ? AND usutrt.load_id = usutr.load_id AND + usutrt.context_id = usutr.context_id AND + usutrt.ip = usutr.ip AND + usutrt.user_agent = usutr.user_agent AND + usutrt.submission_id = usutr.submission_id AND + EXTRACT(HOUR FROM usutrt.date) = EXTRACT(HOUR FROM usutr.date) AND + usutr.line_number < usutrt.line_number + ) AS tmp + ) + ", + [$loadId] + ); + } else { + DB::statement( + " + DELETE FROM usutr USING {$this->table} usutr + INNER JOIN {$this->table} usutrt ON ( + usutrt.load_id = usutr.load_id AND + usutrt.context_id = usutr.context_id AND + usutrt.ip = usutr.ip AND + usutrt.user_agent = usutr.user_agent AND + usutrt.submission_id = usutr.submission_id + ) + WHERE usutr.load_id = ? AND + TIMESTAMPDIFF(HOUR, usutr.date, usutrt.date) = 0 AND + usutr.line_number < usutrt.line_number + ", + [$loadId] + ); + } + } + + /** + * Load unique COUNTER title (submission) requests (primary files downloads) + */ + public function compileCounterSubmissionDailyMetrics(string $loadId): void + { + // construct metric_title_requests_unique upsert + // assoc_type should always be Application::ASSOC_TYPE_SUBMISSION_FILE, but include the condition however + $metricTitleRequestsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, count(*) as metric + FROM {$this->table} + WHERE load_id = ? AND assoc_type = ? + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricTitleRequestsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_title_requests_unique = excluded.metric_title_requests_unique; + '; + } else { + $metricTitleRequestsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_title_requests_unique = metric; + '; + } + DB::statement($metricTitleRequestsUniqueUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE]); + } + + /** + * Load unique institutional COUNTER title (submission) requests (primary files downloads) + */ + public function compileCounterSubmissionInstitutionDailyMetrics(string $loadId): void + { + // construct metric_title_requests_unique upsert + // assoc_type should always be Application::ASSOC_TYPE_SUBMISSION_FILE, but include the condition however + $metricTitleRequestsUniqueUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT usutr.load_id, usutr.context_id, usutr.submission_id, DATE(usutr.date) as date, usi.institution_id, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, count(*) as metric + FROM {$this->table} usutr + JOIN usage_stats_institution_temporary_records usi on (usi.load_id = usutr.load_id AND usi.line_number = usutr.line_number) + WHERE usutr.load_id = ? AND usutr.assoc_type = ? AND usi.institution_id = ? + GROUP BY usutr.load_id, usutr.context_id, usutr.submission_id, DATE(usutr.date), usi.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricTitleRequestsUniqueUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_title_requests_unique = excluded.metric_title_requests_unique; + '; + } else { + $metricTitleRequestsUniqueUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_title_requests_unique = metric; + '; + } + + $temporaryInstitutionsDAO = DAORegistry::getDAO('TemporaryInstitutionsDAO'); /** @var TemporaryInstitutionsDAO $temporaryInstitutionsDAO */ + $institutionIds = $temporaryInstitutionsDAO->getInstitutionIdsByLoadId($loadId); + foreach ($institutionIds as $institutionId) { + DB::statement($metricTitleRequestsUniqueUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE, (int) $institutionId]); + } + } +} diff --git a/classes/statistics/TemporaryTotalsDAO.php b/classes/statistics/TemporaryTotalsDAO.php new file mode 100644 index 00000000000..57c14cb09b1 --- /dev/null +++ b/classes/statistics/TemporaryTotalsDAO.php @@ -0,0 +1,286 @@ + $entryData->chapterId, + 'series_id' => $entryData->seriesId, + ] + ); + } + + /** + * Load usage for series landing pages + */ + public function compileSeriesMetrics(string $loadId): void + { + $date = DateTimeImmutable::createFromFormat('Ymd', substr($loadId, -12, 8)); + DB::table('metrics_series')->where('load_id', '=', $loadId)->orWhereDate('date', '=', $date)->delete(); + $selectSeriesMetrics = DB::table($this->table) + ->select(DB::raw('load_id, context_id, series_id, DATE(date) as date, count(*) as metric')) + ->where('load_id', '=', $loadId) + ->where('assoc_type', '=', Application::ASSOC_TYPE_SERIES) + ->groupBy(DB::raw('load_id, context_id, series_id, DATE(date)')); + DB::table('metrics_series')->insertUsing(['load_id', 'context_id', 'series_id', 'date', 'metric'], $selectSeriesMetrics); + } + + /** + * Load usage for submissions (abstract page, primary fiels, supp files, chapter landing page) + */ + public function compileSubmissionMetrics(string $loadId): void + { + $date = DateTimeImmutable::createFromFormat('Ymd', substr($loadId, -12, 8)); + DB::table('metrics_submission')->where('load_id', '=', $loadId)->orWhereDate('date', '=', $date)->delete(); + $selectSubmissionMetrics = DB::table($this->table) + ->select(DB::raw('load_id, context_id, submission_id, assoc_type, DATE(date) as date, count(*) as metric')) + ->where('load_id', '=', $loadId) + ->where('assoc_type', '=', Application::ASSOC_TYPE_SUBMISSION) + ->groupBy(DB::raw('load_id, context_id, submission_id, assoc_type, DATE(date)')); + DB::table('metrics_submission')->insertUsing(['load_id', 'context_id', 'submission_id', 'assoc_type', 'date', 'metric'], $selectSubmissionMetrics); + + $selectSubmissionFileMetrics = DB::table($this->table) + ->select(DB::raw('load_id, context_id, submission_id, representation_id, chapter_id, submission_file_id, file_type, assoc_type, DATE(date) as date, count(*) as metric')) + ->where('load_id', '=', $loadId) + ->where('assoc_type', '=', Application::ASSOC_TYPE_SUBMISSION_FILE) + ->groupBy(DB::raw('load_id, context_id, submission_id, representation_id, chapter_id, submission_file_id, file_type, assoc_type, DATE(date)')); + DB::table('metrics_submission')->insertUsing(['load_id', 'context_id', 'submission_id', 'representation_id', 'chapter_id', 'submission_file_id', 'file_type', 'assoc_type', 'date', 'metric'], $selectSubmissionFileMetrics); + + $selectSubmissionSuppFileMetrics = DB::table($this->table) + ->select(DB::raw('load_id, context_id, submission_id, representation_id, chapter_id, submission_file_id, file_type, assoc_type, DATE(date) as date, count(*) as metric')) + ->where('load_id', '=', $loadId) + ->where('assoc_type', '=', Application::ASSOC_TYPE_SUBMISSION_FILE_COUNTER_OTHER) + ->groupBy(DB::raw('load_id, context_id, submission_id, representation_id, chapter_id, submission_file_id, file_type, assoc_type, DATE(date)')); + DB::table('metrics_submission')->insertUsing(['load_id', 'context_id', 'submission_id', 'representation_id', 'chapter_id', 'submission_file_id', 'file_type', 'assoc_type', 'date', 'metric'], $selectSubmissionSuppFileMetrics); + + $selectChapterMetrics = DB::table($this->table) + ->select(DB::raw('load_id, context_id, submission_id, chapter_id, assoc_type, DATE(date) as date, count(*) as metric')) + ->where('load_id', '=', $loadId) + ->where('assoc_type', '=', Application::ASSOC_TYPE_CHAPTER) + ->groupBy(DB::raw('load_id, context_id, submission_id, chapter_id, assoc_type, DATE(date)')); + DB::table('metrics_submission')->insertUsing(['load_id', 'context_id', 'submission_id', 'chapter_id', 'assoc_type', 'date', 'metric'], $selectChapterMetrics); + } + + /** + * Load total COUNTER submission (book and chapter) usage (investigations and requests) + */ + public function compileCounterSubmissionDailyMetrics(string $loadId): void + { + // construct metric_book_investigations upsert + $metricBookInvestigationsUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, count(*) as metric, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} + WHERE load_id = ? AND submission_id IS NOT NULL AND chapter_id IS NULL + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricBookInvestigationsUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_book_investigations = excluded.metric_book_investigations; + '; + } else { + $metricBookInvestigationsUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_book_investigations = metric; + '; + } + DB::statement($metricBookInvestigationsUpsertSql, [$loadId]); + + // construct metric_book_requests upsert + $metricBookRequestsUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, count(*) as metric, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} + WHERE load_id = ? AND assoc_type = ? AND chapter_id IS NULL + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricBookRequestsUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_book_requests = excluded.metric_book_requests; + '; + } else { + $metricBookRequestsUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_book_requests = metric; + '; + } + DB::statement($metricBookRequestsUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE]); + + // construct metric_chapter_investigations upsert + $metricChapterInvestigationsUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, count(*) as metric, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} + WHERE load_id = ? AND submission_id IS NOT NULL AND chapter_id IS NOT NULL + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricChapterInvestigationsUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_chapter_investigations = excluded.metric_chapter_investigations; + '; + } else { + $metricChapterInvestigationsUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_chapter_investigations = metric; + '; + } + DB::statement($metricChapterInvestigationsUpsertSql, [$loadId]); + + // construct metric_chapter_requests upsert + $metricChapterRequestsUpsertSql = " + INSERT INTO metrics_counter_submission_daily (load_id, context_id, submission_id, date, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM (SELECT load_id, context_id, submission_id, DATE(date) as date, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, count(*) as metric, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} + WHERE load_id = ? AND assoc_type = ? AND chapter_id IS NOT NULL + GROUP BY load_id, context_id, submission_id, DATE(date)) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricChapterRequestsUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msd_uc_load_id_context_id_submission_id_date DO UPDATE + SET metric_chapter_requests = excluded.metric_chapter_requests; + '; + } else { + $metricChapterRequestsUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_chapter_requests = metric; + '; + } + DB::statement($metricChapterRequestsUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE]); + } + + /** + * Load total institutional COUNTER submission (book and chapter) usage (investigations and requests) + */ + public function compileCounterSubmissionInstitutionDailyMetrics(string $loadId): void + { + // construct metric_book_investigations upsert + $metricBookInvestigationsUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT ustt.load_id, ustt.context_id, ustt.submission_id, DATE(ustt.date) as date, usit.institution_id, count(*) as metric, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} ustt + JOIN usage_stats_institution_temporary_records usit on (usit.load_id = ustt.load_id AND usit.line_number = ustt.line_number) + WHERE ustt.load_id = ? AND submission_id IS NOT NULL AND chapter_id IS NULL AND usit.institution_id = ? + GROUP BY ustt.load_id, ustt.context_id, ustt.submission_id, DATE(ustt.date), usit.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricBookInvestigationsUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_book_investigations = excluded.metric_book_investigations; + '; + } else { + $metricBookInvestigationsUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_book_investigations = metric; + '; + } + + // construct metric_book_requests upsert + $metricBookRequestsUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT ustt.load_id, ustt.context_id, ustt.submission_id, DATE(ustt.date) as date, usit.institution_id, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, count(*) as metric, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} ustt + JOIN usage_stats_institution_temporary_records usit on (usit.load_id = ustt.load_id AND usit.line_number = ustt.line_number) + WHERE ustt.load_id = ? AND ustt.assoc_type = ? AND chapter_id IS NULL AND usit.institution_id = ? + GROUP BY ustt.load_id, ustt.context_id, ustt.submission_id, DATE(ustt.date), usit.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricBookRequestsUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_book_requests = excluded.metric_book_requests; + '; + } else { + $metricBookRequestsUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_book_requests = metric; + '; + } + + // construct metric_chapter_investigations upsert + $metricChapterInvestigationsUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT ustt.load_id, ustt.context_id, ustt.submission_id, DATE(ustt.date) as date, usit.institution_id, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, count(*) as metric, 0 as metric_chapter_investigations_unique, 0 as metric_chapter_requests, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} ustt + JOIN usage_stats_institution_temporary_records usit on (usit.load_id = ustt.load_id AND usit.line_number = ustt.line_number) + WHERE ustt.load_id = ? AND submission_id IS NOT NULL AND chapter_id IS NOT NULL AND usit.institution_id = ? + GROUP BY ustt.load_id, ustt.context_id, ustt.submission_id, DATE(ustt.date), usit.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricChapterInvestigationsUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_chapter_investigations = excluded.metric_chapter_investigations; + '; + } else { + $metricChapterInvestigationsUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_chapter_investigations = metric; + '; + } + + // construct metric_chapter_requests upsert + $metricChapterRequestsUpsertSql = " + INSERT INTO metrics_counter_submission_institution_daily (load_id, context_id, submission_id, date, institution_id, metric_book_investigations, metric_book_investigations_unique, metric_book_requests, metric_book_requests_unique, metric_chapter_investigations, metric_chapter_investigations_unique, metric_chapter_requests, metric_chapter_requests_unique, metric_title_investigations_unique, metric_title_requests_unique) + SELECT * FROM ( + SELECT ustt.load_id, ustt.context_id, ustt.submission_id, DATE(ustt.date) as date, usit.institution_id, 0 as metric_book_investigations, 0 as metric_book_investigations_unique, 0 as metric_book_requests, 0 as metric_book_requests_unique, 0 as metric_chapter_investigations, 0 as metric_chapter_investigations_unique, count(*) as metric, 0 as metric_chapter_requests_unique, 0 as metric_title_investigations_unique, 0 as metric_title_requests_unique + FROM {$this->table} ustt + JOIN usage_stats_institution_temporary_records usit on (usit.load_id = ustt.load_id AND usit.line_number = ustt.line_number) + WHERE ustt.load_id = ? AND ustt.assoc_type = ? AND chapter_id IS NOT NULL AND usit.institution_id = ? + GROUP BY ustt.load_id, ustt.context_id, ustt.submission_id, DATE(ustt.date), usit.institution_id) AS t + "; + if (substr(Config::getVar('database', 'driver'), 0, strlen('postgres')) === 'postgres') { + $metricChapterRequestsUpsertSql .= ' + ON CONFLICT ON CONSTRAINT msid_uc_load_id_context_id_submission_id_institution_id_date DO UPDATE + SET metric_chapter_requests = excluded.metric_chapter_requests; + '; + } else { + $metricChapterRequestsUpsertSql .= ' + ON DUPLICATE KEY UPDATE metric_chapter_requests = metric; + '; + } + + $temporaryInstitutionsDAO = DAORegistry::getDAO('TemporaryInstitutionsDAO'); /** @var TemporaryInstitutionsDAO $temporaryInstitutionsDAO */ + $institutionIds = $temporaryInstitutionsDAO->getInstitutionIdsByLoadId($loadId); + foreach ($institutionIds as $institutionId) { + DB::statement($metricBookInvestigationsUpsertSql, [$loadId, (int) $institutionId]); + DB::statement($metricBookRequestsUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE, (int) $institutionId]); + DB::statement($metricChapterInvestigationsUpsertSql, [$loadId, (int) $institutionId]); + DB::statement($metricChapterRequestsUpsertSql, [$loadId, Application::ASSOC_TYPE_SUBMISSION_FILE, (int) $institutionId]); + } + } +} diff --git a/classes/submission/Collector.php b/classes/submission/Collector.php new file mode 100644 index 00000000000..81111f5dc46 --- /dev/null +++ b/classes/submission/Collector.php @@ -0,0 +1,177 @@ +dao = $dao; + } + + /** + * Limit results to submissions assigned to these series + */ + public function filterBySeriesIds(array $seriesIds): self + { + $this->seriesIds = $seriesIds; + return $this; + } + + /** + * Put featured items first in the results + * + * If filtering by series or categories, this will put featured + * items in that series or category first. By default, it puts + * the items featured in the context at the top. + */ + public function orderByFeatured(): self + { + $this->orderByFeatured = true; + return $this; + } + + /** + * Add APP-specific filtering methods for submission sub objects DOI statuses + * + */ + protected function addDoiStatusFilterToQuery(Builder $q) + { + $q->whereIn('s.current_publication_id', function (Builder $q) { + $q->select('current_p.publication_id') + ->from('publications as current_p') + ->leftJoin('submission_chapters as current_c', 'current_p.publication_id', '=', 'current_c.publication_id') + ->leftJoin('publication_formats as current_pf', 'current_p.publication_id', '=', 'current_pf.publication_id') + ->leftJoin('dois as pd', 'pd.doi_id', '=', 'current_p.doi_id') + ->leftJoin('dois as cd', 'cd.doi_id', '=', 'current_c.doi_id') + ->leftJoin('dois as pfd', 'pfd.doi_id', '=', 'current_pf.doi_id') + ->whereIn('pd.status', $this->doiStatuses) + ->orWhereIn('cd.status', $this->doiStatuses) + ->orWhereIn('pfd.status', $this->doiStatuses); + }); + } + + + /** + * Add APP-specific filtering methods for checking if submission sub objects have DOIs assigned + */ + protected function addHasDoisFilterToQuery(Builder $q) + { + $q->whereIn('s.current_publication_id', function (Builder $q) { + $q->select('current_p.publication_id') + ->from('publications', 'current_p') + ->leftJoin('submission_chapters as current_c', 'current_p.publication_id', '=', 'current_c.publication_id') + ->leftJoin('publication_formats as current_pf', 'current_p.publication_id', '=', 'current_pf.publication_id') + ->where(function (Builder $q) { + $q->when($this->hasDois === true, function (Builder $q) { + $q->when(in_array(Repo::doi()::TYPE_PUBLICATION, $this->enabledDoiTypes), function (Builder $q) { + $q->whereNotNull('current_p.doi_id'); + }); + $q->when(in_array(Repo::doi()::TYPE_CHAPTER, $this->enabledDoiTypes), function (Builder $q) { + $q->orWhereNotNull('current_c.doi_id'); + }); + $q->when(in_array(Repo::doi()::TYPE_REPRESENTATION, $this->enabledDoiTypes), function (Builder $q) { + $q->orWhereNotNull('current_pf.doi_id'); + }); + }); + $q->when($this->hasDois === false, function (Builder $q) { + $q->when(in_array(Repo::doi()::TYPE_PUBLICATION, $this->enabledDoiTypes), function (Builder $q) { + $q->whereNull('current_p.doi_id'); + }); + $q->when(in_array(Repo::doi()::TYPE_CHAPTER, $this->enabledDoiTypes), function (Builder $q) { + $q->orWhere(function (Builder $q) { + $q->whereNull('current_c.doi_id'); + $q->whereNotNull('current_c.chapter_id'); + }); + }); + $q->when(in_array(Repo::doi()::TYPE_REPRESENTATION, $this->enabledDoiTypes), function (Builder $q) { + $q->orWhere(function (Builder $q) { + $q->whereNull('current_pf.doi_id'); + $q->whereNotNull('current_pf.publication_format_id'); + }); + }); + }); + }); + }); + } + + /** + * @copydoc CollectorInterface::getQueryBuilder() + */ + public function getQueryBuilder(): Builder + { + $q = parent::getQueryBuilder(); + + if (is_array($this->seriesIds)) { + $q->leftJoin('publications as publication_s', 's.current_publication_id', '=', 'publication_s.publication_id'); + $q->whereIn('publication_s.series_id', $this->seriesIds); + } + + // order by series position + if ($this->orderBy === self::ORDERBY_SERIES_POSITION) { + $this->columns[] = 'po.series_position'; + $q->reorder()->orderBy('po.series_position', $this->orderDirection); + } + + if (!empty($this->orderByFeatured)) { + if (is_array($this->seriesIds)) { + $assocType = Application::ASSOC_TYPE_SERIES; + $assocIds = $this->seriesIds; + } elseif (is_array($this->categoryIds)) { + $assocType = Application::ASSOC_TYPE_CATEGORY; + $assocIds = $this->categoryIds; + } else { + $assocType = Application::ASSOC_TYPE_PRESS; + $assocIds = is_array($this->contextIds) + ? $this->contextIds + : [Application::CONTEXT_ID_NONE]; + } + + $q->leftJoin('features as sf', function ($join) use ($assocType, $assocIds) { + $join->on('s.submission_id', '=', 'sf.submission_id') + ->where('sf.assoc_type', '=', $assocType) + ->whereIn('sf.assoc_id', $assocIds); + }); + + // Featured sorting should be the first sort parameter. We sort by + // the seq parameter, with null values last + + $q->addSelect('sf.seq'); + $q->addSelect(DB::raw('case when sf.seq is null then 1 else 0 end')); + array_unshift( + $q->orders, + ['type' => 'raw', 'sql' => 'case when sf.seq is null then 1 else 0 end'], + ['column' => 'sf.seq', 'direction' => 'ASC'] + ); + } + + return $q; + } +} diff --git a/classes/submission/DAO.php b/classes/submission/DAO.php new file mode 100644 index 00000000000..894da373af1 --- /dev/null +++ b/classes/submission/DAO.php @@ -0,0 +1,52 @@ + 'submission_id', + 'contextId' => 'context_id', + 'currentPublicationId' => 'current_publication_id', + 'dateLastActivity' => 'date_last_activity', + 'dateSubmitted' => 'date_submitted', + 'lastModified' => 'last_modified', + 'locale' => 'locale', + 'stageId' => 'stage_id', + 'status' => 'status', + 'submissionProgress' => 'submission_progress', + 'workType' => 'work_type', + ]; + + /** @copydoc \PKP\submission\DAO::deleteById() */ + public function deleteById(int $id) + { + // Delete references to features or new releases. + $featureDao = DAORegistry::getDAO('FeatureDAO'); /** @var FeatureDAO $featureDao */ + $featureDao->deleteByMonographId($id); + + $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); /** @var NewReleaseDAO $newReleaseDao */ + $newReleaseDao->deleteByMonographId($id); + + event(new SubmissionDeleted($id)); + + parent::deleteById($id); + } +} diff --git a/classes/submission/Repository.php b/classes/submission/Repository.php new file mode 100644 index 00000000000..c387a92b33e --- /dev/null +++ b/classes/submission/Repository.php @@ -0,0 +1,134 @@ +getSortOption(Collector::ORDERBY_SERIES_POSITION, Collector::ORDER_DIR_ASC) => __('catalog.sortBy.seriesPositionAsc'), + $this->getSortOption(Collector::ORDERBY_SERIES_POSITION, Collector::ORDER_DIR_DESC) => __('catalog.sortBy.seriesPositionDesc'), + ] + ); + } + + /** + * Creates and assigns DOIs to all sub-objects if: + * 1) the suffix pattern can currently be created, and + * 2) it does not already exist. + * + */ + public function createDois(Submission $submission): array + { + /** @var PressDAO $contextDao */ + $contextDao = Application::getContextDAO(); + + /** @var Press $context */ + $context = $contextDao->getById($submission->getData('contextId')); + + $publication = $submission->getCurrentPublication(); + + $doiCreationFailures = []; + + if ($context->isDoiTypeEnabled(Repo::doi()::TYPE_PUBLICATION) && empty($publication->getData('doiId'))) { + try { + $doiId = Repo::doi()->mintPublicationDoi($publication, $submission, $context); + Repo::publication()->edit($publication, ['doiId' => $doiId]); + } catch (DoiException $exception) { + $doiCreationFailures[] = $exception; + } + } + + // Chapters + /** @var Chapter[] $chapters */ + $chapters = $publication->getData('chapters'); + if ($context->isDoiTypeEnabled(Repo::doi()::TYPE_CHAPTER) && !empty($chapters)) { + /** @var ChapterDAO $chapterDao */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + foreach ($chapters as $chapter) { + if (empty($chapter->getData('doiId'))) { + try { + $doiId = Repo::doi()->mintChapterDoi($chapter, $submission, $context); + $chapter->setData('doiId', $doiId); + $chapterDao->updateObject($chapter); + } catch (DoiException $exception) { + $doiCreationFailures[] = $exception; + } + } + } + } + + // Publication formats + $publicationFormats = $publication->getData('publicationFormats'); + if ($context->isDoiTypeEnabled(Repo::doi()::TYPE_REPRESENTATION) && !empty($publicationFormats)) { + /** @var PublicationFormatDAO $publicationFormatDao */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); + /** @var PublicationFormat $publicationFormat */ + foreach ($publicationFormats as $publicationFormat) { + if (empty($publicationFormat->getData('doiId'))) { + try { + $doiId = Repo::doi()->mintPublicationFormatDoi($publicationFormat, $submission, $context); + $publicationFormat->setData('doiId', $doiId); + $publicationFormatDao->updateObject($publicationFormat); + } catch (DoiException $exception) { + $doiCreationFailures[] = $exception; + } + } + } + } + + // Submission files + if ($context->isDoiTypeEnabled(Repo::doi()::TYPE_SUBMISSION_FILE)) { + // Get all submission files assigned to a publication format + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$publication->getData('submissionId')]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_PROOF]) + ->getMany(); + + /** @var SubmissionFile $submissionFile */ + foreach ($submissionFiles as $submissionFile) { + if (empty($submissionFile->getData('doiId'))) { + try { + $doiId = Repo::doi()->mintSubmissionFileDoi($submissionFile, $submission, $context); + Repo::submissionFile()->edit($submissionFile, ['doiId' => $doiId]); + } catch (DoiException $exception) { + $doiCreationFailures[] = $exception; + } + } + } + } + + return $doiCreationFailures; + } +} diff --git a/classes/submission/Submission.inc.php b/classes/submission/Submission.inc.php deleted file mode 100644 index 332b620296f..00000000000 --- a/classes/submission/Submission.inc.php +++ /dev/null @@ -1,272 +0,0 @@ -getContextId(); - } - - /** - * set press id - * @param $pressId int - * @deprecated 3.2.0.0 - */ - function setPressId($pressId) { - return $this->setContextId($pressId); - } - - /** - * Get the series id. - * @return int - * @deprecated 3.2.0.0 - */ - function getSeriesId() { - return $this->getSectionId(); - } - - /** - * @see Submission::getSectionId() - * @deprecated 3.2.0.0 - */ - function getSectionId() { - $publication = $this->getCurrentPublication(); - if (!$publication) { - return 0; - } - return $publication->getData('seriesId'); - } - - /** - * Set the series id. - * @param $id int - * @deprecated 3.2.0.0 - */ - function setSeriesId($id) { - $publication = $this->getCurrentPublication(); - if ($publication) { - $publication->setData('seriesId', $id); - } - } - - /** - * Get the position of this monograph within a series. - * @return string - * @deprecated 3.2.0.0 - */ - function getSeriesPosition() { - $publication = $this->getCurrentPublication(); - if (!$publication) { - return ''; - } - return $publication->getData('seriesPosition'); - } - - /** - * Set the series position for this monograph. - * @param $seriesPosition string - * @deprecated 3.2.0.0 - */ - function setSeriesPosition($seriesPosition) { - $publication = $this->getCurrentPublication(); - if ($publication) { - $publication->setData('seriesPosition', $seriesPosition); - } - } - - /** - * Get the work type (constant in WORK_TYPE_...) - * @return int - * @deprecated 3.2.0.0 - */ - function getWorkType() { - return $this->getData('workType'); - } - - /** - * Set the work type (constant in WORK_TYPE_...) - * @param $workType int - * @deprecated 3.2.0.0 - */ - function setWorkType($workType) { - $this->setData('workType', $workType); - } - - /** - * Get localized supporting agencies array. - * @return array - * @deprecated 3.2.0.0 - */ - function getLocalizedSupportingAgencies() { - $publication = $this->getCurrentPublication(); - if (!$publication) { - return []; - } - return $publication->getLocalizedData('supportingAgencies'); - } - - /** - * Get supporting agencies. - * @param $locale - * @return array - * @deprecated 3.2.0.0 - */ - function getSupportingAgencies($locale) { - $publication = $this->getCurrentPublication(); - if (!$publication) { - return []; - } - return $publication->getData('supportingAgencies', $locale); - } - - /** - * Set supporting agencies. - * @param $supportingAgencies array - * @param $locale - * @deprecated 3.2.0.0 - */ - function setSupportingAgencies($supportingAgencies, $locale) { - $publication = $this->getCurrentPublication(); - if ($publication) { - $publication->setData('seriesPosition', $supportingAgencies, $locale); - } - } - - /** - * Get the value of a license field from the containing context. - * @param $locale string Locale code - * @param $field PERMISSIONS_FIELD_... - * @param $publication Publication - * @return string|array|null - */ - function _getContextLicenseFieldValue($locale, $field, $publication = null) { - $context = Services::get('context')->get($this->getData('contextId')); - $fieldValue = null; // Scrutinizer - switch ($field) { - case PERMISSIONS_FIELD_LICENSE_URL: - $fieldValue = $context->getData('licenseUrl'); - break; - case PERMISSIONS_FIELD_COPYRIGHT_HOLDER: - switch($context->getData('copyrightHolderType')) { - case 'author': - $fieldValue = array($context->getPrimaryLocale() => $this->getAuthorString()); - break; - case 'context': - case null: - $fieldValue = $context->getName(null); - break; - default: - $fieldValue = $context->getData('copyrightHolderOther'); - break; - } - break; - case PERMISSIONS_FIELD_COPYRIGHT_YEAR: - $fieldValue = date('Y'); - if (!$publication) { - $publication = $this->getCurrentPublication(); - } - if ($publication->getData('datePublished')) { - $fieldValue = date('Y', strtotime($publication->getData('datePublished'))); - } - break; - default: assert(false); - } - - // Return the fetched license field - if ($locale === null) return $fieldValue; - if (isset($fieldValue[$locale])) return $fieldValue[$locale]; - return null; - } - - /** - * get cover page server-side file name - * @return string - * @deprecated 3.2.0.0 - */ - function getCoverImage() { - $publication = $this->getCurrentPublication(); - if (!$publication) { - return ''; - } - return $publication->getData('coverImage'); - } - - /** - * get cover page alternate text - * @return string - * @deprecated 3.2.0.0 - */ - function getCoverImageAltText() { - $publication = $this->getCurrentPublication(); - if (!$publication) { - return ''; - } - $coverImage = $publication->getData('coverImage'); - return empty($coverImage['altText']) ? '' : $coverImage['altText']; - } - - /** - * Get a string indicating all authors or, if it is an edited volume, editors. - * @param $preferred boolean If the preferred public name should be used, if exist - * @return string - * @deprecated 3.2.0.0 - */ - public function getAuthorOrEditorString($preferred = true) { - - if ($this->getWorkType() != WORK_TYPE_EDITED_VOLUME) { - $userGroupIds = array_map(function($author) { - return $author->getData('userGroupId'); - }, $this->getAuthors(true)); - $userGroups = array_map(function($userGroupId) { - return DAORegistry::getDAO('UserGroupDAO')->getbyId($userGroupId); - }, array_unique($userGroupIds)); - return $this->getCurrentPublication()->getAuthorString($userGroups); - } - - return $this->getCurrentPublication()->getEditorString(); - } - - /** - * get enableChapterPublicationDates status - * @return int - */ - function getEnableChapterPublicationDates() { - return $this->getData('enableChapterPublicationDates'); - } - - /** - * set enableChapterPublicationDates status - * @param $enableChapterPublicationDates int - */ - function setEnableChapterPublicationDates($enableChapterPublicationDates) { - $this->setData('enableChapterPublicationDates', $enableChapterPublicationDates); - } - -} diff --git a/classes/submission/Submission.php b/classes/submission/Submission.php new file mode 100644 index 00000000000..b61f059394b --- /dev/null +++ b/classes/submission/Submission.php @@ -0,0 +1,341 @@ +getContextId(); + } + + /** + * set press id + * + * @param int $pressId + * + * @deprecated 3.2.0.0 + */ + public function setPressId($pressId) + { + return $this->setContextId($pressId); + } + + /** + * Get the series id. + * + * @return int + * + * @deprecated 3.2.0.0 + */ + public function getSeriesId() + { + return $this->getSectionId(); + } + + /** + * @see Submission::getSectionId() + * @deprecated 3.2.0.0 + */ + public function getSectionId() + { + $publication = $this->getCurrentPublication(); + if (!$publication) { + return 0; + } + return $publication->getData('seriesId'); + } + + /** + * Set the series id. + * + * @param int $id + * + * @deprecated 3.2.0.0 + */ + public function setSeriesId($id) + { + $publication = $this->getCurrentPublication(); + if ($publication) { + $publication->setData('seriesId', $id); + } + } + + /** + * Get the position of this monograph within a series. + * + * @return string + * + * @deprecated 3.2.0.0 + */ + public function getSeriesPosition() + { + $publication = $this->getCurrentPublication(); + if (!$publication) { + return ''; + } + return $publication->getData('seriesPosition'); + } + + /** + * Set the series position for this monograph. + * + * @param string $seriesPosition + * + * @deprecated 3.2.0.0 + */ + public function setSeriesPosition($seriesPosition) + { + $publication = $this->getCurrentPublication(); + if ($publication) { + $publication->setData('seriesPosition', $seriesPosition); + } + } + + /** + * Get the work type (constant in WORK_TYPE_...) + * + * @return int + * + * @deprecated 3.2.0.0 + */ + public function getWorkType() + { + return $this->getData('workType'); + } + + /** + * Set the work type (constant in WORK_TYPE_...) + * + * @param int $workType + * + * @deprecated 3.2.0.0 + */ + public function setWorkType($workType) + { + $this->setData('workType', $workType); + } + + /** + * Get localized supporting agencies array. + * + * @return array + * + * @deprecated 3.2.0.0 + */ + public function getLocalizedSupportingAgencies() + { + $publication = $this->getCurrentPublication(); + if (!$publication) { + return []; + } + return $publication->getLocalizedData('supportingAgencies'); + } + + /** + * Get supporting agencies. + * + * @param string $locale + * + * @return array + * + * @deprecated 3.2.0.0 + */ + public function getSupportingAgencies($locale) + { + $publication = $this->getCurrentPublication(); + if (!$publication) { + return []; + } + return $publication->getData('supportingAgencies', $locale); + } + + /** + * Set supporting agencies. + * + * @param array $supportingAgencies + * @param string $locale + * + * @deprecated 3.2.0.0 + */ + public function setSupportingAgencies($supportingAgencies, $locale) + { + $publication = $this->getCurrentPublication(); + if ($publication) { + $publication->setData('seriesPosition', $supportingAgencies, $locale); + } + } + + /** + * Get the value of a license field from the containing context. + * + * @param string $locale Locale code + * @param int $field PERMISSIONS_FIELD_... + * @param Publication $publication + * + * @return string|array|null + */ + public function _getContextLicenseFieldValue($locale, $field, $publication = null) + { + $context = Services::get('context')->get($this->getData('contextId')); + $fieldValue = null; // Scrutinizer + switch ($field) { + case static::PERMISSIONS_FIELD_LICENSE_URL: + $fieldValue = $context->getData('licenseUrl'); + break; + case static::PERMISSIONS_FIELD_COPYRIGHT_HOLDER: + switch ($context->getData('copyrightHolderType')) { + case 'author': + if (!$publication) { + $publication = $this->getCurrentPublication(); + } + $authorUserGroups = Repo::userGroup()->getCollector()->filterByRoleIds([\PKP\security\Role::ROLE_ID_AUTHOR])->filterByContextIds([$context->getId()])->getMany(); + $fieldValue = [$context->getPrimaryLocale() => $publication->getAuthorString($authorUserGroups)]; + break; + case 'context': + case null: + $fieldValue = $context->getName(null); + break; + default: + $fieldValue = $context->getData('copyrightHolderOther'); + break; + } + break; + case static::PERMISSIONS_FIELD_COPYRIGHT_YEAR: + $fieldValue = date('Y'); + if (!$publication) { + $publication = $this->getCurrentPublication(); + } + if ($publication->getData('datePublished')) { + $fieldValue = date('Y', strtotime($publication->getData('datePublished'))); + } + break; + default: assert(false); + } + + // Return the fetched license field + if ($locale === null) { + return $fieldValue; + } + if (isset($fieldValue[$locale])) { + return $fieldValue[$locale]; + } + return null; + } + + /** + * get cover page server-side file name + * + * @return string + * + * @deprecated 3.2.0.0 + */ + public function getCoverImage() + { + $publication = $this->getCurrentPublication(); + if (!$publication) { + return ''; + } + return $publication->getData('coverImage'); + } + + /** + * get cover page alternate text + * + * @return string + * + * @deprecated 3.2.0.0 + */ + public function getCoverImageAltText() + { + $publication = $this->getCurrentPublication(); + if (!$publication) { + return ''; + } + $coverImage = $publication->getData('coverImage'); + return empty($coverImage['altText']) ? '' : $coverImage['altText']; + } + + /** + * Get a string indicating all authors or, if it is an edited volume, editors. + * + * @param bool $preferred If the preferred public name should be used, if exist + * + * @return string + * + * @deprecated 3.2.0.0 + */ + public function getAuthorOrEditorString($preferred = true) + { + if ($this->getWorkType() != self::WORK_TYPE_EDITED_VOLUME) { + $userGroups = Repo::userGroup()->getCollector() + ->filterByContextIds([$this->getData('contextId')]) + ->getMany(); + + return $this->getCurrentPublication()->getAuthorString($userGroups); + } + + return $this->getCurrentPublication()->getEditorString(); + } + + /** + * get enableChapterPublicationDates status + * + * @return int + */ + public function getEnableChapterPublicationDates() + { + return $this->getData('enableChapterPublicationDates'); + } + + /** + * set enableChapterPublicationDates status + * + * @param int $enableChapterPublicationDates + */ + public function setEnableChapterPublicationDates($enableChapterPublicationDates) + { + $this->setData('enableChapterPublicationDates', $enableChapterPublicationDates); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\submission\Submission', '\Submission'); + define('WORK_TYPE_EDITED_VOLUME', Submission::WORK_TYPE_EDITED_VOLUME); + define('WORK_TYPE_AUTHORED_WORK', Submission::WORK_TYPE_AUTHORED_WORK); +} diff --git a/classes/submission/SubmissionDAO.inc.php b/classes/submission/SubmissionDAO.inc.php deleted file mode 100644 index 696b5dad262..00000000000 --- a/classes/submission/SubmissionDAO.inc.php +++ /dev/null @@ -1,76 +0,0 @@ - 'submission_id', - 'contextId' => 'context_id', - 'currentPublicationId' => 'current_publication_id', - 'dateLastActivity' => 'date_last_activity', - 'dateSubmitted' => 'date_submitted', - 'lastModified' => 'last_modified', - 'locale' => 'locale', - 'stageId' => 'stage_id', - 'status' => 'status', - 'submissionProgress' => 'submission_progress', - 'workType' => 'work_type', - ]; - - /** - * Get a new data object representing the monograph. - * @return Submission - */ - public function newDataObject() { - return new Submission(); - } - - /** - * @copydoc PKPSubmissionDAO::deleteById - */ - function deleteById($submissionId) { - parent::deleteById($submissionId); - - // Delete references to features or new releases. - $featureDao = DAORegistry::getDAO('FeatureDAO'); /* @var $featureDao FeatureDAO */ - $featureDao->deleteByMonographId($submissionId); - - $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); /* @var $newReleaseDao NewReleaseDAO */ - $newReleaseDao->deleteByMonographId($submissionId); - - $monographSearchIndex = Application::getSubmissionSearchIndex(); - $monographSearchIndex->deleteTextIndex($submissionId); - $monographSearchIndex->submissionChangesFinished(); - } - - /** - * Get possible sort options. - * @return array - */ - public function getSortSelectOptions() { - return array_merge(parent::getSortSelectOptions(), array( - $this->getSortOption(ORDERBY_SERIES_POSITION, SORT_DIRECTION_ASC) => __('catalog.sortBy.seriesPositionAsc'), - $this->getSortOption(ORDERBY_SERIES_POSITION, SORT_DIRECTION_DESC) => __('catalog.sortBy.seriesPositionDesc'), - )); - } -} - diff --git a/classes/submission/SubmissionFileDAO.inc.php b/classes/submission/SubmissionFileDAO.inc.php deleted file mode 100644 index 21bb8db182c..00000000000 --- a/classes/submission/SubmissionFileDAO.inc.php +++ /dev/null @@ -1,63 +0,0 @@ - 'assoc_id', - 'assocType' => 'assoc_type', - 'createdAt' => 'created_at', - 'directSalesPrice' => 'direct_sales_price', - 'fileId' => 'file_id', - 'fileStage' => 'file_stage', - 'genreId' => 'genre_id', - 'id' => 'submission_file_id', - 'salesType' => 'sales_type', - 'sourceSubmissionFileId' => 'source_submission_file_id', - 'submissionId' => 'submission_id', - 'updatedAt' => 'updated_at', - 'uploaderUserId' => 'uploader_user_id', - 'viewable' => 'viewable', - ]; - - /** - * Update the files associated with a chapter - * - * @param array $submissionFileIds - * @param int $chapterId - */ - public function updateChapterFiles($submissionFileIds, $chapterId) { - Capsule::table('submission_file_settings') - ->where('setting_name', '=', 'chapterId') - ->where('setting_value', '=', $chapterId) - ->delete(); - - if (!empty($submissionFileIds)) { - $insertRows = array_map(function($submissionFileId) use ($chapterId) { - return [ - 'submission_file_id' => $submissionFileId, - 'setting_name' => 'chapterId', - 'setting_value' => $chapterId, - ]; - }, $submissionFileIds); - Capsule::table('submission_file_settings')->insert($insertRows); - } - } -} diff --git a/classes/submission/SubmissionMetadataFormImplementation.inc.php b/classes/submission/SubmissionMetadataFormImplementation.inc.php deleted file mode 100644 index 49bb8ebfe73..00000000000 --- a/classes/submission/SubmissionMetadataFormImplementation.inc.php +++ /dev/null @@ -1,41 +0,0 @@ -_parentForm->setData('series', $seriesDao->getById($submission->getSeriesId())); - } - } -} - - diff --git a/classes/submission/form/SubmissionSubmitStep1Form.inc.php b/classes/submission/form/SubmissionSubmitStep1Form.inc.php deleted file mode 100644 index 717b5efddcb..00000000000 --- a/classes/submission/form/SubmissionSubmitStep1Form.inc.php +++ /dev/null @@ -1,132 +0,0 @@ -addCheck(new FormValidatorCustom($this, 'seriesId', 'optional', 'author.submit.seriesRequired', array(DAORegistry::getDAO('SeriesDAO'), 'getById'), array($context->getId()))); - } - - /** - * @copydoc PKPSubmissionSubmitStep1Form::fetch - */ - function fetch($request, $template = null, $display = false) { - $roleDao = DAORegistry::getDAO('RoleDAO'); - $user = $request->getUser(); - $canSubmitAll = $roleDao->userHasRole($this->context->getId(), $user->getId(), ROLE_ID_MANAGER) || - $roleDao->userHasRole($this->context->getId(), $user->getId(), ROLE_ID_SUB_EDITOR); - - // Get series for this context - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $activeSeries = []; - $seriesIterator = $seriesDao->getByContextId($this->context->getId(), null, !$canSubmitAll); - while ($series = $seriesIterator->next()) { - if (!$series->getIsInactive()) { - $activeSeries[$series->getId()] = $series->getLocalizedTitle(); - } - } - $seriesOptions = ['' => __('submission.submit.selectSeries')] + $activeSeries; - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('seriesOptions', $seriesOptions); - - return parent::fetch($request, $template, $display); - } - - /** - * @copydoc PKPSubmissionSubmitStep1Form::initData - */ - function initData($data = array()) { - if (isset($this->submission)) { - parent::initData(array( - 'seriesId' => $this->submission->getSeriesId(), - 'seriesPosition' => $this->submission->getSeriesPosition(), - 'workType' => $this->submission->getWorkType(), - )); - } else { - parent::initData(); - } - } - - /** - * Perform additional validation checks - * @copydoc PKPSubmissionSubmitStep1Form::validate - */ - function validate($callHooks = true) { - if (!parent::validate($callHooks)) return false; - - $request = Application::get()->getRequest(); - $context = $request->getContext(); - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($this->getData('seriesId'), $context->getId()); - $seriesIsInactive = ($series && $series->getIsInactive()) ? true : false; - // Ensure that submissions are enabled and the assigned series is activated - if ($context->getData('disableSubmissions') || $seriesIsInactive) { - return false; - } - - return true; - } - - /** - * Assign form data to user-submitted data. - */ - function readInputData() { - $this->readUserVars(array( - 'workType', 'seriesId', 'seriesPosition', - )); - parent::readInputData(); - } - - /** - * Set the submission data from the form. - * @param $submission Submission - */ - function setSubmissionData($submission) { - $submission->setWorkType($this->getData('workType')); - $submission->setSeriesId($this->getData('seriesId')); - $submission->setSeriesPosition($this->getData('seriesPosition')); - parent::setSubmissionData($submission); - } - - /** - * Save changes to submission. - * @return int the submission ID - */ - function execute(...$functionParams) { - - $submissionId = parent::execute(...$functionParams); - - $request = Application::get()->getRequest(); - - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /** @var SeriesDAO $seriesDao */ - - $series = $seriesDao->getById((int)$request->getUserVar('seriesId'), (int)$request->getContext()->getId()); - - Services::get('publication') - ->edit( - $this->submission->getCurrentPublication(), - ['seriesId' => $series ? $series->getId() : null], - $request - ); - - return $submissionId; - } -} diff --git a/classes/submission/form/SubmissionSubmitStep2Form.inc.php b/classes/submission/form/SubmissionSubmitStep2Form.inc.php deleted file mode 100644 index 639f5cd1031..00000000000 --- a/classes/submission/form/SubmissionSubmitStep2Form.inc.php +++ /dev/null @@ -1,21 +0,0 @@ -submission, 'SUBMISSION_ACK', null, null, false); - $authorMail = new MonographMailTemplate($this->submission, 'SUBMISSION_ACK_NOT_USER', null, null, false); - - $request = Application::get()->getRequest(); - $context = $request->getContext(); - $router = $request->getRouter(); - if ($mail->isEnabled()) { - // submission ack emails should be from the contact. - $mail->setFrom($this->context->getData('contactEmail'), $this->context->getData('contactName')); - $authorMail->setFrom($this->context->getData('contactEmail'), $this->context->getData('contactName')); - - $user = $request->getUser(); - $primaryAuthor = $this->submission->getPrimaryAuthor(); - if (!isset($primaryAuthor)) { - $authors = $this->submission->getAuthors(); - $primaryAuthor = $authors[0]; - } - $mail->addRecipient($user->getEmail(), $user->getFullName()); - - if ($user->getEmail() != $primaryAuthor->getEmail()) { - $authorMail->addRecipient($primaryAuthor->getEmail(), $primaryAuthor->getFullName()); - } - - $assignedAuthors = $this->submission->getAuthors(); - - foreach ($assignedAuthors as $author) { - $authorEmail = $author->getEmail(); - // only add the author email if they have not already been added as the primary author - // or user creating the submission. - if ($authorEmail != $primaryAuthor->getEmail() && $authorEmail != $user->getEmail()) { - $authorMail->addRecipient($author->getEmail(), $author->getFullName()); - } - } - $mail->bccAssignedSeriesEditors($this->submissionId, WORKFLOW_STAGE_ID_SUBMISSION); - - $mail->assignParams([ - 'authorName' => htmlspecialchars($user->getFullName()), - 'authorUsername' => htmlspecialchars($user->getUsername()), - 'editorialContactSignature' => htmlspecialchars($context->getData('contactName')) . '
' . htmlspecialchars($context->getLocalizedName()), - 'submissionUrl' => $router->url($request, null, 'authorDashboard', 'submission', $this->submissionId), - ]); - - $authorMail->assignParams([ - 'submitterName' => htmlspecialchars($user->getFullName()), - 'editorialContactSignature' => htmlspecialchars($context->getData('contactName')) . "
" . htmlspecialchars($context->getLocalizedName()), - ]); - - if (!$mail->send($request)) { - import('classes.notification.NotificationManager'); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($request->getUser()->getId(), NOTIFICATION_TYPE_ERROR, array('contents' => __('email.compose.error'))); - } - - $recipients = $authorMail->getRecipients(); - if (!empty($recipients)) { - if (!$authorMail->send($request)) { - import('classes.notification.NotificationManager'); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($request->getUser()->getId(), NOTIFICATION_TYPE_ERROR, array('contents' => __('email.compose.error'))); - } - } - } - - // Log submission. - import('lib.pkp.classes.log.SubmissionLog'); - import('classes.log.SubmissionEventLogEntry'); // constants - SubmissionLog::logEvent($request, $this->submission, SUBMISSION_LOG_SUBMISSION_SUBMIT, 'submission.event.submissionSubmitted'); - - return $this->submissionId; - } -} diff --git a/classes/submission/maps/Schema.php b/classes/submission/maps/Schema.php new file mode 100644 index 00000000000..16c8a1b0ba3 --- /dev/null +++ b/classes/submission/maps/Schema.php @@ -0,0 +1,68 @@ +request->getDispatcher()->url( + $this->request, + Application::ROUTE_PAGE, + $this->context->getPath(), + 'catalog', + 'book', + $submission->getBestId() + ); + } + + if (in_array('featured', $props)) { + $featureDao = DAORegistry::getDAO('FeatureDAO'); /** @var FeatureDAO $featureDao */ + $output['featured'] = $featureDao->getFeaturedAll($submission->getId()); + } + + if (in_array('newRelease', $props)) { + $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); /** @var NewReleaseDAO $newReleaseDao */ + $output['newRelease'] = $newReleaseDao->getNewReleaseAll($submission->getId()); + } + + $output = $this->schemaService->addMissingMultilingualValues($this->schemaService::SCHEMA_SUBMISSION, $output, $this->context->getSupportedSubmissionLocales()); + + ksort($output); + + return $this->withExtensions($output, $submission); + } +} diff --git a/classes/submission/reviewer/ReviewerSubmission.inc.php b/classes/submission/reviewer/ReviewerSubmission.inc.php deleted file mode 100644 index 333431eb8d7..00000000000 --- a/classes/submission/reviewer/ReviewerSubmission.inc.php +++ /dev/null @@ -1,372 +0,0 @@ -getData('competingInterests'); - } - - /** - * Set the competing interests statement. - * @param $competingInterests string - */ - public function setCompetingInterests($competingInterests) { - $this->setData('competingInterests', $competingInterests); - } - - /** - * Get ID of review assignment. - * @return int - */ - public function getReviewId() { - return $this->getData('reviewId'); - } - - /** - * Set ID of review assignment - * @param $reviewId int - */ - public function setReviewId($reviewId) { - $this->setData('reviewId', $reviewId); - } - - /** - * Get ID of reviewer. - * @return int - */ - public function getReviewerId() { - return $this->getData('reviewerId'); - } - - /** - * Set ID of reviewer. - * @param $reviewerId int - */ - public function setReviewerId($reviewerId) { - $this->setData('reviewerId', $reviewerId); - } - - /** - * Get full name of reviewer. - * @return string - */ - public function getReviewerFullName() { - return $this->getData('reviewerFullName'); - } - - /** - * Set full name of reviewer. - * @param $reviewerFullName string - */ - public function setReviewerFullName($reviewerFullName) { - $this->setData('reviewerFullName', $reviewerFullName); - } - - /** - * Get editor decisions. - * @return array - */ - public function getDecisions() { - return $this->editorDecisions; - } - - /** - * Set editor decisions. - * @param $editorDecisions array - * @param $round int - */ - public function setDecisions($editorDecisions) { - return $this->editorDecisions = $editorDecisions; - } - - /** - * Get reviewer recommendation. - * @return string - */ - public function getRecommendation() { - return $this->getData('recommendation'); - } - - /** - * Set reviewer recommendation. - * @param $recommendation string - */ - public function setRecommendation($recommendation) { - $this->setData('recommendation', $recommendation); - } - - /** - * Get the reviewer's assigned date. - * @return string - */ - public function getDateAssigned() { - return $this->getData('dateAssigned'); - } - - /** - * Set the reviewer's assigned date. - * @param $dateAssigned string - */ - public function setDateAssigned($dateAssigned) { - $this->setData('dateAssigned', $dateAssigned); - } - - /** - * Get the reviewer's notified date. - * @return string - */ - public function getDateNotified() { - return $this->getData('dateNotified'); - } - - /** - * Set the reviewer's notified date. - * @param $dateNotified string - */ - public function setDateNotified($dateNotified) { - $this->setData('dateNotified', $dateNotified); - } - - /** - * Get the reviewer's confirmed date. - * @return string - */ - public function getDateConfirmed() { - return $this->getData('dateConfirmed'); - } - - /** - * Set the reviewer's confirmed date. - * @param $dateConfirmed string - */ - public function setDateConfirmed($dateConfirmed) { - $this->setData('dateConfirmed', $dateConfirmed); - } - - /** - * Get the reviewer's completed date. - * @return string - */ - public function getDateCompleted() { - return $this->getData('dateCompleted'); - } - - /** - * Set the reviewer's completed date. - * @param $dateCompleted string - */ - public function setDateCompleted($dateCompleted) { - $this->setData('dateCompleted', $dateCompleted); - } - - /** - * Get the reviewer's acknowledged date. - * @return string - */ - public function getDateAcknowledged() { - return $this->getData('dateAcknowledged'); - } - - /** - * Set the reviewer's acknowledged date. - * @param $dateAcknowledged string - */ - public function setDateAcknowledged($dateAcknowledged) { - $this->setData('dateAcknowledged', $dateAcknowledged); - } - - /** - * Get the reviewer's due date. - * @return string - */ - public function getDateDue() { - return $this->getData('dateDue'); - } - - /** - * Set the reviewer's due date. - * @param $dateDue string - */ - public function setDateDue($dateDue) { - $this->setData('dateDue', $dateDue); - } - - /** - * Get the reviewer's response due date. - * @return string - */ - public function getDateResponseDue() { - return $this->getData('dateResponseDue'); - } - - /** - * Set the reviewer's response due date. - * @param $dateResponseDue string - */ - public function setDateResponseDue($dateResponseDue) { - $this->setData('dateResponseDue', $dateResponseDue); - } - - /** - * Get the declined value. - * @return boolean - */ - public function getDeclined() { - return $this->getData('declined'); - } - - /** - * Set the reviewer's declined value. - * @param $declined boolean - */ - public function setDeclined($declined) { - $this->setData('declined', $declined); - } - - /** - * Get the cancelled value. - * @return boolean - */ - public function getCancelled() { - return $this->getData('cancelled'); - } - - /** - * Set the reviewer's cancelled value. - * @param $cancelled boolean - */ - public function setCancelled($cancelled) { - $this->setData('cancelled', $cancelled); - } - - /** - * Get reviewer file id. - * @return int - */ - public function getReviewerFileId() { - return $this->getData('reviewerFileId'); - } - - /** - * Set reviewer file id. - * @param $reviewerFileId int - */ - public function setReviewerFileId($reviewerFileId) { - $this->setData('reviewerFileId', $reviewerFileId); - } - - /** - * Get quality. - * @return int - */ - public function getQuality() { - return $this->getData('quality'); - } - - /** - * Set quality. - * @param $quality int - */ - public function setQuality($quality) { - $this->setData('quality', $quality); - } - - /** - * Get stageId. - * @return int - */ - public function getStageId() { - return $this->getData('stageId'); - } - - /** - * Set stageId. - * @param $stageId int - */ - public function setStageId($stageId) { - $this->setData('stageId', $stageId); - } - - /** - * Get the method of the review (open, anonymous, or double-anonymous). - * @return int - */ - public function getReviewMethod() { - return $this->getData('reviewMethod'); - } - - /** - * Set the type of review. - * @param $method int - */ - public function setReviewMethod($method) { - $this->setData('reviewMethod', $method); - } - - /** - * Get round. - * @return int - */ - public function getRound() { - return $this->getData('round'); - } - - /** - * Set round. - * @param $round int - */ - public function setRound($round) { - $this->setData('round', $round); - } - - /** - * Get step. - * @return int - */ - public function getStep() { - return $this->getData('step'); - } - - /** - * Set status. - * @param $status int - */ - public function setStep($step) { - $this->setData('step', $step); - } -} - - diff --git a/classes/submission/reviewer/ReviewerSubmissionDAO.inc.php b/classes/submission/reviewer/ReviewerSubmissionDAO.inc.php deleted file mode 100644 index 538b9fa2d3d..00000000000 --- a/classes/submission/reviewer/ReviewerSubmissionDAO.inc.php +++ /dev/null @@ -1,166 +0,0 @@ -authorDao = DAORegistry::getDAO('AuthorDAO'); - $this->userDao = DAORegistry::getDAO('UserDAO'); - $this->reviewAssignmentDao = DAORegistry::getDAO('ReviewAssignmentDAO'); - $this->submissionCommentDao = DAORegistry::getDAO('SubmissionCommentDAO'); - } - - /** - * Retrieve a reviewer submission by monograph ID. - * @param $monographId int - * @param $reviewerId int - * @return ReviewerSubmission|null - */ - function getReviewerSubmission($reviewId) { - $primaryLocale = AppLocale::getPrimaryLocale(); - $locale = AppLocale::getLocale(); - $result = $this->retrieve( - 'SELECT m.*, p.date_published, - r.*, - COALESCE(stl.setting_value, stpl.setting_value) AS series_title - FROM submissions m - LEFT JOIN publications p ON (m.current_publication_id = p.publication_id) - LEFT JOIN review_assignments r ON (m.submission_id = r.submission_id) - LEFT JOIN series s ON (s.series_id = p.series_id) - LEFT JOIN series_settings stpl ON (s.series_id = stpl.series_id AND stpl.setting_name = ? AND stpl.locale = ?) - LEFT JOIN series_settings stl ON (s.series_id = stl.series_id AND stl.setting_name = ? AND stl.locale = ?) - WHERE r.review_id = ?', - [ - 'title', $primaryLocale, // Series title - 'title', $locale, // Series title - (int) $reviewId - ] - ); - $row = $result->current(); - return $row ? $this->_fromRow((array) $row) : null; - } - - /** - * Construct a new data object corresponding to this DAO. - * @return ReviewerSubmission - */ - function newDataObject() { - return new ReviewerSubmission(); - } - - /** - * Internal function to return a ReviewerSubmission object from a row. - * @param $row array - * @return ReviewerSubmission - */ - function _fromRow($row) { - // Get the ReviewerSubmission object, populated with Monograph data - $reviewerSubmission = parent::_fromRow($row); - $reviewer = $this->userDao->getById($row['reviewer_id']); - - // Editor Decisions - $editDecisionDao = DAORegistry::getDAO('EditDecisionDAO'); /* @var $editDecisionDao EditDecisionDAO */ - $decisions = $editDecisionDao->getEditorDecisions($row['submission_id']); - $reviewerSubmission->setDecisions($decisions); - - // Review Assignment - $reviewerSubmission->setReviewId($row['review_id']); - $reviewerSubmission->setReviewerId($row['reviewer_id']); - $reviewerSubmission->setReviewerFullName($reviewer->getFullName()); - $reviewerSubmission->setCompetingInterests($row['competing_interests']); - $reviewerSubmission->setRecommendation($row['recommendation']); - $reviewerSubmission->setDateAssigned($this->datetimeFromDB($row['date_assigned'])); - $reviewerSubmission->setDateNotified($this->datetimeFromDB($row['date_notified'])); - $reviewerSubmission->setDateConfirmed($this->datetimeFromDB($row['date_confirmed'])); - $reviewerSubmission->setDateCompleted($this->datetimeFromDB($row['date_completed'])); - $reviewerSubmission->setDateAcknowledged($this->datetimeFromDB($row['date_acknowledged'])); - $reviewerSubmission->setDateDue($this->datetimeFromDB($row['date_due'])); - $reviewerSubmission->setDateResponseDue($this->datetimeFromDB($row['date_response_due'])); - $reviewerSubmission->setDeclined($row['declined']); - $reviewerSubmission->setCancelled($row['cancelled']); - $reviewerSubmission->setQuality($row['quality']); - $reviewerSubmission->setRound($row['round']); - $reviewerSubmission->setStep($row['step']); - $reviewerSubmission->setStageId($row['stage_id']); - $reviewerSubmission->setReviewMethod($row['review_method']); - - HookRegistry::call('ReviewerSubmissionDAO::_fromRow', array(&$reviewerSubmission, &$row)); - return $reviewerSubmission; - } - - /** - * Update an existing review submission. - * @param $reviewSubmission ReviewSubmission - */ - function updateReviewerSubmission($reviewerSubmission) { - $this->update( - sprintf('UPDATE review_assignments - SET submission_id = ?, - reviewer_id = ?, - stage_id = ?, - review_method = ?, - round = ?, - step = ?, - competing_interests = ?, - recommendation = ?, - declined = ?, - cancelled = ?, - date_assigned = %s, - date_notified = %s, - date_confirmed = %s, - date_completed = %s, - date_acknowledged = %s, - date_due = %s, - date_response_due = %s, - quality = ? - WHERE review_id = ?', - $this->datetimeToDB($reviewerSubmission->getDateAssigned()), - $this->datetimeToDB($reviewerSubmission->getDateNotified()), - $this->datetimeToDB($reviewerSubmission->getDateConfirmed()), - $this->datetimeToDB($reviewerSubmission->getDateCompleted()), - $this->datetimeToDB($reviewerSubmission->getDateAcknowledged()), - $this->datetimeToDB($reviewerSubmission->getDateDue()), - $this->datetimeToDB($reviewerSubmission->getDateResponseDue())), - [ - (int) $reviewerSubmission->getId(), - (int) $reviewerSubmission->getReviewerId(), - (int) $reviewerSubmission->getStageId(), - (int) $reviewerSubmission->getReviewMethod(), - (int) $reviewerSubmission->getRound(), - (int) $reviewerSubmission->getStep(), - $reviewerSubmission->getCompetingInterests(), - (int) $reviewerSubmission->getRecommendation(), - (int) $reviewerSubmission->getDeclined(), - (int) $reviewerSubmission->getCancelled(), - (int) $reviewerSubmission->getQuality(), - (int) $reviewerSubmission->getReviewId() - ] - ); - } -} - - diff --git a/classes/submissionFile/DAO.php b/classes/submissionFile/DAO.php new file mode 100644 index 00000000000..d0f25951dd6 --- /dev/null +++ b/classes/submissionFile/DAO.php @@ -0,0 +1,80 @@ + 'assoc_id', + 'assocType' => 'assoc_type', + 'createdAt' => 'created_at', + 'directSalesPrice' => 'direct_sales_price', + 'fileId' => 'file_id', + 'fileStage' => 'file_stage', + 'genreId' => 'genre_id', + 'id' => 'submission_file_id', + 'salesType' => 'sales_type', + 'sourceSubmissionFileId' => 'source_submission_file_id', + 'submissionId' => 'submission_id', + 'updatedAt' => 'updated_at', + 'uploaderUserId' => 'uploader_user_id', + 'viewable' => 'viewable', + 'doiId' => 'doi_id' + ]; + + /** + * Update the files associated with a chapter + * + * @param array $submissionFileIds + * @param int $chapterId + */ + public function updateChapterFiles($submissionFileIds, $chapterId) + { + DB::table('submission_file_settings') + ->where('setting_name', '=', 'chapterId') + ->where('setting_value', '=', $chapterId) + ->delete(); + + if (!empty($submissionFileIds)) { + $insertRows = array_map(function ($submissionFileId) use ($chapterId) { + return [ + 'submission_file_id' => $submissionFileId, + 'setting_name' => 'chapterId', + 'setting_value' => $chapterId, + ]; + }, $submissionFileIds); + DB::table('submission_file_settings')->insert($insertRows); + } + } + + /** + * @copydoc SchemaDAO::fromRow() + */ + public function fromRow(object $primaryRow): SubmissionFile + { + $submissionFile = parent::fromRow($primaryRow); + + if (!empty($submissionFile->getData('doiId'))) { + $submissionFile->setData('doiObject', Repo::doi()->get($submissionFile->getData('doiId'))); + } + + return $submissionFile; + } +} diff --git a/classes/submissionFile/Repository.php b/classes/submissionFile/Repository.php new file mode 100644 index 00000000000..863c47a2363 --- /dev/null +++ b/classes/submissionFile/Repository.php @@ -0,0 +1,75 @@ +schemaService = $schemaService; + $this->dao = $dao; + $this->request = $request; + } + + public function getCollector(): Collector + { + return App::makeWith(Collector::class, ['dao' => $this->dao]); + } + + public function getFileStages(): array + { + $stages = [ + SubmissionFile::SUBMISSION_FILE_SUBMISSION, + SubmissionFile::SUBMISSION_FILE_NOTE, + SubmissionFile::SUBMISSION_FILE_INTERNAL_REVIEW_FILE, + SubmissionFile::SUBMISSION_FILE_REVIEW_FILE, + SubmissionFile::SUBMISSION_FILE_REVIEW_ATTACHMENT, + SubmissionFile::SUBMISSION_FILE_FINAL, + SubmissionFile::SUBMISSION_FILE_COPYEDIT, + SubmissionFile::SUBMISSION_FILE_PROOF, + SubmissionFile::SUBMISSION_FILE_PRODUCTION_READY, + SubmissionFile::SUBMISSION_FILE_ATTACHMENT, + SubmissionFile::SUBMISSION_FILE_REVIEW_REVISION, + SubmissionFile::SUBMISSION_FILE_INTERNAL_REVIEW_REVISION, + SubmissionFile::SUBMISSION_FILE_DEPENDENT, + SubmissionFile::SUBMISSION_FILE_QUERY, + ]; + + Hook::call('SubmissionFile::fileStages', [&$stages]); + + return $stages; + } +} diff --git a/classes/submissionFile/maps/Schema.php b/classes/submissionFile/maps/Schema.php new file mode 100644 index 00000000000..4520b630444 --- /dev/null +++ b/classes/submissionFile/maps/Schema.php @@ -0,0 +1,41 @@ +getData('doiId')) { + $retVal = Repo::doi()->getSchemaMap()->summarize($item->getData('doiObject')); + } else { + $retVal = null; + } + $output['doiObject'] = $retVal; + } + + ksort($output); + + return $output; + } +} diff --git a/classes/sushi/PR.php b/classes/sushi/PR.php new file mode 100644 index 00000000000..68607003c2c --- /dev/null +++ b/classes/sushi/PR.php @@ -0,0 +1,353 @@ + 'Data_Type', + 'supportedValues' => ['Book'], + 'param' => 'data_type' + ], + [ + 'name' => 'Metric_Type', + 'supportedValues' => ['Total_Item_Investigations', 'Unique_Item_Investigations', 'Total_Item_Requests', 'Unique_Item_Requests', 'Unique_Title_Investigations', 'Unique_Title_Requests'], + 'param' => 'metric_type' + ], + [ + 'name' => 'Access_Method', + 'supportedValues' => ['Regular'], + 'param' => 'access_method' + ], + ]; + } + + /** + * Get attributes supported by this report. + * + * The attributes will be displayed and they define what the metrics will be aggregated by. + * Data_Type and Access_Method are currently always the same for this report, + * so they will only be displayed and not considered for metrics aggregation. + * The only attribute considered for metrics aggregation is granularity=Month. + */ + public function getSupportedAttributes(): array + { + return [ + [ + 'name' => 'Attributes_To_Show', + 'supportedValues' => ['Data_Type', 'Access_Method'], + 'param' => 'attributes_to_show' + ], + [ + 'name' => 'granularity', + 'supportedValues' => ['Month', 'Totals'], + 'param' => 'granularity'], + ]; + } + + + /** Get DB query results for the report */ + protected function getQueryResults(): Collection + { + $params['contextIds'] = [$this->context->getId()]; + $params['institutionId'] = $this->customerId; + $params['dateStart'] = $this->beginDate; + $params['dateEnd'] = $this->endDate; + // do not consider metric_type filter now, but for display + + $statsService = Services::get('sushiStats'); + $metricsQB = $statsService->getQueryBuilder($params); + $groupBy = []; + // consider granularity=Month to group the metrics by month + if ($this->granularity == 'Month') { + $groupBy = [PKPStatisticsHelper::STATISTICS_DIMENSION_MONTH]; + $orderBy[] = [PKPStatisticsHelper::STATISTICS_DIMENSION_MONTH => 'asc']; + } + $metricsQB = $metricsQB->getSum($groupBy); + // if set, consider results ordering by month + foreach ($orderBy as $orderByValue) { + foreach ($orderByValue as $column => $direction) { + $metricsQB = $metricsQB->orderBy($column, $direction); + } + } + $results = $metricsQB->get(); + if (!$results->count()) { + $this->addWarning([ + 'Code' => 3030, + 'Severity' => 'Error', + 'Message' => 'No Usage Available for Requested Dates', + 'Data' => __('sushi.exception.3030', ['beginDate' => $this->beginDate, 'endDate' => $this->endDate]) + ]); + } + return $results; + } + + /** Get report items */ + public function getReportItems(): array + { + $results = $this->getQueryResults(); + + // There is only one platform, so there will be only one report item + $item['Platform'] = $this->platformName; + + foreach ($this->attributesToShow as $attributeToShow) { + if ($attributeToShow == 'Data_Type') { + $item['Data_Type'] = self::DATA_TYPE; + } elseif ($attributeToShow == 'Access_Method') { + $item['Access_Method'] = self::ACCESS_METHOD; + } + } + + $performances = []; + foreach ($results as $result) { + // if granularity=Month, the results will contain metrics for each month + // else the results will only contain the summarized metrics for the whole period + if (isset($result->month)) { + $periodBeginDate = date_format(date_create($result->month . '01'), 'Y-m-01'); + $periodEndDate = date_format(date_create($result->month . '01'), 'Y-m-t'); + } else { + $periodBeginDate = date_format(date_create($this->beginDate), 'Y-m-01'); + $periodEndDate = date_format(date_create($this->endDate), 'Y-m-t'); + } + $periodMetrics['Period'] = [ + 'Begin_Date' => $periodBeginDate, + 'End_Date' => $periodEndDate, + ]; + + $instances = []; + $metrics['Total_Item_Investigations'] = $result->metric_book_investigations + $result->metric_chapter_investigations; + $metrics['Unique_Item_Investigations'] = $result->metric_book_investigations_unique + $result->metric_chapter_investigations_unique; + $metrics['Total_Item_Requests'] = $result->metric_book_requests + $result->metric_chapter_requests; + $metrics['Unique_Item_Requests'] = $result->metric_book_requests_unique + $result->metric_chapter_requests_unique; + $metrics['Unique_Title_Investigations'] = $result->metric_title_investigations_unique; + $metrics['Unique_Title_Requests'] = $result->metric_title_requests_unique; + // filter here by requested metric types + foreach ($this->metricTypes as $metricType) { + if ($metrics[$metricType] > 0) { + $instances[] = [ + 'Metric_Type' => $metricType, + 'Count' => (int) $metrics[$metricType] + ]; + } + } + $periodMetrics['Instance'] = $instances; + $performances[] = $periodMetrics; + } + $item['Performance'] = $performances; + $items = [$item]; + return $items; + } + + /** Get TSV report column names */ + public function getTSVColumnNames(): array + { + $columnRow = ['Platform']; + if (in_array('Data_Type', $this->attributesToShow)) { + array_push($columnRow, 'Data_Type'); + } + if (in_array('Access_Method', $this->attributesToShow)) { + array_push($columnRow, 'Access_Method'); + } + array_push($columnRow, 'Metric_Type', 'Reporting_Period_Total'); + if ($this->granularity == 'Month') { + $period = $this->getMonthlyDatePeriod(); + foreach ($period as $dt) { + array_push($columnRow, $dt->format('M-Y')); + } + } + return [$columnRow]; + } + + /** Get TSV report rows */ + public function getTSVReportItems(): array + { + $results = $this->getQueryResults(); + + // get total numbers for every metric type + $metricsTotal['Total_Item_Investigations'] = $results->pluck('metric_book_investigations')->sum() + $results->pluck('metric_chapter_investigations')->sum(); + $metricsTotal['Unique_Item_Investigations'] = $results->pluck('metric_book_investigations_unique')->sum() + $results->pluck('metric_chapter_investigations_unique')->sum(); + $metricsTotal['Total_Item_Requests'] = $results->pluck('metric_book_requests')->sum() + $results->pluck('metric_chapter_requests')->sum(); + $metricsTotal['Unique_Item_Requests'] = $results->pluck('metric_book_requests_unique')->sum() + $results->pluck('metric_chapter_requests_unique')->sum(); + $metricsTotal['Unique_Title_Investigations'] = $results->pluck('metric_title_investigations_unique')->sum(); + $metricsTotal['Unique_Title_Requests'] = $results->pluck('metric_title_requests_unique')->sum(); + + $resultRows = []; + // filter here by requested metric types + foreach ($this->metricTypes as $metricType) { + // if the total numbers for the given metric type > 0 + if ($metricsTotal[$metricType] > 0) { + // construct the result row + $resultRow = []; + array_push($resultRow, $this->platformName); // Platform + if (in_array('Data_Type', $this->attributesToShow)) { + array_push($resultRow, self::DATA_TYPE); // Data_Type + } + if (in_array('Access_Method', $this->attributesToShow)) { + array_push($resultRow, self::ACCESS_METHOD); // Access_Method + } + array_push($resultRow, $metricType); // Metric_Type + array_push($resultRow, $metricsTotal[$metricType]); // Reporting_Period_Total + if ($this->granularity == 'Month') { // metrics for each month in the given period + $period = $this->getMonthlyDatePeriod(); + foreach ($period as $dt) { + $month = $dt->format('Ym'); + $result = $results->firstWhere('month', '=', $month); + if ($result === null) { + array_push($resultRow, '0'); + } else { + $metrics['Total_Item_Investigations'] = $result->metric_book_investigations + $result->metric_chapter_investigations; + $metrics['Unique_Item_Investigations'] = $result->metric_book_investigations_unique + $result->metric_chapter_investigations_unique; + $metrics['Total_Item_Requests'] = $result->metric_book_requests + $result->metric_chapter_requests; + $metrics['Unique_Item_Requests'] = $result->metric_book_requests_unique + $result->metric_chapter_requests_unique; + $metrics['Unique_Title_Investigations'] = $result->metric_title_investigations_unique; + $metrics['Unique_Title_Requests'] = $result->metric_title_requests_unique; + array_push($resultRow, $metrics[$metricType]); + } + } + } + $resultRows[] = $resultRow; + } + } + + return $resultRows; + } + + /** Get report specific form fields */ + public static function getReportSettingsFormFields(): array + { + $formFields = parent::getCommonReportSettingsFormFields(); + + $metricTypes = [ + 'Total_Item_Investigations', + 'Unique_Item_Investigations', + 'Total_Item_Requests', + 'Unique_Item_Requests', + 'Unique_Title_Investigations', + 'Unique_Title_Requests' + ]; + $metricTypeOptions = []; + foreach ($metricTypes as $metricType) { + $metricTypeOptions[] = ['value' => $metricType, 'label' => $metricType]; + } + $formFields[] = new FieldOptions('metric_type', [ + 'label' => __('manager.statistics.counterR5Report.settings.metricType'), + 'options' => $metricTypeOptions, + 'value' => $metricTypes, + 'groupId' => 'default', + ]); + + $attributesToShow = ['Data_Type', 'Access_Method']; + $attributesToShowOptions = []; + foreach ($attributesToShow as $attributeToShow) { + $attributesToShowOptions[] = ['value' => $attributeToShow, 'label' => $attributeToShow]; + } + $formFields[] = new FieldOptions('attributes_to_show', [ + 'label' => __('manager.statistics.counterR5Report.settings.attributesToShow'), + 'options' => $attributesToShowOptions, + 'value' => [], + 'groupId' => 'default', + ]); + + $formFields[] = new FieldOptions('granularity', [ + 'label' => __('manager.statistics.counterR5Report.settings.excludeMonthlyDetails'), + 'options' => [ + ['value' => true, 'label' => __('manager.statistics.counterR5Report.settings.excludeMonthlyDetails')], + ], + 'value' => false, + 'groupId' => 'default', + ]); + + return $formFields; + } +} diff --git a/classes/sushi/PR_P1.php b/classes/sushi/PR_P1.php new file mode 100644 index 00000000000..2346543d32b --- /dev/null +++ b/classes/sushi/PR_P1.php @@ -0,0 +1,124 @@ + 'Metric_Type', + 'Value' => 'Total_Item_Requests|Unique_Item_Requests|Unique_Title_Requests' + ], + [ + 'Name' => 'Access_Method', + 'Value' => 'Regular' + ], + ]; + $this->filters = array_merge($filters, $predefinedFilters); + } + + /** + * Set attributes based on the requested parameters. + * No attributes are supported by this report. + */ + public function setAttributes(array $attributes): void + { + $this->attributes = []; + } + + /** Get report specific form fields */ + public static function getReportSettingsFormFields(): array + { + return parent::getCommonReportSettingsFormFields(); + } +} diff --git a/classes/sushi/TR.php b/classes/sushi/TR.php new file mode 100644 index 00000000000..5d608ef407e --- /dev/null +++ b/classes/sushi/TR.php @@ -0,0 +1,814 @@ + 'YOP', + 'supportedValues' => [], + 'param' => 'yop' + ], + [ + 'name' => 'Item_Id', + 'supportedValues' => [$this->context->getId()], + 'param' => 'item_id' + ], + [ + 'name' => 'Access_Type', + 'supportedValues' => [self::ACCESS_TYPE], + 'param' => 'access_type' + ], + [ + 'name' => 'Section_Type', + 'supportedValues' => ['Book', 'Chapter'], + 'param' => 'section_type' + ], + [ + 'name' => 'Data_Type', + 'supportedValues' => [self::DATA_TYPE], + 'param' => 'data_type' + ], + [ + 'name' => 'Metric_Type', + 'supportedValues' => ['Total_Item_Investigations', 'Unique_Item_Investigations', 'Total_Item_Requests', 'Unique_Item_Requests', 'Unique_Title_Investigations', 'Unique_Title_Requests'], + 'param' => 'metric_type' + ], + [ + 'name' => 'Access_Method', + 'supportedValues' => [self::ACCESS_METHOD], + 'param' => 'access_method' + ], + ]; + } + + /** + * Get attributes supported by this report. + * + * The attributes will be displayed and they define what the metrics will be aggregated by. + * Data_Type, Access_Method, and Access_Type are currently always the same for this report, + * so they will only be displayed and not considered for metrics aggregation. + * The only attributes considered for metrics aggregation are Attributes_To_Show=YOP and granularity=Month. + */ + public function getSupportedAttributes(): array + { + return [ + [ + 'name' => 'Attributes_To_Show', + 'supportedValues' => ['Data_Type', 'Access_Method', 'Section_Type', 'Access_Type', 'YOP'], + 'param' => 'attributes_to_show' + ], + [ + 'name' => 'granularity', + 'supportedValues' => ['Month', 'Totals'], + 'param' => 'granularity' + ], + ]; + } + + /** + * Set filters based on the requested parameters. + */ + public function setFilters(array $filters): void + { + parent::setFilters($filters); + foreach ($filters as $filter) { + switch ($filter['Name']) { + case 'YOP': + $this->yearsOfPublication = explode('|', $filter['Value']); + break; + case 'Section_Type': + $this->sectionTypes = explode('|', $filter['Value']); + } + } + // check section_type and metric_type mismatch ? + } + + /** Get DB query results for the report */ + protected function getQueryResults(): Collection + { + $params['contextIds'] = [$this->context->getId()]; + $params['institutionId'] = $this->customerId; + $params['dateStart'] = $this->beginDate; + $params['dateEnd'] = $this->endDate; + $params['yearsOfPublication'] = $this->yearsOfPublication; + // do not consider section_type filter now, but later when grouping by submission + // do not consider metric_type filter now, but for display + + $statsService = Services::get('sushiStats'); + $metricsQB = $statsService->getQueryBuilder($params); + // consider attributes to group the metrics by + $groupBy = ['m.' . PKPStatisticsHelper::STATISTICS_DIMENSION_SUBMISSION_ID]; + $orderBy = ['m.' . PKPStatisticsHelper::STATISTICS_DIMENSION_SUBMISSION_ID => 'asc']; + // This report is on submission level, and the relationship between submission_id and YOP is one to one, + // so no need to group or order by YOP -- it is enough to group and order by submission_id + if ($this->granularity == 'Month') { + $groupBy[] = 'm.' . PKPStatisticsHelper::STATISTICS_DIMENSION_MONTH; + $orderBy['m.' . PKPStatisticsHelper::STATISTICS_DIMENSION_MONTH] = 'asc'; + } + $metricsQB = $metricsQB->getSum($groupBy); + // if set, consider results ordering + foreach ($orderBy as $column => $direction) { + $metricsQB = $metricsQB->orderBy($column, $direction); + } + $results = $metricsQB->get(); + if (!$results->count()) { + $this->addWarning([ + 'Code' => 3030, + 'Severity' => 'Error', + 'Message' => 'No Usage Available for Requested Dates', + 'Data' => __('sushi.exception.3030', ['beginDate' => $this->beginDate, 'endDate' => $this->endDate]) + ]); + } + return $results; + } + + /** + * Get report items + */ + public function getReportItems(): array + { + $results = $this->getQueryResults(); + + // Group result by submission ID + // If Section_Type is attribute to show, group additionally by section type + // Also filter results by requested section and metric types + $resultsGroupedBySubmission = $items = []; + foreach ($results as $result) { + $includeResult = false; + if (in_array('Book', $this->sectionTypes) && + !empty(array_intersect($this->metricTypes, ['Total_Item_Investigations', 'Unique_Item_Investigations', 'Total_Item_Requests', 'Unique_Item_Requests'])) && + ($result->metric_book_investigations > 0 || $result->metric_book_investigations_unique > 0 || $result->metric_book_requests > 0 || $result->metric_book_requests_unique > 0)) { + if (in_array('Section_Type', $this->attributesToShow)) { + $resultsGroupedBySubmission[$result->submission_id]['Book'][] = $result; + } + $includeResult = true; + } + if (in_array('Chapter', $this->sectionTypes) && + !empty(array_intersect($this->metricTypes, ['Total_Item_Investigations', 'Unique_Item_Investigations', 'Total_Item_Requests', 'Unique_Item_Requests'])) && + ($result->metric_chapter_investigations > 0 || $result->metric_chapter_investigations_unique > 0 || $result->metric_chapter_requests > 0 || $result->metric_chapter_requests_unique > 0)) { + if (in_array('Section_Type', $this->attributesToShow)) { + $resultsGroupedBySubmission[$result->submission_id]['Chapter'][] = $result; + } + $includeResult = true; + } + if (in_array('Title', $this->sectionTypes) && + !empty(array_intersect($this->metricTypes, ['Unique_Title_Investigations', 'Unique_Title_Requests'])) && + ($result->metric_title_investigations_unique > 0 || $result->metric_title_requests_unique > 0)) { + if (in_array('Section_Type', $this->attributesToShow)) { + $resultsGroupedBySubmission[$result->submission_id]['Title'][] = $result; + } + $includeResult = true; + } + if (!in_array('Section_Type', $this->attributesToShow) && $includeResult) { + $resultsGroupedBySubmission[$result->submission_id][] = $result; + } + } + + foreach ($resultsGroupedBySubmission as $submissionId => $submissionResults) { + // Section_Type is in attributes_to_show, the query results are grouped by section type + if (in_array('Section_Type', $this->attributesToShow)) { + foreach ($submissionResults as $sectionType => $results) { + // Get the submission properties + $submission = Repo::submission()->get($submissionId); + if (!$submission || !$submission->getOriginalPublication()) { + break; + } + $currentPublication = $submission->getCurrentPublication(); + $submissionLocale = $submission->getData('locale'); + $itemTitle = $currentPublication->getLocalizedTitle($submissionLocale); + + $item = [ + 'Title' => $itemTitle, + 'Platform' => $this->platformName, + 'Publisher' => $this->context->getData('publisherInstitution'), + ]; + $item['Item_ID'][] = [ + 'Type' => 'Proprietary', + 'Value' => $this->platformId . ':' . $submissionId, + ]; + $doi = $currentPublication->getDoi(); + if (isset($doi)) { + $item['Item_ID'][] = [ + 'Type' => 'DOI', + 'Value' => $doi, + ]; + } + + $datePublished = $submission->getOriginalPublication()->getData('datePublished'); + foreach ($this->attributesToShow as $attributeToShow) { + if ($attributeToShow == 'Data_Type') { + $item['Data_Type'] = self::DATA_TYPE; + } elseif ($attributeToShow == 'Section_Type') { + // do not display section type for title metrics + if ($sectionType != 'Title') { + $item['Section_Type'] = $sectionType; + } + } elseif ($attributeToShow == 'Access_Type') { + $item['Access_Type'] = self::ACCESS_TYPE; + } elseif ($attributeToShow == 'Access_Method') { + $item['Access_Method'] = self::ACCESS_METHOD; + } elseif ($attributeToShow == 'YOP') { + $item['YOP'] = date('Y', strtotime($datePublished)); + } + } + + $performances = []; + foreach ($results as $result) { + // if granularity=Month, the results will contain metrics for each month + // else the results will only contain the summarized metrics for the whole period + if (isset($result->month)) { + $periodBeginDate = date_format(date_create($result->month . '01'), 'Y-m-01'); + $periodEndDate = date_format(date_create($result->month . '01'), 'Y-m-t'); + } else { + $periodBeginDate = date_format(date_create($this->beginDate), 'Y-m-01'); + $periodEndDate = date_format(date_create($this->endDate), 'Y-m-t'); + } + $periodMetrics['Period'] = [ + 'Begin_Date' => $periodBeginDate, + 'End_Date' => $periodEndDate, + ]; + + $instances = $metrics = []; + switch ($sectionType) { + case 'Book': + $metrics['Total_Item_Investigations'] = $result->metric_book_investigations; + $metrics['Unique_Item_Investigations'] = $result->metric_book_investigations_unique; + $metrics['Total_Item_Requests'] = $result->metric_book_requests; + $metrics['Unique_Item_Requests'] = $result->metric_book_requests_unique; + break; + case 'Chapter': + $metrics['Total_Item_Investigations'] = $result->metric_chapter_investigations; + $metrics['Unique_Item_Investigations'] = $result->metric_chapter_investigations_unique; + $metrics['Total_Item_Requests'] = $result->metric_chapter_requests; + $metrics['Unique_Item_Requests'] = $result->metric_chapter_requests_unique; + break; + case 'Title': + $metrics['Unique_Title_Investigations'] = $result->metric_title_investigations_unique; + $metrics['Unique_Title_Requests'] = $result->metric_title_requests_unique; + break; + } + // filter here by requested metric types + foreach ($this->metricTypes as $metricType) { + if (array_key_exists($metricType, $metrics) && $metrics[$metricType] > 0) { + $instances[] = [ + 'Metric_Type' => $metricType, + 'Count' => (int) $metrics[$metricType] + ]; + } + } + $periodMetrics['Instance'] = $instances; + $performances[] = $periodMetrics; + } + $item['Performance'] = $performances; + $items[] = $item; + } + } else { // Section_Type is not in attributes_to_show + $results = $submissionResults; + // Get the submission properties + $submission = Repo::submission()->get($submissionId); + if (!$submission || !$submission->getOriginalPublication()) { + break; + } + $currentPublication = $submission->getCurrentPublication(); + $submissionLocale = $submission->getData('locale'); + $itemTitle = $currentPublication->getLocalizedTitle($submissionLocale); + + $item = [ + 'Title' => $itemTitle, + 'Platform' => $this->platformName, + 'Publisher' => $this->context->getData('publisherInstitution'), + ]; + $item['Item_ID'][] = [ + 'Type' => 'Proprietary', + 'Value' => $this->platformId . ':' . $submissionId, + ]; + $doi = $currentPublication->getDoi(); + if (isset($doi)) { + $item['Item_ID'][] = [ + 'Type' => 'DOI', + 'Value' => $doi, + ]; + } + + $datePublished = $submission->getOriginalPublication()->getData('datePublished'); + foreach ($this->attributesToShow as $attributeToShow) { + if ($attributeToShow == 'Data_Type') { + $item['Data_Type'] = self::DATA_TYPE; + } elseif ($attributeToShow == 'Access_Type') { + $item['Access_Type'] = self::ACCESS_TYPE; + } elseif ($attributeToShow == 'Access_Method') { + $item['Access_Method'] = self::ACCESS_METHOD; + } elseif ($attributeToShow == 'YOP') { + $item['YOP'] = date('Y', strtotime($datePublished)); + } + // Section_Type is not in attributes_to_show + // so do not consider it here + } + + $performances = []; + foreach ($results as $result) { + // if granularity=Month, the results will contain metrics for each month + // else the results will only contain the summarized metrics for the whole period + if (isset($result->month)) { + $periodBeginDate = date_format(date_create($result->month . '01'), 'Y-m-01'); + $periodEndDate = date_format(date_create($result->month . '01'), 'Y-m-t'); + } else { + $periodBeginDate = date_format(date_create($this->beginDate), 'Y-m-01'); + $periodEndDate = date_format(date_create($this->endDate), 'Y-m-t'); + } + $periodMetrics['Period'] = [ + 'Begin_Date' => $periodBeginDate, + 'End_Date' => $periodEndDate, + ]; + + $instances = []; + // consider section_type filter + $metrics['Total_Item_Investigations'] = $metrics['Unique_Item_Investigations'] = + $metrics['Total_Item_Requests'] = $metrics['Unique_Item_Requests'] = 0; + if (in_array('Book', $this->sectionTypes)) { + $metrics['Total_Item_Investigations'] += $result->metric_book_investigations; + $metrics['Unique_Item_Investigations'] += $result->metric_book_investigations_unique; + $metrics['Total_Item_Requests'] += $result->metric_book_requests; + $metrics['Unique_Item_Requests'] += $result->metric_book_requests_unique; + } + if (in_array('Chapter', $this->sectionTypes)) { + $metrics['Total_Item_Investigations'] += $result->metric_chapter_investigations; + $metrics['Unique_Item_Investigations'] += $result->metric_chapter_investigations_unique; + $metrics['Total_Item_Requests'] += $result->metric_chapter_requests; + $metrics['Unique_Item_Requests'] += $result->metric_chapter_requests_unique; + } + if (in_array('Title', $this->sectionTypes)) { + $metrics['Unique_Title_Investigations'] = $result->metric_title_investigations_unique; + $metrics['Unique_Title_Requests'] = $result->metric_title_requests_unique; + } + // filter here by requested metric types + foreach ($this->metricTypes as $metricType) { + if (array_key_exists($metricType, $metrics) && $metrics[$metricType] > 0) { + $instances[] = [ + 'Metric_Type' => $metricType, + 'Count' => (int) $metrics[$metricType] + ]; + } + } + $periodMetrics['Instance'] = $instances; + $performances[] = $periodMetrics; + } + $item['Performance'] = $performances; + $items[] = $item; + } + } + + return $items; + } + + /** Get TSV report column names */ + public function getTSVColumnNames(): array + { + $columnRow = ['Title', 'Publisher', 'Publisher ID', 'Platform', 'DOI', 'Proprietary_ID', 'ISBN', 'Print_ISSN', 'Online_ISSN', 'URI']; + + if (in_array('Data_Type', $this->attributesToShow)) { + array_push($columnRow, 'Data_Type'); + } + if (in_array('Section_Type', $this->attributesToShow)) { + array_push($columnRow, 'Section_Type'); + } + if (in_array('YOP', $this->attributesToShow)) { + array_push($columnRow, 'YOP'); + } + if (in_array('Access_Type', $this->attributesToShow)) { + array_push($columnRow, 'Access_Type'); + } + if (in_array('Access_Method', $this->attributesToShow)) { + array_push($columnRow, 'Access_Method'); + } + + array_push($columnRow, 'Metric_Type', 'Reporting_Period_Total'); + + if ($this->granularity == 'Month') { + $period = $this->getMonthlyDatePeriod(); + foreach ($period as $dt) { + array_push($columnRow, $dt->format('M-Y')); + } + } + + return [$columnRow]; + } + + /** Get TSV report rows */ + public function getTSVReportItems(): array + { + $results = $this->getQueryResults(); + + // Group result by submission ID + // If Section_Type is attribute to show, group additionally by section type + // Also filter results by requested section and metric types + $resultsGroupedBySubmission = $resultRows = []; + foreach ($results as $result) { + $includeResult = false; + if (in_array('Book', $this->sectionTypes) && + !empty(array_intersect($this->metricTypes, ['Total_Item_Investigations', 'Unique_Item_Investigations', 'Total_Item_Requests', 'Unique_Item_Requests'])) && + ($result->metric_book_investigations > 0 || $result->metric_book_investigations_unique > 0 || $result->metric_book_requests > 0 || $result->metric_book_requests_unique > 0)) { + if (in_array('Section_Type', $this->attributesToShow)) { + $resultsGroupedBySubmission[$result->submission_id]['Book'][] = $result; + } + $includeResult = true; + } + if (in_array('Chapter', $this->sectionTypes) && + !empty(array_intersect($this->metricTypes, ['Total_Item_Investigations', 'Unique_Item_Investigations', 'Total_Item_Requests', 'Unique_Item_Requests'])) && + ($result->metric_chapter_investigations > 0 || $result->metric_chapter_investigations_unique > 0 || $result->metric_chapter_requests > 0 || $result->metric_chapter_requests_unique > 0)) { + if (in_array('Section_Type', $this->attributesToShow)) { + $resultsGroupedBySubmission[$result->submission_id]['Chapter'][] = $result; + } + $includeResult = true; + } + if (in_array('Title', $this->sectionTypes) && + !empty(array_intersect($this->metricTypes, ['Unique_Title_Investigations', 'Unique_Title_Requests'])) && + ($result->metric_title_investigations_unique > 0 || $result->metric_title_requests_unique > 0)) { + if (in_array('Section_Type', $this->attributesToShow)) { + $resultsGroupedBySubmission[$result->submission_id]['Title'][] = $result; + } + $includeResult = true; + } + if (!in_array('Section_Type', $this->attributesToShow) && $includeResult) { + $resultsGroupedBySubmission[$result->submission_id][] = $result; + } + } + + foreach ($resultsGroupedBySubmission as $submissionId => $submissionResults) { + // Section_Type is in attributes_to_show, the query results are grouped by section type + if (in_array('Section_Type', $this->attributesToShow)) { + foreach ($submissionResults as $sectionType => $results) { + $results = collect($results); + + // get total numbers for every metric type + $metricsTotal['Total_Item_Investigations'] = $metricsTotal['Unique_Item_Investigations'] = + $metricsTotal['Total_Item_Requests'] = $metricsTotal['Unique_Item_Requests'] = 0; + switch ($sectionType) { + case 'Book': + $metricsTotal['Total_Item_Investigations'] = $results->pluck('metric_book_investigations')->sum(); + $metricsTotal['Unique_Item_Investigations'] = $results->pluck('metric_book_investigations_unique')->sum(); + $metricsTotal['Total_Item_Requests'] = $results->pluck('metric_book_requests')->sum(); + $metricsTotal['Unique_Item_Requests'] = $results->pluck('metric_book_requests_unique')->sum(); + break; + case 'Chapter': + $metricsTotal['Total_Item_Investigations'] = $results->pluck('metric_chapter_investigations')->sum(); + $metricsTotal['Unique_Item_Investigations'] = $results->pluck('metric_chapter_investigations_unique')->sum(); + $metricsTotal['Total_Item_Requests'] = $results->pluck('metric_chapter_requests')->sum(); + $metricsTotal['Unique_Item_Requests'] = $results->pluck('metric_chapter_requests_unique')->sum(); + break; + case 'Title': + $metricsTotal['Unique_Title_Investigations'] = $results->pluck('metric_title_investigations_unique')->sum(); + $metricsTotal['Unique_Title_Requests'] = $results->pluck('metric_title_requests_unique')->sum(); + break; + } + + // Get the submission properties + $submission = Repo::submission()->get($submissionId); + if (!$submission || !$submission->getOriginalPublication()) { + break; + } + $currentPublication = $submission->getCurrentPublication(); + $submissionLocale = $submission->getData('locale'); + $itemTitle = $currentPublication->getLocalizedTitle($submissionLocale); + $doi = $currentPublication->getDoi(); + $datePublished = $submission->getOriginalPublication()->getData('datePublished'); + + // filter here by requested metric types + foreach ($this->metricTypes as $metricType) { + if (array_key_exists($metricType, $metricsTotal) && $metricsTotal[$metricType] > 0) { + // construct the result row + $resultRow = [ + $itemTitle, // Title + $this->context->getData('publisherInstitution'), // Publisher + '', // Publisher ID + $this->platformName, // Platform + $doi ?? '', // DOI + $this->platformId . ':' . $submissionId, // Proprietary_ID + '', // ISBN + '', // Print_ISSN + '', // Online_ISSN + '', // URI + ]; + + if (in_array('Data_Type', $this->attributesToShow)) { + array_push($resultRow, self::DATA_TYPE); // Data_Type + } + if (in_array('Section_Type', $this->attributesToShow)) { + // do not display section type for title metrics + if ($sectionType != 'Title') { + array_push($resultRow, $sectionType); // Section_Type + } else { + array_push($resultRow, ''); + } + } + if (in_array('YOP', $this->attributesToShow)) { + array_push($resultRow, date('Y', strtotime($datePublished))); // YOP + } + if (in_array('Access_Type', $this->attributesToShow)) { + array_push($resultRow, self::ACCESS_TYPE); // Access_Type + } + if (in_array('Access_Method', $this->attributesToShow)) { + array_push($resultRow, self::ACCESS_METHOD); // Access_Method + } + array_push($resultRow, $metricType); // Metric_Type + array_push($resultRow, $metricsTotal[$metricType]); // Reporting_Period_Total + + if ($this->granularity == 'Month') { // metrics for each month in the given period + $period = $this->getMonthlyDatePeriod(); + foreach ($period as $dt) { + $month = $dt->format('Ym'); + $result = $results->firstWhere('month', '=', $month); + if ($result === null) { + array_push($resultRow, '0'); + } else { + switch ($sectionType) { + case 'Book': + $metrics['Total_Item_Investigations'] = $result->metric_book_investigations; + $metrics['Unique_Item_Investigations'] = $result->metric_book_investigations_unique; + $metrics['Total_Item_Requests'] = $result->metric_book_requests; + $metrics['Unique_Item_Requests'] = $result->metric_book_requests_unique; + break; + case 'Chapter': + $metrics['Total_Item_Investigations'] = $result->metric_chapter_investigations; + $metrics['Unique_Item_Investigations'] = $result->metric_chapter_investigations_unique; + $metrics['Total_Item_Requests'] = $result->metric_chapter_requests; + $metrics['Unique_Item_Requests'] = $result->metric_chapter_requests_unique; + break; + case 'Title': + $metrics['Unique_Title_Investigations'] = $result->metric_title_investigations_unique; + $metrics['Unique_Title_Requests'] = $result->metric_title_requests_unique; + break; + } + array_push($resultRow, $metrics[$metricType]); + } + } + } + $resultRows[] = $resultRow; + } + } + } + } else { // Section_Type is not in attributes_to_show + $results = collect($submissionResults); + + $metricsTotal['Total_Item_Investigations'] = $metricsTotal['Unique_Item_Investigations'] = + $metricsTotal['Total_Item_Requests'] = $metricsTotal['Unique_Item_Requests'] = 0; + if (in_array('Book', $this->sectionTypes)) { + $metricsTotal['Total_Item_Investigations'] += $results->pluck('metric_book_investigations')->sum(); + $metricsTotal['Unique_Item_Investigations'] += $results->pluck('metric_book_investigations_unique')->sum(); + $metricsTotal['Total_Item_Requests'] += $results->pluck('metric_book_requests')->sum(); + $metricsTotal['Unique_Item_Requests'] += $results->pluck('metric_book_requests_unique')->sum(); + } + if (in_array('Chapter', $this->sectionTypes)) { + $metricsTotal['Total_Item_Investigations'] += $results->pluck('metric_chapter_investigations')->sum(); + $metricsTotal['Unique_Item_Investigations'] += $results->pluck('metric_chapter_investigations_unique')->sum(); + $metricsTotal['Total_Item_Requests'] += $results->pluck('metric_chapter_requests')->sum(); + $metricsTotal['Unique_Item_Requests'] += $results->pluck('metric_chapter_requests_unique')->sum(); + } + if (in_array('Title', $this->sectionTypes)) { + $metricsTotal['Unique_Title_Investigations'] = $results->pluck('metric_title_investigations_unique')->sum(); + $metricsTotal['Unique_Title_Requests'] = $results->pluck('metric_title_requests_unique')->sum(); + } + + // Get the submission properties + $submission = Repo::submission()->get($submissionId); + if (!$submission || !$submission->getOriginalPublication()) { + break; + } + $currentPublication = $submission->getCurrentPublication(); + $submissionLocale = $submission->getData('locale'); + $itemTitle = $currentPublication->getLocalizedTitle($submissionLocale); + $doi = $currentPublication->getDoi(); + $datePublished = $submission->getOriginalPublication()->getData('datePublished'); + + // filter here by requested metric types + foreach ($this->metricTypes as $metricType) { + if (array_key_exists($metricType, $metricsTotal) && $metricsTotal[$metricType] > 0) { + // construct the result row + $resultRow = [ + $itemTitle, // Title + $this->context->getData('publisherInstitution'), // Publisher + '', // Publisher ID + $this->platformName, // Platform + $doi ?? '', // DOI + $this->platformId . ':' . $submissionId, // Proprietary_ID + '', // ISBN + '', // Print_ISSN + '', // Online_ISSN + '', // URI + ]; + + if (in_array('Data_Type', $this->attributesToShow)) { + array_push($resultRow, self::DATA_TYPE); // Data_Type + } + // Section_Type is not in attributes_to_show + // so no need to consider it here + if (in_array('YOP', $this->attributesToShow)) { + array_push($resultRow, date('Y', strtotime($datePublished))); // YOP + } + if (in_array('Access_Type', $this->attributesToShow)) { + array_push($resultRow, self::ACCESS_TYPE); // Access_Type + } + if (in_array('Access_Method', $this->attributesToShow)) { + array_push($resultRow, self::ACCESS_METHOD); // Access_Method + } + array_push($resultRow, $metricType); // Metric_Type + array_push($resultRow, $metricsTotal[$metricType]); // Reporting_Period_Total + + if ($this->granularity == 'Month') { // metrics for each month in the given period + $period = $this->getMonthlyDatePeriod(); + foreach ($period as $dt) { + $month = $dt->format('Ym'); + $result = $results->firstWhere('month', '=', $month); + if ($result === null) { + array_push($resultRow, '0'); + } else { + // consider section_type filter + $metrics['Total_Item_Investigations'] = $metrics['Unique_Item_Investigations'] = + $metrics['Total_Item_Requests'] = $metrics['Unique_Item_Requests'] = 0; + if (in_array('Book', $this->sectionTypes)) { + $metrics['Total_Item_Investigations'] += $result->metric_book_investigations; + $metrics['Unique_Item_Investigations'] += $result->metric_book_investigations_unique; + $metrics['Total_Item_Requests'] += $result->metric_book_requests; + $metrics['Unique_Item_Requests'] += $result->metric_book_requests_unique; + } + if (in_array('Chapter', $this->sectionTypes)) { + $metrics['Total_Item_Investigations'] += $result->metric_chapter_investigations; + $metrics['Unique_Item_Investigations'] += $result->metric_chapter_investigations_unique; + $metrics['Total_Item_Requests'] += $result->metric_chapter_requests; + $metrics['Unique_Item_Requests'] += $result->metric_chapter_requests_unique; + } + if (in_array('Title', $this->sectionTypes)) { + $metrics['Unique_Title_Investigations'] = $result->metric_title_investigations_unique; + $metrics['Unique_Title_Requests'] = $result->metric_title_requests_unique; + } + array_push($resultRow, $metrics[$metricType]); + } + } + } + $resultRows[] = $resultRow; + } + } + } + } + + return $resultRows; + } + + /** Get report specific form fields */ + public static function getReportSettingsFormFields(): array + { + $formFields = parent::getCommonReportSettingsFormFields(); + + $metricTypes = [ + 'Total_Item_Investigations', + 'Unique_Item_Investigations', + 'Total_Item_Requests', + 'Unique_Item_Requests', + 'Unique_Title_Investigations', + 'Unique_Title_Requests' + ]; + $metricTypeOptions = []; + foreach ($metricTypes as $metricType) { + $metricTypeOptions[] = ['value' => $metricType, 'label' => $metricType]; + } + $formFields[] = new FieldOptions('metric_type', [ + 'label' => __('manager.statistics.counterR5Report.settings.metricType'), + 'options' => $metricTypeOptions, + 'groupId' => 'default', + 'value' => $metricTypes, + ]); + + $attributesToShow = ['Data_Type', 'Access_Method', 'Section_Type', 'Access_Type', 'YOP']; + $attributesToShowOptions = []; + foreach ($attributesToShow as $attributeToShow) { + $attributesToShowOptions[] = ['value' => $attributeToShow, 'label' => $attributeToShow]; + } + $formFields[] = new FieldOptions('attributes_to_show', [ + 'label' => __('manager.statistics.counterR5Report.settings.attributesToShow'), + 'options' => $attributesToShowOptions, + 'groupId' => 'default', + 'value' => [], + ]); + + $formFields[] = new FieldText('yop', [ + 'label' => __('manager.statistics.counterR5Report.settings.yop'), + 'description' => __('manager.statistics.counterR5Report.settings.date.yop.description'), + 'size' => 'small', + 'isMultilingual' => false, + 'isRequired' => false, + 'groupId' => 'default', + ]); + + $formFields[] = new FieldOptions('granularity', [ + 'label' => __('manager.statistics.counterR5Report.settings.excludeMonthlyDetails'), + 'options' => [ + ['value' => true, 'label' => __('manager.statistics.counterR5Report.settings.excludeMonthlyDetails')], + ], + 'value' => false, + 'groupId' => 'default', + ]); + + return $formFields; + } +} diff --git a/classes/sushi/TR_B3.php b/classes/sushi/TR_B3.php new file mode 100644 index 00000000000..b23527521f7 --- /dev/null +++ b/classes/sushi/TR_B3.php @@ -0,0 +1,121 @@ + 'Metric_Type', + 'Value' => 'Total_Item_Investigations|Unique_Item_Investigations|Total_Item_Requests|Unique_Item_Requests|Unique_Title_Investigations|Unique_Title_Requests' + ], + [ + 'Name' => 'Access_Method', + 'Value' => self::ACCESS_METHOD + ], + [ + 'Name' => 'Data_Type', + 'Value' => self::DATA_TYPE + ], + ]; + $this->filters = array_merge($filters, $predefinedFilters); + } + + /** + * Set attributes based on the requested parameters. + * No attributes are supported by this report. + */ + public function setAttributes(array $attributes): void + { + $this->attributes = []; + } + + /** Get report specific form fields */ + public static function getReportSettingsFormFields(): array + { + return parent::getCommonReportSettingsFormFields(); + } +} diff --git a/classes/tasks/UsageStatsLoader.php b/classes/tasks/UsageStatsLoader.php new file mode 100644 index 00000000000..0f76039113c --- /dev/null +++ b/classes/tasks/UsageStatsLoader.php @@ -0,0 +1,54 @@ +getContext(); - $site = $request->getSite(); - - $publicFileManager = new PublicFileManager(); - $siteFilesDir = $request->getBaseUrl() . '/' . $publicFileManager->getSiteFilesPath(); - $this->assign('sitePublicFilesDir', $siteFilesDir); - $this->assign('publicFilesDir', $siteFilesDir); // May be overridden by press - - // Pass app-specific details to template - $this->assign([ - 'brandImage' => 'templates/images/omp_brand.png', - 'packageKey' => 'common.software', - ]); - - // Get a count of unread tasks. - if ($user = $request->getUser()) { - $notificationDao = DAORegistry::getDAO('NotificationDAO'); /* @var $notificationDao NotificationDAO */ - // Exclude certain tasks, defined in the notifications grid handler - import('lib.pkp.controllers.grid.notifications.TaskNotificationsGridHandler'); - $this->assign('unreadNotificationCount', $notificationDao->getNotificationCount(false, $user->getId(), null, NOTIFICATION_LEVEL_TASK)); - } - - if (isset($context)) { - $this->assign([ - 'currentPress' => $context, - 'siteTitle' => $context->getLocalizedName(), - 'publicFilesDir' => $request->getBaseUrl() . '/' . $publicFileManager->getContextFilesPath($context->getId()), - 'primaryLocale' => $context->getPrimaryLocale(), - 'supportedLocales' => $context->getSupportedLocaleNames(), - 'numPageLinks' => $context->getData('numPageLinks'), - 'itemsPerPage' => $context->getData('itemsPerPage'), - 'enableAnnouncements' => $context->getData('enableAnnouncements'), - 'disableUserReg' => $context->getData('disableUserReg'), - ]); - - // Assign stylesheets and footer - $contextStyleSheet = $context->getData('styleSheet'); - if ($contextStyleSheet) { - $this->addStyleSheet( - 'contextStylesheet', - $request->getBaseUrl() . '/' . $publicFileManager->getContextFilesPath($context->getId()) . '/' . $contextStyleSheet['uploadName'], - ['priority' => STYLE_SEQUENCE_LAST] - ); - } - - $this->assign('pageFooter', $context->getLocalizedData('pageFooter')); - } else { - // Check if registration is open for any contexts - $contextDao = Application::getContextDAO(); - $contexts = $contextDao->getAll(true)->toArray(); - $contextsForRegistration = []; - foreach($contexts as $context) { - if (!$context->getData('disableUserReg')) { - $contextsForRegistration[] = $context; - } - } - - $this->assign([ - 'contexts' => $contextsForRegistration, - 'disableUserReg' => empty($contextsForRegistration), - 'siteTitle' => $site->getLocalizedTitle(), - 'primaryLocale' => $site->getPrimaryLocale(), - 'supportedLocales' => $site->getSupportedLocaleNames(), - 'pageFooter' => $site->getLocalizedData('pageFooter'), - ]); - } - } - } - - /** - * @copydoc PKPTemplateManager::setupBackendPage() - */ - function setupBackendPage() { - parent::setupBackendPage(); - - $request = Application::get()->getRequest(); - if (defined('SESSION_DISABLE_INIT') - || !$request->getContext() - || !$request->getUser()) { - return; - } - - $router = $request->getRouter(); - $handler = $router->getHandler(); - $userRoles = (array) $handler->getAuthorizedContextObject(ASSOC_TYPE_USER_ROLES); - - $menu = (array) $this->getState('menu'); - - // Add catalog after submissions items - if (in_array(ROLE_ID_MANAGER, $userRoles)) { - $catalogLink = [ - 'name' => __('navigation.catalog'), - 'url' => $router->url($request, null, 'manageCatalog'), - 'isCurrent' => $request->getRequestedPage() === 'manageCatalog', - ]; - - $index = array_search('submissions', array_keys($menu)); - if ($index === false || count($menu) <= ($index + 1)) { - $menu['catalog'] = $catalogLink; - } else { - $menu = array_slice($menu, 0, $index + 1, true) + - ['catalog' => $catalogLink] + - array_slice($menu, $index + 1, null, true); - } - } - - $this->setState(['menu' => $menu]); - } -} diff --git a/classes/template/TemplateManager.php b/classes/template/TemplateManager.php new file mode 100644 index 00000000000..f15d7f0db40 --- /dev/null +++ b/classes/template/TemplateManager.php @@ -0,0 +1,166 @@ +getContext(); /** @var Context $context */ + $site = $request->getSite(); /** @var Site $site */ + + $publicFileManager = new PublicFileManager(); + $siteFilesDir = $request->getBaseUrl() . '/' . $publicFileManager->getSiteFilesPath(); + $this->assign('sitePublicFilesDir', $siteFilesDir); + $this->assign('publicFilesDir', $siteFilesDir); // May be overridden by press + + // Pass app-specific details to template + $this->assign([ + 'brandImage' => 'templates/images/omp_brand.png', + 'packageKey' => 'common.software', + ]); + + // Get a count of unread tasks. + if ($user = $request->getUser()) { + $notificationDao = DAORegistry::getDAO('NotificationDAO'); /** @var NotificationDAO $notificationDao */ + // Exclude certain tasks, defined in the notifications grid handler + $this->assign('unreadNotificationCount', $notificationDao->getNotificationCount(false, $user->getId(), null, Notification::NOTIFICATION_LEVEL_TASK)); + } + + if (isset($context)) { + $this->assign([ + 'currentPress' => $context, + 'siteTitle' => $context->getLocalizedName(), + 'publicFilesDir' => $request->getBaseUrl() . '/' . $publicFileManager->getContextFilesPath($context->getId()), + 'primaryLocale' => $context->getPrimaryLocale(), + 'supportedLocales' => $context->getSupportedLocaleNames(LocaleMetadata::LANGUAGE_LOCALE_ONLY), + 'numPageLinks' => $context->getData('numPageLinks'), + 'itemsPerPage' => $context->getData('itemsPerPage'), + 'enableAnnouncements' => $context->getData('enableAnnouncements'), + 'disableUserReg' => $context->getData('disableUserReg'), + ]); + + // Assign stylesheets and footer + $contextStyleSheet = $context->getData('styleSheet'); + if ($contextStyleSheet) { + $this->addStyleSheet( + 'contextStylesheet', + $request->getBaseUrl() . '/' . $publicFileManager->getContextFilesPath($context->getId()) . '/' . $contextStyleSheet['uploadName'], + ['priority' => self::STYLE_SEQUENCE_LAST] + ); + } + + $this->assign('pageFooter', $context->getLocalizedData('pageFooter')); + } else { + // Check if registration is open for any contexts + $contextDao = Application::getContextDAO(); + $contexts = $contextDao->getAll(true)->toArray(); + $contextsForRegistration = []; + foreach ($contexts as $context) { + if (!$context->getData('disableUserReg')) { + $contextsForRegistration[] = $context; + } + } + + $this->assign([ + 'contexts' => $contextsForRegistration, + 'disableUserReg' => empty($contextsForRegistration), + 'siteTitle' => $site->getLocalizedTitle(), + 'primaryLocale' => $site->getPrimaryLocale(), + 'supportedLocales' => Locale::getFormattedDisplayNames( + $site->getSupportedLocales(), + Locale::getLocales(), + LocaleMetadata::LANGUAGE_LOCALE_ONLY + ), + 'pageFooter' => $site->getLocalizedData('pageFooter'), + ]); + } + } + } + + /** + * @copydoc PKPTemplateManager::setupBackendPage() + */ + public function setupBackendPage() + { + parent::setupBackendPage(); + + $request = Application::get()->getRequest(); + if (SessionManager::isDisabled() || !$request->getContext() || !$request->getUser()) { + return; + } + + $router = $request->getRouter(); + $handler = $router->getHandler(); + $userRoles = (array) $handler->getAuthorizedContextObject(Application::ASSOC_TYPE_USER_ROLES); + + $menu = (array) $this->getState('menu'); + + // Add catalog after submissions items + if (count(array_intersect([Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], $userRoles))) { + $catalogLink = [ + 'name' => __('navigation.catalog'), + 'url' => $router->url($request, null, 'manageCatalog'), + 'isCurrent' => $request->getRequestedPage() === 'manageCatalog', + ]; + + $index = array_search('submissions', array_keys($menu)); + if ($index === false || count($menu) <= $index + 1) { + $menu['catalog'] = $catalogLink; + } else { + $menu = array_slice($menu, 0, $index + 1, true) + + ['catalog' => $catalogLink] + + array_slice($menu, $index + 1, null, true); + } + } + + $this->setState(['menu' => $menu]); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\template\TemplateManager', '\TemplateManager'); +} diff --git a/classes/user/Repository.php b/classes/user/Repository.php new file mode 100644 index 00000000000..059eb96fd97 --- /dev/null +++ b/classes/user/Repository.php @@ -0,0 +1,40 @@ +getByUserId($oldUserId); + while ($payment = $paymentFactory->next()) { + $payment->setUserId($newUserId); + $paymentDao->updateObject($payment); + } + + return true; + } +} diff --git a/classes/user/UserAction.inc.php b/classes/user/UserAction.inc.php deleted file mode 100644 index 57470c9e672..00000000000 --- a/classes/user/UserAction.inc.php +++ /dev/null @@ -1,37 +0,0 @@ -getByUserId($oldUserId); - while ($payment = $paymentFactory->next()) { - $payment->setUserId($newUserId); - $paymentDao->updateObject($payment); - } - - return true; - } -} - diff --git a/classes/workflow/EditorDecisionActionsManager.inc.php b/classes/workflow/EditorDecisionActionsManager.inc.php deleted file mode 100644 index fbac8220d33..00000000000 --- a/classes/workflow/EditorDecisionActionsManager.inc.php +++ /dev/null @@ -1,220 +0,0 @@ -_submissionStageDecisions($submission, $stageId) + - $this->_internalReviewStageDecisions($context, $submission) + - $this->_externalReviewStageDecisions($context, $submission) + - $this->_editorialStageDecisions(); - - $actionLabels = array(); - foreach($decisions as $decision) { - if ($allDecisionsData[$decision]['title']) { - $actionLabels[$decision] = $allDecisionsData[$decision]['title']; - } else { - assert(false); - } - } - - return $actionLabels; - } - - /** - * Check for editor decisions in the review round. - * @param $context Context - * @param $reviewRound ReviewRound - * @param $decisions array - * @return boolean - */ - public function getEditorTakenActionInReviewRound($context, $reviewRound, $decisions = array()) { - $editDecisionDao = DAORegistry::getDAO('EditDecisionDAO'); /* @var $editDecisionDao EditDecisionDAO */ - $editorDecisions = $editDecisionDao->getEditorDecisions($reviewRound->getSubmissionId(), $reviewRound->getStageId(), $reviewRound->getRound()); - - if (empty($decisions)) { - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); /* @var $submissionDao SubmissionDAO */ - $submission = $submissionDao->getById($reviewRound->getSubmissionId()); - $decisions = array_keys($this->_internalReviewStageDecisions($context, $submission)); - } - $takenDecision = false; - foreach ($editorDecisions as $decision) { - if (in_array($decision['decision'], $decisions)) { - $takenDecision = true; - break; - } - } - - return $takenDecision; - } - - /** - * @copydoc PKPEditorDecisionActionsManager::getStageDecisions() - */ - public function getStageDecisions($context, $submission, $stageId, $makeDecision = true) { - switch ($stageId) { - case WORKFLOW_STAGE_ID_INTERNAL_REVIEW: - return $this->_internalReviewStageDecisions($context, $submission, $stageId, $makeDecision); - } - return parent::getStageDecisions($context, $submission, $stageId, $makeDecision); - } - - /** - * Get an associative array matching editor recommendation codes with locale strings. - * (Includes default '' => "Choose One" string.) - * @param $stageId integer - * @return array recommendation => localeString - */ - public function getRecommendationOptions($stageId) { - $recommendationOptions = parent::getRecommendationOptions($stageId); - if ($stageId == WORKFLOW_STAGE_ID_INTERNAL_REVIEW) { - $recommendationOptions[SUBMISSION_EDITOR_RECOMMEND_EXTERNAL_REVIEW] = 'editor.submission.decision.sendExternalReview'; - } - return $recommendationOptions; - } - - // - // Private helper methods. - // - /** - * @copydoc PKPEditorDecisionActionsManager::_submissionStageDecisions() - */ - protected function _submissionStageDecisions($submission, $stageId, $makeDecision = true) { - $decisions = parent::_submissionStageDecisions($submission, $stageId, $makeDecision); - $decisions[SUBMISSION_EDITOR_DECISION_INTERNAL_REVIEW] = array( - 'name' => 'internalReview', - 'operation' => 'internalReview', - 'title' => 'editor.submission.decision.sendInternalReview', - ); - return $decisions; - } - - /** - * Define and return editor decisions for the review stage. - * If the user cannot make decisions i.e. if it is a recommendOnly user, - * there will be no decisions options in the review stage. - * @param $makeDecision boolean If the user can make decisions - * @return array - */ - protected function _internalReviewStageDecisions($context, $submission, $makeDecision = true) { - $decisions = array(); - if ($makeDecision) { - $decisions = array( - SUBMISSION_EDITOR_DECISION_PENDING_REVISIONS => array( - 'operation' => 'sendReviewsInReview', - 'name' => 'requestRevisions', - 'title' => 'editor.submission.decision.requestRevisions', - ), - SUBMISSION_EDITOR_DECISION_RESUBMIT => array( - 'name' => 'resubmit', - 'title' => 'editor.submission.decision.resubmit', - ), - SUBMISSION_EDITOR_DECISION_NEW_ROUND => array( - 'name' => 'newround', - 'title' => 'editor.submission.decision.newRound', - ), - SUBMISSION_EDITOR_DECISION_EXTERNAL_REVIEW => array( - 'operation' => 'promoteInReview', - 'name' => 'externalReview', - 'title' => 'editor.submission.decision.sendExternalReview', - 'toStage' => 'workflow.review.externalReview', - ), - SUBMISSION_EDITOR_DECISION_ACCEPT => array( - 'operation' => 'promoteInReview', - 'name' => 'accept', - 'title' => 'editor.submission.decision.accept', - 'toStage' => 'submission.copyediting', - ), - ); - - if ($submission->getStatus() == STATUS_QUEUED){ - $decisions = $decisions + array( - SUBMISSION_EDITOR_DECISION_DECLINE => array( - 'operation' => 'sendReviewsInReview', - 'name' => 'decline', - 'title' => 'editor.submission.decision.decline', - ), - ); - } - if ($submission->getStatus() == STATUS_DECLINED){ - $decisions = $decisions + array( - SUBMISSION_EDITOR_DECISION_REVERT_DECLINE => array( - 'name' => 'revert', - 'operation' => 'revertDecline', - 'title' => 'editor.submission.decision.revertDecline', - ), - ); - } - - } - return $decisions; - } - - /** - * Define and return editor decisions for the review stage. - * If the user cannot make decisions i.e. if it is a recommendOnly user, - * there will be no decisions options in the review stage. - * @param $context Context - * @param $makeDecision boolean If the user can make decisions - * @return array - */ - protected function _externalReviewStageDecisions($context, $submission, $makeDecision = true) { - $decisions = $this->_internalReviewStageDecisions($context, $submission, $makeDecision); - unset($decisions[SUBMISSION_EDITOR_DECISION_EXTERNAL_REVIEW]); - return $decisions; - } - - /** - * @copydoc PKPEditorDecisionActionsManager::getStageNotifications() - * @return array - */ - public function getStageNotifications() { - return parent::getStageNotifications() + array( - NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_INTERNAL_REVIEW - ); - } -} - - diff --git a/config.TEMPLATE.inc.php b/config.TEMPLATE.inc.php index ae354df3718..9d521e7c1e8 100644 --- a/config.TEMPLATE.inc.php +++ b/config.TEMPLATE.inc.php @@ -1,4 +1,4 @@ -; +; ; DO NOT DELETE THE ABOVE LINE!!! ; Doing so will expose this configuration file through your web site! ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -31,6 +31,10 @@ ; The canonical URL to the OMP installation (excluding the trailing slash) base_url = base_url +; Enable strict mode. This will more aggressively cause errors/warnings when +; deprecated behaviour exists in the codebase. +strict = Off + ; Session cookie name session_cookie_name = OMPSID @@ -41,6 +45,11 @@ ; (set to 0 to force expiration at end of current session) session_lifetime = 30 +; SameSite configuration for the cookie, see possible values and explanations +; at https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite +; To set the "Secure" attribute for the cookie see the setting force_ssl at the [security] group +session_samesite = Lax + ; Enable support for running scheduled tasks ; Set this to On if you have set up the scheduled tasks script to ; execute periodically @@ -53,24 +62,18 @@ scheduled_tasks_report_error_only = On ; Site time zone -; Please refer to lib/pkp/registry/timeZones.xml for a full list of supported +; Please refer to https://www.php.net/timezones for a full list of supported ; time zones. -; I.e.: -; -; time_zone="Amsterdam" +; I.e.: "Europe/Amsterdam" +; time_zone="Europe/Amsterdam" time_zone = "UTC" ; Short and long date formats -date_format_short = "%Y-%m-%d" -date_format_long = "%B %e, %Y" -datetime_format_short = "%Y-%m-%d %I:%M %p" -datetime_format_long = "%B %e, %Y - %I:%M %p" -time_format = "%I:%M %p" - -; Use URL parameters instead of CGI PATH_INFO. This is useful for broken server -; setups that don't support the PATH_INFO environment variable. -; WARNING: This option is DEPRECATED and will be removed in the future. -disable_path_info = Off +date_format_short = "Y-m-d" +date_format_long = "F j, Y" +datetime_format_short = "Y-m-d h:i A" +datetime_format_long = "F j, Y - h:i A" +time_format = "h:i A" ; Use fopen(...) for URL-based reads. Modern versions of dspace ; will not accept requests using fopen, as it does not provide a @@ -80,14 +83,15 @@ ; Base URL override settings: Entries like the following examples can ; be used to override the base URLs used by OMP. If you want to use a -; proxy to rewrite URLs to OMP, configure your proxy's URL here. -; Syntax: base_url[press_path] = http://www.myUrl.com -; To override URLs that aren't part of a particular press, use a -; press_path of "index". -; Examples: -; base_url[index] = http://www.myUrl.com -; base_url[myPress] = http://www.myUrl.com/myPress -; base_url[myOtherPress] = http://myOtherPress.myUrl.com +; proxy to rewrite URLs to OMP, configure your proxy's URL with this format. +; Syntax: base_url[press_path] = http://www.example.com +; +; Example1: URLs that aren't part of a particular press. +; Example1: base_url[index] = http://www.example.com +; Example2: URLs that map to a subdirectory. +; Example2: base_url[myPress] = http://www.example.com/myPress +; Example3: URLs that map to a subdomain. +; Example3: base_url[myOtherPress] = http://myOtherPress.example.com ; Generate RESTful URLs using mod_rewrite. This requires the ; rewrite directive to be enabled in your .htaccess or httpd.conf. @@ -101,9 +105,15 @@ ; allowed_hosts = '["myjournal.tld", "anotherjournal.tld", "mylibrary.tld"]' allowed_hosts = '' +; Restrict the list of allowed hosts to prevent HOST header injection. +; See docs/README.md for more details. The list should be JSON-formatted. +; An empty string indicates that all hosts should be trusted (not recommended!) +; Example: +; allowed_hosts = '["myjournal.tld", "anotherjournal.tld", "mylibrary.tld"]' +allowed_hosts = '' + ; Allow the X_FORWARDED_FOR header to override the REMOTE_ADDR as the source IP -; Set this to "On" if you are behind a reverse proxy and you control the -; X_FORWARDED_FOR header. +; Set this to "On" if you are behind a reverse proxy and you control the X_FORWARDED_FOR ; Warning: This defaults to "On" if unset for backwards compatibility. trust_x_forwarded_for = Off @@ -116,6 +126,16 @@ ; alert purposes only. enable_beacon = On +; The number of days a new user has to validate their account +; A new user account will be expired and removed if this many days have passed since the user registered +; their account, and they have not validated their account or logged in. If the user_validation_period is set to +; 0, unvalidated accounts will never be removed. Use this setting to automatically remove bot registrations. +user_validation_period = 28 + +; Turn sandbox mode to On in order to prevent the software from interacting with outside systems. +; Use this for development or testing purposes. +sandbox = Off + ;;;;;;;;;;;;;;;;;;;;; ; Database Settings ; @@ -182,10 +202,7 @@ [i18n] ; Default locale -locale = en_US - -; Client output/input character set -client_charset = utf-8 +locale = en ; Database connection character set connection_charset = utf8 @@ -222,6 +239,7 @@ ; a possible revision filename_revision_match = 70 + ;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Fileinfo (MIME) Settings ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -236,7 +254,8 @@ [security] -; Force SSL connections site-wide +; Force SSL connections site-wide and also sets the "Secure" flag for session cookies +; See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#secure force_ssl = Off ; Force SSL connections for login only @@ -259,8 +278,7 @@ ; The unique secret used for encoding and decoding API keys api_key_secret = "" -; The number of seconds before a password reset hash expires (defaults to -; 7200 seconds (2 hours) +; The number of seconds before a password reset hash expires (defaults to 7200 / 2 hours) reset_seconds = 7200 ; Allowed HTML tags for fields that permit restricted HTML. @@ -269,28 +287,11 @@ ; stripped. allowed_html = "a[href|target|title],em,strong,cite,code,ul,ol,li[class],dl,dt,dd,b,i,u,img[src|alt],sup,sub,br,p" -;Is implicit authentication enabled or not - -;implicit_auth = On - -;Implicit Auth Header Variables - -;implicit_auth_header_first_name = HTTP_TDL_GIVENNAME -;implicit_auth_header_last_name = HTTP_TDL_SN -;implicit_auth_header_email = HTTP_TDL_MAIL -;implicit_auth_header_phone = HTTP_TDL_TELEPHONENUMBER -;implicit_auth_header_initials = HTTP_TDL_METADATA_INITIALS -;implicit_auth_header_mailing_address = HTTP_TDL_METADATA_TDLHOMEPOSTALADDRESS -;implicit_auth_header_uin = HTTP_TDL_TDLUID - -; A space delimited list of uins to make admin -;implicit_auth_admin_list = "100000040@tdl.org 85B7FA892DAA90F7@utexas.edu 100000012@tdl.org" - -; URL of the implicit auth 'Way Finder' page. See pages/login/LoginHandler.inc.php for usage. - -;implicit_auth_wayf_url = "/Shibboleth.sso/wayf" - +; Allowed HTML tags for submission titles only +; Unspecified attributes will be stripped. +allowed_title_html = "b,i,u,sup,sub" +;N.b.: The implicit_auth parameter has been removed in favor of plugin implementations such as shibboleth ;;;;;;;;;;;;;;;;;; ; Email Settings ; @@ -298,6 +299,13 @@ [email] +; Default method to send emails +; Available options: sendmail, smtp, log, phpmailer +default = sendmail + +; Path to the sendmail, -bs argument is for using SMTP protocol +sendmail_path = "/usr/sbin/sendmail -bs" + ; Use SMTP for sending mail instead of mail() ; smtp = On @@ -327,6 +335,10 @@ ; Note: this is not recommended per PHPMailer documentation ; smtp_suppress_cert_check = On +; Enable suppressing SSL/TLS peer verification by SMTP transports +; Note: this is not recommended for security reasons +; smtp_suppress_cert_check = On + ; Allow envelope sender to be specified ; (may not be possible with some server configurations) ; allow_envelope_sender = Off @@ -335,7 +347,7 @@ ; default_envelope_sender = my_address@my_host.com ; Force the default envelope sender (if present) -; This is useful if setting up a site-wide noreply address +; This is useful if setting up a site-wide no-reply address ; The reply-to field will be set with the reply-to or from address. ; force_default_envelope_sender = Off @@ -356,14 +368,6 @@ ; and '%s' to insert the localized sitename. ; dmarc_compliant_from_displayname = '%n via %s' -; Amount of time required between attempts to send non-editorial emails -; in seconds. This can be used to help prevent email relaying via OMP. -time_between_emails = 3600 - -; Maximum number of recipients that can be included in a single email -; (either as To:, Cc:, or Bcc: addresses) for a non-priveleged user -max_recipients = 10 - ; If enabled, email addresses must be validated before login is possible. require_validation = Off @@ -417,7 +421,8 @@ ; Enable OAI front-end to the site oai = On -; OAI Repository identifier +; OAI Repository identifier. This setting forms part of OAI-PMH record IDs. +; Changing this setting may affect existing clients and is not recommended. repository_id = omp.pkp.sfu.ca @@ -427,10 +432,10 @@ [interface] -; Number of items to display per page; overridable on a per-press basis +; Number of items to display per page; can be overridden on a per-press basis items_per_page = 50 -; Number of page links to display; overridable on a per-press basis +; Number of page links to display; can be overridden on a per-press basis page_links = 10 @@ -452,6 +457,9 @@ ; Whether or not to use Captcha on user registration captcha_on_register = on +; Whether or not to use Captcha on user login +captcha_on_login = on + ; Validate the hostname in the ReCaptcha response recaptcha_enforce_hostname = Off @@ -527,3 +535,61 @@ ; This setting overrides the 'curl.cainfo' parameter of the php.ini configuration file. [curl] ; cainfo = "" + + +;;;;;;;;;;;;;;;;;;;;;;; +; Job Queues Settings ; +;;;;;;;;;;;;;;;;;;;;;;; + +[queues] + +; Default queue driver +default_connection = "database" + +; Default queue to use when a job is added to the queue +default_queue = "queue" + +; Whether or not to turn on the built-in job runner +; +; When enabled, jobs will be processed at the end of each web +; request to the application. +; +; Use of the built-in job runner is highly discouraged for high-volume +; sites. Instead, a worker daemon or cron job should be configured +; to process jobs off the application's main thread. +; +; See: https://docs.pkp.sfu.ca/admin-guide/en/advanced-jobs +; +job_runner = On + +; The maximum number of jobs to run in a single request when using +; the built-in job runner. +job_runner_max_jobs = 30 + +; The maximum number of seconds the built-in job runner should spend +; running jobs in a single request. +; +; This should be less than the max_execution_time the server has +; configured for PHP. +; +; Lower this setting if jobs are failing due to timeouts. +job_runner_max_execution_time = 30 + +; The maximum consumerable memory that should be spent by the built-in +; job runner when running jobs. +; +; Set as a percentage, such as 80%: +; +; job_runner_max_memory = 80 +; +; Or set as a fixed value in megabytes: +; +; job_runner_max_memory = 128M +; +; When setting a fixed value in megabytes, this should be less than the +; memory_limit the server has configured for PHP. +job_runner_max_memory = 80 + +; Remove failed jobs from the database after the following number of days. +; Remove this setting to leave failed jobs in the database. +delete_failed_jobs_after = 180 diff --git a/controllers/api/file/ManageFileApiHandler.inc.php b/controllers/api/file/ManageFileApiHandler.inc.php deleted file mode 100644 index e4c0df13a04..00000000000 --- a/controllers/api/file/ManageFileApiHandler.inc.php +++ /dev/null @@ -1,120 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT, ROLE_ID_REVIEWER, ROLE_ID_AUTHOR), - array('identifiers', 'updateIdentifiers', 'clearPubId',) - ); - } - - /** - * @copydoc PKPManageFileApiHandler::editMetadata - */ - function editMetadata($args, $request) { - $submissionFile = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION_FILE); - if ($submissionFile->getFileStage() == SUBMISSION_FILE_PROOF) { - $publisherIdEnabled = in_array('file', (array) $request->getContext()->getData('enablePublisherId')); - $pubIdPlugins = PluginRegistry::getPlugins('pubIds'); - $pubIdEnabled = false; - foreach ($pubIdPlugins as $pubIdPlugin) { - if ($pubIdPlugin->isObjectTypeEnabled('SubmissionFile', $request->getContext()->getId())) { - $pubIdEnabled = true; - break; - } - } - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('showIdentifierTab', $publisherIdEnabled || $pubIdEnabled); - } - return parent::editMetadata($args, $request); - } - - /** - * Edit proof submission file pub ids. - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function identifiers($args, $request) { - $submissionFile = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION_FILE); - $stageId = $request->getUserVar('stageId'); - import('controllers.tab.pubIds.form.PublicIdentifiersForm'); - $form = new PublicIdentifiersForm($submissionFile, $stageId); - $form->initData(); - return new JSONMessage(true, $form->fetch($request)); - } - - /** - * Update proof submission file pub ids. - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateIdentifiers($args, $request) { - $submissionFile = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION_FILE); - $stageId = $request->getUserVar('stageId'); - import('lib.pkp.controllers.tab.pubIds.form.PKPPublicIdentifiersForm'); - $form = new PKPPublicIdentifiersForm($submissionFile, $stageId); - $form->readInputData(); - if ($form->validate()) { - $form->execute(); - return DAO::getDataChangedEvent($submissionFile->getId()); - } else { - return new JSONMessage(true, $form->fetch($request)); - } - } - - /** - * Clear proof submission file pub id. - * @param $args array - * @param $request Request - * @return JSONMessage JSON object - */ - function clearPubId($args, $request) { - $submissionFile = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION_FILE); - $stageId = $request->getUserVar('stageId'); - import('lib.pkp.controllers.tab.pubIds.form.PKPPublicIdentifiersForm'); - $form = new PKPPublicIdentifiersForm($submissionFile, $stageId); - $form->clearPubId($request->getUserVar('pubIdPlugIn')); - return new JSONMessage(true); - } - - - // - // Subclassed methods - // - - /** - * Get the list of notifications to be updated on metadata form submission. - * @return array - */ - protected function getUpdateNotifications() { - $updateNotifications = parent::getUpdateNotifications(); - $updateNotifications[] = NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS; - return $updateNotifications; - } -} - - diff --git a/controllers/api/file/ManageFileApiHandler.php b/controllers/api/file/ManageFileApiHandler.php new file mode 100644 index 00000000000..98ab5a1257a --- /dev/null +++ b/controllers/api/file/ManageFileApiHandler.php @@ -0,0 +1,140 @@ +addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN, Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_ASSISTANT, Role::ROLE_ID_REVIEWER, Role::ROLE_ID_AUTHOR], + ['identifiers', 'updateIdentifiers', 'clearPubId',] + ); + } + + /** + * @copydoc PKPManageFileApiHandler::editMetadata + */ + public function editMetadata($args, $request) + { + $submissionFile = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION_FILE); + if ($submissionFile->getFileStage() == SubmissionFile::SUBMISSION_FILE_PROOF) { + $publisherIdEnabled = in_array('file', (array) $request->getContext()->getData('enablePublisherId')); + $pubIdPlugins = PluginRegistry::getPlugins('pubIds'); + $pubIdEnabled = false; + foreach ($pubIdPlugins as $pubIdPlugin) { + if ($pubIdPlugin->isObjectTypeEnabled('SubmissionFile', $request->getContext()->getId())) { + $pubIdEnabled = true; + break; + } + } + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign('showIdentifierTab', $publisherIdEnabled || $pubIdEnabled); + } + return parent::editMetadata($args, $request); + } + + /** + * Edit proof submission file pub ids. + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function identifiers($args, $request) + { + $submissionFile = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION_FILE); + $stageId = $request->getUserVar('stageId'); + $form = new PublicIdentifiersForm($submissionFile, $stageId); + $form->initData(); + return new JSONMessage(true, $form->fetch($request)); + } + + /** + * Update proof submission file pub ids. + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateIdentifiers($args, $request) + { + $submissionFile = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION_FILE); + $stageId = $request->getUserVar('stageId'); + $form = new PKPPublicIdentifiersForm($submissionFile, $stageId); + $form->readInputData(); + if ($form->validate()) { + $form->execute(); + return DAO::getDataChangedEvent($submissionFile->getId()); + } else { + return new JSONMessage(true, $form->fetch($request)); + } + } + + /** + * Clear proof submission file pub id. + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function clearPubId($args, $request) + { + $submissionFile = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION_FILE); + $stageId = $request->getUserVar('stageId'); + $form = new PKPPublicIdentifiersForm($submissionFile, $stageId); + $form->clearPubId($request->getUserVar('pubIdPlugIn')); + return new JSONMessage(true); + } + + + // + // Subclassed methods + // + + /** + * Get the list of notifications to be updated on metadata form submission. + * + * @return array + */ + protected function getUpdateNotifications() + { + $updateNotifications = parent::getUpdateNotifications(); + $updateNotifications[] = Notification::NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS; + return $updateNotifications; + } +} diff --git a/controllers/grid/catalogEntry/IdentificationCodeGridCellProvider.inc.php b/controllers/grid/catalogEntry/IdentificationCodeGridCellProvider.inc.php deleted file mode 100644 index 01accc65c4d..00000000000 --- a/controllers/grid/catalogEntry/IdentificationCodeGridCellProvider.inc.php +++ /dev/null @@ -1,49 +0,0 @@ -getData(); - $columnId = $column->getId(); - assert(is_a($element, 'DataObject') && !empty($columnId)); - switch ($columnId) { - case 'code': - return array('label' => $element->getNameForONIXCode()); - case 'value': - return array('label' => $element->getValue()); - } - } -} - - diff --git a/controllers/grid/catalogEntry/IdentificationCodeGridCellProvider.php b/controllers/grid/catalogEntry/IdentificationCodeGridCellProvider.php new file mode 100644 index 00000000000..3c14c53cbcc --- /dev/null +++ b/controllers/grid/catalogEntry/IdentificationCodeGridCellProvider.php @@ -0,0 +1,51 @@ +getData(); + $columnId = $column->getId(); + assert($element instanceof \PKP\core\DataObject && !empty($columnId)); + /** @var IdentificationCode $element */ + switch ($columnId) { + case 'code': + return ['label' => $element->getNameForONIXCode()]; + case 'value': + return ['label' => $element->getValue()]; + } + } +} diff --git a/controllers/grid/catalogEntry/IdentificationCodeGridHandler.inc.php b/controllers/grid/catalogEntry/IdentificationCodeGridHandler.inc.php deleted file mode 100644 index c8dbf52d74c..00000000000 --- a/controllers/grid/catalogEntry/IdentificationCodeGridHandler.inc.php +++ /dev/null @@ -1,350 +0,0 @@ -addRoleAssignment( - [ROLE_ID_MANAGER], - ['fetchGrid', 'fetchRow', 'addCode', 'editCode', 'updateCode', 'deleteCode'] - ); - } - - - // - // Getters/Setters - // - /** - * Get the submission associated with this grid. - * @return Submission - */ - function getSubmission() { - return $this->_submission; - } - - /** - * Set the Submission - * @param Submission - */ - function setSubmission($submission) { - $this->_submission = $submission; - } - - /** - * Get the publication associated with this grid. - * @return Publication - */ - function getPublication() { - return $this->_publication; - } - - /** - * Set the Publication - * @param Publication - */ - function setPublication($publication) { - $this->_publication = $publication; - } - - /** - * Get the publication format assocated with these identification codes - * @return PublicationFormat - */ - function getPublicationFormat() { - return $this->_publicationFormat; - } - - /** - * Set the publication format - * @param PublicationFormat - */ - function setPublicationFormat($publicationFormat) { - $this->_publicationFormat = $publicationFormat; - } - - // - // Overridden methods from PKPHandler - // - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.PublicationAccessPolicy'); - $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); - return parent::authorize($request, $args, $roleAssignments); - } - - /** - * @copydoc GridHandler::initialize() - */ - function initialize($request, $args = null) { - parent::initialize($request, $args); - - // Retrieve the authorized submission. - $this->setSubmission($this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION)); - $this->setPublication($this->getAuthorizedContextObject(ASSOC_TYPE_PUBLICATION)); - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $representationId = null; - - // Retrieve the associated publication format for this grid. - $identificationCodeId = (int) $request->getUserVar('identificationCodeId'); // set if editing or deleting a code - - if ($identificationCodeId) { - $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /* @var $identificationCodeDao IdentificationCodeDAO */ - $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); - if ($identificationCode) { - $representationId = $identificationCode->getPublicationFormatId(); - } - } else { // empty form for new Code - $representationId = (int) $request->getUserVar('representationId'); - } - - $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); - - if ($publicationFormat) { - $this->setPublicationFormat($publicationFormat); - } else { - fatalError('The publication format is not assigned to authorized submission!'); - } - - // Load submission-specific translations - AppLocale::requireComponents( - LOCALE_COMPONENT_APP_SUBMISSION, - LOCALE_COMPONENT_PKP_SUBMISSION, - LOCALE_COMPONENT_PKP_USER, - LOCALE_COMPONENT_APP_DEFAULT, - LOCALE_COMPONENT_PKP_DEFAULT - ); - - // Basic grid configuration - $this->setTitle('monograph.publicationFormat.productIdentifierType'); - - // Grid actions - $router = $request->getRouter(); - $actionArgs = $this->getRequestArgs(); - $this->addAction( - new LinkAction( - 'addCode', - new AjaxModal( - $router->url($request, null, null, 'addCode', null, $actionArgs), - __('grid.action.addCode'), - 'modal_add_item' - ), - __('grid.action.addCode'), - 'add_item' - ) - ); - - // Columns - $cellProvider = new IdentificationCodeGridCellProvider(); - $this->addColumn( - new GridColumn( - 'value', - 'grid.catalogEntry.identificationCodeValue', - null, - null, - $cellProvider, - array('width' => 50, 'alignment' => COLUMN_ALIGNMENT_LEFT) - ) - ); - $this->addColumn( - new GridColumn( - 'code', - 'grid.catalogEntry.identificationCodeType', - null, - null, - $cellProvider - ) - ); - } - - - // - // Overridden methods from GridHandler - // - /** - * @see GridHandler::getRowInstance() - * @return IdentificationCodeGridRow - */ - function getRowInstance() { - return new IdentificationCodeGridRow($this->getSubmission(), $this->getPublication()); - } - - /** - * Get the arguments that will identify the data in the grid - * In this case, the submission. - * @return array - */ - function getRequestArgs() { - return [ - 'submissionId' => $this->getSubmission()->getId(), - 'publicationId' => $this->getPublication()->getId(), - 'representationId' => $this->getPublicationFormat()->getId() - ]; - } - - /** - * @see GridHandler::loadData - */ - function loadData($request, $filter = null) { - $publicationFormat = $this->getPublicationFormat(); - $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /* @var $identificationCodeDao IdentificationCodeDAO */ - $data = $identificationCodeDao->getByPublicationFormatId($publicationFormat->getId()); - return $data->toArray(); - } - - - // - // Public Identification Code Grid Actions - // - /** - * Edit a new (empty) code - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function addCode($args, $request) { - return $this->editCode($args, $request); - } - - /** - * Edit a code - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editCode($args, $request) { - // Identify the code to be updated - $identificationCodeId = (int) $request->getUserVar('identificationCodeId'); - $submission = $this->getSubmission(); - - $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /* @var $identificationCodeDao IdentificationCodeDAO */ - $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.IdentificationCodeForm'); - $identificationCodeForm = new IdentificationCodeForm($submission, $this->getPublication(), $identificationCode); - $identificationCodeForm->initData(); - - return new JSONMessage(true, $identificationCodeForm->fetch($request)); - } - - /** - * Update a code - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateCode($args, $request) { - // Identify the code to be updated - $identificationCodeId = $request->getUserVar('identificationCodeId'); - $submission = $this->getSubmission(); - - $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /* @var $identificationCodeDao IdentificationCodeDAO */ - $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.IdentificationCodeForm'); - $identificationCodeForm = new IdentificationCodeForm($submission, $this->getPublication(), $identificationCode); - $identificationCodeForm->readInputData(); - if ($identificationCodeForm->validate()) { - $identificationCodeId = $identificationCodeForm->execute(); - - if(!isset($identificationCode)) { - // This is a new code - $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); - // New added code action notification content. - $notificationContent = __('notification.addedIdentificationCode'); - } else { - // code edit action notification content. - $notificationContent = __('notification.editedIdentificationCode'); - } - - // Create trivial notification. - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => $notificationContent)); - - // Prepare the grid row data - $row = $this->getRowInstance(); - $row->setGridId($this->getId()); - $row->setId($identificationCodeId); - $row->setData($identificationCode); - $row->initialize($request); - - // Render the row into a JSON response - return DAO::getDataChangedEvent(); - - } else { - return new JSONMessage(true, $identificationCodeForm->fetch($request)); - } - } - - /** - * Delete a code - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deleteCode($args, $request) { - - // Identify the code to be deleted - $identificationCodeId = $request->getUserVar('identificationCodeId'); - - $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /* @var $identificationCodeDao IdentificationCodeDAO */ - $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); - if ($identificationCode != null) { // authorized - - $result = $identificationCodeDao->deleteObject($identificationCode); - - if ($result) { - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => __('notification.removedIdentificationCode'))); - return DAO::getDataChangedEvent(); - } else { - return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - } - } - } -} - - diff --git a/controllers/grid/catalogEntry/IdentificationCodeGridHandler.php b/controllers/grid/catalogEntry/IdentificationCodeGridHandler.php new file mode 100644 index 00000000000..c7b0e4644f2 --- /dev/null +++ b/controllers/grid/catalogEntry/IdentificationCodeGridHandler.php @@ -0,0 +1,383 @@ +addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ['fetchGrid', 'fetchRow', 'addCode', 'editCode', 'updateCode', 'deleteCode'] + ); + } + + + // + // Getters/Setters + // + /** + * Get the submission associated with this grid. + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Set the Submission + * + * @param Submission + */ + public function setSubmission($submission) + { + $this->_submission = $submission; + } + + /** + * Get the publication associated with this grid. + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the Publication + * + * @param Publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + /** + * Get the publication format associated with these identification codes + * + * @return PublicationFormat + */ + public function getPublicationFormat() + { + return $this->_publicationFormat; + } + + /** + * Set the publication format + * + * @param PublicationFormat + */ + public function setPublicationFormat($publicationFormat) + { + $this->_publicationFormat = $publicationFormat; + } + + // + // Overridden methods from PKPHandler + // + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); + return parent::authorize($request, $args, $roleAssignments); + } + + /** + * @copydoc GridHandler::initialize() + * + * @param null|mixed $args + */ + public function initialize($request, $args = null) + { + parent::initialize($request, $args); + + // Retrieve the authorized submission. + $this->setSubmission($this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION)); + $this->setPublication($this->getAuthorizedContextObject(Application::ASSOC_TYPE_PUBLICATION)); + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $representationId = null; + + // Retrieve the associated publication format for this grid. + $identificationCodeId = (int) $request->getUserVar('identificationCodeId'); // set if editing or deleting a code + + if ($identificationCodeId) { + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); + if ($identificationCode) { + $representationId = $identificationCode->getPublicationFormatId(); + } + } else { // empty form for new Code + $representationId = (int) $request->getUserVar('representationId'); + } + + $publicationFormat = $representationId + ? $publicationFormatDao->getById((int) $representationId, $this->getPublication()->getId()) + : null; + + if ($publicationFormat) { + $this->setPublicationFormat($publicationFormat); + } else { + throw new Exception('The publication format is not assigned to authorized submission!'); + } + + // Basic grid configuration + $this->setTitle('monograph.publicationFormat.productIdentifierType'); + + // Grid actions + $router = $request->getRouter(); + $actionArgs = $this->getRequestArgs(); + $this->addAction( + new LinkAction( + 'addCode', + new AjaxModal( + $router->url($request, null, null, 'addCode', null, $actionArgs), + __('grid.action.addCode'), + 'modal_add_item' + ), + __('grid.action.addCode'), + 'add_item' + ) + ); + + // Columns + $cellProvider = new IdentificationCodeGridCellProvider(); + $this->addColumn( + new GridColumn( + 'value', + 'grid.catalogEntry.identificationCodeValue', + null, + null, + $cellProvider, + ['width' => 50, 'alignment' => GridColumn::COLUMN_ALIGNMENT_LEFT] + ) + ); + $this->addColumn( + new GridColumn( + 'code', + 'grid.catalogEntry.identificationCodeType', + null, + null, + $cellProvider + ) + ); + } + + + // + // Overridden methods from GridHandler + // + /** + * @see GridHandler::getRowInstance() + * + * @return IdentificationCodeGridRow + */ + public function getRowInstance() + { + return new IdentificationCodeGridRow($this->getSubmission(), $this->getPublication()); + } + + /** + * Get the arguments that will identify the data in the grid + * In this case, the submission. + * + * @return array + */ + public function getRequestArgs() + { + return [ + 'submissionId' => $this->getSubmission()->getId(), + 'publicationId' => $this->getPublication()->getId(), + 'representationId' => $this->getPublicationFormat()->getId() + ]; + } + + /** + * @see GridHandler::loadData + * + * @param null|mixed $filter + */ + public function loadData($request, $filter = null) + { + $publicationFormat = $this->getPublicationFormat(); + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + $data = $identificationCodeDao->getByPublicationFormatId($publicationFormat->getId()); + return $data->toArray(); + } + + + // + // Public Identification Code Grid Actions + // + /** + * Edit a new (empty) code + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function addCode($args, $request) + { + return $this->editCode($args, $request); + } + + /** + * Edit a code + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editCode($args, $request) + { + // Identify the code to be updated + $identificationCodeId = (int) $request->getUserVar('identificationCodeId'); + $submission = $this->getSubmission(); + + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); + + // Form handling + $identificationCodeForm = new IdentificationCodeForm($submission, $this->getPublication(), $identificationCode); + $identificationCodeForm->initData(); + + return new JSONMessage(true, $identificationCodeForm->fetch($request)); + } + + /** + * Update a code + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateCode($args, $request) + { + // Identify the code to be updated + $identificationCodeId = $request->getUserVar('identificationCodeId'); + $submission = $this->getSubmission(); + + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); + + // Form handling + $identificationCodeForm = new IdentificationCodeForm($submission, $this->getPublication(), $identificationCode); + $identificationCodeForm->readInputData(); + if ($identificationCodeForm->validate()) { + $identificationCodeId = $identificationCodeForm->execute(); + + if (!isset($identificationCode)) { + // This is a new code + $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); + // New added code action notification content. + $notificationContent = __('notification.addedIdentificationCode'); + } else { + // code edit action notification content. + $notificationContent = __('notification.editedIdentificationCode'); + } + + // Create trivial notification. + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => $notificationContent]); + + // Prepare the grid row data + $row = $this->getRowInstance(); + $row->setGridId($this->getId()); + $row->setId($identificationCodeId); + $row->setData($identificationCode); + $row->initialize($request); + + // Render the row into a JSON response + return DAO::getDataChangedEvent(); + } else { + return new JSONMessage(true, $identificationCodeForm->fetch($request)); + } + } + + /** + * Delete a code + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deleteCode($args, $request) + { + // Identify the code to be deleted + $identificationCodeId = $request->getUserVar('identificationCodeId'); + + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + $identificationCode = $identificationCodeDao->getById($identificationCodeId, $this->getPublication()->getId()); + if (!$identificationCode) { + return new JSONMessage(false, __('manager.setup.errorDeletingItem')); + } + + $identificationCodeDao->deleteObject($identificationCode); + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => __('notification.removedIdentificationCode')]); + return DAO::getDataChangedEvent(); + } +} diff --git a/controllers/grid/catalogEntry/IdentificationCodeGridRow.inc.php b/controllers/grid/catalogEntry/IdentificationCodeGridRow.inc.php deleted file mode 100644 index 6efe2885580..00000000000 --- a/controllers/grid/catalogEntry/IdentificationCodeGridRow.inc.php +++ /dev/null @@ -1,97 +0,0 @@ -_monograph = $monograph; - $this->_publication = $publication; - parent::__construct(); - } - - // - // Overridden methods from GridRow - // - /** - * @copydoc GridRow::initialize() - */ - function initialize($request, $template = null) { - // Do the default initialization - parent::initialize($request, $template); - - $monograph = $this->getMonograph(); - - // Is this a new row or an existing row? - $identificationCode = $this->_data; - - if ($identificationCode != null && is_numeric($identificationCode->getId())) { - $router = $request->getRouter(); - $actionArgs = [ - 'submissionId' => $monograph->getId(), - 'publicationId' => $this->_publication->getId(), - 'identificationCodeId' => $identificationCode->getId() - ]; - - // Add row-level actions - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'editCode', - new AjaxModal( - $router->url($request, null, null, 'editCode', null, $actionArgs), - __('grid.action.edit'), - 'modal_edit' - ), - __('grid.action.edit'), - 'edit' - ) - ); - - import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal'); - $this->addAction( - new LinkAction( - 'deleteCode', - new RemoteActionConfirmationModal( - $request->getSession(), - __('common.confirmDelete'), - __('common.delete'), - $router->url($request, null, null, 'deleteCode', null, $actionArgs), - 'modal_delete' - ), - __('grid.action.delete'), - 'delete' - ) - ); - } - } - - /** - * Get the monograph for this row (already authorized) - * @return Monograph - */ - function getMonograph() { - return $this->_monograph; - } -} - diff --git a/controllers/grid/catalogEntry/IdentificationCodeGridRow.php b/controllers/grid/catalogEntry/IdentificationCodeGridRow.php new file mode 100644 index 00000000000..3444e0d8a5f --- /dev/null +++ b/controllers/grid/catalogEntry/IdentificationCodeGridRow.php @@ -0,0 +1,109 @@ +_monograph = $monograph; + $this->_publication = $publication; + parent::__construct(); + } + + // + // Overridden methods from GridRow + // + /** + * @copydoc GridRow::initialize() + * + * @param null|mixed $template + */ + public function initialize($request, $template = null) + { + // Do the default initialization + parent::initialize($request, $template); + + $monograph = $this->getMonograph(); + + // Is this a new row or an existing row? + $identificationCode = $this->_data; + + if ($identificationCode != null && is_numeric($identificationCode->getId())) { + $router = $request->getRouter(); + $actionArgs = [ + 'submissionId' => $monograph->getId(), + 'publicationId' => $this->_publication->getId(), + 'identificationCodeId' => $identificationCode->getId() + ]; + + // Add row-level actions + $this->addAction( + new LinkAction( + 'editCode', + new AjaxModal( + $router->url($request, null, null, 'editCode', null, $actionArgs), + __('grid.action.edit'), + 'modal_edit' + ), + __('grid.action.edit'), + 'edit' + ) + ); + + $this->addAction( + new LinkAction( + 'deleteCode', + new RemoteActionConfirmationModal( + $request->getSession(), + __('common.confirmDelete'), + __('common.delete'), + $router->url($request, null, null, 'deleteCode', null, $actionArgs), + 'modal_delete' + ), + __('grid.action.delete'), + 'delete' + ) + ); + } + } + + /** + * Get the monograph for this row (already authorized) + * + * @return Submission + */ + public function getMonograph() + { + return $this->_monograph; + } +} diff --git a/controllers/grid/catalogEntry/MarketsGridCellProvider.inc.php b/controllers/grid/catalogEntry/MarketsGridCellProvider.inc.php deleted file mode 100644 index c3a767b3c21..00000000000 --- a/controllers/grid/catalogEntry/MarketsGridCellProvider.inc.php +++ /dev/null @@ -1,51 +0,0 @@ -getData(); - $columnId = $column->getId(); - assert(is_a($element, 'DataObject') && !empty($columnId)); - switch ($columnId) { - case 'territory': - return array('label' => $element->getTerritoriesAsString()); - case 'rep': - return array('label' => $element->getAssignedRepresentativeNames()); - case 'price': - return array('label' => $element->getPrice() . $element->getCurrencyCode()); - } - } -} - - diff --git a/controllers/grid/catalogEntry/MarketsGridCellProvider.php b/controllers/grid/catalogEntry/MarketsGridCellProvider.php new file mode 100644 index 00000000000..e656b357f3e --- /dev/null +++ b/controllers/grid/catalogEntry/MarketsGridCellProvider.php @@ -0,0 +1,53 @@ +getData(); + $columnId = $column->getId(); + assert(is_a($element, 'DataObject') && !empty($columnId)); + /** @var Market $element */ + switch ($columnId) { + case 'territory': + return ['label' => $element->getTerritoriesAsString()]; + case 'rep': + return ['label' => $element->getAssignedRepresentativeNames()]; + case 'price': + return ['label' => $element->getPrice() . $element->getCurrencyCode()]; + } + } +} diff --git a/controllers/grid/catalogEntry/MarketsGridHandler.inc.php b/controllers/grid/catalogEntry/MarketsGridHandler.inc.php deleted file mode 100644 index 5a54239e107..00000000000 --- a/controllers/grid/catalogEntry/MarketsGridHandler.inc.php +++ /dev/null @@ -1,357 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_MANAGER), - array('fetchGrid', 'fetchRow', 'addMarket', 'editMarket', - 'updateMarket', 'deleteMarket')); - } - - - // - // Getters/Setters - // - /** - * Get the submission associated with this grid. - * @return Submission - */ - function getSubmission() { - return $this->_submission; - } - - /** - * Set the Submission - * @param Submission - */ - function setSubmission($submission) { - $this->_submission = $submission; - } - - /** - * Get the Publication associated with this grid. - * @return Publication - */ - function getPublication() { - return $this->_publication; - } - - /** - * Set the Publication - * @param Publication - */ - function setPublication($publication) { - $this->_publication = $publication; - } - - /** - * Get the publication format assocated with these markets - * @return PublicationFormat - */ - function getPublicationFormat() { - return $this->_publicationFormat; - } - - /** - * Set the publication format - * @param PublicationFormat - */ - function setPublicationFormat($publicationFormat) { - $this->_publicationFormat = $publicationFormat; - } - - // - // Overridden methods from PKPHandler - // - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.PublicationAccessPolicy'); - $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); - return parent::authorize($request, $args, $roleAssignments); - } - - /** - * @copydoc GridHandler::initialize() - */ - function initialize($request, $args = null) { - parent::initialize($request, $args); - - // Retrieve the authorized submission. - $submission = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION); - $this->setPublication($this->getAuthorizedContextObject(ASSOC_TYPE_PUBLICATION)); - $this->setSubmission($submission); - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $representationId = null; - - // Retrieve the associated publication format for this grid. - $marketId = (int) $request->getUserVar('marketId'); // set if editing or deleting a market entry - - if ($marketId) { - $marketDao = DAORegistry::getDAO('MarketDAO'); /* @var $marketDao MarketDAO */ - $market = $marketDao->getById($marketId, $this->getPublication()->getId()); - if ($market) { - $representationId = $market->getPublicationFormatId(); - } - } else { // empty form for new Market - $representationId = (int) $request->getUserVar('representationId'); - } - - $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); - - if ($publicationFormat) { - $this->setPublicationFormat($publicationFormat); - } else { - fatalError('The publication format is not assigned to authorized submission!'); - } - - // Load submission-specific translations - AppLocale::requireComponents( - LOCALE_COMPONENT_APP_SUBMISSION, - LOCALE_COMPONENT_PKP_SUBMISSION, - LOCALE_COMPONENT_PKP_USER, - LOCALE_COMPONENT_APP_DEFAULT, - LOCALE_COMPONENT_PKP_DEFAULT - ); - - // Basic grid configuration - $this->setTitle('grid.catalogEntry.markets'); - - // Grid actions - $router = $request->getRouter(); - $actionArgs = $this->getRequestArgs(); - $this->addAction( - new LinkAction( - 'addMarket', - new AjaxModal( - $router->url($request, null, null, 'addMarket', null, $actionArgs), - __('grid.action.addMarket'), - 'modal_add_item' - ), - __('grid.action.addMarket'), - 'add_item' - ) - ); - - // Columns - $cellProvider = new MarketsGridCellProvider(); - $this->addColumn( - new GridColumn( - 'territory', - 'grid.catalogEntry.marketTerritory', - null, - null, - $cellProvider - ) - ); - $this->addColumn( - new GridColumn( - 'rep', - 'grid.catalogEntry.representatives', - null, - null, - $cellProvider - ) - ); - $this->addColumn( - new GridColumn( - 'price', - 'monograph.publicationFormat.price', - null, - null, - $cellProvider - ) - ); - } - - - // - // Overridden methods from GridHandler - // - /** - * @see GridHandler::getRowInstance() - * @return MarketsGridRow - */ - function getRowInstance() { - return new MarketsGridRow($this->getSubmission(), $this->getPublication()); - } - - /** - * Get the arguments that will identify the data in the grid - * In this case, the submission. - * @return array - */ - function getRequestArgs() { - return [ - 'submissionId' => $this->getSubmission()->getId(), - 'publicationId' => $this->getPublication()->getId(), - 'representationId' => $this->getPublicationFormat()->getId() - ]; - } - - /** - * @copydoc GridHandler::loadData - */ - function loadData($request, $filter = null) { - $publicationFormat = $this->getPublicationFormat(); - $marketDao = DAORegistry::getDAO('MarketDAO'); /* @var $marketDao MarketDAO */ - $data = $marketDao->getByPublicationFormatId($publicationFormat->getId()); - return $data->toArray(); - } - - - // - // Public Market Grid Actions - // - /** - * Add a new market - * @param $args array - * @param $request PKPRequest - */ - function addMarket($args, $request) { - return $this->editMarket($args, $request); - } - - /** - * Edit a markets entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editMarket($args, $request) { - // Identify the market entry to be updated - $marketId = (int) $request->getUserVar('marketId'); - $submission = $this->getSubmission(); - - $marketDao = DAORegistry::getDAO('MarketDAO'); /* @var $marketDao MarketDAO */ - $market = $marketDao->getById($marketId, $this->getPublication()->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.MarketForm'); - $marketForm = new MarketForm($submission, $this->getPublication(), $market); - $marketForm->initData(); - - return new JSONMessage(true, $marketForm->fetch($request)); - } - - /** - * Update a markets entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateMarket($args, $request) { - // Identify the market entry to be updated - $marketId = $request->getUserVar('marketId'); - $submission = $this->getSubmission(); - - $marketDao = DAORegistry::getDAO('MarketDAO'); /* @var $marketDao MarketDAO */ - $market = $marketDao->getById($marketId, $this->getPublication()->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.MarketForm'); - $marketForm = new MarketForm($submission, $this->getPublication(), $market); - $marketForm->readInputData(); - if ($marketForm->validate()) { - $marketId = $marketForm->execute(); - - if(!isset($market)) { - // This is a new entry - $market = $marketDao->getById($marketId, $this->getPublication()->getId()); - // New added entry action notification content. - $notificationContent = __('notification.addedMarket'); - } else { - // entry edit action notification content. - $notificationContent = __('notification.editedMarket'); - } - - // Create trivial notification. - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => $notificationContent)); - - // Prepare the grid row data - $row = $this->getRowInstance(); - $row->setGridId($this->getId()); - $row->setId($marketId); - $row->setData($market); - $row->initialize($request); - - // Render the row into a JSON response - return DAO::getDataChangedEvent(); - - } else { - return new JSONMessage(true, $marketForm->fetch($request)); - } - } - - /** - * Delete a market entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deleteMarket($args, $request) { - - // Identify the markets entry to be deleted - $marketId = $request->getUserVar('marketId'); - - $marketDao = DAORegistry::getDAO('MarketDAO'); /* @var $marketDao MarketDAO */ - $market = $marketDao->getById($marketId, $this->getPublication()->getId()); - if ($market != null) { // authorized - - $result = $marketDao->deleteObject($market); - - if ($result) { - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => __('notification.removedMarket'))); - return DAO::getDataChangedEvent(); - } else { - return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - } - } - } -} - - diff --git a/controllers/grid/catalogEntry/MarketsGridHandler.php b/controllers/grid/catalogEntry/MarketsGridHandler.php new file mode 100644 index 00000000000..e41c6fadf5c --- /dev/null +++ b/controllers/grid/catalogEntry/MarketsGridHandler.php @@ -0,0 +1,391 @@ +addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ['fetchGrid', 'fetchRow', 'addMarket', 'editMarket', + 'updateMarket', 'deleteMarket'] + ); + } + + + // + // Getters/Setters + // + /** + * Get the submission associated with this grid. + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Set the Submission + * + * @param Submission + */ + public function setSubmission($submission) + { + $this->_submission = $submission; + } + + /** + * Get the Publication associated with this grid. + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the Publication + * + * @param Publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + /** + * Get the publication format associated with these markets + * + * @return PublicationFormat + */ + public function getPublicationFormat() + { + return $this->_publicationFormat; + } + + /** + * Set the publication format + * + * @param PublicationFormat + */ + public function setPublicationFormat($publicationFormat) + { + $this->_publicationFormat = $publicationFormat; + } + + // + // Overridden methods from PKPHandler + // + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); + return parent::authorize($request, $args, $roleAssignments); + } + + /** + * @copydoc GridHandler::initialize() + * + * @param null|mixed $args + */ + public function initialize($request, $args = null) + { + parent::initialize($request, $args); + + // Retrieve the authorized submission. + $submission = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION); + $this->setPublication($this->getAuthorizedContextObject(Application::ASSOC_TYPE_PUBLICATION)); + $this->setSubmission($submission); + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $representationId = null; + + // Retrieve the associated publication format for this grid. + $marketId = (int) $request->getUserVar('marketId'); // set if editing or deleting a market entry + + if ($marketId) { + $marketDao = DAORegistry::getDAO('MarketDAO'); /** @var MarketDAO $marketDao */ + $market = $marketDao->getById($marketId, $this->getPublication()->getId()); + if ($market) { + $representationId = $market->getPublicationFormatId(); + } + } else { // empty form for new Market + $representationId = (int) $request->getUserVar('representationId'); + } + + $publicationFormat = $representationId + ? $publicationFormatDao->getById((int) $representationId, $this->getPublication()->getId()) + : null; + + if ($publicationFormat) { + $this->setPublicationFormat($publicationFormat); + } else { + throw new Exception('The publication format is not assigned to authorized submission!'); + } + + // Basic grid configuration + $this->setTitle('grid.catalogEntry.markets'); + + // Grid actions + $router = $request->getRouter(); + $actionArgs = $this->getRequestArgs(); + $this->addAction( + new LinkAction( + 'addMarket', + new AjaxModal( + $router->url($request, null, null, 'addMarket', null, $actionArgs), + __('grid.action.addMarket'), + 'modal_add_item' + ), + __('grid.action.addMarket'), + 'add_item' + ) + ); + + // Columns + $cellProvider = new MarketsGridCellProvider(); + $this->addColumn( + new GridColumn( + 'territory', + 'grid.catalogEntry.marketTerritory', + null, + null, + $cellProvider + ) + ); + $this->addColumn( + new GridColumn( + 'rep', + 'grid.catalogEntry.representatives', + null, + null, + $cellProvider + ) + ); + $this->addColumn( + new GridColumn( + 'price', + 'monograph.publicationFormat.price', + null, + null, + $cellProvider + ) + ); + } + + + // + // Overridden methods from GridHandler + // + /** + * @see GridHandler::getRowInstance() + * + * @return MarketsGridRow + */ + public function getRowInstance() + { + return new MarketsGridRow($this->getSubmission(), $this->getPublication()); + } + + /** + * Get the arguments that will identify the data in the grid + * In this case, the submission. + * + * @return array + */ + public function getRequestArgs() + { + return [ + 'submissionId' => $this->getSubmission()->getId(), + 'publicationId' => $this->getPublication()->getId(), + 'representationId' => $this->getPublicationFormat()->getId() + ]; + } + + /** + * @copydoc GridHandler::loadData + * + * @param null|mixed $filter + */ + public function loadData($request, $filter = null) + { + $publicationFormat = $this->getPublicationFormat(); + $marketDao = DAORegistry::getDAO('MarketDAO'); /** @var MarketDAO $marketDao */ + $data = $marketDao->getByPublicationFormatId($publicationFormat->getId()); + return $data->toArray(); + } + + + // + // Public Market Grid Actions + // + /** + * Add a new market + * + * @param array $args + * @param Request $request + */ + public function addMarket($args, $request) + { + return $this->editMarket($args, $request); + } + + /** + * Edit a markets entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editMarket($args, $request) + { + // Identify the market entry to be updated + $marketId = (int) $request->getUserVar('marketId'); + $submission = $this->getSubmission(); + + $marketDao = DAORegistry::getDAO('MarketDAO'); /** @var MarketDAO $marketDao */ + $market = $marketDao->getById($marketId, $this->getPublication()->getId()); + + // Form handling + $marketForm = new MarketForm($submission, $this->getPublication(), $market); + $marketForm->initData(); + + return new JSONMessage(true, $marketForm->fetch($request)); + } + + /** + * Update a markets entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateMarket($args, $request) + { + // Identify the market entry to be updated + $marketId = $request->getUserVar('marketId'); + $submission = $this->getSubmission(); + + $marketDao = DAORegistry::getDAO('MarketDAO'); /** @var MarketDAO $marketDao */ + $market = $marketDao->getById($marketId, $this->getPublication()->getId()); + + // Form handling + $marketForm = new MarketForm($submission, $this->getPublication(), $market); + $marketForm->readInputData(); + if ($marketForm->validate()) { + $marketId = $marketForm->execute(); + + if (!isset($market)) { + // This is a new entry + $market = $marketDao->getById($marketId, $this->getPublication()->getId()); + // New added entry action notification content. + $notificationContent = __('notification.addedMarket'); + } else { + // entry edit action notification content. + $notificationContent = __('notification.editedMarket'); + } + + // Create trivial notification. + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => $notificationContent]); + + // Prepare the grid row data + $row = $this->getRowInstance(); + $row->setGridId($this->getId()); + $row->setId($marketId); + $row->setData($market); + $row->initialize($request); + + // Render the row into a JSON response + return DAO::getDataChangedEvent(); + } else { + return new JSONMessage(true, $marketForm->fetch($request)); + } + } + + /** + * Delete a market entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deleteMarket($args, $request) + { + // Identify the markets entry to be deleted + $marketId = $request->getUserVar('marketId'); + + $marketDao = DAORegistry::getDAO('MarketDAO'); /** @var MarketDAO $marketDao */ + $market = $marketDao->getById($marketId, $this->getPublication()->getId()); + if (!$market) { + return new JSONMessage(false, __('manager.setup.errorDeletingItem')); + } + + $marketDao->deleteObject($market); + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => __('notification.removedMarket')]); + return DAO::getDataChangedEvent(); + } +} diff --git a/controllers/grid/catalogEntry/MarketsGridRow.inc.php b/controllers/grid/catalogEntry/MarketsGridRow.inc.php deleted file mode 100644 index 333d6974fcd..00000000000 --- a/controllers/grid/catalogEntry/MarketsGridRow.inc.php +++ /dev/null @@ -1,98 +0,0 @@ -_monograph = $monograph; - $this->_publication = $publication; - parent::__construct(); - } - - // - // Overridden methods from GridRow - // - /** - * @copydoc GridRow::initialize() - */ - function initialize($request, $template = null) { - // Do the default initialization - parent::initialize($request, $template); - - $monograph = $this->getMonograph(); - - // Is this a new row or an existing row? - $market = $this->_data; - - if ($market != null && is_numeric($market->getId())) { - $router = $request->getRouter(); - $actionArgs = array( - 'submissionId' => $monograph->getId(), - 'publicationId' => $this->_publication->getId(), - 'marketId' => $market->getId() - ); - - // Add row-level actions - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'editMarket', - new AjaxModal( - $router->url($request, null, null, 'editMarket', null, $actionArgs), - __('grid.action.edit'), - 'modal_edit' - ), - __('grid.action.edit'), - 'edit' - ) - ); - - import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal'); - $this->addAction( - new LinkAction( - 'deleteMarket', - new RemoteActionConfirmationModal( - $request->getSession(), - __('common.confirmDelete'), - __('common.delete'), - $router->url($request, null, null, 'deleteMarket', null, $actionArgs), - 'modal_delete' - ), - __('grid.action.delete'), - 'delete' - ) - ); - } - } - - /** - * Get the monograph for this row (already authorized) - * @return Monograph - */ - function getMonograph() { - return $this->_monograph; - } -} - diff --git a/controllers/grid/catalogEntry/MarketsGridRow.php b/controllers/grid/catalogEntry/MarketsGridRow.php new file mode 100644 index 00000000000..00d2d233384 --- /dev/null +++ b/controllers/grid/catalogEntry/MarketsGridRow.php @@ -0,0 +1,110 @@ +_monograph = $monograph; + $this->_publication = $publication; + parent::__construct(); + } + + // + // Overridden methods from GridRow + // + /** + * @copydoc GridRow::initialize() + * + * @param null|mixed $template + */ + public function initialize($request, $template = null) + { + // Do the default initialization + parent::initialize($request, $template); + + $monograph = $this->getMonograph(); + + // Is this a new row or an existing row? + $market = $this->_data; + + if ($market != null && is_numeric($market->getId())) { + $router = $request->getRouter(); + $actionArgs = [ + 'submissionId' => $monograph->getId(), + 'publicationId' => $this->_publication->getId(), + 'marketId' => $market->getId() + ]; + + // Add row-level actions + $this->addAction( + new LinkAction( + 'editMarket', + new AjaxModal( + $router->url($request, null, null, 'editMarket', null, $actionArgs), + __('grid.action.edit'), + 'modal_edit' + ), + __('grid.action.edit'), + 'edit' + ) + ); + + $this->addAction( + new LinkAction( + 'deleteMarket', + new RemoteActionConfirmationModal( + $request->getSession(), + __('common.confirmDelete'), + __('common.delete'), + $router->url($request, null, null, 'deleteMarket', null, $actionArgs), + 'modal_delete' + ), + __('grid.action.delete'), + 'delete' + ) + ); + } + } + + /** + * Get the monograph for this row (already authorized) + * + * @return Submission + */ + public function getMonograph() + { + return $this->_monograph; + } +} diff --git a/controllers/grid/catalogEntry/PublicationDateGridCellProvider.inc.php b/controllers/grid/catalogEntry/PublicationDateGridCellProvider.inc.php deleted file mode 100644 index 0f8835ad96f..00000000000 --- a/controllers/grid/catalogEntry/PublicationDateGridCellProvider.inc.php +++ /dev/null @@ -1,48 +0,0 @@ -getData(); - $columnId = $column->getId(); - assert(is_a($element, 'DataObject') && !empty($columnId)); - switch ($columnId) { - case 'code': - return array('label' => $element->getNameForONIXCode()); - case 'value': - return array('label' => $element->getDate()); - } - } -} - diff --git a/controllers/grid/catalogEntry/PublicationDateGridCellProvider.php b/controllers/grid/catalogEntry/PublicationDateGridCellProvider.php new file mode 100644 index 00000000000..071a1c4f215 --- /dev/null +++ b/controllers/grid/catalogEntry/PublicationDateGridCellProvider.php @@ -0,0 +1,51 @@ +getData(); + $columnId = $column->getId(); + assert(is_a($element, 'DataObject') && !empty($columnId)); + /** @var PublicationDate $element */ + switch ($columnId) { + case 'code': + return ['label' => $element->getNameForONIXCode()]; + case 'value': + return ['label' => $element->getDate()]; + } + } +} diff --git a/controllers/grid/catalogEntry/PublicationDateGridHandler.inc.php b/controllers/grid/catalogEntry/PublicationDateGridHandler.inc.php deleted file mode 100644 index eff6470e484..00000000000 --- a/controllers/grid/catalogEntry/PublicationDateGridHandler.inc.php +++ /dev/null @@ -1,351 +0,0 @@ -addRoleAssignment( - [ROLE_ID_MANAGER], - ['fetchGrid', 'fetchRow', 'addDate', 'editDate', 'updateDate', 'deleteDate'] - ); - } - - - // - // Getters/Setters - // - /** - * Get the submission associated with this grid. - * @return Submission - */ - function getSubmission() { - return $this->_submission; - } - - /** - * Set the Submission - * @param Submission - */ - function setSubmission($submission) { - $this->_submission = $submission; - } - - /** - * Get the publication associated with this grid. - * @return Publication - */ - function getPublication() { - return $this->_publication; - } - - /** - * Set the Publication - * @param Publication - */ - function setPublication($publication) { - $this->_publication = $publication; - } - - /** - * Get the publication format assocated with these dates - * @return PublicationFormat - */ - function getPublicationFormat() { - return $this->_publicationFormat; - } - - /** - * Set the publication format - * @param PublicationFormat - */ - function setPublicationFormat($publicationFormat) { - $this->_publicationFormat = $publicationFormat; - } - - // - // Overridden methods from PKPHandler - // - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.PublicationAccessPolicy'); - $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); - return parent::authorize($request, $args, $roleAssignments); - } - - /** - * @copydoc GridHandler::initialize() - */ - function initialize($request, $args = null) { - parent::initialize($request, $args); - - // Retrieve the authorized submission. - $this->setSubmission($this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION)); - $this->setPublication($this->getAuthorizedContextObject(ASSOC_TYPE_PUBLICATION)); - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $representationId = null; - - // Retrieve the associated publication format for this grid. - $publicationDateId = (int) $request->getUserVar('publicationDateId'); // set if editing or deleting a date - - if ($publicationDateId) { - $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /* @var $publicationDateDao PublicationDateDAO */ - $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); - if ($publicationDate) { - $representationId = $publicationDate->getPublicationFormatId(); - } - } else { // empty form for new Date - $representationId = (int) $request->getUserVar('representationId'); - } - - $submission = $this->getSubmission(); - $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); - - if ($publicationFormat) { - $this->setPublicationFormat($publicationFormat); - } else { - fatalError('The publication format is not assigned to authorized submission!'); - } - - // Load submission-specific translations - AppLocale::requireComponents( - LOCALE_COMPONENT_APP_SUBMISSION, - LOCALE_COMPONENT_PKP_SUBMISSION, - LOCALE_COMPONENT_PKP_USER, - LOCALE_COMPONENT_APP_DEFAULT, - LOCALE_COMPONENT_PKP_DEFAULT - ); - - // Basic grid configuration - $this->setTitle('grid.catalogEntry.publicationDates'); - - // Grid actions - $router = $request->getRouter(); - $actionArgs = $this->getRequestArgs(); - $this->addAction( - new LinkAction( - 'addDate', - new AjaxModal( - $router->url($request, null, null, 'addDate', null, $actionArgs), - __('grid.action.addDate'), - 'modal_add_item' - ), - __('grid.action.addDate'), - 'add_item' - ) - ); - - // Columns - $cellProvider = new PublicationDateGridCellProvider(); - $this->addColumn( - new GridColumn( - 'value', - 'grid.catalogEntry.dateValue', - null, - null, - $cellProvider, - array('width' => 50, 'alignment' => COLUMN_ALIGNMENT_LEFT) - ) - ); - $this->addColumn( - new GridColumn( - 'code', - 'grid.catalogEntry.dateRole', - null, - null, - $cellProvider - ) - ); - } - - - // - // Overridden methods from GridHandler - // - /** - * @see GridHandler::getRowInstance() - * @return PublicationDateGridRow - */ - function getRowInstance() { - return new PublicationDateGridRow($this->getSubmission(), $this->getPublication()); - } - - /** - * Get the arguments that will identify the data in the grid - * In this case, the submission. - * @return array - */ - function getRequestArgs() { - return [ - 'submissionId' => $this->getSubmission()->getId(), - 'publicationId' => $this->getPublication()->getId(), - 'representationId' => $this->getPublicationFormat()->getId() - ]; - } - - /** - * @see GridHandler::loadData - */ - function loadData($request, $filter = null) { - $publicationFormat = $this->getPublicationFormat(); - $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /* @var $publicationDateDao PublicationDateDAO */ - $data = $publicationDateDao->getByPublicationFormatId($publicationFormat->getId()); - return $data->toArray(); - } - - - // - // Public Date Grid Actions - // - /** - * Edit a new (empty) date - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function addDate($args, $request) { - return $this->editDate($args, $request); - } - - /** - * Edit a date - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editDate($args, $request) { - // Identify the date to be updated - $publicationDateId = (int) $request->getUserVar('publicationDateId'); - $submission = $this->getSubmission(); - - $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /* @var $publicationDateDao PublicationDateDAO */ - $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.PublicationDateForm'); - $publicationDateForm = new PublicationDateForm($submission, $this->getPublication(), $publicationDate); - $publicationDateForm->initData(); - - return new JSONMessage(true, $publicationDateForm->fetch($request)); - } - - /** - * Update a date - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateDate($args, $request) { - // Identify the code to be updated - $publicationDateId = $request->getUserVar('publicationDateId'); - $submission = $this->getSubmission(); - - $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /* @var $publicationDateDao PublicationDateDAO */ - $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.PublicationDateForm'); - $publicationDateForm = new PublicationDateForm($submission, $this->getPublication(), $publicationDate); - $publicationDateForm->readInputData(); - if ($publicationDateForm->validate()) { - $publicationDateId = $publicationDateForm->execute(); - - if(!isset($publicationDate)) { - // This is a new code - $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); - // New added code action notification content. - $notificationContent = __('notification.addedPublicationDate'); - } else { - // code edit action notification content. - $notificationContent = __('notification.editedPublicationDate'); - } - - // Create trivial notification. - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => $notificationContent)); - - // Prepare the grid row data - $row = $this->getRowInstance(); - $row->setGridId($this->getId()); - $row->setId($publicationDateId); - $row->setData($publicationDate); - $row->initialize($request); - - // Render the row into a JSON response - return DAO::getDataChangedEvent(); - - } else { - return new JSONMessage(true, $publicationDateForm->fetch($request)); - } - } - - /** - * Delete a date - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deleteDate($args, $request) { - - // Identify the code to be deleted - $publicationDateId = $request->getUserVar('publicationDateId'); - - $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /* @var $publicationDateDao PublicationDateDAO */ - $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); - if ($publicationDate != null) { // authorized - - $result = $publicationDateDao->deleteObject($publicationDate); - - if ($result) { - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => __('notification.removedPublicationDate'))); - return DAO::getDataChangedEvent(); - } else { - return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - } - } - } -} - - diff --git a/controllers/grid/catalogEntry/PublicationDateGridHandler.php b/controllers/grid/catalogEntry/PublicationDateGridHandler.php new file mode 100644 index 00000000000..42b792e17bc --- /dev/null +++ b/controllers/grid/catalogEntry/PublicationDateGridHandler.php @@ -0,0 +1,383 @@ +addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ['fetchGrid', 'fetchRow', 'addDate', 'editDate', 'updateDate', 'deleteDate'] + ); + } + + + // + // Getters/Setters + // + /** + * Get the submission associated with this grid. + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Set the Submission + * + * @param Submission + */ + public function setSubmission($submission) + { + $this->_submission = $submission; + } + + /** + * Get the publication associated with this grid. + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the Publication + * + * @param Publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + /** + * Get the publication format associated with these dates + * + * @return PublicationFormat + */ + public function getPublicationFormat() + { + return $this->_publicationFormat; + } + + /** + * Set the publication format + * + * @param PublicationFormat + */ + public function setPublicationFormat($publicationFormat) + { + $this->_publicationFormat = $publicationFormat; + } + + // + // Overridden methods from PKPHandler + // + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); + return parent::authorize($request, $args, $roleAssignments); + } + + /** + * @copydoc GridHandler::initialize() + * + * @param null|mixed $args + */ + public function initialize($request, $args = null) + { + parent::initialize($request, $args); + + // Retrieve the authorized submission. + $this->setSubmission($this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION)); + $this->setPublication($this->getAuthorizedContextObject(Application::ASSOC_TYPE_PUBLICATION)); + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $representationId = null; + + // Retrieve the associated publication format for this grid. + $publicationDateId = (int) $request->getUserVar('publicationDateId'); // set if editing or deleting a date + + if ($publicationDateId) { + $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /** @var PublicationDateDAO $publicationDateDao */ + $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); + if ($publicationDate) { + $representationId = $publicationDate->getPublicationFormatId(); + } + } else { // empty form for new Date + $representationId = (int) $request->getUserVar('representationId'); + } + + $publicationFormat = $representationId + ? $publicationFormatDao->getById((int) $representationId, $this->getPublication()->getId()) + : null; + + if ($publicationFormat) { + $this->setPublicationFormat($publicationFormat); + } else { + throw new Exception('The publication format is not assigned to authorized submission!'); + } + + // Basic grid configuration + $this->setTitle('grid.catalogEntry.publicationDates'); + + // Grid actions + $router = $request->getRouter(); + $actionArgs = $this->getRequestArgs(); + $this->addAction( + new LinkAction( + 'addDate', + new AjaxModal( + $router->url($request, null, null, 'addDate', null, $actionArgs), + __('grid.action.addDate'), + 'modal_add_item' + ), + __('grid.action.addDate'), + 'add_item' + ) + ); + + // Columns + $cellProvider = new PublicationDateGridCellProvider(); + $this->addColumn( + new GridColumn( + 'value', + 'grid.catalogEntry.dateValue', + null, + null, + $cellProvider, + ['width' => 50, 'alignment' => GridColumn::COLUMN_ALIGNMENT_LEFT] + ) + ); + $this->addColumn( + new GridColumn( + 'code', + 'grid.catalogEntry.dateRole', + null, + null, + $cellProvider + ) + ); + } + + + // + // Overridden methods from GridHandler + // + /** + * @see GridHandler::getRowInstance() + * + * @return PublicationDateGridRow + */ + public function getRowInstance() + { + return new PublicationDateGridRow($this->getSubmission(), $this->getPublication()); + } + + /** + * Get the arguments that will identify the data in the grid + * In this case, the submission. + * + * @return array + */ + public function getRequestArgs() + { + return [ + 'submissionId' => $this->getSubmission()->getId(), + 'publicationId' => $this->getPublication()->getId(), + 'representationId' => $this->getPublicationFormat()->getId() + ]; + } + + /** + * @see GridHandler::loadData + * + * @param null|mixed $filter + */ + public function loadData($request, $filter = null) + { + $publicationFormat = $this->getPublicationFormat(); + $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /** @var PublicationDateDAO $publicationDateDao */ + $data = $publicationDateDao->getByPublicationFormatId($publicationFormat->getId()); + return $data->toArray(); + } + + + // + // Public Date Grid Actions + // + /** + * Edit a new (empty) date + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function addDate($args, $request) + { + return $this->editDate($args, $request); + } + + /** + * Edit a date + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editDate($args, $request) + { + // Identify the date to be updated + $publicationDateId = (int) $request->getUserVar('publicationDateId'); + $submission = $this->getSubmission(); + + $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /** @var PublicationDateDAO $publicationDateDao */ + $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); + + // Form handling + $publicationDateForm = new PublicationDateForm($submission, $this->getPublication(), $publicationDate); + $publicationDateForm->initData(); + + return new JSONMessage(true, $publicationDateForm->fetch($request)); + } + + /** + * Update a date + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateDate($args, $request) + { + // Identify the code to be updated + $publicationDateId = $request->getUserVar('publicationDateId'); + $submission = $this->getSubmission(); + + $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /** @var PublicationDateDAO $publicationDateDao */ + $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); + + // Form handling + $publicationDateForm = new PublicationDateForm($submission, $this->getPublication(), $publicationDate); + $publicationDateForm->readInputData(); + if ($publicationDateForm->validate()) { + $publicationDateId = $publicationDateForm->execute(); + + if (!isset($publicationDate)) { + // This is a new code + $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); + // New added code action notification content. + $notificationContent = __('notification.addedPublicationDate'); + } else { + // code edit action notification content. + $notificationContent = __('notification.editedPublicationDate'); + } + + // Create trivial notification. + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => $notificationContent]); + + // Prepare the grid row data + $row = $this->getRowInstance(); + $row->setGridId($this->getId()); + $row->setId($publicationDateId); + $row->setData($publicationDate); + $row->initialize($request); + + // Render the row into a JSON response + return DAO::getDataChangedEvent(); + } else { + return new JSONMessage(true, $publicationDateForm->fetch($request)); + } + } + + /** + * Delete a date + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deleteDate($args, $request) + { + // Identify the code to be deleted + $publicationDateId = $request->getUserVar('publicationDateId'); + + $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /** @var PublicationDateDAO $publicationDateDao */ + $publicationDate = $publicationDateDao->getById($publicationDateId, $this->getPublication()->getId()); + if (!$publicationDate) { + return new JSONMessage(false, __('manager.setup.errorDeletingItem')); + } + + $publicationDateDao->deleteObject($publicationDate); + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => __('notification.removedPublicationDate')]); + return DAO::getDataChangedEvent(); + } +} diff --git a/controllers/grid/catalogEntry/PublicationDateGridRow.inc.php b/controllers/grid/catalogEntry/PublicationDateGridRow.inc.php deleted file mode 100644 index da2b8d5c191..00000000000 --- a/controllers/grid/catalogEntry/PublicationDateGridRow.inc.php +++ /dev/null @@ -1,99 +0,0 @@ -_monograph = $monograph; - $this->_publication = $publication; - parent::__construct(); - } - - // - // Overridden methods from GridRow - // - /** - * @copydoc GridRow::initialize() - */ - function initialize($request, $template = null) { - // Do the default initialization - parent::initialize($request, $template); - - $monograph = $this->getMonograph(); - - // Is this a new row or an existing row? - $publicationDate = $this->_data; - - if ($publicationDate != null && is_numeric($publicationDate->getId())) { - $router = $request->getRouter(); - $actionArgs = array( - 'submissionId' => $monograph->getId(), - 'publicationId' => $this->_publication->getId(), - 'publicationDateId' => $publicationDate->getId() - ); - - // Add row-level actions - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'editDate', - new AjaxModal( - $router->url($request, null, null, 'editDate', null, $actionArgs), - __('grid.action.edit'), - 'modal_edit' - ), - __('grid.action.edit'), - 'edit' - ) - ); - - import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal'); - $this->addAction( - new LinkAction( - 'deleteDate', - new RemoteActionConfirmationModal( - $request->getSession(), - __('common.confirmDelete'), - __('common.delete'), - $router->url($request, null, null, 'deleteDate', null, $actionArgs), - 'modal_delete' - ), - __('grid.action.delete'), - 'delete' - ) - ); - } - } - - /** - * Get the monograph for this row (already authorized) - * @return Monograph - */ - function getMonograph() { - return $this->_monograph; - } -} - diff --git a/controllers/grid/catalogEntry/PublicationDateGridRow.php b/controllers/grid/catalogEntry/PublicationDateGridRow.php new file mode 100644 index 00000000000..4ffa7f91b61 --- /dev/null +++ b/controllers/grid/catalogEntry/PublicationDateGridRow.php @@ -0,0 +1,112 @@ +_monograph = $monograph; + $this->_publication = $publication; + parent::__construct(); + } + + // + // Overridden methods from GridRow + // + /** + * @copydoc GridRow::initialize() + * + * @param null|mixed $template + */ + public function initialize($request, $template = null) + { + // Do the default initialization + parent::initialize($request, $template); + + $monograph = $this->getMonograph(); + + // Is this a new row or an existing row? + $publicationDate = $this->_data; + + if ($publicationDate != null && is_numeric($publicationDate->getId())) { + $router = $request->getRouter(); + $actionArgs = [ + 'submissionId' => $monograph->getId(), + 'publicationId' => $this->_publication->getId(), + 'publicationDateId' => $publicationDate->getId() + ]; + + // Add row-level actions + $this->addAction( + new LinkAction( + 'editDate', + new AjaxModal( + $router->url($request, null, null, 'editDate', null, $actionArgs), + __('grid.action.edit'), + 'modal_edit' + ), + __('grid.action.edit'), + 'edit' + ) + ); + + $this->addAction( + new LinkAction( + 'deleteDate', + new RemoteActionConfirmationModal( + $request->getSession(), + __('common.confirmDelete'), + __('common.delete'), + $router->url($request, null, null, 'deleteDate', null, $actionArgs), + 'modal_delete' + ), + __('grid.action.delete'), + 'delete' + ) + ); + } + } + + /** + * Get the monograph for this row (already authorized) + * + * @return Submission + */ + public function getMonograph() + { + return $this->_monograph; + } +} diff --git a/controllers/grid/catalogEntry/PublicationFormatCategoryGridDataProvider.inc.php b/controllers/grid/catalogEntry/PublicationFormatCategoryGridDataProvider.inc.php deleted file mode 100644 index 33e0adb0e07..00000000000 --- a/controllers/grid/catalogEntry/PublicationFormatCategoryGridDataProvider.inc.php +++ /dev/null @@ -1,119 +0,0 @@ -_gridHandler = $gridHandler; - import('lib.pkp.classes.submission.SubmissionFile'); - parent::__construct(SUBMISSION_FILE_PROOF); - $this->setStageId(WORKFLOW_STAGE_ID_PRODUCTION); - } - - - // - // Getters/setters - // - /** - * Get the representation associated with this grid - * @return Representation - */ - function getRepresentation() { - return $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - } - - /** - * Get the submission associated with this grid - * @return Submission - */ - function getSubmission() { - return $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION); - } - - /** - * Get the publication associated with this grid - * @return Publication - */ - function getPublication() { - return $this->getAuthorizedContextObject(ASSOC_TYPE_PUBLICATION); - } - - // - // Overridden public methods from FilesGridDataProvider - // - /** - * @copydoc GridHandler::getRequestArgs() - */ - function getRequestArgs() { - $representation = $this->getRepresentation(); - return array_merge( - parent::getRequestArgs(), - array( - 'representationId' => $representation->getId(), - 'publicationId' => $this->getPublication()->getId(), - 'assocType' => ASSOC_TYPE_REPRESENTATION, - 'assocId' => $representation->getId(), - ) - ); - } - - /** - * @copydoc GridHandler::loadData - */ - function loadData($filter = array()) { - return Application::getRepresentationDAO() - ->getByPublicationId($this->getPublication()->getId()) - ->toAssociativeArray(); - } - - /** - * @copydoc GridDataProvider::loadCategoryData() - */ - function loadCategoryData($request, $categoryDataElement, $filter = null, $reviewRound = null) { - assert(is_a($categoryDataElement, 'Representation')); - - // Retrieve all submission files for the given file stage. - /** @var $categoryDataElement Representation */ - assert(is_a($categoryDataElement, "Representation")); - - $submissionFiles = Services::get('submissionFile')->getMany([ - 'submissionIds' => [$this->getPublication()->getData('submissionId')], - 'assocTypes' => [ASSOC_TYPE_REPRESENTATION], - 'assocIds' => [$categoryDataElement->getId()], - 'fileStages' => [$this->getFileStage()], - ]); - - // if it is a remotely hosted content, don't provide the files rows - $remoteURL = $categoryDataElement->getRemoteURL(); - if ($remoteURL) { - $this->_gridHandler->setEmptyCategoryRowText('grid.remotelyHostedItem'); - return array(); - } - $this->_gridHandler->setEmptyCategoryRowText('grid.noItems'); - return $this->getDataProvider()->prepareSubmissionFileData($submissionFiles, false, $filter); - - } -} - - diff --git a/controllers/grid/catalogEntry/PublicationFormatCategoryGridDataProvider.php b/controllers/grid/catalogEntry/PublicationFormatCategoryGridDataProvider.php new file mode 100644 index 00000000000..21be47b59ad --- /dev/null +++ b/controllers/grid/catalogEntry/PublicationFormatCategoryGridDataProvider.php @@ -0,0 +1,141 @@ +_gridHandler = $gridHandler; + parent::__construct(SubmissionFile::SUBMISSION_FILE_PROOF); + $this->setStageId(WORKFLOW_STAGE_ID_PRODUCTION); + } + + + // + // Getters/setters + // + /** + * Get the representation associated with this grid + * + * @return Representation + */ + public function getRepresentation() + { + return $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + } + + /** + * Get the submission associated with this grid + * + * @return Submission + */ + public function getSubmission() + { + return $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION); + } + + /** + * Get the publication associated with this grid + * + * @return Publication + */ + public function getPublication() + { + return $this->getAuthorizedContextObject(Application::ASSOC_TYPE_PUBLICATION); + } + + // + // Overridden public methods from FilesGridDataProvider + // + /** + * @copydoc GridHandler::getRequestArgs() + */ + public function getRequestArgs() + { + $representation = $this->getRepresentation(); + return array_merge( + parent::getRequestArgs(), + [ + 'representationId' => $representation->getId(), + 'publicationId' => $this->getPublication()->getId(), + 'assocType' => Application::ASSOC_TYPE_REPRESENTATION, + 'assocId' => $representation->getId(), + ] + ); + } + + /** + * @copydoc GridHandler::loadData + */ + public function loadData($filter = []) + { + return Application::getRepresentationDAO() + ->getByPublicationId($this->getPublication()->getId()); + } + + /** + * @copydoc GridDataProvider::loadCategoryData() + * + * @param null|mixed $filter + * @param null|mixed $reviewRound + */ + public function loadCategoryData($request, $categoryDataElement, $filter = null, $reviewRound = null) + { + assert(is_a($categoryDataElement, 'Representation')); + + // Retrieve all submission files for the given file stage. + /** @var Representation $categoryDataElement */ + assert(is_a($categoryDataElement, 'Representation')); + + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$this->getPublication()->getData('submissionId')]) + ->filterByAssoc( + Application::ASSOC_TYPE_REPRESENTATION, + [$categoryDataElement->getId()] + ) + ->filterByFileStages([$this->getFileStage()]) + ->getMany(); + + // if it is a remotely hosted content, don't provide the files rows + $remoteURL = $categoryDataElement->getRemoteURL(); + if ($remoteURL) { + $this->_gridHandler->setEmptyCategoryRowText('grid.remotelyHostedItem'); + return []; + } + $this->_gridHandler->setEmptyCategoryRowText('grid.noItems'); + /** @var SubmissionFilesGridDataProvider */ + $dataProvider = $this->getDataProvider(); + return $dataProvider->prepareSubmissionFileData($submissionFiles->toArray(), false, $filter); + } +} diff --git a/controllers/grid/catalogEntry/PublicationFormatGridCategoryRow.inc.php b/controllers/grid/catalogEntry/PublicationFormatGridCategoryRow.inc.php deleted file mode 100644 index 1f56bc537a7..00000000000 --- a/controllers/grid/catalogEntry/PublicationFormatGridCategoryRow.inc.php +++ /dev/null @@ -1,127 +0,0 @@ -_submission = $submission; - $this->_canManage = $canManage; - $this->_publication = $publication; - parent::__construct(); - $this->setCellProvider($cellProvider); - } - - // - // Overridden methods from GridCategoryRow - // - /** - * @copydoc GridCategoryRow::getCategoryLabel() - */ - function getCategoryLabel() { - return $this->getData()->getLocalizedName(); - } - - - // - // Overridden methods from GridRow - // - /** - * @copydoc GridRow::initialize() - */ - function initialize($request, $template = null) { - // Do the default initialization - parent::initialize($request, $template); - - // Retrieve the submission from the request - $submission = $this->getSubmission(); - - // Is this a new row or an existing row? - $representation = $this->getData(); - if ($representation && is_numeric($representation->getId()) && $this->_canManage) { - $router = $request->getRouter(); - $actionArgs = array( - 'submissionId' => $submission->getId(), - 'representationId' => $representation->getId(), - 'publicationId' => $this->getPublication()->getId(), - ); - - // Add row-level actions - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'editFormat', - new AjaxModal( - $router->url($request, null, null, 'editFormat', null, $actionArgs), - __('grid.action.edit'), - 'modal_edit' - ), - __('grid.action.edit'), - 'edit' - ) - ); - - import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal'); - $this->addAction( - new LinkAction( - 'deleteFormat', - new RemoteActionConfirmationModal( - $request->getSession(), - __('common.confirmDelete'), - __('common.delete'), - $router->url($request, null, null, 'deleteFormat', null, $actionArgs), - 'modal_delete' - ), - __('grid.action.delete'), - 'delete' - ) - ); - } - } - - /** - * Get the submission for this row (already authorized) - * @return Submission - */ - function getSubmission() { - return $this->_submission; - } - - /** - * Get the publication for this row (already authorized) - * @return Publication - */ - function getPublication() { - return $this->_publication; - } -} - diff --git a/controllers/grid/catalogEntry/PublicationFormatGridCategoryRow.php b/controllers/grid/catalogEntry/PublicationFormatGridCategoryRow.php new file mode 100644 index 00000000000..a1c471327d5 --- /dev/null +++ b/controllers/grid/catalogEntry/PublicationFormatGridCategoryRow.php @@ -0,0 +1,143 @@ +_submission = $submission; + $this->_canManage = $canManage; + $this->_publication = $publication; + parent::__construct(); + $this->setCellProvider($cellProvider); + } + + // + // Overridden methods from GridCategoryRow + // + /** + * @copydoc GridCategoryRow::getCategoryLabel() + */ + public function getCategoryLabel() + { + return $this->getData()->getLocalizedName(); + } + + + // + // Overridden methods from GridRow + // + /** + * @copydoc GridRow::initialize() + * + * @param null|mixed $template + */ + public function initialize($request, $template = null) + { + // Do the default initialization + parent::initialize($request, $template); + + // Retrieve the submission from the request + $submission = $this->getSubmission(); + + // Is this a new row or an existing row? + $representation = $this->getData(); + if ($representation && is_numeric($representation->getId()) && $this->_canManage) { + $router = $request->getRouter(); + $actionArgs = [ + 'submissionId' => $submission->getId(), + 'representationId' => $representation->getId(), + 'publicationId' => $this->getPublication()->getId(), + ]; + + // Add row-level actions + $this->addAction( + new LinkAction( + 'editFormat', + new AjaxModal( + $router->url($request, null, null, 'editFormat', null, $actionArgs), + __('grid.action.edit'), + 'modal_edit' + ), + __('grid.action.edit'), + 'edit' + ) + ); + + $this->addAction( + new LinkAction( + 'deleteFormat', + new RemoteActionConfirmationModal( + $request->getSession(), + __('common.confirmDelete'), + __('common.delete'), + $router->url($request, null, null, 'deleteFormat', null, $actionArgs), + 'modal_delete' + ), + __('grid.action.delete'), + 'delete' + ) + ); + } + } + + /** + * Get the submission for this row (already authorized) + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Get the publication for this row (already authorized) + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } +} diff --git a/controllers/grid/catalogEntry/PublicationFormatGridCellProvider.inc.php b/controllers/grid/catalogEntry/PublicationFormatGridCellProvider.inc.php deleted file mode 100644 index e39ec9d9397..00000000000 --- a/controllers/grid/catalogEntry/PublicationFormatGridCellProvider.inc.php +++ /dev/null @@ -1,268 +0,0 @@ -_submissionId = $submissionId; - $this->_publicationId = $publicationId; - $this->_canManage = $canManage; - } - - - // - // Getters and setters. - // - /** - * Get submission ID. - * @return int - */ - function getSubmissionId() { - return $this->_submissionId; - } - - /** - * Get publication ID. - * @return int - */ - function getPublicationId() { - return $this->_publicationId; - } - - - // - // Template methods from GridCellProvider - // - /** - * Extracts variables for a given column from a data element - * so that they may be assigned to template before rendering. - * @param $row GridRow - * @param $column GridColumn - * @return array - */ - function getTemplateVarsFromRowColumn($row, $column) { - $data = $row->getData(); - - if (is_a($data, 'Representation')) { - /** @var $data Representation */ - switch ($column->getId()) { - case 'indent': return array(); - case 'name': - $remoteURL = $data->getRemoteURL(); - if ($remoteURL) { - return array('label' => ''.htmlspecialchars($data->getLocalizedName()).'' . '' . $data->getNameForONIXCode() . ''); - } - return array('label' => htmlspecialchars($data->getLocalizedName()) . '' . $data->getNameForONIXCode() . ''); - case 'isAvailable': - return array('status' => $data->getIsAvailable()?'completed':'new'); - case 'isComplete': - return array('status' => $data->getIsApproved()?'completed':'new'); - } - } else { - assert(is_array($data) && isset($data['submissionFile'])); - $proofFile = $data['submissionFile']; - switch ($column->getId()) { - case 'isAvailable': - return array('status' => ($proofFile->getSalesType() != null && $proofFile->getDirectSalesPrice() != null)?'completed':'new'); - case 'name': - import('lib.pkp.controllers.grid.files.FileNameGridColumn'); - $fileNameGridColumn = new FileNameGridColumn(true, WORKFLOW_STAGE_ID_PRODUCTION); - return $fileNameGridColumn->getTemplateVarsFromRow($row); - case 'isComplete': - return array('status' => $proofFile->getViewable()?'completed':'new'); - } - } - - return parent::getTemplateVarsFromRowColumn($row, $column); - } - - /** - * Get request arguments. - * @param $row GridRow - * @return array - */ - function getRequestArgs($row) { - return array( - 'submissionId' => $this->getSubmissionId(), - 'publicationId' => $this->getPublicationId(), - ); - } - - /** - * @see GridCellProvider::getCellActions() - */ - function getCellActions($request, $row, $column, $position = GRID_ACTION_POSITION_DEFAULT) { - $data = $row->getData(); - $router = $request->getRouter(); - if (is_a($data, 'Representation')) { - switch ($column->getId()) { - case 'isAvailable': - return array(new LinkAction( - 'availableRepresentation', - new RemoteActionConfirmationModal( - $request->getSession(), - __($data->getIsAvailable()?'grid.catalogEntry.availableRepresentation.removeMessage':'grid.catalogEntry.availableRepresentation.message'), - __('grid.catalogEntry.availableRepresentation.title'), - $router->url( - $request, null, null, 'setAvailable', null, - array( - 'representationId' => $data->getId(), - 'newAvailableState' => $data->getIsAvailable()?0:1, - 'submissionId' => $this->getSubmissionId(), - 'publicationId' => $data->getData('publicationId'), - ) - ), - 'modal_approve' - ), - $data->getIsAvailable()?__('grid.catalogEntry.isAvailable'):__('grid.catalogEntry.isNotAvailable'), - $data->getIsAvailable()?'complete':'incomplete', - __('grid.action.formatAvailable') - )); - case 'name': - // if it is a remotely hosted content, don't provide - // file upload and select link actions - $remoteURL = $data->getRemoteURL(); - if ($remoteURL) { - return array(); - } - // If this is just an author account, don't give any actions - if (!$this->_canManage) return array(); - import('lib.pkp.controllers.api.file.linkAction.AddFileLinkAction'); - import('lib.pkp.controllers.grid.files.fileList.linkAction.SelectFilesLinkAction'); - AppLocale::requireComponents(LOCALE_COMPONENT_PKP_EDITOR); - return array( - new AddFileLinkAction( - $request, $this->getSubmissionId(), WORKFLOW_STAGE_ID_PRODUCTION, - array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT), SUBMISSION_FILE_PROOF, - ASSOC_TYPE_REPRESENTATION, $data->getId() - ), - new SelectFilesLinkAction( - $request, - array( - 'submissionId' => $this->getSubmissionId(), - 'assocType' => ASSOC_TYPE_REPRESENTATION, - 'assocId' => $data->getId(), - 'representationId' => $data->getId(), - 'publicationId' => $this->getPublicationId(), - 'stageId' => WORKFLOW_STAGE_ID_PRODUCTION, - 'fileStage' => SUBMISSION_FILE_PROOF, - ), - __('editor.submission.selectFiles') - ) - ); - case 'isComplete': - import('lib.pkp.classes.linkAction.request.AjaxModal'); - return array(new LinkAction( - 'approveRepresentation', - new AjaxModal( - $router->url( - $request, null, null, 'setApproved', null, - array( - 'representationId' => $data->getId(), - 'newApprovedState' => $data->getIsApproved()?0:1, - 'submissionId' => $this->getSubmissionId(), - 'publicationId' => $data->getData('publicationId'), - ) - ), - __('grid.catalogEntry.approvedRepresentation.title'), - 'modal_approve' - ), - $data->getIsApproved()?__('submission.complete'):__('submission.incomplete'), - $data->getIsApproved()?'complete':'incomplete', - __('grid.action.setApproval') - )); - } - } else { - assert(is_array($data) && isset($data['submissionFile'])); - $submissionFile = $data['submissionFile']; - switch ($column->getId()) { - case 'isAvailable': - $salesType = preg_replace('/[^\da-z]/i', '', $submissionFile->getSalesType() ?? ''); - $salesTypeString = 'editor.monograph.approvedProofs.edit.linkTitle'; - if ($salesType == 'openAccess') { - $salesTypeString = 'payment.directSales.openAccess'; - } elseif ($salesType == 'directSales') { - $salesTypeString = 'payment.directSales.directSales'; - } elseif ($salesType == 'notAvailable') { - $salesTypeString = 'payment.directSales.notAvailable'; - } - return array(new LinkAction( - 'editApprovedProof', - new AjaxModal( - $router->url($request, null, null, 'editApprovedProof', null, array( - 'submissionFileId' => $submissionFile->getId(), - 'submissionId' => $submissionFile->getData('submissionId'), - 'publicationId' => $this->getPublicationId(), - 'representationId' => $submissionFile->getData('assocId'), - )), - __('editor.monograph.approvedProofs.edit'), - 'edit' - ), - __($salesTypeString), - $salesType - )); - case 'name': - import('lib.pkp.controllers.grid.files.FileNameGridColumn'); - $fileNameColumn = new FileNameGridColumn(true, WORKFLOW_STAGE_ID_PRODUCTION, true); - return $fileNameColumn->getCellActions($request, $row, $position); - case 'isComplete': - AppLocale::requireComponents(LOCALE_COMPONENT_PKP_EDITOR); - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $title = __($submissionFile->getViewable()?'editor.submission.proofreading.revokeProofApproval':'editor.submission.proofreading.approveProof'); - return array(new LinkAction( - $submissionFile->getViewable()?'approved':'not_approved', - new AjaxModal( - $router->url( - $request, null, null, 'setProofFileCompletion', - null, - array( - 'submissionId' => $submissionFile->getData('submissionId'), - 'publicationId' => $this->getPublicationId(), - 'submissionFileId' => $submissionFile->getId(), - 'approval' => !$submissionFile->getData('viewable'), - ) - ), - $title, - 'modal_approve' - ), - $submissionFile->getViewable()?__('grid.catalogEntry.availableRepresentation.approved'):__('grid.catalogEntry.availableRepresentation.notApproved'), - $submissionFile->getViewable()?'complete':'incomplete', - __('grid.action.setApproval') - )); - } - } - return parent::getCellActions($request, $row, $column, $position); - } -} - - diff --git a/controllers/grid/catalogEntry/PublicationFormatGridCellProvider.php b/controllers/grid/catalogEntry/PublicationFormatGridCellProvider.php new file mode 100644 index 00000000000..2153c22ccbf --- /dev/null +++ b/controllers/grid/catalogEntry/PublicationFormatGridCellProvider.php @@ -0,0 +1,303 @@ +_submissionId = $submissionId; + $this->_publicationId = $publicationId; + $this->_canManage = $canManage; + } + + + // + // Getters and setters. + // + /** + * Get submission ID. + * + * @return int + */ + public function getSubmissionId() + { + return $this->_submissionId; + } + + /** + * Get publication ID. + * + * @return int + */ + public function getPublicationId() + { + return $this->_publicationId; + } + + + // + // Template methods from GridCellProvider + // + /** + * Extracts variables for a given column from a data element + * so that they may be assigned to template before rendering. + * + * @param GridRow $row + * @param GridColumn $column + * + * @return array + */ + public function getTemplateVarsFromRowColumn($row, $column) + { + $data = $row->getData(); + + if (is_a($data, 'Representation')) { + /** @var Representation $data */ + switch ($column->getId()) { + case 'indent': return []; + case 'name': + $remoteURL = $data->getRemoteURL(); + if ($remoteURL) { + return ['label' => '' . htmlspecialchars($data->getLocalizedName()) . '' . '' . $data->getNameForONIXCode() . '']; + } + return ['label' => htmlspecialchars($data->getLocalizedName()) . '' . $data->getNameForONIXCode() . '']; + case 'isAvailable': + return ['status' => $data->getIsAvailable() ? 'completed' : 'new']; + case 'isComplete': + return ['status' => $data->getIsApproved() ? 'completed' : 'new']; + } + } else { + assert(is_array($data) && isset($data['submissionFile'])); + $proofFile = $data['submissionFile']; + switch ($column->getId()) { + case 'isAvailable': + return ['status' => ($proofFile->getSalesType() != null && $proofFile->getDirectSalesPrice() != null) ? 'completed' : 'new']; + case 'name': + $fileNameGridColumn = new FileNameGridColumn(true, WORKFLOW_STAGE_ID_PRODUCTION); + return $fileNameGridColumn->getTemplateVarsFromRow($row); + case 'isComplete': + return ['status' => $proofFile->getViewable() ? 'completed' : 'new']; + } + } + + return parent::getTemplateVarsFromRowColumn($row, $column); + } + + /** + * Get request arguments. + * + * @param GridRow $row + * + * @return array + */ + public function getRequestArgs($row) + { + return [ + 'submissionId' => $this->getSubmissionId(), + 'publicationId' => $this->getPublicationId(), + ]; + } + + /** + * @see GridCellProvider::getCellActions() + */ + public function getCellActions($request, $row, $column, $position = GridHandler::GRID_ACTION_POSITION_DEFAULT) + { + $data = $row->getData(); + $router = $request->getRouter(); + if (is_a($data, 'Representation')) { + switch ($column->getId()) { + case 'isAvailable': + return [new LinkAction( + 'availableRepresentation', + new RemoteActionConfirmationModal( + $request->getSession(), + __($data->getIsAvailable() ? 'grid.catalogEntry.availableRepresentation.removeMessage' : 'grid.catalogEntry.availableRepresentation.message'), + __('grid.catalogEntry.availableRepresentation.title'), + $router->url( + $request, + null, + null, + 'setAvailable', + null, + [ + 'representationId' => $data->getId(), + 'newAvailableState' => $data->getIsAvailable() ? 0 : 1, + 'submissionId' => $this->getSubmissionId(), + 'publicationId' => $data->getData('publicationId'), + ] + ), + 'modal_approve' + ), + $data->getIsAvailable() ? __('grid.catalogEntry.isAvailable') : __('grid.catalogEntry.isNotAvailable'), + $data->getIsAvailable() ? 'complete' : 'incomplete', + __('grid.action.formatAvailable') + )]; + case 'name': + // if it is a remotely hosted content, don't provide + // file upload and select link actions + $remoteURL = $data->getRemoteURL(); + if ($remoteURL) { + return []; + } + // If this is just an author account, don't give any actions + if (!$this->_canManage) { + return []; + } + return [ + new AddFileLinkAction( + $request, + $this->getSubmissionId(), + WORKFLOW_STAGE_ID_PRODUCTION, + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN, Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_ASSISTANT], + SubmissionFile::SUBMISSION_FILE_PROOF, + Application::ASSOC_TYPE_REPRESENTATION, + $data->getId() + ), + new SelectFilesLinkAction( + $request, + [ + 'submissionId' => $this->getSubmissionId(), + 'assocType' => Application::ASSOC_TYPE_REPRESENTATION, + 'assocId' => $data->getId(), + 'representationId' => $data->getId(), + 'publicationId' => $this->getPublicationId(), + 'stageId' => WORKFLOW_STAGE_ID_PRODUCTION, + 'fileStage' => SubmissionFile::SUBMISSION_FILE_PROOF, + ], + __('editor.submission.selectFiles') + ) + ]; + case 'isComplete': + return [new LinkAction( + 'approveRepresentation', + new AjaxModal( + $router->url( + $request, + null, + null, + 'setApproved', + null, + [ + 'representationId' => $data->getId(), + 'newApprovedState' => $data->getIsApproved() ? 0 : 1, + 'submissionId' => $this->getSubmissionId(), + 'publicationId' => $data->getData('publicationId'), + ] + ), + __('grid.catalogEntry.approvedRepresentation.title'), + 'modal_approve' + ), + $data->getIsApproved() ? __('submission.complete') : __('submission.incomplete'), + $data->getIsApproved() ? 'complete' : 'incomplete', + __('grid.action.setApproval') + )]; + } + } else { + assert(is_array($data) && isset($data['submissionFile'])); + $submissionFile = $data['submissionFile']; + switch ($column->getId()) { + case 'isAvailable': + $salesType = preg_replace('/[^\da-z]/i', '', $submissionFile->getSalesType()); + $salesTypeString = 'editor.monograph.approvedProofs.edit.linkTitle'; + if ($salesType == 'openAccess') { + $salesTypeString = 'payment.directSales.openAccess'; + } elseif ($salesType == 'directSales') { + $salesTypeString = 'payment.directSales.directSales'; + } elseif ($salesType == 'notAvailable') { + $salesTypeString = 'payment.directSales.notAvailable'; + } + return [new LinkAction( + 'editApprovedProof', + new AjaxModal( + $router->url($request, null, null, 'editApprovedProof', null, [ + 'submissionFileId' => $submissionFile->getId(), + 'submissionId' => $submissionFile->getData('submissionId'), + 'publicationId' => $this->getPublicationId(), + 'representationId' => $submissionFile->getData('assocId'), + ]), + __('editor.monograph.approvedProofs.edit'), + 'edit' + ), + __($salesTypeString), + $salesType + )]; + case 'name': + $fileNameColumn = new FileNameGridColumn(true, WORKFLOW_STAGE_ID_PRODUCTION, true); + return $fileNameColumn->getCellActions($request, $row, $position); + case 'isComplete': + $title = __($submissionFile->getViewable() ? 'editor.submission.proofreading.revokeProofApproval' : 'editor.submission.proofreading.approveProof'); + return [new LinkAction( + $submissionFile->getViewable() ? 'approved' : 'not_approved', + new AjaxModal( + $router->url( + $request, + null, + null, + 'setProofFileCompletion', + null, + [ + 'submissionId' => $submissionFile->getData('submissionId'), + 'publicationId' => $this->getPublicationId(), + 'submissionFileId' => $submissionFile->getId(), + 'approval' => !$submissionFile->getData('viewable'), + ] + ), + $title, + 'modal_approve' + ), + $submissionFile->getViewable() ? __('grid.catalogEntry.availableRepresentation.approved') : __('grid.catalogEntry.availableRepresentation.notApproved'), + $submissionFile->getViewable() ? 'complete' : 'incomplete', + __('grid.action.setApproval') + )]; + } + } + return parent::getCellActions($request, $row, $column, $position); + } +} diff --git a/controllers/grid/catalogEntry/PublicationFormatGridHandler.inc.php b/controllers/grid/catalogEntry/PublicationFormatGridHandler.inc.php deleted file mode 100644 index 4c95898eec0..00000000000 --- a/controllers/grid/catalogEntry/PublicationFormatGridHandler.inc.php +++ /dev/null @@ -1,683 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR), - array( - 'setAvailable', 'editApprovedProof', 'saveApprovedProof', - ) - ); - $this->addRoleAssignment( - array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT), - array( - 'addFormat', 'editFormat', 'editFormatTab', 'updateFormat', 'deleteFormat', - 'setApproved', 'setProofFileCompletion', 'selectFiles', - 'identifiers', 'updateIdentifiers', 'clearPubId', - 'dependentFiles', 'editFormatMetadata', 'updateFormatMetadata' - ) - ); - $this->addRoleAssignment( - array(ROLE_ID_AUTHOR, ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT), - array( - 'fetchGrid', 'fetchRow', 'fetchCategory', - ) - ); - } - - - // - // Getters/Setters - // - /** - * Get the submission associated with this publication format grid. - * @return Submission - */ - function getSubmission() { - return $this->_submission; - } - - /** - * Set the submission - * @param $submission Submission - */ - function setSubmission($submission) { - $this->_submission = $submission; - } - - /** - * Get the publication associated with this publication format grid. - * @return Publication - */ - function getPublication() { - return $this->_publication; - } - - /** - * Set the publication - * @param $publication Publication - */ - function setPublication($publication) { - $this->_publication = $publication; - } - - // - // Overridden methods from PKPHandler - // - /** - * @copydoc CategoryGridHandler::initialize - */ - function initialize($request, $args = null) { - parent::initialize($request, $args); - - // Retrieve the authorized submission. - $this->setSubmission($this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION)); - $this->setPublication($this->getAuthorizedContextObject(ASSOC_TYPE_PUBLICATION)); - - // Load submission-specific translations - AppLocale::requireComponents( - LOCALE_COMPONENT_PKP_SUBMISSION, - LOCALE_COMPONENT_PKP_EDITOR, - LOCALE_COMPONENT_PKP_USER, - LOCALE_COMPONENT_PKP_DEFAULT - ); - $this->setTitle('monograph.publicationFormats'); - - // Load submission-specific translations - AppLocale::requireComponents( - LOCALE_COMPONENT_APP_SUBMISSION, - LOCALE_COMPONENT_APP_DEFAULT, - LOCALE_COMPONENT_APP_EDITOR - ); - - if($this->getPublication()->getData('status') !== STATUS_PUBLISHED) { - // Grid actions - $router = $request->getRouter(); - $actionArgs = $this->getRequestArgs(); - $userRoles = $this->getAuthorizedContextObject(ASSOC_TYPE_USER_ROLES); - $this->_canManage = 0 != count(array_intersect($userRoles, array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT))); - if ($this->_canManage) $this->addAction( - new LinkAction( - 'addFormat', - new AjaxModal( - $router->url($request, null, null, 'addFormat', null, $actionArgs), - __('grid.action.addFormat'), - 'modal_add_item' - ), - __('grid.action.addFormat'), - 'add_item' - ) - ); - } - - // Columns - import('controllers.grid.catalogEntry.PublicationFormatGridCellProvider'); - $this->_cellProvider = new PublicationFormatGridCellProvider($this->getSubmission()->getId(), $this->_canManage, $this->getPublication()->getId()); - $this->addColumn( - new GridColumn( - 'name', - 'common.name', - null, - null, - $this->_cellProvider, - array('width' => 60, 'anyhtml' => true) - ) - ); - if ($this->_canManage) { - $this->addColumn( - new GridColumn( - 'isComplete', - 'common.complete', - null, - 'controllers/grid/common/cell/statusCell.tpl', - $this->_cellProvider, - array('width' => 20) - ) - ); - $this->addColumn( - new GridColumn( - 'isAvailable', - 'grid.catalogEntry.availability', - null, - 'controllers/grid/common/cell/statusCell.tpl', - $this->_cellProvider, - array('width' => 20) - ) - ); - } - } - - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.PublicationAccessPolicy'); - $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); - - if ($request->getUserVar('representationId')) { - import('lib.pkp.classes.security.authorization.internal.RepresentationRequiredPolicy'); - $this->addPolicy(new RepresentationRequiredPolicy($request, $args)); - } - - return parent::authorize($request, $args, $roleAssignments); - } - - - // - // Overridden methods from GridHandler - // - /** - * @see GridHandler::getRowInstance() - * @return PublicationFormatGridCategoryRow - */ - function getCategoryRowInstance() { - return new PublicationFormatGridCategoryRow($this->getSubmission(), $this->_cellProvider, $this->_canManage, $this->getPublication()); - } - - - // - // Public Publication Format Grid Actions - // - /** - * Edit a publication format modal - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editFormat($args, $request) { - $representationDao = Application::getRepresentationDAO(); - $representationId = $request->getUserVar('representationId'); - $representation = $representationDao->getById( - $representationId, - $this->getPublication()->getId() - ); - // Check if this is a remote galley - $remoteURL = isset($representation) ? $representation->getRemoteURL() : null; - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('submissionId', $this->getSubmission()->getId()); - $templateMgr->assign('publicationId', $this->getPublication()->getId()); - $templateMgr->assign('representationId', $representationId); - $templateMgr->assign('remoteRepresentation', $remoteURL); - - $publisherIdEnabled = in_array('representation', (array) $request->getContext()->getData('enablePublisherId')); - $pubIdPlugins = PluginRegistry::getPlugins('pubIds'); - $pubIdEnabled = false; - foreach ($pubIdPlugins as $pubIdPlugin) { - if ($pubIdPlugin->isObjectTypeEnabled('Representation', $request->getContext()->getId())) { - $pubIdEnabled = true; - break; - } - } - $templateMgr->assign('showIdentifierTab', $publisherIdEnabled || $pubIdEnabled); - - return new JSONMessage(true, $templateMgr->fetch('controllers/grid/catalogEntry/editFormat.tpl')); - } - - /** - * Edit a format - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editFormatTab($args, $request) { - $representationDao = Application::getRepresentationDAO(); - $representation = $representationDao->getById( - $request->getUserVar('representationId'), - $this->getPublication()->getId() - ); - - import('controllers.grid.catalogEntry.form.PublicationFormatForm'); - $publicationFormatForm = new PublicationFormatForm($this->getSubmission(), $representation, $this->getPublication()); - $publicationFormatForm->initData(); - - return new JSONMessage(true, $publicationFormatForm->fetch($request)); - } - - /** - * Update a format - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateFormat($args, $request) { - $representationDao = Application::getRepresentationDAO(); - $representation = $representationDao->getById( - $request->getUserVar('representationId'), - $this->getPublication()->getId() - ); - - import('controllers.grid.catalogEntry.form.PublicationFormatForm'); - $publicationFormatForm = new PublicationFormatForm($this->getSubmission(), $representation, $this->getPublication()); - $publicationFormatForm->readInputData(); - if ($publicationFormatForm->validate()) { - $publicationFormatForm->execute(); - return DAO::getDataChangedEvent(); - } - return new JSONMessage(true, $publicationFormatForm->fetch($request)); - } - - /** - * Delete a format - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deleteFormat($args, $request) { - $context = $request->getContext(); - $submission = $this->getSubmission(); - $representationDao = Application::getRepresentationDAO(); - $representation = $representationDao->getById( - $request->getUserVar('representationId'), - $this->getPublication()->getId() - ); - - if (!$request->checkCSRF() || !$representation) { - return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - } - - Services::get('publicationFormat')->deleteFormat($representation, $submission, $context); - - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => __('notification.removedPublicationFormat'))); - - return DAO::getDataChangedEvent(); - } - - /** - * Set a format's "approved" state - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function setApproved($args, $request) { - $representation = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - $representationDao = Application::getRepresentationDAO(); - - if (!$representation) return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - - $confirmationText = __('grid.catalogEntry.approvedRepresentation.removeMessage'); - if ($request->getUserVar('newApprovedState')) { - $confirmationText = __('grid.catalogEntry.approvedRepresentation.message'); - } - import('lib.pkp.controllers.grid.pubIds.form.PKPAssignPublicIdentifiersForm'); - $formTemplate = $this->getAssignPublicIdentifiersFormTemplate(); - $assignPublicIdentifiersForm = new PKPAssignPublicIdentifiersForm($formTemplate, $representation, $request->getUserVar('newApprovedState'), $confirmationText); - if (!$request->getUserVar('confirmed')) { - // Display assign pub ids modal - $assignPublicIdentifiersForm->initData(); - return new JSONMessage(true, $assignPublicIdentifiersForm->fetch($request)); - } - if ($request->getUserVar('newApprovedState')) { - // Assign pub ids - $assignPublicIdentifiersForm->readInputData(); - $assignPublicIdentifiersForm->execute(); - } - - $newApprovedState = (int) $request->getUserVar('newApprovedState'); - $representation->setIsApproved($newApprovedState); - $representationDao->updateObject($representation); - - // log the state changing of the format. - import('lib.pkp.classes.log.SubmissionLog'); - import('classes.log.SubmissionEventLogEntry'); - SubmissionLog::logEvent( - $request, $this->getSubmission(), - $newApprovedState?SUBMISSION_LOG_PUBLICATION_FORMAT_PUBLISH:SUBMISSION_LOG_PUBLICATION_FORMAT_UNPUBLISH, - $newApprovedState?'submission.event.publicationFormatPublished':'submission.event.publicationFormatUnpublished', - array('publicationFormatName' => $representation->getLocalizedName()) - ); - - // Update the formats tombstones. - import('classes.publicationFormat.PublicationFormatTombstoneManager'); - $publicationFormatTombstoneMgr = new PublicationFormatTombstoneManager(); - if ($representation->getIsAvailable() && $representation->getIsApproved()) { - // Delete any existing tombstone. - $publicationFormatTombstoneMgr->deleteTombstonesByPublicationFormats(array($representation)); - } else { - // (Re)create a tombstone for this publication format. - $publicationFormatTombstoneMgr->deleteTombstonesByPublicationFormats(array($representation)); - $publicationFormatTombstoneMgr->insertTombstoneByPublicationFormat($representation, $request->getContext()); - } - - return DAO::getDataChangedEvent($representation->getId()); - } - - /** - * Set a format's "available" state - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function setAvailable($args, $request) { - $context = $request->getContext(); - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $publicationFormat = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - - if (!$publicationFormat) return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - - $newAvailableState = (int) $request->getUserVar('newAvailableState'); - $publicationFormat->setIsAvailable($newAvailableState); - $publicationFormatDao->updateObject($publicationFormat); - - // log the state changing of the format. - import('lib.pkp.classes.log.SubmissionLog'); - import('classes.log.SubmissionEventLogEntry'); - SubmissionLog::logEvent( - $request, $this->getSubmission(), - $newAvailableState?SUBMISSION_LOG_PUBLICATION_FORMAT_AVAILABLE:SUBMISSION_LOG_PUBLICATION_FORMAT_UNAVAILABLE, - $newAvailableState?'submission.event.publicationFormatMadeAvailable':'submission.event.publicationFormatMadeUnavailable', - array('publicationFormatName' => $publicationFormat->getLocalizedName()) - ); - - // Update the formats tombstones. - import('classes.publicationFormat.PublicationFormatTombstoneManager'); - $publicationFormatTombstoneMgr = new PublicationFormatTombstoneManager(); - if ($publicationFormat->getIsAvailable() && $publicationFormat->getIsApproved()) { - // Delete any existing tombstone. - $publicationFormatTombstoneMgr->deleteTombstonesByPublicationFormats(array($publicationFormat)); - } else { - // (Re)create a tombstone for this publication format. - $publicationFormatTombstoneMgr->deleteTombstonesByPublicationFormats(array($publicationFormat)); - $publicationFormatTombstoneMgr->insertTombstoneByPublicationFormat($publicationFormat, $context); - } - - return DAO::getDataChangedEvent($publicationFormat->getId()); - } - - /** - * Edit an approved proof. - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editApprovedProof($args, $request) { - $this->initialize($request); - $submission = $this->getSubmission(); - $representation = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - - import('controllers.grid.files.proof.form.ApprovedProofForm'); - $approvedProofForm = new ApprovedProofForm($submission, $representation, $request->getUserVar('submissionFileId')); - $approvedProofForm->initData(); - - return new JSONMessage(true, $approvedProofForm->fetch($request)); - } - - /** - * Save an approved proof. - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function saveApprovedProof($args, $request) { - $submission = $this->getSubmission(); - $representation = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - - import('controllers.grid.files.proof.form.ApprovedProofForm'); - $approvedProofForm = new ApprovedProofForm($submission, $representation, $request->getUserVar('submissionFileId')); - $approvedProofForm->readInputData(); - - if ($approvedProofForm->validate()) { - $approvedProofForm->execute(); - return DAO::getDataChangedEvent(); - } - return new JSONMessage(true, $approvedProofForm->fetch($request)); - } - - /** - * Get the filename of the "assign public identifiers" form template. - * @return string - */ - function getAssignPublicIdentifiersFormTemplate() { - return 'controllers/grid/pubIds/form/assignPublicIdentifiersForm.tpl'; - } - - // - // Overridden methods from GridHandler - // - /** - * @copydoc GridHandler::getRowInstance() - */ - function getRowInstance() { - return new PublicationFormatGridRow($this->_canManage); - } - - /** - * Get the arguments that will identify the data in the grid - * In this case, the submission. - * @return array - */ - function getRequestArgs() { - return array( - 'submissionId' => $this->getSubmission()->getId(), - 'publicationId' => $this->getPublication()->getId(), - ); - } - - - // - // Public grid actions - // - /** - * Add a new publication format - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function addFormat($args, $request) { - return $this->editFormat($args, $request); - } - - /** - * Set the approval status for a file. - * @param $args array - * @param $request PKPRequest - */ - function setProofFileCompletion($args, $request) { - $submission = $this->getSubmission(); - import('lib.pkp.classes.submission.SubmissionFile'); // Constants - $submissionFile = Services::get('submissionFile')->get($request->getUserVar('submissionFileId')); - if ($submissionFile->getData('fileStage') !== SUBMISSION_FILE_PROOF || $submissionFile->getData('submissionId') != $submission->getId()) { - return new JSONMessage(false); - } - $confirmationText = __('editor.submission.proofreading.confirmRemoveCompletion'); - if ($request->getUserVar('approval')) { - $confirmationText = __('editor.submission.proofreading.confirmCompletion'); - } - if ($submissionFile && $submissionFile->getData('assocType')==ASSOC_TYPE_REPRESENTATION) { - import('lib.pkp.controllers.grid.pubIds.form.PKPAssignPublicIdentifiersForm'); - $formTemplate = $this->getAssignPublicIdentifiersFormTemplate(); - $assignPublicIdentifiersForm = new PKPAssignPublicIdentifiersForm($formTemplate, $submissionFile, $request->getUserVar('approval'), $confirmationText); - if (!$request->getUserVar('confirmed')) { - // Display assign pub ids modal - $assignPublicIdentifiersForm->initData(); - return new JSONMessage(true, $assignPublicIdentifiersForm->fetch($request)); - } - if ($request->getUserVar('approval')) { - // Asign pub ids - $assignPublicIdentifiersForm->readInputData(); - $assignPublicIdentifiersForm->execute(); - } - // Update the approval flag - $params = ['viewable' => (bool) $request->getUserVar('approval')]; - $submissionFile = Services::get('submissionFile')->edit($submissionFile, $params, $request); - - // Log the event - import('lib.pkp.classes.log.SubmissionFileLog'); - import('lib.pkp.classes.log.SubmissionFileEventLogEntry'); // constants - $user = $request->getUser(); - SubmissionFileLog::logEvent($request, $submissionFile, SUBMISSION_LOG_FILE_SIGNOFF_SIGNOFF, 'submission.event.signoffSignoff', array('file' => $submissionFile->getLocalizedData('name'), 'name' => $user->getFullName(), 'username' => $user->getUsername())); - - return DAO::getDataChangedEvent(); - } - return new JSONMessage(false); - } - - /** - * Show the form to allow the user to select files from previous stages - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function selectFiles($args, $request) { - $representation = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - - import('lib.pkp.controllers.grid.files.proof.form.ManageProofFilesForm'); - $manageProofFilesForm = new ManageProofFilesForm($this->getSubmission()->getId(), $this->getPublication()->getId(), $representation->getId()); - $manageProofFilesForm->initData(); - return new JSONMessage(true, $manageProofFilesForm->fetch($request)); - } - - /** - * Load a form to edit a format's metadata - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editFormatMetadata($args, $request) { - $representation = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - - import('controllers.grid.catalogEntry.form.PublicationFormatMetadataForm'); - $publicationFormatForm = new PublicationFormatMetadataForm($this->getSubmission(), $this->getPublication(), $representation); - $publicationFormatForm->initData(); - - return new JSONMessage(true, $publicationFormatForm->fetch($request)); - } - - /** - * Save a form to edit format's metadata - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateFormatMetadata($args, $request) { - $representation = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - - import('controllers.grid.catalogEntry.form.PublicationFormatMetadataForm'); - $publicationFormatForm = new PublicationFormatMetadataForm($this->getSubmission(), $this->getPublication(), $representation); - $publicationFormatForm->readInputData(); - if ($publicationFormatForm->validate()) { - $publicationFormatForm->execute(); - return DAO::getDataChangedEvent(); - } - - return new JSONMessage(true, $publicationFormatForm->fetch($request)); - } - - /** - * Edit pub ids - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function identifiers($args, $request) { - $representation = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - - import('controllers.tab.pubIds.form.PublicIdentifiersForm'); - $form = new PublicIdentifiersForm($representation); - $form->initData(); - return new JSONMessage(true, $form->fetch($request)); - } - - /** - * Update pub ids - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateIdentifiers($args, $request) { - $representation = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - - import('controllers.tab.pubIds.form.PublicIdentifiersForm'); - $form = new PublicIdentifiersForm($representation); - $form->readInputData(); - if ($form->validate()) { - $form->execute(); - return DAO::getDataChangedEvent(); - } else { - return new JSONMessage(true, $form->fetch($request)); - } - } - - /** - * Clear pub id - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function clearPubId($args, $request) { - if (!$request->checkCSRF()) return new JSONMessage(false); - - $representation = $this->getAuthorizedContextObject(ASSOC_TYPE_REPRESENTATION); - - import('controllers.tab.pubIds.form.PublicIdentifiersForm'); - $form = new PublicIdentifiersForm($representation); - $form->clearPubId($request->getUserVar('pubIdPlugIn')); - return new JSONMessage(true); - } - - /** - * Show dependent files for a monograph file. - * @param $args array - * @param $request PKPRequest - */ - function dependentFiles($args, $request) { - $submission = $this->getSubmission(); - import('lib.pkp.classes.submission.SubmissionFile'); // Constants - $submissionFile = Services::get('submissionFile')->get($request->getUserVar('submissionFileId')); - if ($submissionFile->getData('fileStage') !== SUBMISSION_FILE_PROOF || $submissionFile->getData('submissionId') != $submission->getId()) { - return new JSONMessage(false); - } - - // Check if this is a remote galley - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign(array( - 'submissionId' => $this->getSubmission()->getId(), - 'submissionFile' => $submissionFile, - )); - return new JSONMessage(true, $templateMgr->fetch('controllers/grid/catalogEntry/dependentFiles.tpl')); - } -} diff --git a/controllers/grid/catalogEntry/PublicationFormatGridHandler.php b/controllers/grid/catalogEntry/PublicationFormatGridHandler.php new file mode 100644 index 00000000000..6fbfdb65825 --- /dev/null +++ b/controllers/grid/catalogEntry/PublicationFormatGridHandler.php @@ -0,0 +1,784 @@ +addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_SITE_ADMIN], + [ + 'setAvailable', 'editApprovedProof', 'saveApprovedProof', + ] + ); + $this->addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_ASSISTANT, Role::ROLE_ID_SITE_ADMIN], + [ + 'addFormat', 'editFormat', 'editFormatTab', 'updateFormat', 'deleteFormat', + 'setApproved', 'setProofFileCompletion', 'selectFiles', + 'identifiers', 'updateIdentifiers', 'clearPubId', + 'dependentFiles', 'editFormatMetadata', 'updateFormatMetadata' + ] + ); + $this->addRoleAssignment( + [Role::ROLE_ID_AUTHOR, Role::ROLE_ID_MANAGER, Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_ASSISTANT, Role::ROLE_ID_SITE_ADMIN], + [ + 'fetchGrid', 'fetchRow', 'fetchCategory', + ] + ); + } + + + // + // Getters/Setters + // + /** + * Get the submission associated with this publication format grid. + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Set the submission + * + * @param Submission $submission + */ + public function setSubmission($submission) + { + $this->_submission = $submission; + } + + /** + * Get the publication associated with this publication format grid. + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the publication + * + * @param Publication $publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + // + // Overridden methods from PKPHandler + // + /** + * @copydoc CategoryGridHandler::initialize + * + * @param null|mixed $args + */ + public function initialize($request, $args = null) + { + parent::initialize($request, $args); + + // Retrieve the authorized submission. + $this->setSubmission($this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION)); + $this->setPublication($this->getAuthorizedContextObject(Application::ASSOC_TYPE_PUBLICATION)); + + $this->setTitle('monograph.publicationFormats'); + + if ($this->getPublication()->getData('status') !== PKPSubmission::STATUS_PUBLISHED) { + // Grid actions + $router = $request->getRouter(); + $actionArgs = $this->getRequestArgs(); + $userRoles = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_USER_ROLES); + $this->_canManage = 0 != count(array_intersect($userRoles, [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN, Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_ASSISTANT])); + if ($this->_canManage) { + $this->addAction( + new LinkAction( + 'addFormat', + new AjaxModal( + $router->url($request, null, null, 'addFormat', null, $actionArgs), + __('grid.action.addFormat'), + 'modal_add_item' + ), + __('grid.action.addFormat'), + 'add_item' + ) + ); + } + } + + // Columns + $this->_cellProvider = new PublicationFormatGridCellProvider($this->getSubmission()->getId(), $this->_canManage, $this->getPublication()->getId()); + $this->addColumn( + new GridColumn( + 'name', + 'common.name', + null, + null, + $this->_cellProvider, + ['width' => 60, 'anyhtml' => true] + ) + ); + if ($this->_canManage) { + $this->addColumn( + new GridColumn( + 'isComplete', + 'common.complete', + null, + 'controllers/grid/common/cell/statusCell.tpl', + $this->_cellProvider, + ['width' => 20] + ) + ); + $this->addColumn( + new GridColumn( + 'isAvailable', + 'grid.catalogEntry.availability', + null, + 'controllers/grid/common/cell/statusCell.tpl', + $this->_cellProvider, + ['width' => 20] + ) + ); + } + } + + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); + + if ($request->getUserVar('representationId')) { + $this->addPolicy(new RepresentationRequiredPolicy($request, $args)); + } + + return parent::authorize($request, $args, $roleAssignments); + } + + + // + // Overridden methods from GridHandler + // + /** + * @see GridHandler::getRowInstance() + * + * @return PublicationFormatGridCategoryRow + */ + public function getCategoryRowInstance() + { + return new PublicationFormatGridCategoryRow($this->getSubmission(), $this->_cellProvider, $this->_canManage, $this->getPublication()); + } + + + // + // Public Publication Format Grid Actions + // + /** + * Edit a publication format modal + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editFormat($args, $request) + { + $representation = $this->getRequestedPublicationFormat($request); + // Check if this is a remote galley + $remoteURL = isset($representation) ? $representation->getRemoteURL() : null; + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign('submissionId', $this->getSubmission()->getId()); + $templateMgr->assign('publicationId', $this->getPublication()->getId()); + $templateMgr->assign('remoteRepresentation', $remoteURL); + if ($representation) { + $templateMgr->assign('representationId', $representation->getId()); + } + + $publisherIdEnabled = in_array('representation', (array) $request->getContext()->getData('enablePublisherId')); + $pubIdPlugins = PluginRegistry::getPlugins('pubIds'); + $pubIdEnabled = false; + foreach ($pubIdPlugins as $pubIdPlugin) { + if ($pubIdPlugin->isObjectTypeEnabled('Representation', $request->getContext()->getId())) { + $pubIdEnabled = true; + break; + } + } + $templateMgr->assign('showIdentifierTab', $publisherIdEnabled || $pubIdEnabled); + + return new JSONMessage(true, $templateMgr->fetch('controllers/grid/catalogEntry/editFormat.tpl')); + } + + /** + * Edit a format + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editFormatTab($args, $request) + { + $representation = $this->getRequestedPublicationFormat($request); + + $publicationFormatForm = new PublicationFormatForm($this->getSubmission(), $representation, $this->getPublication()); + $publicationFormatForm->initData(); + + return new JSONMessage(true, $publicationFormatForm->fetch($request)); + } + + /** + * Update a format + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateFormat($args, $request) + { + $representation = $this->getRequestedPublicationFormat($request); + + $publicationFormatForm = new PublicationFormatForm($this->getSubmission(), $representation, $this->getPublication()); + $publicationFormatForm->readInputData(); + if ($publicationFormatForm->validate()) { + $publicationFormatForm->execute(); + return DAO::getDataChangedEvent(); + } + return new JSONMessage(true, $publicationFormatForm->fetch($request)); + } + + /** + * Delete a format + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deleteFormat($args, $request) + { + $context = $request->getContext(); + $submission = $this->getSubmission(); + $representation = $this->getRequestedPublicationFormat($request); + + if (!$request->checkCSRF()) { + return new JSONMessage(false, __('form.csrfInvalid')); + } + + if (!$representation) { + return new JSONMessage(false, __('manager.setup.errorDeletingItem')); + } + + /** @var PublicationFormatService */ + $publicationFormatService = Services::get('publicationFormat'); + $publicationFormatService->deleteFormat($representation, $submission, $context); + + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => __('notification.removedPublicationFormat')]); + + return DAO::getDataChangedEvent(); + } + + /** + * Set a format's "approved" state + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function setApproved($args, $request) + { + $representation = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + $representationDao = Application::getRepresentationDAO(); + + if (!$representation) { + return new JSONMessage(false, __('common.unknownError')); + } + + $confirmationText = __('grid.catalogEntry.approvedRepresentation.removeMessage'); + if ($request->getUserVar('newApprovedState')) { + $confirmationText = __('grid.catalogEntry.approvedRepresentation.message'); + } + $formTemplate = $this->getAssignPublicIdentifiersFormTemplate(); + $assignPublicIdentifiersForm = new PKPAssignPublicIdentifiersForm($formTemplate, $representation, $request->getUserVar('newApprovedState'), $confirmationText); + if (!$request->getUserVar('confirmed')) { + // Display assign pub ids modal + $assignPublicIdentifiersForm->initData(); + return new JSONMessage(true, $assignPublicIdentifiersForm->fetch($request)); + } + if ($request->getUserVar('newApprovedState')) { + // Assign pub ids + $assignPublicIdentifiersForm->readInputData(); + $assignPublicIdentifiersForm->execute(); + } + + $newApprovedState = (int) $request->getUserVar('newApprovedState'); + $representation->setIsApproved($newApprovedState); + $representationDao->updateObject($representation); + + $logEntry = Repo::eventLog()->newDataObject([ + 'assocType' => PKPApplication::ASSOC_TYPE_SUBMISSION, + 'assocId' => $this->getSubmission()->getId(), + 'eventType' => $newApprovedState ? SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_PUBLISH : SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_UNPUBLISH, + 'userId' => $request->getUser()?->getId(), + 'message' => $newApprovedState ? 'submission.event.publicationFormatPublished' : 'submission.event.publicationFormatUnpublished', + 'isTranslated' => false, + 'dateLogged' => Core::getCurrentDate(), + 'publicationFormatName' => $representation->getData('name') + ]); + Repo::eventLog()->add($logEntry); + + // Update the formats tombstones. + $publicationFormatTombstoneMgr = new PublicationFormatTombstoneManager(); + if ($representation->getIsAvailable() && $representation->getIsApproved()) { + // Delete any existing tombstone. + $publicationFormatTombstoneMgr->deleteTombstonesByPublicationFormats([$representation]); + } else { + // (Re)create a tombstone for this publication format. + $publicationFormatTombstoneMgr->deleteTombstonesByPublicationFormats([$representation]); + $publicationFormatTombstoneMgr->insertTombstoneByPublicationFormat($representation, $request->getContext()); + } + + return DAO::getDataChangedEvent($representation->getId()); + } + + /** + * Set a format's "available" state + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function setAvailable($args, $request) + { + $context = $request->getContext(); + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $publicationFormat = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + + if (!$publicationFormat) { + return new JSONMessage(false, __('common.unknownError')); + } + + $newAvailableState = (int) $request->getUserVar('newAvailableState'); + $publicationFormat->setIsAvailable($newAvailableState); + $publicationFormatDao->updateObject($publicationFormat); + + // log the state changing of the format. + $logEntry = Repo::eventLog()->newDataObject([ + 'assocType' => PKPApplication::ASSOC_TYPE_SUBMISSION, + 'assocId' => $this->getSubmission()->getId(), + 'eventType' => $newAvailableState ? SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_AVAILABLE : SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_UNAVAILABLE, + 'userId' => $request->getUser()?->getId(), + 'message' => $newAvailableState ? 'submission.event.publicationFormatMadeAvailable' : 'submission.event.publicationFormatMadeUnavailable', + 'isTranslated' => false, + 'dateLogged' => Core::getCurrentDate(), + 'publicationFormatName' => $publicationFormat->getData('name') + ]); + Repo::eventLog()->add($logEntry); + + // Update the formats tombstones. + $publicationFormatTombstoneMgr = new PublicationFormatTombstoneManager(); + if ($publicationFormat->getIsAvailable() && $publicationFormat->getIsApproved()) { + // Delete any existing tombstone. + $publicationFormatTombstoneMgr->deleteTombstonesByPublicationFormats([$publicationFormat]); + } else { + // (Re)create a tombstone for this publication format. + $publicationFormatTombstoneMgr->deleteTombstonesByPublicationFormats([$publicationFormat]); + $publicationFormatTombstoneMgr->insertTombstoneByPublicationFormat($publicationFormat, $context); + } + + return DAO::getDataChangedEvent($publicationFormat->getId()); + } + + /** + * Edit an approved proof. + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editApprovedProof($args, $request) + { + $this->initialize($request); + $submission = $this->getSubmission(); + $representation = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + + $approvedProofForm = new ApprovedProofForm($submission, $representation, $request->getUserVar('submissionFileId')); + $approvedProofForm->initData(); + + return new JSONMessage(true, $approvedProofForm->fetch($request)); + } + + /** + * Save an approved proof. + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function saveApprovedProof($args, $request) + { + $submission = $this->getSubmission(); + $representation = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + + $approvedProofForm = new ApprovedProofForm($submission, $representation, $request->getUserVar('submissionFileId')); + $approvedProofForm->readInputData(); + + if ($approvedProofForm->validate()) { + $approvedProofForm->execute(); + return DAO::getDataChangedEvent(); + } + return new JSONMessage(true, $approvedProofForm->fetch($request)); + } + + /** + * Get the filename of the "assign public identifiers" form template. + * + * @return string + */ + public function getAssignPublicIdentifiersFormTemplate() + { + return 'controllers/grid/pubIds/form/assignPublicIdentifiersForm.tpl'; + } + + // + // Overridden methods from GridHandler + // + /** + * @copydoc GridHandler::getRowInstance() + */ + public function getRowInstance() + { + return new PublicationFormatGridRow($this->_canManage); + } + + /** + * Get the arguments that will identify the data in the grid + * In this case, the submission. + * + * @return array + */ + public function getRequestArgs() + { + return [ + 'submissionId' => $this->getSubmission()->getId(), + 'publicationId' => $this->getPublication()->getId(), + ]; + } + + + // + // Public grid actions + // + /** + * Add a new publication format + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function addFormat($args, $request) + { + return $this->editFormat($args, $request); + } + + /** + * Set the approval status for a file. + * + * @param array $args + * @param Request $request + */ + public function setProofFileCompletion($args, $request) + { + $submission = $this->getSubmission(); + $submissionFileId = (int) $request->getUserVar('submissionFileId'); + $submissionFile = Repo::submissionFile()->get($submissionFileId); + if ($submissionFile->getData('fileStage') !== SubmissionFile::SUBMISSION_FILE_PROOF || $submissionFile->getData('submissionId') != $submission->getId()) { + return new JSONMessage(false); + } + $confirmationText = __('editor.submission.proofreading.confirmRemoveCompletion'); + if ($request->getUserVar('approval')) { + $confirmationText = __('editor.submission.proofreading.confirmCompletion'); + } + if ($submissionFile && $submissionFile->getData('assocType') == Application::ASSOC_TYPE_REPRESENTATION) { + $formTemplate = $this->getAssignPublicIdentifiersFormTemplate(); + $assignPublicIdentifiersForm = new PKPAssignPublicIdentifiersForm($formTemplate, $submissionFile, $request->getUserVar('approval'), $confirmationText); + if (!$request->getUserVar('confirmed')) { + // Display assign pub ids modal + $assignPublicIdentifiersForm->initData(); + return new JSONMessage(true, $assignPublicIdentifiersForm->fetch($request)); + } + if ($request->getUserVar('approval')) { + // Assign pub ids + $assignPublicIdentifiersForm->readInputData(); + $assignPublicIdentifiersForm->execute(); + } + // Update the approval flag + $params = ['viewable' => (bool) $request->getUserVar('approval')]; + Repo::submissionFile() + ->edit($submissionFile, $params); + + $submissionFile = Repo::submissionFile()->get($submissionFileId); + + // Log the event + $user = $request->getUser(); + $eventLog = Repo::eventLog()->newDataObject([ + 'assocType' => PKPApplication::ASSOC_TYPE_SUBMISSION_FILE, + 'assocId' => $submissionFile->getId(), + 'eventType' => SubmissionFileEventLogEntry::SUBMISSION_LOG_FILE_SIGNOFF_SIGNOFF, + 'userId' => $user->getId(), + 'message' => 'submission.event.signoffSignoff', + 'isTranslated' => false, + 'dateLogged' => Core::getCurrentDate(), + 'filename' => $submissionFile->getData('name'), + 'userFullName' => $user->getFullName(), + 'username' => $user->getUsername() + ]); + Repo::eventLog()->add($eventLog); + + return DAO::getDataChangedEvent(); + } + + return new JSONMessage(false); + } + + /** + * Show the form to allow the user to select files from previous stages + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function selectFiles($args, $request) + { + $representation = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + + $manageProofFilesForm = new ManageProofFilesForm($this->getSubmission()->getId(), $this->getPublication()->getId(), $representation->getId()); + $manageProofFilesForm->initData(); + return new JSONMessage(true, $manageProofFilesForm->fetch($request)); + } + + /** + * Load a form to edit a format's metadata + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editFormatMetadata($args, $request) + { + $representation = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + + $publicationFormatForm = new PublicationFormatMetadataForm($this->getSubmission(), $this->getPublication(), $representation); + $publicationFormatForm->initData(); + + return new JSONMessage(true, $publicationFormatForm->fetch($request)); + } + + /** + * Save a form to edit format's metadata + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateFormatMetadata($args, $request) + { + $representation = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + + $publicationFormatForm = new PublicationFormatMetadataForm($this->getSubmission(), $this->getPublication(), $representation); + $publicationFormatForm->readInputData(); + if ($publicationFormatForm->validate()) { + $publicationFormatForm->execute(); + return DAO::getDataChangedEvent(); + } + + return new JSONMessage(true, $publicationFormatForm->fetch($request)); + } + + /** + * Edit pub ids + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function identifiers($args, $request) + { + $representation = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + + $form = new PublicIdentifiersForm($representation); + $form->initData(); + return new JSONMessage(true, $form->fetch($request)); + } + + /** + * Update pub ids + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateIdentifiers($args, $request) + { + $representation = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + + $form = new PublicIdentifiersForm($representation); + $form->readInputData(); + if ($form->validate()) { + $form->execute(); + return DAO::getDataChangedEvent(); + } else { + return new JSONMessage(true, $form->fetch($request)); + } + } + + /** + * Clear pub id + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function clearPubId($args, $request) + { + if (!$request->checkCSRF()) { + return new JSONMessage(false); + } + + $representation = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_REPRESENTATION); + + $form = new PublicIdentifiersForm($representation); + $form->clearPubId($request->getUserVar('pubIdPlugIn')); + return new JSONMessage(true); + } + + /** + * Show dependent files for a monograph file. + * + * @param array $args + * @param Request $request + */ + public function dependentFiles($args, $request) + { + $submission = $this->getSubmission(); + $submissionFile = Repo::submissionFile()->get((int) $request->getUserVar('submissionFileId')); + if ($submissionFile->getData('fileStage') !== SubmissionFile::SUBMISSION_FILE_PROOF || $submissionFile->getData('submissionId') != $submission->getId()) { + return new JSONMessage(false); + } + + // Check if this is a remote galley + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign([ + 'submissionId' => $this->getSubmission()->getId(), + 'submissionFile' => $submissionFile, + ]); + return new JSONMessage(true, $templateMgr->fetch('controllers/grid/catalogEntry/dependentFiles.tpl')); + } + + /** + * Get a publication format from the request param + */ + public function getRequestedPublicationFormat(Request $request): ?PublicationFormat + { + $representationDao = Application::getRepresentationDAO(); + $representationId = $request->getUserVar('representationId'); + return $representationId + ? $representationDao->getById( + (int) $representationId, + $this->getPublication()->getId() + ) + : null; + } +} diff --git a/controllers/grid/catalogEntry/PublicationFormatGridRow.inc.php b/controllers/grid/catalogEntry/PublicationFormatGridRow.inc.php deleted file mode 100644 index 822d33bc8b6..00000000000 --- a/controllers/grid/catalogEntry/PublicationFormatGridRow.inc.php +++ /dev/null @@ -1,72 +0,0 @@ -_canManage = $canManage; - - parent::__construct( - new FilesGridCapabilities( - $canManage?FILE_GRID_ADD|FILE_GRID_DELETE|FILE_GRID_MANAGE|FILE_GRID_EDIT|FILE_GRID_VIEW_NOTES:0 - ), - WORKFLOW_STAGE_ID_PRODUCTION - ); - } - - - // - // Overridden template methods from GridRow - // - /** - * @copydoc SubmissionFilesGridRow::initialize() - */ - function initialize($request, $template = 'controllers/grid/gridRow.tpl') { - parent::initialize($request, $template); - $submissionFileData =& $this->getData(); - $submissionFile =& $submissionFileData['submissionFile']; /* @var $submissionFile SubmissionFile */ - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $router = $request->getRouter(); - $mimetype = $submissionFile->getData('mimetype'); - if ($this->_canManage && in_array($mimetype, array('application/xml', 'text/html'))) { - $this->addAction(new LinkAction( - 'dependentFiles', - new AjaxModal( - $router->url($request, null, null, 'dependentFiles', null, array_merge( - $this->getRequestArgs(), - array( - 'submissionFileId' => $submissionFile->getId(), - ) - )), - __('submission.dependentFiles'), - 'modal_edit' - ), - __('submission.dependentFiles'), - 'edit' - )); - } - } -} - - diff --git a/controllers/grid/catalogEntry/PublicationFormatGridRow.php b/controllers/grid/catalogEntry/PublicationFormatGridRow.php new file mode 100644 index 00000000000..8f2187d2c1b --- /dev/null +++ b/controllers/grid/catalogEntry/PublicationFormatGridRow.php @@ -0,0 +1,79 @@ +_canManage = $canManage; + + parent::__construct( + new FilesGridCapabilities( + $canManage ? FilesGridCapabilities::FILE_GRID_ADD | FilesGridCapabilities::FILE_GRID_DELETE | FilesGridCapabilities::FILE_GRID_MANAGE | FilesGridCapabilities::FILE_GRID_EDIT | FilesGridCapabilities::FILE_GRID_VIEW_NOTES : 0 + ), + WORKFLOW_STAGE_ID_PRODUCTION + ); + } + + + // + // Overridden template methods from GridRow + // + /** + * @copydoc SubmissionFilesGridRow::initialize() + */ + public function initialize($request, $template = 'controllers/grid/gridRow.tpl') + { + parent::initialize($request, $template); + $submissionFileData = & $this->getData(); + $submissionFile = & $submissionFileData['submissionFile']; /** @var SubmissionFile $submissionFile */ + $router = $request->getRouter(); + $mimetype = $submissionFile->getData('mimetype'); + if ($this->_canManage && in_array($mimetype, ['application/xml', 'text/html'])) { + $this->addAction(new LinkAction( + 'dependentFiles', + new AjaxModal( + $router->url($request, null, null, 'dependentFiles', null, array_merge( + $this->getRequestArgs(), + [ + 'submissionFileId' => $submissionFile->getId(), + ] + )), + __('submission.dependentFiles'), + 'modal_edit' + ), + __('submission.dependentFiles'), + 'edit' + )); + } + } +} diff --git a/controllers/grid/catalogEntry/RepresentativesGridCategoryRow.inc.php b/controllers/grid/catalogEntry/RepresentativesGridCategoryRow.inc.php deleted file mode 100644 index 3a1a91cd3c0..00000000000 --- a/controllers/grid/catalogEntry/RepresentativesGridCategoryRow.inc.php +++ /dev/null @@ -1,43 +0,0 @@ -getData(); - return __($data['name']); - } -} - diff --git a/controllers/grid/catalogEntry/RepresentativesGridCategoryRow.php b/controllers/grid/catalogEntry/RepresentativesGridCategoryRow.php new file mode 100644 index 00000000000..1d6df797ace --- /dev/null +++ b/controllers/grid/catalogEntry/RepresentativesGridCategoryRow.php @@ -0,0 +1,36 @@ +getData(); + return __($data['name']); + } +} diff --git a/controllers/grid/catalogEntry/RepresentativesGridCellProvider.inc.php b/controllers/grid/catalogEntry/RepresentativesGridCellProvider.inc.php deleted file mode 100644 index b6b1fbde35b..00000000000 --- a/controllers/grid/catalogEntry/RepresentativesGridCellProvider.inc.php +++ /dev/null @@ -1,50 +0,0 @@ -getData(); - - $columnId = $column->getId(); - assert(is_a($element, 'DataObject') && !empty($columnId)); - switch ($columnId) { - case 'role': - return array('label' => $element->getNameForONIXCode()); - case 'name': - return array('label' => $element->getName()); - } - } -} - - diff --git a/controllers/grid/catalogEntry/RepresentativesGridCellProvider.php b/controllers/grid/catalogEntry/RepresentativesGridCellProvider.php new file mode 100644 index 00000000000..8de478eb28e --- /dev/null +++ b/controllers/grid/catalogEntry/RepresentativesGridCellProvider.php @@ -0,0 +1,52 @@ +getData(); + + $columnId = $column->getId(); + assert(is_a($element, 'DataObject') && !empty($columnId)); + /** @var Representation $element */ + switch ($columnId) { + case 'role': + return ['label' => $element->getNameForONIXCode()]; + case 'name': + return ['label' => $element->getName()]; + } + } +} diff --git a/controllers/grid/catalogEntry/RepresentativesGridHandler.inc.php b/controllers/grid/catalogEntry/RepresentativesGridHandler.inc.php deleted file mode 100644 index e9cd1ef98ef..00000000000 --- a/controllers/grid/catalogEntry/RepresentativesGridHandler.inc.php +++ /dev/null @@ -1,340 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT), - array('fetchGrid', 'fetchCategory', 'fetchRow', 'addRepresentative', 'editRepresentative', - 'updateRepresentative', 'deleteRepresentative')); - } - - - // - // Getters/Setters - // - /** - * Get the monograph associated with this grid. - * @return Monograph - */ - function getMonograph() { - return $this->_monograph; - } - - /** - * Set the Monograph - * @param Monograph - */ - function setMonograph($monograph) { - $this->_monograph = $monograph; - } - - - // - // Overridden methods from PKPHandler - // - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.SubmissionAccessPolicy'); - $this->addPolicy(new SubmissionAccessPolicy($request, $args, $roleAssignments)); - return parent::authorize($request, $args, $roleAssignments); - } - - /* - * @copydoc CategoryGridHandler::initialize - */ - function initialize($request, $args = null) { - parent::initialize($request, $args); - - // Retrieve the authorized monograph. - $this->setMonograph($this->getAuthorizedContextObject(ASSOC_TYPE_MONOGRAPH)); - - $representativeId = (int) $request->getUserVar('representativeId'); // set if editing or deleting a representative entry - - if ($representativeId != 0) { - $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /* @var $representativeDao RepresentativeDAO */ - $representative = $representativeDao->getById($representativeId, $this->getMonograph()->getId()); - if (!isset($representative)) { - fatalError('Representative referenced outside of authorized monograph context!'); - } - } - - // Load submission-specific translations - AppLocale::requireComponents( - LOCALE_COMPONENT_APP_SUBMISSION, - LOCALE_COMPONENT_PKP_SUBMISSION, - LOCALE_COMPONENT_PKP_USER, - LOCALE_COMPONENT_APP_DEFAULT, - LOCALE_COMPONENT_PKP_DEFAULT - ); - - // Basic grid configuration - $this->setTitle('grid.catalogEntry.representatives'); - - // Grid actions - $router = $request->getRouter(); - $actionArgs = $this->getRequestArgs(); - $this->addAction( - new LinkAction( - 'addRepresentative', - new AjaxModal( - $router->url($request, null, null, 'addRepresentative', null, $actionArgs), - __('grid.action.addRepresentative'), - 'modal_add_item' - ), - __('grid.action.addRepresentative'), - 'add_item' - ) - ); - - // Columns - $cellProvider = new RepresentativesGridCellProvider(); - $this->addColumn( - new GridColumn( - 'name', - 'grid.catalogEntry.representativeName', - null, - null, - $cellProvider - ) - ); - $this->addColumn( - new GridColumn( - 'role', - 'grid.catalogEntry.representativeRole', - null, - null, - $cellProvider - ) - ); - } - - - // - // Overridden methods from GridHandler - // - /** - * @see GridHandler::getRowInstance() - * @return RepresentativesGridRow - */ - function getRowInstance() { - return new RepresentativesGridRow($this->getMonograph()); - } - - /** - * @see CategoryGridHandler::getCategoryRowInstance() - * @return RepresentativesGridCategoryRow - */ - function getCategoryRowInstance() { - return new RepresentativesGridCategoryRow(); - } - - /** - * @see CategoryGridHandler::loadCategoryData() - */ - function loadCategoryData($request, &$category, $filter = null) { - $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /* @var $representativeDao RepresentativeDAO */ - if ($category['isSupplier']) { - $representatives = $representativeDao->getSuppliersByMonographId($this->getMonograph()->getId()); - } else { - $representatives = $representativeDao->getAgentsByMonographId($this->getMonograph()->getId()); - } - return $representatives->toAssociativeArray(); - } - - /** - * @see CategoryGridHandler::getCategoryRowIdParameterName() - */ - function getCategoryRowIdParameterName() { - return 'representativeCategoryId'; - } - - /** - * @see CategoryGridHandler::getRequestArgs() - */ - function getRequestArgs() { - $monograph = $this->getMonograph(); - return array_merge( - parent::getRequestArgs(), - array('submissionId' => $monograph->getId()) - ); - } - - /** - * @see GridHandler::loadData - */ - function loadData($request, $filter = null) { - // set our labels for the two Representative categories - $categories = array( - array('name' => 'grid.catalogEntry.agentsCategory', 'isSupplier' => false), - array('name' => 'grid.catalogEntry.suppliersCategory', 'isSupplier' => true) - ); - - return $categories; - } - - - // - // Public Representatives Grid Actions - // - - function addRepresentative($args, $request) { - return $this->editRepresentative($args, $request); - } - - /** - * Edit a representative entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editRepresentative($args, $request) { - // Identify the representative entry to be updated - $representativeId = (int) $request->getUserVar('representativeId'); - $monograph = $this->getMonograph(); - - $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /* @var $representativeDao RepresentativeDAO */ - $representative = $representativeDao->getById($representativeId, $monograph->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.RepresentativeForm'); - $representativeForm = new RepresentativeForm($monograph, $representative); - $representativeForm->initData(); - - return new JSONMessage(true, $representativeForm->fetch($request)); - } - - /** - * Update a representative entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateRepresentative($args, $request) { - // Identify the representative entry to be updated - $representativeId = $request->getUserVar('representativeId'); - $monograph = $this->getMonograph(); - - $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /* @var $representativeDao RepresentativeDAO */ - $representative = $representativeDao->getById($representativeId, $monograph->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.RepresentativeForm'); - $representativeForm = new RepresentativeForm($monograph, $representative); - $representativeForm->readInputData(); - if ($representativeForm->validate()) { - $representativeId = $representativeForm->execute(); - - if(!isset($representative)) { - // This is a new entry - $representative = $representativeDao->getById($representativeId, $monograph->getId()); - // New added entry action notification content. - $notificationContent = __('notification.addedRepresentative'); - } else { - // entry edit action notification content. - $notificationContent = __('notification.editedRepresentative'); - } - - // Create trivial notification. - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => $notificationContent)); - - // Prepare the grid row data - $row = $this->getRowInstance(); - $row->setGridId($this->getId()); - $row->setId($representativeId); - $row->setData($representative); - $row->initialize($request); - - // Render the row into a JSON response - return DAO::getDataChangedEvent($representativeId, (int) $representative->getIsSupplier()); - - } else { - return new JSONMessage(true, $representativeForm->fetch($request)); - } - } - - /** - * Delete a representative entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deleteRepresentative($args, $request) { - \AppLocale::requireComponents(LOCALE_COMPONENT_PKP_MANAGER, LOCALE_COMPONENT_APP_MANAGER); - - // Identify the representative entry to be deleted - $representativeId = $request->getUserVar('representativeId'); - - $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /* @var $representativeDao RepresentativeDAO */ - $representative = $representativeDao->getById($representativeId, $this->getMonograph()->getId()); - - if (!$representative) { - return new JSONMessage(false, __('api.404.resourceNotFound')); - } - - // Don't allow a representative to be deleted if they are associated - // with a publication format's market metadata - $submission = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION); - foreach ($submission->getData('publications') as $publication) { - foreach ($publication->getData('publicationFormats') as $publicationFormat) { - $markets = DAORegistry::getDAO('MarketDAO')->getByPublicationFormatId($publicationFormat->getId())->toArray(); - foreach ($markets as $market) { - if (in_array($representative->getId(), [$market->getAgentId(), $market->getSupplierId()])) { - return new JSONMessage(false, __('manager.representative.inUse')); - } - } - } - } - - $result = $representativeDao->deleteObject($representative); - - if ($result) { - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => __('notification.removedRepresentative'))); - return DAO::getDataChangedEvent($representative->getId(), (int) $representative->getIsSupplier()); - } else { - return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - } - } -} - - diff --git a/controllers/grid/catalogEntry/RepresentativesGridHandler.php b/controllers/grid/catalogEntry/RepresentativesGridHandler.php new file mode 100644 index 00000000000..444ef8a9cdd --- /dev/null +++ b/controllers/grid/catalogEntry/RepresentativesGridHandler.php @@ -0,0 +1,363 @@ +addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN, Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_ASSISTANT], + ['fetchGrid', 'fetchCategory', 'fetchRow', 'addRepresentative', 'editRepresentative', + 'updateRepresentative', 'deleteRepresentative'] + ); + } + + + // + // Getters/Setters + // + /** + * Get the monograph associated with this grid. + * + * @return Submission + */ + public function getMonograph() + { + return $this->_monograph; + } + + /** + * Set the Monograph + * + * @param Submission + */ + public function setMonograph($monograph) + { + $this->_monograph = $monograph; + } + + + // + // Overridden methods from PKPHandler + // + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $this->addPolicy(new SubmissionAccessPolicy($request, $args, $roleAssignments)); + return parent::authorize($request, $args, $roleAssignments); + } + + /** + * @copydoc CategoryGridHandler::initialize + * + * @param null|mixed $args + */ + public function initialize($request, $args = null) + { + parent::initialize($request, $args); + + // Retrieve the authorized monograph. + $this->setMonograph($this->getAuthorizedContextObject(Application::ASSOC_TYPE_MONOGRAPH)); + + $representativeId = (int) $request->getUserVar('representativeId'); // set if editing or deleting a representative entry + + if ($representativeId != 0) { + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /** @var RepresentativeDAO $representativeDao */ + $representative = $representativeDao->getById($representativeId, $this->getMonograph()->getId()); + if (!isset($representative)) { + fatalError('Representative referenced outside of authorized monograph context!'); + } + } + + // Basic grid configuration + $this->setTitle('grid.catalogEntry.representatives'); + + // Grid actions + $router = $request->getRouter(); + $actionArgs = $this->getRequestArgs(); + $this->addAction( + new LinkAction( + 'addRepresentative', + new AjaxModal( + $router->url($request, null, null, 'addRepresentative', null, $actionArgs), + __('grid.action.addRepresentative'), + 'modal_add_item' + ), + __('grid.action.addRepresentative'), + 'add_item' + ) + ); + + // Columns + $cellProvider = new RepresentativesGridCellProvider(); + $this->addColumn( + new GridColumn( + 'name', + 'grid.catalogEntry.representativeName', + null, + null, + $cellProvider + ) + ); + $this->addColumn( + new GridColumn( + 'role', + 'grid.catalogEntry.representativeRole', + null, + null, + $cellProvider + ) + ); + } + + + // + // Overridden methods from GridHandler + // + /** + * @see GridHandler::getRowInstance() + * + * @return RepresentativesGridRow + */ + public function getRowInstance() + { + return new RepresentativesGridRow($this->getMonograph()); + } + + /** + * @see CategoryGridHandler::getCategoryRowInstance() + * + * @return RepresentativesGridCategoryRow + */ + public function getCategoryRowInstance() + { + return new RepresentativesGridCategoryRow(); + } + + /** + * @see CategoryGridHandler::loadCategoryData() + * + * @param null|mixed $filter + */ + public function loadCategoryData($request, &$category, $filter = null) + { + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /** @var RepresentativeDAO $representativeDao */ + if ($category['isSupplier']) { + $representatives = $representativeDao->getSuppliersByMonographId($this->getMonograph()->getId()); + } else { + $representatives = $representativeDao->getAgentsByMonographId($this->getMonograph()->getId()); + } + return $representatives->toAssociativeArray(); + } + + /** + * @see CategoryGridHandler::getCategoryRowIdParameterName() + */ + public function getCategoryRowIdParameterName() + { + return 'representativeCategoryId'; + } + + /** + * @see CategoryGridHandler::getRequestArgs() + */ + public function getRequestArgs() + { + $monograph = $this->getMonograph(); + return array_merge( + parent::getRequestArgs(), + ['submissionId' => $monograph->getId()] + ); + } + + /** + * @see GridHandler::loadData + * + * @param null|mixed $filter + */ + public function loadData($request, $filter = null) + { + // set our labels for the two Representative categories + $categories = [ + ['name' => 'grid.catalogEntry.agentsCategory', 'isSupplier' => false], + ['name' => 'grid.catalogEntry.suppliersCategory', 'isSupplier' => true] + ]; + + return $categories; + } + + + // + // Public Representatives Grid Actions + // + + public function addRepresentative($args, $request) + { + return $this->editRepresentative($args, $request); + } + + /** + * Edit a representative entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editRepresentative($args, $request) + { + // Identify the representative entry to be updated + $representativeId = (int) $request->getUserVar('representativeId'); + $monograph = $this->getMonograph(); + + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /** @var RepresentativeDAO $representativeDao */ + $representative = $representativeDao->getById($representativeId, $monograph->getId()); + + // Form handling + $representativeForm = new RepresentativeForm($monograph, $representative); + $representativeForm->initData(); + + return new JSONMessage(true, $representativeForm->fetch($request)); + } + + /** + * Update a representative entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateRepresentative($args, $request) + { + // Identify the representative entry to be updated + $representativeId = $request->getUserVar('representativeId'); + $monograph = $this->getMonograph(); + + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /** @var RepresentativeDAO $representativeDao */ + $representative = $representativeDao->getById($representativeId, $monograph->getId()); + + // Form handling + $representativeForm = new RepresentativeForm($monograph, $representative); + $representativeForm->readInputData(); + if ($representativeForm->validate()) { + $representativeId = $representativeForm->execute(); + + if (!isset($representative)) { + // This is a new entry + $representative = $representativeDao->getById($representativeId, $monograph->getId()); + // New added entry action notification content. + $notificationContent = __('notification.addedRepresentative'); + } else { + // entry edit action notification content. + $notificationContent = __('notification.editedRepresentative'); + } + + // Create trivial notification. + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => $notificationContent]); + + // Prepare the grid row data + $row = $this->getRowInstance(); + $row->setGridId($this->getId()); + $row->setId($representativeId); + $row->setData($representative); + $row->initialize($request); + + // Render the row into a JSON response + return DAO::getDataChangedEvent($representativeId, (int) $representative->getIsSupplier()); + } else { + return new JSONMessage(true, $representativeForm->fetch($request)); + } + } + + /** + * Delete a representative entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deleteRepresentative($args, $request) + { + // Identify the representative entry to be deleted + $representativeId = $request->getUserVar('representativeId'); + + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /** @var RepresentativeDAO $representativeDao */ + $representative = $representativeDao->getById($representativeId, $this->getMonograph()->getId()); + + if (!$representative) { + return new JSONMessage(false, __('manager.setup.errorDeletingItem')); + } + + // Don't allow a representative to be deleted if they are associated + // with a publication format's market metadata + $submission = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION); + /** @var MarketDAO */ + $marketDao = DAORegistry::getDAO('MarketDAO'); + foreach ($submission->getData('publications') as $publication) { + foreach ($publication->getData('publicationFormats') as $publicationFormat) { + $markets = $marketDao->getByPublicationFormatId($publicationFormat->getId())->toArray(); + foreach ($markets as $market) { + if (in_array($representative->getId(), [$market->getAgentId(), $market->getSupplierId()])) { + return new JSONMessage(false, __('manager.representative.inUse')); + } + } + } + } + + $representativeDao->deleteObject($representative); + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => __('notification.removedRepresentative')]); + return DAO::getDataChangedEvent($representative->getId(), (int) $representative->getIsSupplier()); + } +} diff --git a/controllers/grid/catalogEntry/RepresentativesGridRow.inc.php b/controllers/grid/catalogEntry/RepresentativesGridRow.inc.php deleted file mode 100644 index 5403e9e3959..00000000000 --- a/controllers/grid/catalogEntry/RepresentativesGridRow.inc.php +++ /dev/null @@ -1,93 +0,0 @@ -_monograph = $monograph; - parent::__construct(); - } - - // - // Overridden methods from GridRow - // - /** - * @copydoc GridRow::initialize() - */ - function initialize($request, $template = null) { - // Do the default initialization - parent::initialize($request, $template); - - $monograph = $this->getMonograph(); - - // Is this a new row or an existing row? - $representative = $this->_data; - if ($representative != null && is_numeric($representative->getId())) { - $router = $request->getRouter(); - $actionArgs = array_merge( - parent::getRequestArgs(), - array('submissionId' => $monograph->getId(), - 'representativeId' => $representative->getId()) - ); - - // Add row-level actions - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'editRepresentative', - new AjaxModal( - $router->url($request, null, null, 'editRepresentative', null, $actionArgs), - __('grid.action.edit'), - 'modal_edit' - ), - __('grid.action.edit'), - 'edit' - ) - ); - - import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal'); - $this->addAction( - new LinkAction( - 'deleteRepresentative', - new RemoteActionConfirmationModal( - $request->getSession(), - __('common.confirmDelete'), - __('common.delete'), - $router->url($request, null, null, 'deleteRepresentative', null, $actionArgs), - 'modal_delete' - ), - __('grid.action.delete'), - 'delete' - ) - ); - } - } - - /** - * Get the monograph for this row (already authorized) - * @return Monograph - */ - function getMonograph() { - return $this->_monograph; - } -} - diff --git a/controllers/grid/catalogEntry/RepresentativesGridRow.php b/controllers/grid/catalogEntry/RepresentativesGridRow.php new file mode 100644 index 00000000000..f671b6f281c --- /dev/null +++ b/controllers/grid/catalogEntry/RepresentativesGridRow.php @@ -0,0 +1,104 @@ +_monograph = $monograph; + parent::__construct(); + } + + // + // Overridden methods from GridRow + // + /** + * @copydoc GridRow::initialize() + * + * @param null|mixed $template + */ + public function initialize($request, $template = null) + { + // Do the default initialization + parent::initialize($request, $template); + + $monograph = $this->getMonograph(); + + // Is this a new row or an existing row? + $representative = $this->_data; + if ($representative != null && is_numeric($representative->getId())) { + $router = $request->getRouter(); + $actionArgs = array_merge( + parent::getRequestArgs() ?? [], + ['submissionId' => $monograph->getId(), + 'representativeId' => $representative->getId()] + ); + + // Add row-level actions + $this->addAction( + new LinkAction( + 'editRepresentative', + new AjaxModal( + $router->url($request, null, null, 'editRepresentative', null, $actionArgs), + __('grid.action.edit'), + 'modal_edit' + ), + __('grid.action.edit'), + 'edit' + ) + ); + + $this->addAction( + new LinkAction( + 'deleteRepresentative', + new RemoteActionConfirmationModal( + $request->getSession(), + __('common.confirmDelete'), + __('common.delete'), + $router->url($request, null, null, 'deleteRepresentative', null, $actionArgs), + 'modal_delete' + ), + __('grid.action.delete'), + 'delete' + ) + ); + } + } + + /** + * Get the monograph for this row (already authorized) + * + * @return Submission + */ + public function getMonograph() + { + return $this->_monograph; + } +} diff --git a/controllers/grid/catalogEntry/SalesRightsGridCellProvider.inc.php b/controllers/grid/catalogEntry/SalesRightsGridCellProvider.inc.php deleted file mode 100644 index 98af18c8f73..00000000000 --- a/controllers/grid/catalogEntry/SalesRightsGridCellProvider.inc.php +++ /dev/null @@ -1,49 +0,0 @@ -getData(); - $columnId = $column->getId(); - assert(is_a($element, 'DataObject') && !empty($columnId)); - switch ($columnId) { - case 'type': - return array('label' => $element->getNameForONIXCode()); - case 'ROW': - return array('isChecked' => $element->getROWSetting()); - } - } -} - - diff --git a/controllers/grid/catalogEntry/SalesRightsGridCellProvider.php b/controllers/grid/catalogEntry/SalesRightsGridCellProvider.php new file mode 100644 index 00000000000..1ac5059a16f --- /dev/null +++ b/controllers/grid/catalogEntry/SalesRightsGridCellProvider.php @@ -0,0 +1,51 @@ +getData(); + $columnId = $column->getId(); + assert(is_a($element, 'DataObject') && !empty($columnId)); + /** @var SalesRights $element */ + switch ($columnId) { + case 'type': + return ['label' => $element->getNameForONIXCode()]; + case 'ROW': + return ['isChecked' => $element->getROWSetting()]; + } + } +} diff --git a/controllers/grid/catalogEntry/SalesRightsGridHandler.inc.php b/controllers/grid/catalogEntry/SalesRightsGridHandler.inc.php deleted file mode 100644 index 4f11cd050d6..00000000000 --- a/controllers/grid/catalogEntry/SalesRightsGridHandler.inc.php +++ /dev/null @@ -1,347 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_MANAGER), - array('fetchGrid', 'fetchRow', 'addRights', 'editRights', - 'updateRights', 'deleteRights')); - } - - - // - // Getters/Setters - // - /** - * Get the submission associated with this grid. - * @return Submission - */ - function getSubmission() { - return $this->_submission; - } - - /** - * Set the Submission - * @param Submission - */ - function setSubmission($submission) { - $this->_submission = $submission; - } - - /** - * Get the publication associated with this grid. - * @return Publicaton - */ - function getPublication() { - return $this->_publication; - } - - /** - * Set the Publicaton - * @param Publicaton - */ - function setPublication($publication) { - $this->_publication = $publication; - } - - /** - * Get the publication format assocated with these sales rights - * @return PublicationFormat - */ - function getPublicationFormat() { - return $this->_publicationFormat; - } - - /** - * Set the publication format - * @param PublicationFormat - */ - function setPublicationFormat($publicationFormat) { - $this->_publicationFormat = $publicationFormat; - } - - // - // Overridden methods from PKPHandler - // - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.PublicationAccessPolicy'); - $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); - return parent::authorize($request, $args, $roleAssignments); - } - - /** - * @copydoc GridHandler::initialize() - */ - function initialize($request, $args = null) { - parent::initialize($request, $args); - - // Retrieve the authorized submission. - $this->setSubmission($this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION)); - $this->setPublication($this->getAuthorizedContextObject(ASSOC_TYPE_PUBLICATION)); - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $representationId = null; - - // Retrieve the associated publication format for this grid. - $salesRightsId = (int) $request->getUserVar('salesRightsId'); // set if editing or deleting a sales rights entry - - if ($salesRightsId) { - $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /* @var $salesRightsDao SalesRightsDAO */ - $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); - if ($salesRights) { - $representationId = $salesRights->getPublicationFormatId(); - } - } else { // empty form for new SalesRights - $representationId = (int) $request->getUserVar('representationId'); - } - - $submission = $this->getSubmission(); - $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); - - if ($publicationFormat) { - $this->setPublicationFormat($publicationFormat); - } else { - fatalError('The publication format is not assigned to authorized submission!'); - } - - // Load submission-specific translations - AppLocale::requireComponents( - LOCALE_COMPONENT_APP_SUBMISSION, - LOCALE_COMPONENT_PKP_SUBMISSION, - LOCALE_COMPONENT_PKP_USER, - LOCALE_COMPONENT_APP_DEFAULT, - LOCALE_COMPONENT_PKP_DEFAULT - ); - - // Basic grid configuration - $this->setTitle('grid.catalogEntry.salesRights'); - - // Grid actions - $router = $request->getRouter(); - $actionArgs = $this->getRequestArgs(); - $this->addAction( - new LinkAction( - 'addRights', - new AjaxModal( - $router->url($request, null, null, 'addRights', null, $actionArgs), - __('grid.action.addRights'), - 'modal_add_item' - ), - __('grid.action.addRights'), - 'add_item' - ) - ); - - // Columns - $cellProvider = new SalesRightsGridCellProvider(); - $this->addColumn( - new GridColumn( - 'type', - 'grid.catalogEntry.salesRightsType', - null, - null, - $cellProvider - ) - ); - $this->addColumn( - new GridColumn( - 'ROW', - 'grid.catalogEntry.salesRightsROW', - null, - 'controllers/grid/common/cell/checkMarkCell.tpl', - $cellProvider - ) - ); - } - - - // - // Overridden methods from GridHandler - // - /** - * @see GridHandler::getRowInstance() - * @return SalesRightsGridRow - */ - function getRowInstance() { - return new SalesRightsGridRow($this->getSubmission()); - } - - /** - * Get the arguments that will identify the data in the grid - * In this case, the submission. - * @return array - */ - function getRequestArgs() { - return [ - 'submissionId' => $this->getSubmission()->getId(), - 'publicationId' => $this->getPublication()->getId(), - 'representationId' => $this->getPublicationFormat()->getId() - ]; - } - - /** - * @see GridHandler::loadData - */ - function loadData($request, $filter = null) { - $publicationFormat = $this->getPublicationFormat(); - $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /* @var $salesRightsDao SalesRightsDAO */ - $data = $salesRightsDao->getByPublicationFormatId($publicationFormat->getId()); - return $data->toArray(); - } - - - // - // Public Sales Rights Grid Actions - // - /** - * Edit a new (empty) rights entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function addRights($args, $request) { - return $this->editRights($args, $request); - } - - /** - * Edit a sales rights entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editRights($args, $request) { - // Identify the sales rights entry to be updated - $salesRightsId = (int) $request->getUserVar('salesRightsId'); - $submission = $this->getSubmission(); - - $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /* @var $salesRightsDao SalesRightsDAO */ - $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.SalesRightsForm'); - $salesRightsForm = new SalesRightsForm($submission, $this->getPublication(), $salesRights); - $salesRightsForm->initData(); - - return new JSONMessage(true, $salesRightsForm->fetch($request)); - } - - /** - * Update a sales rights entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateRights($args, $request) { - // Identify the sales rights entry to be updated - $salesRightsId = $request->getUserVar('salesRightsId'); - $submission = $this->getSubmission(); - - $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /* @var $salesRightsDao SalesRightsDAO */ - $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); - - // Form handling - import('controllers.grid.catalogEntry.form.SalesRightsForm'); - $salesRightsForm = new SalesRightsForm($submission, $this->getPublication(), $salesRights); - $salesRightsForm->readInputData(); - if ($salesRightsForm->validate()) { - $salesRightsId = $salesRightsForm->execute(); - - if(!isset($salesRights)) { - // This is a new entry - $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); - // New added entry action notification content. - $notificationContent = __('notification.addedSalesRights'); - } else { - // entry edit action notification content. - $notificationContent = __('notification.editedSalesRights'); - } - - // Create trivial notification. - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => $notificationContent)); - - // Prepare the grid row data - $row = $this->getRowInstance(); - $row->setGridId($this->getId()); - $row->setId($salesRightsId); - $row->setData($salesRights); - $row->initialize($request); - - // Render the row into a JSON response - return DAO::getDataChangedEvent(); - - } else { - return new JSONMessage(true, $salesRightsForm->fetch($request)); - } - } - - /** - * Delete a sales rights entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deleteRights($args, $request) { - - // Identify the sales rights entry to be deleted - $salesRightsId = $request->getUserVar('salesRightsId'); - - $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /* @var $salesRightsDao SalesRightsDAO */ - $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); - if ($salesRights != null) { // authorized - - $result = $salesRightsDao->deleteObject($salesRights); - - if ($result) { - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => __('notification.removedSalesRights'))); - return DAO::getDataChangedEvent(); - } else { - return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - } - } - } -} - - diff --git a/controllers/grid/catalogEntry/SalesRightsGridHandler.php b/controllers/grid/catalogEntry/SalesRightsGridHandler.php new file mode 100644 index 00000000000..073609c03a1 --- /dev/null +++ b/controllers/grid/catalogEntry/SalesRightsGridHandler.php @@ -0,0 +1,381 @@ +addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ['fetchGrid', 'fetchRow', 'addRights', 'editRights', 'updateRights', 'deleteRights'] + ); + } + + + // + // Getters/Setters + // + /** + * Get the submission associated with this grid. + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Set the Submission + * + * @param Submission + */ + public function setSubmission($submission) + { + $this->_submission = $submission; + } + + /** + * Get the publication associated with this grid. + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the Publication + * + * @param Publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + /** + * Get the publication format associated with these sales rights + * + * @return PublicationFormat + */ + public function getPublicationFormat() + { + return $this->_publicationFormat; + } + + /** + * Set the publication format + * + * @param PublicationFormat + */ + public function setPublicationFormat($publicationFormat) + { + $this->_publicationFormat = $publicationFormat; + } + + // + // Overridden methods from PKPHandler + // + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); + return parent::authorize($request, $args, $roleAssignments); + } + + /** + * @copydoc GridHandler::initialize() + * + * @param null|mixed $args + */ + public function initialize($request, $args = null) + { + parent::initialize($request, $args); + + // Retrieve the authorized submission. + $this->setSubmission($this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION)); + $this->setPublication($this->getAuthorizedContextObject(Application::ASSOC_TYPE_PUBLICATION)); + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $representationId = null; + + // Retrieve the associated publication format for this grid. + $salesRightsId = (int) $request->getUserVar('salesRightsId'); // set if editing or deleting a sales rights entry + + if ($salesRightsId) { + $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /** @var SalesRightsDAO $salesRightsDao */ + $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); + if ($salesRights) { + $representationId = $salesRights->getPublicationFormatId(); + } + } else { // empty form for new SalesRights + $representationId = (int) $request->getUserVar('representationId'); + } + + $publicationFormat = $representationId + ? $publicationFormatDao->getById((int) $representationId, $this->getPublication()->getId()) + : null; + + if ($publicationFormat) { + $this->setPublicationFormat($publicationFormat); + } else { + throw new Exception('The publication format is not assigned to authorized submission!'); + } + + // Basic grid configuration + $this->setTitle('grid.catalogEntry.salesRights'); + + // Grid actions + $router = $request->getRouter(); + $actionArgs = $this->getRequestArgs(); + $this->addAction( + new LinkAction( + 'addRights', + new AjaxModal( + $router->url($request, null, null, 'addRights', null, $actionArgs), + __('grid.action.addRights'), + 'modal_add_item' + ), + __('grid.action.addRights'), + 'add_item' + ) + ); + + // Columns + $cellProvider = new SalesRightsGridCellProvider(); + $this->addColumn( + new GridColumn( + 'type', + 'grid.catalogEntry.salesRightsType', + null, + null, + $cellProvider + ) + ); + $this->addColumn( + new GridColumn( + 'ROW', + 'grid.catalogEntry.salesRightsROW', + null, + 'controllers/grid/common/cell/checkMarkCell.tpl', + $cellProvider + ) + ); + } + + + // + // Overridden methods from GridHandler + // + /** + * @see GridHandler::getRowInstance() + * + * @return SalesRightsGridRow + */ + public function getRowInstance() + { + return new SalesRightsGridRow($this->getSubmission()); + } + + /** + * Get the arguments that will identify the data in the grid + * In this case, the submission. + * + * @return array + */ + public function getRequestArgs() + { + return [ + 'submissionId' => $this->getSubmission()->getId(), + 'publicationId' => $this->getPublication()->getId(), + 'representationId' => $this->getPublicationFormat()->getId() + ]; + } + + /** + * @see GridHandler::loadData + * + * @param null|mixed $filter + */ + public function loadData($request, $filter = null) + { + $publicationFormat = $this->getPublicationFormat(); + $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /** @var SalesRightsDAO $salesRightsDao */ + $data = $salesRightsDao->getByPublicationFormatId($publicationFormat->getId()); + return $data->toArray(); + } + + + // + // Public Sales Rights Grid Actions + // + /** + * Edit a new (empty) rights entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function addRights($args, $request) + { + return $this->editRights($args, $request); + } + + /** + * Edit a sales rights entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editRights($args, $request) + { + // Identify the sales rights entry to be updated + $salesRightsId = (int) $request->getUserVar('salesRightsId'); + $submission = $this->getSubmission(); + + $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /** @var SalesRightsDAO $salesRightsDao */ + $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); + + // Form handling + $salesRightsForm = new SalesRightsForm($submission, $this->getPublication(), $salesRights); + $salesRightsForm->initData(); + + return new JSONMessage(true, $salesRightsForm->fetch($request)); + } + + /** + * Update a sales rights entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateRights($args, $request) + { + // Identify the sales rights entry to be updated + $salesRightsId = $request->getUserVar('salesRightsId'); + $submission = $this->getSubmission(); + + $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /** @var SalesRightsDAO $salesRightsDao */ + $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); + + // Form handling + $salesRightsForm = new SalesRightsForm($submission, $this->getPublication(), $salesRights); + $salesRightsForm->readInputData(); + if ($salesRightsForm->validate()) { + $salesRightsId = $salesRightsForm->execute(); + + if (!isset($salesRights)) { + // This is a new entry + $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); + // New added entry action notification content. + $notificationContent = __('notification.addedSalesRights'); + } else { + // entry edit action notification content. + $notificationContent = __('notification.editedSalesRights'); + } + + // Create trivial notification. + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => $notificationContent]); + + // Prepare the grid row data + $row = $this->getRowInstance(); + $row->setGridId($this->getId()); + $row->setId($salesRightsId); + $row->setData($salesRights); + $row->initialize($request); + + // Render the row into a JSON response + return DAO::getDataChangedEvent(); + } else { + return new JSONMessage(true, $salesRightsForm->fetch($request)); + } + } + + /** + * Delete a sales rights entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deleteRights($args, $request) + { + // Identify the sales rights entry to be deleted + $salesRightsId = $request->getUserVar('salesRightsId'); + $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /** @var SalesRightsDAO $salesRightsDao */ + $salesRights = $salesRightsDao->getById($salesRightsId, $this->getPublication()->getId()); + if (!$salesRights) { + return new JSONMessage(false, __('manager.setup.errorDeletingItem')); + } + + $salesRightsDao->deleteObject($salesRights); + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => __('notification.removedSalesRights')]); + return DAO::getDataChangedEvent(); + } +} diff --git a/controllers/grid/catalogEntry/SalesRightsGridRow.inc.php b/controllers/grid/catalogEntry/SalesRightsGridRow.inc.php deleted file mode 100644 index 80e78c7db64..00000000000 --- a/controllers/grid/catalogEntry/SalesRightsGridRow.inc.php +++ /dev/null @@ -1,93 +0,0 @@ -_monograph = $monograph; - parent::__construct(); - } - - // - // Overridden methods from GridRow - // - /** - * @copydoc GridRow::initialize() - */ - function initialize($request, $template = null) { - // Do the default initialization - parent::initialize($request, $template); - - $monograph = $this->getMonograph(); - - // Is this a new row or an existing row? - $salesRights = $this->_data; - - if ($salesRights != null && is_numeric($salesRights->getId())) { - $router = $request->getRouter(); - $actionArgs = array( - 'submissionId' => $monograph->getId(), - 'salesRightsId' => $salesRights->getId() - ); - - // Add row-level actions - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'editRights', - new AjaxModal( - $router->url($request, null, null, 'editRights', null, $actionArgs), - __('grid.action.edit'), - 'modal_edit' - ), - __('grid.action.edit'), - 'edit' - ) - ); - - import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal'); - $this->addAction( - new LinkAction( - 'deleteRights', - new RemoteActionConfirmationModal( - $request->getSession(), - __('common.confirmDelete'), - __('common.delete'), - $router->url($request, null, null, 'deleteRights', null, $actionArgs), - 'modal_delete' - ), - __('grid.action.delete'), - 'delete' - ) - ); - } - } - - /** - * Get the monograph for this row (already authorized) - * @return Monograph - */ - function &getMonograph() { - return $this->_monograph; - } -} - diff --git a/controllers/grid/catalogEntry/SalesRightsGridRow.php b/controllers/grid/catalogEntry/SalesRightsGridRow.php new file mode 100644 index 00000000000..88c4e67d1e0 --- /dev/null +++ b/controllers/grid/catalogEntry/SalesRightsGridRow.php @@ -0,0 +1,104 @@ +_monograph = $monograph; + parent::__construct(); + } + + // + // Overridden methods from GridRow + // + /** + * @copydoc GridRow::initialize() + * + * @param null|mixed $template + */ + public function initialize($request, $template = null) + { + // Do the default initialization + parent::initialize($request, $template); + + $monograph = $this->getMonograph(); + + // Is this a new row or an existing row? + $salesRights = $this->_data; + + if ($salesRights != null && is_numeric($salesRights->getId())) { + $router = $request->getRouter(); + $actionArgs = ($this->getRequestArgs() ?: []) + [ + 'submissionId' => $monograph->getId(), + 'salesRightsId' => $salesRights->getId() + ]; + + // Add row-level actions + $this->addAction( + new LinkAction( + 'editRights', + new AjaxModal( + $router->url($request, null, null, 'editRights', null, $actionArgs), + __('grid.action.edit'), + 'modal_edit' + ), + __('grid.action.edit'), + 'edit' + ) + ); + + $this->addAction( + new LinkAction( + 'deleteRights', + new RemoteActionConfirmationModal( + $request->getSession(), + __('common.confirmDelete'), + __('common.delete'), + $router->url($request, null, null, 'deleteRights', null, $actionArgs), + 'modal_delete' + ), + __('grid.action.delete'), + 'delete' + ) + ); + } + } + + /** + * Get the monograph for this row (already authorized) + * + * @return Submission + */ + public function &getMonograph() + { + return $this->_monograph; + } +} diff --git a/controllers/grid/catalogEntry/form/IdentificationCodeForm.inc.php b/controllers/grid/catalogEntry/form/IdentificationCodeForm.inc.php deleted file mode 100644 index 1c988d8baff..00000000000 --- a/controllers/grid/catalogEntry/form/IdentificationCodeForm.inc.php +++ /dev/null @@ -1,216 +0,0 @@ -setSubmission($submission); - $this->setPublication($publication); - $this->setIdentificationCode($identificationCode); - - // Validation checks for this form - $this->addCheck(new FormValidator($this, 'code', 'required', 'grid.catalogEntry.codeRequired')); - $this->addCheck(new FormValidator($this, 'value', 'required', 'grid.catalogEntry.valueRequired')); - $this->addCheck(new FormValidator($this, 'representationId', 'required', 'grid.catalogEntry.publicationFormatRequired')); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - // - // Getters and Setters - // - /** - * Get the code - * @return IdentificationCode - */ - public function getIdentificationCode() { - return $this->_identificationCode; - } - - /** - * Set the code - * @param @identificationCode IdentificationCode - */ - public function setIdentificationCode($identificationCode) { - $this->_identificationCode = $identificationCode; - } - - /** - * Get the Submission - * @return Submission - */ - public function getSubmission() { - return $this->_submission; - } - - /** - * Set the Submission - * @param Submission - */ - public function setSubmission($submission) { - $this->_submission = $submission; - } - - /** - * Get the Publication - * @return Publication - */ - public function getPublication() { - return $this->_publication; - } - - /** - * Set the Publication - * @param Publication - */ - public function setPublication($publication) { - $this->_publication = $publication; - } - - - // - // Overridden template methods - // - /** - * Initialize form data from the identification code. - */ - public function initData() { - $code = $this->getIdentificationCode(); - - if ($code) { - $this->_data = array( - 'identificationCodeId' => $code->getId(), - 'code' => $code->getCode(), - 'value' => $code->getValue(), - ); - } - } - - /** - * @copydoc Form::fetch() - */ - public function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - $submission = $this->getSubmission(); - $templateMgr->assign([ - 'submissionId' => $submission->getId(), - 'publicationId' => $this->getPublication()->getId() - ]); - - if ($identificationCode = $this->getIdentificationCode()) { - $templateMgr->assign([ - 'identificationCodeId' => $identificationCode->getId(), - 'code' => $identificationCode->getCode(), - 'value' => $identificationCode->getValue() - ]); - $representationId = $identificationCode->getPublicationFormatId(); - } else { // loading a blank form - $representationId = (int) $request->getUserVar('representationId'); - } - - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); - - if ($publicationFormat) { // the format exists for this submission - $templateMgr->assign('representationId', $representationId); - $identificationCodes = $publicationFormat->getIdentificationCodes(); - $assignedCodes = array_keys($identificationCodes->toAssociativeArray('code')); // currently assigned codes - if ($identificationCode) $assignedCodes = array_diff($assignedCodes, array($identificationCode->getCode())); // allow existing codes to keep their value - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - - // since the pubId DOI plugin may be enabled, we give that precedence and remove DOI from here if that is the case. - $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true); - foreach ($pubIdPlugins as $plugin) { - if ($plugin->getEnabled() && $plugin->getPubIdType() == 'doi') { - $assignedCodes[] = '06'; // 06 is DOI in ONIX-speak. - } - } - $codes = $onixCodelistItemDao->getCodes('List5', $assignedCodes); // ONIX list for these - $templateMgr->assign('identificationCodes', $codes); - } else { - fatalError('Format not in authorized submission'); - } - - return parent::fetch($request, $template, $display); - } - - /** - * Assign form data to user-submitted data. - * @see Form::readInputData() - */ - public function readInputData() { - $this->readUserVars(array( - 'identificationCodeId', - 'representationId', - 'code', - 'value', - )); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - parent::execute(...$functionArgs); - $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /* @var $identificationCodeDao IdentificationCodeDAO */ - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - - $submission = $this->getSubmission(); - $identificationCode = $this->getIdentificationCode(); - $publicationFormat = $publicationFormatDao->getById($this->getData('representationId', $this->getPublication()->getId())); - - if (!$identificationCode) { - // this is a new code to this published submission - $identificationCode = $identificationCodeDao->newDataObject(); - $existingFormat = false; - if ($publicationFormat != null) { // ensure this format is in this submission - $identificationCode->setPublicationFormatId($publicationFormat->getId()); - } else { - fatalError('This format not in authorized submission context!'); - } - } else { - $existingFormat = true; - if ($publicationFormat->getId() != $identificationCode->getPublicationFormatId()) throw new Exception('Invalid format!'); - } - - $identificationCode->setCode($this->getData('code')); - $identificationCode->setValue($this->getData('value')); - - if ($existingFormat) { - $identificationCodeDao->updateObject($identificationCode); - $identificationCodeId = $identificationCode->getId(); - } else { - $identificationCodeId = $identificationCodeDao->insertObject($identificationCode); - } - - return $identificationCodeId; - } -} - - diff --git a/controllers/grid/catalogEntry/form/IdentificationCodeForm.php b/controllers/grid/catalogEntry/form/IdentificationCodeForm.php new file mode 100644 index 00000000000..2c510dd0b82 --- /dev/null +++ b/controllers/grid/catalogEntry/form/IdentificationCodeForm.php @@ -0,0 +1,248 @@ +setSubmission($submission); + $this->setPublication($publication); + $this->setIdentificationCode($identificationCode); + + // Validation checks for this form + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'code', 'required', 'grid.catalogEntry.codeRequired')); + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'value', 'required', 'grid.catalogEntry.valueRequired')); + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'representationId', 'required', 'grid.catalogEntry.publicationFormatRequired')); + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + // + // Getters and Setters + // + /** + * Get the code + * + * @return IdentificationCode + */ + public function getIdentificationCode() + { + return $this->_identificationCode; + } + + /** + * Set the code + * + * @param IdentificationCode $identificationCode + */ + public function setIdentificationCode($identificationCode) + { + $this->_identificationCode = $identificationCode; + } + + /** + * Get the Submission + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Set the Submission + * + * @param Submission + */ + public function setSubmission($submission) + { + $this->_submission = $submission; + } + + /** + * Get the Publication + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the Publication + * + * @param Publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + + // + // Overridden template methods + // + /** + * Initialize form data from the identification code. + */ + public function initData() + { + $code = $this->getIdentificationCode(); + + if ($code) { + $this->_data = [ + 'identificationCodeId' => $code->getId(), + 'code' => $code->getCode(), + 'value' => $code->getValue(), + ]; + } + } + + /** + * @copydoc Form::fetch() + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + $submission = $this->getSubmission(); + $templateMgr->assign([ + 'submissionId' => $submission->getId(), + 'publicationId' => $this->getPublication()->getId() + ]); + + if ($identificationCode = $this->getIdentificationCode()) { + $templateMgr->assign([ + 'identificationCodeId' => $identificationCode->getId(), + 'code' => $identificationCode->getCode(), + 'value' => $identificationCode->getValue() + ]); + $representationId = $identificationCode->getPublicationFormatId(); + } else { // loading a blank form + $representationId = (int) $request->getUserVar('representationId'); + } + + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); + + if ($publicationFormat) { // the format exists for this submission + $templateMgr->assign('representationId', $representationId); + $identificationCodes = $publicationFormat->getIdentificationCodes(); + $assignedCodes = array_keys($identificationCodes->toAssociativeArray('code')); // currently assigned codes + if ($identificationCode) { + $assignedCodes = array_diff($assignedCodes, [$identificationCode->getCode()]); + } // allow existing codes to keep their value + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + + // Since DOIs may be separately enabled, we give that precedence and remove DOI from here if that is the case. + $context = $request->getContext(); + if ($context->areDoisEnabled()) { + $assignedCodes[] = '06'; // 06 is DOI in ONIX-speak. + } + $codes = $onixCodelistItemDao->getCodes('List5', $assignedCodes); // ONIX list for these + $templateMgr->assign('identificationCodes', $codes); + } else { + fatalError('Format not in authorized submission'); + } + + return parent::fetch($request, $template, $display); + } + + /** + * Assign form data to user-submitted data. + * + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars([ + 'identificationCodeId', + 'representationId', + 'code', + 'value', + ]); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + parent::execute(...$functionArgs); + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + + $identificationCode = $this->getIdentificationCode(); + $publicationFormat = $publicationFormatDao->getById($this->getData('representationId'), $this->getPublication()->getId()); + + if (!$identificationCode) { + // this is a new code to this published submission + $identificationCode = $identificationCodeDao->newDataObject(); + $existingFormat = false; + if ($publicationFormat != null) { // ensure this format is in this submission + $identificationCode->setPublicationFormatId($publicationFormat->getId()); + } else { + fatalError('This format not in authorized submission context!'); + } + } else { + $existingFormat = true; + if ($publicationFormat->getId() != $identificationCode->getPublicationFormatId()) { + throw new Exception('Invalid format!'); + } + } + + $identificationCode->setCode($this->getData('code')); + $identificationCode->setValue($this->getData('value')); + + if ($existingFormat) { + $identificationCodeDao->updateObject($identificationCode); + $identificationCodeId = $identificationCode->getId(); + } else { + $identificationCodeId = $identificationCodeDao->insertObject($identificationCode); + } + + return $identificationCodeId; + } +} diff --git a/controllers/grid/catalogEntry/form/MarketForm.inc.php b/controllers/grid/catalogEntry/form/MarketForm.inc.php deleted file mode 100644 index 91f006886a4..00000000000 --- a/controllers/grid/catalogEntry/form/MarketForm.inc.php +++ /dev/null @@ -1,277 +0,0 @@ -setSubmission($submission); - $this->setPublication($publication); - $this->setMarket($market); - - // Validation checks for this form - $this->addCheck(new FormValidator($this, 'representationId', 'required', 'grid.catalogEntry.publicationFormatRequired')); - $this->addCheck(new FormValidator($this, 'date', 'required', 'grid.catalogEntry.dateRequired')); - $this->addCheck(new FormValidator($this, 'price', 'required', 'grid.catalogEntry.priceRequired')); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - // - // Getters and Setters - // - /** - * Get the entry - * @return Market - */ - public function getMarket() { - return $this->_market; - } - - /** - * Set the entry - * @param @market Market - */ - public function setMarket($market) { - $this->_market = $market; - } - - /** - * Get the Submission - * @return Submission - */ - public function getSubmission() { - return $this->_submission; - } - - /** - * Set the Submission - * @param Submission - */ - public function setSubmission($submission) { - $this->_submission = $submission; - } - - /** - * Get the Publication - * @return Publication - */ - public function getPublication() { - return $this->_publication; - } - - /** - * Set the Publication - * @param Publication - */ - public function setPublication($publication) { - $this->_publication = $publication; - } - - - // - // Overridden template methods - // - /** - * Initialize form data from the market entry. - */ - public function initData() { - $market = $this->getMarket(); - - if ($market) { - $this->_data = array( - 'marketId' => $market->getId(), - 'countriesIncluded' => $market->getCountriesIncluded(), - 'countriesExcluded' => $market->getCountriesExcluded(), - 'regionsIncluded' => $market->getRegionsIncluded(), - 'regionsExcluded' => $market->getRegionsExcluded(), - 'date' => $market->getDate(), - 'dateFormat' => $market->getDateFormat(), - 'discount' => $market->getDiscount(), - 'dateRole' => $market->getDateRole(), - 'agentId' => $market->getAgentId(), - 'supplierId' => $market->getSupplierId(), - ); - } - } - - /** - * @copydoc Form::fetch() - */ - public function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - $submission = $this->getSubmission(); - $templateMgr->assign('submissionId', $submission->getId()); - $templateMgr->assign('publicationId', $this->getPublication()->getId()); - $market = $this->getMarket(); - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $templateMgr->assign(array( - 'countryCodes' => $onixCodelistItemDao->getCodes('List91'), // countries (CA, US, GB, etc) - 'regionCodes' => $onixCodelistItemDao->getCodes('List49'), // regions (British Columbia, England, etc) - 'publicationDateFormats' => $onixCodelistItemDao->getCodes('List55'), // YYYYMMDD, YYMMDD, etc - 'publicationDateRoles' => $onixCodelistItemDao->getCodes('List163'), - 'currencyCodes' => $onixCodelistItemDao->getCodes('List96'), // GBP, USD, CAD, etc - 'priceTypeCodes' => $onixCodelistItemDao->getCodes('List58'), // without tax, with tax, etc - 'extentTypeCodes' => $onixCodelistItemDao->getCodes('List23'), // word count, FM page count, BM page count, main page count, etc - 'taxRateCodes' => $onixCodelistItemDao->getCodes('List62'), // higher rate, standard rate, zero rate - 'taxTypeCodes' => $onixCodelistItemDao->getCodes('List171'), // VAT, GST - )); - - $availableAgents = DAORegistry::getDAO('RepresentativeDAO')->getAgentsByMonographId($submission->getId()); - $agentOptions = array(); - while ($agent = $availableAgents->next()) { - $agentOptions[$agent->getId()] = $agent->getName(); - } - $templateMgr->assign('availableAgents', $agentOptions); - - $availableSuppliers = DAORegistry::getDAO('RepresentativeDAO')->getSuppliersByMonographId($submission->getId()); - $supplierOptions = array(); - while ($supplier = $availableSuppliers->next()) { - $supplierOptions[$supplier->getId()] = $supplier->getName(); - } - $templateMgr->assign('availableSuppliers', $supplierOptions); - - if ($market) { - $templateMgr->assign(array( - 'marketId' => $market->getId(), - 'countriesIncluded' => $market->getCountriesIncluded(), - 'countriesExcluded' => $market->getCountriesExcluded(), - 'regionsIncluded' => $market->getRegionsIncluded(), - 'regionsExcluded' => $market->getRegionsExcluded(), - 'date' => $market->getDate(), - 'dateRole' => $market->getDateRole(), - 'dateFormat' => $market->getDateFormat(), - 'discount' => $market->getDiscount(), - 'price' => $market->getPrice(), - 'priceTypeCode' => $market->getPriceTypeCode(), - 'currencyCode' => $market->getCurrencyCode() != '' ? $market->getCurrencyCode() : 'CAD', - 'taxRateCode' => $market->getTaxRateCode(), - 'taxTypeCode' => $market->getTaxTypeCode() != '' ? $market->getTaxTypeCode() : '02', - 'agentId' => $market->getAgentId(), - 'supplierId' => $market->getSupplierId(), - )); - - $representationId = $market->getPublicationFormatId(); - } else { // loading a blank form - $representationId = (int) $request->getUserVar('representationId'); - $templateMgr->assign(array( - 'dateFormat' => '20', // YYYYMMDD Onix code as a default - 'dateRole' => '01', // 'Date of Publication' as default - 'currencyCode' => 'CAD', - )); - } - - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); - - if ($publicationFormat) { // the format exists for this submission - $templateMgr->assign('representationId', $representationId); - } else { - fatalError('Format not in authorized submission'); - } - - return parent::fetch($request, $template, $display); - } - - /** - * Assign form data to user-submitted data. - * @see Form::readInputData() - */ - public function readInputData() { - $this->readUserVars(array( - 'marketId', - 'representationId', - 'countriesIncluded', - 'countriesExcluded', - 'regionsIncluded', - 'regionsExcluded', - 'date', - 'dateFormat', - 'dateRole', - 'discount', - 'price', - 'priceTypeCode', - 'currencyCode', - 'taxRateCode', - 'taxTypeCode', - 'agentId', - 'supplierId', - )); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - parent::execute(...$functionArgs); - $marketDao = DAORegistry::getDAO('MarketDAO'); /* @var $marketDao MarketDAO */ - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - - $submission = $this->getSubmission(); - $market = $this->getMarket(); - $publicationFormat = $publicationFormatDao->getById($this->getData('representationId'), $this->getPublication()->getId()); - - if (!$market) { - // this is a new assigned format to this published submission - $market = $marketDao->newDataObject(); - $existingFormat = false; - if ($publicationFormat != null) { // ensure this assigned format is in this submission - $market->setPublicationFormatId($publicationFormat->getId()); - } else { - fatalError('This assigned format not in authorized submission context!'); - } - } else { - $existingFormat = true; - if ($publicationFormat->getId() != $market->getPublicationFormatId()) throw new Exception('Invalid format!'); - } - - $market->setCountriesIncluded($this->getData('countriesIncluded') ? $this->getData('countriesIncluded') : array()); - $market->setCountriesExcluded($this->getData('countriesExcluded') ? $this->getData('countriesExcluded') : array()); - $market->setRegionsIncluded($this->getData('regionsIncluded') ? $this->getData('regionsIncluded') : array()); - $market->setRegionsExcluded($this->getData('regionsExcluded') ? $this->getData('regionsExcluded') : array()); - $market->setDate($this->getData('date')); - $market->setDateFormat($this->getData('dateFormat')); - $market->setDiscount($this->getData('discount')); - $market->setDateRole($this->getData('dateRole')); - $market->setPrice($this->getData('price')); - $market->setPriceTypeCode($this->getData('priceTypeCode')); - $market->setCurrencyCode($this->getData('currencyCode')); - $market->setTaxRateCode($this->getData('taxRateCode')); - $market->setTaxTypeCode($this->getData('taxTypeCode')); - $market->setAgentId($this->getData('agentId')); - $market->setSupplierId($this->getData('supplierId')); - - if ($existingFormat) { - $marketDao->updateObject($market); - $marketId = $market->getId(); - } else { - $marketId = $marketDao->insertObject($market); - } - - return $marketId; - } -} - - diff --git a/controllers/grid/catalogEntry/form/MarketForm.php b/controllers/grid/catalogEntry/form/MarketForm.php new file mode 100644 index 00000000000..9d2dea5562c --- /dev/null +++ b/controllers/grid/catalogEntry/form/MarketForm.php @@ -0,0 +1,316 @@ +setSubmission($submission); + $this->setPublication($publication); + $this->setMarket($market); + + // Validation checks for this form + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'representationId', 'required', 'grid.catalogEntry.publicationFormatRequired')); + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'date', 'required', 'grid.catalogEntry.dateRequired')); + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'price', 'required', 'grid.catalogEntry.priceRequired')); + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + // + // Getters and Setters + // + /** + * Get the entry + * + * @return Market + */ + public function getMarket() + { + return $this->_market; + } + + /** + * Set the entry + * + * @param Market $market + */ + public function setMarket($market) + { + $this->_market = $market; + } + + /** + * Get the Submission + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Set the Submission + * + * @param Submission + */ + public function setSubmission($submission) + { + $this->_submission = $submission; + } + + /** + * Get the Publication + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the Publication + * + * @param Publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + + // + // Overridden template methods + // + /** + * Initialize form data from the market entry. + */ + public function initData() + { + $market = $this->getMarket(); + + if ($market) { + $this->_data = [ + 'marketId' => $market->getId(), + 'countriesIncluded' => $market->getCountriesIncluded(), + 'countriesExcluded' => $market->getCountriesExcluded(), + 'regionsIncluded' => $market->getRegionsIncluded(), + 'regionsExcluded' => $market->getRegionsExcluded(), + 'date' => $market->getDate(), + 'dateFormat' => $market->getDateFormat(), + 'discount' => $market->getDiscount(), + 'dateRole' => $market->getDateRole(), + 'agentId' => $market->getAgentId(), + 'supplierId' => $market->getSupplierId(), + ]; + } + } + + /** + * @copydoc Form::fetch() + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + $submission = $this->getSubmission(); + $templateMgr->assign('submissionId', $submission->getId()); + $templateMgr->assign('publicationId', $this->getPublication()->getId()); + $market = $this->getMarket(); + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $templateMgr->assign([ + 'countryCodes' => $onixCodelistItemDao->getCodes('List91'), // countries (CA, US, GB, etc) + 'regionCodes' => $onixCodelistItemDao->getCodes('List49'), // regions (British Columbia, England, etc) + 'publicationDateFormats' => $onixCodelistItemDao->getCodes('List55'), // YYYYMMDD, YYMMDD, etc + 'publicationDateRoles' => $onixCodelistItemDao->getCodes('List163'), + 'currencyCodes' => $onixCodelistItemDao->getCodes('List96'), // GBP, USD, CAD, etc + 'priceTypeCodes' => $onixCodelistItemDao->getCodes('List58'), // without tax, with tax, etc + 'extentTypeCodes' => $onixCodelistItemDao->getCodes('List23'), // word count, FM page count, BM page count, main page count, etc + 'taxRateCodes' => $onixCodelistItemDao->getCodes('List62'), // higher rate, standard rate, zero rate + 'taxTypeCodes' => $onixCodelistItemDao->getCodes('List171'), // VAT, GST + ]); + + /** @var RepresentativeDAO */ + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); + $availableAgents = $representativeDao->getAgentsByMonographId($submission->getId()); + $agentOptions = []; + while ($agent = $availableAgents->next()) { + $agentOptions[$agent->getId()] = $agent->getName(); + } + $templateMgr->assign('availableAgents', $agentOptions); + + $availableSuppliers = $representativeDao->getSuppliersByMonographId($submission->getId()); + $supplierOptions = []; + while ($supplier = $availableSuppliers->next()) { + $supplierOptions[$supplier->getId()] = $supplier->getName(); + } + $templateMgr->assign('availableSuppliers', $supplierOptions); + + if ($market) { + $templateMgr->assign([ + 'marketId' => $market->getId(), + 'countriesIncluded' => $market->getCountriesIncluded(), + 'countriesExcluded' => $market->getCountriesExcluded(), + 'regionsIncluded' => $market->getRegionsIncluded(), + 'regionsExcluded' => $market->getRegionsExcluded(), + 'date' => $market->getDate(), + 'dateRole' => $market->getDateRole(), + 'dateFormat' => $market->getDateFormat(), + 'discount' => $market->getDiscount(), + 'price' => $market->getPrice(), + 'priceTypeCode' => $market->getPriceTypeCode(), + 'currencyCode' => $market->getCurrencyCode() != '' ? $market->getCurrencyCode() : 'CAD', + 'taxRateCode' => $market->getTaxRateCode(), + 'taxTypeCode' => $market->getTaxTypeCode() != '' ? $market->getTaxTypeCode() : '02', + 'agentId' => $market->getAgentId(), + 'supplierId' => $market->getSupplierId(), + ]); + + $representationId = $market->getPublicationFormatId(); + } else { // loading a blank form + $representationId = (int) $request->getUserVar('representationId'); + $templateMgr->assign([ + 'dateFormat' => '20', // YYYYMMDD Onix code as a default + 'dateRole' => '01', // 'Date of Publication' as default + 'currencyCode' => 'CAD', + ]); + } + + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); + + if ($publicationFormat) { // the format exists for this submission + $templateMgr->assign('representationId', $representationId); + } else { + fatalError('Format not in authorized submission'); + } + + return parent::fetch($request, $template, $display); + } + + /** + * Assign form data to user-submitted data. + * + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars([ + 'marketId', + 'representationId', + 'countriesIncluded', + 'countriesExcluded', + 'regionsIncluded', + 'regionsExcluded', + 'date', + 'dateFormat', + 'dateRole', + 'discount', + 'price', + 'priceTypeCode', + 'currencyCode', + 'taxRateCode', + 'taxTypeCode', + 'agentId', + 'supplierId', + ]); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + parent::execute(...$functionArgs); + $marketDao = DAORegistry::getDAO('MarketDAO'); /** @var MarketDAO $marketDao */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + + $submission = $this->getSubmission(); + $market = $this->getMarket(); + $publicationFormat = $publicationFormatDao->getById($this->getData('representationId'), $this->getPublication()->getId()); + + if (!$market) { + // this is a new assigned format to this published submission + $market = $marketDao->newDataObject(); + $existingFormat = false; + if ($publicationFormat != null) { // ensure this assigned format is in this submission + $market->setPublicationFormatId($publicationFormat->getId()); + } else { + fatalError('This assigned format not in authorized submission context!'); + } + } else { + $existingFormat = true; + if ($publicationFormat->getId() != $market->getPublicationFormatId()) { + throw new Exception('Invalid format!'); + } + } + + $market->setCountriesIncluded($this->getData('countriesIncluded') ? $this->getData('countriesIncluded') : []); + $market->setCountriesExcluded($this->getData('countriesExcluded') ? $this->getData('countriesExcluded') : []); + $market->setRegionsIncluded($this->getData('regionsIncluded') ? $this->getData('regionsIncluded') : []); + $market->setRegionsExcluded($this->getData('regionsExcluded') ? $this->getData('regionsExcluded') : []); + $market->setDate($this->getData('date')); + $market->setDateFormat($this->getData('dateFormat')); + $market->setDiscount($this->getData('discount')); + $market->setDateRole($this->getData('dateRole')); + $market->setPrice($this->getData('price')); + $market->setPriceTypeCode($this->getData('priceTypeCode')); + $market->setCurrencyCode($this->getData('currencyCode')); + $market->setTaxRateCode($this->getData('taxRateCode')); + $market->setTaxTypeCode($this->getData('taxTypeCode')); + $market->setAgentId($this->getData('agentId')); + $market->setSupplierId($this->getData('supplierId')); + + if ($existingFormat) { + $marketDao->updateObject($market); + $marketId = $market->getId(); + } else { + $marketId = $marketDao->insertObject($market); + } + + return $marketId; + } +} diff --git a/controllers/grid/catalogEntry/form/PublicationDateForm.inc.php b/controllers/grid/catalogEntry/form/PublicationDateForm.inc.php deleted file mode 100644 index e13914faf03..00000000000 --- a/controllers/grid/catalogEntry/form/PublicationDateForm.inc.php +++ /dev/null @@ -1,230 +0,0 @@ -setSubmission($submission); - $this->setPublication($publication); - $this->setPublicationDate($publicationDate); - - // Validation checks for this form - $form = $this; - $this->addCheck(new FormValidator($this, 'role', 'required', 'grid.catalogEntry.roleRequired')); - $this->addCheck(new FormValidator($this, 'dateFormat', 'required', 'grid.catalogEntry.dateFormatRequired')); - - $this->addCheck(new FormValidatorCustom( - $this, 'date', 'required', 'grid.catalogEntry.dateRequired', - function($date) use ($form) { - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $dateFormat = $form->getData('dateFormat'); - if (!$dateFormat) return false; - $dateFormats = $onixCodelistItemDao->getCodes('List55'); - $format = $dateFormats[$dateFormat]; - if (stristr($format, 'string') && $date != '') return true; - $format = trim(preg_replace('/\s*\(.*?\)/i', '', $format)); - if (count(str_split($date)) == count(str_split($format))) return true; - return false; - } - )); - - $this->addCheck(new FormValidator($this, 'representationId', 'required', 'grid.catalogEntry.publicationFormatRequired')); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - // - // Getters and Setters - // - /** - * Get the date - * @return PublicationDate - */ - public function getPublicationDate() { - return $this->_publicationDate; - } - - /** - * Set the date - * @param @publicationDate PublicationDate - */ - public function setPublicationDate($publicationDate) { - $this->_publicationDate = $publicationDate; - } - - /** - * Get the Submission - * @return Submission - */ - public function getSubmission() { - return $this->_submission; - } - - /** - * Set the Submission - * @param Submission - */ - public function setSubmission($submission) { - $this->_submission = $submission; - } - - /** - * Get the Publication - * @return Publication - */ - public function getPublication() { - return $this->_publication; - } - - /** - * Set the Publication - * @param Publication - */ - public function setPublication($publication) { - $this->_publication = $publication; - } - - - // - // Overridden template methods - // - /** - * Initialize form data from the publication date. - */ - public function initData() { - $date = $this->getPublicationDate(); - - if ($date) { - $this->_data = array( - 'publicationDateId' => $date->getId(), - 'role' => $date->getRole(), - 'dateFormat' => $date->getDateFormat(), - 'date' => $date->getDate(), - ); - } - } - - /** - * @copydoc Form::fetch() - */ - public function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - $submission = $this->getSubmission(); - $templateMgr->assign('submissionId', $submission->getId()); - $templateMgr->assign('publicationId', $this->getPublication()->getId()); - $publicationDate = $this->getPublicationDate(); - - if ($publicationDate) { - $templateMgr->assign('publicationDateId', $publicationDate->getId()); - $templateMgr->assign('role', $publicationDate->getRole()); - $templateMgr->assign('dateFormat', $publicationDate->getDateFormat()); - $templateMgr->assign('date', $publicationDate->getDate()); - $representationId = $publicationDate->getPublicationFormatId(); - } else { // loading a blank form - $representationId = (int) $request->getUserVar('representationId'); - $templateMgr->assign('dateFormat', '20'); // YYYYMMDD Onix code as a default - } - - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); - - if ($publicationFormat) { // the format exists for this submission - $templateMgr->assign('representationId', $representationId); - $publicationDates = $publicationFormat->getPublicationDates(); - $assignedRoles = array_keys($publicationDates->toAssociativeArray('role')); // currently assigned roles - if ($publicationDate) $assignedRoles = array_diff($assignedRoles, array($publicationDate->getRole())); // allow existing roles to keep their value - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $roles = $onixCodelistItemDao->getCodes('List163', $assignedRoles); // ONIX list for these - $templateMgr->assign('publicationDateRoles', $roles); - - //load our date formats - $dateFormats = $onixCodelistItemDao->getCodes('List55'); - $templateMgr->assign('publicationDateFormats', $dateFormats); - } else { - fatalError('Format not in authorized submission'); - } - - return parent::fetch($request, $template, $display); - } - - /** - * Assign form data to user-submitted data. - * @see Form::readInputData() - */ - public function readInputData() { - $this->readUserVars(array( - 'publicationDateId', - 'representationId', - 'role', - 'dateFormat', - 'date', - )); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - parent::execute(...$functionArgs); - $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /* @var $publicationDateDao PublicationDateDAO */ - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - - $submission = $this->getSubmission(); - $publicationDate = $this->getPublicationDate(); - $publicationFormat = $publicationFormatDao->getById($this->getData('representationId'), $this->getPublication()->getId()); - - if (!$publicationDate) { - // this is a new publication date for this published submission - $publicationDate = $publicationDateDao->newDataObject(); - $existingFormat = false; - if ($publicationFormat != null) { // ensure this assigned format is in this submission - $publicationDate->setPublicationFormatId($publicationFormat->getId()); - } else { - fatalError('This assigned format not in authorized submission context!'); - } - } else { - $existingFormat = true; - if ($publicationFormat->getId() != $publicationDate->getPublicationFormatId()) throw new Exception('Invalid format!'); - } - - $publicationDate->setRole($this->getData('role')); - $publicationDate->setDateFormat($this->getData('dateFormat')); - $publicationDate->setDate($this->getData('date')); - - if ($existingFormat) { - $publicationDateDao->updateObject($publicationDate); - $publicationDateId = $publicationDate->getId(); - } else { - $publicationDateId = $publicationDateDao->insertObject($publicationDate); - } - - return $publicationDateId; - } -} - diff --git a/controllers/grid/catalogEntry/form/PublicationDateForm.php b/controllers/grid/catalogEntry/form/PublicationDateForm.php new file mode 100644 index 00000000000..599e6287fa4 --- /dev/null +++ b/controllers/grid/catalogEntry/form/PublicationDateForm.php @@ -0,0 +1,275 @@ +setSubmission($submission); + $this->setPublication($publication); + $this->setPublicationDate($publicationDate); + + // Validation checks for this form + $form = $this; + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'role', 'required', 'grid.catalogEntry.roleRequired')); + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'dateFormat', 'required', 'grid.catalogEntry.dateFormatRequired')); + + $this->addCheck(new \PKP\form\validation\FormValidatorCustom( + $this, + 'date', + 'required', + 'grid.catalogEntry.dateRequired', + function ($date) use ($form) { + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $dateFormat = $form->getData('dateFormat'); + if (!$dateFormat) { + return false; + } + $dateFormats = $onixCodelistItemDao->getCodes('List55'); + $format = $dateFormats[$dateFormat]; + if (stristr($format, 'string') && $date != '') { + return true; + } + $format = trim(preg_replace('/\s*\(.*?\)/i', '', $format)); + if (count(str_split($date)) == count(str_split($format))) { + return true; + } + return false; + } + )); + + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'representationId', 'required', 'grid.catalogEntry.publicationFormatRequired')); + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + // + // Getters and Setters + // + /** + * Get the date + * + * @return PublicationDate + */ + public function getPublicationDate() + { + return $this->_publicationDate; + } + + /** + * Set the date + * + * @param PublicationDate $publicationDate + */ + public function setPublicationDate($publicationDate) + { + $this->_publicationDate = $publicationDate; + } + + /** + * Get the Submission + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Set the Submission + * + * @param Submission + */ + public function setSubmission($submission) + { + $this->_submission = $submission; + } + + /** + * Get the Publication + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the Publication + * + * @param Publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + + // + // Overridden template methods + // + /** + * Initialize form data from the publication date. + */ + public function initData() + { + $date = $this->getPublicationDate(); + + if ($date) { + $this->_data = [ + 'publicationDateId' => $date->getId(), + 'role' => $date->getRole(), + 'dateFormat' => $date->getDateFormat(), + 'date' => $date->getDate(), + ]; + } + } + + /** + * @copydoc Form::fetch() + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + $submission = $this->getSubmission(); + $templateMgr->assign('submissionId', $submission->getId()); + $templateMgr->assign('publicationId', $this->getPublication()->getId()); + $publicationDate = $this->getPublicationDate(); + + if ($publicationDate) { + $templateMgr->assign('publicationDateId', $publicationDate->getId()); + $templateMgr->assign('role', $publicationDate->getRole()); + $templateMgr->assign('dateFormat', $publicationDate->getDateFormat()); + $templateMgr->assign('date', $publicationDate->getDate()); + $representationId = $publicationDate->getPublicationFormatId(); + } else { // loading a blank form + $representationId = (int) $request->getUserVar('representationId'); + $templateMgr->assign('dateFormat', '20'); // YYYYMMDD Onix code as a default + } + + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); + + if ($publicationFormat) { // the format exists for this submission + $templateMgr->assign('representationId', $representationId); + $publicationDates = $publicationFormat->getPublicationDates(); + $assignedRoles = array_keys($publicationDates->toAssociativeArray('role')); // currently assigned roles + if ($publicationDate) { + $assignedRoles = array_diff($assignedRoles, [$publicationDate->getRole()]); + } // allow existing roles to keep their value + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $roles = $onixCodelistItemDao->getCodes('List163', $assignedRoles); // ONIX list for these + $templateMgr->assign('publicationDateRoles', $roles); + + //load our date formats + $dateFormats = $onixCodelistItemDao->getCodes('List55'); + $templateMgr->assign('publicationDateFormats', $dateFormats); + } else { + fatalError('Format not in authorized submission'); + } + + return parent::fetch($request, $template, $display); + } + + /** + * Assign form data to user-submitted data. + * + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars([ + 'publicationDateId', + 'representationId', + 'role', + 'dateFormat', + 'date', + ]); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + parent::execute(...$functionArgs); + $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /** @var PublicationDateDAO $publicationDateDao */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + + $submission = $this->getSubmission(); + $publicationDate = $this->getPublicationDate(); + $publicationFormat = $publicationFormatDao->getById($this->getData('representationId'), $this->getPublication()->getId()); + + if (!$publicationDate) { + // this is a new publication date for this published submission + $publicationDate = $publicationDateDao->newDataObject(); + $existingFormat = false; + if ($publicationFormat != null) { // ensure this assigned format is in this submission + $publicationDate->setPublicationFormatId($publicationFormat->getId()); + } else { + fatalError('This assigned format not in authorized submission context!'); + } + } else { + $existingFormat = true; + if ($publicationFormat->getId() != $publicationDate->getPublicationFormatId()) { + throw new Exception('Invalid format!'); + } + } + + $publicationDate->setRole($this->getData('role')); + $publicationDate->setDateFormat($this->getData('dateFormat')); + $publicationDate->setDate($this->getData('date')); + + if ($existingFormat) { + $publicationDateDao->updateObject($publicationDate); + $publicationDateId = $publicationDate->getId(); + } else { + $publicationDateId = $publicationDateDao->insertObject($publicationDate); + } + + return $publicationDateId; + } +} diff --git a/controllers/grid/catalogEntry/form/PublicationFormatForm.inc.php b/controllers/grid/catalogEntry/form/PublicationFormatForm.inc.php deleted file mode 100644 index 17030b384f0..00000000000 --- a/controllers/grid/catalogEntry/form/PublicationFormatForm.inc.php +++ /dev/null @@ -1,195 +0,0 @@ -setMonograph($monograph); - $this->setPublicationFormat($publicationFormat); - $this->setPublication($publication); - - // Validation checks for this form - $this->addCheck(new FormValidator($this, 'name', 'required', 'grid.catalogEntry.nameRequired')); - $this->addCheck(new FormValidator($this, 'entryKey', 'required', 'grid.catalogEntry.publicationFormatRequired')); - $this->addCheck(new FormValidatorRegExp($this, 'urlPath', 'optional', 'validator.alpha_dash_period', '/^[a-zA-Z0-9]+([\\.\\-_][a-zA-Z0-9]+)*$/')); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - // - // Getters and Setters - // - /** - * Get the format - * @return PublicationFormat - */ - function getPublicationFormat() { - return $this->_publicationFormat; - } - - /** - * Set the publication format - * @param @format PublicationFormat - */ - function setPublicationFormat($publicationFormat) { - $this->_publicationFormat = $publicationFormat; - } - - /** - * Get the Monograph - * @return Monograph - */ - function getMonograph() { - return $this->_monograph; - } - - /** - * Set the MonographId - * @param Monograph - */ - function setMonograph($monograph) { - $this->_monograph = $monograph; - } - - - /** - * Get the Publication - * @return Publication - */ - function getPublication() { - return $this->_publication; - } - - /** - * Set the PublicationId - * @param Publication - */ - function setPublication($publication) { - $this->_publication = $publication; - } - - - // - // Overridden template methods - // - /** - * Initialize form data from the associated publication format. - */ - function initData() { - $format = $this->getPublicationFormat(); - - if ($format) { - $this->_data = array( - 'entryKey' => $format->getEntryKey(), - 'name' => $format->getName(null), - 'isPhysicalFormat' => $format->getPhysicalFormat()?true:false, - 'remoteURL' => $format->getRemoteURL(), - 'urlPath' => $format->getData('urlPath'), - ); - } else { - $this->setData('entryKey', 'DA'); - } - } - - /** - * @copydoc Form::fetch() - */ - function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $templateMgr->assign('entryKeys', $onixCodelistItemDao->getCodes('List7')); // List7 is for object formats - - $monograph = $this->getMonograph(); - $templateMgr->assign('submissionId', $monograph->getId()); - $publicationFormat = $this->getPublicationFormat(); - if ($publicationFormat != null) { - $templateMgr->assign('representationId', $publicationFormat->getId()); - } - $templateMgr->assign('publicationId', $this->getPublication()->getId()); - return parent::fetch($request, $template, $display); - } - - /** - * Assign form data to user-submitted data. - * @see Form::readInputData() - */ - function readInputData() { - $this->readUserVars(array( - 'name', - 'entryKey', - 'isPhysicalFormat', - 'remoteURL', - 'urlPath', - )); - } - - /** - * Save the assigned format - * @return int Publication format ID - * @see Form::execute() - */ - function execute(...$functionParams) { - parent::execute(...$functionParams); - - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $publicationFormat = $this->getPublicationFormat(); - if (!$publicationFormat) { - // this is a new format to this published submission - $publicationFormat = $publicationFormatDao->newDataObject(); - $publicationFormat->setData('publicationId', $this->getPublication()->getId()); - $existingFormat = false; - } else { - $existingFormat = true; - if ($this->getPublication()->getId() != $publicationFormat->getData('publicationId')) { - throw new Exception('Invalid publication format'); - } - } - - $publicationFormat->setName($this->getData('name')); - $publicationFormat->setEntryKey($this->getData('entryKey')); - $publicationFormat->setPhysicalFormat($this->getData('isPhysicalFormat')?true:false); - $publicationFormat->setRemoteURL($this->getData('remoteURL')); - $publicationFormat->setData('urlPath', $this->getData('urlPath')); - - if ($existingFormat) { - $publicationFormatDao->updateObject($publicationFormat); - $representationId = $publicationFormat->getId(); - } else { - $representationId = $publicationFormatDao->insertObject($publicationFormat); - // log the creation of the format. - import('lib.pkp.classes.log.SubmissionLog'); - import('classes.log.SubmissionEventLogEntry'); - SubmissionLog::logEvent(Application::get()->getRequest(), $this->getMonograph(), SUBMISSION_LOG_PUBLICATION_FORMAT_CREATE, 'submission.event.publicationFormatCreated', array('formatName' => $publicationFormat->getLocalizedName())); - } - - return $representationId; - } -} - - diff --git a/controllers/grid/catalogEntry/form/PublicationFormatForm.php b/controllers/grid/catalogEntry/form/PublicationFormatForm.php new file mode 100644 index 00000000000..1a4a1714e75 --- /dev/null +++ b/controllers/grid/catalogEntry/form/PublicationFormatForm.php @@ -0,0 +1,288 @@ +setMonograph($monograph); + $this->setPublicationFormat($publicationFormat); + $this->setPublication($publication); + + // Validation checks for this form + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'name', 'required', 'grid.catalogEntry.nameRequired')); + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'entryKey', 'required', 'grid.catalogEntry.publicationFormatRequired')); + $this->addCheck(new \PKP\form\validation\FormValidatorRegExp($this, 'urlPath', 'optional', 'validator.alpha_dash_period', '/^[a-zA-Z0-9]+([\\.\\-_][a-zA-Z0-9]+)*$/')); + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + // + // Getters and Setters + // + /** + * Get the format + * + * @return PublicationFormat + */ + public function getPublicationFormat() + { + return $this->_publicationFormat; + } + + /** + * Set the publication format + * + */ + public function setPublicationFormat($publicationFormat) + { + $this->_publicationFormat = $publicationFormat; + } + + /** + * Get the Monograph + * + * @return Submission + */ + public function getMonograph() + { + return $this->_monograph; + } + + /** + * Set the MonographId + * + * @param Submission + */ + public function setMonograph($monograph) + { + $this->_monograph = $monograph; + } + + + /** + * Get the Publication + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the PublicationId + * + * @param Publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + + // + // Overridden template methods + // + /** + * Initialize form data from the associated publication format. + */ + public function initData() + { + $format = $this->getPublicationFormat(); + + if ($format) { + $isbn10 = ''; + $isbn13 = ''; + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + $identificationCodes = $identificationCodeDao->getByPublicationFormatId($format->getId()); + while ($identificationCode = $identificationCodes->next()) { + if ($identificationCode->getCode() == '02') { + $isbn10 = $identificationCode->getValue(); + } + if ($identificationCode->getCode() == '15') { + $isbn13 = $identificationCode->getValue(); + } + } + + $this->_data = [ + 'entryKey' => $format->getEntryKey(), + 'name' => $format->getName(null), + 'isPhysicalFormat' => $format->getPhysicalFormat() ? true : false, + 'isbn10' => $isbn10, + 'isbn13' => $isbn13, + 'remoteURL' => $format->getRemoteURL(), + 'urlPath' => $format->getData('urlPath'), + ]; + } else { + $this->setData('entryKey', 'DA'); + } + } + + /** + * @copydoc Form::fetch() + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $templateMgr->assign('entryKeys', $onixCodelistItemDao->getCodes('List7')); // List7 is for object formats + + $monograph = $this->getMonograph(); + $templateMgr->assign('submissionId', $monograph->getId()); + $publicationFormat = $this->getPublicationFormat(); + if ($publicationFormat != null) { + $templateMgr->assign('representationId', $publicationFormat->getId()); + } + $templateMgr->assign('publicationId', $this->getPublication()->getId()); + return parent::fetch($request, $template, $display); + } + + /** + * Assign form data to user-submitted data. + * + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars([ + 'name', + 'entryKey', + 'isPhysicalFormat', + 'isbn10', + 'isbn13', + 'remoteURL', + 'urlPath', + ]); + } + + /** + * Save the assigned format + * + * @return int Publication format ID + * + * @see Form::execute() + */ + public function execute(...$functionParams) + { + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $publicationFormat = $this->getPublicationFormat(); + if (!$publicationFormat) { + // this is a new format to this published submission + $publicationFormat = $publicationFormatDao->newDataObject(); + $publicationFormat->setData('publicationId', $this->getPublication()->getId()); + $this->setPublicationFormat($publicationFormat); + $existingFormat = false; + } else { + $existingFormat = true; + if ($this->getPublication()->getId() != $publicationFormat->getData('publicationId')) { + throw new Exception('Invalid publication format'); + } + } + + $publicationFormat->setName($this->getData('name')); + $publicationFormat->setEntryKey($this->getData('entryKey')); + $publicationFormat->setPhysicalFormat($this->getData('isPhysicalFormat') ? true : false); + $publicationFormat->setRemoteURL(strlen($remoteUrl = (string) $this->getData('remoteURL')) ? $remoteUrl : null); + $publicationFormat->setData('urlPath', strlen($urlPath = (string) $this->getData('urlPath')) ? $urlPath : null); + parent::execute(...$functionParams); + + if ($existingFormat) { + $publicationFormatDao->updateObject($publicationFormat); + $representationId = $publicationFormat->getId(); + } else { + $representationId = $publicationFormatDao->insertObject($publicationFormat); + } + + // Remove existing ISBN-10 or ISBN-13 code + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + $identificationCodes = $identificationCodeDao->getByPublicationFormatId($representationId); + while ($identificationCode = $identificationCodes->next()) { + if ($identificationCode->getCode() == '02' || $identificationCode->getCode() == '15') { + $identificationCodeDao->deleteById($identificationCode->getId()); + } + } + + // Add new ISBN-10 or ISBN-13 codes + if ($this->getData('isbn10') || $this->getData('isbn13')) { + $isbnValues = []; + if ($this->getData('isbn10')) { + $isbnValues['02'] = $this->getData('isbn10'); + } + if ($this->getData('isbn13')) { + $isbnValues['15'] = $this->getData('isbn13'); + } + + foreach ($isbnValues as $isbnCode => $isbnValue) { + $identificationCode = $identificationCodeDao->newDataObject(); + $identificationCode->setPublicationFormatId($representationId); + $identificationCode->setCode($isbnCode); + $identificationCode->setValue($isbnValue); + $identificationCodeDao->insertObject($identificationCode); + } + } + + if (!$existingFormat) { + // log the creation of the format. + $logEntry = Repo::eventLog()->newDataObject([ + 'assocType' => PKPApplication::ASSOC_TYPE_SUBMISSION, + 'assocId' => $this->getMonograph()->getId(), + 'eventType' => SubmissionEventLogEntry::SUBMISSION_LOG_PUBLICATION_FORMAT_CREATE, + 'userId' => Application::get()->getRequest()->getUser()?->getId(), + 'message' => 'submission.event.publicationFormatCreated', + 'isTranslate' => false, + 'dateLogged' => Core::getCurrentDate(), + 'publicationFormatName' => $publicationFormat->getData('name') + ]); + Repo::eventLog()->add($logEntry); + } + + return $representationId; + } +} diff --git a/controllers/grid/catalogEntry/form/PublicationFormatMetadataForm.inc.php b/controllers/grid/catalogEntry/form/PublicationFormatMetadataForm.inc.php deleted file mode 100644 index 9d728741d33..00000000000 --- a/controllers/grid/catalogEntry/form/PublicationFormatMetadataForm.inc.php +++ /dev/null @@ -1,331 +0,0 @@ -_submission = $submission; - $this->_publication = $publication; - $this->_publicationFormat = $representation; - - if (!$this->_submission || !$this->_publication || !$this->_publicationFormat) { - throw new Exception('PublicationFormatMetadataForm was instantiated without required dependencies.'); - } - - $this->_pubIdPluginHelper = new PKPPubIdPluginHelper(); - - $this->_stageId = $stageId; - $this->_isPhysicalFormat = $isPhysicalFormat; - $this->_remoteURL = $remoteURL; - $this->_formParams = $formParams; - - $this->addCheck(new FormValidator($this, 'productAvailabilityCode', 'required', 'grid.catalogEntry.productAvailabilityRequired')); - $this->addCheck(new FormValidatorRegExp($this, 'directSalesPrice', 'optional', 'grid.catalogEntry.validPriceRequired', '/^[0-9]*(\.[0-9]+)?$/')); - $this->addCheck(new FormValidator($this, 'productCompositionCode', 'required', 'grid.catalogEntry.productCompositionRequired')); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - /** - * @copydoc Form::fetch - */ - public function fetch($request, $template = null, $display = false) { - $publicationFormat = $this->getPublicationFormat(); - $context = $request->getContext(); - - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('submissionId', $this->getSubmission()->getId()); - $templateMgr->assign('publicationId', $this->getPublication()->getId()); - $templateMgr->assign('representationId', (int) $publicationFormat->getId()); - - // included to load format-specific templates - $templateMgr->assign('isPhysicalFormat', (bool) $this->getPhysicalFormat()); - $templateMgr->assign('remoteURL', $this->getRemoteURL()); - - $templateMgr->assign('stageId', $this->getStageId()); - $templateMgr->assign('formParams', $this->getFormParams()); - - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - - // Check if e-commerce is available - $paymentManager = Application::getPaymentManager($context); - if ($paymentManager->isConfigured()) { - $templateMgr->assign('paymentConfigured', true); - $templateMgr->assign('currency', $context->getSetting('currency')); - } - - // get the lists associated with the select elements on these publication format forms. - $codes = array( - 'productCompositionCodes' => 'List2', // single item, multiple item, trade-only, etc - 'measurementUnitCodes' => 'List50', // grams, inches, millimeters - 'weightUnitCodes' => 'List95', // pounds, grams, ounces - 'measurementTypeCodes' => 'List48', // height, width, depth - 'productFormDetailCodes' => 'List175', // refinement of product form (SACD, Mass market (rack) paperback, etc) - 'productAvailabilityCodes' => 'List65', // Available, In Stock, Print On Demand, Not Yet Available, etc - 'technicalProtectionCodes' => 'List144', // None, DRM, Apple DRM, etc - 'returnableIndicatorCodes' => 'List66', // No, not returnable, Yes, full copies only, (required for physical items only) - 'countriesIncludedCodes' => 'List91', // country region codes - ); - - foreach ($codes as $templateVarName => $list) { - $templateMgr->assign($templateVarName, $onixCodelistItemDao->getCodes($list)); - } - - // consider public identifiers - $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true); - $templateMgr->assign('pubIdPlugins', $pubIdPlugins); - $templateMgr->assign('pubObject', $publicationFormat); - - $templateMgr->assign('notificationRequestOptions', array( - NOTIFICATION_LEVEL_NORMAL => array( - NOTIFICATION_TYPE_CONFIGURE_PAYMENT_METHOD => array(ASSOC_TYPE_PRESS, $context->getId()), - ), - NOTIFICATION_LEVEL_TRIVIAL => array() - )); - - return parent::fetch($request, $template, $display); - } - - /** - * Initialize form data for an instance of this form. - */ - public function initData() { - AppLocale::requireComponents( - LOCALE_COMPONENT_APP_COMMON, - LOCALE_COMPONENT_PKP_SUBMISSION, - LOCALE_COMPONENT_APP_SUBMISSION - ); - - $submission = $this->getSubmission(); - $publicationFormat = $this->getPublicationFormat(); - - $this->_data = array( - 'fileSize' => (boolean) $publicationFormat->getFileSize() ? $publicationFormat->getFileSize() : $publicationFormat->getCalculatedFileSize(), - 'override' => (boolean) $publicationFormat->getData('fileSize') ? true : false, - 'frontMatter' => $publicationFormat->getFrontMatter(), - 'backMatter' => $publicationFormat->getBackMatter(), - 'height' => $publicationFormat->getHeight(), - 'heightUnitCode' => $publicationFormat->getHeightUnitCode() != '' ? $publicationFormat->getHeightUnitCode() : 'mm', - 'width' => $publicationFormat->getWidth(), - 'widthUnitCode' => $publicationFormat->getWidthUnitCode() != '' ? $publicationFormat->getWidthUnitCode() : 'mm', - 'thickness' => $publicationFormat->getThickness(), - 'thicknessUnitCode' => $publicationFormat->getThicknessUnitCode() != '' ? $publicationFormat->getThicknessUnitCode() : 'mm', - 'weight' => $publicationFormat->getWeight(), - 'weightUnitCode' => $publicationFormat->getWeightUnitCode() != '' ? $publicationFormat->getWeightUnitCode() : 'gr', - 'productCompositionCode' => $publicationFormat->getProductCompositionCode(), - 'productFormDetailCode' => $publicationFormat->getProductFormDetailCode(), - 'countryManufactureCode' => $publicationFormat->getCountryManufactureCode() != '' ? $publicationFormat->getCountryManufactureCode() : 'CA', - 'imprint' => $publicationFormat->getImprint(), - 'productAvailabilityCode' => $publicationFormat->getProductAvailabilityCode() != '' ? $publicationFormat->getProductAvailabilityCode() : '20', - 'technicalProtectionCode' => $publicationFormat->getTechnicalProtectionCode() != '' ? $publicationFormat->getTechnicalProtectionCode() : '00', - 'returnableIndicatorCode' => $publicationFormat->getReturnableIndicatorCode() != '' ? $publicationFormat->getReturnableIndicatorCode() : 'Y', - // the pubId plugin needs the format object. - 'publicationFormat' => $publicationFormat - ); - - // initialize the pubId fields. - $pubIdPluginHelper = $this->_getPubIdPluginHelper(); - $pubIdPluginHelper->init($submission->getContextId(), $this, $publicationFormat); - $pubIdPluginHelper->setLinkActions($submission->getContextId(), $this, $publicationFormat); - - } - - /** - * Assign form data to user-submitted data. - */ - public function readInputData() { - $submission = $this->getSubmission(); - $this->readUserVars(array( - 'directSalesPrice', - 'fileSize', - 'override', - 'frontMatter', - 'backMatter', - 'height', - 'heightUnitCode', - 'width', - 'widthUnitCode', - 'thickness', - 'thicknessUnitCode', - 'weight', - 'weightUnitCode', - 'productCompositionCode', - 'productFormDetailCode', - 'countryManufactureCode', - 'imprint', - 'productAvailabilityCode', - 'technicalProtectionCode', - 'returnableIndicatorCode', - )); - - // consider the additional field names from the public identifer plugins - $pubIdPluginHelper = $this->_getPubIdPluginHelper(); - $pubIdPluginHelper->readInputData($submission->getContextId(), $this); - - } - - /** - * @copydoc Form::validate() - */ - public function validate($callHooks = true) { - $submission = $this->getSubmission(); - $publicationFormat = $this->getPublicationFormat(); - $pubIdPluginHelper = $this->_getPubIdPluginHelper(); - $pubIdPluginHelper->validate($submission->getContextId(), $this, $publicationFormat); - return parent::validate($callHooks); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - parent::execute(...$functionArgs); - - $submission = $this->getSubmission(); - $publicationFormat = $this->getPublicationFormat(); - - // populate the published submission with the cataloging metadata - $publicationFormat->setFileSize($this->getData('override') ? $this->getData('fileSize'):null); - $publicationFormat->setFrontMatter($this->getData('frontMatter')); - $publicationFormat->setBackMatter($this->getData('backMatter')); - $publicationFormat->setHeight($this->getData('height')); - $publicationFormat->setHeightUnitCode($this->getData('heightUnitCode')); - $publicationFormat->setWidth($this->getData('width')); - $publicationFormat->setWidthUnitCode($this->getData('widthUnitCode')); - $publicationFormat->setThickness($this->getData('thickness')); - $publicationFormat->setThicknessUnitCode($this->getData('thicknessUnitCode')); - $publicationFormat->setWeight($this->getData('weight')); - $publicationFormat->setWeightUnitCode($this->getData('weightUnitCode')); - $publicationFormat->setProductCompositionCode($this->getData('productCompositionCode')); - $publicationFormat->setProductFormDetailCode($this->getData('productFormDetailCode')); - $publicationFormat->setCountryManufactureCode($this->getData('countryManufactureCode')); - $publicationFormat->setImprint($this->getData('imprint')); - $publicationFormat->setProductAvailabilityCode($this->getData('productAvailabilityCode')); - $publicationFormat->setTechnicalProtectionCode($this->getData('technicalProtectionCode')); - $publicationFormat->setReturnableIndicatorCode($this->getData('returnableIndicatorCode')); - - // consider the additional field names from the public identifer plugins - $pubIdPluginHelper = $this->_getPubIdPluginHelper(); - $pubIdPluginHelper->execute($submission->getContextId(), $this, $publicationFormat); - - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $publicationFormatDao->updateObject($publicationFormat); - } - - // - // Getters and Setters - // - /** - * Get the Submission - * @return Submission - */ - public function getSubmission() { - return $this->_submission; - } - - /** - * Get the Publication - * @return Publication - */ - public function getPublication() { - return $this->_publication; - } - - /** - * Get the stage id - * @return int - */ - public function getStageId() { - return $this->_stageId; - } - - /** - * Get physical format setting - * @return bool - */ - public function getPhysicalFormat() { - return $this->_isPhysicalFormat; - } - - /** - * Get the remote URL - * @return string - */ - public function getRemoteURL() { - return $this->_remoteURL; - } - - /** - * Get the publication format - * @return PublicationFormat - */ - public function getPublicationFormat() { - return $this->_publicationFormat; - } - - /** - * Get the extra form parameters. - */ - public function getFormParams() { - return $this->_formParams; - } - - /** - * returns the PKPPubIdPluginHelper associated with this form. - * @return PKPPubIdPluginHelper - */ - public function _getPubIdPluginHelper() { - return $this->_pubIdPluginHelper; - } -} - diff --git a/controllers/grid/catalogEntry/form/PublicationFormatMetadataForm.php b/controllers/grid/catalogEntry/form/PublicationFormatMetadataForm.php new file mode 100644 index 00000000000..ae6ccad2072 --- /dev/null +++ b/controllers/grid/catalogEntry/form/PublicationFormatMetadataForm.php @@ -0,0 +1,361 @@ +_submission = $submission; + $this->_publication = $publication; + $this->_publicationFormat = $representation; + + if (!$this->_submission || !$this->_publication || !$this->_publicationFormat) { + throw new Exception('PublicationFormatMetadataForm was instantiated without required dependencies.'); + } + + $this->_pubIdPluginHelper = new PKPPubIdPluginHelper(); + + $this->_stageId = $stageId; + $this->_isPhysicalFormat = $isPhysicalFormat; + $this->_remoteURL = $remoteURL; + $this->_formParams = $formParams; + + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'productAvailabilityCode', 'required', 'grid.catalogEntry.productAvailabilityRequired')); + $this->addCheck(new \PKP\form\validation\FormValidatorRegExp($this, 'directSalesPrice', 'optional', 'grid.catalogEntry.validPriceRequired', '/^[0-9]*(\.[0-9]+)?$/')); + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'productCompositionCode', 'required', 'grid.catalogEntry.productCompositionRequired')); + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + /** + * @copydoc Form::fetch + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $publicationFormat = $this->getPublicationFormat(); + $context = $request->getContext(); + + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign('submissionId', $this->getSubmission()->getId()); + $templateMgr->assign('publicationId', $this->getPublication()->getId()); + $templateMgr->assign('representationId', (int) $publicationFormat->getId()); + + // included to load format-specific templates + $templateMgr->assign('isPhysicalFormat', (bool) $this->getPhysicalFormat()); + $templateMgr->assign('remoteURL', $this->getRemoteURL()); + + $templateMgr->assign('stageId', $this->getStageId()); + $templateMgr->assign('formParams', $this->getFormParams()); + + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + + // Check if e-commerce is available + $paymentManager = Application::getPaymentManager($context); + if ($paymentManager->isConfigured()) { + $templateMgr->assign('paymentConfigured', true); + $templateMgr->assign('currency', $context->getSetting('currency')); + } + + // get the lists associated with the select elements on these publication format forms. + $codes = [ + 'productCompositionCodes' => 'List2', // single item, multiple item, trade-only, etc + 'measurementUnitCodes' => 'List50', // grams, inches, millimeters + 'weightUnitCodes' => 'List95', // pounds, grams, ounces + 'measurementTypeCodes' => 'List48', // height, width, depth + 'productFormDetailCodes' => 'List175', // refinement of product form (SACD, Mass market (rack) paperback, etc) + 'productAvailabilityCodes' => 'List65', // Available, In Stock, Print On Demand, Not Yet Available, etc + 'technicalProtectionCodes' => 'List144', // None, DRM, Apple DRM, etc + 'returnableIndicatorCodes' => 'List66', // No, not returnable, Yes, full copies only, (required for physical items only) + 'countriesIncludedCodes' => 'List91', // country region codes + ]; + + foreach ($codes as $templateVarName => $list) { + $templateMgr->assign($templateVarName, $onixCodelistItemDao->getCodes($list)); + } + + // consider public identifiers + $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true); + $templateMgr->assign('pubIdPlugins', $pubIdPlugins); + $templateMgr->assign('pubObject', $publicationFormat); + + $templateMgr->assign('notificationRequestOptions', [ + Notification::NOTIFICATION_LEVEL_NORMAL => [ + Notification::NOTIFICATION_TYPE_CONFIGURE_PAYMENT_METHOD => [Application::ASSOC_TYPE_PRESS, $context->getId()], + ], + Notification::NOTIFICATION_LEVEL_TRIVIAL => [] + ]); + + return parent::fetch($request, $template, $display); + } + + /** + * Initialize form data for an instance of this form. + */ + public function initData() + { + $submission = $this->getSubmission(); + $publicationFormat = $this->getPublicationFormat(); + + $this->_data = [ + 'fileSize' => (bool) $publicationFormat->getFileSize() ? $publicationFormat->getFileSize() : $publicationFormat->getCalculatedFileSize(), + 'override' => (bool) $publicationFormat->getData('fileSize') ? true : false, + 'frontMatter' => $publicationFormat->getFrontMatter(), + 'backMatter' => $publicationFormat->getBackMatter(), + 'height' => $publicationFormat->getHeight(), + 'heightUnitCode' => $publicationFormat->getHeightUnitCode() != '' ? $publicationFormat->getHeightUnitCode() : 'mm', + 'width' => $publicationFormat->getWidth(), + 'widthUnitCode' => $publicationFormat->getWidthUnitCode() != '' ? $publicationFormat->getWidthUnitCode() : 'mm', + 'thickness' => $publicationFormat->getThickness(), + 'thicknessUnitCode' => $publicationFormat->getThicknessUnitCode() != '' ? $publicationFormat->getThicknessUnitCode() : 'mm', + 'weight' => $publicationFormat->getWeight(), + 'weightUnitCode' => $publicationFormat->getWeightUnitCode() != '' ? $publicationFormat->getWeightUnitCode() : 'gr', + 'productCompositionCode' => $publicationFormat->getProductCompositionCode(), + 'productFormDetailCode' => $publicationFormat->getProductFormDetailCode(), + 'countryManufactureCode' => $publicationFormat->getCountryManufactureCode() != '' ? $publicationFormat->getCountryManufactureCode() : 'CA', + 'imprint' => $publicationFormat->getImprint(), + 'productAvailabilityCode' => $publicationFormat->getProductAvailabilityCode() != '' ? $publicationFormat->getProductAvailabilityCode() : '20', + 'technicalProtectionCode' => $publicationFormat->getTechnicalProtectionCode() != '' ? $publicationFormat->getTechnicalProtectionCode() : '00', + 'returnableIndicatorCode' => $publicationFormat->getReturnableIndicatorCode() != '' ? $publicationFormat->getReturnableIndicatorCode() : 'Y', + // the pubId plugin needs the format object. + 'publicationFormat' => $publicationFormat + ]; + + // initialize the pubId fields. + $pubIdPluginHelper = $this->_getPubIdPluginHelper(); + $pubIdPluginHelper->init($submission->getContextId(), $this, $publicationFormat); + $pubIdPluginHelper->setLinkActions($submission->getContextId(), $this, $publicationFormat); + } + + /** + * Assign form data to user-submitted data. + */ + public function readInputData() + { + $submission = $this->getSubmission(); + $this->readUserVars([ + 'directSalesPrice', + 'fileSize', + 'override', + 'frontMatter', + 'backMatter', + 'height', + 'heightUnitCode', + 'width', + 'widthUnitCode', + 'thickness', + 'thicknessUnitCode', + 'weight', + 'weightUnitCode', + 'productCompositionCode', + 'productFormDetailCode', + 'countryManufactureCode', + 'imprint', + 'productAvailabilityCode', + 'technicalProtectionCode', + 'returnableIndicatorCode', + ]); + + // consider the additional field names from the public identifier plugins + $pubIdPluginHelper = $this->_getPubIdPluginHelper(); + $pubIdPluginHelper->readInputData($submission->getContextId(), $this); + } + + /** + * @copydoc Form::validate() + */ + public function validate($callHooks = true) + { + $submission = $this->getSubmission(); + $publicationFormat = $this->getPublicationFormat(); + $pubIdPluginHelper = $this->_getPubIdPluginHelper(); + $pubIdPluginHelper->validate($submission->getContextId(), $this, $publicationFormat); + return parent::validate($callHooks); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + parent::execute(...$functionArgs); + + $submission = $this->getSubmission(); + $publicationFormat = $this->getPublicationFormat(); + + // populate the published submission with the cataloging metadata + $publicationFormat->setFileSize($this->getData('override') ? $this->getData('fileSize') : null); + $publicationFormat->setFrontMatter($this->getData('frontMatter')); + $publicationFormat->setBackMatter($this->getData('backMatter')); + $publicationFormat->setHeight($this->getData('height')); + $publicationFormat->setHeightUnitCode($this->getData('heightUnitCode')); + $publicationFormat->setWidth($this->getData('width')); + $publicationFormat->setWidthUnitCode($this->getData('widthUnitCode')); + $publicationFormat->setThickness($this->getData('thickness')); + $publicationFormat->setThicknessUnitCode($this->getData('thicknessUnitCode')); + $publicationFormat->setWeight($this->getData('weight')); + $publicationFormat->setWeightUnitCode($this->getData('weightUnitCode')); + $publicationFormat->setProductCompositionCode($this->getData('productCompositionCode')); + $publicationFormat->setProductFormDetailCode($this->getData('productFormDetailCode')); + $publicationFormat->setCountryManufactureCode($this->getData('countryManufactureCode')); + $publicationFormat->setImprint($this->getData('imprint')); + $publicationFormat->setProductAvailabilityCode($this->getData('productAvailabilityCode')); + $publicationFormat->setTechnicalProtectionCode($this->getData('technicalProtectionCode')); + $publicationFormat->setReturnableIndicatorCode($this->getData('returnableIndicatorCode')); + + // consider the additional field names from the public identifier plugins + $pubIdPluginHelper = $this->_getPubIdPluginHelper(); + $pubIdPluginHelper->execute($submission->getContextId(), $this, $publicationFormat); + + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $publicationFormatDao->updateObject($publicationFormat); + } + + // + // Getters and Setters + // + /** + * Get the Submission + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Get the Publication + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Get the stage id + * + * @return int + */ + public function getStageId() + { + return $this->_stageId; + } + + /** + * Get physical format setting + * + * @return bool + */ + public function getPhysicalFormat() + { + return $this->_isPhysicalFormat; + } + + /** + * Get the remote URL + * + * @return string + */ + public function getRemoteURL() + { + return $this->_remoteURL; + } + + /** + * Get the publication format + * + * @return PublicationFormat + */ + public function getPublicationFormat() + { + return $this->_publicationFormat; + } + + /** + * Get the extra form parameters. + */ + public function getFormParams() + { + return $this->_formParams; + } + + /** + * returns the PKPPubIdPluginHelper associated with this form. + * + * @return PKPPubIdPluginHelper + */ + public function _getPubIdPluginHelper() + { + return $this->_pubIdPluginHelper; + } +} diff --git a/controllers/grid/catalogEntry/form/RepresentativeForm.inc.php b/controllers/grid/catalogEntry/form/RepresentativeForm.inc.php deleted file mode 100644 index fd58e818348..00000000000 --- a/controllers/grid/catalogEntry/form/RepresentativeForm.inc.php +++ /dev/null @@ -1,206 +0,0 @@ -setMonograph($monograph); - $this->setRepresentative($representative); - - // Validation checks for this form - $form = $this; - $this->addCheck(new FormValidatorCustom( - $this, 'isSupplier', 'required', 'grid.catalogEntry.roleRequired', - function($isSupplier) use ($form) { - $request = Application::get()->getRequest(); - $agentRole = $request->getUserVar('agentRole'); - $supplierRole = $request->getUserVar('supplierRole'); - $onixDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixDao ONIXCodelistItemDAO */ - return (!$isSupplier && $onixDao->codeExistsInList($agentRole, 'List69')) || ($isSupplier && $onixDao->codeExistsInList($supplierRole, 'List93')); - } - )); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - // - // Getters and Setters - // - /** - * Get the representative - * @return Representative - */ - public function &getRepresentative() { - return $this->_representative; - } - - /** - * Set the representative - * @param @representative Representative - */ - public function setRepresentative($representative) { - $this->_representative = $representative; - } - - /** - * Get the Monograph - * @return Monograph - */ - public function getMonograph() { - return $this->_monograph; - } - - /** - * Set the Monograph - * @param Monograph - */ - public function setMonograph($monograph) { - $this->_monograph = $monograph; - } - - - // - // Overridden template methods - // - /** - * Initialize form data from the representative entry. - */ - public function initData() { - $representative = $this->getRepresentative(); - - if ($representative) { - $this->_data = array( - 'representativeId' => $representative->getId(), - 'role' => $representative->getRole(), - 'representativeIdType' => $representative->getRepresentativeIdType(), - 'representativeIdValue' => $representative->getRepresentativeIdValue(), - 'name' => $representative->getName(), - 'phone' => $representative->getPhone(), - 'email' => $representative->getEmail(), - 'url' =>$representative->getUrl(), - 'isSupplier' => $representative->getIsSupplier(), - ); - } - } - - /** - * @copydoc Form::fetch() - */ - public function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - - $monograph = $this->getMonograph(); - $templateMgr->assign('submissionId', $monograph->getId()); - $representative = $this->getRepresentative(); - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $templateMgr->assign(array( - 'idTypeCodes' => $onixCodelistItemDao->getCodes('List92'), // GLN, etc - 'agentRoleCodes' => $onixCodelistItemDao->getCodes('List69'), // Sales Agent, etc - 'supplierRoleCodes' => $onixCodelistItemDao->getCodes('List93'), // wholesaler, publisher to retailer, etc - 'isSupplier' => true, - )); // default to 'supplier' on the form. - - if ($representative) $templateMgr->assign(array( - 'representativeId' => $representative->getId(), - 'role' => $representative->getRole(), - 'representativeIdType' => $representative->getRepresentativeIdType(), - 'representativeIdValue' => $representative->getRepresentativeIdValue(), - 'name' => $representative->getName(), - 'phone' => $representative->getPhone(), - 'email' => $representative->getEmail(), - 'url' => $representative->getUrl(), - 'isSupplier' => $representative->getIsSupplier() ? true : false, - )); - else $templateMgr->assign('representativeIdType', '06'); // pre-populate new forms with GLN as it is recommended - - return parent::fetch($request, $template, $display); - } - - /** - * Assign form data to user-submitted data. - * @see Form::readInputData() - */ - public function readInputData() { - $this->readUserVars(array( - 'representativeId', - 'agentRole', - 'supplierRole', - 'representativeIdType', - 'representativeIdValue', - 'name', - 'phone', - 'email', - 'url', - 'isSupplier', - )); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - parent::execute(...$functionArgs); - $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /* @var $representativeDao RepresentativeDAO */ - $monograph = $this->getMonograph(); - $representative = $this->getRepresentative(); - - if (!$representative) { - // this is a new representative for this monograph - $representative = $representativeDao->newDataObject(); - $representative->setMonographId($monograph->getId()); - $existingRepresentative = false; - - } else { - $existingRepresentative = true; - // verify that this representative is in this monograph's context - if ($representativeDao->getById($representative->getId(), $monograph->getId()) == null) fatalError('Invalid representative!'); - } - - if ($this->getData('isSupplier')) { // supplier - $representative->setRole($this->getData('supplierRole')); - } else { - $representative->setRole($this->getData('agentRole')); - } - - $representative->setRepresentativeIdType($this->getData('representativeIdType')); - $representative->setRepresentativeIdValue($this->getData('representativeIdValue')); - $representative->setName($this->getData('name')); - $representative->setPhone($this->getData('phone')); - $representative->setEmail($this->getData('email')); - $representative->setUrl($this->getData('url')); - $representative->setIsSupplier($this->getData('isSupplier') ? true : false); - - if ($existingRepresentative) { - $representativeDao->updateObject($representative); - $representativeId = $representative->getId(); - } else { - $representativeId = $representativeDao->insertObject($representative); - } - - return $representativeId; - } -} - diff --git a/controllers/grid/catalogEntry/form/RepresentativeForm.php b/controllers/grid/catalogEntry/form/RepresentativeForm.php new file mode 100644 index 00000000000..d88db70743b --- /dev/null +++ b/controllers/grid/catalogEntry/form/RepresentativeForm.php @@ -0,0 +1,239 @@ +setMonograph($monograph); + $this->setRepresentative($representative); + + // Validation checks for this form + $form = $this; + $this->addCheck(new \PKP\form\validation\FormValidatorCustom( + $this, + 'isSupplier', + 'required', + 'grid.catalogEntry.roleRequired', + function ($isSupplier) use ($form) { + $request = Application::get()->getRequest(); + $agentRole = $request->getUserVar('agentRole'); + $supplierRole = $request->getUserVar('supplierRole'); + $onixDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixDao */ + return (!$isSupplier && $onixDao->codeExistsInList($agentRole, 'List69')) || ($isSupplier && $onixDao->codeExistsInList($supplierRole, 'List93')); + } + )); + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + // + // Getters and Setters + // + /** + * Get the representative + * + * @return Representative + */ + public function &getRepresentative() + { + return $this->_representative; + } + + /** + * Set the representative + * + * @param Representative $representative + */ + public function setRepresentative($representative) + { + $this->_representative = $representative; + } + + /** + * Get the Monograph + * + * @return Submission + */ + public function getMonograph() + { + return $this->_monograph; + } + + /** + * Set the Monograph + * + * @param Submission + */ + public function setMonograph($monograph) + { + $this->_monograph = $monograph; + } + + + // + // Overridden template methods + // + /** + * Initialize form data from the representative entry. + */ + public function initData() + { + $representative = $this->getRepresentative(); + + if ($representative) { + $this->_data = [ + 'representativeId' => $representative->getId(), + 'role' => $representative->getRole(), + 'representativeIdType' => $representative->getRepresentativeIdType(), + 'representativeIdValue' => $representative->getRepresentativeIdValue(), + 'name' => $representative->getName(), + 'phone' => $representative->getPhone(), + 'email' => $representative->getEmail(), + 'url' => $representative->getUrl(), + 'isSupplier' => $representative->getIsSupplier(), + ]; + } + } + + /** + * @copydoc Form::fetch() + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + + $monograph = $this->getMonograph(); + $templateMgr->assign('submissionId', $monograph->getId()); + $representative = $this->getRepresentative(); + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $templateMgr->assign([ + 'idTypeCodes' => $onixCodelistItemDao->getCodes('List92'), // GLN, etc + 'agentRoleCodes' => $onixCodelistItemDao->getCodes('List69'), // Sales Agent, etc + 'supplierRoleCodes' => $onixCodelistItemDao->getCodes('List93'), // wholesaler, publisher to retailer, etc + 'isSupplier' => true, + ]); // default to 'supplier' on the form. + + if ($representative) { + $templateMgr->assign([ + 'representativeId' => $representative->getId(), + 'role' => $representative->getRole(), + 'representativeIdType' => $representative->getRepresentativeIdType(), + 'representativeIdValue' => $representative->getRepresentativeIdValue(), + 'name' => $representative->getName(), + 'phone' => $representative->getPhone(), + 'email' => $representative->getEmail(), + 'url' => $representative->getUrl(), + 'isSupplier' => $representative->getIsSupplier() ? true : false, + ]); + } else { + $templateMgr->assign('representativeIdType', '06'); + } // pre-populate new forms with GLN as it is recommended + + return parent::fetch($request, $template, $display); + } + + /** + * Assign form data to user-submitted data. + * + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars([ + 'representativeId', + 'agentRole', + 'supplierRole', + 'representativeIdType', + 'representativeIdValue', + 'name', + 'phone', + 'email', + 'url', + 'isSupplier', + ]); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + parent::execute(...$functionArgs); + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /** @var RepresentativeDAO $representativeDao */ + $monograph = $this->getMonograph(); + $representative = $this->getRepresentative(); + + if (!$representative) { + // this is a new representative for this monograph + $representative = $representativeDao->newDataObject(); + $representative->setMonographId($monograph->getId()); + $existingRepresentative = false; + } else { + $existingRepresentative = true; + // verify that this representative is in this monograph's context + if ($representativeDao->getById($representative->getId(), $monograph->getId()) == null) { + fatalError('Invalid representative!'); + } + } + + if ($this->getData('isSupplier')) { // supplier + $representative->setRole($this->getData('supplierRole')); + } else { + $representative->setRole($this->getData('agentRole')); + } + + $representative->setRepresentativeIdType($this->getData('representativeIdType')); + $representative->setRepresentativeIdValue($this->getData('representativeIdValue')); + $representative->setName($this->getData('name')); + $representative->setPhone($this->getData('phone')); + $representative->setEmail($this->getData('email')); + $representative->setUrl($this->getData('url')); + $representative->setIsSupplier($this->getData('isSupplier') ? true : false); + + if ($existingRepresentative) { + $representativeDao->updateObject($representative); + $representativeId = $representative->getId(); + } else { + $representativeId = $representativeDao->insertObject($representative); + } + + return $representativeId; + } +} diff --git a/controllers/grid/catalogEntry/form/SalesRightsForm.inc.php b/controllers/grid/catalogEntry/form/SalesRightsForm.inc.php deleted file mode 100644 index 42c6f39fe72..00000000000 --- a/controllers/grid/catalogEntry/form/SalesRightsForm.inc.php +++ /dev/null @@ -1,233 +0,0 @@ -setSubmission($submission); - $this->setPublication($publication); - $this->setSalesRights($salesRights); - - // Validation checks for this form - $form = $this; - $this->addCheck(new FormValidator($this, 'type', 'required', 'grid.catalogEntry.typeRequired')); - $this->addCheck(new FormValidator($this, 'representationId', 'required', 'grid.catalogEntry.publicationFormatRequired')); - $this->addCheck(new FormValidatorCustom( - $this, 'ROWSetting', 'optional', 'grid.catalogEntry.oneROWPerFormat', - function($ROWSetting) use ($form, $salesRights) { - $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /* @var $salesRightsDao SalesRightsDAO */ - $pubFormatId = $form->getData('representationId'); - return $ROWSetting == '' || $salesRightsDao->getROWByPublicationFormatId($pubFormatId) == null || - ($salesRights != null && $salesRightsDao->getROWByPublicationFormatId($pubFormatId)->getId() == $salesRights->getId()); - } - )); - - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - // - // Getters and Setters - // - /** - * Get the entry - * @return SalesRights - */ - public function getSalesRights() { - return $this->_salesRights; - } - - /** - * Set the entry - * @param @salesRights SalesRights - */ - public function setSalesRights($salesRights) { - $this->_salesRights = $salesRights; - } - - /** - * Get the Submission - * @return Submission - */ - public function getSubmission() { - return $this->_submission; - } - - /** - * Set the Submission - * @param Submission - */ - public function setSubmission($submission) { - $this->_submission = $submission; - } - - /** - * Get the Publication - * @return Publication - */ - public function getPublication() { - return $this->_publication; - } - - /** - * Set the Publication - * @param Publication - */ - public function setPublication($publication) { - $this->_publication = $publication; - } - - - // - // Overridden template methods - // - /** - * Initialize form data from the sales rights entry. - */ - public function initData() { - $salesRights = $this->getSalesRights(); - - if ($salesRights) { - $this->_data = array( - 'salesRightsId' => $salesRights->getId(), - 'type' => $salesRights->getType(), - 'ROWSetting' => $salesRights->getROWSetting(), - 'countriesIncluded' => $salesRights->getCountriesIncluded(), - 'countriesExcluded' => $salesRights->getCountriesExcluded(), - 'regionsIncluded' => $salesRights->getRegionsIncluded(), - 'regionsExcluded' => $salesRights->getRegionsExcluded(), - ); - } - } - - /** - * @copydoc Form::fetch() - */ - public function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - $submission = $this->getSubmission(); - $templateMgr->assign('submissionId', $submission->getId()); - $templateMgr->assign('publicationId', $this->getPublication()->getId()); - $salesRights = $this->getSalesRights(); - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - $templateMgr->assign('countryCodes', $onixCodelistItemDao->getCodes('List91')); // countries (CA, US, GB, etc) - $templateMgr->assign('regionCodes', $onixCodelistItemDao->getCodes('List49')); // regions (British Columbia, England, etc) - - if ($salesRights) { - $templateMgr->assign('salesRightsId', $salesRights->getId()); - $templateMgr->assign('type', $salesRights->getType()); - $templateMgr->assign('ROWSetting', $salesRights->getROWSetting()); - $templateMgr->assign('countriesIncluded', $salesRights->getCountriesIncluded()); - $templateMgr->assign('countriesExcluded', $salesRights->getCountriesExcluded()); - $templateMgr->assign('regionsIncluded', $salesRights->getRegionsIncluded()); - $templateMgr->assign('regionsExcluded', $salesRights->getRegionsExcluded()); - - $representationId = $salesRights->getPublicationFormatId(); - } else { // loading a blank form - $representationId = (int) $request->getUserVar('representationId'); - } - - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); - - if ($publicationFormat) { // the format exists for this submission - $templateMgr->assign('representationId', $representationId); - // SalesRightsType values are not normally used more than once per PublishingDetail block, so filter used ones out. - $assignedSalesRights = $publicationFormat->getSalesRights(); - $assignedTypes = array_keys($assignedSalesRights->toAssociativeArray('type')); // currently assigned types - - if ($salesRights) $assignedTypes = array_diff($assignedTypes, array($salesRights->getType())); // allow existing codes to keep their value - - $types = $onixCodelistItemDao->getCodes('List46', $assignedTypes); // ONIX list for these - $templateMgr->assign('salesRights', $types); - } else { - fatalError('Format not in authorized submission'); - } - - return parent::fetch($request, $template, $display); - } - - /** - * Assign form data to user-submitted data. - * @see Form::readInputData() - */ - public function readInputData() { - $this->readUserVars(array( - 'salesRightsId', - 'representationId', - 'type', - 'ROWSetting', - 'countriesIncluded', - 'countriesExcluded', - 'regionsIncluded', - 'regionsExcluded', - )); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - parent::execute(...$functionArgs); - $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /* @var $salesRightsDao SalesRightsDAO */ - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - - $submission = $this->getSubmission(); - $salesRights = $this->getSalesRights(); - $publicationFormat = $publicationFormatDao->getById($this->getData('representationId'), $this->getPublication()->getId()); - - if (!$salesRights) { - // this is a new assigned format to this published submission - $salesRights = $salesRightsDao->newDataObject(); - $existingFormat = false; - if ($publicationFormat != null) { // ensure this assigned format is in this submission - $salesRights->setPublicationFormatId($publicationFormat->getId()); - } else { - fatalError('This assigned format not in authorized submission context!'); - } - } else { - $existingFormat = true; - if ($publicationFormat->getId() != $salesRights->getPublicationFormatId()) throw new Exception('Invalid format!'); - } - - $salesRights->setType($this->getData('type')); - $salesRights->setROWSetting($this->getData('ROWSetting')?true:false); - $salesRights->setCountriesIncluded($this->getData('countriesIncluded') ? $this->getData('countriesIncluded') : array()); - $salesRights->setCountriesExcluded($this->getData('countriesExcluded') ? $this->getData('countriesExcluded') : array()); - $salesRights->setRegionsIncluded($this->getData('regionsIncluded') ? $this->getData('regionsIncluded') : array()); - $salesRights->setRegionsExcluded($this->getData('regionsExcluded') ? $this->getData('regionsExcluded') : array()); - - if ($existingFormat) { - $salesRightsDao->updateObject($salesRights); - $salesRightsId = $salesRights->getId(); - } else { - $salesRightsId = $salesRightsDao->insertObject($salesRights); - } - - return $salesRightsId; - } -} - diff --git a/controllers/grid/catalogEntry/form/SalesRightsForm.php b/controllers/grid/catalogEntry/form/SalesRightsForm.php new file mode 100644 index 00000000000..dd18e48de3a --- /dev/null +++ b/controllers/grid/catalogEntry/form/SalesRightsForm.php @@ -0,0 +1,275 @@ +setSubmission($submission); + $this->setPublication($publication); + $this->setSalesRights($salesRights); + + // Validation checks for this form + $form = $this; + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'type', 'required', 'grid.catalogEntry.typeRequired')); + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'representationId', 'required', 'grid.catalogEntry.publicationFormatRequired')); + $this->addCheck(new \PKP\form\validation\FormValidatorCustom( + $this, + 'ROWSetting', + 'optional', + 'grid.catalogEntry.oneROWPerFormat', + function ($ROWSetting) use ($form, $salesRights) { + $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /** @var SalesRightsDAO $salesRightsDao */ + $pubFormatId = $form->getData('representationId'); + return $ROWSetting == '' || $salesRightsDao->getROWByPublicationFormatId($pubFormatId) == null || + ($salesRights != null && $salesRightsDao->getROWByPublicationFormatId($pubFormatId)->getId() == $salesRights->getId()); + } + )); + + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + // + // Getters and Setters + // + /** + * Get the entry + * + * @return SalesRights + */ + public function getSalesRights() + { + return $this->_salesRights; + } + + /** + * Set the entry + * + * @param SalesRights $salesRights + */ + public function setSalesRights($salesRights) + { + $this->_salesRights = $salesRights; + } + + /** + * Get the Submission + * + * @return Submission + */ + public function getSubmission() + { + return $this->_submission; + } + + /** + * Set the Submission + * + * @param Submission + */ + public function setSubmission($submission) + { + $this->_submission = $submission; + } + + /** + * Get the Publication + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the Publication + * + * @param Publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + + // + // Overridden template methods + // + /** + * Initialize form data from the sales rights entry. + */ + public function initData() + { + $salesRights = $this->getSalesRights(); + + if ($salesRights) { + $this->_data = [ + 'salesRightsId' => $salesRights->getId(), + 'type' => $salesRights->getType(), + 'ROWSetting' => $salesRights->getROWSetting(), + 'countriesIncluded' => $salesRights->getCountriesIncluded(), + 'countriesExcluded' => $salesRights->getCountriesExcluded(), + 'regionsIncluded' => $salesRights->getRegionsIncluded(), + 'regionsExcluded' => $salesRights->getRegionsExcluded(), + ]; + } + } + + /** + * @copydoc Form::fetch() + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + $submission = $this->getSubmission(); + $templateMgr->assign('submissionId', $submission->getId()); + $templateMgr->assign('publicationId', $this->getPublication()->getId()); + $salesRights = $this->getSalesRights(); + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + $templateMgr->assign('countryCodes', $onixCodelistItemDao->getCodes('List91')); // countries (CA, US, GB, etc) + $templateMgr->assign('regionCodes', $onixCodelistItemDao->getCodes('List49')); // regions (British Columbia, England, etc) + + if ($salesRights) { + $templateMgr->assign('salesRightsId', $salesRights->getId()); + $templateMgr->assign('type', $salesRights->getType()); + $templateMgr->assign('ROWSetting', $salesRights->getROWSetting()); + $templateMgr->assign('countriesIncluded', $salesRights->getCountriesIncluded()); + $templateMgr->assign('countriesExcluded', $salesRights->getCountriesExcluded()); + $templateMgr->assign('regionsIncluded', $salesRights->getRegionsIncluded()); + $templateMgr->assign('regionsExcluded', $salesRights->getRegionsExcluded()); + + $representationId = $salesRights->getPublicationFormatId(); + } else { // loading a blank form + $representationId = (int) $request->getUserVar('representationId'); + } + + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $publicationFormat = $publicationFormatDao->getById($representationId, $this->getPublication()->getId()); + + if ($publicationFormat) { // the format exists for this submission + $templateMgr->assign('representationId', $representationId); + // SalesRightsType values are not normally used more than once per PublishingDetail block, so filter used ones out. + $assignedSalesRights = $publicationFormat->getSalesRights(); + $assignedTypes = array_keys($assignedSalesRights->toAssociativeArray('type')); // currently assigned types + + if ($salesRights) { + $assignedTypes = array_diff($assignedTypes, [$salesRights->getType()]); + } // allow existing codes to keep their value + + $types = $onixCodelistItemDao->getCodes('List46', $assignedTypes); // ONIX list for these + $templateMgr->assign('salesRights', $types); + } else { + fatalError('Format not in authorized submission'); + } + + return parent::fetch($request, $template, $display); + } + + /** + * Assign form data to user-submitted data. + * + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars([ + 'salesRightsId', + 'representationId', + 'type', + 'ROWSetting', + 'countriesIncluded', + 'countriesExcluded', + 'regionsIncluded', + 'regionsExcluded', + ]); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + parent::execute(...$functionArgs); + $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /** @var SalesRightsDAO $salesRightsDao */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + + $submission = $this->getSubmission(); + $salesRights = $this->getSalesRights(); + $publicationFormat = $publicationFormatDao->getById($this->getData('representationId'), $this->getPublication()->getId()); + + if (!$salesRights) { + // this is a new assigned format to this published submission + $salesRights = $salesRightsDao->newDataObject(); + $existingFormat = false; + if ($publicationFormat != null) { // ensure this assigned format is in this submission + $salesRights->setPublicationFormatId($publicationFormat->getId()); + } else { + fatalError('This assigned format not in authorized submission context!'); + } + } else { + $existingFormat = true; + if ($publicationFormat->getId() != $salesRights->getPublicationFormatId()) { + throw new Exception('Invalid format!'); + } + } + + $salesRights->setType($this->getData('type')); + $salesRights->setROWSetting($this->getData('ROWSetting') ? true : false); + $salesRights->setCountriesIncluded($this->getData('countriesIncluded') ? $this->getData('countriesIncluded') : []); + $salesRights->setCountriesExcluded($this->getData('countriesExcluded') ? $this->getData('countriesExcluded') : []); + $salesRights->setRegionsIncluded($this->getData('regionsIncluded') ? $this->getData('regionsIncluded') : []); + $salesRights->setRegionsExcluded($this->getData('regionsExcluded') ? $this->getData('regionsExcluded') : []); + + if ($existingFormat) { + $salesRightsDao->updateObject($salesRights); + $salesRightsId = $salesRights->getId(); + } else { + $salesRightsId = $salesRightsDao->insertObject($salesRights); + } + + return $salesRightsId; + } +} diff --git a/controllers/grid/content/spotlights/ManageSpotlightsGridHandler.inc.php b/controllers/grid/content/spotlights/ManageSpotlightsGridHandler.inc.php deleted file mode 100644 index fdc706b7345..00000000000 --- a/controllers/grid/content/spotlights/ManageSpotlightsGridHandler.inc.php +++ /dev/null @@ -1,360 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_MANAGER), - array('fetchGrid', 'fetchRow', 'addSpotlight', 'editSpotlight', - 'updateSpotlight', 'deleteSpotlight', 'itemAutocomplete')); - } - - // - // Getters/Setters - // - /** - * Get the press associated with this grid. - * @return Press - */ - function &getPress() { - return $this->_press; - } - - /** - * Set the Press (authorized) - * @param Press - */ - function setPress($press) { - $this->_press =& $press; - } - - // - // Overridden methods from PKPHandler - // - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.ContextAccessPolicy'); - $this->addPolicy(new ContextAccessPolicy($request, $roleAssignments)); - $returner = parent::authorize($request, $args, $roleAssignments); - - $spotlightId = $request->getUserVar('spotlightId'); - if ($spotlightId) { - $press = $request->getPress(); - $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /* @var $spotlightDao SpotlightDAO */ - $spotlight = $spotlightDao->getById($spotlightId); - if ($spotlight == null || $spotlight->getPressId() != $press->getId()) { - return false; - } - } - - return $returner; - } - - /** - * @copydoc GridHandler::initialize() - */ - function initialize($request, $args = null) { - parent::initialize($request, $args); - - // Load locale components. - AppLocale::requireComponents(LOCALE_COMPONENT_APP_SUBMISSION, LOCALE_COMPONENT_APP_MANAGER); - - // Basic grid configuration - $this->setTitle('spotlight.spotlights'); - - // Set the no items row text - $this->setEmptyRowText('spotlight.noneExist'); - - $press = $request->getPress(); - $this->setPress($press); - - // Columns - import('controllers.grid.content.spotlights.SpotlightsGridCellProvider'); - $spotlightsGridCellProvider = new SpotlightsGridCellProvider(); - $this->addColumn( - new GridColumn('title', - 'grid.content.spotlights.form.title', - null, - null, - $spotlightsGridCellProvider, - array('width' => 40) - ) - ); - - $this->addColumn( - new GridColumn('itemTitle', - 'grid.content.spotlights.spotlightItemTitle', - null, - null, - $spotlightsGridCellProvider, - array('width' => 40) - ) - ); - - $this->addColumn( - new GridColumn('type', - 'common.type', - null, - null, - $spotlightsGridCellProvider - ) - ); - - // Add grid action. - $router = $request->getRouter(); - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'addSpotlight', - new AjaxModal( - $router->url($request, null, null, 'addSpotlight', null, null), - __('grid.action.addSpotlight'), - 'modal_add_item' - ), - __('grid.action.addSpotlight'), - 'add_item') - ); - } - - - // - // Overridden methods from GridHandler - // - /** - * @see GridHandler::getRowInstance() - * @return SpotlightsGridRow - */ - function getRowInstance() { - return new SpotlightsGridRow($this->getPress()); - } - - /** - * @see GridHandler::loadData() - */ - function loadData($request, $filter = null) { - - $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /* @var $spotlightDao SpotlightDAO */ - $press = $this->getPress(); - return $spotlightDao->getByPressId($press->getId()); - } - - /** - * Get the arguments that will identify the data in the grid - * In this case, the press. - * @return array - */ - function getRequestArgs() { - $press = $this->getPress(); - return array( - 'pressId' => $press->getId() - ); - } - - // - // Public Spotlights Grid Actions - // - - function addSpotlight($args, $request) { - return $this->editSpotlight($args, $request); - } - - /** - * Edit a spotlight entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editSpotlight($args, $request) { - $spotlightId = (int)$request->getUserVar('spotlightId'); - $press = $request->getPress(); - $pressId = $press->getId(); - - $spotlightForm = new SpotlightForm($pressId, $spotlightId); - $spotlightForm->initData(); - - return new JSONMessage(true, $spotlightForm->fetch($request)); - } - - /** - * Update a spotlight entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateSpotlight($args, $request) { - // Identify the spotlight entry to be updated - $spotlightId = $request->getUserVar('spotlightId'); - - $press = $this->getPress(); - - $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /* @var $spotlightDao SpotlightDAO */ - $spotlight = $spotlightDao->getById($spotlightId, $press->getId()); - - // Form handling - $spotlightForm = new SpotlightForm($press->getId(), $spotlightId); - - $spotlightForm->readInputData(); - if ($spotlightForm->validate()) { - $spotlightId = $spotlightForm->execute(); - - if(!isset($spotlight)) { - // This is a new entry - $spotlight = $spotlightDao->getById($spotlightId, $press->getId()); - // New added entry action notification content. - $notificationContent = __('notification.addedSpotlight'); - } else { - // entry edit action notification content. - $notificationContent = __('notification.editedSpotlight'); - } - - // Create trivial notification. - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => $notificationContent)); - - // Prepare the grid row data - $row = $this->getRowInstance(); - $row->setGridId($this->getId()); - $row->setId($spotlightId); - $row->setData($spotlight); - $row->initialize($request); - - // Render the row into a JSON response - return DAO::getDataChangedEvent(); - - } else { - return new JSONMessage(true, $spotlightForm->fetch($request)); - } - } - - /** - * Delete a spotlight entry - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deleteSpotlight($args, $request) { - - // Identify the entry to be deleted - $spotlightId = $request->getUserVar('spotlightId'); - - $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /* @var $spotlightDao SpotlightDAO */ - $press = $this->getPress(); - $spotlight = $spotlightDao->getById($spotlightId, $press->getId()); - if ($spotlight != null) { // authorized - - $result = $spotlightDao->deleteObject($spotlight); - - if ($result) { - $currentUser = $request->getUser(); - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($currentUser->getId(), NOTIFICATION_TYPE_SUCCESS, array('contents' => __('notification.removedSpotlight'))); - return DAO::getDataChangedEvent(); - } else { - return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - } - } - } - - /** - * Returns a JSON list for the autocomplete field. Fetches a list of possible spotlight options - * based on the spotlight type chosen. - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function itemAutocomplete($args, $request) { - $name = $request->getUserVar('name'); - $press = $this->getPress(); - $itemList = array(); - - // get the items that match. - $matches = array(); - - import('lib.pkp.classes.submission.PKPSubmission'); // STATUS_PUBLISHED - $args = [ - 'status' => STATUS_PUBLISHED, - 'contextId' => $press->getId(), - 'count' => 100 - ]; - - if ($name) { - $args['searchPhrase'] = $name; - } - - $submissionsIterator = Services::get('submission')->getMany($args); - foreach ($submissionsIterator as $submission) { - $matches[] = array('label' => $submission->getLocalizedTitle(), 'value' => $submission->getId() . ':' . SPOTLIGHT_TYPE_BOOK); - } - - if (!empty($matches)) { - $itemList[] = array('label' => PKPString::strtoupper(__('submission.monograph')), 'value' => ''); - $itemList = array_merge($itemList, $matches); - } - - $matches = array(); - - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $allSeries = $seriesDao->getByPressId($press->getId()); - while ($series = $allSeries->next()) { - if ($name == '' || preg_match('/'. preg_quote($name, '/') . '/i', $series->getLocalizedTitle())) { - $matches[] = array('label' => $series->getLocalizedTitle(), 'value' => $series->getId() . ':' . SPOTLIGHT_TYPE_SERIES); - } - } - - if (!empty($matches)) { - $itemList[] = array('label' => PKPString::strtoupper(__('manager.series.book')), 'value' => ''); - $itemList = array_merge($itemList, $matches); - } - - if (count($itemList) == 0) { - return $this->noAutocompleteResults(); - } - - return new JSONMessage(true, $itemList); - } -} - - diff --git a/controllers/grid/content/spotlights/ManageSpotlightsGridHandler.php b/controllers/grid/content/spotlights/ManageSpotlightsGridHandler.php new file mode 100644 index 00000000000..10c3fbce390 --- /dev/null +++ b/controllers/grid/content/spotlights/ManageSpotlightsGridHandler.php @@ -0,0 +1,385 @@ +addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ['fetchGrid', 'fetchRow', 'addSpotlight', 'editSpotlight', + 'updateSpotlight', 'deleteSpotlight', 'itemAutocomplete'] + ); + } + + // + // Getters/Setters + // + /** + * Get the press associated with this grid. + * + * @return Press + */ + public function &getPress() + { + return $this->_press; + } + + /** + * Set the Press (authorized) + * + * @param Press + */ + public function setPress($press) + { + $this->_press = & $press; + } + + // + // Overridden methods from PKPHandler + // + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $this->addPolicy(new ContextAccessPolicy($request, $roleAssignments)); + $returner = parent::authorize($request, $args, $roleAssignments); + + $spotlightId = $request->getUserVar('spotlightId'); + if ($spotlightId) { + $press = $request->getPress(); + $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /** @var SpotlightDAO $spotlightDao */ + $spotlight = $spotlightDao->getById($spotlightId); + if ($spotlight == null || $spotlight->getPressId() != $press->getId()) { + return false; + } + } + + return $returner; + } + + /** + * @copydoc GridHandler::initialize() + * + * @param null|mixed $args + */ + public function initialize($request, $args = null) + { + parent::initialize($request, $args); + + // Basic grid configuration + $this->setTitle('spotlight.spotlights'); + + // Set the no items row text + $this->setEmptyRowText('spotlight.noneExist'); + + $press = $request->getPress(); + $this->setPress($press); + + // Columns + $spotlightsGridCellProvider = new SpotlightsGridCellProvider(); + $this->addColumn( + new GridColumn( + 'title', + 'grid.content.spotlights.form.title', + null, + null, + $spotlightsGridCellProvider, + ['width' => 40] + ) + ); + + $this->addColumn( + new GridColumn( + 'itemTitle', + 'grid.content.spotlights.spotlightItemTitle', + null, + null, + $spotlightsGridCellProvider, + ['width' => 40] + ) + ); + + $this->addColumn( + new GridColumn( + 'type', + 'common.type', + null, + null, + $spotlightsGridCellProvider + ) + ); + + // Add grid action. + $router = $request->getRouter(); + $this->addAction( + new LinkAction( + 'addSpotlight', + new AjaxModal( + $router->url($request, null, null, 'addSpotlight', null, null), + __('grid.action.addSpotlight'), + 'modal_add_item' + ), + __('grid.action.addSpotlight'), + 'add_item' + ) + ); + } + + + // + // Overridden methods from GridHandler + // + /** + * @see GridHandler::getRowInstance() + * + * @return SpotlightsGridRow + */ + public function getRowInstance() + { + return new SpotlightsGridRow($this->getPress()); + } + + /** + * @see GridHandler::loadData() + * + * @param null|mixed $filter + */ + public function loadData($request, $filter = null) + { + $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /** @var SpotlightDAO $spotlightDao */ + $press = $this->getPress(); + return $spotlightDao->getByPressId($press->getId()); + } + + /** + * Get the arguments that will identify the data in the grid + * In this case, the press. + * + * @return array + */ + public function getRequestArgs() + { + $press = $this->getPress(); + return [ + 'pressId' => $press->getId() + ]; + } + + // + // Public Spotlights Grid Actions + // + + public function addSpotlight($args, $request) + { + return $this->editSpotlight($args, $request); + } + + /** + * Edit a spotlight entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editSpotlight($args, $request) + { + $spotlightId = (int)$request->getUserVar('spotlightId'); + $press = $request->getPress(); + $pressId = $press->getId(); + + $spotlightForm = new SpotlightForm($pressId, $spotlightId); + $spotlightForm->initData(); + + return new JSONMessage(true, $spotlightForm->fetch($request)); + } + + /** + * Update a spotlight entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateSpotlight($args, $request) + { + // Identify the spotlight entry to be updated + $spotlightId = $request->getUserVar('spotlightId'); + + $press = $this->getPress(); + + $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /** @var SpotlightDAO $spotlightDao */ + $spotlight = $spotlightDao->getById($spotlightId); + + // Form handling + $spotlightForm = new SpotlightForm($press->getId(), $spotlightId); + + $spotlightForm->readInputData(); + if ($spotlightForm->validate()) { + $spotlightId = $spotlightForm->execute(); + + if (!isset($spotlight)) { + // This is a new entry + $spotlight = $spotlightDao->getById($spotlightId); + // New added entry action notification content. + $notificationContent = __('notification.addedSpotlight'); + } else { + // entry edit action notification content. + $notificationContent = __('notification.editedSpotlight'); + } + + // Create trivial notification. + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => $notificationContent]); + + // Prepare the grid row data + $row = $this->getRowInstance(); + $row->setGridId($this->getId()); + $row->setId($spotlightId); + $row->setData($spotlight); + $row->initialize($request); + + // Render the row into a JSON response + return DAO::getDataChangedEvent(); + } else { + return new JSONMessage(true, $spotlightForm->fetch($request)); + } + } + + /** + * Delete a spotlight entry + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deleteSpotlight($args, $request) + { + // Identify the entry to be deleted + $spotlightId = $request->getUserVar('spotlightId'); + + $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /** @var SpotlightDAO $spotlightDao */ + $spotlight = $spotlightDao->getById($spotlightId); + if (!$spotlight) { + return new JSONMessage(false, __('manager.setup.errorDeletingItem')); + } + + $spotlightDao->deleteObject($spotlight); + $currentUser = $request->getUser(); + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($currentUser->getId(), Notification::NOTIFICATION_TYPE_SUCCESS, ['contents' => __('notification.removedSpotlight')]); + return DAO::getDataChangedEvent(); + } + + /** + * Returns a JSON list for the autocomplete field. Fetches a list of possible spotlight options + * based on the spotlight type chosen. + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function itemAutocomplete($args, $request) + { + $name = $request->getUserVar('name'); + $press = $this->getPress(); + $itemList = []; + + // get the items that match. + $matches = []; + + $collector = Repo::submission() + ->getCollector() + ->filterByContextIds([$press->getId()]) + ->filterByStatus([Submission::STATUS_PUBLISHED]) + ->limit(100); + + if ($name) { + $collector->searchPhrase($name); + } + + $submissions = $collector->getMany(); + foreach ($submissions as $submission) { + $matches[] = ['label' => $submission->getLocalizedTitle(), 'value' => $submission->getId() . ':' . Spotlight::SPOTLIGHT_TYPE_BOOK]; + } + + if (!empty($matches)) { + $itemList = array_merge($itemList, $matches); + } + + $matches = []; + + $allSeries = Repo::section() + ->getCollector() + ->filterByContextIds([$press->getId()]) + ->getMany(); + foreach ($allSeries as $series) { + if ($name == '' || preg_match('/' . preg_quote($name, '/') . '/i', $series->getLocalizedTitle())) { + $matches[] = ['label' => $series->getLocalizedTitle(), 'value' => $series->getId() . ':' . Spotlight::SPOTLIGHT_TYPE_SERIES]; + } + } + + if (!empty($matches)) { + $itemList = array_merge($itemList, $matches); + } + + if (count($itemList) == 0) { + return $this->noAutocompleteResults(); + } + + return new JSONMessage(true, $itemList); + } +} diff --git a/controllers/grid/content/spotlights/SpotlightsGridCellProvider.inc.php b/controllers/grid/content/spotlights/SpotlightsGridCellProvider.inc.php deleted file mode 100644 index 219450d0e52..00000000000 --- a/controllers/grid/content/spotlights/SpotlightsGridCellProvider.inc.php +++ /dev/null @@ -1,55 +0,0 @@ -getData(); - $element =& $data; - - $columnId = $column->getId(); - assert(is_a($element, 'DataObject') && !empty($columnId)); - switch ($columnId) { - case 'type': - return array('label' => $element->getLocalizedType()); - case 'title': - return array('label' => $element->getLocalizedTitle()); - case 'itemTitle': { - $item = $element->getSpotlightItem(); - return array('label' => $item->getLocalizedTitle()); - } - } - } -} - - diff --git a/controllers/grid/content/spotlights/SpotlightsGridCellProvider.php b/controllers/grid/content/spotlights/SpotlightsGridCellProvider.php new file mode 100644 index 00000000000..26499c1f9e9 --- /dev/null +++ b/controllers/grid/content/spotlights/SpotlightsGridCellProvider.php @@ -0,0 +1,57 @@ +getData(); + $element = & $data; + + $columnId = $column->getId(); + assert(is_a($element, 'DataObject') && !empty($columnId)); + /** @var Spotlight $element */ + switch ($columnId) { + case 'type': + return ['label' => $element->getLocalizedType()]; + case 'title': + return ['label' => $element->getLocalizedTitle()]; + case 'itemTitle': { + $item = $element->getSpotlightItem(); + return ['label' => $item->getLocalizedTitle()]; + } + } + } +} diff --git a/controllers/grid/content/spotlights/SpotlightsGridRow.inc.php b/controllers/grid/content/spotlights/SpotlightsGridRow.inc.php deleted file mode 100644 index 152b9bcf7d3..00000000000 --- a/controllers/grid/content/spotlights/SpotlightsGridRow.inc.php +++ /dev/null @@ -1,101 +0,0 @@ -setPress($press); - parent::__construct(); - } - - // - // Overridden methods from GridRow - // - /** - * @copydoc GridRow::initialize() - */ - function initialize($request, $template = null) { - // Do the default initialization - parent::initialize($request, $template); - - $press = $this->getPress(); - - // Is this a new row or an existing row? - $spotlight = $this->_data; - if ($spotlight != null && is_numeric($spotlight->getId())) { - $router = $request->getRouter(); - $actionArgs = array( - 'pressId' => $press->getId(), - 'spotlightId' => $spotlight->getId() - ); - - // Add row-level actions - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'editSpotlight', - new AjaxModal( - $router->url($request, null, null, 'editSpotlight', null, $actionArgs), - __('grid.action.edit'), - 'modal_edit' - ), - __('grid.action.edit'), - 'edit' - ) - ); - - import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal'); - $this->addAction( - new LinkAction( - 'deleteSpotlight', - new RemoteActionConfirmationModal( - $request->getSession(), - __('common.confirmDelete'), - __('common.delete'), - $router->url($request, null, null, 'deleteSpotlight', null, $actionArgs), - 'modal_delete' - ), - __('grid.action.delete'), - 'delete' - ) - ); - } - } - - /** - * Get the press for this row (already authorized) - * @return Press - */ - function getPress() { - return $this->_press; - } - - /** - * Set the press for this row (already authorized) - * @return Press - */ - function setPress($press) { - $this->_press = $press; - } -} - diff --git a/controllers/grid/content/spotlights/SpotlightsGridRow.php b/controllers/grid/content/spotlights/SpotlightsGridRow.php new file mode 100644 index 00000000000..e2377a63b9a --- /dev/null +++ b/controllers/grid/content/spotlights/SpotlightsGridRow.php @@ -0,0 +1,113 @@ +setPress($press); + parent::__construct(); + } + + // + // Overridden methods from GridRow + // + /** + * @copydoc GridRow::initialize() + * + * @param null|mixed $template + */ + public function initialize($request, $template = null) + { + // Do the default initialization + parent::initialize($request, $template); + + $press = $this->getPress(); + + // Is this a new row or an existing row? + $spotlight = $this->_data; + if ($spotlight != null && is_numeric($spotlight->getId())) { + $router = $request->getRouter(); + $actionArgs = [ + 'pressId' => $press->getId(), + 'spotlightId' => $spotlight->getId() + ]; + + // Add row-level actions + $this->addAction( + new LinkAction( + 'editSpotlight', + new AjaxModal( + $router->url($request, null, null, 'editSpotlight', null, $actionArgs), + __('grid.action.edit'), + 'modal_edit' + ), + __('grid.action.edit'), + 'edit' + ) + ); + + $this->addAction( + new LinkAction( + 'deleteSpotlight', + new RemoteActionConfirmationModal( + $request->getSession(), + __('common.confirmDelete'), + __('common.delete'), + $router->url($request, null, null, 'deleteSpotlight', null, $actionArgs), + 'modal_delete' + ), + __('grid.action.delete'), + 'delete' + ) + ); + } + } + + /** + * Get the press for this row (already authorized) + * + * @return Press + */ + public function getPress() + { + return $this->_press; + } + + /** + * Set the press for this row (already authorized) + */ + public function setPress($press) + { + $this->_press = $press; + } +} diff --git a/controllers/grid/content/spotlights/form/SpotlightForm.inc.php b/controllers/grid/content/spotlights/form/SpotlightForm.inc.php deleted file mode 100644 index 4993073491f..00000000000 --- a/controllers/grid/content/spotlights/form/SpotlightForm.inc.php +++ /dev/null @@ -1,177 +0,0 @@ -_spotlightId = $spotlightId; - $this->_pressId = $pressId; - - $form = $this; - $this->addCheck(new FormValidatorCustom($this, 'assocId', 'required', 'grid.content.spotlights.itemRequired', function($assocId) use ($form) { - list($id, $type) = preg_split('/:/', $assocId); - return is_numeric($id) && $id > 0 && $form->_isValidSpotlightType($type); - })); - $this->addCheck(new FormValidator($this, 'title', 'required', 'grid.content.spotlights.titleRequired')); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - - // - // Extended methods from Form - // - /** - * @copydoc Form::fetch() - */ - public function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - - $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /* @var $spotlightDao SpotlightDAO */ - $spotlight = $spotlightDao->getById($this->getSpotlightId()); - $templateMgr->assign(array( - 'spotlight' => $spotlight, - 'pressId' => $this->getPressId() - )); - - if (isset($spotlight)) $templateMgr->assign(array( - 'title' => $spotlight->getTitle(null), - 'description' => $spotlight->getDescription(null), - 'assocTitle' => $this->getAssocTitle($spotlight->getAssocId(), $spotlight->getAssocType()), - 'assocId' => $spotlight->getAssocId() . ':' . $spotlight->getAssocType(), - )); - - return parent::fetch($request, $template, $display); - } - - // - // Extended methods from Form - // - /** - * @see Form::readInputData() - */ - public function readInputData() { - $this->readUserVars(array('title', 'description', 'assocId')); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /* @var $spotlightDao SpotlightDAO */ - - $spotlight = $spotlightDao->getById($this->getSpotlightId(), $this->getPressId()); - - if (!$spotlight) { - // this is a new spotlight - $spotlight = $spotlightDao->newDataObject(); - $spotlight->setPressId($this->getPressId()); - $existingSpotlight = false; - } else { - $existingSpotlight = true; - } - - list($assocId, $assocType) = preg_split('/:/', $this->getData('assocId')); - $spotlight->setAssocType($assocType); - $spotlight->setTitle($this->getData('title'), null); // localized - $spotlight->setDescription($this->getData('description'), null); // localized - $spotlight->setAssocId($assocId); - - if ($existingSpotlight) { - $spotlightDao->updateObject($spotlight); - $spotlightId = $spotlight->getId(); - } else { - $spotlightId = $spotlightDao->insertObject($spotlight); - } - - parent::execute(...$functionArgs); - return $spotlightId; - } - - - // - // helper methdods. - // - - /** - * Fetch the spotlight Id for this form. - * @return int $spotlightId - */ - public function getSpotlightId() { - return $this->_spotlightId; - } - - /** - * Fetch the press Id for this form. - * @return int $pressId - */ - public function getPressId() { - return $this->_pressId; - } - - /** - * Fetch the title of the Spotlight item, based on the assocType and pressId - * @param int $assocId - * @param int $assocType - */ - public function getAssocTitle($assocId, $assocType) { - - $returner = null; - switch ($assocType) { - case SPOTLIGHT_TYPE_BOOK: - $submission = Services::get('submission')->get($assocId); - $returner = isset($submission) ? $submission->getLocalizedTitle() : ''; - break; - case SPOTLIGHT_TYPE_SERIES: - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($assocId, $this->getPressId()); - $returner = isset($series) ? $series->getLocalizedTitle() : ''; - break; - default: - fatalError('invalid type specified'); - } - return $returner; - } - - /** - * Internal function for spotlight type verification. - * @param int $type - * @return boolean - */ - public function _isValidSpotlightType($type) { - $validTypes = array(SPOTLIGHT_TYPE_BOOK, SPOTLIGHT_TYPE_SERIES); - return in_array((int) $type, $validTypes); - } -} - - diff --git a/controllers/grid/content/spotlights/form/SpotlightForm.php b/controllers/grid/content/spotlights/form/SpotlightForm.php new file mode 100644 index 00000000000..2723c8c1ea7 --- /dev/null +++ b/controllers/grid/content/spotlights/form/SpotlightForm.php @@ -0,0 +1,199 @@ +_spotlightId = $spotlightId; + $this->_pressId = $pressId; + + $form = $this; + $this->addCheck(new \PKP\form\validation\FormValidatorCustom($this, 'assocId', 'required', 'grid.content.spotlights.itemRequired', function ($assocId) use ($form) { + [$id, $type] = preg_split('/:/', $assocId); + return is_numeric($id) && $id > 0 && $form->_isValidSpotlightType($type); + })); + $this->addCheck(new \PKP\form\validation\FormValidator($this, 'title', 'required', 'grid.content.spotlights.titleRequired')); + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + + // + // Extended methods from Form + // + /** + * @copydoc Form::fetch() + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + + $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /** @var SpotlightDAO $spotlightDao */ + $spotlight = $spotlightDao->getById($this->getSpotlightId()); + $templateMgr->assign([ + 'spotlight' => $spotlight, + 'pressId' => $this->getPressId() + ]); + + if (isset($spotlight)) { + $templateMgr->assign([ + 'title' => $spotlight->getTitle(null), + 'description' => $spotlight->getDescription(null), + 'assocTitle' => $this->getAssocTitle($spotlight->getAssocId(), $spotlight->getAssocType()), + 'assocId' => $spotlight->getAssocId() . ':' . $spotlight->getAssocType(), + ]); + } + + return parent::fetch($request, $template, $display); + } + + // + // Extended methods from Form + // + /** + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars(['title', 'description', 'assocId']); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /** @var SpotlightDAO $spotlightDao */ + + $spotlight = $spotlightDao->getById($this->getSpotlightId()); + + if (!$spotlight) { + // this is a new spotlight + $spotlight = $spotlightDao->newDataObject(); + $spotlight->setPressId($this->getPressId()); + $existingSpotlight = false; + } else { + $existingSpotlight = true; + } + + [$assocId, $assocType] = preg_split('/:/', $this->getData('assocId')); + $spotlight->setAssocType($assocType); + $spotlight->setTitle($this->getData('title'), null); // localized + $spotlight->setDescription($this->getData('description'), null); // localized + $spotlight->setAssocId($assocId); + + if ($existingSpotlight) { + $spotlightDao->updateObject($spotlight); + $spotlightId = $spotlight->getId(); + } else { + $spotlightId = $spotlightDao->insertObject($spotlight); + } + + parent::execute(...$functionArgs); + return $spotlightId; + } + + + // + // helper methdods. + // + + /** + * Fetch the spotlight Id for this form. + * + * @return int $spotlightId + */ + public function getSpotlightId() + { + return $this->_spotlightId; + } + + /** + * Fetch the press Id for this form. + * + * @return int $pressId + */ + public function getPressId() + { + return $this->_pressId; + } + + /** + * Fetch the title of the Spotlight item, based on the assocType and pressId + * + * @param int $assocId + * @param int $assocType + */ + public function getAssocTitle($assocId, $assocType) + { + $returner = null; + switch ($assocType) { + case Spotlight::SPOTLIGHT_TYPE_BOOK: + $submission = Repo::submission()->get($assocId); + $returner = isset($submission) ? $submission->getLocalizedTitle() : ''; + break; + case Spotlight::SPOTLIGHT_TYPE_SERIES: + $series = Repo::section()->get($assocId, $this->getPressId()); + $returner = isset($series) ? $series->getLocalizedTitle() : ''; + break; + default: + fatalError('invalid type specified'); + } + return $returner; + } + + /** + * Internal function for spotlight type verification. + * + * @param int $type + * + * @return bool + */ + public function _isValidSpotlightType($type) + { + $validTypes = [Spotlight::SPOTLIGHT_TYPE_BOOK, Spotlight::SPOTLIGHT_TYPE_SERIES]; + return in_array((int) $type, $validTypes); + } +} diff --git a/controllers/grid/files/proof/form/ApprovedProofForm.inc.php b/controllers/grid/files/proof/form/ApprovedProofForm.inc.php deleted file mode 100644 index 35b669602dc..00000000000 --- a/controllers/grid/files/proof/form/ApprovedProofForm.inc.php +++ /dev/null @@ -1,113 +0,0 @@ -monograph = $monograph; - $this->publicationFormat = $publicationFormat; - $this->approvedProof = Services::get('submissionFile')->get($submissionFileId); - - // matches currencies like: 1,500.50 1500.50 1,112.15 5,99 .99 - $this->addCheck(new FormValidatorRegExp($this, 'price', 'optional', 'grid.catalogEntry.validPriceRequired', '/^(([1-9]\d{0,2}(,\d{3})*|[1-9]\d*|0|)(.\d{2})?|([1-9]\d{0,2}(,\d{3})*|[1-9]\d*|0|)(.\d{2})?)$/')); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - - // - // Extended methods from Form - // - /** - * @copydoc Form::fetch - */ - public function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('submissionFileId', $this->approvedProof->getId()); - $templateMgr->assign('submissionId', $this->monograph->getId()); - $templateMgr->assign('representationId', $this->publicationFormat->getId()); - $templateMgr->assign('publicationId', $this->publicationFormat->getData('publicationId')); - - $salesTypes = array( - 'openAccess' => 'payment.directSales.openAccess', - 'directSales' => 'payment.directSales.directSales', - 'notAvailable' => 'payment.directSales.notAvailable', - ); - - $templateMgr->assign('salesTypes', $salesTypes); - $templateMgr->assign('salesType', $this->approvedProof->getSalesType()); - return parent::fetch($request, $template, $display); - } - - /** - * @see Form::readInputData() - */ - public function readInputData() { - $this->readUserVars(array('price', 'salesType')); - } - - /** - * @see Form::initData() - */ - public function initData() { - $this->_data = array( - 'price' => $this->approvedProof->getDirectSalesPrice(), - 'salesType' => $this->approvedProof->getSalesType(), - ); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - parent::execute(...$functionArgs); - $submissionFileDao = DAORegistry::getDAO('SubmissionFileDAO'); /* @var $submissionFileDao SubmissionFileDAO */ - $salesType = $this->getData('salesType'); - if ($salesType === 'notAvailable') { - // Not available - $this->approvedProof->setDirectSalesPrice(null); - } elseif ($salesType === 'openAccess') { - // Open access - $this->approvedProof->setDirectSalesPrice(0); - } else { /* $salesType === 'directSales' */ - // Direct sale - $this->approvedProof->setDirectSalesPrice($this->getData('price')); - } - $this->approvedProof->setSalesType($salesType); - $submissionFileDao->updateObject($this->approvedProof); - - return $this->approvedProof->getId(); - } -} - - diff --git a/controllers/grid/files/proof/form/ApprovedProofForm.php b/controllers/grid/files/proof/form/ApprovedProofForm.php new file mode 100644 index 00000000000..52c1c6eabdd --- /dev/null +++ b/controllers/grid/files/proof/form/ApprovedProofForm.php @@ -0,0 +1,135 @@ +monograph = $monograph; + $this->publicationFormat = $publicationFormat; + $this->approvedProof = Repo::submissionFile()->get($submissionFileId); + + // matches currencies like: 1,500.50 1500.50 1,112.15 5,99 .99 + $this->addCheck(new \PKP\form\validation\FormValidatorRegExp($this, 'price', 'optional', 'grid.catalogEntry.validPriceRequired', '/^(([1-9]\d{0,2}(,\d{3})*|[1-9]\d*|0|)(.\d{2})?|([1-9]\d{0,2}(,\d{3})*|[1-9]\d*|0|)(.\d{2})?)$/')); + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + + // + // Extended methods from Form + // + /** + * @copydoc Form::fetch + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign('submissionFileId', $this->approvedProof->getId()); + $templateMgr->assign('submissionId', $this->monograph->getId()); + $templateMgr->assign('representationId', $this->publicationFormat->getId()); + $templateMgr->assign('publicationId', $this->publicationFormat->getData('publicationId')); + + $salesTypes = [ + 'openAccess' => 'payment.directSales.openAccess', + 'directSales' => 'payment.directSales.directSales', + 'notAvailable' => 'payment.directSales.notAvailable', + ]; + + $templateMgr->assign('salesTypes', $salesTypes); + $templateMgr->assign('salesType', $this->approvedProof->getSalesType()); + return parent::fetch($request, $template, $display); + } + + /** + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars(['price', 'salesType']); + } + + /** + * @see Form::initData() + */ + public function initData() + { + $this->_data = [ + 'price' => $this->approvedProof->getDirectSalesPrice(), + 'salesType' => $this->approvedProof->getSalesType(), + ]; + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + parent::execute(...$functionArgs); + $salesType = $this->getData('salesType'); + + $params = [ + 'directSalesPrice' => $this->getData('price'), + 'salesType' => $salesType, + ]; + + if ($salesType === 'notAvailable') { + // Not available + $params['directSalesPrice'] = null; + } elseif ($salesType === 'openAccess') { + // Open access + $params['directSalesPrice'] = 0; + } + + Repo::submissionFile() + ->edit( + $this->approvedProof, + $params + ); + + $id = Repo::submissionFile()->get($this->approvedProof->getId()); + + return $id; + } +} diff --git a/controllers/grid/navigationMenus/form/NavigationMenuItemsForm.inc.php b/controllers/grid/navigationMenus/form/NavigationMenuItemsForm.inc.php deleted file mode 100644 index e5d273c13df..00000000000 --- a/controllers/grid/navigationMenus/form/NavigationMenuItemsForm.inc.php +++ /dev/null @@ -1,111 +0,0 @@ -getMenuItemCustomEditTemplates(); - - $request = \Application::get()->getRequest(); - $context = $request->getContext(); - $contextId = $context ? $context->getId() : CONTEXT_ID_NONE; - - $seriesDao = \DAORegistry::getDAO('SeriesDAO'); - $series = $seriesDao->getByContextId($contextId); - $seriesTitlesArray = $series->toAssociativeArray(); - - $seriesTitles = array(); - foreach ($seriesTitlesArray as $series) { - $seriesTitles[$series->getId()] = $series->getLocalizedTitle(); - } - - $categoryDao = \DAORegistry::getDAO('CategoryDAO'); - $categories = $categoryDao->getByParentId(null, $contextId); - $categoryTitlesArray = $categories->toAssociativeArray(); - - $categoryTitles = array(); - foreach ($categoryTitlesArray as $category) { - $categoryTitles[$category->getId()] = $category->getLocalizedTitle(); - } - - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('customTemplates', $customTemplates); - $templateMgr->assign('navigationMenuItemSeriesTitles', $seriesTitles); - $templateMgr->assign('navigationMenuItemCategoryTitles', $categoryTitles); - - return parent::fetch($request, $template, $display); - } - - /** - * @copydoc PKPNavigationMenuItemsForm::initData - */ - public function initData() { - $navigationMenuItemDao = DAORegistry::getDAO('NavigationMenuItemDAO'); /* @var $navigationMenuItemDao NavigationMenuItemDAO */ - $navigationMenuItem = $navigationMenuItemDao->getById($this->navigationMenuItemId); - - if ($navigationMenuItem) { - parent::initData(); - $ompInitData = array( - 'selectedRelatedObjectId' => $navigationMenuItem->getPath(), - ); - - $this->_data = array_merge($ompInitData, $this->_data); - } else { - parent::initData(); - } - } - - /** - * Assign form data to user-submitted data. - */ - public function readInputData() { - $this->readUserVars(array( - 'relatedSeriesId', - 'relatedCategoryId', - )); - parent::readInputData(); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - parent::execute(...$functionArgs); - - $navigationMenuItemDao = DAORegistry::getDAO('NavigationMenuItemDAO'); /* @var $navigationMenuItemDao NavigationMenuItemDAO */ - - $navigationMenuItem = $navigationMenuItemDao->getById($this->navigationMenuItemId); - if (!$navigationMenuItem) { - $navigationMenuItem = $navigationMenuItemDao->newDataObject(); - } - - if ($this->getData('menuItemType') == NMI_TYPE_SERIES) { - $navigationMenuItem->setPath($this->getData('relatedSeriesId')); - } else if ($this->getData('menuItemType') == NMI_TYPE_CATEGORY) { - $navigationMenuItem->setPath($this->getData('relatedCategoryId')); - } - - // Update navigation menu item - $navigationMenuItemDao->updateObject($navigationMenuItem); - - return $navigationMenuItem->getId(); - } -} diff --git a/controllers/grid/navigationMenus/form/NavigationMenuItemsForm.php b/controllers/grid/navigationMenus/form/NavigationMenuItemsForm.php new file mode 100644 index 00000000000..dba67d27bbc --- /dev/null +++ b/controllers/grid/navigationMenus/form/NavigationMenuItemsForm.php @@ -0,0 +1,129 @@ +getMenuItemCustomEditTemplates(); + + $request = Application::get()->getRequest(); + $context = $request->getContext(); + $contextId = $context ? $context->getId() : Application::CONTEXT_ID_NONE; + + $series = Repo::section() + ->getCollector() + ->filterByContextIds([$contextId]) + ->getMany(); + $seriesTitles = $series->map(fn (Section $seriesObj) => [ + $seriesObj->getId() => $seriesObj->getLocalizedTitle() + ]); + + $categories = Repo::category()->getCollector() + ->filterByParentIds([null]) + ->filterByContextIds([$contextId]) + ->getMany(); + + $categoryTitles = []; + foreach ($categories as $category) { + $categoryTitles[$category->getId()] = $category->getLocalizedTitle(); + } + + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign([ + 'customTemplates' => $customTemplates, + 'navigationMenuItemSeriesTitles' => $seriesTitles, + 'navigationMenuItemCategoryTitles' => $categoryTitles, + ]); + + return parent::fetch($request, $template, $display); + } + + /** + * @copydoc PKPNavigationMenuItemsForm::initData + */ + public function initData() + { + $navigationMenuItemDao = DAORegistry::getDAO('NavigationMenuItemDAO'); /** @var NavigationMenuItemDAO $navigationMenuItemDao */ + $navigationMenuItem = $navigationMenuItemDao->getById($this->navigationMenuItemId); + + if ($navigationMenuItem) { + parent::initData(); + $ompInitData = [ + 'selectedRelatedObjectId' => $navigationMenuItem->getPath(), + ]; + + $this->_data = array_merge($ompInitData, $this->_data); + } else { + parent::initData(); + } + } + + /** + * Assign form data to user-submitted data. + */ + public function readInputData() + { + $this->readUserVars([ + 'relatedSeriesId', + 'relatedCategoryId', + ]); + parent::readInputData(); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + parent::execute(...$functionArgs); + + $navigationMenuItemDao = DAORegistry::getDAO('NavigationMenuItemDAO'); /** @var NavigationMenuItemDAO $navigationMenuItemDao */ + + $navigationMenuItem = $navigationMenuItemDao->getById($this->navigationMenuItemId); + if (!$navigationMenuItem) { + $navigationMenuItem = $navigationMenuItemDao->newDataObject(); + } + + if ($this->getData('menuItemType') == NavigationMenuService::NMI_TYPE_SERIES) { + $navigationMenuItem->setPath($this->getData('relatedSeriesId')); + } elseif ($this->getData('menuItemType') == NavigationMenuService::NMI_TYPE_CATEGORY) { + $navigationMenuItem->setPath($this->getData('relatedCategoryId')); + } + + // Update navigation menu item + $navigationMenuItemDao->updateObject($navigationMenuItem); + + return $navigationMenuItem->getId(); + } +} diff --git a/controllers/grid/settings/plugins/SettingsPluginGridHandler.inc.php b/controllers/grid/settings/plugins/SettingsPluginGridHandler.inc.php deleted file mode 100644 index d44fe25fbd2..00000000000 --- a/controllers/grid/settings/plugins/SettingsPluginGridHandler.inc.php +++ /dev/null @@ -1,103 +0,0 @@ -addRoleAssignment($roles, array('manage')); - parent::__construct($roles); - } - - - // - // Extended methods from PluginGridHandler - // - /** - * @copydoc PluginGridHandler::loadCategoryData() - */ - function loadCategoryData($request, &$categoryDataElement, $filter = null) { - $plugins = parent::loadCategoryData($request, $categoryDataElement, $filter); - - $pressDao = DAORegistry::getDAO('PressDAO'); /* @var $pressDao PressDAO */ - $presses = $pressDao->getAll(); - $firstPress = $presses->next(); - $secondPress = $presses->next(); - $singlePress = $firstPress && !$secondPress; - - $userRoles = $this->getAuthorizedContextObject(ASSOC_TYPE_USER_ROLES); - - $showSitePlugins = false; - if ($singlePress && in_array(ROLE_ID_SITE_ADMIN, $userRoles)) { - $showSitePlugins = true; - } - - if ($showSitePlugins) { - return $plugins; - } else { - $contextLevelPlugins = array(); - foreach ($plugins as $plugin) { - if (!$plugin->isSitePlugin()) { - $contextLevelPlugins[$plugin->getName()] = $plugin; - } - } - return $contextLevelPlugins; - } - } - - // - // Overriden template methods. - // - /** - * @copydoc GridHandler::getRowInstance() - */ - function getRowInstance() { - import('lib.pkp.controllers.grid.plugins.PluginGridRow'); - return new PluginGridRow($this->getAuthorizedContextObject(ASSOC_TYPE_USER_ROLES)); - } - - /** - * @copydoc GridHandler::authorize() - */ - function authorize($request, &$args, $roleAssignments) { - $categoryName = $request->getUserVar('category'); - $pluginName = $request->getUserVar('plugin'); - - if ($categoryName && $pluginName) { - import('lib.pkp.classes.security.authorization.PluginAccessPolicy'); - switch ($request->getRequestedOp()) { - case 'enable': - case 'disable': - case 'manage': - $accessMode = ACCESS_MODE_MANAGE; - break; - default: - $accessMode = ACCESS_MODE_ADMIN; - break; - } - $this->addPolicy(new PluginAccessPolicy($request, $args, $roleAssignments, $accessMode)); - } else { - import('lib.pkp.classes.security.authorization.ContextAccessPolicy'); - $this->addPolicy(new ContextAccessPolicy($request, $roleAssignments)); - } - return parent::authorize($request, $args, $roleAssignments); - } -} - - diff --git a/controllers/grid/settings/plugins/SettingsPluginGridHandler.php b/controllers/grid/settings/plugins/SettingsPluginGridHandler.php new file mode 100644 index 00000000000..2fd082b5a65 --- /dev/null +++ b/controllers/grid/settings/plugins/SettingsPluginGridHandler.php @@ -0,0 +1,115 @@ +addRoleAssignment($roles, ['manage']); + parent::__construct($roles); + } + + + // + // Extended methods from PluginGridHandler + // + /** + * @copydoc PluginGridHandler::loadCategoryData() + * + * @param null|mixed $filter + */ + public function loadCategoryData($request, &$categoryDataElement, $filter = null) + { + $plugins = parent::loadCategoryData($request, $categoryDataElement, $filter); + + $pressDao = DAORegistry::getDAO('PressDAO'); /** @var PressDAO $pressDao */ + $presses = $pressDao->getAll(); + $firstPress = $presses->next(); + $secondPress = $presses->next(); + $singlePress = $firstPress && !$secondPress; + + $userRoles = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_USER_ROLES); + + $showSitePlugins = false; + if ($singlePress && in_array(Role::ROLE_ID_SITE_ADMIN, $userRoles)) { + $showSitePlugins = true; + } + + if ($showSitePlugins) { + return $plugins; + } else { + $contextLevelPlugins = []; + foreach ($plugins as $plugin) { + if (!$plugin->isSitePlugin()) { + $contextLevelPlugins[$plugin->getName()] = $plugin; + } + } + return $contextLevelPlugins; + } + } + + // + // Overriden template methods. + // + /** + * @copydoc GridHandler::getRowInstance() + */ + public function getRowInstance() + { + return new PluginGridRow($this->getAuthorizedContextObject(Application::ASSOC_TYPE_USER_ROLES)); + } + + /** + * @copydoc GridHandler::authorize() + */ + public function authorize($request, &$args, $roleAssignments) + { + $categoryName = $request->getUserVar('category'); + $pluginName = $request->getUserVar('plugin'); + + if ($categoryName && $pluginName) { + switch ($request->getRequestedOp()) { + case 'enable': + case 'disable': + case 'manage': + $accessMode = PluginAccessPolicy::ACCESS_MODE_MANAGE; + break; + default: + $accessMode = PluginAccessPolicy::ACCESS_MODE_ADMIN; + break; + } + $this->addPolicy(new PluginAccessPolicy($request, $args, $roleAssignments, $accessMode)); + } else { + $this->addPolicy(new ContextAccessPolicy($request, $roleAssignments)); + } + return parent::authorize($request, $args, $roleAssignments); + } +} diff --git a/controllers/grid/settings/series/SeriesGridCellProvider.inc.php b/controllers/grid/settings/series/SeriesGridCellProvider.inc.php deleted file mode 100644 index f7fc89413dd..00000000000 --- a/controllers/grid/settings/series/SeriesGridCellProvider.inc.php +++ /dev/null @@ -1,86 +0,0 @@ -getData(); - $columnId = $column->getId(); - assert(!empty($columnId)); - switch ($columnId) { - case 'inactive': - return array('selected' => $element['inactive']); - } - return parent::getTemplateVarsFromRowColumn($row, $column); - } - - /** - * @see GridCellProvider::getCellActions() - */ - function getCellActions($request, $row, $column, $position = GRID_ACTION_POSITION_DEFAULT) { - switch ($column->getId()) { - case 'inactive': - $element = $row->getData(); /* @var $element DataObject */ - - $router = $request->getRouter(); - import('lib.pkp.classes.linkAction.LinkAction'); - - if ($element['inactive']) { - return array(new LinkAction( - 'activateSeries', - new RemoteActionConfirmationModal( - $request->getSession(), - __('manager.sections.confirmActivateSection'), - null, - $router->url( - $request, - null, - 'grid.settings.series.SeriesGridHandler', - 'activateSeries', - null, - array('seriesKey' => $row->getId()) - ) - ) - )); - } else { - return array(new LinkAction( - 'deactivateSeries', - new RemoteActionConfirmationModal( - $request->getSession(), - __('manager.sections.confirmDeactivateSection'), - null, - $router->url( - $request, - null, - 'grid.settings.series.SeriesGridHandler', - 'deactivateSeries', - null, - array('seriesKey' => $row->getId()) - ) - ) - )); - } - } - return parent::getCellActions($request, $row, $column, $position); - } -} \ No newline at end of file diff --git a/controllers/grid/settings/series/SeriesGridCellProvider.php b/controllers/grid/settings/series/SeriesGridCellProvider.php new file mode 100644 index 00000000000..03fc952e4c6 --- /dev/null +++ b/controllers/grid/settings/series/SeriesGridCellProvider.php @@ -0,0 +1,97 @@ +getData(); + $columnId = $column->getId(); + assert(!empty($columnId)); + switch ($columnId) { + case 'inactive': + return ['selected' => $element['inactive']]; + } + return parent::getTemplateVarsFromRowColumn($row, $column); + } + + /** + * @see GridCellProvider::getCellActions() + */ + public function getCellActions($request, $row, $column, $position = GridHandler::GRID_ACTION_POSITION_DEFAULT) + { + switch ($column->getId()) { + case 'inactive': + $element = $row->getData(); /** @var array $element */ + + $router = $request->getRouter(); + + if ($element['inactive']) { + return [new LinkAction( + 'activateSeries', + new RemoteActionConfirmationModal( + $request->getSession(), + __('manager.sections.confirmActivateSection'), + null, + $router->url( + $request, + null, + 'grid.settings.series.SeriesGridHandler', + 'activateSeries', + null, + ['seriesKey' => $row->getId()] + ) + ) + )]; + } else { + return [new LinkAction( + 'deactivateSeries', + new RemoteActionConfirmationModal( + $request->getSession(), + __('manager.sections.confirmDeactivateSection'), + null, + $router->url( + $request, + null, + 'grid.settings.series.SeriesGridHandler', + 'deactivateSeries', + null, + ['seriesKey' => $row->getId()] + ) + ) + )]; + } + } + return parent::getCellActions($request, $row, $column, $position); + } +} diff --git a/controllers/grid/settings/series/SeriesGridHandler.inc.php b/controllers/grid/settings/series/SeriesGridHandler.inc.php deleted file mode 100644 index d428f6328b9..00000000000 --- a/controllers/grid/settings/series/SeriesGridHandler.inc.php +++ /dev/null @@ -1,352 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_MANAGER), - array('fetchGrid', 'fetchRow', 'addSeries', 'editSeries', 'updateSeries', 'deleteSeries', 'saveSequence', 'deactivateSeries','activateSeries') - ); - } - - - // - // Overridden template methods - // - /* - * @copydoc SetupGridHandler::initialize - */ - function initialize($request, $args = null) { - parent::initialize($request, $args); - $press = $request->getPress(); - - // FIXME are these all required? - AppLocale::requireComponents( - LOCALE_COMPONENT_APP_MANAGER, - LOCALE_COMPONENT_PKP_MANAGER, - LOCALE_COMPONENT_PKP_COMMON, - LOCALE_COMPONENT_PKP_USER, - LOCALE_COMPONENT_APP_COMMON, - LOCALE_COMPONENT_PKP_SUBMISSION - ); - - // Set the grid title. - $this->setTitle('catalog.manage.series'); - - // Elements to be displayed in the grid - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - DAORegistry::getDAO('CategoryDAO'); // Load constants? - $subEditorsDao = DAORegistry::getDAO('SubEditorsDAO'); /* @var $subEditorsDao SubEditorsDAO */ - $seriesIterator = $seriesDao->getByPressId($press->getId()); - - $gridData = array(); - while ($series = $seriesIterator->next()) { - // Get the categories data for the row - $categories = $seriesDao->getCategories($series->getId(), $press->getId()); - $categoriesString = null; - while ($category = $categories->next()) { - if (!empty($categoriesString)) $categoriesString .= ', '; - $categoriesString .= $category->getLocalizedTitle(); - } - if (empty($categoriesString)) $categoriesString = __('common.none'); - - // Get the series editors data for the row - $assignedSeriesEditors = $subEditorsDao->getBySubmissionGroupId($series->getId(), ASSOC_TYPE_SECTION, $press->getId()); - if(empty($assignedSeriesEditors)) { - $editorsString = __('common.none'); - } else { - $editors = array(); - foreach ($assignedSeriesEditors as $seriesEditor) { - $editors[] = $seriesEditor->getFullName(); - } - $editorsString = implode(', ', $editors); - } - - $seriesId = $series->getId(); - $gridData[$seriesId] = array( - 'title' => $series->getLocalizedTitle(), - 'categories' => $categoriesString, - 'editors' => $editorsString, - 'inactive' => $series->getIsInactive(), - 'seq' => $series->getSequence() - ); - } - - $this->setGridDataElements($gridData); - - // Add grid-level actions - $router = $request->getRouter(); - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'addSeries', - new AjaxModal( - $router->url($request, null, null, 'addSeries', null, array('gridId' => $this->getId())), - __('grid.action.addSeries'), - 'modal_manage' - ), - __('grid.action.addSeries'), - 'add_category' - ) - ); - - import('controllers.grid.settings.series.SeriesGridCellProvider'); - $seriesGridCellProvider = new SeriesGridCellProvider(); - // Columns - $this->addColumn( - new GridColumn( - 'title', - 'common.title' - ) - ); - $this->addColumn(new GridColumn('categories', 'grid.category.categories')); - $this->addColumn(new GridColumn('editors', 'user.role.editors')); - // Series 'inactive' - $this->addColumn( - new GridColumn( - 'inactive', - 'common.inactive', - null, - 'controllers/grid/common/cell/selectStatusCell.tpl', - $seriesGridCellProvider, - array('alignment' => COLUMN_ALIGNMENT_CENTER, - 'width' => 20) - ) - ); - } - - // - // Overridden methods from GridHandler - // - /** - * @copydoc GridHandler::initFeatures() - */ - function initFeatures($request, $args) { - import('lib.pkp.classes.controllers.grid.feature.OrderGridItemsFeature'); - return array(new OrderGridItemsFeature()); - } - - /** - * Get the list of "publish data changed" events. - * Used to update the site context switcher upon create/delete. - * @return array - */ - function getPublishChangeEvents() { - return array('updateSidebar'); - } - - /** - * Get the row handler - override the default row handler - * @return SeriesGridRow - */ - function getRowInstance() { - return new SeriesGridRow(); - } - - /** - * @copydoc GridHandler::getDataElementSequence() - */ - function getDataElementSequence($gridDataElement) { - return $gridDataElement['seq']; - } - - /** - * @copydoc GridHandler::setDataElementSequence() - */ - function setDataElementSequence($request, $rowId, $gridDataElement, $newSequence) { - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $press = $request->getPress(); - $series = $seriesDao->getById($rowId, $press->getId()); - $series->setSequence($newSequence); - $seriesDao->updateObject($series); - } - - // - // Public Series Grid Actions - // - /** - * An action to add a new series - * @param $args array - * @param $request PKPRequest - */ - function addSeries($args, $request) { - // Calling editSeries with an empty ID will add - // a new series. - return $this->editSeries($args, $request); - } - - /** - * An action to edit a series - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editSeries($args, $request) { - $seriesId = isset($args['seriesId']) ? $args['seriesId'] : null; - $this->setupTemplate($request); - - import('controllers.grid.settings.series.form.SeriesForm'); - $seriesForm = new SeriesForm($request, $seriesId); - $seriesForm->initData(); - return new JSONMessage(true, $seriesForm->fetch($request)); - } - - /** - * Update a series - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateSeries($args, $request) { - $seriesId = $request->getUserVar('seriesId'); - - import('controllers.grid.settings.series.form.SeriesForm'); - $seriesForm = new SeriesForm($request, $seriesId); - $seriesForm->readInputData(); - - if ($seriesForm->validate()) { - $seriesForm->execute(); - $notificationManager = new NotificationManager(); - $notificationManager->createTrivialNotification($request->getUser()->getId()); - return DAO::getDataChangedEvent($seriesForm->getSeriesId()); - } else { - return new JSONMessage(false); - } - } - - /** - * Delete a series - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deleteSeries($args, $request) { - $press = $request->getPress(); - - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById( - $request->getUserVar('seriesId'), - $press->getId() - ); - - if (isset($series)) { - $result = $seriesDao->getByContextId($press->getId()); - $activeSeriesCount = (!$series->getIsInactive()) ? -1 : 0; - while (!$result->eof()) { - if (!$result->next()->getIsInactive()) { - $activeSeriesCount++; - } - } - if ($activeSeriesCount < 1) { - return new JSONMessage(false, __('manager.series.confirmDeactivateSeries.error')); - return false; - } - - $seriesDao->deleteObject($series); - return DAO::getDataChangedEvent($series->getId()); - } else { - AppLocale::requireComponents(LOCALE_COMPONENT_PKP_MANAGER); // manager.setup.errorDeletingItem - return new JSONMessage(false, __('manager.setup.errorDeletingItem')); - } - } - - /** - * Deactivate a series. - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deactivateSeries($args, $request) { - // Identify the current series - $seriesId = (int) $request->getUserVar('seriesKey'); - - // Identify the context id. - $context = $request->getContext(); - - // Get series object - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - // Validate if it can be inactive - $seriesIterator = $seriesDao->getByContextId($context->getId(),null,false); - $activeSeriesCount = 0; - while ($series = $seriesIterator->next()) { - if (!$series->getIsInactive()) { - $activeSeriesCount++; - } - } - if ($activeSeriesCount > 1) { - $series = $seriesDao->getById($seriesId, $context->getId()); - - if ($request->checkCSRF() && isset($series) && !$series->getIsInactive()) { - $series->setIsInactive(1); - $seriesDao->updateObject($series); - - // Create the notification. - $notificationMgr = new NotificationManager(); - $user = $request->getUser(); - $notificationMgr->createTrivialNotification($user->getId()); - - return DAO::getDataChangedEvent($seriesId); - } - } else { - // Create the notification. - $notificationMgr = new NotificationManager(); - $user = $request->getUser(); - $notificationMgr->createTrivialNotification($user->getId(), NOTIFICATION_TYPE_ERROR, array('contents' => __('manager.series.confirmDeactivateSeries.error'))); - return DAO::getDataChangedEvent($seriesId); - } - - return new JSONMessage(false); - } - - /** - * Activate a series. - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function activateSeries($args, $request) { - - // Identify the current series - $seriesId = (int) $request->getUserVar('seriesKey'); - - // Identify the context id. - $context = $request->getContext(); - - // Get series object - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($seriesId, $context->getId()); - - if ($request->checkCSRF() && isset($series) && $series->getIsInactive()) { - $series->setIsInactive(0); - $seriesDao->updateObject($series); - - // Create the notification. - $notificationMgr = new NotificationManager(); - $user = $request->getUser(); - $notificationMgr->createTrivialNotification($user->getId()); - - return DAO::getDataChangedEvent($seriesId); - } - - return new JSONMessage(false); - } -} diff --git a/controllers/grid/settings/series/SeriesGridHandler.php b/controllers/grid/settings/series/SeriesGridHandler.php new file mode 100644 index 00000000000..3acfab2828a --- /dev/null +++ b/controllers/grid/settings/series/SeriesGridHandler.php @@ -0,0 +1,366 @@ +addRoleAssignment( + [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ['fetchGrid', 'fetchRow', 'addSeries', 'editSeries', 'updateSeries', 'deleteSeries', 'saveSequence', 'deactivateSeries','activateSeries'] + ); + } + + + // + // Overridden template methods + // + /** + * @copydoc SetupGridHandler::initialize + * + * @param null|mixed $args + */ + public function initialize($request, $args = null) + { + parent::initialize($request, $args); + $press = $request->getPress(); + + // Set the grid title. + $this->setTitle('catalog.manage.series'); + + // Elements to be displayed in the grid + $subEditorsDao = DAORegistry::getDAO('SubEditorsDAO'); /** @var SubEditorsDAO $subEditorsDao */ + $seriesIterator = Repo::section() + ->getCollector() + ->filterByContextIds([$press->getId()]) + ->getMany(); + + $gridData = []; + foreach ($seriesIterator as $series) { + // Get the categories data for the row + $categories = Repo::section()->getAssignedCategories($series->getId(), $press->getId()); + $categoriesString = null; + foreach ($categories as $category) { + if (!empty($categoriesString)) { + $categoriesString .= ', '; + } + $categoriesString .= $category->getLocalizedTitle(); + } + if (empty($categoriesString)) { + $categoriesString = __('common.none'); + } + + // Get the series editors data for the row + $assignments = $subEditorsDao->getBySubmissionGroupIds([$series->getId()], Application::ASSOC_TYPE_SECTION, $press->getId()); + $assignedSeriesEditors = Repo::user() + ->getCollector() + ->filterByUserIds( + $assignments + ->map(fn (stdClass $assignment) => $assignment->userId) + ->filter() + ->toArray() + ) + ->getMany(); + if ($assignedSeriesEditors->empty()) { + $editorsString = __('common.none'); + } else { + $editors = []; + foreach ($assignedSeriesEditors as $seriesEditor) { + $editors[] = $seriesEditor->getFullName(); + } + $editorsString = implode(', ', $editors); + } + + $seriesId = $series->getId(); + $gridData[$seriesId] = [ + 'title' => $series->getLocalizedTitle(), + 'categories' => $categoriesString, + 'editors' => $editorsString, + 'inactive' => $series->getIsInactive(), + 'seq' => $series->getSequence() + ]; + } + + $this->setGridDataElements($gridData); + + // Add grid-level actions + $router = $request->getRouter(); + $this->addAction( + new LinkAction( + 'addSeries', + new AjaxModal( + $router->url($request, null, null, 'addSeries', null, ['gridId' => $this->getId()]), + __('grid.action.addSeries'), + 'modal_manage' + ), + __('grid.action.addSeries'), + 'add_category' + ) + ); + + $seriesGridCellProvider = new SeriesGridCellProvider(); + // Columns + $this->addColumn( + new GridColumn( + 'title', + 'common.title' + ) + ); + $this->addColumn(new GridColumn('categories', 'grid.category.categories')); + $this->addColumn(new GridColumn('editors', 'user.role.editors')); + // Series 'inactive' + $this->addColumn( + new GridColumn( + 'inactive', + 'common.inactive', + null, + 'controllers/grid/common/cell/selectStatusCell.tpl', + $seriesGridCellProvider, + ['alignment' => GridColumn::COLUMN_ALIGNMENT_CENTER, + 'width' => 20] + ) + ); + } + + // + // Overridden methods from GridHandler + // + /** + * @copydoc GridHandler::initFeatures() + */ + public function initFeatures($request, $args) + { + return [new OrderGridItemsFeature()]; + } + + /** + * Get the list of "publish data changed" events. + * Used to update the site context switcher upon create/delete. + * + * @return array + */ + public function getPublishChangeEvents() + { + return ['updateSidebar']; + } + + /** + * Get the row handler - override the default row handler + * + * @return SeriesGridRow + */ + public function getRowInstance() + { + return new SeriesGridRow(); + } + + /** + * @copydoc GridHandler::getDataElementSequence() + */ + public function getDataElementSequence($gridDataElement) + { + return $gridDataElement['seq']; + } + + /** + * @copydoc GridHandler::setDataElementSequence() + */ + public function setDataElementSequence($request, $rowId, $gridDataElement, $newSequence) + { + $press = $request->getPress(); + $series = Repo::section()->get($rowId, $press->getId()); + $series->setSequence($newSequence); + Repo::section()->edit($series, []); + } + + // + // Public Series Grid Actions + // + /** + * An action to add a new series + * + * @param array $args + * @param Request $request + */ + public function addSeries($args, $request) + { + // Calling editSeries with an empty ID will add + // a new series. + return $this->editSeries($args, $request); + } + + /** + * An action to edit a series + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editSeries($args, $request) + { + $seriesId = $args['seriesId'] ?? null; + $this->setupTemplate($request); + + $seriesForm = new SeriesForm($request, $seriesId); + $seriesForm->initData(); + return new JSONMessage(true, $seriesForm->fetch($request)); + } + + /** + * Update a series + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateSeries($args, $request) + { + $seriesId = $request->getUserVar('seriesId'); + + $seriesForm = new SeriesForm($request, $seriesId); + $seriesForm->readInputData(); + + if ($seriesForm->validate()) { + $seriesForm->execute(); + $notificationManager = new NotificationManager(); + $notificationManager->createTrivialNotification($request->getUser()->getId()); + return DAO::getDataChangedEvent($seriesForm->getSeriesId()); + } else { + return new JSONMessage(false); + } + } + + /** + * Delete a series + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deleteSeries($args, $request) + { + $press = $request->getPress(); + $series = Repo::section()->get($request->getUserVar('seriesId'), $press->getId()); + + if (!$series) { + return new JSONMessage(false, __('manager.setup.errorDeletingItem')); + } + + // Validate if it can be deleted + $seriesEmpty = Repo::section()->isEmpty($series->getId(), $press->getId()); + if (!$seriesEmpty) { + return new JSONMessage(false, __('manager.sections.alertDelete')); + } + + Repo::section()->delete($series); + + return DAO::getDataChangedEvent($series->getId()); + } + + /** + * Deactivate a series. + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deactivateSeries($args, $request) + { + // Identify the current series + $seriesId = (int) $request->getUserVar('seriesKey'); + + // Identify the context id. + $context = $request->getContext(); + + // Validate if it can be inactive + $series = Repo::section()->get($seriesId, $context->getId()); + if ($request->checkCSRF() && isset($series) && !$series->getIsInactive()) { + $series->setIsInactive(1); + Repo::section()->edit($series, []); + + // Create the notification. + $notificationMgr = new NotificationManager(); + $user = $request->getUser(); + $notificationMgr->createTrivialNotification($user->getId()); + + return DAO::getDataChangedEvent($seriesId); + } + + return new JSONMessage(false); + } + + /** + * Activate a series. + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function activateSeries($args, $request) + { + // Identify the current series + $seriesId = (int) $request->getUserVar('seriesKey'); + + // Identify the context id. + $context = $request->getContext(); + + // Get series object + $series = Repo::section()->get($seriesId, $context->getId()); + + if ($request->checkCSRF() && isset($series) && $series->getIsInactive()) { + $series->setIsInactive(0); + Repo::section()->edit($series, []); + + // Create the notification. + $notificationMgr = new NotificationManager(); + $user = $request->getUser(); + $notificationMgr->createTrivialNotification($user->getId()); + + return DAO::getDataChangedEvent($seriesId); + } + + return new JSONMessage(false); + } +} diff --git a/controllers/grid/settings/series/SeriesGridRow.inc.php b/controllers/grid/settings/series/SeriesGridRow.inc.php deleted file mode 100644 index 431801b4964..00000000000 --- a/controllers/grid/settings/series/SeriesGridRow.inc.php +++ /dev/null @@ -1,87 +0,0 @@ -setupTemplate($request); - - // Is this a new row or an existing row? - $seriesId = $this->getId(); - if (!empty($seriesId) && is_numeric($seriesId)) { - $router = $request->getRouter(); - - import('lib.pkp.classes.linkAction.request.AjaxModal'); - $this->addAction( - new LinkAction( - 'editSeries', - new AjaxModal( - $router->url($request, null, null, 'editSeries', null, array('seriesId' => $seriesId)), - __('grid.action.edit'), - 'modal_edit', - true), - __('grid.action.edit'), - 'edit' - ) - ); - - import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal'); - $this->addAction( - new LinkAction( - 'deleteSeries', - new RemoteActionConfirmationModal( - $request->getSession(), - __('common.confirmDelete'), - __('grid.action.delete'), - $router->url($request, null, null, 'deleteSeries', null, array('seriesId' => $seriesId)), 'modal_delete' - ), - __('grid.action.delete'), - 'delete' - ) - ); - } - } - - /** - * @see PKPHandler::setupTemplate() - */ - function setupTemplate($request) { - // Load manager translations. FIXME are these needed? - AppLocale::requireComponents( - LOCALE_COMPONENT_APP_MANAGER, - LOCALE_COMPONENT_PKP_COMMON, - LOCALE_COMPONENT_PKP_USER, - LOCALE_COMPONENT_APP_COMMON - ); - } -} - - diff --git a/controllers/grid/settings/series/SeriesGridRow.php b/controllers/grid/settings/series/SeriesGridRow.php new file mode 100644 index 00000000000..542e8901966 --- /dev/null +++ b/controllers/grid/settings/series/SeriesGridRow.php @@ -0,0 +1,73 @@ +getId(); + if (!empty($seriesId) && is_numeric($seriesId)) { + $router = $request->getRouter(); + + $this->addAction( + new LinkAction( + 'editSeries', + new AjaxModal( + $router->url($request, null, null, 'editSeries', null, ['seriesId' => $seriesId]), + __('grid.action.edit'), + 'modal_edit', + true + ), + __('grid.action.edit'), + 'edit' + ) + ); + + $this->addAction( + new LinkAction( + 'deleteSeries', + new RemoteActionConfirmationModal( + $request->getSession(), + __('common.confirmDelete'), + __('grid.action.delete'), + $router->url($request, null, null, 'deleteSeries', null, ['seriesId' => $seriesId]), + 'modal_delete' + ), + __('grid.action.delete'), + 'delete' + ) + ); + } + } +} diff --git a/controllers/grid/settings/series/form/SeriesForm.inc.php b/controllers/grid/settings/series/form/SeriesForm.inc.php deleted file mode 100644 index 7f2fe58d714..00000000000 --- a/controllers/grid/settings/series/form/SeriesForm.inc.php +++ /dev/null @@ -1,363 +0,0 @@ -_pressId = $pressId = $request->getContext()->getId(); - - // Validation checks for this form - $form = $this; - $this->addCheck(new FormValidatorLocale($this, 'title', 'required', 'manager.setup.form.series.nameRequired')); - $this->addCheck(new FormValidatorISSN($this, 'onlineIssn', 'optional', 'catalog.manage.series.issn.validation')); - $this->addCheck(new FormValidatorISSN($this, 'printIssn', 'optional', 'catalog.manage.series.issn.validation')); - $this->addCheck(new FormValidatorCustom($this, 'printIssn', 'optional', 'catalog.manage.series.issn.equalValidation', function($printIssn) use ($form) { - return !($form->getData('onlineIssn') != '' && $form->getData('onlineIssn') == $printIssn); - })); - $this->addCheck(new FormValidatorRegExp($this, 'path', 'required', 'grid.series.pathAlphaNumeric', '/^[a-zA-Z0-9\/._-]+$/')); - $this->addCheck(new FormValidatorCustom( - $this, 'path', 'required', 'grid.series.pathExists', - function($path) use ($form, $pressId) { - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - return !$seriesDao->getByPath($path,$pressId) || ($form->getData('oldPath') != null && $form->getData('oldPath') == $path); - })); - } - - /** - * Initialize form data from current settings. - */ - function initData() { - $request = Application::get()->getRequest(); - $press = $request->getPress(); - - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $seriesId = $this->getSeriesId(); - if ($seriesId) { - $series = $seriesDao->getById($seriesId, $press->getId()); - } - - $categories = $seriesDao->getCategories($seriesId, $press->getId()); - $categoryIds = array(); - while ($category = $categories->next()) { - $categoryIds[] = $category->getId(); - } - - if (isset($series) ) { - $sortOption = $series->getSortOption() ? $series->getSortOption() : DAORegistry::getDAO('SubmissionDAO')->getDefaultSortOption(); - $this->_data = array( - 'seriesId' => $seriesId, - 'title' => $series->getTitle(null, false), - 'featured' => $series->getFeatured(), - 'path' => $series->getPath(), - 'description' => $series->getDescription(null), - 'prefix' => $series->getPrefix(null), - 'subtitle' => $series->getSubtitle(null), - 'image' => $series->getImage(), - 'restricted' => $series->getEditorRestricted(), - 'isInactive' => $series->getIsInactive(), - 'onlineIssn' => $series->getOnlineISSN(), - 'printIssn' => $series->getPrintISSN(), - 'sortOption' => $sortOption, - 'categories' => $categoryIds, - ); - } - - return parent::initData(); - } - - /** - * @see Form::validate() - */ - function validate($callHooks = true) { - if ($temporaryFileId = $this->getData('temporaryFileId')) { - import('lib.pkp.classes.file.TemporaryFileManager'); - $temporaryFileManager = new TemporaryFileManager(); - $temporaryFileDao = DAORegistry::getDAO('TemporaryFileDAO'); /* @var $temporaryFileDao TemporaryFileDAO */ - $temporaryFile = $temporaryFileDao->getTemporaryFile($temporaryFileId, $this->_userId); - if ( !$temporaryFile || - !($this->_imageExtension = $temporaryFileManager->getImageExtension($temporaryFile->getFileType())) || - !($this->_sizeArray = getimagesize($temporaryFile->getFilePath())) || - $this->_sizeArray[0] <= 0 || $this->_sizeArray[1] <= 0 - ) { - $this->addError('temporaryFileId', __('form.invalidImage')); - return false; - } - } - - // Validate if it can be inactive - if ($this->getData('isInactive')) { - $request = Application::get()->getRequest(); - $context = $request->getContext(); - $seriesId = $this->getSeriesId(); - - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $seriesIterator = $seriesDao->getByContextId($context->getId()); - $activeSeriesCount = 0; - while ($series = $seriesIterator->next()) { - if (!$series->getIsInactive() && ($seriesId != $series->getId())) { - $activeSeriesCount++; - } - } - if ($activeSeriesCount < 1 && $this->getData('isInactive')) { - $this->addError('isInactive', __('manager.series.confirmDeactivateSeries.error')); - } - } - - return parent::validate($callHooks); - } - - /** - * @copydoc PKPSectionForm::fetch() - */ - function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('seriesId', $this->getSeriesId()); - - $context = $request->getContext(); - - $categoryDao = DAORegistry::getDAO('CategoryDAO'); /* @var $categoryDao CategoryDAO */ - $categoryCount = $categoryDao->getCountByContextId($context->getId()); - $templateMgr->assign('categoryCount', $categoryCount); - - // Sort options. - $templateMgr->assign('sortOptions', DAORegistry::getDAO('SubmissionDAO')->getSortSelectOptions()); - - // Series Editors - $usersIterator = Services::get('user')->getMany([ - 'contextId' => $context->getId(), - 'roleIds' => ROLE_ID_SUB_EDITOR, - ]); - $availableSubeditors = []; - foreach ($usersIterator as $user) { - $availableSubeditors[(int) $user->getId()] = $user->getFullName(); - } - $assignedToSeries = []; - if ($this->getSeriesId()) { - $assignedToSeries = Services::get('user')->getIds([ - 'contextId' => $context->getId(), - 'roleIds' => ROLE_ID_SUB_EDITOR, - 'assignedToSection' => (int) $this->getSeriesId(), - ]); - } - - // Categories list - $allCategories = []; - $categoryDao = DAORegistry::getDAO('CategoryDAO'); /* @var $categoryDao CategoryDAO */ - $categoriesResult = $categoryDao->getByContextId($context->getId())->toAssociativeArray(); - foreach ($categoriesResult as $category) { - $title = $category->getLocalizedTitle(); - if ($category->getParentId()) { - $title = $categoriesResult[$category->getParentId()]->getLocalizedTitle() . ' > ' . $title; - } - $allCategories[(int) $category->getId()] = $title; - } - - $templateMgr->assign([ - 'availableSubeditors' => $availableSubeditors, - 'assignedToSeries' => $assignedToSeries, - 'allCategories' => $allCategories, - 'selectedCategories' => (array) $this->getData('categories'), - ]); - - return parent::fetch($request, $template, $display); - } - - /** - * Assign form data to user-submitted data. - * @see Form::readInputData() - */ - function readInputData() { - parent::readInputData(); - $this->readUserVars(array('seriesId', 'path', 'featured', 'restricted', 'description', 'categories', 'prefix', 'subtitle', 'temporaryFileId', 'onlineIssn', 'printIssn', 'sortOption', 'isInactive')); - // For path duplicate checking; excuse the current path. - if ($seriesId = $this->getSeriesId()) { - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($seriesId, $this->_pressId); - $this->setData('oldPath', $series->getPath()); - } - } - - /** - * Save series. - */ - function execute(...$functionParams) { - parent::execute(...$functionParams); - - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $request = Application::get()->getRequest(); - $press = $request->getPress(); - - // Get or create the series object - if ($this->getSeriesId()) { - $series = $seriesDao->getById($this->getSeriesId(), $press->getId()); - } else { - $series = $seriesDao->newDataObject(); - $series->setPressId($press->getId()); - } - - // Populate/update the series object from the form - $series->setPath($this->getData('path')); - $series->setFeatured($this->getData('featured')); - $series->setTitle($this->getData('title'), null); // Localized - $series->setDescription($this->getData('description'), null); // Localized - $series->setPrefix($this->getData('prefix'), null); // Localized - $series->setSubtitle($this->getData('subtitle'), null); // Localized - $series->setEditorRestricted($this->getData('restricted')); - $series->setIsInactive($this->getData('isInactive') ? 1 : 0); - $series->setOnlineISSN($this->getData('onlineIssn')); - $series->setPrintISSN($this->getData('printIssn')); - $series->setSortOption($this->getData('sortOption')); - - // Insert or update the series in the DB - if ($this->getSeriesId()) { - $seriesDao->updateObject($series); - } else { - $this->setSeriesId($seriesDao->insertObject($series)); - } - - // Handle the image upload if there was one. - if ($temporaryFileId = $this->getData('temporaryFileId')) { - // Fetch the temporary file storing the uploaded library file - $temporaryFileDao = DAORegistry::getDAO('TemporaryFileDAO'); /* @var $temporaryFileDao TemporaryFileDAO */ - - $temporaryFile = $temporaryFileDao->getTemporaryFile($temporaryFileId, $this->_userId); - $temporaryFilePath = $temporaryFile->getFilePath(); - import('lib.pkp.classes.file.ContextFileManager'); - $pressFileManager = new ContextFileManager($press->getId()); - $basePath = $pressFileManager->getBasePath() . '/series/'; - - // Delete the old file if it exists - $oldSetting = $series->getImage(); - if ($oldSetting) { - $pressFileManager->deleteByPath($basePath . $oldSetting['thumbnailName']); - $pressFileManager->deleteByPath($basePath . $oldSetting['name']); - } - - // The following variables were fetched in validation - assert($this->_sizeArray && $this->_imageExtension); - - // Generate the surrogate image. - switch ($this->_imageExtension) { - case '.jpg': $image = imagecreatefromjpeg($temporaryFilePath); break; - case '.png': $image = imagecreatefrompng($temporaryFilePath); break; - case '.gif': $image = imagecreatefromgif($temporaryFilePath); break; - default: $image = null; // Suppress warn - } - assert($image); - - $coverThumbnailsMaxWidth = $press->getSetting('coverThumbnailsMaxWidth'); - $coverThumbnailsMaxHeight = $press->getSetting('coverThumbnailsMaxHeight'); - - $thumbnailFilename = $series->getId() . '-series-thumbnail' . $this->_imageExtension; - $xRatio = min(1, $coverThumbnailsMaxWidth / $this->_sizeArray[0]); - $yRatio = min(1, $coverThumbnailsMaxHeight / $this->_sizeArray[1]); - - $ratio = min($xRatio, $yRatio); - - $thumbnailWidth = round($ratio * $this->_sizeArray[0]); - $thumbnailHeight = round($ratio * $this->_sizeArray[1]); - $thumbnail = imagecreatetruecolor($thumbnailWidth, $thumbnailHeight); - imagecopyresampled($thumbnail, $image, 0, 0, 0, 0, $thumbnailWidth, $thumbnailHeight, $this->_sizeArray[0], $this->_sizeArray[1]); - - // Copy the new file over - $filename = $series->getId() . '-series' . $this->_imageExtension; - $pressFileManager->copyFile($temporaryFile->getFilePath(), $basePath . $filename); - - switch ($this->_imageExtension) { - case '.jpg': imagejpeg($thumbnail, $basePath . $thumbnailFilename); break; - case '.png': imagepng($thumbnail, $basePath . $thumbnailFilename); break; - case '.gif': imagegif($thumbnail, $basePath . $thumbnailFilename); break; - } - imagedestroy($thumbnail); - imagedestroy($image); - - $series->setImage(array( - 'name' => $filename, - 'width' => $this->_sizeArray[0], - 'height' => $this->_sizeArray[1], - 'thumbnailName' => $thumbnailFilename, - 'thumbnailWidth' => $thumbnailWidth, - 'thumbnailHeight' => $thumbnailHeight, - 'uploadName' => $temporaryFile->getOriginalFileName(), - 'dateUploaded' => Core::getCurrentDate(), - )); - - // Clean up the temporary file - import('lib.pkp.classes.file.TemporaryFileManager'); - $temporaryFileManager = new TemporaryFileManager(); - $temporaryFileManager->deleteById($temporaryFileId, $this->_userId); - } - - // Update series object to store image information. - $seriesDao->updateObject($series); - - // Update series editors - $subEditorsDao = DAORegistry::getDAO('SubEditorsDAO'); /* @var $subEditorsDao SubEditorsDAO */ - $subEditorsDao->deleteBySubmissionGroupId($series->getId(), ASSOC_TYPE_SERIES, $series->getContextId()); - $subEditors = $this->getData('subEditors'); - if (!empty($subEditors)) { - $roleDao = DAORegistry::getDAO('RoleDAO'); /* @var $roleDao RoleDAO */ - foreach ($subEditors as $subEditor) { - if ($roleDao->userHasRole($series->getContextId(), $subEditor, ROLE_ID_SUB_EDITOR)) { - $subEditorsDao->insertEditor($series->getContextId(), $series->getId(), $subEditor, ASSOC_TYPE_SERIES); - } - } - } - - // Save the category associations. - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $seriesDao->removeCategories($this->getSeriesId()); - $categoryIds = $this->getData('categories'); - if (!empty($categoryIds)) { - foreach ($categoryIds as $categoryId) { - $seriesDao->addCategory($this->getSeriesId(), $categoryId); - } - } - - return true; - } - - /** - * Get the series ID for this series. - * @return int - */ - function getSeriesId() { - return $this->getSectionId(); - } - - /** - * Set the series ID for this series. - * @param $seriesId int - */ - function setSeriesId($seriesId) { - $this->setSectionId($seriesId); - } -} diff --git a/controllers/grid/settings/series/form/SeriesForm.php b/controllers/grid/settings/series/form/SeriesForm.php new file mode 100644 index 00000000000..ee4d2bd113e --- /dev/null +++ b/controllers/grid/settings/series/form/SeriesForm.php @@ -0,0 +1,360 @@ +_pressId = $pressId = $request->getContext()->getId(); + + // Validation checks for this form + $form = $this; + $this->addCheck(new \PKP\form\validation\FormValidatorLocale($this, 'title', 'required', 'manager.setup.form.series.nameRequired')); + $this->addCheck(new \PKP\form\validation\FormValidatorISSN($this, 'onlineIssn', 'optional', 'catalog.manage.series.issn.validation')); + $this->addCheck(new \PKP\form\validation\FormValidatorISSN($this, 'printIssn', 'optional', 'catalog.manage.series.issn.validation')); + $this->addCheck(new \PKP\form\validation\FormValidatorCustom($this, 'printIssn', 'optional', 'catalog.manage.series.issn.equalValidation', function ($printIssn) use ($form) { + return !($form->getData('onlineIssn') != '' && $form->getData('onlineIssn') == $printIssn); + })); + $this->addCheck(new \PKP\form\validation\FormValidatorRegExp($this, 'path', 'required', 'grid.series.pathAlphaNumeric', '/^[a-zA-Z0-9\/._-]+$/')); + $this->addCheck(new \PKP\form\validation\FormValidatorCustom( + $this, + 'path', + 'required', + 'grid.series.pathExists', + function ($path) use ($form, $pressId) { + return !Repo::section()->getByPath($path, $pressId) || ($form->getData('oldPath') != null && $form->getData('oldPath') == $path); + } + )); + } + + public function getSeries(): ?Section + { + return $this->section; + } + + public function setSeries(Section $series): void + { + $this->section = $series; + } + + /** + * Initialize form data from current settings. + */ + public function initData() + { + $request = Application::get()->getRequest(); + $context = $request->getContext(); + + $seriesId = $this->getSeriesId(); + if ($seriesId) { + $series = Repo::section()->get($seriesId, $context->getId()); + if ($series) { + $this->setSeries($series); + $categoryIds = Repo::section()->getAssignedCategoryIds($series->getId()); + } + } + + if ($this->getSeries() !== null) { + $sortOption = $this->getSeries()->getSortOption() ? $this->getSeries()->getSortOption() : Repo::submission()->getDefaultSortOption(); + $this->_data = [ + 'seriesId' => $this->getSeries()->getId(), + 'title' => $this->getSeries()->getTitle(null, false), + 'featured' => $this->getSeries()->getFeatured(), + 'path' => $this->getSeries()->getPath(), + 'description' => $this->getSeries()->getDescription(null), + 'prefix' => $this->getSeries()->getPrefix(null), + 'subtitle' => $this->getSeries()->getSubtitle(null), + 'image' => $this->getSeries()->getImage(), + 'editorRestricted' => $this->getSeries()->getEditorRestricted(), + 'isInactive' => $this->getSeries()->getIsInactive(), + 'onlineIssn' => $this->getSeries()->getOnlineISSN(), + 'printIssn' => $this->getSeries()->getPrintISSN(), + 'sortOption' => $sortOption, + 'categories' => $categoryIds ?? [] + ]; + } + + return parent::initData(); + } + + /** + * @see Form::validate() + */ + public function validate($callHooks = true) + { + if ($temporaryFileId = $this->getData('temporaryFileId')) { + $temporaryFileManager = new TemporaryFileManager(); + $temporaryFileDao = DAORegistry::getDAO('TemporaryFileDAO'); + /** @var TemporaryFileDAO $temporaryFileDao */ + $temporaryFile = $temporaryFileDao->getTemporaryFile($temporaryFileId, $this->_userId); + if ( + !$temporaryFile || + !($this->_imageExtension = $temporaryFileManager->getImageExtension($temporaryFile->getFileType())) || + !($this->_sizeArray = getimagesize($temporaryFile->getFilePath())) || + $this->_sizeArray[0] <= 0 || $this->_sizeArray[1] <= 0 + ) { + $this->addError('temporaryFileId', __('form.invalidImage')); + return false; + } + } + + return parent::validate($callHooks); + } + + /** + * @copydoc PKPSectionForm::fetch() + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign('seriesId', $this->getSeriesId()); + + $context = $request->getContext(); + + // Sort options. + $templateMgr->assign('sortOptions', Repo::submission()->getSortSelectOptions()); + + // Categories list + $allCategories = []; + $categories = Repo::category()->getCollector() + ->filterByContextIds([$context->getId()]) + ->getMany() + ->toArray(); + + foreach ($categories as $category) { + $title = $category->getLocalizedTitle(); + if ($category->getParentId()) { + $title = $categories[$category->getParentId()]->getLocalizedTitle() . ' > ' . $title; + } + $allCategories[(int) $category->getId()] = $title; + } + + $templateMgr->assign([ + 'allCategories' => $allCategories, + 'selectedCategories' => $this->getData('categories')?->values()?->all() ?? [], + ]); + + return parent::fetch($request, $template, $display); + } + + /** + * Assign form data to user-submitted data. + * + * @see Form::readInputData() + */ + public function readInputData() + { + parent::readInputData(); + $this->readUserVars(['seriesId', 'path', 'featured', 'editorRestricted', 'description', 'categories', 'prefix', 'subtitle', 'temporaryFileId', 'onlineIssn', 'printIssn', 'sortOption', 'isInactive']); + // For path duplicate checking; excuse the current path. + if ($seriesId = $this->getSeriesId()) { + $series = Repo::section()->get($seriesId, $this->_pressId); + $this->setData('oldPath', $series->getPath()); + } + } + + /** + * Save series. + */ + public function execute(...$functionParams) + { + $request = Application::get()->getRequest(); + $press = $request->getPress(); + + // Get or create the series object + if ($this->getSeriesId()) { + $series = Repo::section()->get($this->getSeriesId(), $press->getId()); + } else { + $series = Repo::section()->newDataObject(); + $series->setContextId($press->getId()); + $series->setImage([]); + } + + // Populate/update the series object from the form + $series->setPath($this->getData('path')); + $series->setFeatured($this->getData('featured') ? 1 : 0); + $series->setTitle($this->getData('title'), null); // Localized + $series->setDescription($this->getData('description'), null); // Localized + $series->setPrefix($this->getData('prefix'), null); // Localized + $series->setSubtitle($this->getData('subtitle'), null); // Localized + $series->setEditorRestricted($this->getData('editorRestricted') ? 1 : 0); + $series->setIsInactive($this->getData('isInactive') ? 1 : 0); + $series->setOnlineISSN($this->getData('onlineIssn')); + $series->setPrintISSN($this->getData('printIssn')); + $series->setSortOption($this->getData('sortOption')); + + // Insert or update the series in the DB + if ($this->getSeriesId()) { + Repo::section()->edit($series, []); + } else { + $this->setSeriesId(Repo::section()->add($series)); + } + + // Handle the image upload if there was one. + if ($temporaryFileId = $this->getData('temporaryFileId')) { + // Fetch the temporary file storing the uploaded library file + $temporaryFileDao = DAORegistry::getDAO('TemporaryFileDAO'); + /** @var TemporaryFileDAO $temporaryFileDao */ + + $temporaryFile = $temporaryFileDao->getTemporaryFile($temporaryFileId, $this->_userId); + $temporaryFilePath = $temporaryFile->getFilePath(); + $pressFileManager = new ContextFileManager($press->getId()); + $basePath = $pressFileManager->getBasePath() . '/series/'; + + // Delete the old file if it exists + $oldSetting = $series->getImage(); + if ($oldSetting) { + $pressFileManager->deleteByPath($basePath . $oldSetting['thumbnailName']); + $pressFileManager->deleteByPath($basePath . $oldSetting['name']); + } + + // The following variables were fetched in validation + assert($this->_sizeArray && $this->_imageExtension); + + // Generate the surrogate image. + switch ($this->_imageExtension) { + case '.jpg': + $image = imagecreatefromjpeg($temporaryFilePath); + break; + case '.png': + $image = imagecreatefrompng($temporaryFilePath); + break; + case '.gif': + $image = imagecreatefromgif($temporaryFilePath); + break; + default: + $image = null; // Suppress warn + } + assert($image); + + $coverThumbnailsMaxWidth = $press->getSetting('coverThumbnailsMaxWidth'); + $coverThumbnailsMaxHeight = $press->getSetting('coverThumbnailsMaxHeight'); + + $thumbnailFilename = $series->getId() . '-series-thumbnail' . $this->_imageExtension; + $xRatio = min(1, $coverThumbnailsMaxWidth / $this->_sizeArray[0]); + $yRatio = min(1, $coverThumbnailsMaxHeight / $this->_sizeArray[1]); + + $ratio = min($xRatio, $yRatio); + + $thumbnailWidth = round($ratio * $this->_sizeArray[0]); + $thumbnailHeight = round($ratio * $this->_sizeArray[1]); + $thumbnail = imagecreatetruecolor($thumbnailWidth, $thumbnailHeight); + imagecopyresampled($thumbnail, $image, 0, 0, 0, 0, $thumbnailWidth, $thumbnailHeight, $this->_sizeArray[0], $this->_sizeArray[1]); + + // Copy the new file over + $filename = $series->getId() . '-series' . $this->_imageExtension; + $pressFileManager->copyFile($temporaryFile->getFilePath(), $basePath . $filename); + + switch ($this->_imageExtension) { + case '.jpg': + imagejpeg($thumbnail, $basePath . $thumbnailFilename); + break; + case '.png': + imagepng($thumbnail, $basePath . $thumbnailFilename); + break; + case '.gif': + imagegif($thumbnail, $basePath . $thumbnailFilename); + break; + } + imagedestroy($thumbnail); + imagedestroy($image); + + $series->setImage([ + 'name' => $filename, + 'width' => $this->_sizeArray[0], + 'height' => $this->_sizeArray[1], + 'thumbnailName' => $thumbnailFilename, + 'thumbnailWidth' => $thumbnailWidth, + 'thumbnailHeight' => $thumbnailHeight, + 'uploadName' => $temporaryFile->getOriginalFileName(), + 'dateUploaded' => Core::getCurrentDate(), + ]); + + // Clean up the temporary file + $temporaryFileManager = new TemporaryFileManager(); + $temporaryFileManager->deleteById($temporaryFileId, $this->_userId); + } + + // Update series object to store image information. + Repo::section()->edit($series, []); + + // Save the category associations. + Repo::section()->removeFromCategory($this->getSeriesId()); + $categoryIds = $this->getData('categories'); + if (!empty($categoryIds)) { + foreach ($categoryIds as $categoryId) { + Repo::section()->addToCategory($this->getSeriesId(), $categoryId); + } + } + + // The parent class depends on an existing seriesId/sectionId + parent::execute(...$functionParams); + + return true; + } + + /** + * Get the series ID for this series. + * + * @return int + */ + public function getSeriesId() + { + return $this->getSectionId(); + } + + /** + * Set the series ID for this series. + * + * @param int $seriesId + */ + public function setSeriesId($seriesId) + { + $this->setSectionId($seriesId); + } +} diff --git a/controllers/grid/users/author/form/AuthorForm.inc.php b/controllers/grid/users/author/form/AuthorForm.inc.php deleted file mode 100644 index 8fc61ece14f..00000000000 --- a/controllers/grid/users/author/form/AuthorForm.inc.php +++ /dev/null @@ -1,63 +0,0 @@ -getAuthor()) { - $this->_data['isVolumeEditor'] = $this->getAuthor()->getIsVolumeEditor(); - } - } - - /** - * @copydoc Form::fetch() - */ - function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('submission', Services::get('submission')->get($this->getPublication()->getData('submissionId'))); - return parent::fetch($request, $template, $display); - } - - /** - * @copydoc Form::readInputData() - */ - function readInputData() { - parent::readInputData(); - $this->readUserVars(['isVolumeEditor']); - } - - /** - * @copydoc Form::execute() - */ - function execute(...$functionParams) { - $authorId = parent::execute(...$functionParams); - $author = Services::get('author')->get($authorId); - if ($author) { - $author->setIsVolumeEditor($this->getData('isVolumeEditor')); - DAORegistry::getDAO('AuthorDAO')->updateObject($author); - } - return $author->getId(); - } -} - - diff --git a/controllers/grid/users/chapter/ChapterGridAuthorCellProvider.php b/controllers/grid/users/chapter/ChapterGridAuthorCellProvider.php new file mode 100644 index 00000000000..bb5fac677d7 --- /dev/null +++ b/controllers/grid/users/chapter/ChapterGridAuthorCellProvider.php @@ -0,0 +1,63 @@ +_publication = $publication; + } + + // + // Template methods from GridCellProvider + // + /** + * Extracts variables for a given column from a data element + * so that they may be assigned to template before rendering. + * + * @param GridRow $row + * @param GridColumn $column + * + * @return array + */ + public function getTemplateVarsFromRowColumn($row, $column) + { + $element = $row->getData(); + $columnId = $column->getId(); + if (!is_a($element, Author::class) && empty($columnId)) { + throw new Exception('Author grid cell provider expected APP\author\Author and column id.'); + } + switch ($columnId) { + case 'name': + return ['label' => $element->getFullName()]; + case 'role': + return ['label' => $element->getLocalizedUserGroupName()]; + case 'email': + return parent::getTemplateVarsFromRowColumn($row, $column); + } + } +} diff --git a/controllers/grid/users/chapter/ChapterGridCategoryRow.inc.php b/controllers/grid/users/chapter/ChapterGridCategoryRow.inc.php deleted file mode 100644 index 63f06803845..00000000000 --- a/controllers/grid/users/chapter/ChapterGridCategoryRow.inc.php +++ /dev/null @@ -1,123 +0,0 @@ -_monograph = $monograph; - $this->_publication = $publication; - $this->_readOnly = $readOnly; - parent::__construct(); - } - - // - // Overridden methods from GridCategoryRow - // - /** - * @copydoc GridCategoryRow::initialize() - */ - function initialize($request, $template = null) { - // Do the default initialization - parent::initialize($request, $template); - - // Retrieve the monograph id from the request - $monograph = $this->getMonograph(); - - // Is this a new row or an existing row? - $chapterId = $this->getId(); - if (!empty($chapterId) && is_numeric($chapterId)) { - $chapter = $this->getData(); - $this->_chapter = $chapter; - - // Only add row actions if this is an existing row and the grid is not 'read only' - if (!$this->isReadOnly()) { - $router = $request->getRouter(); - $actionArgs = array( - 'submissionId' => $monograph->getId(), - 'publicationId' => $this->getPublication()->getId(), - 'chapterId' => $chapterId - ); - - $this->addAction( - new LinkAction( - 'deleteChapter', - new RemoteActionConfirmationModal( - $request->getSession(), - __('common.confirmDelete'), - __('common.delete'), - $router->url($request, null, null, 'deleteChapter', null, $actionArgs), - 'modal_delete' - ), - __('common.delete'), - 'delete' - ) - ); - } - } - } - - /** - * Get the monograph for this row (already authorized) - * @return Monograph - */ - function getMonograph() { - return $this->_monograph; - } - - /** - * Get the publication for this row (already authorized) - * @return Publication - */ - function getPublication() { - return $this->_publication; - } - - /** - * Get the chapter for this row - * @return Chapter - */ - function getChapter() { - return $this->_chapter; - } - - /** - * Determine if this grid row should be read only. - * @return boolean - */ - function isReadOnly() { - return $this->_readOnly; - } -} - diff --git a/controllers/grid/users/chapter/ChapterGridCategoryRow.php b/controllers/grid/users/chapter/ChapterGridCategoryRow.php new file mode 100644 index 00000000000..89e3321d9b4 --- /dev/null +++ b/controllers/grid/users/chapter/ChapterGridCategoryRow.php @@ -0,0 +1,139 @@ +_monograph = $monograph; + $this->_publication = $publication; + $this->_readOnly = $readOnly; + parent::__construct(); + } + + // + // Overridden methods from GridCategoryRow + // + /** + * @copydoc GridCategoryRow::initialize() + * + * @param null|mixed $template + */ + public function initialize($request, $template = null) + { + // Do the default initialization + parent::initialize($request, $template); + + // Retrieve the monograph id from the request + $monograph = $this->getMonograph(); + + // Is this a new row or an existing row? + $chapterId = $this->getId(); + if (!empty($chapterId) && is_numeric($chapterId)) { + $chapter = $this->getData(); + $this->_chapter = $chapter; + + // Only add row actions if this is an existing row and the grid is not 'read only' + if (!$this->isReadOnly()) { + $router = $request->getRouter(); + $actionArgs = [ + 'submissionId' => $monograph->getId(), + 'publicationId' => $this->getPublication()->getId(), + 'chapterId' => $chapterId + ]; + + $this->addAction( + new LinkAction( + 'deleteChapter', + new RemoteActionConfirmationModal( + $request->getSession(), + __('common.confirmDelete'), + __('common.delete'), + $router->url($request, null, null, 'deleteChapter', null, $actionArgs), + 'modal_delete' + ), + __('common.delete'), + 'delete' + ) + ); + } + } + } + + /** + * Get the monograph for this row (already authorized) + * + * @return Submission + */ + public function getMonograph() + { + return $this->_monograph; + } + + /** + * Get the publication for this row (already authorized) + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Get the chapter for this row + * + * @return Chapter + */ + public function getChapter() + { + return $this->_chapter; + } + + /** + * Determine if this grid row should be read only. + * + * @return bool + */ + public function isReadOnly() + { + return $this->_readOnly; + } +} diff --git a/controllers/grid/users/chapter/ChapterGridCategoryRowCellProvider.inc.php b/controllers/grid/users/chapter/ChapterGridCategoryRowCellProvider.inc.php deleted file mode 100644 index dfcb70cb50a..00000000000 --- a/controllers/grid/users/chapter/ChapterGridCategoryRowCellProvider.inc.php +++ /dev/null @@ -1,69 +0,0 @@ -getId() =='name' && !$row->isReadOnly()) { - $chapter = $row->getData(); - $monograph = $row->getMonograph(); - $publication = $row->getPublication(); - - $router = $request->getRouter(); - $actionArgs = array( - 'submissionId' => $monograph->getId(), - 'publicationId' => $publication->getId(), - 'chapterId' => $chapter->getId() - ); - - return array(new LinkAction( - 'editChapter', - new AjaxModal( - $router->url($request, null, null, 'editChapter', null, $actionArgs), - __('submission.chapter.editChapter'), - 'modal_edit' - ), - htmlspecialchars($chapter->getLocalizedTitle()) - ) - ); - } - return parent::getCellActions($request, $row, $column, $position); - } - - /** - * @see GridCellProvider::getTemplateVarsFromRowColumn() - */ - function getTemplateVarsFromRowColumn($row, $column) { - // If row is not read only, the cell will contains a link - // action. See getCellActions() above. - if ($column->getId() == 'name' && $row->isReadOnly()) { - $chapter = $row->getData(); - $label = $chapter->getLocalizedTitle(); - } else { - $label = ''; - } - - return array('label' => $label); - } -} - - diff --git a/controllers/grid/users/chapter/ChapterGridCategoryRowCellProvider.php b/controllers/grid/users/chapter/ChapterGridCategoryRowCellProvider.php new file mode 100644 index 00000000000..5a5e46eb70a --- /dev/null +++ b/controllers/grid/users/chapter/ChapterGridCategoryRowCellProvider.php @@ -0,0 +1,79 @@ +getId() == 'name' && !$row->isReadOnly()) { + $chapter = $row->getData(); + $monograph = $row->getMonograph(); + $publication = $row->getPublication(); + + $router = $request->getRouter(); + $actionArgs = [ + 'submissionId' => $monograph->getId(), + 'publicationId' => $publication->getId(), + 'chapterId' => $chapter->getId() + ]; + + return [new LinkAction( + 'editChapter', + new AjaxModal( + $router->url($request, null, null, 'editChapter', null, $actionArgs), + __('submission.chapter.editChapter'), + 'modal_edit' + ), + htmlspecialchars($chapter->getLocalizedTitle()) + ) + ]; + } + return parent::getCellActions($request, $row, $column, $position); + } + + /** + * @see GridCellProvider::getTemplateVarsFromRowColumn() + * + * @param ChapterGridCategoryRow $row + */ + public function getTemplateVarsFromRowColumn($row, $column) + { + // If row is not read only, the cell will contains a link + // action. See getCellActions() above. + if ($column->getId() == 'name' && $row->isReadOnly()) { + $chapter = $row->getData(); + $label = $chapter->getLocalizedTitle(); + } else { + $label = ''; + } + + return ['label' => $label]; + } +} diff --git a/controllers/grid/users/chapter/ChapterGridHandler.inc.php b/controllers/grid/users/chapter/ChapterGridHandler.inc.php deleted file mode 100644 index 8097ac269c6..00000000000 --- a/controllers/grid/users/chapter/ChapterGridHandler.inc.php +++ /dev/null @@ -1,499 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_AUTHOR, ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER, ROLE_ID_ASSISTANT), - array( - 'fetchGrid', 'fetchRow', 'fetchCategory', 'saveSequence', - 'addChapter', 'editChapter', 'editChapterTab', 'updateChapter', 'deleteChapter', - 'addAuthor', 'editAuthor', 'updateAuthor', 'deleteAuthor' - ) - ); - $this->addRoleAssignment( - array(ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER, ROLE_ID_ASSISTANT), - array('identifiers', 'updateIdentifiers', 'clearPubId',) - ); - $this->addRoleAssignment(ROLE_ID_REVIEWER, array('fetchGrid', 'fetchRow')); - } - - - // - // Getters and Setters - // - /** - * Get the monograph associated with this chapter grid. - * @return Monograph - */ - function getMonograph() { - return $this->getAuthorizedContextObject(ASSOC_TYPE_MONOGRAPH); - } - - /** - * Get the publication associated with this chapter grid. - * @return Publication - */ - function getPublication() { - return $this->getAuthorizedContextObject(ASSOC_TYPE_PUBLICATION); - } - - /** - * Get whether or not this grid should be 'read only' - * @return boolean - */ - function getReadOnly() { - return $this->_readOnly; - } - - /** - * Set the boolean for 'read only' status - * @param $readOnly boolean - */ - function setReadOnly($readOnly) { - $this->_readOnly = $readOnly; - } - - - // - // Implement template methods from PKPHandler - // - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.PublicationAccessPolicy'); - $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); - return parent::authorize($request, $args, $roleAssignments); - } - - /** - * @copydoc CategoryGridHandler::initialize() - */ - function initialize($request, $args = null) { - parent::initialize($request, $args); - - $this->setTitle('submission.chapters'); - - AppLocale::requireComponents(LOCALE_COMPONENT_APP_DEFAULT, LOCALE_COMPONENT_PKP_DEFAULT, LOCALE_COMPONENT_APP_SUBMISSION, LOCALE_COMPONENT_PKP_SUBMISSION); - - if ($this->getPublication()->getData('status') === STATUS_PUBLISHED) { - $this->setReadOnly(true); - } - - if (!$this->getReadOnly()) { - // Grid actions - $router = $request->getRouter(); - $actionArgs = $this->getRequestArgs(); - - $this->addAction( - new LinkAction( - 'addChapter', - new AjaxModal( - $router->url($request, null, null, 'addChapter', null, $actionArgs), - __('submission.chapter.addChapter'), - 'modal_add_item' - ), - __('submission.chapter.addChapter'), - 'add_item' - ) - ); - } - - // Columns - // reuse the cell providers for the AuthorGrid - $cellProvider = new PKPAuthorGridCellProvider($this->getPublication()); - $this->addColumn( - new GridColumn( - 'name', - 'author.users.contributor.name', - null, - null, - $cellProvider, - array('width' => 50, 'alignment' => COLUMN_ALIGNMENT_LEFT) - ) - ); - $this->addColumn( - new GridColumn( - 'email', - 'author.users.contributor.email', - null, - null, - $cellProvider - ) - ); - $this->addColumn( - new GridColumn( - 'role', - 'author.users.contributor.role', - null, - null, - $cellProvider - ) - ); - } - - /** - * @see GridHandler::initFeatures() - */ - function initFeatures($request, $args) { - if ($this->canAdminister($request->getUser())) { - $this->setReadOnly(false); - import('lib.pkp.classes.controllers.grid.feature.OrderCategoryGridItemsFeature'); - return array(new OrderCategoryGridItemsFeature(ORDER_CATEGORY_GRID_CATEGORIES_AND_ROWS, true, $this)); - } else { - $this->setReadOnly(true); - return array(); - } - } - - /** - * @see GridDataProvider::getRequestArgs() - */ - function getRequestArgs() { - return array_merge( - parent::getRequestArgs(), - array( - 'submissionId' => $this->getMonograph()->getId(), - 'publicationId' => $this->getPublication()->getId(), - ) - ); - } - - /** - * Determines if there should be add/edit actions on this grid. - * @param $user User - * @return boolean - */ - function canAdminister($user) { - $submission = $this->getMonograph(); - $publication = $this->getPublication(); - $userRoles = $this->getAuthorizedContextObject(ASSOC_TYPE_USER_ROLES); - - if ($publication->getData('status') === STATUS_PUBLISHED) { - return false; - } - - if (in_array(ROLE_ID_SITE_ADMIN, $userRoles)) { - return true; - } - - // Incomplete submissions can be edited. (Presumably author.) - if ($submission->getDateSubmitted() == null) return true; - - // The user may not be allowed to edit the metadata - if (Services::get('submission')->canEditPublication($submission->getId(), $user->getId())) { - return true; - } - - // Default: Read-only. - return false; - } - - /** - * @see CategoryGridHandler::getCategoryRowIdParameterName() - */ - function getCategoryRowIdParameterName() { - return 'chapterId'; - } - - - /** - * @see GridHandler::loadData - */ - function loadData($request, $filter) { - return DAORegistry::getDAO('ChapterDAO') - ->getByPublicationId($this->getPublication()->getId()) - ->toAssociativeArray(); - } - - - // - // Extended methods from GridHandler - // - /** - * @see GridHandler::getDataElementSequence() - */ - function getDataElementSequence($gridDataElement) { - return $gridDataElement->getSequence(); - } - - /** - * @see GridHandler::setDataElementSequence() - */ - function setDataElementSequence($request, $chapterId, $chapter, $newSequence) { - if (!$this->canAdminister($request->getUser())) return; - - $chapterDao = DAORegistry::getDAO('ChapterDAO'); /* @var $chapterDao ChapterDAO */ - $chapter->setSequence($newSequence); - $chapterDao->updateObject($chapter); - } - - - // - // Implement template methods from CategoryGridHandler - // - /** - * @see CategoryGridHandler::getCategoryRowInstance() - */ - function getCategoryRowInstance() { - $monograph = $this->getMonograph(); - $row = new ChapterGridCategoryRow($monograph, $this->getPublication(), $this->getReadOnly()); - import('controllers.grid.users.chapter.ChapterGridCategoryRowCellProvider'); - $row->setCellProvider(new ChapterGridCategoryRowCellProvider()); - return $row; - } - - /** - * @see CategoryGridHandler::loadCategoryData() - */ - function loadCategoryData($request, &$chapter, $filter = null) { - $authorFactory = $chapter->getAuthors(); /* @var $authorFactory DAOResultFactory */ - return $authorFactory->toAssociativeArray(); - } - - /** - * @see CategoryGridHandler::getDataElementInCategorySequence() - */ - function getDataElementInCategorySequence($categoryId, &$author) { - return $author->getSequence(); - } - - /** - * @see CategoryGridHandler::setDataElementInCategorySequence() - */ - function setDataElementInCategorySequence($chapterId, &$author, $newSequence) { - if (!$this->canAdminister(Application::get()->getRequest()->getUser())) return; - - $monograph = $this->getMonograph(); - - // Remove the chapter author id. - $chapterAuthorDao = DAORegistry::getDAO('ChapterAuthorDAO'); /* @var $chapterAuthorDao ChapterAuthorDAO */ - $chapterAuthorDao->deleteChapterAuthorById($author->getId(), $chapterId); - - // Add it again with the correct sequence value. - // FIXME: primary authors not set for chapter authors. - $chapterAuthorDao->insertChapterAuthor($author->getId(), $chapterId, false, $newSequence); - } - - - // - // Public Chapter Grid Actions - // - /** - * Edit chapter pub ids - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function identifiers($args, $request) { - $chapter = $this->_getChapterFromRequest($request); - - import('controllers.tab.pubIds.form.PublicIdentifiersForm'); - $form = new PublicIdentifiersForm($chapter); - $form->initData(); - return new JSONMessage(true, $form->fetch($request)); - } - - /** - * Update chapter pub ids - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateIdentifiers($args, $request) { - if (!$this->canAdminister($request->getUser())) return new JSONMessage(false); - - $chapter = $this->_getChapterFromRequest($request); - - import('controllers.tab.pubIds.form.PublicIdentifiersForm'); - $form = new PublicIdentifiersForm($chapter); - $form->readInputData(); - if ($form->validate()) { - $form->execute(); - return DAO::getDataChangedEvent(); - } else { - return new JSONMessage(true, $form->fetch($request)); - } - } - - /** - * Clear chapter pub id - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function clearPubId($args, $request) { - if (!$request->checkCSRF()) return new JSONMessage(false); - if (!$this->canAdminister($request->getUser())) return new JSONMessage(false); - - $chapter = $this->_getChapterFromRequest($request); - - import('controllers.tab.pubIds.form.PublicIdentifiersForm'); - $form = new PublicIdentifiersForm($chapter); - $form->clearPubId($request->getUserVar('pubIdPlugIn')); - return new JSONMessage(true); - } - - /** - * Add a chapter. - * @param $args array - * @param $request Request - */ - function addChapter($args, $request) { - if (!$this->canAdminister($request->getUser())) return new JSONMessage(false); - // Calling editChapterTab() with an empty row id will add - // a new chapter. - return $this->editChapterTab($args, $request); - } - - /** - * Edit a chapter metadata modal - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editChapter($args, $request) { - if (!$this->canAdminister($request->getUser())) return new JSONMessage(false); - $chapter = $this->_getChapterFromRequest($request); - - // Check if this is a remote galley - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign(array( - 'submissionId' => $this->getMonograph()->getId(), - 'publicationId' => $this->getPublication()->getId(), - 'chapterId' => $chapter->getId(), - )); - - if (array_intersect(array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT), $this->getAuthorizedContextObject(ASSOC_TYPE_USER_ROLES))) { - $publisherIdEnabled = in_array('chapter', (array) $request->getContext()->getData('enablePublisherId')); - $pubIdPlugins = PluginRegistry::getPlugins('pubIds'); - $pubIdEnabled = false; - foreach ($pubIdPlugins as $pubIdPlugin) { - if ($pubIdPlugin->isObjectTypeEnabled('Chapter', $request->getContext()->getId())) { - $pubIdEnabled = true; - break; - } - } - $templateMgr->assign('showIdentifierTab', $publisherIdEnabled || $pubIdEnabled); - } - - return new JSONMessage(true, $templateMgr->fetch('controllers/grid/users/chapter/editChapter.tpl')); - } - - /** - * Edit a chapter - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function editChapterTab($args, $request) { - if (!$this->canAdminister($request->getUser())) return new JSONMessage(false); - $chapter = $this->_getChapterFromRequest($request); - - // Form handling - import('controllers.grid.users.chapter.form.ChapterForm'); - $chapterForm = new ChapterForm($this->getMonograph(), $this->getPublication(), $chapter); - $chapterForm->initData(); - - return new JSONMessage(true, $chapterForm->fetch($request)); - } - - /** - * Update a chapter - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function updateChapter($args, $request) { - if (!$this->canAdminister($request->getUser())) return new JSONMessage(false); - // Identify the chapter to be updated - $chapter = $this->_getChapterFromRequest($request); - - // Form initialization - import('controllers.grid.users.chapter.form.ChapterForm'); - $chapterForm = new ChapterForm($this->getMonograph(), $this->getPublication(), $chapter); - $chapterForm->readInputData(); - - // Form validation - if ($chapterForm->validate()) { - $notificationMgr = new NotificationManager(); - $notificationMgr->createTrivialNotification($request->getUser()->getId()); - $chapterForm->execute(); - return DAO::getDataChangedEvent($chapterForm->getChapter()->getId()); - } else { - // Return an error - return new JSONMessage(false); - } - } - - /** - * Delete a chapter - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function deleteChapter($args, $request) { - if (!$this->canAdminister($request->getUser())) return new JSONMessage(false); - // Identify the chapter to be deleted - $chapter = $this->_getChapterFromRequest($request); - $chapterId = $chapter->getId(); - - // remove Authors assigned to this chapter first - $chapterAuthorDao = DAORegistry::getDAO('ChapterAuthorDAO'); /* @var $chapterAuthorDao ChapterAuthorDAO */ - $assignedAuthorIds = $chapterAuthorDao->getAuthorIdsByChapterId($chapterId); - - foreach ($assignedAuthorIds as $authorId) { - $chapterAuthorDao->deleteChapterAuthorById($authorId, $chapterId); - } - - $chapterDao = DAORegistry::getDAO('ChapterDAO'); /* @var $chapterDao ChapterDAO */ - $chapterDao->deleteById($chapterId); - return DAO::getDataChangedEvent(); - } - - /** - * Fetch and validate the chapter from the request arguments - */ - function _getChapterFromRequest($request) { - return DAORegistry::getDAO('ChapterDAO')->getChapter( - (int) $request->getUserVar('chapterId'), - $this->getPublication()->getId() - ); - } -} - - diff --git a/controllers/grid/users/chapter/ChapterGridHandler.php b/controllers/grid/users/chapter/ChapterGridHandler.php new file mode 100644 index 00000000000..ad306baab61 --- /dev/null +++ b/controllers/grid/users/chapter/ChapterGridHandler.php @@ -0,0 +1,599 @@ +addRoleAssignment( + [Role::ROLE_ID_AUTHOR, Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_MANAGER, Role::ROLE_ID_ASSISTANT], + [ + 'fetchGrid', 'fetchRow', 'fetchCategory', 'saveSequence', + 'addChapter', 'editChapter', 'editChapterTab', 'updateChapter', 'deleteChapter', + 'addAuthor', 'editAuthor', 'updateAuthor', 'deleteAuthor' + ] + ); + $this->addRoleAssignment( + [Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_MANAGER, Role::ROLE_ID_ASSISTANT], + ['identifiers', 'updateIdentifiers', 'clearPubId',] + ); + $this->addRoleAssignment(Role::ROLE_ID_REVIEWER, ['fetchGrid', 'fetchRow']); + } + + + // + // Getters and Setters + // + /** + * Get the monograph associated with this chapter grid. + */ + public function getMonograph(): Submission + { + return $this->getAuthorizedContextObject(Application::ASSOC_TYPE_MONOGRAPH); + } + + /** + * Get the publication associated with this chapter grid. + */ + public function getPublication(): Publication + { + return $this->getAuthorizedContextObject(Application::ASSOC_TYPE_PUBLICATION); + } + + /** + * Get whether or not this grid should be 'read only' + * + * @return bool + */ + public function getReadOnly() + { + return $this->_readOnly; + } + + /** + * Set the boolean for 'read only' status + * + * @param bool $readOnly + */ + public function setReadOnly($readOnly) + { + $this->_readOnly = $readOnly; + } + + + // + // Implement template methods from PKPHandler + // + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $this->addPolicy(new PublicationAccessPolicy($request, $args, $roleAssignments)); + return parent::authorize($request, $args, $roleAssignments); + } + + /** + * @copydoc CategoryGridHandler::initialize() + * + * @param null|mixed $args + */ + public function initialize($request, $args = null) + { + parent::initialize($request, $args); + + $this->setTitle('submission.chapters'); + + if ($this->getPublication()->getData('status') === PKPSubmission::STATUS_PUBLISHED) { + $this->setReadOnly(true); + } + + if (!$this->getReadOnly()) { + // Grid actions + $router = $request->getRouter(); + $actionArgs = $this->getRequestArgs(); + + $this->addAction( + new LinkAction( + 'addChapter', + new AjaxModal( + $router->url($request, null, null, 'addChapter', null, $actionArgs), + __('submission.chapter.addChapter'), + 'modal_add_item' + ), + __('submission.chapter.addChapter'), + 'add_item' + ) + ); + } + + // Columns + // reuse the cell providers for the AuthorGrid + $cellProvider = new ChapterGridAuthorCellProvider($this->getPublication()); + $this->addColumn( + new GridColumn( + 'name', + 'common.name', + null, + null, + $cellProvider, + ['width' => 50, 'alignment' => GridColumn::COLUMN_ALIGNMENT_LEFT] + ) + ); + $this->addColumn( + new GridColumn( + 'email', + 'email.email', + null, + null, + $cellProvider + ) + ); + $this->addColumn( + new GridColumn( + 'role', + 'common.role', + null, + null, + $cellProvider + ) + ); + } + + /** + * @see GridHandler::initFeatures() + */ + public function initFeatures($request, $args) + { + if ($this->canAdminister($request->getUser())) { + $this->setReadOnly(false); + return [new OrderCategoryGridItemsFeature(OrderCategoryGridItemsFeature::ORDER_CATEGORY_GRID_CATEGORIES_AND_ROWS, true, $this)]; + } else { + $this->setReadOnly(true); + return []; + } + } + + /** + * @see GridDataProvider::getRequestArgs() + */ + public function getRequestArgs() + { + return array_merge( + parent::getRequestArgs(), + [ + 'submissionId' => $this->getMonograph()->getId(), + 'publicationId' => $this->getPublication()->getId(), + ] + ); + } + + /** + * Determines if there should be add/edit actions on this grid. + * + * @param User $user + * + * @return bool + */ + public function canAdminister($user) + { + $submission = $this->getMonograph(); + $publication = $this->getPublication(); + $userRoles = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_USER_ROLES); + + if ($publication->getData('status') === PKPSubmission::STATUS_PUBLISHED) { + return false; + } + + if (in_array(Role::ROLE_ID_SITE_ADMIN, $userRoles)) { + return true; + } + + // Incomplete submissions can be edited. (Presumably author.) + if ($submission->getDateSubmitted() == null) { + return true; + } + + // The user may not be allowed to edit the metadata + if (Repo::submission()->canEditPublication($submission->getId(), $user->getId())) { + return true; + } + + // Default: Read-only. + return false; + } + + /** + * @see CategoryGridHandler::getCategoryRowIdParameterName() + */ + public function getCategoryRowIdParameterName() + { + return 'chapterId'; + } + + + /** + * @see GridHandler::loadData + */ + public function loadData($request, $filter) + { + /** @var ChapterDAO */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + return $chapterDao + ->getByPublicationId($this->getPublication()->getId()) + ->toAssociativeArray(); + } + + + // + // Extended methods from GridHandler + // + /** + * @see GridHandler::getDataElementSequence() + */ + public function getDataElementSequence($gridDataElement) + { + return $gridDataElement->getSequence(); + } + + /** + * @see GridHandler::setDataElementSequence() + */ + public function setDataElementSequence($request, $chapterId, $chapter, $newSequence) + { + if (!$this->canAdminister($request->getUser())) { + return; + } + + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + $chapter->setSequence($newSequence); + $chapterDao->updateObject($chapter); + } + + + // + // Implement template methods from CategoryGridHandler + // + /** + * @see CategoryGridHandler::getCategoryRowInstance() + */ + public function getCategoryRowInstance() + { + $monograph = $this->getMonograph(); + $row = new ChapterGridCategoryRow($monograph, $this->getPublication(), $this->getReadOnly()); + $row->setCellProvider(new ChapterGridCategoryRowCellProvider()); + return $row; + } + + /** + * @see CategoryGridHandler::loadCategoryData() + * + * @param null|mixed $filter + */ + public function loadCategoryData($request, &$chapter, $filter = null) + { + return $chapter->getAuthors(); + } + + /** + * @see CategoryGridHandler::getDataElementInCategorySequence() + */ + public function getDataElementInCategorySequence($categoryId, &$author) + { + return $author->getSequence(); + } + + /** + * @see CategoryGridHandler::setDataElementInCategorySequence() + */ + public function setDataElementInCategorySequence($chapterId, &$author, $newSequence) + { + if (!$this->canAdminister(Application::get()->getRequest()->getUser())) { + return; + } + + $monograph = $this->getMonograph(); + + // Remove the chapter author id. + Repo::author()->removeFromChapter($author->getId(), $chapterId); + + // Add it again with the correct sequence value. + // FIXME: primary authors not set for chapter authors. + Repo::author()->addToChapter($author->getId(), $chapterId, false, $newSequence); + } + + + // + // Public Chapter Grid Actions + // + /** + * Edit chapter pub ids + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function identifiers($args, $request) + { + $chapter = $this->_getChapterFromRequest($request); + + $form = new PublicIdentifiersForm($chapter); + $form->initData(); + return new JSONMessage(true, $form->fetch($request)); + } + + /** + * Update chapter pub ids + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateIdentifiers($args, $request) + { + if (!$this->canAdminister($request->getUser())) { + return new JSONMessage(false); + } + + $chapter = $this->_getChapterFromRequest($request); + + $form = new PublicIdentifiersForm($chapter); + $form->readInputData(); + if ($form->validate()) { + $form->execute(); + return DAO::getDataChangedEvent(); + } else { + return new JSONMessage(true, $form->fetch($request)); + } + } + + /** + * Clear chapter pub id + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function clearPubId($args, $request) + { + if (!$request->checkCSRF()) { + return new JSONMessage(false); + } + if (!$this->canAdminister($request->getUser())) { + return new JSONMessage(false); + } + + $chapter = $this->_getChapterFromRequest($request); + + $form = new PublicIdentifiersForm($chapter); + $form->clearPubId($request->getUserVar('pubIdPlugIn')); + return new JSONMessage(true); + } + + /** + * Add a chapter. + * + * @param array $args + * @param Request $request + */ + public function addChapter($args, $request) + { + if (!$this->canAdminister($request->getUser())) { + return new JSONMessage(false); + } + // Calling editChapterTab() with an empty row id will add + // a new chapter. + return $this->editChapterTab($args, $request); + } + + /** + * Edit a chapter metadata modal + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editChapter($args, $request) + { + if (!$this->canAdminister($request->getUser())) { + return new JSONMessage(false); + } + $chapter = $this->_getChapterFromRequest($request); + + // Check if this is a remote galley + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign([ + 'submissionId' => $this->getMonograph()->getId(), + 'publicationId' => $this->getPublication()->getId(), + 'chapterId' => $chapter->getId(), + ]); + + if (array_intersect([Role::ROLE_ID_MANAGER, Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_ASSISTANT], $this->getAuthorizedContextObject(Application::ASSOC_TYPE_USER_ROLES))) { + $publisherIdEnabled = in_array('chapter', (array) $request->getContext()->getData('enablePublisherId')); + $pubIdPlugins = PluginRegistry::getPlugins('pubIds'); + $pubIdEnabled = false; + foreach ($pubIdPlugins as $pubIdPlugin) { + if ($pubIdPlugin->isObjectTypeEnabled('Chapter', $request->getContext()->getId())) { + $pubIdEnabled = true; + break; + } + } + $templateMgr->assign('showIdentifierTab', $publisherIdEnabled || $pubIdEnabled); + } + + return new JSONMessage(true, $templateMgr->fetch('controllers/grid/users/chapter/editChapter.tpl')); + } + + /** + * Edit a chapter + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function editChapterTab($args, $request) + { + if (!$this->canAdminister($request->getUser())) { + return new JSONMessage(false); + } + $chapter = $this->_getChapterFromRequest($request); + + // Form handling + $chapterForm = new ChapterForm($this->getMonograph(), $this->getPublication(), $chapter); + $chapterForm->initData(); + + return new JSONMessage(true, $chapterForm->fetch($request)); + } + + /** + * Update a chapter + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function updateChapter($args, $request) + { + if (!$this->canAdminister($request->getUser())) { + return new JSONMessage(false); + } + // Identify the chapter to be updated + $chapter = $this->_getChapterFromRequest($request); + + // Form initialization + $chapterForm = new ChapterForm($this->getMonograph(), $this->getPublication(), $chapter); + $chapterForm->readInputData(); + + // Form validation + if ($chapterForm->validate()) { + $notificationMgr = new NotificationManager(); + $notificationMgr->createTrivialNotification($request->getUser()->getId()); + $chapterForm->execute(); + $json = DAO::getDataChangedEvent($chapterForm->getChapter()->getId()); + if (!$chapter) { + $json->setGlobalEvent('chapter:added', $this->getChapterData($chapterForm->getChapter(), $this->getPublication())); + } else { + $json->setGlobalEvent('chapter:edited', $this->getChapterData($chapterForm->getChapter(), $this->getPublication())); + } + return $json; + } else { + // Return an error + return new JSONMessage(false); + } + } + + /** + * Delete a chapter + * + * @param array $args + * @param Request $request + * + * @return JSONMessage JSON object + */ + public function deleteChapter($args, $request) + { + if (!$this->canAdminister($request->getUser())) { + return new JSONMessage(false); + } + // Identify the chapter to be deleted + $chapter = $this->_getChapterFromRequest($request); + $chapterId = $chapter->getId(); + + // remove Authors assigned to this chapter first + Repo::author()->removeChapterAuthors($chapter); + + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + $chapterDao->deleteById($chapterId); + $json = DAO::getDataChangedEvent(); + $json->setGlobalEvent('chapter:deleted', $this->getChapterData($chapter, $this->getPublication())); + return $json; + } + + /** + * Fetch and validate the chapter from the request arguments + */ + public function _getChapterFromRequest($request) + { + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + return $chapterDao->getChapter( + (int) $request->getUserVar('chapterId'), + $this->getPublication()->getId() + ); + } + + /** + * Get chapter data to be returned as JSON in a global event + */ + public function getChapterData(Chapter $chapter, Publication $publication): array + { + return [ + 'id' => $chapter->getId(), + 'title' => $chapter->getLocalizedFullTitle(), + 'authors' => Repo::author() + ->getCollector() + ->filterByChapterIds([$chapter->getId()]) + ->filterByPublicationIds([$publication->getId()]) + ->getMany() + ->map(fn (Author $author) => $author->getFullName()) + ->join(__('common.commaListSeparator')), + ]; + } +} diff --git a/controllers/grid/users/chapter/form/ChapterForm.inc.php b/controllers/grid/users/chapter/form/ChapterForm.inc.php deleted file mode 100644 index d262f87e711..00000000000 --- a/controllers/grid/users/chapter/form/ChapterForm.inc.php +++ /dev/null @@ -1,245 +0,0 @@ -setMonograph($monograph); - $this->setPublication($publication); - $this->setDefaultFormLocale($publication->getData('locale')); - - if ($chapter) { - $this->setChapter($chapter); - } - - // Validation checks for this form - $this->addCheck(new FormValidatorLocale($this, 'title', 'required', 'metadata.property.validationMessage.title', $publication->getData('locale'))); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - - // - // Getters/Setters - // - /** - * Get the monograph associated with this chapter grid. - * @return Monograph - */ - function getMonograph() { - return $this->_monograph; - } - - /** - * Set the monograph associated with this chapter grid. - * @param $monograph Monograph - */ - function setMonograph($monograph) { - $this->_monograph = $monograph; - } - - /** - * Get the publication associated with this chapter grid. - * @return Publication - */ - function getPublication() { - return $this->_publication; - } - - /** - * Set the publication associated with this chapter grid. - * @param $publication Publication - */ - function setPublication($publication) { - $this->_publication = $publication; - } - - /** - * Get the Chapter associated with this form - * @return Chapter - */ - function getChapter() { - return $this->_chapter; - } - - /** - * Set the Chapter associated with this form - * @param $chapter Chapter - */ - function setChapter($chapter) { - $this->_chapter = $chapter; - } - - // - // Overridden template methods - // - /** - * Initialize form data from the associated chapter. - * @param $chapter Chapter - */ - function initData() { - AppLocale::requireComponents(LOCALE_COMPONENT_APP_DEFAULT, LOCALE_COMPONENT_PKP_SUBMISSION); - - $this->setData('submissionId', $this->getMonograph()->getId()); - $this->setData('publicationId', $this->getPublication()->getId()); - $this->setData('enableChapterPublicationDates', (bool) $this->getMonograph()->getEnableChapterPublicationDates()); - - $chapter = $this->getChapter(); - if ($chapter) { - $this->setData('chapterId', $chapter->getId()); - $this->setData('title', $chapter->getTitle()); - $this->setData('subtitle', $chapter->getSubtitle()); - $this->setData('abstract', $chapter->getAbstract()); - $this->setData('datePublished', $chapter->getDatePublished()); - $this->setData('pages', $chapter->getPages()); - } else { - $this->setData('title', null); - $this->setData('subtitle', null); - $this->setData('abstract', null); - $this->setData('datePublished', null); - $this->setData('pages', null); - } - } - - /** - * @copydoc Form::fetch() - */ - function fetch($request, $template = null, $display = false) { - - $chapterAuthorOptions = []; - $selectedChapterAuthors = []; - if ($this->getChapter()) { - $selectedChapterAuthors = DAORegistry::getDAO('ChapterAuthorDAO')->getAuthors($this->getPublication()->getId(), $this->getChapter()->getId())->toArray(); - foreach ($selectedChapterAuthors as $selectedChapterAuthor) { - $chapterAuthorOptions[$selectedChapterAuthor->getId()] = $selectedChapterAuthor->getFullName(); - } - } - $authorsIterator = Services::get('author')->getMany(['publicationIds' => $this->getPublication()->getId(), 'count' => 1000]); - foreach ($authorsIterator as $author) { - $isIncluded = false; - foreach ($chapterAuthorOptions as $chapterAuthorOptionId => $chapterAuthorOption) { - if ($chapterAuthorOptionId === $author->getId()) { - $isIncluded = true; - } - } - if (!$isIncluded) { - $chapterAuthorOptions[$author->getId()] = $author->getFullName(); - } - } - - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign([ - 'chapterAuthorOptions' => $chapterAuthorOptions, - 'selectedChapterAuthors' => array_map(function($author) { return $author->getId(); }, $selectedChapterAuthors), - ]); - - if ($this->getChapter()) { - $submissionFiles = Services::get('submissionFile')->getMany(['submissionIds' => [$this->getMonograph()->getId()]]); - $chapterFileOptions = []; - $selectedChapterFiles = []; - foreach ($submissionFiles as $submissionFile) { - if (!$submissionFile->getData('chapterId') || $submissionFile->getData('chapterId') == $this->getChapter()->getId()) { - $chapterFileOptions[$submissionFile->getId()] = $submissionFile->getLocalizedData('name'); - } - if ($submissionFile->getData('chapterId') == $this->getChapter()->getId()) { - $selectedChapterFiles[] = $submissionFile->getId(); - } - } - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign([ - 'chapterFileOptions' => $chapterFileOptions, - 'selectedChapterFiles' => $selectedChapterFiles, - ]); - } - - return parent::fetch($request, $template, $display); - } - - /** - * Assign form data to user-submitted data. - * @see Form::readInputData() - */ - function readInputData() { - $this->readUserVars(array('title', 'subtitle', 'authors', 'files','abstract','datePublished','pages')); - } - - /** - * Save chapter - * @see Form::execute() - */ - function execute(...$functionParams) { - parent::execute(...$functionParams); - - $chapterDao = DAORegistry::getDAO('ChapterDAO'); /* @var $chapterDao ChapterDAO */ - $chapter = $this->getChapter(); - $isEdit = !!$chapter; - - if ($chapter) { - $chapter->setTitle($this->getData('title'), null); //Localized - $chapter->setSubtitle($this->getData('subtitle'), null); //Localized - $chapter->setAbstract($this->getData('abstract'), null); //Localized - $chapter->setDatePublished($this->getData('datePublished')); - $chapter->setPages($this->getData('pages')); - $chapterDao->updateObject($chapter); - } else { - $chapter = $chapterDao->newDataObject(); - $chapter->setData('publicationId', $this->getPublication()->getId()); - $chapter->setTitle($this->getData('title'), null); //Localized - $chapter->setSubtitle($this->getData('subtitle'), null); //Localized - $chapter->setAbstract($this->getData('abstract'), null); //Localized - $chapter->setDatePublished($this->getData('datePublished')); - $chapter->setPages($this->getData('pages')); - $chapter->setSequence(REALLY_BIG_NUMBER); - $chapterDao->insertChapter($chapter); - $chapterDao->resequenceChapters($this->getPublication()->getId()); - } - - $this->setChapter($chapter); - - // Save the chapter author aassociations - DAORegistry::getDAO('ChapterAuthorDAO')->deleteChapterAuthorsByChapterId($this->getChapter()->getId()); - foreach ((array) $this->getData('authors') as $seq => $authorId) { - DAORegistry::getDAO('ChapterAuthorDAO')->insertChapterAuthor($authorId, $this->getChapter()->getId(), false, $seq); - } - - // Save the chapter file associations - if ($isEdit) { - $selectedFiles = (array) $this->getData('files'); - DAORegistry::getDAO('SubmissionFileDAO')->updateChapterFiles($selectedFiles, $this->getChapter()->getId()); - } - - return true; - } -} - - diff --git a/controllers/grid/users/chapter/form/ChapterForm.php b/controllers/grid/users/chapter/form/ChapterForm.php new file mode 100644 index 00000000000..efe21802488 --- /dev/null +++ b/controllers/grid/users/chapter/form/ChapterForm.php @@ -0,0 +1,351 @@ +setMonograph($monograph); + $this->setPublication($publication); + $this->setDefaultFormLocale($publication->getData('locale')); + + if ($chapter) { + $this->setChapter($chapter); + } + + // Validation checks for this form + $this->addCheck(new \PKP\form\validation\FormValidatorLocale($this, 'title', 'required', 'metadata.property.validationMessage.title', $publication->getData('locale'))); + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + } + + + // + // Getters/Setters + // + /** + * Get the monograph associated with this chapter grid. + * + * @return Submission + */ + public function getMonograph() + { + return $this->_monograph; + } + + /** + * Set the monograph associated with this chapter grid. + * + * @param Submission $monograph + */ + public function setMonograph($monograph) + { + $this->_monograph = $monograph; + } + + /** + * Get the publication associated with this chapter grid. + * + * @return Publication + */ + public function getPublication() + { + return $this->_publication; + } + + /** + * Set the publication associated with this chapter grid. + * + * @param Publication $publication + */ + public function setPublication($publication) + { + $this->_publication = $publication; + } + + /** + * Get the Chapter associated with this form + * + * @return Chapter + */ + public function getChapter() + { + return $this->_chapter; + } + + /** + * Set the Chapter associated with this form + * + * @param Chapter $chapter + */ + public function setChapter($chapter) + { + $this->_chapter = $chapter; + } + + // + // Overridden template methods + // + /** + * Initialize form data from the associated chapter. + */ + public function initData() + { + //Create chapter license URL description + $chapterLicenseUrlDescription = ''; + if ($this->getMonograph()->getData('workType') === Submission::WORK_TYPE_EDITED_VOLUME) { + $licenseOptions = Application::getCCLicenseOptions(); + $context = Application::get()->getRequest()->getContext(); + if ($this->getPublication()->getData('chapterLicenseUrl')) { + if (array_key_exists( + $this->getPublication() + ->getData('chapterLicenseUrl'), + $licenseOptions + )) { + $licenseName = __( + $licenseOptions[$this->getPublication() + ->getData('chapterLicenseUrl')] + ); + } else { + $licenseName = $this->getPublication() + ->getData('chapterLicenseUrl'); + } + $chapterLicenseUrlDescription = __('submission.license.description', [ + 'licenseUrl' => $this->getPublication()->getData('chapterLicenseUrl'), + 'licenseName' => $licenseName, + ]); + } elseif ($this->getPublication()->getData('licenseUrl')) { + if (array_key_exists($this->getPublication()->getData('licenseUrl'), $licenseOptions)) { + $licenseName = __($licenseOptions[$this->getPublication()->getData('licenseUrl')]); + } else { + $licenseName = $this->getPublication()->getData('licenseUrl'); + } + $chapterLicenseUrlDescription = __('submission.license.description', [ + 'licenseUrl' => $this->getPublication()->getData('licenseUrl'), + 'licenseName' => $licenseName, + ]); + } elseif ($context->getData('licenseUrl')) { + if (array_key_exists($context->getData('licenseUrl'), $licenseOptions)) { + $licenseName = __($licenseOptions[$context->getData('licenseUrl')]); + } else { + $licenseName = $context->getData('licenseUrl'); + } + $chapterLicenseUrlDescription = __('submission.license.description', [ + 'licenseUrl' => $context->getData('licenseUrl'), + 'licenseName' => $licenseName, + ]); + } + } + + $this->setData('submissionId', $this->getMonograph()->getId()); + $this->setData('publicationId', $this->getPublication()->getId()); + $this->setData('enableChapterPublicationDates', (bool) $this->getMonograph()->getEnableChapterPublicationDates()); + $this->setData('submissionWorkType', $this->getMonograph()->getData('workType')); + $this->setData('chapterLicenseUrlDescription', $chapterLicenseUrlDescription); + + $chapter = $this->getChapter(); + if ($chapter) { + $this->setData('chapterId', $chapter->getId()); + $this->setData('title', $chapter->getTitle()); + $this->setData('subtitle', $chapter->getSubtitle()); + $this->setData('abstract', $chapter->getAbstract()); + $this->setData('datePublished', $chapter->getDatePublished()); + $this->setData('isPageEnabled', $chapter->isPageEnabled()); + $this->setData('pages', $chapter->getPages()); + $this->setData('licenseUrl', $chapter->getLicenseUrl()); + } else { + $this->setData('title', null); + $this->setData('subtitle', null); + $this->setData('abstract', null); + $this->setData('datePublished', null); + $this->setData('isPageEnabled', null); + $this->setData('pages', null); + $this->setData('licenseUrl', null); + } + } + + /** + * @copydoc Form::fetch() + * + * @param null|mixed $template + */ + public function fetch($request, $template = null, $display = false) + { + $templateMgr = TemplateManager::getManager($request); + $chapterAuthorOptions = []; + $selectedChapterAuthors = []; + $chapterFileOptions = []; + $selectedChapterFiles = []; + + $selectedChapterAuthorsArray = []; + if ($this->getChapter()) { + $selectedChapterAuthors = Repo::author()->getCollector() + ->filterByChapterIds([$this->getChapter()->getId()]) + ->filterByPublicationIds([$this->getPublication()->getId()]) + ->getMany(); + + foreach ($selectedChapterAuthors as $selectedChapterAuthor) { + $chapterAuthorOptions[$selectedChapterAuthor->getId()] = $selectedChapterAuthor->getFullName(); + } + + if ($selectedChapterAuthors) { + $selectedChapterAuthorsArray = iterator_to_array($selectedChapterAuthors); + } + } + $authorsIterator = Repo::author()->getCollector() + ->filterByPublicationIds([$this->getPublication()->getId()]) + ->getMany(); + + foreach ($authorsIterator as $author) { + $isIncluded = false; + foreach ($chapterAuthorOptions as $chapterAuthorOptionId => $chapterAuthorOption) { + if ($chapterAuthorOptionId === $author->getId()) { + $isIncluded = true; + } + } + if (!$isIncluded) { + $chapterAuthorOptions[$author->getId()] = $author->getFullName(); + } + } + + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$this->getMonograph()->getId()]) + ->getMany(); + + foreach ($submissionFiles as $submissionFile) { + $isIncluded = false; + + if ($this->getChapter() && $submissionFile->getData('chapterId') == $this->getChapter()->getId()) { + $selectedChapterFiles[] = $submissionFile->getId(); + $isIncluded = true; + } + + // Include in list if not used in another chapter OR already selected to this chapter + if (!$submissionFile->getData('chapterId') || $isIncluded) { + $chapterFileOptions[$submissionFile->getId()] = $submissionFile->getLocalizedData('name'); + } + } + + $templateMgr->assign([ + 'chapterAuthorOptions' => $chapterAuthorOptions, + 'selectedChapterAuthors' => array_map(function ($author) { + return $author->getId(); + }, $selectedChapterAuthorsArray), + 'chapterFileOptions' => $chapterFileOptions, + 'selectedChapterFiles' => $selectedChapterFiles, + ]); + + return parent::fetch($request, $template, $display); + } + + /** + * Assign form data to user-submitted data. + * + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars(['title', 'subtitle', 'authors', 'files','abstract','datePublished','pages','isPageEnabled','licenseUrl']); + } + + /** + * Save chapter + * + * @see Form::execute() + */ + public function execute(...$functionParams) + { + parent::execute(...$functionParams); + + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + $chapter = $this->getChapter(); + + if ($chapter) { + $chapter->setTitle($this->getData('title'), null); //Localized + $chapter->setSubtitle($this->getData('subtitle'), null); //Localized + $chapter->setAbstract($this->getData('abstract'), null); //Localized + $chapter->setDatePublished($this->getData('datePublished')); + $chapter->setPages($this->getData('pages')); + $chapter->setPageEnabled($this->getData('isPageEnabled')); + $chapter->setLicenseUrl($this->getData('licenseUrl')); + $chapterDao->updateObject($chapter); + } else { + $chapter = $chapterDao->newDataObject(); + $chapter->setData('publicationId', $this->getPublication()->getId()); + $chapter->setTitle($this->getData('title'), null); //Localized + $chapter->setSubtitle($this->getData('subtitle'), null); //Localized + $chapter->setAbstract($this->getData('abstract'), null); //Localized + $chapter->setDatePublished($this->getData('datePublished')); + $chapter->setPages($this->getData('pages')); + $chapter->setPageEnabled($this->getData('isPageEnabled')); + $chapter->setLicenseUrl($this->getData('licenseUrl')); + $chapter->setSequence(REALLY_BIG_NUMBER); + $chapterDao->insertChapter($chapter); + $chapterDao->resequenceChapters($this->getPublication()->getId()); + } + + $this->setChapter($chapter); + + // Save the chapter author associations + Repo::author()->removeChapterAuthors($this->getChapter()); + foreach ((array) $this->getData('authors') as $seq => $authorId) { + Repo::author()->addToChapter($authorId, $this->getChapter()->getId(), false, $seq); + } + + // Save the chapter file associations + $selectedFiles = (array) $this->getData('files'); + /** @var DAO */ + $dao = Repo::submissionFile()->dao; + $dao->updateChapterFiles( + $selectedFiles, + $this->getChapter()->getId() + ); + + return true; + } +} diff --git a/controllers/grid/users/reviewer/ReviewerGridHandler.inc.php b/controllers/grid/users/reviewer/ReviewerGridHandler.inc.php deleted file mode 100644 index 5f060ba3671..00000000000 --- a/controllers/grid/users/reviewer/ReviewerGridHandler.inc.php +++ /dev/null @@ -1,20 +0,0 @@ - array('EDITOR_ASSIGN'), - WORKFLOW_STAGE_ID_EXTERNAL_REVIEW => array('EDITOR_ASSIGN'), - WORKFLOW_STAGE_ID_EDITING => array('COPYEDIT_REQUEST'), - WORKFLOW_STAGE_ID_PRODUCTION => array('LAYOUT_REQUEST', 'LAYOUT_COMPLETE', 'INDEX_REQUEST', 'INDEX_COMPLETE', 'EDITOR_ASSIGN') - ); - } - - /** - * @copydoc PKPStageParticipantNotifyForm::_getMailTemplate() - */ - protected function _getMailTemplate($submission, $templateKey, $includeSignature = true) { - return new MonographMailTemplate($submission, $templateKey, null, null, $includeSignature); - } -} - - diff --git a/controllers/modals/editorDecision/EditorDecisionHandler.inc.php b/controllers/modals/editorDecision/EditorDecisionHandler.inc.php deleted file mode 100644 index 14470bfaed6..00000000000 --- a/controllers/modals/editorDecision/EditorDecisionHandler.inc.php +++ /dev/null @@ -1,201 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER), - array_merge(array( - 'internalReview', 'saveInternalReview', - 'externalReview', 'saveExternalReview', - 'sendReviews', 'saveSendReviews', - 'promote', 'savePromote', - 'revertDecline', 'saveRevertDecline', - ), $this->_getReviewRoundOps()) - ); - } - - - // - // Implement template methods from PKPHandler - // - /** - * @see PKPHandler::authorize() - */ - function authorize($request, &$args, $roleAssignments) { - $stageId = (int) $request->getUserVar('stageId'); - import('lib.pkp.classes.security.authorization.EditorDecisionAccessPolicy'); - $this->addPolicy(new EditorDecisionAccessPolicy($request, $args, $roleAssignments, 'submissionId', $stageId)); - - return parent::authorize($request, $args, $roleAssignments); - } - - - // - // Public handler actions - // - /** - * Start a new review round - * @param $args array - * @param $request PKPRequest - * @return JSONMessage - */ - function saveNewReviewRound($args, $request) { - // FIXME: this can probably all be managed somewhere. - $stageId = $this->getAuthorizedContextObject(ASSOC_TYPE_WORKFLOW_STAGE); - if ($stageId == WORKFLOW_STAGE_ID_INTERNAL_REVIEW) { - $redirectOp = WORKFLOW_STAGE_PATH_INTERNAL_REVIEW; - } elseif ($stageId == WORKFLOW_STAGE_ID_EXTERNAL_REVIEW) { - $redirectOp = WORKFLOW_STAGE_PATH_EXTERNAL_REVIEW; - } else { - $redirectOp = null; // Suppress warn - assert(false); - } - - return $this->_saveEditorDecision($args, $request, 'NewReviewRoundForm', $redirectOp, SUBMISSION_EDITOR_DECISION_NEW_ROUND); - } - - /** - * Start a new review round - * @param $args array - * @param $request PKPRequest - * @return string Serialized JSON object - */ - function internalReview($args, $request) { - return $this->_initiateEditorDecision($args, $request, 'InitiateInternalReviewForm'); - } - - /** - * Start a new review round - * @param $args array - * @param $request PKPRequest - * @return JSONMessage - */ - function saveInternalReview($args, $request) { - assert($this->getAuthorizedContextObject(ASSOC_TYPE_WORKFLOW_STAGE) == WORKFLOW_STAGE_ID_SUBMISSION); - return $this->_saveEditorDecision( - $args, $request, 'InitiateInternalReviewForm', - WORKFLOW_STAGE_PATH_INTERNAL_REVIEW, - SUBMISSION_EDITOR_DECISION_INTERNAL_REVIEW - ); - } - - - // - // Protected helper methods - // - /** - * @param $args array - * @param $request PKPRequest - * @return JSONMessage - */ - protected function _saveGeneralPromote($args, $request) { - // Redirect to the next workflow page after - // promoting the submission. - $decision = (int)$request->getUserVar('decision'); - - $redirectOp = null; - - if ($decision == SUBMISSION_EDITOR_DECISION_ACCEPT) { - $redirectOp = WORKFLOW_STAGE_PATH_EDITING; - } elseif ($decision == SUBMISSION_EDITOR_DECISION_EXTERNAL_REVIEW) { - $redirectOp = WORKFLOW_STAGE_PATH_EXTERNAL_REVIEW; - } elseif ($decision == SUBMISSION_EDITOR_DECISION_SEND_TO_PRODUCTION) { - $redirectOp = WORKFLOW_STAGE_PATH_PRODUCTION; - } - - // Make sure user has access to the workflow stage. - import('lib.pkp.classes.workflow.WorkflowStageDAO'); - $redirectWorkflowStage = WorkflowStageDAO::getIdFromPath($redirectOp); - $userAccessibleWorkflowStages = $this->getAuthorizedContextObject(ASSOC_TYPE_ACCESSIBLE_WORKFLOW_STAGES); - if (!array_key_exists($redirectWorkflowStage, $userAccessibleWorkflowStages)) { - $redirectOp = null; - } - - return $this->_saveEditorDecision($args, $request, 'PromoteForm', $redirectOp); - } - - /** - * Get editor decision notification type and level by decision. - * @param $decision int - * @return int - */ - protected function _getNotificationTypeByEditorDecision($decision) { - switch ($decision) { - case SUBMISSION_EDITOR_DECISION_INTERNAL_REVIEW: - return NOTIFICATION_TYPE_EDITOR_DECISION_INTERNAL_REVIEW; - case SUBMISSION_EDITOR_DECISION_ACCEPT: - return NOTIFICATION_TYPE_EDITOR_DECISION_ACCEPT; - case SUBMISSION_EDITOR_DECISION_EXTERNAL_REVIEW: - return NOTIFICATION_TYPE_EDITOR_DECISION_EXTERNAL_REVIEW; - case SUBMISSION_EDITOR_DECISION_PENDING_REVISIONS: - return NOTIFICATION_TYPE_EDITOR_DECISION_PENDING_REVISIONS; - case SUBMISSION_EDITOR_DECISION_RESUBMIT: - return NOTIFICATION_TYPE_EDITOR_DECISION_RESUBMIT; - case SUBMISSION_EDITOR_DECISION_NEW_ROUND: - return NOTIFICATION_TYPE_EDITOR_DECISION_NEW_ROUND; - case SUBMISSION_EDITOR_DECISION_DECLINE: - case SUBMISSION_EDITOR_DECISION_INITIAL_DECLINE: - return NOTIFICATION_TYPE_EDITOR_DECISION_DECLINE; - case SUBMISSION_EDITOR_DECISION_REVERT_DECLINE: - return NOTIFICATION_TYPE_EDITOR_DECISION_REVERT_DECLINE; - case SUBMISSION_EDITOR_DECISION_SEND_TO_PRODUCTION: - return NOTIFICATION_TYPE_EDITOR_DECISION_SEND_TO_PRODUCTION; - } - throw new Exception('Unknown editor decision.'); - } - - /** - * Get review-related stage IDs. - * @return array - */ - protected function _getReviewStages() { - return array(WORKFLOW_STAGE_ID_INTERNAL_REVIEW, WORKFLOW_STAGE_ID_EXTERNAL_REVIEW); - } - - /** - * Get review-related decision notifications. - */ - protected function _getReviewNotificationTypes() { - return array(NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS, NOTIFICATION_TYPE_PENDING_EXTERNAL_REVISIONS); - } - - /** - * Get the fully-qualified import name for the given form name. - * @param $formName Class name for the desired form. - * @return string - */ - protected function _resolveEditorDecisionForm($formName) { - switch($formName) { - case 'InitiateInternalReviewForm': - case 'InitiateExternalReviewForm': - return "controllers.modals.editorDecision.form.$formName"; - default: - return parent::_resolveEditorDecisionForm($formName); - } - } -} - - diff --git a/controllers/modals/editorDecision/form/InitiateExternalReviewForm.inc.php b/controllers/modals/editorDecision/form/InitiateExternalReviewForm.inc.php deleted file mode 100644 index 41db2d13985..00000000000 --- a/controllers/modals/editorDecision/form/InitiateExternalReviewForm.inc.php +++ /dev/null @@ -1,41 +0,0 @@ -addPolicy(new OmpPublishedSubmissionAccessPolicy($request, $args, $roleAssignments)); - return parent::authorize($request, $args, $roleAssignments); - } - - /** - * Set the monograph ID - * @param $monographId int - */ - function setMonographId($monographId) { - $this->monographId = $monographId; - } - - /** - * Get the monograph ID - * @return int - */ - function getMonographId() { - return $this->monographId; - } - - /** - * Set the current press - * @param $press Press - */ - function setPress($press) { - $this->_press = $press; - } - - /** - * Get the current press - * @return Press - */ - function getPress() { - return $this->_press; - } - - /** - * Serve the cover image for a published submission. - */ - function cover($args, $request) { - // this function is only used on the book page i.e. for published submissiones - $submission = $this->getAuthorizedContextObject(ASSOC_TYPE_MONOGRAPH); - - $coverImageUrl = $submission->getCurrentPublication()->getLocalizedCoverImageUrl($submission->getData('contextId')); - if (!$coverImageUrl) { - $coverImageUrl = $request->getBaseUrl() . '/templates/images/book-default.png'; - } - - // Can't use Request::redirectUrl; FireFox doesn't - // seem to like it for images. - header('Location: ' . $coverImageUrl); - exit; - } - - /** - * Serve the cover thumbnail for a published submission. - */ - function thumbnail($args, $request) { - // use ASSOC_TYPE_MONOGRAPH to set the cover at any workflow stage - // i.e. also if the monograph has not been published yet - $submission = $this->getAuthorizedContextObject(ASSOC_TYPE_MONOGRAPH); - - $coverImageThumbnailUrl = $submission->getCurrentPublication()->getLocalizedCoverImageThumbnailUrl($submission->getData('contextId')); - if (!$coverImageThumbnailUrl) { - $coverImageThumbnailUrl = $request->getBaseUrl() . '/templates/images/book-default_t.png'; - } - - // Can't use Request::redirectUrl; FireFox doesn't - // seem to like it for images. - header('Location: ' . $coverImageThumbnailUrl); - exit; - } -} - - diff --git a/controllers/submission/CoverHandler.php b/controllers/submission/CoverHandler.php new file mode 100644 index 00000000000..b3f56abe2cc --- /dev/null +++ b/controllers/submission/CoverHandler.php @@ -0,0 +1,124 @@ +addPolicy(new OmpPublishedSubmissionAccessPolicy($request, $args, $roleAssignments)); + return parent::authorize($request, $args, $roleAssignments); + } + + /** + * Set the monograph ID + * + * @param int $monographId + */ + public function setMonographId($monographId) + { + $this->monographId = $monographId; + } + + /** + * Get the monograph ID + * + * @return int + */ + public function getMonographId() + { + return $this->monographId; + } + + /** + * Set the current press + * + * @param Press $press + */ + public function setPress($press) + { + $this->_press = $press; + } + + /** + * Get the current press + * + * @return Press + */ + public function getPress() + { + return $this->_press; + } + + /** + * Serve the cover image for a published submission. + */ + public function cover($args, $request) + { + // this function is only used on the book page i.e. for published submissions + $submission = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_MONOGRAPH); + + $coverImageUrl = $submission->getCurrentPublication()->getLocalizedCoverImageUrl($submission->getData('contextId')); + if (!$coverImageUrl) { + $coverImageUrl = $request->getBaseUrl() . '/templates/images/book-default.png'; + } + + // Can't use Request::redirectUrl; FireFox doesn't + // seem to like it for images. + header('Location: ' . $coverImageUrl); + exit; + } + + /** + * Serve the cover thumbnail for a published submission. + */ + public function thumbnail($args, $request) + { + // use Application::ASSOC_TYPE_MONOGRAPH to set the cover at any workflow stage + // i.e. also if the monograph has not been published yet + $submission = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_MONOGRAPH); + + $coverImageThumbnailUrl = $submission->getCurrentPublication()->getLocalizedCoverImageThumbnailUrl($submission->getData('contextId')); + if (!$coverImageThumbnailUrl) { + $coverImageThumbnailUrl = $request->getBaseUrl() . '/templates/images/book-default_t.png'; + } + + // Can't use Request::redirectUrl; FireFox doesn't + // seem to like it for images. + header('Location: ' . $coverImageThumbnailUrl); + exit; + } +} diff --git a/controllers/tab/pubIds/form/PublicIdentifiersForm.inc.php b/controllers/tab/pubIds/form/PublicIdentifiersForm.inc.php deleted file mode 100644 index e249178acc0..00000000000 --- a/controllers/tab/pubIds/form/PublicIdentifiersForm.inc.php +++ /dev/null @@ -1,69 +0,0 @@ -getContext()->getData('enablePublisherId'); - $templateMgr->assign([ - 'enablePublisherId' => (is_a($this->getPubObject(), 'Chapter') && in_array('chapter', $enablePublisherId)) || - (is_a($this->getPubObject(), 'Representation') && in_array('representation', $enablePublisherId)) || - (is_a($this->getPubObject(), 'SubmissionFile') && in_array('file', $enablePublisherId)), - ]); - - return parent::fetch($request, $template, $display); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - parent::execute(...$functionArgs); - $pubObject = $this->getPubObject(); - if (is_a($pubObject, 'Chapter')) { - $chapterDao = DAORegistry::getDAO('ChapterDAO'); /* @var $chapterDao ChapterDAO */ - $chapterDao->updateObject($pubObject); - } - } - - /** - * @copydoc PKPPublicIdentifiersForm::getAssocType() - */ - public function getAssocType($pubObject) { - if (is_a($pubObject, 'Chapter')) { - return ASSOC_TYPE_CHAPTER; - } - return parent::getAssocType($pubObject); - } - -} - - diff --git a/controllers/tab/pubIds/form/PublicIdentifiersForm.php b/controllers/tab/pubIds/form/PublicIdentifiersForm.php new file mode 100644 index 00000000000..04ac3ce36be --- /dev/null +++ b/controllers/tab/pubIds/form/PublicIdentifiersForm.php @@ -0,0 +1,68 @@ +getContext()->getData('enablePublisherId'); + $templateMgr->assign([ + 'enablePublisherId' => (is_a($this->getPubObject(), 'Chapter') && in_array('chapter', $enablePublisherId)) || + (is_a($this->getPubObject(), 'Representation') && in_array('representation', $enablePublisherId)) || + (is_a($this->getPubObject(), 'SubmissionFile') && in_array('file', $enablePublisherId)), + ]); + + return parent::fetch($request, $template, $display); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + parent::execute(...$functionArgs); + $pubObject = $this->getPubObject(); + if (is_a($pubObject, 'Chapter')) { + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + $chapterDao->updateObject($pubObject); + } + } + + /** + * @copydoc PKPPublicIdentifiersForm::getAssocType() + */ + public function getAssocType($pubObject) + { + if (is_a($pubObject, 'Chapter')) { + return Application::ASSOC_TYPE_CHAPTER; + } + return parent::getAssocType($pubObject); + } +} diff --git a/controllers/tab/settings/siteAccessOptions/form/SiteAccessOptionsForm.inc.php b/controllers/tab/settings/siteAccessOptions/form/SiteAccessOptionsForm.inc.php deleted file mode 100644 index 65da290595d..00000000000 --- a/controllers/tab/settings/siteAccessOptions/form/SiteAccessOptionsForm.inc.php +++ /dev/null @@ -1,35 +0,0 @@ - 'bool', - 'restrictSiteAccess' => 'bool', - 'restrictMonographAccess' => 'bool', - ); - - parent::__construct($settings, 'controllers/tab/settings/siteAccessOptions/form/siteAccessOptionsForm.tpl', $wizardMode); - } - -} - - diff --git a/controllers/tab/workflow/ReviewRoundTabHandler.inc.php b/controllers/tab/workflow/ReviewRoundTabHandler.inc.php deleted file mode 100644 index 38012199891..00000000000 --- a/controllers/tab/workflow/ReviewRoundTabHandler.inc.php +++ /dev/null @@ -1,60 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER, ROLE_ID_ASSISTANT), - array('internalReviewRound', 'externalReviewRound') - ); - } - - - // - // Extended methods from Handler - // - /** - * @see PKPHandler::authorize() - */ - function authorize($request, &$args, $roleAssignments) { - $stageId = (int) $request->getUserVar('stageId'); // This is validated in WorkflowStageAccessPolicy. - - import('lib.pkp.classes.security.authorization.WorkflowStageAccessPolicy'); - $this->addPolicy(new WorkflowStageAccessPolicy($request, $args, $roleAssignments, 'submissionId', $stageId)); - - return parent::authorize($request, $args, $roleAssignments); - } - - /** - * JSON fetch the internal review round info (tab). - * @param $args array - * @param $request PKPRequest - */ - function internalReviewRound($args, $request) { - return $this->_reviewRound($args, $request); - } -} - - diff --git a/controllers/tab/workflow/ReviewRoundTabHandler.php b/controllers/tab/workflow/ReviewRoundTabHandler.php new file mode 100644 index 00000000000..b1147ba45a2 --- /dev/null +++ b/controllers/tab/workflow/ReviewRoundTabHandler.php @@ -0,0 +1,64 @@ +addRoleAssignment( + [Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN, Role::ROLE_ID_ASSISTANT], + ['internalReviewRound', 'externalReviewRound'] + ); + } + + + // + // Extended methods from Handler + // + /** + * @see PKPHandler::authorize() + */ + public function authorize($request, &$args, $roleAssignments) + { + $stageId = (int) $request->getUserVar('stageId'); // This is validated in WorkflowStageAccessPolicy. + + $this->addPolicy(new WorkflowStageAccessPolicy($request, $args, $roleAssignments, 'submissionId', $stageId)); + + return parent::authorize($request, $args, $roleAssignments); + } + + /** + * JSON fetch the internal review round info (tab). + * + * @param array $args + * @param Request $request + */ + public function internalReviewRound($args, $request) + { + return $this->_reviewRound($args, $request); + } +} diff --git a/controllers/tab/workflow/WorkflowTabHandler.inc.php b/controllers/tab/workflow/WorkflowTabHandler.inc.php deleted file mode 100644 index 9c570c231c7..00000000000 --- a/controllers/tab/workflow/WorkflowTabHandler.inc.php +++ /dev/null @@ -1,44 +0,0 @@ - array( - NOTIFICATION_TYPE_VISIT_CATALOG => array(ASSOC_TYPE_SUBMISSION, $submissionId), - NOTIFICATION_TYPE_FORMAT_NEEDS_APPROVED_SUBMISSION => array(ASSOC_TYPE_MONOGRAPH, $submissionId), - ), - NOTIFICATION_LEVEL_TRIVIAL => array() - ); - } -} - - diff --git a/controllers/tab/workflow/WorkflowTabHandler.php b/controllers/tab/workflow/WorkflowTabHandler.php new file mode 100644 index 00000000000..ea9be47088f --- /dev/null +++ b/controllers/tab/workflow/WorkflowTabHandler.php @@ -0,0 +1,53 @@ + [ + Notification::NOTIFICATION_TYPE_VISIT_CATALOG => [Application::ASSOC_TYPE_SUBMISSION, $submissionId], + Notification::NOTIFICATION_TYPE_FORMAT_NEEDS_APPROVED_SUBMISSION => [Application::ASSOC_TYPE_MONOGRAPH, $submissionId], + ], + Notification::NOTIFICATION_LEVEL_TRIVIAL => [] + ]; + } + + protected function getNewReviewRoundDecisionType(int $stageId): DecisionType + { + if ($stageId === WORKFLOW_STAGE_ID_INTERNAL_REVIEW) { + return new NewInternalReviewRound(); + } + return new NewExternalReviewRound(); + } +} diff --git a/cypress.config.js b/cypress.config.js new file mode 100644 index 00000000000..cef382ab446 --- /dev/null +++ b/cypress.config.js @@ -0,0 +1,49 @@ +const { defineConfig } = require('cypress') + +module.exports = defineConfig({ + env: { + contextTitles: { + en: 'Public Knowledge Press', + fr_CA: 'Press de la connaissance du public', + }, + contextDescriptions: { + en: + 'Public Knowledge Press is a publisher dedicated to the subject of public access to science.', + fr_CA: + "Le Press de Public Knowledge est une presse sur le thème de l'accès du public à la science.", + }, + contextAcronyms: { + en: 'PKP', + }, + defaultGenre: 'Book Manuscript', + authorUserGroupId: 13, + volumeEditorUserGroupId: 14, + dataAvailabilityTest: { + submission: { + title: 'The West and Beyond: New Perspectives on an Imagined Region', + authorFamilyName: 'Finkel' + }, + anonymousReviewer: 'gfavio', + anonymousDisclosedReviewer: 'alzacharia' + } + }, + watchForFileChanges: false, + defaultCommandTimeout: 10000, + video: false, + numTestsKeptInMemory: 0, + e2e: { + // We've imported your old cypress plugins here. + // You may want to clean this up later by importing these. + setupNodeEvents(on, config) { + return require('./lib/pkp/cypress/plugins/index.js')(on, config) + }, + specPattern: [ + 'cypress/tests/data/**/*.cy.{js,jsx,ts,tsx}', + 'cypress/tests/integration/**/*.cy.{js,jsx,ts,tsx}', + 'lib/pkp/cypress/tests/**/*.cy.{js,jsx,ts,tsx}', + ], + experimentalRunAllSpecs: true, + }, + // Allow cypress to interact with iframes + chromeWebSecurity: false +}) diff --git a/cypress.json b/cypress.json deleted file mode 100644 index 6030684969b..00000000000 --- a/cypress.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "env": { - "contextTitles": { - "en_US": "Public Knowledge Press", - "fr_CA": "Press de la connaissance du public" - }, - "contextDescriptions": { - "en_US": "Public Knowledge Press is a publisher dedicated to the subject of public access to science.", - "fr_CA": "Le Press de Public Knowledge est une presse sur le thème de l'accès du public à la science." - }, - "contextAcronyms": { - "en_US": "PKP" - }, - "defaultGenre": "Book Manuscript" - }, - "integrationFolder": "cypress/tests", - "pluginsFile": "lib/pkp/cypress/plugins/index.js", - "watchForFileChanges": false, - "defaultCommandTimeout": 10000, - "video": false, - "numTestsKeptInMemory": 0 -} diff --git a/cypress.travis.env.json b/cypress.travis.env.json new file mode 100644 index 00000000000..84b449526a5 --- /dev/null +++ b/cypress.travis.env.json @@ -0,0 +1,8 @@ +{ + "baseUrl": "http://localhost", + "DBHOST": "localhost", + "DBUSERNAME": "omp-ci", + "DBPASSWORD": "omp-ci", + "DBNAME": "omp-ci", + "FILESDIR": "files" +} diff --git a/cypress/support/commands.js b/cypress/support/commands.js index 5485bfc5fec..fd07290c850 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -7,6 +7,7 @@ * */ +import Api from '../../lib/pkp/cypress/support/api.js'; import '../../lib/pkp/cypress/support/commands'; Cypress.Commands.add('addToCatalog', function() { @@ -15,4 +16,68 @@ Cypress.Commands.add('addToCatalog', function() { cy.get('div.pkpWorkflow__publishModal button:contains("Publish")').click(); }); +Cypress.Commands.add('addChapters', (chapters) => { + chapters.forEach(chapter => { + cy.waitJQuery(); + cy.get('a[id^="component-grid-users-chapter-chaptergrid-addChapter-button-"]:visible').click(); + cy.wait(2000); // Avoid occasional failure due to form init taking time + + // Contributors + chapter.contributors.forEach(contributor => { + cy.get('form[id="editChapterForm"] label:contains("' + Cypress.$.escapeSelector(contributor) + '")').click(); + }); + + // Title/subtitle + cy.get('form[id="editChapterForm"] input[id^="title-en-"]').type(chapter.title, {delay: 0}); + if ('subtitle' in chapter) { + cy.get('form[id="editChapterForm"] input[id^="subtitle-en-"]').type(chapter.subtitle, {delay: 0}); + } + cy.get('div.pkp_modal_panel div:contains("Add Chapter")').click(); // FIXME: Resolve focus problem on title field + + cy.flushNotifications(); + cy.get('form[id="editChapterForm"] button:contains("Save")').click(); + cy.get('div:contains("Your changes have been saved.")'); + cy.waitJQuery(); + + // Files + if ('files' in chapter) { + cy.get('div[id="chaptersGridContainer"] a:contains("' + Cypress.$.escapeSelector(chapter.title) + '")').click(); + chapter.files.forEach(file => { + cy.get('form[id="editChapterForm"] label:contains("' + Cypress.$.escapeSelector(file) + '")').click(); + //cy.get('form[id="editChapterForm"] label:contains("' + Cypress.$.escapeSelector(chapter.title.substring(0, 40)) + '")').click(); + }); + cy.flushNotifications(); + cy.get('form[id="editChapterForm"] button:contains("Save")').click(); + cy.get('div:contains("Your changes have been saved.")'); + } + + cy.get('div[id^="component-grid-users-chapter-chaptergrid-"] a.pkp_linkaction_editChapter:contains("' + Cypress.$.escapeSelector(chapter.title) + '")'); + }); +}); + +Cypress.Commands.add('createSubmissionWithApi', (data, csrfToken) => { + const api = new Api(Cypress.env('baseUrl') + '/index.php/publicknowledge/api/v1'); + + return cy.beginSubmissionWithApi(api, data, csrfToken) + .putMetadataWithApi(data, csrfToken) + .get('@submissionId').then((submissionId) => { + if (typeof data.files === 'undefined' || !data.files.length) { + return; + } + cy.visit('/index.php/publicknowledge/submission?id=' + submissionId); + cy.get('button:contains("Continue")').click(); + + // Must use the UI to upload files until we upgrade Cypress + // to 7.4.0 or higher. + // @see https://github.com/cypress-io/cypress/issues/1647 + cy.uploadSubmissionFiles(data.files); + + }) + .then(() => { + cy.get('.pkpSteps__step__label:contains("Details")').click(); + }) + .addSubmissionAuthorsWithApi(api, data, csrfToken) + .addChapters(data.chapters); +}); + diff --git a/cypress/support/e2e.js b/cypress/support/e2e.js new file mode 100644 index 00000000000..9a2943b4d4b --- /dev/null +++ b/cypress/support/e2e.js @@ -0,0 +1,23 @@ +// *********************************************************** +// This example support/index.js is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands'; + +require('cypress-failed-log'); + +afterEach(function() { + cy.runQueueJobs(); +}); diff --git a/cypress/support/index.js b/cypress/support/index.js deleted file mode 100644 index 966b11b18dd..00000000000 --- a/cypress/support/index.js +++ /dev/null @@ -1,44 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -import '@foreachbe/cypress-tinymce' - -require('cypress-failed-log') - -// See https://stackoverflow.com/questions/58657895/is-there-a-reliable-way-to-have-cypress-exit-as-soon-as-a-test-fails/58660504#58660504 -function abortEarly() { - if (this.currentTest.state === 'failed') { - return cy.task('shouldSkip', true); - } - cy.task('shouldSkip').then(value => { - if (value) this.skip(); - }); -} - -beforeEach(abortEarly); -afterEach(abortEarly); - -before(() => { - if (Cypress.browser.isHeaded) { - // Reset the shouldSkip flag at the start of a run, so that it - // doesn't carry over into subsequent runs. - // Do this only for headed runs because in headless runs, - // the `before` hook is executed for each spec file. - cy.task('resetShouldSkipFlag'); - } -}); diff --git a/cypress/tests/data/10-ApplicationSetup/10-Installation.cy.js b/cypress/tests/data/10-ApplicationSetup/10-Installation.cy.js new file mode 100644 index 00000000000..239b93c3bee --- /dev/null +++ b/cypress/tests/data/10-ApplicationSetup/10-Installation.cy.js @@ -0,0 +1,14 @@ +/** + * @file cypress/tests/data/10-Installation.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('Data Suite Tests', function() { + it('Installs the software', function() { + cy.install(); + }) +}) diff --git a/cypress/tests/data/10-ApplicationSetup/20-CreateContext.cy.js b/cypress/tests/data/10-ApplicationSetup/20-CreateContext.cy.js new file mode 100644 index 00000000000..69e1279a1a0 --- /dev/null +++ b/cypress/tests/data/10-ApplicationSetup/20-CreateContext.cy.js @@ -0,0 +1,136 @@ +/** + * @file cypress/tests/data/20-CreateContext.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('Data suite tests', function() { + it('Creates a context', function() { + cy.login('admin', 'admin'); + + // Create a new context + cy.get('div[id=contextGridContainer]').find('a').contains('Create').click(); + + // Fill in various details + cy.wait(2000); // https://github.com/tinymce/tinymce/issues/4355 + cy.get('div[id=editContext]').find('button').contains(/French/).click(); + cy.get('input[name="name-fr_CA"]').type(Cypress.env('contextTitles')['fr_CA']); + cy.get('button').contains('Save').click() + cy.get('div[id=context-name-error-en]').find('span').contains('This field is required.'); + cy.get('div[id=context-acronym-error-en]').find('span').contains('This field is required.'); + cy.get('div[id=context-contactName-error]').find('span').contains('This field is required.'); + cy.get('div[id=context-contactEmail-error]').find('span').contains('This field is required.'); + cy.get('div[id=context-urlPath-error]').find('span').contains('This field is required.'); + cy.get('div[id=context-primaryLocale-error]').find('span').contains('This field is required.'); + cy.get('input[name="name-en"]').type(Cypress.env('contextTitles')['en']); + cy.get('input[name=acronym-en]').type('JPK'); + cy.get('span').contains('Enable this press').siblings('input').check(); + cy.get('input[name="supportedLocales"][value="en').check(); + cy.get('input[name="supportedLocales"][value="fr_CA').check(); + cy.get('input[name="primaryLocale"][value="en').check(); + cy.get('select[id=context-country-control]').select('Iceland'); + cy.get('input[name=contactName]').type('Ramiro Vaca', {delay: 0}); + + // Test invalid contact email and path character + cy.get('input[name=contactEmail').type('rvacamailinator.com', {delay: 0}); + cy.get('input[name=urlPath]').type('public&-)knowledge'); + cy.get('button').contains('Save').click() + cy.get('div[id=context-urlPath-error]').find('span').contains('The path can only include letters'); + cy.get('div[id=context-contactEmail-error]').find('span').contains('This is not a valid email address.'); + + // Fill up the path information with valid path data + cy.get('input[name=urlPath]').clear().type('publicknowledge'); + + // Fill up the contact email with valid data + cy.get('input[name=contactEmail').clear().type('rvaca@mailinator.com', {delay: 0}); + + // Context descriptions + cy.setTinyMceContent('context-description-control-en', Cypress.env('contextDescriptions')['en']); + cy.setTinyMceContent('context-description-control-fr_CA', Cypress.env('contextDescriptions')['fr_CA']); + cy.get('button').contains('Save').click(); + + // Wait for it to finish up before moving on + cy.contains('Settings Wizard', {timeout: 30000}); + }); + + it('Tests the settings wizard', function() { + cy.login('admin', 'admin'); + cy.get('a').contains('admin').click(); + cy.get('a').contains('Dashboard').click(); + cy.get('.app__nav a').contains('Administration').click(); + cy.get('a').contains('Hosted Presses').click(); + cy.get('a[class=show_extras]').click(); + cy.contains('Settings wizard').click(); + + cy.get('button[id="appearance-button"]').click(); + cy.get('#appearance button').contains('Save').click(); + cy.get('#appearance [role="status"]').contains('Saved'); + + cy.get('button[id="languages-button"]').click(); + cy.get('input[id^=select-cell-fr_CA-submissionLocale]').click(); + cy.contains('Locale settings saved.'); + + cy.get('button[id="indexing-button"]').click(); + cy.get('input[name="searchDescription-en"]').type(Cypress.env('contextDescriptions')['en']); + cy.get('textarea[name="customHeaders-en"]').type(''); + cy.get('#indexing button').contains('Save').click(); + cy.get('#indexing [role="status"]').contains('Saved'); + + cy.get('label[for="searchIndexing-searchDescription-control-en"] ~ button.tooltipButton').click(); + cy.get('div').contains('Provide a brief description'); + cy.get('label[for="searchIndexing-searchDescription-control-en"] ~ button.tooltipButton').click(); + }); + + it('Tests context settings form', function() { + cy.login('admin', 'admin'); + cy.get('a').contains('admin').click(); + cy.get('a').contains('Dashboard').click(); + cy.get('.app__nav a').contains('Press').click(); + + cy.get('div[id=masthead]').find('button').contains('Save').click(); + cy.get('#masthead [role="status"]').contains('Saved'); + }); + + it('Tests contact settings form', function() { + cy.login('admin', 'admin'); + cy.get('a').contains('admin').click(); + cy.get('a').contains('Dashboard').click(); + cy.get('.app__nav a').contains('Press').click(); + cy.get('button[id="contact-button"]').click(); + + // Submit the form with required fields missing. + cy.get('div[id=contact').find('button').contains('Save').click(); + cy.get('div[id="contact-supportName-error"]').contains('This field is required.'); + cy.get('div[id="contact-supportEmail-error"]').contains('This field is required.'); + + cy.get('textarea[name=mailingAddress]').type("123 456th Street\nBurnaby, British Columbia\nCanada"); + cy.get('input[name=supportName]').type('Ramiro Vaca'); + + // Test invalid emails + cy.get('input[name=supportEmail').type('rvacamailinator.com'); + cy.get('div[id=contact').find('button').contains('Save').click(); + cy.get('div[id="contact-supportEmail-error"]').contains('This is not a valid email address.'); + + cy.get('input[name=supportEmail').clear().type('rvaca@mailinator.com'); + cy.get('div[id=contact').find('button').contains('Save').click(); + cy.get('#contact [role="status"]').contains('Saved'); + }); + + it('Tests role settings', function() { + cy.login('admin', 'admin', 'publicknowledge'); + cy.get('a:contains("Users & Roles")').click(); + cy.get('button').contains('Roles').click(); + + // "Edit" link below "Volume editor" role + cy.get('tr[id^="component-grid-settings-roles-usergroupgrid-row-"]:contains("Volume editor") > .first_column > .show_extras').click(); + cy.get('tr[id^="component-grid-settings-roles-usergroupgrid-row-"]:contains("Volume editor") + tr a:contains("Edit")').click(); + + // Click the "permit self registration" checkbox + cy.get('input#permitSelfRegistration').click(); + cy.get('form#userGroupForm button:contains("OK")').click(); + cy.get('div:contains("Your changes have been saved.")'); + }); +}) diff --git a/cypress/tests/data/10-ApplicationSetup/40-CreateUsers.cy.js b/cypress/tests/data/10-ApplicationSetup/40-CreateUsers.cy.js new file mode 100644 index 00000000000..4e887f558a7 --- /dev/null +++ b/cypress/tests/data/10-ApplicationSetup/40-CreateUsers.cy.js @@ -0,0 +1,168 @@ +/** + * @file cypress/tests/data/40-CreateUsers.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('Data suite tests', function() { + it('Creates users', function() { + cy.login('admin', 'admin'); + cy.get('a:contains("admin"):visible').click(); + cy.get('a:contains("Dashboard")').click(); + cy.get('a:contains("Users & Roles")').click(); + + var users = [ + { + 'username': 'rvaca', + 'givenName': 'Ramiro', + 'familyName': 'Vaca', + 'country': 'Mexico', + 'affiliation': 'Universidad Nacional Autónoma de México', + 'mustChangePassword': true, + 'roles': ['Press manager'] + }, + { + 'username': 'dbarnes', + 'givenName': 'Daniel', + 'familyName': 'Barnes', + 'country': 'Australia', + 'affiliation': 'University of Melbourne', + 'roles': ['Press editor'] + }, + { + 'username': 'dbuskins', + 'givenName': 'David', + 'familyName': 'Buskins', + 'country': 'United States', + 'affiliation': 'University of Chicago', + 'roles': ['Series editor'] + }, + { + 'username': 'sberardo', + 'givenName': 'Stephanie', + 'familyName': 'Berardo', + 'country': 'Canada', + 'affiliation': 'University of Toronto', + 'roles': ['Series editor'] + }, + { + 'username': 'minoue', + 'givenName': 'Minoti', + 'familyName': 'Inoue', + 'country': 'Japan', + 'affiliation': 'Kyoto University', + 'roles': ['Series editor'] + }, + { + 'username': 'jjanssen', + 'givenName': 'Julie', + 'familyName': 'Janssen', + 'country': 'Netherlands', + 'affiliation': 'Utrecht University', + 'roles': ['Internal Reviewer'] + }, + { + 'username': 'phudson', + 'givenName': 'Paul', + 'familyName': 'Hudson', + 'country': 'Canada', + 'affiliation': 'McGill University', + 'roles': ['Internal Reviewer'] + }, + { + 'username': 'amccrae', + 'givenName': 'Aisla', + 'familyName': 'McCrae', + 'country': 'Canada', + 'affiliation': 'University of Manitoba', + 'roles': ['Internal Reviewer'] + }, + { + 'username': 'agallego', + 'givenName': 'Adela', + 'familyName': 'Gallego', + 'country': 'United States', + 'affiliation': 'State University of New York', + 'roles': ['External Reviewer'] + }, + { + 'username': 'alzacharia', + 'givenName': 'Al', + 'familyName': 'Zacharia', + 'country': 'Ghana', + 'affiliation': 'KNUST', + 'roles': ['External Reviewer'] + }, + { + 'username': 'gfavio', + 'givenName': 'Gonzalo', + 'familyName': 'Favio', + 'country': 'Spain', + 'affiliation': 'Madrid', + 'roles': ['External Reviewer'] + }, + { + 'username': 'mfritz', + 'givenName': 'Maria', + 'familyName': 'Fritz', + 'country': 'Belgium', + 'affiliation': 'Ghent University', + 'roles': ['Copyeditor'] + }, + { + 'username': 'svogt', + 'givenName': 'Sarah', + 'familyName': 'Vogt', + 'country': 'Chile', + 'affiliation': 'Universidad de Chile', + 'roles': ['Copyeditor'] + }, + { + 'username': 'gcox', + 'givenName': 'Graham', + 'familyName': 'Cox', + 'country': 'United States', + 'affiliation': 'Duke University', + 'roles': ['Layout Editor'] + }, + { + 'username': 'shellier', + 'givenName': 'Stephen', + 'familyName': 'Hellier', + 'country': 'South Africa', + 'affiliation': 'University of Cape Town', + 'roles': ['Layout Editor'] + }, + { + 'username': 'cturner', + 'givenName': 'Catherine', + 'familyName': 'Turner', + 'country': 'United Kingdom', + 'affiliation': 'Imperial College London', + 'roles': ['Proofreader'] + }, + { + 'username': 'skumar', + 'givenName': 'Sabine', + 'familyName': 'Kumar', + 'country': 'Singapore', + 'affiliation': 'National University of Singapore', + 'roles': ['Proofreader'] + } + ] + users.forEach(user => { + cy.createUser(user); + }); + cy.logout(); + var user = users[0]; + if (!('email' in user)) user.email = user.username + '@mailinator.com'; + if (!('password' in user)) user.password = user.username + user.username; + + cy.login(user.username); + cy.resetPassword(user.username, user.password); + cy.logout(); + }); +}) diff --git a/cypress/tests/data/10-ApplicationSetup/50-CreateCategories.cy.js b/cypress/tests/data/10-ApplicationSetup/50-CreateCategories.cy.js new file mode 100644 index 00000000000..9bfe5a63775 --- /dev/null +++ b/cypress/tests/data/10-ApplicationSetup/50-CreateCategories.cy.js @@ -0,0 +1,70 @@ +/** + * @file cypress/tests/data/50-CreateSections.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('Data suite tests', function() { + it('Creates/configures categories', function() { + cy.login('admin', 'admin'); + cy.get('a').contains('admin').click(); + cy.get('a').contains('Dashboard').click(); + cy.get('.app__nav a').contains('Press').click(); + cy.get('button[id="categories-button"]').click(); + + // Create an Applied Science category + cy.get('a[id^=component-grid-settings-category-categorycategorygrid-addCategory-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="name-en-"]').type('Applied Science', {delay: 0}); + cy.get('input[id^="path-"]').type('applied-science', {delay: 0}); + cy.get('form[id=categoryForm]').contains('OK').click(); + cy.get('tr[id^="component-grid-settings-category-categorycategorygrid-category-"] a:contains("Applied Science")'); + + // Create a Computer Science subcategory + cy.get('a[id^=component-grid-settings-category-categorycategorygrid-addCategory-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="name-en-"]').type('Computer Science', {delay: 0}); + cy.get('select[id="parentId"]').select('Applied Science'); + cy.get('input[id^="path-"]').type('comp-sci', {delay: 0}); + cy.get('form[id=categoryForm]').contains('OK').click(); + cy.get('tr[id^="component-grid-settings-category-categorycategorygrid-category-"] span:contains("Computer Science")'); + + // Create an Engineering subcategory + cy.get('a[id^=component-grid-settings-category-categorycategorygrid-addCategory-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="name-en-"]').type('Engineering', {delay: 0}); + cy.get('select[id="parentId"]').select('Applied Science'); + cy.get('input[id^="path-"]').type('eng', {delay: 0}); + cy.get('form[id=categoryForm]').contains('OK').click(); + cy.get('tr[id^="component-grid-settings-category-categorycategorygrid-category-"] span:contains("Engineering")'); + + // Create a Social Sciences category + cy.get('a[id^=component-grid-settings-category-categorycategorygrid-addCategory-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="name-en-"]').type('Social Sciences', {delay: 0}); + cy.get('input[id^="path-"]').type('social-sciences', {delay: 0}); + cy.get('form[id=categoryForm]').contains('OK').click(); + cy.get('tr[id^="component-grid-settings-category-categorycategorygrid-category-"] a:contains("Social Sciences")'); + + // Create a Sociology subcategory + cy.get('a[id^=component-grid-settings-category-categorycategorygrid-addCategory-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="name-en-"]').type('Sociology', {delay: 0}); + cy.get('select[id="parentId"]').select('Social Sciences'); + cy.get('input[id^="path-"]').type('sociology', {delay: 0}); + cy.get('form[id=categoryForm]').contains('OK').click(); + cy.get('tr[id^="component-grid-settings-category-categorycategorygrid-category-"] span:contains("Sociology")'); + + // Create a Anthropology subcategory + cy.get('a[id^=component-grid-settings-category-categorycategorygrid-addCategory-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="name-en-"]').type('Anthropology', {delay: 0}); + cy.get('select[id="parentId"]').select('Social Sciences'); + cy.get('input[id^="path-"]').type('anthropology', {delay: 0}); + cy.get('form[id=categoryForm]').contains('OK').click(); + cy.get('tr[id^="component-grid-settings-category-categorycategorygrid-category-"] span:contains("Anthropology")'); + }); +}) diff --git a/cypress/tests/data/10-ApplicationSetup/50-CreateSeries.cy.js b/cypress/tests/data/10-ApplicationSetup/50-CreateSeries.cy.js new file mode 100644 index 00000000000..ce05c637767 --- /dev/null +++ b/cypress/tests/data/10-ApplicationSetup/50-CreateSeries.cy.js @@ -0,0 +1,58 @@ +/** + * @file cypress/tests/data/50-CreateSeries.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('Data suite tests', function() { + it('Creates/configures series', function() { + cy.login('admin', 'admin'); + cy.get('a').contains('admin').click(); + cy.get('a').contains('Dashboard').click(); + cy.get('.app__nav a').contains('Press').click(); + cy.get('button[id="sections-button"]').click(); + + // Create a new "Library & Information Studies" series + cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); + cy.wait(500); // Avoid occasional failure due to form init taking time + cy.get('input[id^="title-en-"]').type('Library & Information Studies'); + cy.get('input[id^="path"]').type('lis'); + cy.get('label').contains('David Buskins').click(); + cy.get('form[id=seriesForm]').contains('Save').click(); + + // Create a new "Political Economy" series + cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="title-en-"]').type('Political Economy'); + cy.get('input[id^="path"]').type('pe'); + cy.get('label').contains('Stephanie Berardo').click(); + cy.get('form[id=seriesForm]').contains('Save').click(); + + // Create a new "History" series + cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="title-en-"]').type('History'); + cy.get('label').contains('Daniel Barnes').click(); + cy.get('input[id^="path"]').type('his'); + cy.get('form[id=seriesForm]').contains('Save').click(); + + // Create a new "Education" series + cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="title-en-"]').type('Education'); + cy.get('label').contains('Daniel Barnes').click(); + cy.get('input[id^="path"]').type('ed'); + cy.get('form[id=seriesForm]').contains('Save').click(); + + // Create a new "Psychology" series + cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="title-en-"]').type('Psychology'); + cy.get('label').contains('Daniel Barnes').click(); + cy.get('input[id^="path"]').type('psy'); + cy.get('form[id=seriesForm]').contains('Save').click(); + }); +}) diff --git a/cypress/tests/data/10-Installation.spec.js b/cypress/tests/data/10-Installation.spec.js deleted file mode 100644 index 1176e6f4aa5..00000000000 --- a/cypress/tests/data/10-Installation.spec.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @file cypress/tests/data/10-Installation.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - */ - -describe('Data Suite Tests', function() { - it('Installs the software', function() { - cy.install(); - }) -}) diff --git a/cypress/tests/data/20-CreateContext.spec.js b/cypress/tests/data/20-CreateContext.spec.js deleted file mode 100644 index 0b6524b7acf..00000000000 --- a/cypress/tests/data/20-CreateContext.spec.js +++ /dev/null @@ -1,131 +0,0 @@ -/** - * @file cypress/tests/data/20-CreateContext.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - */ - -describe('Data suite tests', function() { - it('Creates a context', function() { - cy.login('admin', 'admin'); - - // Create a new context - cy.get('div[id=contextGridContainer]').find('a').contains('Create').click(); - - // Fill in various details - cy.wait(2000); // https://github.com/tinymce/tinymce/issues/4355 - cy.get('div[id=editContext]').find('button[label="Français (Canada)"]').click(); - cy.get('input[name="name-fr_CA"]').type(Cypress.env('contextTitles')['fr_CA']); - cy.get('button').contains('Save').click() - cy.get('div[id=context-name-error-en_US]').find('span').contains('This field is required.'); - cy.get('div[id=context-acronym-error-en_US]').find('span').contains('This field is required.'); - cy.get('div[id=context-urlPath-error]').find('span').contains('This field is required.'); - cy.get('div[id=context-primaryLocale-error]').find('span').contains('This field is required.'); - cy.get('input[name="name-en_US"]').type(Cypress.env('contextTitles')['en_US']); - cy.get('input[name=acronym-en_US]').type('JPK'); - cy.get('span').contains('Enable this press').siblings('input').check(); - cy.get('input[name="supportedLocales"][value="en_US').check(); - cy.get('input[name="supportedLocales"][value="fr_CA').check(); - cy.get('input[name="primaryLocale"][value="en_US').check(); - - // Test invalid path characters - cy.get('input[name=urlPath]').type('public&-)knowledge'); - cy.get('button').contains('Save').click() - cy.get('div[id=context-urlPath-error]').find('span').contains('The path can only include letters'); - cy.get('input[name=urlPath]').clear().type('publicknowledge'); - - // Context descriptions - cy.setTinyMceContent('context-description-control-en_US', Cypress.env('contextDescriptions')['en_US']); - cy.setTinyMceContent('context-description-control-fr_CA', Cypress.env('contextDescriptions')['fr_CA']); - cy.get('button').contains('Save').click(); - - // Wait for it to finish up before moving on - cy.contains('Settings Wizard', {timeout: 30000}); - }); - - it('Tests the settings wizard', function() { - cy.login('admin', 'admin'); - cy.get('a').contains('admin').click(); - cy.get('a').contains('Dashboard').click(); - cy.get('.app__nav a').contains('Administration').click(); - cy.get('a').contains('Hosted Presses').click(); - cy.get('a[class=show_extras]').click(); - cy.contains('Settings wizard').click(); - - cy.get('button[id="appearance-button"]').click(); - cy.get('#appearance button').contains('Save').click(); - cy.get('#appearance [role="status"]').contains('Saved'); - - cy.get('button[id="languages-button"]').click(); - cy.get('input[id^=select-cell-fr_CA-submissionLocale]').click(); - cy.contains('Locale settings saved.'); - - cy.get('button[id="indexing-button"]').click(); - cy.get('input[name="searchDescription-en_US"]').type(Cypress.env('contextDescriptions')['en_US']); - cy.get('textarea[name="customHeaders-en_US"]').type(''); - cy.get('#indexing button').contains('Save').click(); - cy.get('#indexing [role="status"]').contains('Saved'); - - cy.get('label[for="searchIndexing-searchDescription-control-en_US"] ~ button.tooltipButton').click(); - cy.get('div').contains('Provide a brief description'); - cy.get('label[for="searchIndexing-searchDescription-control-en_US"] ~ button.tooltipButton').click(); - }); - - it('Tests context settings form', function() { - cy.login('admin', 'admin'); - cy.get('a').contains('admin').click(); - cy.get('a').contains('Dashboard').click(); - cy.get('.app__nav a').contains('Press').click(); - - cy.get('div[id=masthead]').find('button').contains('Save').click(); - cy.get('#masthead [role="status"]').contains('Saved'); - }); - - it('Tests contact settings form', function() { - cy.login('admin', 'admin'); - cy.get('a').contains('admin').click(); - cy.get('a').contains('Dashboard').click(); - cy.get('.app__nav a').contains('Press').click(); - cy.get('button[id="contact-button"]').click(); - - // Submit the form with required fields missing. - cy.get('div[id=contact').find('button').contains('Save').click(); - cy.get('div[id="contact-contactName-error"]').contains('This field is required.'); - cy.get('div[id="contact-contactEmail-error"]').contains('This field is required.'); - cy.get('div[id="contact-supportName-error"]').contains('This field is required.'); - cy.get('div[id="contact-supportEmail-error"]').contains('This field is required.'); - - cy.get('input[name=contactName]').type('Ramiro Vaca'); - cy.get('textarea[name=mailingAddress]').type("123 456th Street\nBurnaby, British Columbia\nCanada"); - cy.get('input[name=supportName]').type('Ramiro Vaca'); - - // Test invalid emails - cy.get('input[name=contactEmail').type('rvacamailinator.com'); - cy.get('input[name=supportEmail').type('rvacamailinator.com'); - cy.get('div[id=contact').find('button').contains('Save').click(); - cy.get('div[id="contact-contactEmail-error"]').contains('This is not a valid email address.'); - cy.get('div[id="contact-supportEmail-error"]').contains('This is not a valid email address.'); - - cy.get('input[name=contactEmail').clear().type('rvaca@mailinator.com'); - cy.get('input[name=supportEmail').clear().type('rvaca@mailinator.com'); - cy.get('div[id=contact').find('button').contains('Save').click(); - cy.get('#contact [role="status"]').contains('Saved'); - }); - - it('Tests role settings', function() { - cy.login('admin', 'admin', 'publicknowledge'); - cy.get('a:contains("Users & Roles")').click(); - cy.get('button').contains('Roles').click(); - - // "Edit" link below "Volume editor" role - cy.get('tr[id^="component-grid-settings-roles-usergroupgrid-row-"]:contains("Volume editor") > .first_column > .show_extras').click(); - cy.get('tr[id^="component-grid-settings-roles-usergroupgrid-row-"]:contains("Volume editor") + tr a:contains("Edit")').click(); - - // Click the "permit self registration" checkbox - cy.get('input#permitSelfRegistration').click(); - cy.get('form#userGroupForm button:contains("OK")').click(); - cy.get('div:contains("Your changes have been saved.")'); - }); -}) diff --git a/cypress/tests/data/40-CreateUsers.spec.js b/cypress/tests/data/40-CreateUsers.spec.js deleted file mode 100644 index d9f18888a57..00000000000 --- a/cypress/tests/data/40-CreateUsers.spec.js +++ /dev/null @@ -1,168 +0,0 @@ -/** - * @file cypress/tests/data/40-CreateUsers.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - */ - -describe('Data suite tests', function() { - it('Creates users', function() { - cy.login('admin', 'admin'); - cy.get('a:contains("admin"):visible').click(); - cy.get('a:contains("Dashboard")').click(); - cy.get('a:contains("Users & Roles")').click(); - - var users = [ - { - 'username': 'rvaca', - 'givenName': 'Ramiro', - 'familyName': 'Vaca', - 'country': 'Mexico', - 'affiliation': 'Universidad Nacional Autónoma de México', - 'mustChangePassword': true, - 'roles': ['Press manager'] - }, - { - 'username': 'dbarnes', - 'givenName': 'Daniel', - 'familyName': 'Barnes', - 'country': 'Australia', - 'affiliation': 'University of Melbourne', - 'roles': ['Press editor'] - }, - { - 'username': 'dbuskins', - 'givenName': 'David', - 'familyName': 'Buskins', - 'country': 'United States', - 'affiliation': 'University of Chicago', - 'roles': ['Series editor'] - }, - { - 'username': 'sberardo', - 'givenName': 'Stephanie', - 'familyName': 'Berardo', - 'country': 'Canada', - 'affiliation': 'University of Toronto', - 'roles': ['Series editor'] - }, - { - 'username': 'minoue', - 'givenName': 'Minoti', - 'familyName': 'Inoue', - 'country': 'Japan', - 'affiliation': 'Kyoto University', - 'roles': ['Series editor'] - }, - { - 'username': 'jjanssen', - 'givenName': 'Julie', - 'familyName': 'Janssen', - 'country': 'Netherlands', - 'affiliation': 'Utrecht University', - 'roles': ['Internal Reviewer'] - }, - { - 'username': 'phudson', - 'givenName': 'Paul', - 'familyName': 'Hudson', - 'country': 'Canada', - 'affiliation': 'McGill University', - 'roles': ['Internal Reviewer'] - }, - { - 'username': 'amccrae', - 'givenName': 'Aisla', - 'familyName': 'McCrae', - 'country': 'Canada', - 'affiliation': 'University of Manitoba', - 'roles': ['Internal Reviewer'] - }, - { - 'username': 'agallego', - 'givenName': 'Adela', - 'familyName': 'Gallego', - 'country': 'United States', - 'affiliation': 'State University of New York', - 'roles': ['External Reviewer'] - }, - { - 'username': 'alzacharia', - 'givenName': 'Al', - 'familyName': 'Zacharia', - 'country': 'Ghana', - 'affiliation': 'KNUST', - 'roles': ['External Reviewer'] - }, - { - 'username': 'gfavio', - 'givenName': 'Gonzalo', - 'familyName': 'Favio', - 'country': 'Spain', - 'affiliation': 'Madrid', - 'roles': ['External Reviewer'] - }, - { - 'username': 'mfritz', - 'givenName': 'Maria', - 'familyName': 'Fritz', - 'country': 'Belgium', - 'affiliation': 'Ghent University', - 'roles': ['Copyeditor'] - }, - { - 'username': 'svogt', - 'givenName': 'Sarah', - 'familyName': 'Vogt', - 'country': 'Chile', - 'affiliation': 'Universidad de Chile', - 'roles': ['Copyeditor'] - }, - { - 'username': 'gcox', - 'givenName': 'Graham', - 'familyName': 'Cox', - 'country': 'United States', - 'affiliation': 'Duke University', - 'roles': ['Layout Editor'] - }, - { - 'username': 'shellier', - 'givenName': 'Stephen', - 'familyName': 'Hellier', - 'country': 'South Africa', - 'affiliation': 'University of Cape Town', - 'roles': ['Layout Editor'] - }, - { - 'username': 'cturner', - 'givenName': 'Catherine', - 'familyName': 'Turner', - 'country': 'United Kingdom', - 'affiliation': 'Imperial College London', - 'roles': ['Proofreader'] - }, - { - 'username': 'skumar', - 'givenName': 'Sabine', - 'familyName': 'Kumar', - 'country': 'Singapore', - 'affiliation': 'National University of Singapore', - 'roles': ['Proofreader'] - } - ] - users.forEach(user => { - cy.createUser(user); - }); - cy.logout(); - var user = users[0]; - if (!('email' in user)) user.email = user.username + '@mailinator.com'; - if (!('password' in user)) user.password = user.username + user.username; - - cy.login(user.username); - cy.resetPassword(user.username, user.password); - cy.logout(); - }); -}) diff --git a/cypress/tests/data/50-CreateSeries.spec.js b/cypress/tests/data/50-CreateSeries.spec.js deleted file mode 100644 index dc1da210e5f..00000000000 --- a/cypress/tests/data/50-CreateSeries.spec.js +++ /dev/null @@ -1,55 +0,0 @@ -/** - * @file cypress/tests/data/50-CreateSeries.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - */ - -describe('Data suite tests', function() { - it('Creates/configures series', function() { - cy.login('admin', 'admin'); - cy.get('a').contains('admin').click(); - cy.get('a').contains('Dashboard').click(); - cy.get('.app__nav a').contains('Press').click(); - cy.get('button[id="sections-button"]').click(); - - // Create a new "Library & Information Studies" series - cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); - cy.wait(500); // Avoid occasional failure due to form init taking time - cy.get('input[id^="title-en_US-"]').type('Library & Information Studies'); - cy.get('input[id^="path"]').type('lis'); - cy.get('label').contains('David Buskins').click(); - cy.get('form[id=seriesForm]').contains('Save').click(); - - // Create a new "Political Economy" series - cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); - cy.wait(1000); // Avoid occasional failure due to form init taking time - cy.get('input[id^="title-en_US-"]').type('Political Economy'); - cy.get('input[id^="path"]').type('pe'); - cy.get('label').contains('Stephanie Berardo').click(); - cy.get('form[id=seriesForm]').contains('Save').click(); - - // Create a new "History" series - cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); - cy.wait(1000); // Avoid occasional failure due to form init taking time - cy.get('input[id^="title-en_US-"]').type('History'); - cy.get('input[id^="path"]').type('his'); - cy.get('form[id=seriesForm]').contains('Save').click(); - - // Create a new "Education" series - cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); - cy.wait(1000); // Avoid occasional failure due to form init taking time - cy.get('input[id^="title-en_US-"]').type('Education'); - cy.get('input[id^="path"]').type('ed'); - cy.get('form[id=seriesForm]').contains('Save').click(); - - // Create a new "Psychology" series - cy.get('a[id^=component-grid-settings-series-seriesgrid-addSeries-button-]').click(); - cy.wait(1000); // Avoid occasional failure due to form init taking time - cy.get('input[id^="title-en_US-"]').type('Psychology'); - cy.get('input[id^="path"]').type('psy'); - cy.get('form[id=seriesForm]').contains('Save').click(); - }); -}) diff --git a/cypress/tests/data/60-content/AclarkSubmission.cy.js b/cypress/tests/data/60-content/AclarkSubmission.cy.js new file mode 100644 index 00000000000..1cced439f87 --- /dev/null +++ b/cypress/tests/data/60-content/AclarkSubmission.cy.js @@ -0,0 +1,98 @@ +/** + * @file cypress/tests/data/60-content/AclarkSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'The ABCs of Human Survival: A Paradigm for Global Citizenship'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + abstract: 'The ABCs of Human Survival examines the effect of militant nationalism and the lawlessness of powerful states on the well-being of individuals and local communities―and the essential role of global citizenship within that dynamic. Based on the analysis of world events, Dr. Arthur Clark presents militant nationalism as a pathological pattern of thinking that threatens our security, while emphasizing effective democracy and international law as indispensable frameworks for human protection.', + shortAuthorString: 'Clark', + authorNames: ['Arthur Clark'], + seriesId: 1, + assignedAuthorNames: ['Arthur Clark'], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + } + ], + chapters: [ + { + 'title': 'Choosing the Future', + 'contributors': ['Arthur Clark'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Axioms', + 'contributors': ['Arthur Clark'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Paradigm Shift', + 'contributors': ['Arthur Clark'], + files: ['chapter3.pdf'] + } + ], + workType: 'monograph' + }; + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'aclark', + 'givenName': 'Arthur', + 'familyName': 'Clark', + 'affiliation': 'University of Calgary', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Clark'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', ['Arthur Clark'], ['chapter1.pdf', 'chapter2.pdf', 'chapter3.pdf']); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Gonzalo Favio'); + cy.clickDecision('Accept Submission'); + cy.recordDecisionAcceptSubmission(['Arthur Clark'], [], []); + cy.isActiveStageTab('Copyediting'); + cy.assignParticipant('Copyeditor', 'Sarah Vogt'); + }); +}); diff --git a/cypress/tests/data/60-content/AclarkSubmission.spec.js b/cypress/tests/data/60-content/AclarkSubmission.spec.js deleted file mode 100644 index edb89621dfe..00000000000 --- a/cypress/tests/data/60-content/AclarkSubmission.spec.js +++ /dev/null @@ -1,53 +0,0 @@ -/** - * @file cypress/tests/data/60-content/AclarkSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'aclark', - 'givenName': 'Arthur', - 'familyName': 'Clark', - 'affiliation': 'University of Calgary', - 'country': 'Canada' - }); - - var title = 'The ABCs of Human Survival: A Paradigm for Global Citizenship'; - cy.createSubmission({ - 'type': 'monograph', - 'title': title, - 'abstract': 'The ABCs of Human Survival examines the effect of militant nationalism and the lawlessness of powerful states on the well-being of individuals and local communities―and the essential role of global citizenship within that dynamic. Based on the analysis of world events, Dr. Arthur Clark presents militant nationalism as a pathological pattern of thinking that threatens our security, while emphasizing effective democracy and international law as indispensable frameworks for human protection.', - 'submitterRole': 'Author', - 'chapters': [ - { - 'title': 'Choosing the Future', - 'contributors': ['Arthur Clark'] - }, - { - 'title': 'Axioms', - 'contributors': ['Arthur Clark'] - }, - { - 'title': 'Paradigm Shift', - 'contributors': ['Arthur Clark'] - } - ], - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Clark'); - cy.sendToReview('External'); - cy.assignReviewer('Gonzalo Favio'); - cy.recordEditorialDecision('Accept Submission'); - cy.get('li.ui-state-active a:contains("Copyediting")'); - cy.assignParticipant('Copyeditor', 'Sarah Vogt'); - }); -}); diff --git a/cypress/tests/data/60-content/AfinkelSubmission.cy.js b/cypress/tests/data/60-content/AfinkelSubmission.cy.js new file mode 100644 index 00000000000..076aabab016 --- /dev/null +++ b/cypress/tests/data/60-content/AfinkelSubmission.cy.js @@ -0,0 +1,341 @@ +/** + * @file cypress/tests/data/60-content/AfinkelSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + submission = { + type: 'editedVolume', + title: 'The West and Beyond: New Perspectives on an Imagined Region', + abstract: 'The West and Beyond explores the state of Western Canadian history, showcasing the research interests of a new generation of scholars while charting new directions for the future and stimulating further interrogation of our past. This dynamic collection encourages dialogue among generations of historians of the West, and among practitioners of diverse approaches to the past. It also reflects a broad range of disciplinary and professional boundaries, offering new ways to understand the West.', + shortAuthorString: 'Finkel, et al.', + authorNames: ['Alvin Finkel', 'Sarah Carter', 'Peter Fortna', 'Gerald Friesen', 'Lyle Dick', 'Winona Wheeler', 'Matt Dyce', 'James Opp'], + assignedAuthorNames: ['Alvin Finkel'], + submitterRole: 'Volume editor', + authors: [ + { + 'givenName': 'Sarah', + 'familyName': 'Carter', + 'country': 'Canada', + // 'affiliation': '', + 'email': 'scarter@mailinator.com', + 'role': 'Volume editor', + }, + { + 'givenName': 'Peter', + 'familyName': 'Fortna', + 'country': 'Canada', + // 'affiliation': '', + 'email': 'pfortna@mailinator.com', + 'role': 'Volume editor', + }, + { + 'givenName': 'Gerald', + 'familyName': 'Friesen', + 'country': 'Canada', + // 'affiliation': '', + 'email': 'gfriesen@mailinator.com', + 'role': 'Chapter Author', + }, + { + 'givenName': 'Lyle', + 'familyName': 'Dick', + 'country': 'Canada', + // 'affiliation': '', + 'email': 'ldick@mailinator.com', + 'role': 'Chapter Author', + }, + { + 'givenName': 'Winona', + 'familyName': 'Wheeler', + 'country': 'Canada', + // 'affiliation': '', + 'email': 'wwheeler@mailinator.com', + 'role': 'Chapter Author', + }, + { + 'givenName': 'Matt', + 'familyName': 'Dyce', + 'country': 'Canada', + // 'affiliation': '', + 'email': 'mdyce@mailinator.com', + 'role': 'Chapter Author', + }, + { + 'givenName': 'James', + 'familyName': 'Opp', + 'country': 'Canada', + // 'affiliation': '', + 'email': 'jopp@mailinator.com', + 'role': 'Chapter Author', + } + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter4.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + } + ], + chapters: [ + { + 'title': 'Critical History in Western Canada 1900–2000', + 'contributors': ['Gerald Friesen'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Vernacular Currents in Western Canadian Historiography: The Passion and Prose of Katherine Hughes, F.G. Roe, and Roy Ito', + 'contributors': ['Lyle Dick'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Cree Intellectual Traditions in History', + 'contributors': ['Winona Wheeler'], + files: ['chapter3.pdf'] + }, + { + 'title': 'Visualizing Space, Race, and History in the North: Photographic Narratives of the Athabasca-Mackenzie River Basin', + 'contributors': ['Matt Dyce', 'James Opp'], + files: ['chapter4.pdf'] + } + ] + }; + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'afinkel', + 'givenName': 'Alvin', + 'familyName': 'Finkel', + 'affiliation': 'Athabasca University', + 'country': 'Canada' + }); + + cy.contains('Make a New Submission').click(); + + // All required fields in the start submission form + cy.contains('Begin Submission').click(); + cy.get('#startSubmission-title-error').contains('This field is required.'); + cy.get('#startSubmission-locale-error').contains('This field is required.'); + cy.get('#startSubmission-submissionRequirements-error').contains('This field is required.'); + cy.get('#startSubmission-privacyConsent-error').contains('This field is required.'); + // cy.get('input[name="title"]').type(submission.title, {delay: 0}); + cy.setTinyMceContent('startSubmission-title-control', submission.title); + cy.get('span:contains("Edited Volume: Authors are associated with their own chapter.")').click(); + cy.get('label:contains("English")').click(); + cy.get('input[name="submissionRequirements"]').check(); + cy.get('input[name="privacyConsent"]').check(); + cy.contains('Begin Submission').click(); + + // The submission wizard has loaded + cy.contains('Make a Submission: Details'); + cy.get('.submissionWizard__submissionDetails').contains('Finkel'); + cy.get('.submissionWizard__submissionDetails').contains(submission.title); + cy.contains('Submitting an Edited Volume in English'); + cy.get('.pkpSteps__step__label--current').contains('Details'); + cy.get('.pkpSteps__step__label').contains('Upload Files'); + cy.get('.pkpSteps__step__label').contains('Contributors'); + cy.get('.pkpSteps__step__label').contains('For the Editors'); + cy.get('.pkpSteps__step__label').contains('Review'); + + // Save the submission id for later tests + cy.location('search') + .then(search => { + submission.id = parseInt(search.split('=')[1]); + }); + + // Enter details + cy.get('.pkpSteps__step__label--current').contains('Details'); + cy.get('h2').contains('Submission Details'); + cy.setTinyMceContent('titleAbstract-abstract-control-en', submission.abstract); + cy.get('#titleAbstract-title-control-en').click({force: true}); // Ensure blur event is fired + + cy.get('.submissionWizard__footer button').contains('Continue').click(); + + // Upload files and set file genres + cy.contains('Make a Submission: Upload Files'); + cy.get('h2').contains('Upload Files'); + cy.get('h2').contains('Files'); + cy.uploadSubmissionFiles(submission.files); + + // Delete a file + cy.uploadSubmissionFiles([{ + 'file': 'dummy.pdf', + 'fileName': 'delete-this-file.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }]); + cy.get('.listPanel__item:contains("delete-this-file.pdf")').find('button').contains('Remove').click(); + cy.get('.modal__panel:contains("Are you sure you want to remove this file?")').find('button').contains('Yes').click(); + cy.get('.listPanel__item:contains("delete-this-file.pdf")').should('not.exist'); + + cy.get('.submissionWizard__footer button').contains('Continue').click(); + + // Add Contributors + cy.contains('Make a Submission: Contributors'); + cy.get('.pkpSteps__step__label--current').contains('Contributors'); + cy.get('h2').contains('Contributors'); + cy.get('.listPanel__item:contains("Alvin Finkel")'); + cy.get('button').contains('Add Contributor').click(); + cy.get('.modal__panel:contains("Add Contributor")').find('button').contains('Save').click(); + cy.get('#contributor-givenName-error-en').contains('This field is required.'); + cy.get('#contributor-email-error').contains('This field is required.'); + cy.get('#contributor-country-error').contains('This field is required.'); + cy.get('.pkpFormField:contains("Given Name")').find('input[name*="givenName-en"]').type(submission.authors[0].givenName); + cy.get('.pkpFormField:contains("Family Name")').find('input[name*="familyName-en"]').type(submission.authors[0].familyName); + cy.get('label').contains(submission.authors[0].role).parent().find('input').click(); + cy.get('.pkpFormField:contains("Country")').find('select').select(submission.authors[0].country) + cy.get('.pkpFormField:contains("Email")').find('input').type('notanemail'); + cy.get('.modal__panel:contains("Add Contributor")').find('button').contains('Save').click(); + cy.get('#contributor-email-error').contains('This is not a valid email address.'); + cy.get('.pkpFormField:contains("Email")').find('input').clear().type(submission.authors[0].email); + cy.get('.modal__panel:contains("Add Contributor")').find('button').contains('Save').click(); + cy.get('button').contains('Order').click(); + cy.get('button:contains("Decrease position of Alvin Finkel")').click(); + cy.get('button').contains('Save Order').click(); + cy.get('button:contains("Preview")').click(); // Will only appear after order is saved + cy.get('.modal__panel:contains("List of Contributors")').find('tr:contains("Abbreviated")').contains('Carter et al.'); + cy.get('.modal__panel:contains("List of Contributors")').find('tr:contains("Publication Lists")').contains('Sarah Carter (Volume editor); Alvin Finkel (Author)'); + cy.get('.modal__panel:contains("List of Contributors")').find('tr:contains("Full")').contains('Sarah Carter (Volume editor); Alvin Finkel (Author)'); + cy.get('.modal__panel:contains("List of Contributors")').find('.modal__closeButton').click(); + cy.get('.listPanel:contains("Contributors")').find('button').contains('Order').click(); + cy.get('button:contains("Increase position of Alvin Finkel")').click(); + cy.get('.listPanel:contains("Contributors")').find('button').contains('Save Order').click(); + cy.get('.listPanel:contains("Contributors") button:contains("Preview")').click(); // Will only appear after order is saved + cy.get('.modal__panel:contains("List of Contributors")').find('tr:contains("Abbreviated")').contains('Finkel et al.'); + cy.get('.modal__panel:contains("List of Contributors")').find('tr:contains("Publication Lists")').contains('Alvin Finkel (Author); Sarah Carter (Volume editor)'); + cy.get('.modal__panel:contains("List of Contributors")').find('tr:contains("Full")').contains('Alvin Finkel (Author); Sarah Carter (Volume editor)'); + cy.get('.modal__panel:contains("List of Contributors")').find('.modal__closeButton').click(); + + submission.authors.slice(1).forEach((author) => { + cy.get('button').contains('Add Contributor').click(); + cy.get('.modal__panel:contains("Add Contributor")').find('button').contains('Save').click(); + cy.get('.pkpFormField:contains("Given Name")').find('input[name*="givenName-en"]').type(author.givenName); + cy.get('.pkpFormField:contains("Family Name")').find('input[name*="familyName-en"]').type(author.familyName); + cy.get('label').contains(author.role).parent().find('input').click(); + cy.get('.pkpFormField:contains("Country")').find('select').select(author.country) + cy.get('.pkpFormField:contains("Email")').find('input').type(author.email); + cy.get('.modal__panel:contains("Add Contributor")').find('button').contains('Save').click(); + }); + + // Delete a contributor + cy.get('.listPanel:contains("Contributors")').find('button').contains('Add Contributor').click(); + cy.get('.pkpFormField:contains("Given Name")').find('input[name*="givenName-en"]').type('Fake Author Name'); + cy.get('.pkpFormField:contains("Email")').find('input').type('delete@mailinator.com'); + cy.get('.pkpFormField:contains("Country")').find('select').select('Barbados'); + cy.get('.modal__panel:contains("Add Contributor")').find('button').contains('Save').click(); + cy.get('.listPanel__item:contains("Fake Author Name")').find('button').contains('Delete').click(); + cy.get('.modal__panel:contains("Are you sure you want to remove Fake Author Name as a contributor?")').find('button').contains('Delete Contributor').click(); + cy.get('.listPanel__item:contains("Fake Author Name")').should('not.exist'); + + + // Save for later + cy.get('button').contains('Save for Later').click(); + cy.contains('Saved for Later'); + cy.contains('Your submission details have been saved'); + cy.contains('We have emailed a copy of this link to you at afinkel@mailinator.com.'); + cy.get('a').contains(submission.title).click(); + + // Go back to Details step and add chapters + cy.get('.pkpSteps__step__label:contains("Details")').click(); + cy.addChapters(submission.chapters); + + cy.get('.submissionWizard__footer button').contains('Continue').click(); + cy.get('.submissionWizard__footer button').contains('Continue').click(); + cy.get('.submissionWizard__footer button').contains('Continue').click(); + + // For the Editors + cy.contains('Make a Submission: For the Editors'); + cy.get('.pkpSteps__step__label--current').contains('For the Editors'); + cy.get('h2').contains('For the Editors'); + + cy.get('.submissionWizard__footer button').contains('Continue').click(); + + // Review + cy.contains('Make a Submission: Review'); + cy.get('.pkpSteps__step__label--current').contains('Review'); + cy.get('h2').contains('Review and Submit'); + submission.files.forEach(function(file) { + cy + .get('h3') + .contains('Files') + .parents('.submissionWizard__reviewPanel') + .contains(file.fileName) + .parents('.submissionWizard__reviewPanel__item__value') + .find('.pkpBadge') + .contains(file.genre); + }); + submission.authorNames.forEach(function(author) { + cy + .get('h3') + .contains('Contributors') + .parents('.submissionWizard__reviewPanel') + .contains(author) + .parents('.submissionWizard__reviewPanel__item__value'); + }); + cy.get('h3').contains('Details (English)') + .parents('.submissionWizard__reviewPanel') + .find('h4').contains('Title').siblings('.submissionWizard__reviewPanel__item__value').contains(submission.title) + .parents('.submissionWizard__reviewPanel') + .find('h4').contains('Keywords').siblings('.submissionWizard__reviewPanel__item__value').contains('None provided') + .parents('.submissionWizard__reviewPanel') + .find('h4').contains('Abstract').siblings('.submissionWizard__reviewPanel__item__value').contains(submission.abstract); + cy.get('h3').contains('Details (French)') + .parents('.submissionWizard__reviewPanel') + .find('h4').contains('Title').siblings('.submissionWizard__reviewPanel__item__value').contains('None provided') + .parents('.submissionWizard__reviewPanel') + .find('h4').contains('Keywords').siblings('.submissionWizard__reviewPanel__item__value').contains('None provided') + .parents('.submissionWizard__reviewPanel') + .find('h4').contains('Abstract').siblings('.submissionWizard__reviewPanel__item__value').contains('None provided'); + cy.get('h3').contains('For the Editors (English)'); + cy.get('h3').contains('For the Editors (French)'); + + // Submit + cy.contains('Make a Submission: Review'); + cy.get('button:contains("Submit")').click(); + const message = 'The submission, ' + submission.title + ', will be submitted to ' + Cypress.env('contextTitles').en + ' for editorial review'; + cy.get('.modal__panel:contains("' + message + '")').find('button').contains('Submit').click(); + cy.contains('Submission complete'); + cy.get('a').contains('Create a new submission'); + cy.get('a').contains('Return to your dashboard'); + cy.get('a').contains('Review this submission').click(); + cy.get('h1:contains("' + submission.title + '")'); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Finkel'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', ['Alvin Finkel'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Al Zacharia', 'Anonymous Reviewer/Disclosed Author'); + cy.assignReviewer('Gonzalo Favio'); + }); +}); diff --git a/cypress/tests/data/60-content/AfinkelSubmission.spec.js b/cypress/tests/data/60-content/AfinkelSubmission.spec.js deleted file mode 100644 index 68bcd3b2f65..00000000000 --- a/cypress/tests/data/60-content/AfinkelSubmission.spec.js +++ /dev/null @@ -1,110 +0,0 @@ -/** - * @file cypress/tests/data/60-content/AfinkelSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'afinkel', - 'givenName': 'Alvin', - 'familyName': 'Finkel', - 'affiliation': 'Athabasca University', - 'country': 'Canada' - }); - - var title = 'The West and Beyond: New Perspectives on an Imagined Region'; - cy.createSubmission({ - 'type': 'editedVolume', - 'title': title, - 'abstract': 'The West and Beyond explores the state of Western Canadian history, showcasing the research interests of a new generation of scholars while charting new directions for the future and stimulating further interrogation of our past. This dynamic collection encourages dialogue among generations of historians of the West, and among practitioners of diverse approaches to the past. It also reflects a broad range of disciplinary and professional boundaries, offering new ways to understand the West.', - 'submitterRole': 'Volume editor', - 'additionalAuthors': [ - { - 'givenName': 'Sarah', - 'familyName': 'Carter', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'scarter@mailinator.com', - 'role': 'Volume editor', - }, - { - 'givenName': 'Peter', - 'familyName': 'Fortna', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'pfortna@mailinator.com', - 'role': 'Volume editor', - }, - { - 'givenName': 'Gerald', - 'familyName': 'Friesen', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'gfriesen@mailinator.com', - }, - { - 'givenName': 'Lyle', - 'familyName': 'Dick', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'ldick@mailinator.com', - }, - { - 'givenName': 'Winona', - 'familyName': 'Wheeler', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'wwheeler@mailinator.com', - }, - { - 'givenName': 'Matt', - 'familyName': 'Dyce', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'mdyce@mailinator.com', - }, - { - 'givenName': 'James', - 'familyName': 'Opp', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'jopp@mailinator.com', - } - ], - 'chapters': [ - { - 'title': 'Critical History in Western Canada 1900–2000', - 'contributors': ['Gerald Friesen'], - }, - { - 'title': 'Vernacular Currents in Western Canadian Historiography: The Passion and Prose of Katherine Hughes, F.G. Roe, and Roy Ito', - 'contributors': ['Lyle Dick'], - }, - { - 'title': 'Cree Intellectual Traditions in History', - 'contributors': ['Winona Wheeler'], - }, - { - 'title': 'Visualizing Space, Race, and History in the North: Photographic Narratives of the Athabasca-Mackenzie River Basin', - 'contributors': ['Matt Dyce', 'James Opp'], - } - ] - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Finkel'); - cy.sendToReview('External'); - cy.assignReviewer('Al Zacharia'); - cy.assignReviewer('Gonzalo Favio'); - - // FIXME: reviewers need to be assigned, decision recorded - }); -}); diff --git a/cypress/tests/data/60-content/BbarnetsonSubmission.cy.js b/cypress/tests/data/60-content/BbarnetsonSubmission.cy.js new file mode 100644 index 00000000000..b1ce5e9faeb --- /dev/null +++ b/cypress/tests/data/60-content/BbarnetsonSubmission.cy.js @@ -0,0 +1,110 @@ +/** + * @file cypress/tests/data/60-content/BbarnetsonSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'The Political Economy of Workplace Injury in Canada'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'abstract': 'Workplace injuries are common, avoidable, and unacceptable. The Political Economy of Workplace Injury in Canada reveals how employers and governments engage in ineffective injury prevention efforts, intervening only when necessary to maintain the standard legitimacy. Dr. Bob Barnetson sheds light on this faulty system, highlighting the way in which employers create dangerous work environments yet pour billions of dollars into compensation and treatment. Examining this dynamic clarifies the way in which production costs are passed on to workers in the form of workplace injuries.', + 'keywords': [ + 'Business & Economics', + 'Political & International Studies', + ], + 'type': 'monograph', + 'submitterRole': 'Author', + 'chapters': [ + { + 'title': 'Introduction', + 'contributors': ['Bob Barnetson'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Part One. Employment Relationships in Canada', + 'contributors': ['Bob Barnetson'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Part Two. Preventing Workplace Injury', + 'contributors': ['Bob Barnetson'], + files: ['chapter3.pdf'] + }, + { + 'title': 'Part Three. Critique of OHS in Canada', + 'contributors': ['Bob Barnetson'], + files: ['chapter4.pdf'] + }, + { + 'title': 'Part Four. Political Economy of Preventing Workplace Injury', + 'contributors': ['Bob Barnetson'], + files: ['chapter5.pdf'] + }, + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter4.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter5.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + } + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'bbarnetson', + 'givenName': 'Bob', + 'familyName': 'Barnetson', + 'affiliation': 'Athabasca University', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + }); +}); diff --git a/cypress/tests/data/60-content/BbarnetsonSubmission.spec.js b/cypress/tests/data/60-content/BbarnetsonSubmission.spec.js deleted file mode 100644 index 7189bc63a8c..00000000000 --- a/cypress/tests/data/60-content/BbarnetsonSubmission.spec.js +++ /dev/null @@ -1,56 +0,0 @@ -/** - * @file cypress/tests/data/60-content/BbarnetsonSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'bbarnetson', - 'givenName': 'Bob', - 'familyName': 'Barnetson', - 'affiliation': 'Athabasca University', - 'country': 'Canada' - }); - - cy.createSubmission({ - 'type': 'monograph', - 'title': 'The Political Economy of Workplace Injury in Canada', - 'abstract': 'Workplace injuries are common, avoidable, and unacceptable. The Political Economy of Workplace Injury in Canada reveals how employers and governments engage in ineffective injury prevention efforts, intervening only when necessary to maintain the standard legitimacy. Dr. Bob Barnetson sheds light on this faulty system, highlighting the way in which employers create dangerous work environments yet pour billions of dollars into compensation and treatment. Examining this dynamic clarifies the way in which production costs are passed on to workers in the form of workplace injuries.', - 'keywords': [ - 'Business & Economics', - 'Political & International Studies', - ], - 'submitterRole': 'Author', - 'chapters': [ - { - 'title': 'Introduction', - 'contributors': ['Bob Barnetson'], - }, - { - 'title': 'Part One. Employment Relationships in Canada', - 'contributors': ['Bob Barnetson'], - }, - { - 'title': 'Part Two. Preventing Workplace Injury', - 'contributors': ['Bob Barnetson'], - }, - { - 'title': 'Part Three. Critique of OHS in Canada', - 'contributors': ['Bob Barnetson'], - }, - { - 'title': 'Part Four. Political Economy of Preventing Workplace Injury', - 'contributors': ['Bob Barnetson'], - }, - ], - }); - }); -}); diff --git a/cypress/tests/data/60-content/BbeatySubmission.cy.js b/cypress/tests/data/60-content/BbeatySubmission.cy.js new file mode 100644 index 00000000000..fdbc49b5c87 --- /dev/null +++ b/cypress/tests/data/60-content/BbeatySubmission.cy.js @@ -0,0 +1,160 @@ +/** + * @file cypress/tests/data/60-content/BbeatySubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'How Canadians Communicate: Contexts of Canadian Popular Culture'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'editedVolume', + 'series': 'History', + seriesId: 3, + 'abstract': 'What does Canadian popular culture say about the construction and negotiation of Canadian national identity? This third volume of How Canadians Communicate describes the negotiation of popular culture across terrains where national identity is built by producers and audiences, government and industry, history and geography, ethnicities and citizenships.', + 'keywords': [ + 'Canadian Studies', + 'Communication & Cultural Studies', + ], + 'submitterRole': 'Volume editor', + 'additionalAuthors': [ + { + 'givenName': {en: 'Toby'}, + 'familyName': {en: 'Miller'}, + 'country': 'CA', + 'affiliation': {en: 'University of Alberta'}, + 'email': 'tmiller@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Ira'}, + 'familyName': {en: 'Wagman'}, + 'country': 'CA', + 'affiliation': {en: 'Athabasca University'}, + 'email': 'awagman@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Will'}, + 'familyName': {en: 'Straw'}, + 'country': 'CA', + 'affiliation': {en: 'University of Calgary'}, + 'email': 'wstraw@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + ], + 'chapters': [ + { + 'title': 'Introduction: Contexts of Popular Culture', + 'contributors': ['Bart Beaty'], + files: ['intro.pdf'] + }, + { + 'title': 'Chapter 1. A Future for Media Studies: Cultural Labour, Cultural Relations, Cultural Politics', + 'contributors': ['Toby Miller'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Chapter 2. Log On, Goof Off, and Look Up: Facebook and the Rhythms of Canadian Internet Use', + 'contributors': ['Ira Wagman'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Chapter 3. Hawkers and Public Space: Free Commuter Newspapers in Canada', + 'contributors': ['Will Straw'], + files: ['chapter3.pdf'] + }, + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'intro.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + } + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'bbeaty', + 'givenName': 'Bart', + 'familyName': 'Beaty', + 'affiliation': 'University of British Columbia', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Beaty'); + cy.clickDecision('Send to Internal Review'); + cy.recordDecisionSendToReview('Send to Internal Review', ['Bart Beaty'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('Internal Review'); + cy.assignReviewer('Aisla McCrae'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', ['Bart Beaty'], []); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Al Zacharia'); + cy.clickDecision('Accept Submission'); + cy.recordDecisionAcceptSubmission(['Bart Beaty'], [], []); + cy.isActiveStageTab('Copyediting'); + cy.assignParticipant('Copyeditor', 'Maria Fritz'); + cy.clickDecision('Send To Production'); + cy.recordDecisionSendToProduction(['Bart Beaty'], []); + cy.isActiveStageTab('Production'); + cy.assignParticipant('Layout Editor', 'Graham Cox'); + + // Add a publication format with ISBNs + cy.get('button[id="publication-button"]').click(); + cy.get('button[id="publicationFormats-button"]').click(); + cy.get('*[id^="component-grid-catalogentry-publicationformatgrid-addFormat-button-"]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="name-en-"]').type('PDF', {delay: 0}); + cy.get('input[id^="remotelyHostedContent"]').click(); + cy.get('input[id^="remoteURL-"]').type('https://file-examples-com.github.io/uploads/2017/10/file-sample_150kB.pdf', {delay: 0}); + cy.get('input[id^="isbn13-"]').type('978-951-98548-9-2', {delay: 0}); + cy.get('input[id^="isbn10-"]').type('951-98548-9-4', {delay: 0}); + cy.get('div.pkp_modal_panel div.header:contains("Add publication format")').click(); // FIXME: Focus problem with multilingual input + cy.get('button:contains("OK")').click(); + + }); +}); diff --git a/cypress/tests/data/60-content/BbeatySubmission.spec.js b/cypress/tests/data/60-content/BbeatySubmission.spec.js deleted file mode 100644 index 9a98dfe001c..00000000000 --- a/cypress/tests/data/60-content/BbeatySubmission.spec.js +++ /dev/null @@ -1,95 +0,0 @@ -/** - * @file cypress/tests/data/60-content/BbeatySubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'bbeaty', - 'givenName': 'Bart', - 'familyName': 'Beaty', - 'affiliation': 'University of British Columbia', - 'country': 'Canada' - }); - - var title = 'How Canadians Communicate: Contexts of Canadian Popular Culture'; - cy.createSubmission({ - 'type': 'editedVolume', - 'series': 'History', - 'title': title, - 'abstract': 'What does Canadian popular culture say about the construction and negotiation of Canadian national identity? This third volume of How Canadians Communicate describes the negotiation of popular culture across terrains where national identity is built by producers and audiences, government and industry, history and geography, ethnicities and citizenships.', - 'keywords': [ - 'Canadian Studies', - 'Communication & Cultural Studies', - ], - 'submitterRole': 'Volume editor', - 'additionalAuthors': [ - { - 'givenName': 'Toby', - 'familyName': 'Miller', - 'country': 'Canada', - 'affiliation': 'University of Alberta', - 'email': 'tmiller@mailinator.com', - 'role': 'Author', - }, - { - 'givenName': 'Ira', - 'familyName': 'Wagman', - 'country': 'Canada', - 'affiliation': 'Athabasca University', - 'email': 'awagman@mailinator.com', - 'role': 'Author', - }, - { - 'givenName': 'Will', - 'familyName': 'Straw', - 'country': 'Canada', - 'affiliation': 'University of Calgary', - 'email': 'wstraw@mailinator.com', - 'role': 'Author', - }, - ], - 'chapters': [ - { - 'title': 'Introduction: Contexts of Popular Culture', - 'contributors': ['Bart Beaty'], - }, - { - 'title': 'Chapter 1. A Future for Media Studies: Cultural Labour, Cultural Relations, Cultural Politics', - 'contributors': ['Toby Miller'], - }, - { - 'title': 'Chapter 2. Log On, Goof Off, and Look Up: Facebook and the Rhythms of Canadian Internet Use', - 'contributors': ['Ira Wagman'], - }, - { - 'title': 'Chapter 3. Hawkers and Public Space: Free Commuter Newspapers in Canada', - 'contributors': ['Will Straw'], - }, - ] - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Beaty'); - cy.sendToReview('Internal'); - cy.get('li.ui-state-active a:contains("Internal Review")'); - cy.assignReviewer('Aisla McCrae'); - cy.sendToReview('External', 'Internal'); - cy.get('li.ui-state-active a:contains("External Review")'); - cy.assignReviewer('Al Zacharia'); - cy.recordEditorialDecision('Accept Submission'); - cy.get('li.ui-state-active a:contains("Copyediting")'); - cy.assignParticipant('Copyeditor', 'Maria Fritz'); - cy.recordEditorialDecision('Send To Production'); - cy.get('li.ui-state-active a:contains("Production")'); - cy.assignParticipant('Layout Editor', 'Graham Cox'); - }); -}); diff --git a/cypress/tests/data/60-content/CallanSubmission.cy.js b/cypress/tests/data/60-content/CallanSubmission.cy.js new file mode 100644 index 00000000000..e7a575621ac --- /dev/null +++ b/cypress/tests/data/60-content/CallanSubmission.cy.js @@ -0,0 +1,207 @@ +/** + * @file cypress/tests/data/60-content/CallanSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + let author = 'Chantal Allan'; + before(function() { + const title = 'Bomb Canada and Other Unkind Remarks in the American Media'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'monograph', + //'series': '', + 'abstract': 'Canada and the United States. Two nations, one border, same continent. Anti-American sentiment in Canada is well documented, but what have Americans had to say about their northern neighbour? Allan examines how the American media has portrayed Canada, from Confederation to Obama’s election. By examining major events that have tested bilateral relations, Bomb Canada tracks the history of anti-Canadianism in the U.S. Informative, thought provoking and at times hilarious, this book reveals another layer of the complex relationship between Canada and the United States.', + 'keywords': [ + 'Canadian Studies', + 'Communication & Cultural Studies', + 'Political & International Studies', + ], + submitterRole: 'Author', + chapters: [ + { + 'title': 'Prologue', + 'contributors': [author], + files: ['prologue.pdf'] + }, + { + 'title': 'Chapter 1: The First Five Years: 1867-1872', + 'contributors': [author], + files: ['chapter1.pdf'] + }, + { + 'title': 'Chapter 2: Free Trade or "Freedom": 1911', + 'contributors': [author], + files: ['chapter2.pdf'] + }, + { + 'title': 'Chapter 3: Castro, Nukes & the Cold War: 1953-1968', + 'contributors': [author], + files: ['chapter3.pdf'] + }, + { + 'title': 'Chapter 4: Enter the Intellect: 1968-1984', + 'contributors': [author], + files: ['chapter4.pdf'] + }, + { + 'title': 'Epilogue', + 'contributors': [author], + files: ['epilogue.pdf'] + }, + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'prologue.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter4.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'epilogue.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + } + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'callan', + 'givenName': 'Chantal', + 'familyName': 'Allan', + 'affiliation': 'University of Southern California', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Allan'); + cy.clickDecision('Send to Internal Review'); + cy.recordDecisionSendToReview('Send to Internal Review', [author], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('Internal Review'); + cy.assignReviewer('Paul Hudson'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', [author], []); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Gonzalo Favio'); + cy.clickDecision('Accept Submission'); + cy.recordDecisionAcceptSubmission([author], [], []); + cy.isActiveStageTab('Copyediting'); + cy.assignParticipant('Copyeditor', 'Sarah Vogt'); + cy.clickDecision('Send To Production'); + cy.recordDecisionSendToProduction([author], []); + cy.isActiveStageTab('Production'); + cy.assignParticipant('Layout Editor', 'Stephen Hellier'); + cy.assignParticipant('Proofreader', 'Catherine Turner'); + + // Add a publication format + cy.get('button[id="publication-button"]').click(); + cy.get('button[id="publicationFormats-button"]').click(); + cy.get('*[id^="component-grid-catalogentry-publicationformatgrid-addFormat-button-"]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="name-en-"]').type('PDF', {delay: 0}); + cy.get('div.pkp_modal_panel div.header:contains("Add publication format")').click(); // FIXME: Focus problem with multilingual input + cy.get('button:contains("OK")').click(); + + // Select proof file + cy.get('table[id*="component-grid-catalogentry-publicationformatgrid"] span:contains("PDF"):parent() a[id*="-name-selectFiles-button-"]').click(); + cy.get('*[id=allStages]').click(); + cy.get('tbody[id^="component-grid-files-proof-manageprooffilesgrid-category-"] input[type="checkbox"][name="selectedFiles[]"]:first').click(); + cy.get('form[id="manageProofFilesForm"] button[id^="submitFormButton-"]').click(); + cy.waitJQuery(); + + // Approvals for PDF publication format + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("PDF") a[id*="-isComplete-approveRepresentation-button-"]').click(); + cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); + cy.waitJQuery(); + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("PDF") a[id*="-isAvailable-availableRepresentation-button-"]').click(); + cy.get('.pkpModalConfirmButton').click(); + cy.waitJQuery(); + + // File completion + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("epilogue.pdf") a[id*="-isComplete-not_approved-button-"]').click(); + cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); + cy.waitJQuery(); + + // File availability + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("epilogue.pdf") a[id*="-isAvailable-editApprovedProof-button-"]').click(); + cy.get('input[id="openAccess"]').click(); + cy.get('form#approvedProofForm button.submitFormButton').click(); + + // Add to catalog + cy.addToCatalog(); + }); + + it('Book is not available when unpublished', function() { + cy.findSubmissionAsEditor('dbarnes', null, 'Allan'); + cy.get('#publication-button').click(); + cy.get('button').contains('Unpublish').click(); + cy.contains('Are you sure you don\'t want this to be published?'); + cy.get('.modal__panel button').contains('Unpublish').click(); + cy.wait(1000); + cy.visit('index.php/publicknowledge/catalog'); + cy.contains('Bomb Canada and Other Unkind Remarks in the American Media').should('not.exist'); + cy.logout(); + cy.request({ + url: 'index.php/publicknowledge/catalog/book/' + submission.id, + failOnStatusCode: false + }) + .then((response) => { + expect(response.status).to.equal(404); + }); + + // Re-publish it + cy.findSubmissionAsEditor('dbarnes', null, 'Allan'); + cy.get('#publication-button').click(); + cy.get('.pkpPublication button').contains('Publish').click(); + cy.contains('All publication requirements have been met.'); + cy.get('.pkpWorkflow__publishModal button').contains('Publish').click(); + }); +}); diff --git a/cypress/tests/data/60-content/CallanSubmission.spec.js b/cypress/tests/data/60-content/CallanSubmission.spec.js deleted file mode 100644 index f5eb295e956..00000000000 --- a/cypress/tests/data/60-content/CallanSubmission.spec.js +++ /dev/null @@ -1,116 +0,0 @@ -/** - * @file cypress/tests/data/60-content/CallanSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'callan', - 'givenName': 'Chantal', - 'familyName': 'Allan', - 'affiliation': 'University of Southern California', - 'country': 'Canada' - }); - - var title = 'Bomb Canada and Other Unkind Remarks in the American Media'; - cy.createSubmission({ - 'type': 'monograph', - //'series': '', - 'title': title, - 'abstract': 'Canada and the United States. Two nations, one border, same continent. Anti-American sentiment in Canada is well documented, but what have Americans had to say about their northern neighbour? Allan examines how the American media has portrayed Canada, from Confederation to Obama’s election. By examining major events that have tested bilateral relations, Bomb Canada tracks the history of anti-Canadianism in the U.S. Informative, thought provoking and at times hilarious, this book reveals another layer of the complex relationship between Canada and the United States.', - 'keywords': [ - 'Canadian Studies', - 'Communication & Cultural Studies', - 'Political & International Studies', - ], - 'submitterRole': 'Author', - 'chapters': [ - { - 'title': 'Prologue', - 'contributors': ['Chantal Allan'], - }, - { - 'title': 'Chapter 1: The First Five Years: 1867-1872', - 'contributors': ['Chantal Allan'], - }, - { - 'title': 'Chapter 2: Free Trade or "Freedom": 1911', - 'contributors': ['Chantal Allan'], - }, - { - 'title': 'Chapter 3: Castro, Nukes & the Cold War: 1953-1968', - 'contributors': ['Chantal Allan'], - }, - { - 'title': 'Chapter 4: Enter the Intellect: 1968-1984', - 'contributors': ['Chantal Allan'], - }, - { - 'title': 'Epilogue', - 'contributors': ['Chantal Allan'], - }, - ] - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Allan'); - cy.sendToReview('Internal'); - cy.get('li.ui-state-active a:contains("Internal Review")'); - cy.assignReviewer('Paul Hudson'); - cy.sendToReview('External', 'Internal'); - cy.get('li.ui-state-active a:contains("External Review")'); - cy.assignReviewer('Gonzalo Favio'); - cy.recordEditorialDecision('Accept Submission'); - cy.get('li.ui-state-active a:contains("Copyediting")'); - cy.assignParticipant('Copyeditor', 'Sarah Vogt'); - cy.recordEditorialDecision('Send To Production'); - cy.get('li.ui-state-active a:contains("Production")'); - cy.assignParticipant('Layout Editor', 'Stephen Hellier'); - cy.assignParticipant('Proofreader', 'Catherine Turner'); - - // Add a publication format - cy.get('button[id="publication-button"]').click(); - cy.get('button[id="publicationFormats-button"]').click(); - cy.get('*[id^="component-grid-catalogentry-publicationformatgrid-addFormat-button-"]').click(); - cy.wait(1000); // Avoid occasional failure due to form init taking time - cy.get('input[id^="name-en_US-"]').type('PDF', {delay: 0}); - cy.get('div.pkp_modal_panel div.header:contains("Add publication format")').click(); // FIXME: Focus problem with multilingual input - cy.get('button:contains("OK")').click(); - - // Select proof file - cy.get('table[id*="component-grid-catalogentry-publicationformatgrid"] span:contains("PDF"):parent() a[id*="-name-selectFiles-button-"]').click(); - cy.get('*[id=allStages]').click(); - cy.get('tbody[id^="component-grid-files-proof-manageprooffilesgrid-category-"] input[type="checkbox"][name="selectedFiles[]"]:first').click(); - cy.get('form[id="manageProofFilesForm"] button[id^="submitFormButton-"]').click(); - cy.waitJQuery(); - - // Approvals for PDF publication format - cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("PDF") a[id*="-isComplete-approveRepresentation-button-"]').click(); - cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); - cy.waitJQuery(); - cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("PDF") a[id*="-isAvailable-availableRepresentation-button-"]').click(); - cy.get('.pkpModalConfirmButton').click(); - cy.waitJQuery(); - - // File completion - cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("' + Cypress.$.escapeSelector(title) + '") a[id*="-isComplete-not_approved-button-"]').click(); - cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); - cy.waitJQuery(); - - // File availability - cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("' + Cypress.$.escapeSelector(title) + '") a[id*="-isAvailable-editApprovedProof-button-"]').click(); - cy.get('input[id="openAccess"]').click(); - cy.get('form#approvedProofForm button.submitFormButton').click(); - - // Add to catalog - cy.addToCatalog(); - }); -}); diff --git a/cypress/tests/data/60-content/DbernnardSubmission.cy.js b/cypress/tests/data/60-content/DbernnardSubmission.cy.js new file mode 100644 index 00000000000..270421cc0dd --- /dev/null +++ b/cypress/tests/data/60-content/DbernnardSubmission.cy.js @@ -0,0 +1,149 @@ +/** + * @file cypress/tests/data/60-content/DbernnardSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + let author = 'Deborah Bernnard'; + before(function() { + const title = 'The Information Literacy User’s Guide'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'editedVolume', + 'abstract': 'Good researchers have a host of tools at their disposal that make navigating today’s complex information ecosystem much more manageable. Gaining the knowledge, abilities, and self-reflection necessary to be a good researcher helps not only in academic settings, but is invaluable in any career, and throughout one’s life. The Information Literacy User’s Guide will start you on this route to success.', + 'series': 'Library & Information Studies', + seriesId: 1, + 'keywords': [ + 'information literacy', + 'academic libraries', + ], + 'submitterRole': 'Volume editor', + 'additionalAuthors': [ + { + 'givenName': {en: 'Greg'}, + 'familyName': {en: 'Bobish'}, + 'country': 'US', + 'affiliation': {en: 'SUNY'}, + 'email': 'gbobish@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Daryl'}, + 'familyName': {en: 'Bullis'}, + 'country': 'US', + 'affiliation': {en: 'SUNY'}, + 'email': 'dbullis@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Jenna'}, + 'familyName': {en: 'Hecker'}, + 'country': 'US', + 'affiliation': {en: 'SUNY'}, + 'email': 'jhecker@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter4.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + 'chapters': [ + { + 'title': 'Identify: Understanding Your Information Need', + 'contributors': ['Deborah Bernnard'], + files: ['chapter1.pdf'], + }, + { + 'title': 'Scope: Knowing What Is Available', + 'contributors': ['Greg Bobish'], + files: ['chapter2.pdf'], + }, + { + 'title': 'Plan: Developing Research Strategies', + 'contributors': ['Daryl Bullis'], + files: ['chapter3.pdf'], + }, + { + 'title': 'Gather: Finding What You Need', + 'contributors': ['Jenna Hecker'], + files: ['chapter4.pdf'], + } + ] + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'dbernnard', + 'givenName': 'Deborah', + 'familyName': 'Bernnard', + 'affiliation': 'SUNY', + 'country': 'United States' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Bernnard'); + cy.clickDecision('Send to Internal Review'); + cy.recordDecisionSendToReview('Send to Internal Review', [author], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('Internal Review'); + cy.assignParticipant('Press editor', 'Daniel Barnes'); + // Assign a recommendOnly section editor + cy.assignParticipant('Series editor', 'Minoti Inoue', true); + cy.logout(); + // Find the submission as the section editor + cy.login('minoue', null, 'publicknowledge'), + cy.get('#myQueue').find('a').contains('View Bernnard').click({force: true}); + // Recommend + cy.clickDecision('Recommend Accept'); + cy.recordRecommendation('Recommend Accept', ['Daniel Barnes', 'David Buskins']); + cy.logout(); + // Log in as editor and see the existing recommendation + cy.findSubmissionAsEditor('dbarnes', null, 'Bernnard'); + cy.get('div.pkp_workflow_recommendations:contains("Recommendations: Accept Submission")'); + }); +}); diff --git a/cypress/tests/data/60-content/DbernnardSubmission.spec.js b/cypress/tests/data/60-content/DbernnardSubmission.spec.js deleted file mode 100644 index b521fdac371..00000000000 --- a/cypress/tests/data/60-content/DbernnardSubmission.spec.js +++ /dev/null @@ -1,95 +0,0 @@ -/** - * @file cypress/tests/data/60-content/DbernnardSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'dbernnard', - 'givenName': 'Deborah', - 'familyName': 'Bernnard', - 'affiliation': 'SUNY', - 'country': 'United States' - }); - - var title = 'The Information Literacy User’s Guide'; - cy.createSubmission({ - 'type': 'editedVolume', - 'title': title, - 'abstract': 'Good researchers have a host of tools at their disposal that make navigating today’s complex information ecosystem much more manageable. Gaining the knowledge, abilities, and self-reflection necessary to be a good researcher helps not only in academic settings, but is invaluable in any career, and throughout one’s life. The Information Literacy User’s Guide will start you on this route to success.', - 'series': 'Library & Information Studies', - 'keywords': [ - 'information literacy', - 'academic libraries', - ], - 'submitterRole': 'Volume editor', - 'additionalAuthors': [ - { - 'givenName': 'Greg', - 'familyName': 'Bobish', - 'country': 'United States', - 'affiliation': 'SUNY', - 'email': 'gbobish@mailinator.com', - }, - { - 'givenName': 'Daryl', - 'familyName': 'Bullis', - 'country': 'United States', - 'affiliation': 'SUNY', - 'email': 'dbullis@mailinator.com', - }, - { - 'givenName': 'Jenna', - 'familyName': 'Hecker', - 'country': 'United States', - 'affiliation': 'SUNY', - 'email': 'jhecker@mailinator.com', - }, - ], - 'chapters': [ - { - 'title': 'Identify: Understanding Your Information Need', - 'contributors': ['Deborah Bernnard'], - }, - { - 'title': 'Scope: Knowing What Is Available', - 'contributors': ['Greg Bobish'], - }, - { - 'title': 'Plan: Developing Research Strategies', - 'contributors': ['Daryl Bullis'], - }, - { - 'title': 'Gather: Finding What You Need', - 'contributors': ['Jenna Hecker'], - } - ] - }); - - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Bernnard'); - cy.sendToReview('Internal'); - cy.get('li.ui-state-active a:contains("Internal Review")'); - // Assign a recommendOnly section editor - cy.assignParticipant('Series editor', 'Minoti Inoue', true); - cy.logout(); - // Find the submission as the section editor - cy.login('minoue', null, 'publicknowledge'), - cy.get('#myQueue').find('a').contains('View Bernnard').click({force: true}); - // Recommend - cy.recordEditorialRecommendation('Send to External Review'); - cy.logout(); - // Log in as editor and see the existing recommendation - cy.findSubmissionAsEditor('dbarnes', null, 'Bernnard'); - cy.get('div.pkp_workflow_recommendations:contains("Recommendations: Send to External Review")'); - }); -}); diff --git a/cypress/tests/data/60-content/DkennepohlSubmission.cy.js b/cypress/tests/data/60-content/DkennepohlSubmission.cy.js new file mode 100644 index 00000000000..ebc09adfb78 --- /dev/null +++ b/cypress/tests/data/60-content/DkennepohlSubmission.cy.js @@ -0,0 +1,156 @@ +/** + * @file cypress/tests/data/60-content/DkennepohlSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'Accessible Elements: Teaching Science Online and at a Distance'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'editedVolume', + 'series': 'Education', + seriesId: 4, + 'abstract': 'Accessible Elements informs science educators about current practices in online and distance education: distance-delivered methods for laboratory coursework, the requisite administrative and institutional aspects of online and distance teaching, and the relevant educational theory.', + 'keywords': [ + 'Education', + ], + 'submitterRole': 'Volume editor', + 'additionalAuthors': [ + { + 'givenName': {en: 'Terry'}, + 'familyName': {en: 'Anderson'}, + 'country': 'CA', + 'affiliation': {en: 'University of Calgary'}, + 'email': 'tanderson@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Paul'}, + 'familyName': {en: 'Gorsky'}, + 'country': 'CA', + 'affiliation': {en: 'University of Alberta'}, + 'email': 'pgorsky@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Gale'}, + 'familyName': {en: 'Parchoma'}, + 'country': 'CA', + 'affiliation': {en: 'Athabasca University'}, + 'email': 'gparchoma@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Stuart'}, + 'familyName': {en: 'Palmer'}, + 'country': 'CA', + 'affiliation': {en: 'University of Alberta'}, + 'email': 'spalmer@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + ], + 'chapters': [ + { + 'title': 'Introduction', + 'contributors': ['Dietmar Kennepohl'], + files: ['intro.pdf'] + }, + { + 'title': 'Chapter 1: Interactions Affording Distance Science Education', + 'contributors': ['Terry Anderson'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Chapter 2: Learning Science at a Distance: Instructional Dialogues and Resources', + 'contributors': ['Paul Gorsky'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Chapter 3: Leadership Strategies for Coordinating Distance Education Instructional Development Teams', + 'contributors': ['Gale Parchoma'], + files: ['chapter3.pdf'] + }, + { + 'title': 'Chapter 4: Toward New Models of Flexible Education to Enhance Quality in Australian Higher Education', + 'contributors': ['Stuart Palmer'], + files: ['chapter4.pdf'] + }, + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'intro.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter4.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'dkennepohl', + 'givenName': 'Dietmar', + 'familyName': 'Kennepohl', + 'affiliation': 'Athabasca University', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Kennepohl'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', ['Dietmar Kennepohl'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Adela Gallego'); + cy.clickDecision('Accept Submission'); + cy.recordDecisionAcceptSubmission(['Dietmar Kennepohl'], [], []); + cy.isActiveStageTab('Copyediting'); + cy.assignParticipant('Copyeditor', 'Maria Fritz'); + }); +}); diff --git a/cypress/tests/data/60-content/DkennepohlSubmission.spec.js b/cypress/tests/data/60-content/DkennepohlSubmission.spec.js deleted file mode 100644 index ab565fdd743..00000000000 --- a/cypress/tests/data/60-content/DkennepohlSubmission.spec.js +++ /dev/null @@ -1,100 +0,0 @@ -/** - * @file cypress/tests/data/60-content/DkennepohlSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'dkennepohl', - 'givenName': 'Dietmar', - 'familyName': 'Kennepohl', - 'affiliation': 'Athabasca University', - 'country': 'Canada' - }); - - var title = 'Accessible Elements: Teaching Science Online and at a Distance'; - cy.createSubmission({ - 'type': 'editedVolume', - 'series': 'Education', - 'title': title, - 'abstract': 'Accessible Elements informs science educators about current practices in online and distance education: distance-delivered methods for laboratory coursework, the requisite administrative and institutional aspects of online and distance teaching, and the relevant educational theory.', - 'keywords': [ - 'Education', - ], - 'submitterRole': 'Volume editor', - 'additionalAuthors': [ - { - 'givenName': 'Terry', - 'familyName': 'Anderson', - 'country': 'Canada', - 'affiliation': 'University of Calgary', - 'email': 'tanderson@mailinator.com', - 'role': 'Author', - }, - { - 'givenName': 'Paul', - 'familyName': 'Gorsky', - 'country': 'Canada', - 'affiliation': 'University of Alberta', - 'email': 'pgorsky@mailinator.com', - 'role': 'Author', - }, - { - 'givenName': 'Gale', - 'familyName': 'Parchoma', - 'country': 'Canada', - 'affiliation': 'Athabasca University', - 'email': 'gparchoma@mailinator.com', - 'role': 'Author', - }, - { - 'givenName': 'Stuart', - 'familyName': 'Palmer', - 'country': 'Canada', - 'affiliation': 'University of Alberta', - 'email': 'spalmer@mailinator.com', - 'role': 'Author', - }, - ], - 'chapters': [ - { - 'title': 'Introduction', - 'contributors': ['Dietmar Kennepohl'], - }, - { - 'title': 'Chapter 1: Interactions Affording Distance Science Education', - 'contributors': ['Terry Anderson'], - }, - { - 'title': 'Chapter 2: Learning Science at a Distance: Instructional Dialogues and Resources', - 'contributors': ['Paul Gorsky'], - }, - { - 'title': 'Chapter 3: Leadership Strategies for Coordinating Distance Education Instructional Development Teams', - 'contributors': ['Gale Parchoma'], - }, - { - 'title': 'Chapter 4: Toward New Models of Flexible Education to Enhance Quality in Australian Higher Education', - 'contributors': ['Stuart Palmer'], - }, - ], - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Kennepohl'); - cy.sendToReview('External'); - cy.get('li.ui-state-active a:contains("External Review")'); - cy.assignReviewer('Adela Gallego'); - cy.recordEditorialDecision('Accept Submission'); - cy.get('li.ui-state-active a:contains("Copyediting")'); - cy.assignParticipant('Copyeditor', 'Maria Fritz'); - }); -}); diff --git a/cypress/tests/data/60-content/EditorialSubmission.cy.js b/cypress/tests/data/60-content/EditorialSubmission.cy.js new file mode 100644 index 00000000000..c1916f4482b --- /dev/null +++ b/cypress/tests/data/60-content/EditorialSubmission.cy.js @@ -0,0 +1,50 @@ +/** + * @file cypress/tests/data/60-content/EditorialSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'Editorial'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'monograph', + 'abstract': 'A Note From The Publisher', + 'submitterRole': 'Author', + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'note.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + chapters: [] + } + }); + + it('Create a submission', function() { + cy.login('dbarnes', null, 'publicknowledge'); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + }); +}); diff --git a/cypress/tests/data/60-content/EditorialSubmission.spec.js b/cypress/tests/data/60-content/EditorialSubmission.spec.js deleted file mode 100644 index d2865cba873..00000000000 --- a/cypress/tests/data/60-content/EditorialSubmission.spec.js +++ /dev/null @@ -1,24 +0,0 @@ -/** - * @file cypress/tests/data/60-content/EditorialSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.login('dbarnes', null, 'publicknowledge'); - - cy.createSubmission({ - 'type': 'monograph', - 'title': 'Editorial', - 'abstract': 'A Note From The Publisher', - 'submitterRole': 'Author' - }, 'backend'); - }); -}); diff --git a/cypress/tests/data/60-content/FperiniSubmission.cy.js b/cypress/tests/data/60-content/FperiniSubmission.cy.js new file mode 100644 index 00000000000..fb7f6491d1d --- /dev/null +++ b/cypress/tests/data/60-content/FperiniSubmission.cy.js @@ -0,0 +1,153 @@ +/** + * @file cypress/tests/data/60-content/FperiniSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'Enabling Openness: The future of the information society in Latin America and the Caribbean'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'editedVolume', + 'abstract': 'In recent years, the Internet and other network technologies have emerged as a central issue for development in Latin America and the Caribbean. They have shown their potential to increase productivity and economic competitiveness, to create new ways to deliver education and health services, and to be driving forces for the modernization of the provision of public services.', + 'series': 'Library & Information Studies', + seriesId: 1, + 'keywords': [ + 'Information', + 'society', + 'ICT', + ], + 'submitterRole': 'Volume editor', + 'additionalAuthors': [ + { + 'givenName': {en: 'Robin'}, + 'familyName': {en: 'Mansell'}, + 'country': 'GB', + // 'affiliation': '', + 'email': 'rmansell@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Hernan'}, + 'familyName': {en: 'Galperin'}, + 'country': 'AR', + // 'affiliation': '', + 'email': 'hgalperin@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Pablo'}, + 'familyName': {en: 'Bello'}, + 'country': 'CL', + // 'affiliation': '', + 'email': 'pbello@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Eleonora'}, + 'familyName': {en: 'Rabinovich'}, + 'country': 'AR', + // 'affiliation': '', + 'email': 'erabinovich@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + ], + 'chapters': [ + { + 'title': 'Internet, openness and the future of the information society in LAC', + 'contributors': ['Fernando Perini'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Imagining the Internet: Open, closed or in between?', + 'contributors': ['Robin Mansell'], + files: ['chapter2.pdf'] + }, + { + 'title': 'The internet in LAC will remain free, public and open over the next 10 years', + 'contributors': ['Hernan Galperin'], + files: ['chapter3.pdf'] + }, + { + 'title': 'Free Internet?', + 'contributors': ['Pablo Bello'], + files: ['chapter4.pdf'] + }, + { + 'title': 'Risks and challenges for freedom of expression on the internet', + 'contributors': ['Eleonora Rabinovich'], + files: ['chapter5.pdf'] + }, + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter4.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter5.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'fperini', + 'givenName': 'Fernando', + 'familyName': 'Perini', + 'affiliation': 'University of Sussex', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + + cy.logout(); + cy.findSubmissionAsEditor('dbarnes', null, 'Perini'); + cy.clickDecision('Send to Internal Review'); + cy.recordDecisionSendToReview('Send to Internal Review', ['Fernando Perini'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('Internal Review'); + }); +}); diff --git a/cypress/tests/data/60-content/FperiniSubmission.spec.js b/cypress/tests/data/60-content/FperiniSubmission.spec.js deleted file mode 100644 index 8809833edf8..00000000000 --- a/cypress/tests/data/60-content/FperiniSubmission.spec.js +++ /dev/null @@ -1,94 +0,0 @@ -/** - * @file cypress/tests/data/60-content/FperiniSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'fperini', - 'givenName': 'Fernando', - 'familyName': 'Perini', - 'affiliation': 'University of Sussex', - 'country': 'Canada' - }); - - var title = 'Enabling Openness: The future of the information society in Latin America and the Caribbean'; - cy.createSubmission({ - 'type': 'editedVolume', - 'title': title, - 'abstract': 'In recent years, the Internet and other network technologies have emerged as a central issue for development in Latin America and the Caribbean. They have shown their potential to increase productivity and economic competitiveness, to create new ways to deliver education and health services, and to be driving forces for the modernization of the provision of public services.', - 'series': 'Library & Information Studies', - 'keywords': [ - 'Information', - 'society', - 'ICT', - ], - 'submitterRole': 'Volume editor', - 'additionalAuthors': [ - { - 'givenName': 'Robin', - 'familyName': 'Mansell', - 'country': 'United Kingdom', - // 'affiliation': '', - 'email': 'rmansell@mailinator.com', - }, - { - 'givenName': 'Hernan', - 'familyName': 'Galperin', - 'country': 'Argentina', - // 'affiliation': '', - 'email': 'hgalperin@mailinator.com', - }, - { - 'givenName': 'Pablo', - 'familyName': 'Bello', - 'country': 'Chile', - // 'affiliation': '', - 'email': 'pbello@mailinator.com', - }, - { - 'givenName': 'Eleonora', - 'familyName': 'Rabinovich', - 'country': 'Argentina', - // 'affiliation': '', - 'email': 'erabinovich@mailinator.com', - }, - ], - 'chapters': [ - { - 'title': 'Internet, openness and the future of the information society in LAC', - 'contributors': ['Fernando Perini'], - }, - { - 'title': 'Imagining the Internet: Open, closed or in between?', - 'contributors': ['Robin Mansell'], - }, - { - 'title': 'The internet in LAC will remain free, public and open over the next 10 years', - 'contributors': ['Hernan Galperin'], - }, - { - 'title': 'Free Internet?', - 'contributors': ['Pablo Bello'], - }, - { - 'title': 'Risks and challenges for freedom of expression on the internet', - 'contributors': ['Eleonora Rabinovich'], - }, - ], - }); - - cy.logout(); - cy.findSubmissionAsEditor('dbarnes', null, 'Perini'); - cy.sendToReview('Internal'); - cy.get('li.ui-state-active a:contains("Internal Review")'); - }); -}); diff --git a/cypress/tests/data/60-content/JbrowerSubmission.cy.js b/cypress/tests/data/60-content/JbrowerSubmission.cy.js new file mode 100644 index 00000000000..de0d2a10394 --- /dev/null +++ b/cypress/tests/data/60-content/JbrowerSubmission.cy.js @@ -0,0 +1,155 @@ +/** + * @file cypress/tests/data/60-content/JbrowerSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'Lost Tracks: Buffalo National Park, 1909-1939'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'monograph', + 'abstract': 'While contemporaries and historians alike hailed the establishment of Buffalo National Park in Wainwright, Alberta as a wildlife saving effort, the political climate of the early 20th century worked against it. The Canadian Parks Branch was never sufficiently funded to operate BNP effectively or to remedy the crises the animals faced as a result. Cross-breeding experiments with bison and domestic cattle proved unfruitful. Attempts at commercializing the herd had no success. Ultimately, the Department of National Defence repurposed the park for military training and the bison disappeared once more.', + 'keywords': [ + 'Biography & Memoir', + 'Environmental Studies', + 'Political & International Studies', + ], + 'submitterRole': 'Author', + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'intro.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter4.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter5.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'conclusion.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'bibliography.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'index.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + 'chapters': [ + { + 'title': 'Introduction', + 'contributors': ['Jennifer Brower'], + files: ['intro.pdf'] + }, + { + 'title': 'CHAPTER ONE: Where the Buffalo Roamed', + 'contributors': ['Jennifer Brower'], + files: ['chapter1.pdf'] + }, + { + 'title': 'CHAPTER TWO: Bison Conservation and Buffalo National Park', + 'contributors': ['Jennifer Brower'], + files: ['chapter2.pdf'] + }, + { + 'title': 'CHAPTER THREE: A Well-Run Ranch', + 'contributors': ['Jennifer Brower'], + files: ['chapter3.pdf'] + }, + { + 'title': 'CHAPTER FOUR: Zookeepers and Animal Breeders', + 'contributors': ['Jennifer Brower'], + files: ['chapter4.pdf'] + }, + { + 'title': 'CHAPTER FIVE: "Evolving the Arctic Cow"', + 'contributors': ['Jennifer Brower'], + files: ['chapter5.pdf'] + }, + { + 'title': 'CONCLUSION: The Forgotten Park', + 'contributors': ['Jennifer Brower'], + files: ['conclusion.pdf'] + }, + { + 'title': 'Bibliography', + 'contributors': ['Jennifer Brower'], + files: ['bibliography.pdf'] + }, + { + 'title': 'Index', + 'contributors': ['Jennifer Brower'], + files: ['index.pdf'] + } + ] + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'jbrower', + 'givenName': 'Jennifer', + 'familyName': 'Brower', + 'affiliation': 'Buffalo National Park Foundation', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + }); +}); diff --git a/cypress/tests/data/60-content/JbrowerSubmission.spec.js b/cypress/tests/data/60-content/JbrowerSubmission.spec.js deleted file mode 100644 index a64f1f54504..00000000000 --- a/cypress/tests/data/60-content/JbrowerSubmission.spec.js +++ /dev/null @@ -1,73 +0,0 @@ -/** - * @file cypress/tests/data/60-content/JbrowerSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'jbrower', - 'givenName': 'Jennifer', - 'familyName': 'Brower', - 'affiliation': 'Buffalo National Park Foundation', - 'country': 'Canada' - }); - - cy.createSubmission({ - 'type': 'monograph', - 'title': 'Lost Tracks: Buffalo National Park, 1909-1939', - 'abstract': 'While contemporaries and historians alike hailed the establishment of Buffalo National Park in Wainwright, Alberta as a wildlife saving effort, the political climate of the early 20th century worked against it. The Canadian Parks Branch was never sufficiently funded to operate BNP effectively or to remedy the crises the animals faced as a result. Cross-breeding experiments with bison and domestic cattle proved unfruitful. Attempts at commercializing the herd had no success. Ultimately, the Department of National Defence repurposed the park for military training and the bison disappeared once more.', - 'keywords': [ - 'Biography & Memoir', - 'Environmental Studies', - 'Political & International Studies', - ], - 'submitterRole': 'Author', - 'chapters': [ - { - 'title': 'Introduction', - 'contributors': ['Jennifer Brower'] - }, - { - 'title': 'CHAPTER ONE: Where the Buffalo Roamed', - 'contributors': ['Jennifer Brower'] - }, - { - 'title': 'CHAPTER TWO: Bison Conservation and Buffalo National Park', - 'contributors': ['Jennifer Brower'] - }, - { - 'title': 'CHAPTER THREE: A Well-Run Ranch', - 'contributors': ['Jennifer Brower'] - }, - { - 'title': 'CHAPTER FOUR: Zookeepers and Animal Breeders', - 'contributors': ['Jennifer Brower'] - }, - { - 'title': 'CHAPTER FIVE: "Evolving the Arctic Cow"', - 'contributors': ['Jennifer Brower'] - }, - { - 'title': 'CONCLUSION: The Forgotten Park', - 'contributors': ['Jennifer Brower'] - }, - { - 'title': 'Bibliography', - 'contributors': ['Jennifer Brower'] - }, - { - 'title': 'Index', - 'contributors': ['Jennifer Brower'] - } - ] - }); - }); -}); diff --git a/cypress/tests/data/60-content/JlockehartSubmission.cy.js b/cypress/tests/data/60-content/JlockehartSubmission.cy.js new file mode 100644 index 00000000000..8854747171f --- /dev/null +++ b/cypress/tests/data/60-content/JlockehartSubmission.cy.js @@ -0,0 +1,94 @@ +/** + * @file cypress/tests/data/60-content/JlockehartSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'Dreamwork'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'monograph', + 'abstract': 'Dreamwork is a poetic exploration of the then and there, here and now, of landscapes and inscapes over time. It is part of a poetry series on dream and its relation to actuality. The poems explore past, present, and future in different places from Canada through New Jersey, New York and New England to England and Europe, part of the speaker’s journey. A typology of home and displacement, of natural beauty and industrial scars unfolds in the movement of the book.', + 'submitterRole': 'Author', + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'intro.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'poems.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + 'chapters': [ + { + 'title': 'Introduction', + 'contributors': ['Jonathan Locke Hart'], + files: ['intro.pdf'] + }, + { + 'title': 'Poems', + 'contributors': ['Jonathan Locke Hart'], + files: ['poems.pdf'] + }, + ] + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'jlockehart', + 'givenName': 'Jonathan', + 'familyName': 'Locke Hart', + 'affiliation': 'University of Alberta', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Locke Hart'); + cy.clickDecision('Send to Internal Review'); + cy.recordDecisionSendToReview('Send to Internal Review', ['Jonathan Locke Hart'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('Internal Review'); + cy.assignReviewer('Aisla McCrae'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', ['Jonathan Locke Hart'], []); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Adela Gallego'); + cy.assignReviewer('Gonzalo Favio'); + cy.logout(); + + cy.performReview('agallego', null, submission.title, null, 'I recommend that the author revise this submission.'); + cy.performReview('gfavio', null, submission.title, null, 'I recommend that the author resubmit this submission.'); + + cy.findSubmissionAsEditor('dbarnes', null, 'Locke Hart'); + cy.clickDecision('Accept Submission'); + cy.recordDecisionAcceptSubmission(['Jonathan Locke Hart'], ['Adela Gallego', 'Gonzalo Favio'], []); + cy.isActiveStageTab('Copyediting'); + }); +}); diff --git a/cypress/tests/data/60-content/JlockehartSubmission.spec.js b/cypress/tests/data/60-content/JlockehartSubmission.spec.js deleted file mode 100644 index 88f5cc7c125..00000000000 --- a/cypress/tests/data/60-content/JlockehartSubmission.spec.js +++ /dev/null @@ -1,59 +0,0 @@ -/** - * @file cypress/tests/data/60-content/JlockehartSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'jlockehart', - 'givenName': 'Jonathan', - 'familyName': 'Locke Hart', - 'affiliation': 'University of Alberta', - 'country': 'Canada' - }); - - var title = 'Dreamwork'; - cy.createSubmission({ - 'type': 'monograph', - 'title': title, - 'abstract': 'Dreamwork is a poetic exploration of the then and there, here and now, of landscapes and inscapes over time. It is part of a poetry series on dream and its relation to actuality. The poems explore past, present, and future in different places from Canada through New Jersey, New York and New England to England and Europe, part of the speaker’s journey. A typology of home and displacement, of natural beauty and industrial scars unfolds in the movement of the book.', - 'submitterRole': 'Author', - 'chapters': [ - { - 'title': 'Introduction', - 'contributors': ['Jonathan Locke Hart'] - }, - { - 'title': 'Poems', - 'contributors': ['Jonathan Locke Hart'] - }, - ] - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Locke Hart'); - cy.sendToReview('Internal'); - cy.get('li.ui-state-active a:contains("Internal Review")'); - cy.assignReviewer('Aisla McCrae'); - cy.sendToReview('External', 'Internal'); - cy.get('li.ui-state-active a:contains("External Review")'); - cy.assignReviewer('Adela Gallego'); - cy.assignReviewer('Gonzalo Favio'); - cy.logout(); - - cy.performReview('agallego', null, title, null, 'I recommend that the author revise this submission.'); - cy.performReview('gfavio', null, title, null, 'I recommend that the author resubmit this submission.'); - - cy.findSubmissionAsEditor('dbarnes', null, 'Locke Hart'); - cy.recordEditorialDecision('Accept Submission'); - cy.get('li.ui-state-active a:contains("Copyediting")'); - }); -}); diff --git a/cypress/tests/data/60-content/LelderSubmission.cy.js b/cypress/tests/data/60-content/LelderSubmission.cy.js new file mode 100644 index 00000000000..29401b71e4f --- /dev/null +++ b/cypress/tests/data/60-content/LelderSubmission.cy.js @@ -0,0 +1,158 @@ +/** + * @file cypress/tests/data/60-content/LelderSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'Connecting ICTs to Development'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'editedVolume', + 'abstract': 'Over the past two decades, projects supported by the International Development Research Centre (IDRC) have critically examined how information and communications technologies (ICTs) can be used to improve learning, empower the disenfranchised, generate income opportunities for the poor, and facilitate access to healthcare in Africa, Asia, Latin America and the Caribbean. Considering that most development institutions and governments are currently attempting to integrate ICTs into their practices, it is an opportune time to reflect on the research findings that have emerged from IDRC’s work and research in this area.', + 'keywords': [ + 'International Development', + 'ICT' + ], + 'submitterRole': 'Volume editor', + 'additionalAuthors': [ + { + 'givenName': {en: 'Heloise'}, + 'familyName': {en: 'Emdon'}, + 'country': 'CA', + // 'affiliation': '', + 'email': 'lelder@mailinator.com', + userGroupId: Cypress.env('volumeEditorUserGroupId') + }, + { + 'givenName': {en: 'Frank'}, + 'familyName': {en: 'Tulus'}, + 'country': 'CA', + // 'affiliation': '', + 'email': 'ftulus@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Raymond'}, + 'familyName': {en: 'Hyma'}, + 'country': 'AR', + // 'affiliation': '', + 'email': 'rhyma@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'John'}, + 'familyName': {en: 'Valk'}, + 'country': 'CA', + // 'affiliation': '', + 'email': 'jvalk@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Khaled'}, + 'familyName': {en: 'Fourati'}, + 'country': 'CA', + // 'affiliation': '', + 'email': 'fkourati@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Jeremy'}, + 'familyName': {en: 'de Beer'}, + 'country': 'CA', + // 'affiliation': '', + 'email': 'jdebeer@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Sara'}, + 'familyName': {en: 'Bannerman'}, + 'country': 'CA', + // 'affiliation': '', + 'email': 'sbannerman@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + } + ], + 'chapters': [ + { + 'title': 'Catalyzing Access through Social and Technical Innovation', + 'contributors': ['Frank Tulus', 'Raymond Hyma'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Catalyzing Access via Telecommunications Policy', + 'contributors': ['John Valk', 'Khaled Fourati'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Access to Knowledge as a New Paradigm for Research on ICTs and Intellectual Property', + 'contributors': ['Jeremy de Beer', 'Sara Bannerman'], + files: ['chapter3.pdf'] + } + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'lelder', + 'givenName': 'Laurent', + 'familyName': 'Elder', + 'affiliation': 'International Development Research Centre', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Elder'); + cy.clickDecision('Send to Internal Review'); + cy.recordDecisionSendToReview('Send to Internal Review', ['Laurent Elder'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('Internal Review'); + cy.assignReviewer('Julie Janssen'); + cy.assignReviewer('Paul Hudson'); + cy.assignReviewer('Aisla McCrae'); + cy.logout(); + + cy.performReview('phudson', null, submission.title, null, 'I recommend declining this submission.'); + }); +}); diff --git a/cypress/tests/data/60-content/LelderSubmission.spec.js b/cypress/tests/data/60-content/LelderSubmission.spec.js deleted file mode 100644 index be9bdc4c00f..00000000000 --- a/cypress/tests/data/60-content/LelderSubmission.spec.js +++ /dev/null @@ -1,112 +0,0 @@ -/** - * @file cypress/tests/data/60-content/LelderSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'lelder', - 'givenName': 'Laurent', - 'familyName': 'Elder', - 'affiliation': 'International Development Research Centre', - 'country': 'Canada' - }); - - var title = 'Connecting ICTs to Development'; - cy.createSubmission({ - 'type': 'editedVolume', - 'title': title, - 'abstract': 'Over the past two decades, projects supported by the International Development Research Centre (IDRC) have critically examined how information and communications technologies (ICTs) can be used to improve learning, empower the disenfranchised, generate income opportunities for the poor, and facilitate access to healthcare in Africa, Asia, Latin America and the Caribbean. Considering that most development institutions and governments are currently attempting to integrate ICTs into their practices, it is an opportune time to reflect on the research findings that have emerged from IDRC’s work and research in this area.', - 'keywords': [ - 'International Development', - 'ICT' - ], - 'submitterRole': 'Volume editor', - 'additionalAuthors': [ - { - 'givenName': 'Heloise', - 'familyName': 'Emdon', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'lelder@mailinator.com', - 'role': 'Volume editor' - }, - { - 'givenName': 'Frank', - 'familyName': 'Tulus', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'ftulus@mailinator.com' - }, - { - 'givenName': 'Raymond', - 'familyName': 'Hyma', - 'country': 'Argentina', - // 'affiliation': '', - 'email': 'rhyma@mailinator.com' - }, - { - 'givenName': 'John', - 'familyName': 'Valk', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'jvalk@mailinator.com' - }, - { - 'givenName': 'Khaled', - 'familyName': 'Fourati', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'fkourati@mailinator.com' - }, - { - 'givenName': 'Jeremy', - 'familyName': 'de Beer', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'jdebeer@mailinator.com' - }, - { - 'givenName': 'Sara', - 'familyName': 'Bannerman', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'sbannerman@mailinator.com' - } - ], - 'chapters': [ - { - 'title': 'Catalyzing Access through Social and Technical Innovation', - 'contributors': ['Frank Tulus', 'Raymond Hyma'] - }, - { - 'title': 'Catalyzing Access via Telecommunications Policy', - 'contributors': ['John Valk', 'Khaled Fourati'] - }, - { - 'title': 'Access to Knowledge as a New Paradigm for Research on ICTs and Intellectual Property', - 'contributors': ['Jeremy de Beer', 'Sara Bannerman'] - } - ], - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Elder'); - cy.sendToReview('Internal'); - cy.get('li.ui-state-active a:contains("Internal Review")'); - cy.assignReviewer('Julie Janssen'); - cy.assignReviewer('Paul Hudson'); - cy.assignReviewer('Aisla McCrae'); - cy.logout(); - - cy.performReview('phudson', null, title, null, 'I recommend declining this submission.'); - }); -}); diff --git a/cypress/tests/data/60-content/MallySubmission.cy.js b/cypress/tests/data/60-content/MallySubmission.cy.js new file mode 100644 index 00000000000..c2c8f8ef2ed --- /dev/null +++ b/cypress/tests/data/60-content/MallySubmission.cy.js @@ -0,0 +1,142 @@ +/** + * @file cypress/tests/data/60-content/MallySubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'Mobile Learning: Transforming the Delivery of Education and Training'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'editedVolume', + 'abstract': 'This collection is for anyone interested in the use of mobile technology for various distance learning applications. Readers will discover how to design learning materials for delivery on mobile technology and become familiar with the best practices of other educators, trainers, and researchers in the field, as well as the most recent initiatives in mobile learning research. Businesses and governments can learn how to deliver timely information to staff using mobile devices. Professors can use this book as a textbook for courses on distance education, mobile learning, and educational technology.', + 'keywords': [ + 'Educational Technology' + ], + 'submitterRole': 'Volume editor', + 'additionalAuthors': [ + { + 'givenName': {en: 'John'}, + 'familyName': {en: 'Traxler'}, + 'country': 'GB', + // 'affiliation': '', + 'email': 'jtraxler@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Marguerite'}, + 'familyName': {en: 'Koole'}, + 'country': 'CA', + // 'affiliation': '', + 'email': 'mkoole@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Torstein'}, + 'familyName': {en: 'Rekkedal'}, + 'country': 'NO', + // 'affiliation': '', + 'email': 'trekkedal@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + ], + 'chapters': [ + { + 'title': 'Current State of Mobile Learning', + 'contributors': ['John Traxler'], + files: ['chapter1.pdf'] + }, + { + 'title': 'A Model for Framing Mobile Learning', + 'contributors': ['Marguerite Koole'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Mobile Distance Learning with PDAs: Development and Testing of Pedagogical and System Solutions Supporting Mobile Distance Learners', + 'contributors': ['Torstein Rekkedal'], + files: ['chapter3.pdf'] + } + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'mally', + 'givenName': 'Mohamed', + 'familyName': 'Ally', + 'affiliation': 'Athabasca University', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Ally'); + + // Internal review + cy.clickDecision('Send to Internal Review'); + cy.recordDecisionSendToReview('Send to Internal Review', ['Mohamed Ally'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('Internal Review'); + cy.assignReviewer('Paul Hudson'); + + // External review + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', ['Mohamed Ally'], []); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Adela Gallego'); + cy.assignReviewer('Al Zacharia'); + cy.assignReviewer('Gonzalo Favio'); + + cy.logout(); + + // Perform reviews + cy.performReview('agallego', null, submission.title, null, 'I recommend requiring revisions.'); + cy.performReview('gfavio', null, submission.title, null, 'I recommend resubmitting.'); + + // Accept submission + cy.findSubmissionAsEditor('dbarnes', null, 'Ally'); + cy.clickDecision('Accept Submission'); + cy.recordDecisionAcceptSubmission(['Mohamed Ally'], ['Adela Gallego', 'Gonzalo Favio'], []); + cy.isActiveStageTab('Copyediting'); + }); +}); diff --git a/cypress/tests/data/60-content/MallySubmission.spec.js b/cypress/tests/data/60-content/MallySubmission.spec.js deleted file mode 100644 index 92a1dd091a9..00000000000 --- a/cypress/tests/data/60-content/MallySubmission.spec.js +++ /dev/null @@ -1,97 +0,0 @@ -/** - * @file cypress/tests/data/60-content/MallySubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'mally', - 'givenName': 'Mohamed', - 'familyName': 'Ally', - 'affiliation': 'Athabasca University', - 'country': 'Canada' - }); - - var title = 'Mobile Learning: Transforming the Delivery of Education and Training'; - cy.createSubmission({ - 'type': 'editedVolume', - 'title': title, - 'abstract': 'This collection is for anyone interested in the use of mobile technology for various distance learning applications. Readers will discover how to design learning materials for delivery on mobile technology and become familiar with the best practices of other educators, trainers, and researchers in the field, as well as the most recent initiatives in mobile learning research. Businesses and governments can learn how to deliver timely information to staff using mobile devices. Professors can use this book as a textbook for courses on distance education, mobile learning, and educational technology.', - 'keywords': [ - 'Educational Technology' - ], - 'submitterRole': 'Volume editor', - 'additionalAuthors': [ - { - 'givenName': 'John', - 'familyName': 'Traxler', - 'country': 'United Kingdom', - // 'affiliation': '', - 'email': 'jtraxler@mailinator.com', - }, - { - 'givenName': 'Marguerite', - 'familyName': 'Koole', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'mkoole@mailinator.com', - }, - { - 'givenName': 'Torstein', - 'familyName': 'Rekkedal', - 'country': 'Norway', - // 'affiliation': '', - 'email': 'trekkedal@mailinator.com', - }, - ], - 'chapters': [ - { - 'title': 'Current State of Mobile Learning', - 'contributors': ['John Traxler'], - }, - { - 'title': 'A Model for Framing Mobile Learning', - 'contributors': ['Marguerite Koole'] - }, - { - 'title': 'Mobile Distance Learning with PDAs: Development and Testing of Pedagogical and System Solutions Supporting Mobile Distance Learners', - 'contributors': ['Torstein Rekkedal'] - } - ], - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Ally'); - - // Internal review - cy.sendToReview('Internal'); - cy.get('li.ui-state-active a:contains("Internal Review")'); - cy.assignReviewer('Paul Hudson'); - - // External review - cy.sendToReview('External', 'Internal'); - cy.get('li.ui-state-active a:contains("External Review")'); - cy.assignReviewer('Adela Gallego'); - cy.assignReviewer('Al Zacharia'); - cy.assignReviewer('Gonzalo Favio'); - - cy.logout(); - - // Perform reviews - cy.performReview('agallego', null, title, null, 'I recommend requiring revisions.'); - cy.performReview('gfavio', null, title, null, 'I recommend resubmitting.'); - - // Accept submission - cy.findSubmissionAsEditor('dbarnes', null, 'Ally'); - cy.recordEditorialDecision('Accept Submission'); - cy.get('li.ui-state-active a:contains("Copyediting")'); - }); -}); diff --git a/cypress/tests/data/60-content/MdawsonSubmission.cy.js b/cypress/tests/data/60-content/MdawsonSubmission.cy.js new file mode 100644 index 00000000000..0d3b28384da --- /dev/null +++ b/cypress/tests/data/60-content/MdawsonSubmission.cy.js @@ -0,0 +1,212 @@ +/** + * @file cypress/tests/data/60-content/MdawsonSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + let author = 'Michael Dawson'; + before(function() { + const title = 'From Bricks to Brains: The Embodied Cognitive Science of LEGO Robots'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'editedVolume', + 'series': 'Psychology', + seriesId: 5, + 'abstract': 'From Bricks to Brains introduces embodied cognitive science, and illustrates its foundational ideas through the construction and observation of LEGO Mindstorms robots. Discussing the characteristics that distinguish embodied cognitive science from classical cognitive science, From Bricks to Brains places a renewed emphasis on sensing and acting, the importance of embodiment, the exploration of distributed notions of control, and the development of theories by synthesizing simple systems and exploring their behaviour. Numerous examples are used to illustrate a key theme: the importance of an agent’s environment. Even simple agents, such as LEGO robots, are capable of exhibiting complex behaviour when they can sense and affect the world around them.', + 'keywords': [ + 'Psychology' + ], + 'submitterRole': 'Volume editor', + 'additionalAuthors': [ + { + 'givenName': {en: 'Brian'}, + 'familyName': {en: 'Dupuis'}, + 'country': 'CA', + 'affiliation': {en: 'Athabasca University'}, + 'email': 'bdupuis@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Michael'}, + 'familyName': {en: 'Wilson'}, + 'country': 'CA', + 'affiliation': {en: 'University of Calgary'}, + 'email': 'mwilson@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + } + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter4.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'fileTitle': 'Segmentation of Vascular Ultrasound Image Sequences.', + 'fileName': 'Segmentation of Vascular Ultrasound Image Sequences.'.substr(0, 40) + '.pdf', + 'file': 'dummy.pdf', + 'genre': 'Other', + 'metadata': { + 'creator-en': 'Baris Kanber', + 'description-en': 'A presentation entitled "Segmentation of Vascular Ultrasound Image Sequences".', + 'language': 'en' + } + }, + { + 'fileTitle': 'The Canadian Nutrient File: Nutrient Value of Some Common Foods', + 'fileName': 'The Canadian Nutrient File: Nutrient Value of Some Common Foods'.substr(0, 40) + '.pdf', + 'file': 'dummy.pdf', + 'genre': 'Table', + 'metadata': { + 'creator-en': 'Health Canada', + 'publisher-en': 'Health Canada', + 'description-en': 'Published by Health Canada, the Nutrient Value of Some Common Foods (NVSCF) provides Canadians with a resource that lists 19 nutrients for 1000 of the most commonly consumed foods in Canada. Use this quick and easy reference to help make informed food choices through an understanding of the nutrient content of the foods you eat. For further information, a booklet is available on this site in a downloadable or printable pdf format.', + 'source-en': 'http://open.canada.ca/data/en/dataset/a289fd54-060c-4a96-9fcf-b1c6e706426f', + 'subject-en': 'Health and Safety', + 'dateCreated': '2013-05-23', + 'language': 'en' + } + } + ], + 'chapters': [ + { + 'title': 'Chapter 1: Mind Control—Internal or External?', + 'contributors': ['Michael Dawson'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Chapter 2: Classical Music and the Classical Mind', + 'contributors': ['Brian Dupuis'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Chapter 3: Situated Cognition and Bricolage', + 'contributors': ['Michael Wilson'], + files: ['chapter3.pdf'] + }, + { + 'title': 'Chapter 4: Braitenberg’s Vehicle 2', + 'contributors': ['Michael Dawson'], + files: ['chapter4.pdf'] + } + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'mdawson', + 'givenName': 'Michael', + 'familyName': 'Dawson', + 'affiliation': 'University of Alberta', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Dawson'); + cy.clickDecision('Send to Internal Review'); + cy.recordDecisionSendToReview('Send to Internal Review', [author], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('Internal Review'); + cy.assignReviewer('Julie Janssen'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', [author], []); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Al Zacharia'); + cy.clickDecision('Accept Submission'); + cy.recordDecisionAcceptSubmission([author], [], []); + cy.isActiveStageTab('Copyediting'); + cy.assignParticipant('Copyeditor', 'Maria Fritz'); + cy.clickDecision('Send To Production'); + cy.recordDecisionSendToProduction([author], []); + cy.isActiveStageTab('Production'); + cy.assignParticipant('Layout Editor', 'Graham Cox'); + cy.assignParticipant('Proofreader', 'Sabine Kumar'); + + // Add a publication format + cy.get('button[id="publication-button"]').click(); + cy.get('button[id="publicationFormats-button"]').click(); + cy.get('*[id^="component-grid-catalogentry-publicationformatgrid-addFormat-button-"]').click(); + cy.wait(1000); // Avoid occasional failure due to form init taking time + cy.get('input[id^="name-en-"]').type('PDF', {delay: 0}); + cy.get('div.pkp_modal_panel div.header:contains("Add publication format")').click(); // FIXME: Focus problem with multilingual input + cy.get('button:contains("OK")').click(); + + // Select proof files + cy.get('table[id*="component-grid-catalogentry-publicationformatgrid"] span:contains("PDF"):parent() a[id*="-name-selectFiles-button-"]').click(); + cy.get('*[id=allStages]').click(); + var proofFiles = []; + submission.chapters.forEach(chapter => { + proofFiles.push(chapter.files[0]); + }); + proofFiles.push('Segmentation of Vascular Ultrasound Image Sequences.'); + proofFiles.push('The Canadian Nutrient File: Nutrient Value of Some Common Foods'); + proofFiles.forEach(proofFile => { + cy.get('tbody[id^="component-grid-files-proof-manageprooffilesgrid-category-"] a:contains("' + Cypress.$.escapeSelector(proofFile.substring(0, 40)) + '"):first').parents('tr.gridRow').find('input[type=checkbox]').click(); + }); + cy.get('form[id="manageProofFilesForm"] button[id^="submitFormButton"]').click(); + cy.waitJQuery(); + + // Approvals for PDF publication format + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("PDF") a[id*="-isComplete-approveRepresentation-button-"]').click(); + cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); + cy.waitJQuery(); + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("PDF") a[id*="-isAvailable-availableRepresentation-button-"]').click(); + cy.get('.pkpModalConfirmButton').click(); + + // Approvals for files + proofFiles.forEach(proofFile => { + cy.waitJQuery(); + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("' + Cypress.$.escapeSelector(proofFile.substring(0, 40)) + '") a[id*="-isComplete-not_approved-button-"]').click(); + cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); + + // File availability + cy.waitJQuery(); + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("' + Cypress.$.escapeSelector(proofFile.substring(0, 40)) + '") a[id*="-isAvailable-editApprovedProof-button-"]').click(); + cy.get('input[id="openAccess"]').click(); + cy.get('form#approvedProofForm button.submitFormButton').click(); + }); + + // Add to catalog + cy.addToCatalog(); + }); +}); diff --git a/cypress/tests/data/60-content/MdawsonSubmission.spec.js b/cypress/tests/data/60-content/MdawsonSubmission.spec.js deleted file mode 100644 index 6c85265aeb9..00000000000 --- a/cypress/tests/data/60-content/MdawsonSubmission.spec.js +++ /dev/null @@ -1,163 +0,0 @@ -/** - * @file cypress/tests/data/60-content/MdawsonSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'mdawson', - 'givenName': 'Michael', - 'familyName': 'Dawson', - 'affiliation': 'University of Alberta', - 'country': 'Canada' - }); - - var title = 'From Bricks to Brains: The Embodied Cognitive Science of LEGO Robots', chapters, additionalFiles; - cy.createSubmission({ - 'type': 'editedVolume', - 'series': 'Psychology', - 'title': title, - 'abstract': 'From Bricks to Brains introduces embodied cognitive science, and illustrates its foundational ideas through the construction and observation of LEGO Mindstorms robots. Discussing the characteristics that distinguish embodied cognitive science from classical cognitive science, From Bricks to Brains places a renewed emphasis on sensing and acting, the importance of embodiment, the exploration of distributed notions of control, and the development of theories by synthesizing simple systems and exploring their behaviour. Numerous examples are used to illustrate a key theme: the importance of an agent’s environment. Even simple agents, such as LEGO robots, are capable of exhibiting complex behaviour when they can sense and affect the world around them.', - 'keywords': [ - 'Psychology' - ], - 'submitterRole': 'Volume editor', - 'additionalAuthors': [ - { - 'givenName': 'Brian', - 'familyName': 'Dupuis', - 'country': 'Canada', - 'affiliation': 'Athabasca University', - 'email': 'bdupuis@mailinator.com', - 'role': 'Author' - }, - { - 'givenName': 'Michael', - 'familyName': 'Wilson', - 'country': 'Canada', - 'affiliation': 'University of Calgary', - 'email': 'mwilson@mailinator.com', - 'role': 'Author' - } - ], - 'chapters': chapters = [ - { - 'title': 'Chapter 1: Mind Control—Internal or External?', - 'contributors': ['Michael Dawson'] - }, - { - 'title': 'Chapter 2: Classical Music and the Classical Mind', - 'contributors': ['Brian Dupuis'] - }, - { - 'title': 'Chapter 3: Situated Cognition and Bricolage', - 'contributors': ['Michael Wilson'] - }, - { - 'title': 'Chapter 4: Braitenberg’s Vehicle 2', - 'contributors': ['Michael Dawson'] - } - ], - 'additionalFiles': additionalFiles = [ - { - 'fileTitle': 'Segmentation of Vascular Ultrasound Image Sequences.', - 'fileName': 'Segmentation of Vascular Ultrasound Image Sequences.'.substr(0, 40) + '.pdf', - 'file': 'dummy.pdf', - 'genre': 'Other', - 'metadata': { - 'creator-en_US': 'Baris Kanber', - 'description-en_US': 'A presentation entitled "Segmentation of Vascular Ultrasound Image Sequences".', - 'language': 'en' - } - }, - { - 'fileTitle': 'The Canadian Nutrient File: Nutrient Value of Some Common Foods', - 'fileName': 'The Canadian Nutrient File: Nutrient Value of Some Common Foods'.substr(0, 40) + '.pdf', - 'file': 'dummy.pdf', - 'genre': 'Table', - 'metadata': { - 'creator-en_US': 'Health Canada', - 'publisher-en_US': 'Health Canada', - 'description-en_US': 'Published by Health Canada, the Nutrient Value of Some Common Foods (NVSCF) provides Canadians with a resource that lists 19 nutrients for 1000 of the most commonly consumed foods in Canada. Use this quick and easy reference to help make informed food choices through an understanding of the nutrient content of the foods you eat. For further information, a booklet is available on this site in a downloadable or printable pdf format.', - 'source-en_US': 'http://open.canada.ca/data/en/dataset/a289fd54-060c-4a96-9fcf-b1c6e706426f', - 'subject-en_US': 'Health and Safety', - 'dateCreated': '2013-05-23', - 'language': 'en' - } - } - ] - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Dawson'); - cy.sendToReview('Internal'); - cy.get('li.ui-state-active a:contains("Internal Review")'); - cy.assignReviewer('Julie Janssen'); - cy.sendToReview('External', 'Internal'); - cy.get('li.ui-state-active a:contains("External Review")'); - cy.assignReviewer('Al Zacharia'); - cy.recordEditorialDecision('Accept Submission'); - cy.get('li.ui-state-active a:contains("Copyediting")'); - cy.assignParticipant('Copyeditor', 'Maria Fritz'); - cy.recordEditorialDecision('Send To Production'); - cy.get('li.ui-state-active a:contains("Production")'); - cy.assignParticipant('Layout Editor', 'Graham Cox'); - cy.assignParticipant('Proofreader', 'Sabine Kumar'); - - // Add a publication format - cy.get('button[id="publication-button"]').click(); - cy.get('button[id="publicationFormats-button"]').click(); - cy.get('*[id^="component-grid-catalogentry-publicationformatgrid-addFormat-button-"]').click(); - cy.wait(1000); // Avoid occasional failure due to form init taking time - cy.get('input[id^="name-en_US-"]').type('PDF', {delay: 0}); - cy.get('div.pkp_modal_panel div.header:contains("Add publication format")').click(); // FIXME: Focus problem with multilingual input - cy.get('button:contains("OK")').click(); - - // Select proof files - cy.get('table[id*="component-grid-catalogentry-publicationformatgrid"] span:contains("PDF"):parent() a[id*="-name-selectFiles-button-"]').click(); - cy.get('*[id=allStages]').click(); - var proofFiles = []; - chapters.forEach(chapter => { - proofFiles.push(chapter.title); - }); - additionalFiles.forEach(additionalFile => { - proofFiles.push(additionalFile.fileTitle); - }); - proofFiles.forEach(proofFile => { - cy.get('tbody[id^="component-grid-files-proof-manageprooffilesgrid-category-"] a:contains("' + Cypress.$.escapeSelector(proofFile.substring(0, 40)) + '"):first').parents('tr.gridRow').find('input[type=checkbox]').click(); - }); - cy.get('form[id="manageProofFilesForm"] button[id^="submitFormButton"]').click(); - cy.waitJQuery(); - - // Approvals for PDF publication format - cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("PDF") a[id*="-isComplete-approveRepresentation-button-"]').click(); - cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); - cy.waitJQuery(); - cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("PDF") a[id*="-isAvailable-availableRepresentation-button-"]').click(); - cy.get('.pkpModalConfirmButton').click(); - - // Approvals for files - proofFiles.forEach(proofFile => { - cy.waitJQuery(); - cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("' + Cypress.$.escapeSelector(proofFile.substring(0, 40)) + '") a[id*="-isComplete-not_approved-button-"]').click(); - cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); - - // File availability - cy.waitJQuery(); - cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("' + Cypress.$.escapeSelector(proofFile.substring(0, 40)) + '") a[id*="-isAvailable-editApprovedProof-button-"]').click(); - cy.get('input[id="openAccess"]').click(); - cy.get('form#approvedProofForm button.submitFormButton').click(); - }); - - // Add to catalog - cy.addToCatalog(); - }); -}); diff --git a/cypress/tests/data/60-content/MforanSubmission.cy.js b/cypress/tests/data/60-content/MforanSubmission.cy.js new file mode 100644 index 00000000000..3c2912e692d --- /dev/null +++ b/cypress/tests/data/60-content/MforanSubmission.cy.js @@ -0,0 +1,90 @@ +/** + * @file cypress/tests/data/60-content/MforanSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'Expansive Discourses: Urban Sprawl in Calgary, 1945-1978'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'monograph', + 'abstract': 'A groundbreaking study of urban sprawl in Calgary after the Second World War. The interactions of land developers and the local government influenced how the pattern grew: developers met market demands and optimized profits by building houses as efficiently as possible, while the City had to consider wider planning constraints and infrastructure costs. Foran examines the complexity of their interactions from a historical perspective, why each party acted as it did, and where each can be criticized.', + 'submitterRole': 'Author', + 'chapters': [ + { + 'title': 'Setting the Stage', + 'contributors': ['Max Foran'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Going It Alone, 1945-1954', + 'contributors': ['Max Foran'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Establishing the Pattern, 1955-1962', + 'contributors': ['Max Foran'], + files: ['chapter3.pdf'] + }, + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'mforan', + 'givenName': 'Max', + 'familyName': 'Foran', + 'affiliation': 'University of Calgary', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Foran'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', ['Max Foran'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('External Review'); + }); +}); diff --git a/cypress/tests/data/60-content/MforanSubmission.spec.js b/cypress/tests/data/60-content/MforanSubmission.spec.js deleted file mode 100644 index d325a2e4416..00000000000 --- a/cypress/tests/data/60-content/MforanSubmission.spec.js +++ /dev/null @@ -1,50 +0,0 @@ -/** - * @file cypress/tests/data/60-content/MforanSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'mforan', - 'givenName': 'Max', - 'familyName': 'Foran', - 'affiliation': 'University of Calgary', - 'country': 'Canada' - }); - - var title = 'Expansive Discourses: Urban Sprawl in Calgary, 1945-1978'; - cy.createSubmission({ - 'type': 'monograph', - 'title': title, - 'abstract': 'A groundbreaking study of urban sprawl in Calgary after the Second World War. The interactions of land developers and the local government influenced how the pattern grew: developers met market demands and optimized profits by building houses as efficiently as possible, while the City had to consider wider planning constraints and infrastructure costs. Foran examines the complexity of their interactions from a historical perspective, why each party acted as it did, and where each can be criticized.', - 'submitterRole': 'Author', - 'chapters': [ - { - 'title': 'Setting the Stage', - 'contributors': ['Max Foran'] - }, - { - 'title': 'Going It Alone, 1945-1954', - 'contributors': ['Max Foran'] - }, - { - 'title': 'Establishing the Pattern, 1955-1962', - 'contributors': ['Max Foran'] - }, - ], - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Foran'); - cy.sendToReview('External'); - cy.get('li.ui-state-active a:contains("External Review")'); - }); -}); diff --git a/cypress/tests/data/60-content/MpowerSubmission.cy.js b/cypress/tests/data/60-content/MpowerSubmission.cy.js new file mode 100644 index 00000000000..5c93fafaeca --- /dev/null +++ b/cypress/tests/data/60-content/MpowerSubmission.cy.js @@ -0,0 +1,118 @@ +/** + * @file cypress/tests/data/60-content/MpowerSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'A Designer\'s Log: Case Studies in Instructional Design'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'monograph', + 'abstract': 'Books and articles on instructional design in online learning abound but rarely do we get such a comprehensive picture of what instructional designers do, how they do it, and the problems they solve as their university changes. Power documents the emergence of an adapted instructional design model for transforming courses from single-mode to dual-mode instruction, making this designer’s log a unique contribution to the fi eld of online learning.', + 'submitterRole': 'Author', + 'chapters': [ + { + 'title': 'Foreward', + 'contributors': ['Michael Power'], + files: ['foreward.pdf'] + }, + { + 'title': 'Preface', + 'contributors': ['Michael Power'], + files: ['preface.pdf'] + }, + { + 'title': 'The Case Studies', + 'contributors': ['Michael Power'], + files: ['cases.pdf'] + }, + { + 'title': 'Conclusion', + 'contributors': ['Michael Power'], + files: ['conclusion.pdf'] + }, + { + 'title': 'Bibliography', + 'contributors': ['Michael Power'], + files: ['bibliography.pdf'] + } + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'foreward.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'preface.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'cases.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'conclusion.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'bibliography.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'mpower', + 'givenName': 'Michael', + 'familyName': 'Power', + 'affiliation': 'London School of Economics', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Power'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', ['Michael Power'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Adela Gallego'); + cy.assignReviewer('Al Zacharia'); + cy.assignReviewer('Gonzalo Favio'); + cy.logout(); + + cy.performReview('agallego', null, submission.title, null, 'I recommend that the author revise this submission.'); + }); +}); diff --git a/cypress/tests/data/60-content/MpowerSubmission.spec.js b/cypress/tests/data/60-content/MpowerSubmission.spec.js deleted file mode 100644 index f4c4030a293..00000000000 --- a/cypress/tests/data/60-content/MpowerSubmission.spec.js +++ /dev/null @@ -1,64 +0,0 @@ -/** - * @file cypress/tests/data/60-content/MpowerSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'mpower', - 'givenName': 'Michael', - 'familyName': 'Power', - 'affiliation': 'London School of Economics', - 'country': 'Canada' - }); - - var title = 'A Designer\'s Log: Case Studies in Instructional Design'; - cy.createSubmission({ - 'type': 'monograph', - 'title': title, - 'abstract': 'Books and articles on instructional design in online learning abound but rarely do we get such a comprehensive picture of what instructional designers do, how they do it, and the problems they solve as their university changes. Power documents the emergence of an adapted instructional design model for transforming courses from single-mode to dual-mode instruction, making this designer’s log a unique contribution to the fi eld of online learning.', - 'submitterRole': 'Author', - 'chapters': [ - { - 'title': 'Foreward', - 'contributors': ['Michael Power'] - }, - { - 'title': 'Preface', - 'contributors': ['Michael Power'] - }, - { - 'title': 'The Case Studies', - 'contributors': ['Michael Power'] - }, - { - 'title': 'Conclusion', - 'contributors': ['Michael Power'] - }, - { - 'title': 'Bibliography', - 'contributors': ['Michael Power'] - } - ], - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Power'); - cy.sendToReview('External'); - cy.get('li.ui-state-active a:contains("External Review")'); - cy.assignReviewer('Adela Gallego'); - cy.assignReviewer('Al Zacharia'); - cy.assignReviewer('Gonzalo Favio'); - cy.logout(); - - cy.performReview('agallego', null, title, null, 'I recommend that the author revise this submission.'); - }); -}); diff --git a/cypress/tests/data/60-content/MsmithSubmission.cy.js b/cypress/tests/data/60-content/MsmithSubmission.cy.js new file mode 100644 index 00000000000..946f1edd808 --- /dev/null +++ b/cypress/tests/data/60-content/MsmithSubmission.cy.js @@ -0,0 +1,187 @@ +/** + * @file cypress/tests/data/60-content/MsmithSubmission.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_data + * + * @brief Data build suite: Create submission + */ + +describe('Data suite tests', function() { + + let submission; + before(function() { + const title = 'Open Development: Networked Innovations in International Development'; + submission = { + id: 0, + prefix: '', + title: title, + subtitle: '', + 'type': 'editedVolume', + 'abstract': 'The emergence of open networked models made possible by digital technology has the potential to transform international development. Open network structures allow people to come together to share information, organize, and collaborate. Open development harnesses this power to create new organizational forms and improve people’s lives; it is not only an agenda for research and practice but also a statement about how to approach international development. In this volume, experts explore a variety of applications of openness, addressing challenges as well as opportunities.', + 'keywords': [ + 'International Development', + 'ICT' + ], + 'submitterRole': 'Volume editor', + 'additionalAuthors': [ + { + 'givenName': {en: 'Yochai'}, + 'familyName': {en: 'Benkler'}, + 'country': 'US', + // 'affiliation': '', + 'email': 'ybenkler@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Katherine'}, + 'familyName': {en: 'Reilly'}, + 'country': 'CA', + // 'affiliation': '', + 'email': 'kreilly@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Melissa'}, + 'familyName': {en: 'Loudon'}, + 'country': 'US', + // 'affiliation': '', + 'email': 'mloudon@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Ulrike'}, + 'familyName': {en: 'Rivett'}, + 'country': 'SA', + // 'affiliation': '', + 'email': 'urivett@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Mark'}, + 'familyName': {en: 'Graham'}, + 'country': 'GB', + // 'affiliation': '', + 'email': 'mgraham@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Håvard'}, + 'familyName': {en: 'Haarstad'}, + 'country': 'NO', + // 'affiliation': '', + 'email': 'hhaarstad@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + 'givenName': {en: 'Marshall'}, + 'familyName': {en: 'Smith'}, + 'country': 'US', + // 'affiliation': '', + 'email': 'masmith@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + } + ], + files: [ + { + 'file': 'dummy.pdf', + 'fileName': 'preface.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'introduction.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter1.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter2.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter3.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + { + 'file': 'dummy.pdf', + 'fileName': 'chapter4.pdf', + 'mimeType': 'application/pdf', + 'genre': Cypress.env('defaultGenre') + }, + ], + 'chapters': [ + { + 'title': 'Preface', + 'contributors': ['Yochai Benkler'], + files: ['preface.pdf'] + }, + { + 'title': 'Introduction', + 'contributors': ['Matthew Smith', 'Katherine Reilly'], + files: ['introduction.pdf'] + }, + { + 'title': 'The Emergence of Open Development in a Network Society', + 'contributors': ['Matthew Smith', 'Katherine Reilly'], + files: ['chapter1.pdf'] + }, + { + 'title': 'Enacting Openness in ICT4D Research', + 'contributors': ['Melissa Loudon', 'Ulrike Rivett'], + files: ['chapter2.pdf'] + }, + { + 'title': 'Transparency and Development: Ethical Consumption through Web 2.0 and the Internet of Things', + 'contributors': ['Mark Graham', 'Håvard Haarstad'], + files: ['chapter3.pdf'] + }, + { + 'title': 'Open Educational Resources: Opportunities and Challenges for the Developing World', + 'contributors': ['Marshall Smith'], + files: ['chapter4.pdf'] + } + ] + } + }); + + it('Create a submission', function() { + cy.register({ + 'username': 'msmith', + 'givenName': 'Matthew', + 'familyName': 'Smith', + 'affiliation': 'International Development Research Centre', + 'country': 'Canada' + }); + + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }); + cy.logout(); + + cy.findSubmissionAsEditor('dbarnes', null, 'Smith'); + cy.clickDecision('Send to Internal Review'); + cy.recordDecisionSendToReview('Send to Internal Review', ['Matthew Smith'], submission.files.map(file => file.fileName)); + cy.isActiveStageTab('Internal Review'); + cy.assignReviewer('Julie Janssen'); + cy.assignReviewer('Paul Hudson'); + }); +}); diff --git a/cypress/tests/data/60-content/MsmithSubmission.spec.js b/cypress/tests/data/60-content/MsmithSubmission.spec.js deleted file mode 100644 index 9a07dad3735..00000000000 --- a/cypress/tests/data/60-content/MsmithSubmission.spec.js +++ /dev/null @@ -1,119 +0,0 @@ -/** - * @file cypress/tests/data/60-content/MsmithSubmission.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @ingroup tests_data - * - * @brief Data build suite: Create submission - */ - -describe('Data suite tests', function() { - it('Create a submission', function() { - cy.register({ - 'username': 'msmith', - 'givenName': 'Matthew', - 'familyName': 'Smith', - 'affiliation': 'International Development Research Centre', - 'country': 'Canada' - }); - - var title = 'Open Development: Networked Innovations in International Development'; - cy.createSubmission({ - 'type': 'editedVolume', - 'title': title, - 'abstract': 'The emergence of open networked models made possible by digital technology has the potential to transform international development. Open network structures allow people to come together to share information, organize, and collaborate. Open development harnesses this power to create new organizational forms and improve people’s lives; it is not only an agenda for research and practice but also a statement about how to approach international development. In this volume, experts explore a variety of applications of openness, addressing challenges as well as opportunities.', - 'keywords': [ - 'International Development', - 'ICT' - ], - 'submitterRole': 'Volume editor', - 'additionalAuthors': [ - { - 'givenName': 'Yochai', - 'familyName': 'Benkler', - 'country': 'United States', - // 'affiliation': '', - 'email': 'ybenkler@mailinator.com' - }, - { - 'givenName': 'Katherine', - 'familyName': 'Reilly', - 'country': 'Canada', - // 'affiliation': '', - 'email': 'kreilly@mailinator.com' - }, - { - 'givenName': 'Melissa', - 'familyName': 'Loudon', - 'country': 'United States', - // 'affiliation': '', - 'email': 'mloudon@mailinator.com' - }, - { - 'givenName': 'Ulrike', - 'familyName': 'Rivett', - 'country': 'South Africa', - // 'affiliation': '', - 'email': 'urivett@mailinator.com' - }, - { - 'givenName': 'Mark', - 'familyName': 'Graham', - 'country': 'United Kingdom', - // 'affiliation': '', - 'email': 'mgraham@mailinator.com' - }, - { - 'givenName': 'Håvard', - 'familyName': 'Haarstad', - 'country': 'Norway', - // 'affiliation': '', - 'email': 'hhaarstad@mailinator.com' - }, - { - 'givenName': 'Marshall', - 'familyName': 'Smith', - 'country': 'United States', - // 'affiliation': '', - 'email': 'masmith@mailinator.com' - } - ], - 'chapters': [ - { - 'title': 'Preface', - 'contributors': ['Yochai Benkler'] - }, - { - 'title': 'Introduction', - 'contributors': ['Matthew Smith', 'Katherine Reilly'] - }, - { - 'title': 'The Emergence of Open Development in a Network Society', - 'contributors': ['Matthew Smith', 'Katherine Reilly'] - }, - { - 'title': 'Enacting Openness in ICT4D Research', - 'contributors': ['Melissa Loudon', 'Ulrike Rivett'] - }, - { - 'title': 'Transparency and Development: Ethical Consumption through Web 2.0 and the Internet of Things', - 'contributors': ['Mark Graham', 'Håvard Haarstad'] - }, - { - 'title': 'Open Educational Resources: Opportunities and Challenges for the Developing World', - 'contributors': ['Marshall Smith'] - } - ] - }); - cy.logout(); - - cy.findSubmissionAsEditor('dbarnes', null, 'Smith'); - cy.sendToReview('Internal'); - cy.get('li.ui-state-active a:contains("Internal Review")'); - cy.assignReviewer('Julie Janssen'); - cy.assignReviewer('Paul Hudson'); - }); -}); diff --git a/cypress/tests/integration/API.cy.js b/cypress/tests/integration/API.cy.js new file mode 100644 index 00000000000..69e2108e4a9 --- /dev/null +++ b/cypress/tests/integration/API.cy.js @@ -0,0 +1,67 @@ +/** + * @file cypress/tests/integration/API.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('API tests', function() { + it('Sets an API secret', function() { + // Before API keys will function, an API key secret must be set in the configuration file. + // This test is used to ensure one is set. (The default configuration file has an empty secret.) + cy.readFile('config.inc.php').then((text) => { + cy.writeFile('config.inc.php', + text.replace("api_key_secret = \"\"", "api_key_secret = \"Api_Key_Secret_For_Testing_Purposes_Only\"") + ); + }); + }); + + it("Configures an author's API key", function() { + cy.login('callan', null, 'publicknowledge'); + cy.get('.app__userNav button').click(); + cy.get('a:contains("Edit Profile")').click(); + cy.get('a[name="apiSettings"]').click(); + cy.get("body").then($body => { + if ($body.find("button:contains(\"Delete\")").length > 0) { + cy.get('form[id="apiProfileForm"] button:contains("Delete")').click(); + cy.waitJQuery(); + cy.on('window:confirm', (text) => { + return true; + }); + cy.waitJQuery(); + } + }); + cy.get('form[id="apiProfileForm"] button:contains("Create API Key")').click(); + cy.waitJQuery(); + cy.get('span:contains("Your changes have been saved.")'); + cy.get('input[id^="apiKey-"]').invoke('val').as('apiKey').then(function() { + cy.log(this.apiKey); + }); + cy.logout(); + }); + + it("Lists submissions using an author's API key", function() { + cy.request('index.php/publicknowledge/api/v1/submissions?apiToken=' + this.apiKey).then(response => { + // The author only has a single submission; submissions from other users should not be included. + expect(response.body.items.length).eq(1); + }); + }); + + it("Deletes an author's API key", function() { + cy.login('callan', null, 'publicknowledge'); + cy.get('.app__userNav button').click(); + cy.get('a:contains("Edit Profile")').click(); + cy.get('a[name="apiSettings"]').click(); + cy.get('form[id="apiProfileForm"] button:contains("Delete")').click(); + cy.waitJQuery(); + cy.on('window:confirm', (text) => { + return true; + }); + cy.waitJQuery(); + cy.get('span:contains("Your changes have been saved.")'); + cy.get('input[id^="apiKey-"]').invoke('val').should('eq', 'None'); + cy.logout(); + }); +}) diff --git a/cypress/tests/integration/CatalogSearch.cy.js b/cypress/tests/integration/CatalogSearch.cy.js new file mode 100644 index 00000000000..422a60f8411 --- /dev/null +++ b/cypress/tests/integration/CatalogSearch.cy.js @@ -0,0 +1,34 @@ +/** + * @file cypress/tests/integration/CatalogSearch.cy.js + * + * Copyright (c) 2016-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. + * + * @brief Test for catalog search + */ + +describe('Data suite tests', function() { + it('Searches for something that should exist', function() { + // Search for "bomb" + cy.visit(''); + cy.get('a').contains('Search').click(); + cy.get('input[name="query"]').type('bomb', {delay: 0}); + cy.get('button:contains("Search")').click(); + + // Should be 1 result + cy.get('div[role="status"]').contains('One title was found'); + cy.get('a').contains("Bomb Canada and Other Unkind Remarks in the American Media"); + }); + + it('Searches for something that should not exist', function() { + // Search for "zorg" + cy.visit(''); + cy.get('a').contains('Search').click(); + cy.get('input[name="query"]').type('zorg', {delay: 0}); + cy.get('button:contains("Search")').click(); + + // Should be 0 results + cy.get('div[role="status"]').contains('No titles were found'); + }); +}); diff --git a/cypress/tests/integration/CatalogSearch.spec.js b/cypress/tests/integration/CatalogSearch.spec.js deleted file mode 100644 index 9c0716b73cd..00000000000 --- a/cypress/tests/integration/CatalogSearch.spec.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @file cypress/tests/integration/CatalogSearch.spec.js - * - * Copyright (c) 2016-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. - * - * @brief Test for catalog search - */ - -describe('Data suite tests', function() { - it('Searches for something that should exist', function() { - // Search for "bomb" - cy.visit(''); - cy.get('a').contains('Search').click(); - cy.get('input[name="query"]').type('bomb', {delay: 0}); - cy.get('button:contains("Search")').click(); - - // Should be 1 result - cy.get('div[role="status"]').contains('One title was found'); - cy.get('a').contains("Bomb Canada and Other Unkind Remarks in the American Media"); - }); - - it('Searches for something that should not exist', function() { - // Search for "zorg" - cy.visit(''); - cy.get('a').contains('Search').click(); - cy.get('input[name="query"]').type('zorg', {delay: 0}); - cy.get('button:contains("Search")').click(); - - // Should be 0 results - cy.get('div[role="status"]').contains('No titles were found'); - }); -}); diff --git a/cypress/tests/integration/CompetingInterests.cy.js b/cypress/tests/integration/CompetingInterests.cy.js new file mode 100644 index 00000000000..f05956547eb --- /dev/null +++ b/cypress/tests/integration/CompetingInterests.cy.js @@ -0,0 +1,122 @@ +/** + * @file tests/functional/setup/CompetingInterestsTest.php + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @class CompetingInterestsTest + * @ingroup tests_functional_setup + * + * @brief Test for competing interests setup + */ + +describe('Data suite tests', function() { + const fullTitle = 'Lost Tracks: Buffalo National Park, 1909-1939'; + + it('Tests with Competing Interests disabled', function() { + // Send the submission to review + cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); + cy.clickDecision('Send to External Review'); + cy.recordDecisionSendToReview('Send to External Review', ['Jennifer Brower'], []); + cy.isActiveStageTab('External Review'); + cy.assignReviewer('Adela Gallego'); + cy.logout(); + + // Submit review with no competing interests + cy.login('agallego', null, 'publicknowledge'); + cy.get('a:contains("View Lost Tracks")').click({force: true}); + + cy.get('form#reviewStep1Form'); + cy.get('label[for="noCompetingInterests"]').should('not.exist'); + cy.get('input[id="privacyConsent"]').click(); + cy.get('button:contains("Accept Review, Continue to Step #2")').click(); + cy.get('button:contains("Continue to Step #3")').click(); + cy.wait(2000); // Give TinyMCE control time to load + cy.get('textarea[id^="comments-"]').then(node => { + cy.setTinyMceContent(node.attr('id'), 'This paper is suitable for publication.'); + }); + cy.get('button:contains("Submit Review")').click(); + cy.get('button:contains("OK")').click(); + cy.get('h2:contains("Review Submitted")'); + + cy.logout(); + + // Find and view the review + cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); + cy.waitJQuery(); + cy.get('span:contains("Adela Gallego")').parent().parent().find('a:contains("Read Review")').click(); + + // There should not be a visible CI statement. + cy.get('h3:contains("Reviewer Comments")'); + cy.get('h3:contains("Competing Interests")').should('not.exist'); + }); + + it('Tests with Competing Interests enabled', function() { + // Set the CI requirement setting + cy.login('dbarnes', null, 'publicknowledge'); + cy.get('.app__nav a').contains('Workflow').click(); + cy.get('button[id="review-button"]').click(); + cy.get('button[id="reviewerGuidance-button"]').click(); + cy.setTinyMceContent('reviewerGuidance-competingInterests-control-en', 'Reviewer competing interests disclosure'); + cy.get('div[id="reviewerGuidance"] button:contains("Save")').click(); + cy.get('#reviewerGuidance [role="status"]').contains('Saved'); + cy.logout(); + + // Send the submission to review + cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); + cy.assignReviewer('Al Zacharia'); + cy.logout(); + + // Submit review with competing interests + const competingInterests = 'I work for a competing company'; + cy.login('alzacharia', null, 'publicknowledge'); + cy.get('a:contains("View Lost Tracks")').click({force: true}); + + cy.get('input#hasCompetingInterests').click(); + cy.wait(2000); // Give TinyMCE control time to load + cy.get('textarea[id^="reviewerCompetingInterests-"]').then(node => { + cy.setTinyMceContent(node.attr('id'), competingInterests); + }); + cy.get('input[id="privacyConsent"]').click(); + cy.get('button:contains("Accept Review, Continue to Step #2")').click(); + cy.get('button:contains("Continue to Step #3")').click(); + cy.wait(2000); // Give TinyMCE control time to load + cy.get('textarea[id^="comments-"]').then(node => { + cy.setTinyMceContent(node.attr('id'), 'This paper is suitable for publication.'); + }); + cy.get('button:contains("Submit Review")').click(); + cy.get('button:contains("OK")').click(); + cy.get('h2:contains("Review Submitted")'); + cy.logout(); + + // Find and view the review + cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); + cy.waitJQuery(); + cy.get('span:contains("Al Zacharia")').parent().parent().find('a:contains("Read Review")').click(); + + // There should be a visible CI statement. + cy.get('h3:contains("Reviewer Comments")'); + cy.get('p').contains(competingInterests); + cy.get('form[id="readReviewForm"] a.cancelButton').click(); + cy.waitJQuery(); + cy.logout(); + + // Disable the CI requirement again + cy.login('dbarnes', null, 'publicknowledge'); + cy.get('.app__nav a').contains('Workflow').click(); + cy.get('button[id="review-button"]').click(); + cy.get('button[id="reviewerGuidance-button"]').click(); + cy.setTinyMceContent('reviewerGuidance-competingInterests-control-en', ''); + cy.get('div[id="reviewerGuidance"] button:contains("Save")').click(); + cy.get('#reviewerGuidance [role="status"]').contains('Saved'); + cy.logout(); + + // The CI statement entered previously should still be visible. + cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); + cy.waitJQuery(); + cy.get('span:contains("Al Zacharia")').parent().parent().find('a:contains("Read Review")').click(); + cy.get('h3:contains("Reviewer Comments")'); + cy.get('p').contains(competingInterests); + }); +}); diff --git a/cypress/tests/integration/CompetingInterests.spec.js b/cypress/tests/integration/CompetingInterests.spec.js deleted file mode 100644 index 4290fb6e2ff..00000000000 --- a/cypress/tests/integration/CompetingInterests.spec.js +++ /dev/null @@ -1,125 +0,0 @@ -/** - * @file tests/functional/setup/CompetingInterestsTest.php - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * @class CompetingInterestsTest - * @ingroup tests_functional_setup - * - * @brief Test for competing interests setup - */ - -describe('Data suite tests', function() { - const fullTitle = 'Lost Tracks: Buffalo National Park, 1909-1939'; - - it('Tests with Competing Interests disabled', function() { - // Send the submission to review - cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); - cy.sendToReview('External'); - cy.assignReviewer('Adela Gallego'); - cy.logout(); - - // Submit review with no competing interests - cy.login('agallego', null, 'publicknowledge'); - cy.get('a:contains("View Lost Tracks")').click({force: true}); - - cy.get('form#reviewStep1Form'); - cy.get('label[for="noCompetingInterests"]').should('not.exist'); - cy.get('input[id="privacyConsent"]').click(); - cy.get('button:contains("Accept Review, Continue to Step #2")').click(); - cy.get('button:contains("Continue to Step #3")').click(); - cy.wait(2000); // Give TinyMCE control time to load - cy.get('textarea[id^="comments-"]').then(node => { - cy.setTinyMceContent(node.attr('id'), 'This paper is suitable for publication.'); - }); - cy.get('button:contains("Submit Review")').click(); - cy.get('button:contains("OK")').click(); - cy.get('h2:contains("Review Submitted")'); - - cy.logout(); - - // Find and view the review - cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); - cy.waitJQuery(); - cy.get('span:contains("Adela Gallego")').parent().parent().find('a:contains("Read Review")').click(); - - // There should not be a visible CI statement. - cy.get('h3:contains("Reviewer Comments")'); - cy.get('h3:contains("Competing Interests")').should('not.exist'); - }); - - it('Tests with Competing Interests enabled', function() { - // Set the CI requirement setting - cy.login('dbarnes', null, 'publicknowledge'); - cy.get('.app__nav a').contains('Workflow').click(); - cy.get('button[id="review-button"]').click(); - cy.get('button[id="reviewerGuidance-button"]').click(); - cy.wait(2000); // Give TinyMCE control time to load - cy.setTinyMceContent('reviewerGuidance-competingInterests-control-en_US', 'Reviewer competing interests disclosure'); - // FIXME: Weird TinyMCE interaction, apparently affects only automated testing. - // The PUT request won't contain the entered content for this forum unless we click it first. - cy.get('p:contains("Reviewer competing interests disclosure")').click(); - cy.get('div[id="reviewerGuidance"] button:contains("Save")').click(); - cy.get('#reviewerGuidance [role="status"]').contains('Saved'); - cy.logout(); - - // Send the submission to review - cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); - cy.assignReviewer('Al Zacharia'); - cy.logout(); - - // Submit review with competing interests - const competingInterests = 'I work for a competing company'; - cy.login('alzacharia', null, 'publicknowledge'); - cy.get('a:contains("View Lost Tracks")').click({force: true}); - - cy.get('input#hasCompetingInterests').click(); - cy.wait(2000); // Give TinyMCE control time to load - cy.get('textarea[id^="reviewerCompetingInterests-"]').then(node => { - cy.setTinyMceContent(node.attr('id'), competingInterests); - }); - cy.get('input[id="privacyConsent"]').click(); - cy.get('button:contains("Accept Review, Continue to Step #2")').click(); - cy.get('button:contains("Continue to Step #3")').click(); - cy.wait(2000); // Give TinyMCE control time to load - cy.get('textarea[id^="comments-"]').then(node => { - cy.setTinyMceContent(node.attr('id'), 'This paper is suitable for publication.'); - }); - cy.get('button:contains("Submit Review")').click(); - cy.get('button:contains("OK")').click(); - cy.get('h2:contains("Review Submitted")'); - cy.logout(); - - // Find and view the review - cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); - cy.waitJQuery(); - cy.get('span:contains("Al Zacharia")').parent().parent().find('a:contains("Read Review")').click(); - - // There should be a visible CI statement. - cy.get('h3:contains("Reviewer Comments")'); - cy.get('p').contains(competingInterests); - cy.get('form[id="readReviewForm"] a.cancelButton').click(); - cy.waitJQuery(); - cy.logout(); - - // Disable the CI requirement again - cy.login('dbarnes', null, 'publicknowledge'); - cy.get('.app__nav a').contains('Workflow').click(); - cy.get('button[id="review-button"]').click(); - cy.get('button[id="reviewerGuidance-button"]').click(); - cy.wait(2000); // Give TinyMCE control time to load - cy.setTinyMceContent('reviewerGuidance-competingInterests-control-en_US', ''); - cy.get('div[id="reviewerGuidance"] button:contains("Save")').click(); - cy.get('#reviewerGuidance [role="status"]').contains('Saved'); - cy.logout(); - - // The CI statement entered previously should still be visible. - cy.findSubmissionAsEditor('dbarnes', null, 'Brower'); - cy.waitJQuery(); - cy.get('span:contains("Al Zacharia")').parent().parent().find('a:contains("Read Review")').click(); - cy.get('h3:contains("Reviewer Comments")'); - cy.get('p').contains(competingInterests); - }); -}); diff --git a/cypress/tests/integration/Doi.cy.js b/cypress/tests/integration/Doi.cy.js new file mode 100644 index 00000000000..e5d7378dc7f --- /dev/null +++ b/cypress/tests/integration/Doi.cy.js @@ -0,0 +1,105 @@ +/** + * @file cypress/tests/integration/Doi.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('DOI tests', function() { + const submissionId = 14; + const publicationId = 14; + const chapterId = 54; + const publicationFormatId = 3; + const submissionFileId = 113; + const unpublishedSubmissionId = 4; + + const loginAndGoToDoiPage = () => { + cy.login('dbarnes', null, 'publicknowledge'); + goToDoiPage(); + }; + + const goToDoiPage = () => { + cy.get('a:contains("DOIs")').click(); + cy.get('button#submission-doi-management-button').click(); + }; + + const clearFilter = () => { + cy.get('#submission-doi-management button:contains("Clear filter")').each( + ($el, index, $list) => { + cy.wrap($el).click(); + } + ); + }; + + it('Check DOI Configuration', function() { + cy.login('dbarnes', null, 'publicknowledge'); + cy.checkDoiConfig(['publication', 'chapter', 'representation', 'file']); + }); + + it('Check DOI Assignment and Visibility', function() { + cy.log('Check Submission Assignment'); + loginAndGoToDoiPage(); + cy.assignDois(submissionId); + + cy.get(`#list-item-submission-${submissionId} button.expander`).click(); + cy.checkDoiAssignment(`${submissionId}-monograph-${publicationId}`); + cy.checkDoiAssignment(`${submissionId}-chapter-${chapterId}`); + cy.checkDoiAssignment(`${submissionId}-representation-${publicationFormatId}`); + cy.checkDoiAssignment(`${submissionId}-file-${submissionFileId}`); + + cy.log('Check Submission Visibility'); + // Select a monograph + cy.visit(`/index.php/publicknowledge/catalog/book/${submissionId}`); + + // Monograph DOI + cy.get('div.item.doi') + .find('span.value') + .contains('https://doi.org/10.1234/'); + // Chapter DOI + cy.get('div.item.chapters ul') + .find('li:first-child') + .contains('https://doi.org/10.1234/'); + // PublicationFormat DOI + cy.get( + `div.item.publication_format div.sub_item.pubid.${publicationFormatId} div.value` + ) + .find('a') + .contains('https://doi.org/10.1234/'); + // SubmissionFile not visible + }); + + it('Check filters and mark registered', function() { + cy.log('Check Submission Filter Behaviour (pre-deposit)'); + loginAndGoToDoiPage(); + cy.checkDoiFilterResults('Needs DOI', 'Allan — Bomb Canada and Other Unkind Remarks in the American Media', 2); + cy.checkDoiFilterResults('DOI Assigned', 'Dawson et al. — From Bricks to Brains: The Embodied Cognitive Science of LEGO Robots', 1); + clearFilter(); + cy.checkDoiFilterResults('Unregistered', 'Dawson et al. — From Bricks to Brains: The Embodied Cognitive Science of LEGO Robots', 1); + clearFilter(); + + cy.log('Check Submission Marked Registered'); + cy.checkDoiMarkedStatus('Registered', submissionId, true, 'Registered'); + + cy.log('Check Submission Filter Behaviour (post-deposit)'); + cy.checkDoiFilterResults('Submitted', 'No items found.', 0); + cy.checkDoiFilterResults('Registered', 'Dawson et al. — From Bricks to Brains: The Embodied Cognitive Science of LEGO Robots', 1); + }); + + it('Check Marked Status Behaviour', function() { + loginAndGoToDoiPage(); + + cy.log('Check unpublished Submission Marked Registered displays error'); + cy.checkDoiMarkedStatus('Registered', unpublishedSubmissionId, false, 'Unpublished'); + + cy.log('Check Submission Marked Needs Sync'); + cy.checkDoiMarkedStatus('Needs Sync', submissionId, true, 'Needs Sync'); + + cy.log('Check Submission Marked Unregistered'); + cy.checkDoiMarkedStatus('Unregistered', submissionId, true, 'Unregistered'); + + cy.log('Check invalid Submission Marked Needs Sync displays error'); + cy.checkDoiMarkedStatus('Needs Sync', submissionId, false, 'Unregistered'); + }); +}); diff --git a/cypress/tests/integration/Payments.cy.js b/cypress/tests/integration/Payments.cy.js new file mode 100644 index 00000000000..a929631da2f --- /dev/null +++ b/cypress/tests/integration/Payments.cy.js @@ -0,0 +1,57 @@ +/** + * @file cypress/tests/integration/Statistics.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @ingroup tests_integration + * @brief Run Payments tests + */ + +describe('Payments', function() { + it('Enable Payment', function() { + cy.login('dbarnes', null, 'publicknowledge'); + cy.get('.app__nav a:contains("Distribution")').click(); + cy.get('button[id="payments-button"]').click(); + cy.get('input[type="checkbox"][name="paymentsEnabled"]:first').click(); + cy.get('select[id="paymentSettings-currency-control"]').select('US Dollar'); + cy.get('select[name="paymentPluginName"]').select('Manual Fee Payment'); + cy.get('textarea[id="paymentSettings-manualInstructions-control"]').clear().type('You could send a message to us.'); + cy.get('#payments .pkpButton[label="Save"]').click(); + cy.logout(); + }); + + it('Add a direct sales on Submission chapter', function () { + cy.login('dbarnes', null, 'publicknowledge'); + cy.get('.app__nav a:contains("Submissions")').click(); + cy.get('button[id="archive-button"]').click(); + + var submissionElement = cy.get('#archive .listPanel__item').contains('Bomb Canada and Other Unkind Remarks in the American Media').parents('.listPanel__item'); + submissionElement.within(() => { + cy.get('.listPanel__itemActions .pkpButton').click(); + }) + cy.get('button[id="publication-button"]').click(); + cy.get('.pkpButton--isWarnable').contains('Unpublish').click(); + cy.get('.modal__footer > .pkpButton').contains('Unpublish').should('be.visible').click(); + cy.waitJQuery(); + cy.get('#publicationFormats-button').click(); + cy.get('.pkp_linkaction_editApprovedProof').click(); + cy.wait(1000); + cy.get('.pkp_modal #directSales').click().pause(); + cy.get('.pkp_modal input[type="text"][name="price"]').type('9.99'); + cy.get('.pkp_modal .formButtons .submitFormButton').click(); + cy.get('#publication .pkpButton').contains('Publish').click(); + cy.get('.pkp_modal .pkpButton').contains('Publish').click(); + cy.get('.pkpPublication__versionPublished').should('be.visible'); + cy.logout(); + }); + + it('Visit Submission page and check Direct Sales', function () { + cy.login('gfavio'); + cy.visit('index.php/publicknowledge/catalog'); + cy.get('a').contains('Bomb Canada and Other Unkind Remarks in the American Media').click(); + cy.get('a.cmp_download_link').contains('9.99 Purchase PDF (9.99 USD)').should('be.visible').click(); + cy.get('p').contains('You could send a message to us.').should('be.visible'); + }); +}); diff --git a/cypress/tests/integration/Statistics.cy.js b/cypress/tests/integration/Statistics.cy.js new file mode 100644 index 00000000000..3ca1e98b4ec --- /dev/null +++ b/cypress/tests/integration/Statistics.cy.js @@ -0,0 +1,44 @@ +/** + * @file cypress/tests/integration/Statistics.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('Statistics Tests', function() { + it('Generates usage statistics', function() { + var today = new Date().toISOString().split('T')[0]; + var daysAgo90 = (d => new Date(d.setDate(d.getDate()-91)) )(new Date).toISOString().split('T')[0]; + cy.exec('php lib/pkp/tools/generateTestMetrics.php 1 ' + daysAgo90 + ' ' + today).then((result) => { + expect(result.stdout).to.match(/\d+ view and \d+ download records added for \d+ submissions/); + }); + }); + + it('Check statistics', function() { + cy.login('dbarnes', null, 'publicknowledge'); + cy.get('.app__nav a:contains("Monographs")').click(); + cy.checkGraph( + 'Total catalog views by date', + 'Abstract Views', + 'Files', + 'Total file views by date', + 'File Views' + ); + cy.checkTable( + 'Monograph Details', + 'monographs', + ['Allan', 'Dawson et al.'], + 2, + 1 + ); + cy.checkFilters([ + 'Library & Information Studies', + 'Political Economy', + 'History', + 'Education', + 'Psychology', + ]); + }); +}); diff --git a/cypress/tests/integration/Statistics.spec.js b/cypress/tests/integration/Statistics.spec.js deleted file mode 100644 index 4dbf85e7fc3..00000000000 --- a/cypress/tests/integration/Statistics.spec.js +++ /dev/null @@ -1,40 +0,0 @@ -/** - * @file cypress/tests/integration/Statistics.spec.js - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2000-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - */ - -describe('Statistics Tests', function() { - it('Generates usage statistics', function() { - var today = new Date().toISOString().split('T')[0]; - var daysAgo90 = (d => new Date(d.setDate(d.getDate()-91)) )(new Date).toISOString().split('T')[0]; - cy.exec('php lib/pkp/tools/generateTestMetrics.php 1 ' + daysAgo90 + ' ' + today); - }); - - it('Check statistics', function() { - cy.login('dbarnes', null, 'publicknowledge'); - cy.get('.app__nav a:contains("Monographs")').click(); - cy.checkGraph( - 'Total catalog views by date', - 'Abstract Views', - 'Files', - 'Total file views by date', - 'File Views' - ); - cy.checkTable( - 'Monograph Details', - 'monographs', - ['Allan', 'Dawson et al.'] - ); - cy.checkFilters([ - 'Library & Information Studies', - 'Political Economy', - 'History', - 'Education', - 'Psychology', - ]); - }); -}); diff --git a/cypress/tests/integration/Z_MonographViewDCMetadata.cy.js b/cypress/tests/integration/Z_MonographViewDCMetadata.cy.js new file mode 100644 index 00000000000..ec890599cd7 --- /dev/null +++ b/cypress/tests/integration/Z_MonographViewDCMetadata.cy.js @@ -0,0 +1,554 @@ +/** + * @file cypress/tests/integration/Z_MonographViewDCMetadata.cy.js + * + * Copyright (c) 2014-2021 Simon Fraser University + * Copyright (c) 2000-2021 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('Monograph View Metadata - DC Plugin', function() { + let submission; + let uniqueId; + let today; + let dcElements; + + before(function() { + today = new Date(); + const uniqueSeed = Date.now().toString(); + uniqueId = Cypress._.uniqueId(uniqueSeed); + + submission = { + type: 'monograph', + prefix: 'Test prefix', + title: 'Test title', + subtitle: 'Test subtitle', + abstract: 'Test abstract', + authors: [ + 'Name 1 Author 1', + 'Name 2 Author 2' + ], + chapters: [ + { + title: 'Choosing the Future', + contributors: ['Name 1 Author 1'], + files: ['chapter1.pdf'], + }, + { + title: 'Axioms', + contributors: ['Name 1 Author 1'], + files: ['chapter2.pdf'], + }, + { + title: 'Paradigm Shift', + contributors: ['Name 2 Author 2'], + files: ['chapter3.pdf'], + } + ], + files: [ + { + file: 'dummy.pdf', + fileName: 'chapter1.pdf', + mimeType: 'application/pdf', + genre: Cypress.env('defaultGenre') + }, + { + file: 'dummy.pdf', + fileName: 'chapter2.pdf', + mimeType: 'application/pdf', + genre: Cypress.env('defaultGenre') + }, + { + file: 'dummy.pdf', + fileName: 'chapter3.pdf', + mimeType: 'application/pdf', + genre: Cypress.env('defaultGenre') + }, + ], + submitterRole: 'Press manager', + additionalAuthors: [ + { + givenName: {en: 'Name 1'}, + familyName: {en: 'Author 1'}, + country: 'US', + affiliation: {en: 'Stanford University'}, + email: 'nameauthor1Test@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + }, + { + givenName: {en: 'Name 2'}, + familyName: {en: 'Author 2'}, + country: 'US', + affiliation: {en: 'Stanford University'}, + email: 'nameauthor2Test@mailinator.com', + userGroupId: Cypress.env('authorUserGroupId') + } + ], + localeTitles: { + fr_CA: { + title: "Test title FR", + subtitle: "Test subtitle FR", + abstract: "Test abstract FR", + prefix: "Test prefix FR", + } + }, + localeMetadata: [ + { + locale: 'fr_CA', + manyValues: [ + { + metadata: 'keywords', + values: [ + 'Test keyword 1 FR', + 'Test keyword 2 FR' + ], + }, + { + metadata: 'subjects', + values: [ + 'Test subject 1 FR', + 'Test subject 2 FR' + ], + }, + ], + oneValue: [ + { + metadata: 'coverage', + value: 'Test coverage FR' + }, + { + metadata: 'type', + value: 'Test type FR' + }, + ], + }, + { + locale: 'en', + manyValues: [ + { + metadata: 'keywords', + values: [ + 'Test keyword 1', + 'Test keyword 2' + ], + }, + { + metadata: 'subjects', + values: [ + 'Test subject 1', + 'Test subject 2' + ], + }, + ], + oneValue: [ + { + metadata: 'coverage', + value: 'Test coverage' + }, + { + metadata: 'type', + value: 'Test type' + }, + ], + } + ], + source: { + name: 'Public Knowledge Press', + uri: '/index.php/publicknowledge', + doiPrefix: '10.1234', + }, + urlPath: 'testing-dc-metadata-submission-' + uniqueId, + licenceUrl: 'https://creativecommons.org/licenses/by/4.0/', + seriesData: { + title: 'Political Economy', + issn: '0378-5955', + }, + catalogEntrySeriesTitle: [ + 'Political Economy', + ], + seriesPosition : 'Test Series 1', + publicationFormats: [ + { + name: 'PDF', + + } + ] + }; + + dcElements = { + localized: [ + { + element: 'DC.Coverage', + values: [ + { + locale: 'en', + contents: [ + submission.localeMetadata + .find(element => element.locale == 'en') + .oneValue + .find(element => element.metadata == 'coverage') + .value + ] + }, + { + locale: 'fr', + contents: [ + submission.localeMetadata + .find(element => element.locale == 'fr_CA') + .oneValue + .find(element => element.metadata == 'coverage') + .value + ] + }, + ] + }, + { + element: 'DC.Description', + values: [ + { + locale: 'en', + contents: [ + submission.abstract + ] + }, + { + locale: 'fr', + contents: [ + submission.localeTitles.fr_CA.abstract + ] + }, + ] + }, + { + element: 'DC.Title.Alternative', + values: [ + { + locale: 'fr', + contents: [ + submission.localeTitles.fr_CA.prefix + ' ' + submission.localeTitles.fr_CA.title + ': ' + submission.localeTitles.fr_CA.subtitle + ] + }, + + ] + }, + { + element: 'DC.Type', + values: [ + { + locale: 'en', + contents: [ + submission.localeMetadata + .find(element => element.locale == 'en') + .oneValue + .find(element => element.metadata == 'type') + .value + ] + + }, + { + locale: 'fr', + contents: [ + submission.localeMetadata + .find(element => element.locale == 'fr_CA') + .oneValue + .find(element => element.metadata == 'type') + .value + ], + }, + ] + }, + { + element: 'DC.Subject', + values: [ + { + locale: 'en', + contents: submission.localeMetadata + .find(element => element.locale == 'en') + .manyValues + .find(element => element.metadata == 'keywords') + .values + .concat( + submission.localeMetadata + .find(element => element.locale == 'en') + .manyValues + .find(element => element.metadata == 'subjects') + .values + ) + }, + { + locale: 'fr', + contents: submission.localeMetadata + .find(element => element.locale == 'fr_CA') + .manyValues + .find(element => element.metadata == 'keywords') + .values + .concat( + submission.localeMetadata + .find(element => element.locale == 'fr_CA') + .manyValues + .find(element => element.metadata == 'subjects') + .values + ) + }, + ] + }, + ], + nonLocalized: [ + { + element: 'DC.Creator.PersonalName', + values: submission.authors + }, + { + element: 'DC.Identifier', + values: [ + submission.urlPath + ] + }, + { + element: 'DC.Identifier.URI', + values: [ + submission.source.uri + '/catalog/book/' + submission.urlPath + ] + }, + { + element: 'DC.Rights', + values: [ + 'Copyright (c) ' + today.toJSON().slice(0,4) + ' ' + submission.source.name, + submission.licenceUrl + ] + }, + { + element: 'DC.Source', + values: [ + submission.source.name + ] + }, + { + element: 'DC.Source.URI', + values: [ + submission.source.uri + ] + }, + { + element: 'DC.Title', + values: [ + submission.prefix + ' ' + submission.title + ': ' + submission.subtitle + ] + }, + { + element: 'DC.Type', + values: [ + 'Text.Book' + ] + }, + ], + withScheme: [ + { + element: 'DC.Language', + scheme: 'ISO639-1', + content: 'en' + }, + { + element: 'DC.Date.created', + scheme: 'ISO8601', + content: today.toJSON().slice(0, 10) + }, + { + element: 'DC.Date.dateSubmitted', + scheme: 'ISO8601', + content: today.toJSON().slice(0, 10) + }, + { + element: 'DC.Date.modified', + scheme: 'ISO8601', + content: today.toJSON().slice(0, 10) + }, + ], + }; + + // Login as admin + cy.login('admin', 'admin'); + cy.get('a').contains('admin').click(); + cy.get('a').contains('Dashboard').click(); + + // Enable metadata settings + cy.get('.app__nav a').contains('Press').click(); + cy.get('button#sections-button').click(); + cy.get('tr[id^="component-grid-settings-series-seriesgrid-row-"]:contains("Political Economy") > .first_column > .show_extras').click(); + cy.get('tr[id^="component-grid-settings-series-seriesgrid-row-"]:contains("Political Economy") + tr a:contains("Edit")').click(); + cy.wait(500); + cy.get('#seriesForm input[name="printIssn"]').clear(); + cy.get('#seriesForm input[name="printIssn"]').type(submission.seriesData.issn, {delay: 0}); + cy.get('#seriesForm button').contains('Save').click(); + cy.waitJQuery(); + cy.get('div:contains("Your changes have been saved.")'); + + // Enable metadata settings + cy.get('.app__nav a').contains('Workflow').click(); + cy.get('button').contains('Metadata').click(); + cy.get('span').contains('Enable coverage metadata').prev('input[type="checkbox"]').check(); + cy.get('span').contains('Enable type metadata').prev('input[type="checkbox"]').check(); + cy.get('span').contains('Enable keyword metadata').prev('input[type="checkbox"]').check(); + cy.get('span').contains('Enable subject metadata').prev('input[type="checkbox"]').check(); + cy.get('#metadata button').contains('Save').click(); + cy.get('#metadata [role="status"]').contains('Saved'); + cy.waitJQuery(); + + // Enable dois + cy.checkDoiConfig(['publication', 'chapter', 'representation', 'file']); + + // After configuration, go to submissions + cy.get('.app__nav a').contains('Submissions').click(); + + // Create a new submission + cy.getCsrfToken(); + cy.window() + .then(() => { + return cy.createSubmissionWithApi(submission, this.csrfToken); + }) + .then(xhr => { + return cy.submitSubmissionWithApi(submission.id, this.csrfToken); + }) + .then(xhr => { + cy.visit('/index.php/publicknowledge/workflow/index/' + submission.id + '/1'); + }); + + + // Go to publication tabs + cy.get('#publication-button').click(); + + // Open multilanguage inputs and add data to fr_CA inputs + cy.get('div#titleAbstract button').contains('French').click(); + + cy.get('#titleAbstract input[name=prefix-en]').type(submission.prefix, {delay: 0}); + cy.get('#titleAbstract input[name=prefix-en]').click({force: true}); + cy.setTinyMceContent('titleAbstract-subtitle-control-en', submission.subtitle); + + cy.setTinyMceContent('titleAbstract-title-control-fr_CA', submission.localeTitles.fr_CA.title); + cy.get('#titleAbstract input[name=prefix-fr_CA]').type(submission.localeTitles.fr_CA.prefix, {delay: 0}); + cy.setTinyMceContent('titleAbstract-subtitle-control-fr_CA', submission.localeTitles.fr_CA.subtitle); + cy.setTinyMceContent('titleAbstract-abstract-control-fr_CA', submission.localeTitles.fr_CA.abstract); + cy.get('#titleAbstract-title-control-fr_CA').click({force: true}); // Ensure blur event is fired + cy.get('#titleAbstract-subtitle-control-fr_CA').click({force: true}); + cy.get('#titleAbstract button').contains('Save').click(); + cy.get('#titleAbstract [role="status"]').contains('Saved'); + + // Go to metadata + cy.get('#metadata-button').click(); + cy.get('div#metadata button').contains('French').click(); + + // Add the metadata to the submission + submission.localeMetadata.forEach((locale) => { + var localeName = locale.locale; + + locale.manyValues.forEach((manyValueMetadata) => { + manyValueMetadata.values.forEach((value) => { + cy.get('#metadata-' + manyValueMetadata.metadata + '-control-' + localeName).type(value, {delay: 0}); + cy.wait(2000); + cy.get('#metadata-' + manyValueMetadata.metadata + '-control-' + localeName).type('{enter}', {delay: 0}); + cy.wait(500); + cy.get('#metadata-' + manyValueMetadata.metadata + '-selected-' + localeName).contains(value); + cy.wait(1000); + }); + }); + + locale.oneValue.forEach((oneValueMetadata) => { + cy.get('#metadata-' + oneValueMetadata.metadata + '-control-' + localeName).type(oneValueMetadata.value, {delay: 0}); + }); + }); + + cy.get('#metadata button').contains('Save').click(); + cy.get('#metadata [role="status"]').contains('Saved'); + + // Permissions & Disclosure + cy.get('#license-button').click(); + cy.get('#license [name="licenseUrl"]').type(submission.licenceUrl, {delay: 0}); + cy.get('#license button').contains('Save').click(); + cy.get('#license [role="status"]').contains('Saved'); + + // Add a publication format + submission.publicationFormats.forEach((publicationFormat) => { + cy.get('button[id="publicationFormats-button"]').click(); + cy.wait(1500); // Wait for the form to settle + cy.get('div#representations-grid a').contains('Add publication format').click(); + cy.wait(1500); // Wait for the form to settle + cy.get('input[id^="name-en-"]').type(publicationFormat.name, {delay: 0}); + cy.get('div.pkp_modal_panel div.header:contains("Add publication format")').click(); + cy.get('button:contains("OK")').click(); + + // Select proof file + cy.get('table[id*="component-grid-catalogentry-publicationformatgrid"] span:contains("' + publicationFormat.name + '"):parent() a[id*="-name-selectFiles-button-"]').click(); + cy.get('*[id=allStages]').click(); + cy.get('tbody[id^="component-grid-files-proof-manageprooffilesgrid-category-"] input[type="checkbox"][name="selectedFiles[]"]:first').click(); + cy.get('form[id="manageProofFilesForm"] button[id^="submitFormButton-"]').click(); + cy.waitJQuery(); + + // Approvals for PDF publication format + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("' + publicationFormat.name + '") a[id*="-isComplete-approveRepresentation-button-"]').click(); + cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); + cy.waitJQuery(); + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("' + publicationFormat.name + '") a[id*="-isAvailable-availableRepresentation-button-"]').click(); + cy.get('.pkpModalConfirmButton').click(); + cy.waitJQuery(); + + // File completion + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("chapter3.pdf") a[id*="-isComplete-not_approved-button-"]').click(); + cy.get('form[id="assignPublicIdentifierForm"] button[id^="submitFormButton-"]').click(); + cy.waitJQuery(); + + // File availability + cy.get('table[id^="component-grid-catalogentry-publicationformatgrid-"] tr:contains("chapter3.pdf") a[id*="-isAvailable-editApprovedProof-button-"]').click(); + cy.get('input[id="openAccess"]').click(); + cy.get('form#approvedProofForm button.submitFormButton').click(); + }); + + // Catalog Entry + cy.get('#catalogEntry-button').click(); + cy.get('#catalogEntry [name="seriesId"]').select(submission.seriesData.title); + cy.get('#catalogEntry [name="seriesPosition"]').type(submission.seriesPosition, {delay: 0}); + cy.get('#catalogEntry [name="urlPath"]').type(submission.urlPath); + cy.get('#catalogEntry button').contains('Save').click(); + cy.get('#catalogEntry [role="status"]').contains('Saved'); + + // Go to workflow to send the submission to Copyediting stage + cy.get('#workflow-button').click(); + cy.clickDecision('Accept and Skip Review'); + cy.recordDecision('and has been sent to the copyediting stage'); + cy.isActiveStageTab('Copyediting'); + + // Add to catalog - Publish the submission + cy.get('#publication-button').click(); + cy.addToCatalog(); + }); + + it('Tests if Header DC Metadata are present and consistent', function() { + cy.visit('/index.php/publicknowledge/catalog/book/' + submission.urlPath); + + cy.get('meta[name^="DC."]').each((item, index, list) => { + cy.wrap(item) + .should("have.attr", "content") + .and("not.be.empty"); + }); + + dcElements.localized.forEach((item) => { + item.values.forEach((value) => { + value.contents.forEach((content) => { + cy.get('meta[name="' + item.element + '"][content="' + content + '"][xml\\:lang="' + value.locale + '"]') + .should('exist'); + }); + }); + }); + + dcElements.nonLocalized.forEach((item) => { + item.values.forEach((value) => { + cy.get('meta[name="' + item.element + '"][content*="' + value + '"]') + .should('exist'); + }); + }); + + dcElements.withScheme.forEach((item) => { + cy.get('meta[name="' + item.element + '"][content="' + item.content + '"][scheme="' + item.scheme + '"]') + .should('exist'); + }); + }); +}); diff --git a/cypress/tests/integration/plugins/reports/MonographReport.cy.js b/cypress/tests/integration/plugins/reports/MonographReport.cy.js new file mode 100644 index 00000000000..680f7b6d735 --- /dev/null +++ b/cypress/tests/integration/plugins/reports/MonographReport.cy.js @@ -0,0 +1,33 @@ +/** + * @file cypress/tests/integration/plugins/reports/MonographReport.cy.js + * + * Copyright (c) 2014-2022 Simon Fraser University + * Copyright (c) 2000-2022 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + */ + +describe('Monograph report plugin tests', () => { + it('The report is visible and generated properly', () => { + cy.login('admin', 'admin', 'publicknowledge'); + cy.visit('publicknowledge/stats/reports'); + cy.get('a:contains("Monograph Report")').then(link => { + cy.request(link.attr('href')).then(validateReport); + }); + }); + + // Just checks whether some key data is present + function validateReport(reportResponse) { + cy.request(`publicknowledge/api/v1/submissions`).then(submissionResponse => { + const {itemsMax: submissionCount, items: [firstMonograph]} = submissionResponse.body; + const publication = firstMonograph.publications.pop(); + expect(reportResponse.headers['content-type']).to.contain('text/comma-separated-values'); + expect(reportResponse.body.match(/\/publicknowledge\/workflow\/access\/\d+/g).length).to.equal(submissionCount); + expect(reportResponse.body).contains(publication.title.en); + for (const author of publication.chapters.flatMap(chapter => Object.values(chapter.authors))) { + expect(reportResponse.body).contains(author.givenName.en); + expect(reportResponse.body).contains(author.familyName.en); + } + }); + } +}); diff --git a/dbscripts/xml/install.xml b/dbscripts/xml/install.xml index fad89f57fa4..bfa1cf03344 100644 --- a/dbscripts/xml/install.xml +++ b/dbscripts/xml/install.xml @@ -3,44 +3,50 @@ - + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dbscripts/xml/omp_schema.xml b/dbscripts/xml/omp_schema.xml index 0224836b61f..bd62f739da6 100644 --- a/dbscripts/xml/omp_schema.xml +++ b/dbscripts/xml/omp_schema.xml @@ -346,7 +346,7 @@ - + diff --git a/dbscripts/xml/upgrade.xml b/dbscripts/xml/upgrade.xml index 42a6363be22..b4114bb2f0e 100644 --- a/dbscripts/xml/upgrade.xml +++ b/dbscripts/xml/upgrade.xml @@ -3,45 +3,33 @@ - + - - - - - + + + - - - - - - - - - - - + - + - + @@ -49,7 +37,7 @@ - + @@ -78,52 +66,11 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -132,12 +79,12 @@ - + - + @@ -154,19 +101,115 @@ - + - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dbscripts/xml/upgrade/1.1.0.0_preupdate.xml b/dbscripts/xml/upgrade/1.1.0.0_preupdate.xml deleted file mode 100644 index 3a081eca65d..00000000000 --- a/dbscripts/xml/upgrade/1.1.0.0_preupdate.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dbscripts/xml/upgrade/1.1.0.0_update.xml b/dbscripts/xml/upgrade/1.1.0.0_update.xml deleted file mode 100644 index 36cda8e7560..00000000000 --- a/dbscripts/xml/upgrade/1.1.0.0_update.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - UPDATE controlled_vocabs SET assoc_type = '1048585' WHERE assoc_type = '513' - UPDATE notifications SET assoc_type = '1048585' WHERE assoc_type = '513' - UPDATE notes SET assoc_type = '1048585' WHERE assoc_type = '513' - UPDATE email_log SET assoc_type = '1048585' WHERE assoc_type = '513' - UPDATE event_log SET assoc_type = '1048585' WHERE assoc_type = '513' - - - UPDATE controlled_vocabs SET symbolic = 'submissionAgency' WHERE symbolic = 'monographAgency' - UPDATE controlled_vocabs SET symbolic = 'submissionDiscipline' WHERE symbolic = 'monographDiscipline' - UPDATE controlled_vocabs SET symbolic = 'submissionKeyword' WHERE symbolic = 'monographKeyword' - UPDATE controlled_vocabs SET symbolic = 'submissionLanguage' WHERE symbolic = 'monographLanguage' - UPDATE controlled_vocabs SET symbolic = 'submissionSubject' WHERE symbolic = 'monographSubject' - - UPDATE controlled_vocab_entry_settings SET setting_name = 'submissionAgency' WHERE setting_name = 'monographAgency' - UPDATE controlled_vocab_entry_settings SET setting_name = 'submissionDiscipline' WHERE setting_name = 'monographDiscipline' - UPDATE controlled_vocab_entry_settings SET setting_name = 'submissionKeyword' WHERE setting_name = 'monographKeyword' - UPDATE controlled_vocab_entry_settings SET setting_name = 'submissionLanguage' WHERE setting_name = 'monographLanguage' - UPDATE controlled_vocab_entry_settings SET setting_name = 'submissionSubject' WHERE setting_name = 'monographSubject' - - UPDATE user_groups SET role_id = '1048576' WHERE role_id = '131072' - - UPDATE user_groups SET role_id = '16' WHERE role_id = '17' - - - - - UPDATE press_settings SET setting_name = 'pageHeader' WHERE setting_name = 'pressPageHeader' - UPDATE press_settings SET setting_name = 'pageFooter' WHERE setting_name = 'pressPageFooter' - UPDATE press_settings SET setting_name = 'styleSheet' WHERE setting_name = 'pressStyleSheet' - UPDATE press_settings SET setting_name = 'currency' WHERE setting_name = 'pressCurrency' - - - - UPDATE event_log_settings SET setting_name = 'submissionId' WHERE setting_name = 'monographId' - UPDATE event_log SET message='submission.event.submissionSubmitted' WHERE message='submission.event.monographSubmitted' - - - - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$pressName}', '{$contextName}'), subject=REPLACE(subject, '{$pressName}', '{$contextName}') - UPDATE email_templates_data SET body=REPLACE(body, '{$pressName}', '{$contextName}'), subject=REPLACE(subject, '{$pressName}', '{$contextName}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$pressUrl}', '{$contextUrl}'), subject=REPLACE(subject, '{$pressUrl}', '{$contextUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '{$pressUrl}', '{$contextUrl}'), subject=REPLACE(subject, '{$pressUrl}', '{$contextUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$monographTitle}', '{$submissionTitle}'), subject=REPLACE(subject, '{$monographTitle}', '{$submissionTitle}') - UPDATE email_templates_data SET body=REPLACE(body, '{$monographTitle}', '{$submissionTitle}'), subject=REPLACE(subject, '{$monographTitle}', '{$submissionTitle}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$monographId}', '{$submissionId}'), subject=REPLACE(subject, '{$monographId}', '{$submissionId}') - UPDATE email_templates_data SET body=REPLACE(body, '{$monographId}', '{$submissionId}'), subject=REPLACE(subject, '{$monographId}', '{$submissionId}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$monographAbstract}', '{$submissionAbstract}'), subject=REPLACE(subject, '{$monographAbstract}', '{$submissionAbstract}') - UPDATE email_templates_data SET body=REPLACE(body, '{$monographAbstract}', '{$submissionAbstract}'), subject=REPLACE(subject, '{$monographAbstract}', '{$submissionAbstract}') - - - - - DELETE notifications FROM notifications LEFT JOIN review_rounds ON (notifications.assoc_id=review_rounds.review_round_id) WHERE notifications.assoc_type=523 AND review_rounds.review_round_id IS NULL - DELETE FROM notifications n WHERE n.assoc_type=523 AND NOT EXISTS(SELECT 1 FROM review_rounds r WHERE r.review_round_id=n.assoc_id) - DELETE notifications FROM notifications LEFT JOIN signoffs ON (notifications.assoc_id=signoffs.signoff_id) WHERE notifications.assoc_type=1048582 AND signoffs.signoff_id IS NULL - DELETE FROM notifications n WHERE n.assoc_type=1048582 AND NOT EXISTS(SELECT 1 FROM signoffs s WHERE s.signoff_id=n.assoc_id) - - - - - UPDATE press_settings SET setting_name='acronym' WHERE setting_name='initials' - - diff --git a/dbscripts/xml/upgrade/1.1.0.0_update2.xml b/dbscripts/xml/upgrade/1.1.0.0_update2.xml deleted file mode 100644 index fcdee0ef96a..00000000000 --- a/dbscripts/xml/upgrade/1.1.0.0_update2.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - INSERT INTO review_files (file_id, review_id) SELECT DISTINCT rrf.file_id, ra.review_id FROM review_round_files rrf, review_assignments ra WHERE ra.review_round_id = rrf.review_round_id - - diff --git a/dbscripts/xml/upgrade/1.1.1.0_update.xml b/dbscripts/xml/upgrade/1.1.1.0_update.xml deleted file mode 100644 index 75a79ae8e13..00000000000 --- a/dbscripts/xml/upgrade/1.1.1.0_update.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - INSERT INTO press_settings (press_id, setting_name, setting_value, setting_type) SELECT p.press_id, 'displayFeaturedBooks', '1', 'bool' FROM presses p - INSERT INTO press_settings (press_id, setting_name, setting_value, setting_type) SELECT p.press_id, 'displayInSpotlight', '1', 'bool' FROM presses p - - diff --git a/dbscripts/xml/upgrade/1.2.0.0_postupdate.xml b/dbscripts/xml/upgrade/1.2.0.0_postupdate.xml deleted file mode 100644 index df2e0800cd5..00000000000 --- a/dbscripts/xml/upgrade/1.2.0.0_postupdate.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - DELETE FROM notifications WHERE assoc_type=1048582 - DROP TABLE signoffs - DELETE FROM notifications WHERE type = 16777226 - DELETE FROM notifications WHERE type = 16777228 - - diff --git a/dbscripts/xml/upgrade/1.2.0.0_preupdate.xml b/dbscripts/xml/upgrade/1.2.0.0_preupdate.xml deleted file mode 100644 index 3cf7ac4d5e7..00000000000 --- a/dbscripts/xml/upgrade/1.2.0.0_preupdate.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - diff --git a/dbscripts/xml/upgrade/1.2.0.0_update.xml b/dbscripts/xml/upgrade/1.2.0.0_update.xml deleted file mode 100644 index 0b24934b946..00000000000 --- a/dbscripts/xml/upgrade/1.2.0.0_update.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - DELETE ugs FROM user_group_stage ugs JOIN user_groups ug WHERE ug.role_id=1048576 AND ug.user_group_id=ugs.user_group_id - DELETE FROM user_group_stage ugs USING user_groups ug WHERE ug.role_id=1048576 AND ug.user_group_id=ugs.user_group_id - - - - - - INSERT INTO plugin_settings (plugin_name, context_id, setting_name, setting_value, setting_type) SELECT DISTINCT ps.plugin_name, ps.context_id, 'browseNewReleases', '1', 'bool' FROM plugin_settings ps WHERE ps.plugin_name = 'browseblockplugin' - INSERT INTO plugin_settings (plugin_name, context_id, setting_name, setting_value, setting_type) SELECT DISTINCT ps.plugin_name, ps.context_id, 'browseCategories', '1', 'bool' FROM plugin_settings ps WHERE ps.plugin_name = 'browseblockplugin' - INSERT INTO plugin_settings (plugin_name, context_id, setting_name, setting_value, setting_type) SELECT DISTINCT ps.plugin_name, ps.context_id, 'browseSeries', '1', 'bool' FROM plugin_settings ps WHERE ps.plugin_name = 'browseblockplugin' - - - - - - INSERT INTO press_settings (press_id, setting_name, setting_value, setting_type) SELECT p.press_id, 'coverThumbnailsMaxWidth', '106', 'int' FROM presses p - INSERT INTO press_settings (press_id, setting_name, setting_value, setting_type) SELECT p.press_id, 'coverThumbnailsMaxHeight', '100', 'int' FROM presses p - - - - - - lib.pkp.classes.task.ReviewReminder - -
- - - - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$submissionCopyeditingUrl}', '{$submissionUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '{$submissionCopyeditingUrl}', '{$submissionUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$layoutEditorName}', '{$participantName}') - UPDATE email_templates_data SET body=REPLACE(body, '{$layoutEditorName}', '{$participantName}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$layoutEditorUsername}', '{$participantUsername}') - UPDATE email_templates_data SET body=REPLACE(body, '{$layoutEditorUsername}', '{$participantUsername}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$copyeditorName}', '{$participantName}') - UPDATE email_templates_data SET body=REPLACE(body, '{$copyeditorName}', '{$participantName}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$copyeditorUsername}', '{$participantUsername}') - UPDATE email_templates_data SET body=REPLACE(body, '{$copyeditorUsername}', '{$participantUsername}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$indexerName}', '{$participantName}') - UPDATE email_templates_data SET body=REPLACE(body, '{$indexerName}', '{$participantName}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$indexerUsername}', '{$participantUsername}') - UPDATE email_templates_data SET body=REPLACE(body, '{$indexerUsername}', '{$participantUsername}') - - - - - UPDATE email_templates_default_data SET body=REPLACE(body, '{$editorialContactName}', 'Editors') WHERE locale = 'en_US' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_data SET body=REPLACE(body, '{$editorialContactName}', 'Editors') WHERE locale = 'en_US' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_default_data SET body=REPLACE(body, '{$editorialContactName}', 'Herausgeber/innen') WHERE locale = 'de_DE' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_data SET body=REPLACE(body, '{$editorialContactName}', 'Herausgeber/innen') WHERE locale = 'de_DE' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_default_data SET body=REPLACE(body, '{$editorialContactName}', 'Επιμελητές') WHERE locale = 'el_GR' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_data SET body=REPLACE(body, '{$editorialContactName}', 'Επιμελητές') WHERE locale = 'el_GR' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_default_data SET body=REPLACE(body, '{$editorialContactName}', 'Editores') WHERE locale = 'es_ES' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_data SET body=REPLACE(body, '{$editorialContactName}', 'Editores') WHERE locale = 'es_ES' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_default_data SET body=REPLACE(body, '{$editorialContactName}', 'Éditeurs') WHERE locale = 'fr_CA' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_data SET body=REPLACE(body, '{$editorialContactName}', 'Éditeurs') WHERE locale = 'fr_CA' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_default_data SET body=REPLACE(body, '{$editorialContactName}', 'Editores') WHERE locale = 'pt_BR' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - UPDATE email_templates_data SET body=REPLACE(body, '{$editorialContactName}', 'Editores') WHERE locale = 'pt_BR' AND email_key IN ('REVIEW_CONFIRM', 'REVIEW_DECLINE') - -
diff --git a/dbscripts/xml/upgrade/3.1.0_preupdate.xml b/dbscripts/xml/upgrade/3.1.0_preupdate.xml deleted file mode 100644 index 97fc8cc7891..00000000000 --- a/dbscripts/xml/upgrade/3.1.0_preupdate.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - UPDATE email_templates_default SET from_role_id=17 WHERE from_role_id=513 - UPDATE email_templates_default SET to_role_id=17 WHERE to_role_id=513 - UPDATE user_groups SET role_id=17 WHERE role_id=513 - UPDATE submission_comments SET role_id=17 WHERE role_id=513 - - diff --git a/dbscripts/xml/upgrade/3.1.0_preupdate_commentsToEditor.xml b/dbscripts/xml/upgrade/3.1.0_preupdate_commentsToEditor.xml deleted file mode 100644 index f6f57c775ad..00000000000 --- a/dbscripts/xml/upgrade/3.1.0_preupdate_commentsToEditor.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - CREATE TABLE submissions_tmp AS (SELECT submission_id, context_id, comments_to_ed, date_submitted FROM submissions) - - - diff --git a/dbscripts/xml/upgrade/3.1.0_update.xml b/dbscripts/xml/upgrade/3.1.0_update.xml deleted file mode 100644 index 3fca362700a..00000000000 --- a/dbscripts/xml/upgrade/3.1.0_update.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - UPDATE email_templates_default_data SET body=REPLACE(body, '<a href="{$activateUrl}">{$activateUrl}</a>', '{$activateUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '<a href="{$activateUrl}">{$activateUrl}</a>', '{$activateUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '<a href="{$contextUrl}">{$contextUrl}</a>', '{$contextUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '<a href="{$contextUrl}">{$contextUrl}</a>', '{$contextUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '<a href="{$submissionUrl}">{$submissionUrl}</a>', '{$submissionUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '<a href="{$submissionUrl}">{$submissionUrl}</a>', '{$submissionUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '<a href="{$submissionReviewUrl}">{$submissionReviewUrl}</a>', '{$submissionReviewUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '<a href="{$submissionReviewUrl}">{$submissionReviewUrl}</a>', '{$submissionReviewUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '<a href="{$passwordResetUrl}">{$passwordResetUrl}</a>', '{$passwordResetUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '<a href="{$passwordResetUrl}">{$passwordResetUrl}</a>', '{$passwordResetUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '<a href="{$monographUrl}">{$monographUrl}</a>', '{$monographUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '<a href="{$monographUrl}">{$monographUrl}</a>', '{$monographUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '<a href="{$monographDetailsUrl}">{$monographDetailsUrl}</a>', '{$monographDetailsUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '<a href="{$monographDetailsUrl}">{$monographDetailsUrl}</a>', '{$monographDetailsUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '<a href="{$submissionCopyeditingUrl}">{$submissionCopyeditingUrl}</a>', '{$submissionCopyeditingUrl}') - UPDATE email_templates_data SET body=REPLACE(body, '<a href="{$submissionCopyeditingUrl}">{$submissionCopyeditingUrl}</a>', '{$submissionCopyeditingUrl}') - - UPDATE email_templates_default_data SET body=REPLACE(body, '<a href="{$url}">{$url}</a>', '{$url}') - UPDATE email_templates_data SET body=REPLACE(body, '<a href="{$url}">{$url}</a>', '{$url}') - - diff --git a/dbscripts/xml/version.xml b/dbscripts/xml/version.xml index dfe94c64886..96ce4b101e2 100644 --- a/dbscripts/xml/version.xml +++ b/dbscripts/xml/version.xml @@ -3,8 +3,8 @@ - - - Tilknyttede forlag - Forlagsomdirigering - Forespørgsler til hovedsiden vil blive omdirigeret til dette forlag. Dette kan være nyttigt, hvis webstedet kun er vært for et enkelt forlag. - Omdiriger ikke - Dette vil være standardsproget for webstedet og ethvert tilknyttet forlag. - Vælg alle sprog, der skal understøttes på webstedet. De valgte sprog vil være tilgængelige til brug for alle forlag, der er vært på webstedet, ligesom de vises i en sprogvalgs-menu, der vil fremtræde på hver webside (som kan fravælges på forlags-specifikke sider). Hvis der ikke er valgt flere lokaliteter, vises sprogvalgs-menuen ikke, og udvidede sprogindstillinger er ikke tilgængelige for forlagene. - * Markerede sprog kan være ufuldstændige. - Er du sikker på, at du vil afinstallere dette sprog? Dette kan påvirke alle de tilknyttede forlag, der i øjeblikket bruger sproget. - Vælg yderligere de sprog, der skal installeres support til i dette system. Sprog skal installeres, før de kan bruges af tilknyttede forlag. Se OMP-dokumentationen for information om tilføjelse af support til nye sprog. - Ingen sprog er tilgængelige til download. - Download af sprog mislykkedes. Fejlmeddelelsen nedenfor beskriver fejlen. - Overførsel af sprogpakker fra webserveren til Public Knowledge Project er ikke tilgængelig i øjeblikket fordi:

-
    -
  • Din server har, eller tillader ikke eksekvering af, GNU "tar"-værktøjet
  • -
  • OMP er ikke i stand til at ændre sprog- registerfilen, typisk "registry/locales.xml".
  • -
-

Sprogpakker kan downloades manuelt fra PKP web site.

-]]>
- Er du sikker på, at du vil deaktivere dette sprog? Dette kan påvirke alle de tilknyttede forlag, der i øjeblikket bruger sproget. - OMP-version - OMP-konfiguration - Forlagsindstillinger - Der er ikke oprettet nogen forlag. - Opret forlag - Du registreres automatisk som manager af dette forlag. Når du har oprettet et nyt forlag, vil du blive omdirigeret til dets indstillingsguide for at afslutte den første opsætningen af forlaget. - Forlaget URL vil være {$sampleUrl} - Der kræves en titel. - Der kræves en sti. - Stien må kun indeholde alfanumeriske tegn, understregninger og bindestreger og skal begynde og slutte med et alfanumerisk tegn. - Den valgte sti bruges allerede af et andet forlag. - Offentliggør dette forlag på webstedet - Beskrivelse af forlag - Tilføj forlag - Bemærk! -

Systemet kunne ikke automatisk overskrive konfigurationsfilen. For at anvende dine konfigurationsændringer skal du åbne config.inc.php i en egnet teksteditor og erstatte dens indhold med indholdet i tekstfeltet nedenfor.

-]]>
-
diff --git a/locale/da_DK/api.po b/locale/da_DK/api.po deleted file mode 100644 index 06a99e43d05..00000000000 --- a/locale/da_DK/api.po +++ /dev/null @@ -1,43 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-21 11:20+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "api.submissions.403.contextRequired" -msgstr "" -"For at oprette eller redigere en indsendelse skal du anmode om forlagets API-" -"endpoint." - -msgid "api.submissions.403.cantChangeContext" -msgstr "Du kan ikke skifte en indsendelses forlag." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "Den publikation, du anmodede om, er ikke en del af denne indsendelse." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "Den publikation, du anmodede om, er ikke at finde hos dette forlag." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "" -"Du har ikke tilladelse til at flytte denne e-mail skabelon til et andet " -"forlag." - -msgid "api.submissions.400.submissionsNotFound" -msgstr "En eller flere af de indsendelser, du angav, blev ikke fundet." - -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Du skal angive et eller flere indsendelses-id'er, der skal føjes til " -"kataloget." - -msgid "api.emails.403.disabled" -msgstr "" -"E-mail-notifikationen er ikke blevet aktiveret i forbindelse med dette " -"forlag." diff --git a/locale/da_DK/author.po b/locale/da_DK/author.po deleted file mode 100644 index cf440a44433..00000000000 --- a/locale/da_DK/author.po +++ /dev/null @@ -1,15 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-11-28T15:10:04-08:00\n" -"PO-Revision-Date: 2019-11-28T15:10:04-08:00\n" -"Language: \n" - -msgid "author.submit.notAccepting" -msgstr "Dette forlag accepterer ikke indsendelser på dette tidspunkt." diff --git a/locale/da_DK/author.xml b/locale/da_DK/author.xml deleted file mode 100644 index 6d562f3429d..00000000000 --- a/locale/da_DK/author.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - Dette forlag accepterer ikke indsendelser på dette tidspunkt. - diff --git a/locale/da_DK/default.po b/locale/da_DK/default.po deleted file mode 100644 index 4c582e3075e..00000000000 --- a/locale/da_DK/default.po +++ /dev/null @@ -1,239 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28T15:10:04-08:00\n" -"PO-Revision-Date: 2020-02-09 18:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish " -"\n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.genres.appendix" -msgstr "Appendiks" - -msgid "default.genres.bibliography" -msgstr "Bibliografi" - -msgid "default.genres.manuscript" -msgstr "Bogmanuskript" - -msgid "default.genres.chapter" -msgstr "Kapitelmanuskript" - -msgid "default.genres.glossary" -msgstr "Ordliste" - -msgid "default.genres.index" -msgstr "Indeks" - -msgid "default.genres.preface" -msgstr "Forord" - -msgid "default.genres.prospectus" -msgstr "Prospekt" - -msgid "default.genres.table" -msgstr "Skema" - -msgid "default.genres.figure" -msgstr "Figur" - -msgid "default.genres.photo" -msgstr "Foto" - -msgid "default.genres.illustration" -msgstr "Illustration" - -msgid "default.genres.other" -msgstr "Andet" - -msgid "default.groups.name.manager" -msgstr "Forlagschef" - -msgid "default.groups.plural.manager" -msgstr "Forlagschefer" - -msgid "default.groups.abbrev.manager" -msgstr "PM" - -msgid "default.groups.name.editor" -msgstr "Forlagsredaktør" - -msgid "default.groups.plural.editor" -msgstr "Forlagsredaktører" - -msgid "default.groups.abbrev.editor" -msgstr "PE" - -msgid "default.groups.name.seriesEditor" -msgstr "Serieredaktør" - -msgid "default.groups.plural.seriesEditor" -msgstr "Serieredaktører" - -msgid "default.groups.abbrev.seriesEditor" -msgstr "ÅR" - -msgid "default.groups.name.chapterAuthor" -msgstr "Kapitelforfatter" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Kapitelforfattere" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "CA" - -msgid "default.groups.name.volumeEditor" -msgstr "Bindredaktør" - -msgid "default.groups.plural.volumeEditor" -msgstr "Bindredaktører" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "VE" - -msgid "default.pressSettings.checklist.notPreviouslyPublished" -msgstr "Indsendelsen er ikke tidligere blevet offentliggjort, og det er heller ikke sendt til bedømmelse hos et andet forlag (eller der er givet en forklaring i kommentarfeltet til redaktøren)." - -msgid "default.pressSettings.checklist.fileFormat" -msgstr "Indsendelsesfilen er i et Microsoft Word-, RTF- eller OpenDocument-filformat. " - -msgid "default.pressSettings.checklist.addressesLinked" -msgstr "Der er angivet URL-adresser til referencerne, hvor de er tilgængelige. " - -msgid "default.pressSettings.checklist.submissionAppearance" -msgstr "Teksten er skrevet med enkelt linjeafstand, benytter en 12-punktsskrifttype og anvender kursiv i stedet for understregning (med undtagelse af URL-adresser), og alle illustrationer, figurer og tabeller er placeret i teksten på passende steder i stedet for til sidst." - -msgid "default.pressSettings.checklist.bibliographicRequirements" -msgstr "Teksten opfylder de stilistiske og bibliografiske krav, der er beskrevet under Retningslinjer for forfattere, som findes under Om forlaget." - -msgid "default.pressSettings.privacyStatement" -msgstr "

Navne og e-mail-adresser, der er indtastet på dette websted, vil udelukkende blive brugt i overensstemmelse med de angivne formål og vil ikke blive gjort tilgængelige for andre formål eller for nogen anden part.

" - -msgid "default.pressSettings.openAccessPolicy" -msgstr "Dette forlag giver øjeblikkelig åben adgang til dets indhold ud fra princippet om, at frigivelse af forskning til rådighed for offentligheden understøtter en større global videnudveksling." - -msgid "default.pressSettings.emailSignature" -msgstr "" -"
\n" -"________________________________________________________________________
\n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.pressSettings.forReaders" -msgstr "Vi opfordrer læsere til at tilmelde sig nyhedstjenesten vedrørende publiceringer for dette forlag. Brug linket Registrer øverst på forlagets hjemmeside. Denne registrering medfører, at læseren via e-mail modtager indholdsfortegnelsen for alle nye bøger fra forlaget. Denne liste giver også forlaget mulighed for at hævde at have et vist supportniveau eller et vist antal læsere. Se forlagets Erklæring om beskyttelse af personlige oplysninger, der garanterer læserne, at deres navne og e-mail-adresser ikke benyttes til andre formål." - -msgid "default.pressSettings.forAuthors" -msgstr "Er du interesseret i at fremsende et manuskript til dette forlag? Vi anbefaler, at du gennemgår siden Om forlaget, hvor du kan finde forlagets sektionspolitikker, samt Retningslinjer for forfattere. Forfattere skal tilmelde sig forlaget via linket Registrer>, inden de kan fremsende et manuskript. Hvis de allerede er tilmeldt, kan de blot logge på og påbegynde processen, der består af 5 trin." - -msgid "default.pressSettings.forLibrarians" -msgstr "Vi opfordrer forskningsbibliotekarer til at anføre dette forlag på listen over deres biblioteks beholdning af elektroniske forlag. Det skal desuden bemærkes, at dette forlags open source-publiceringssystem er velegnet til biblioteker, som ønsker være værter for deres fakultetsmedlemmer, som kan bruge det til de forlag, hvor de er involveret i redigeringsarbejde (se Open Monograph Press)." - -msgid "default.pressSettings.manager.setup.category" -msgstr "Kategori" - -msgid "default.pressSettings.manager.series.book" -msgstr "Bogserie" - -msgid "default.groups.name.externalReviewer" -msgstr "Ekstern bedømmer" - -msgid "default.groups.plural.externalReviewer" -msgstr "Eksterne bedømmere" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "ER" - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Vi opfordrer forskningsbibliotekarer til at katalogisere dette forlag på " -"listen over deres biblioteks beholdning af elektroniske forlag. Dette " -"forlags open source-publiceringssystem er også velegnet for biblioteker, som " -"kan være værter for deres fakultetsmedlemmer der så kan bruge det til de " -"forlag, de er med til at redigere (se Open " -"Monograph Press)." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"Er du interesseret i at fremsende et manuskript til dette forlag? Vi " -"anbefaler, at du gennemgår siden " -"Om forlaget, hvor du kan finde forlagets sektionspolitikker, samt " -"Retningslinjer for forfattere. Forfattere skal tilmelde sig forlaget, inden " -"de kan fremsende et manuskript. Hvis de allerede er tilmeldt, kan de blot logge på og påbegynde processen, der " -"består af 5 trin." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Vi opfordrer læsere til at tilmelde sig nyhedstjenesten vedrørende " -"publiceringer fra dette forlag. Brug linket Registrer øverst på forlagets " -"hjemmeside. Denne registrering medfører, at læseren via e-mail modtager " -"indholdsfortegnelsen fra hver ny monografi. Denne liste giver også forlaget " -"mulighed for at hævde at have et vist supportniveau eller et vist antal " -"læsere. Se forlagetsErklæring om beskyttelse af personlige oplysninger, " -"der garanterer læserne, at deres navne og e-mail-adresser ikke benyttes til " -"andre formål." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
\n" -"________________________________________________________________________
" -"\n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Dette forlag giver øjeblikkelig open access til dets indhold ud fra " -"princippet om, at stille forskningen frit tilgængelig for offentligheden for " -"at understøtte en større global vidensudveksling." - -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

Navne og e-mail-adresser, der er sat ind på dette forlags-websted, vil " -"udelukkende blive brugt til de af forlaget angivne formål og vil ikke blive " -"gjort tilgængelige i forbindelse med noget andet formål eller over for nogen " -"anden part.

" - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "" -"Teksten overholder de stilistiske og bibliografiske krav, der er anført i Forfattervejledninger, som findes under 'Om forlaget'." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"Teksten er skrevet uden ekstra linjemellemrum; bruger en 12-punkts " -"skrifttype; anvender kursiv i stedet for at understrege (bortset fra URL-" -"adresser); og alle illustrationer, figurer og tabeller er placeret i teksten " -"på de relevante steder i stedet for ved afslutningen." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Hvor det er tilgængeligt, er der angivet webadresser til referencerne." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "" -"Indsendelsesfilen er i filformatet Microsoft Word, RTF eller OpenDocument." - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"Indsendelsen er ikke tidligere blevet offentliggjort, og den er heller ikke " -"sendt til vurdering hos et andet forlag (eller der er givet en forklaring i " -"kommentarfeltet til redaktøren)." - -msgid "default.groups.abbrev.sectionEditor" -msgstr "AcqE" - -msgid "default.groups.plural.sectionEditor" -msgstr "Serieredaktører" - -msgid "default.groups.name.sectionEditor" -msgstr "Serieredaktør" diff --git a/locale/da_DK/default.xml b/locale/da_DK/default.xml deleted file mode 100644 index 9a221c6143c..00000000000 --- a/locale/da_DK/default.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - Appendiks - Bibliografi - Bogmanuskript - Kapitelmanuskript - Ordliste - Indeks - Forord - Prospekt - Skema - Figur - Foto - Illustration - Andet - Forlagschef - Forlagschefer - FC - Forlagsredaktør - Forlagsredaktører - FR - Serieredaktør - Serieredaktører - ÅR - Kapitelforfatter - Kapitelforfattere - KP - Bindredaktør - Bindredaktører - ÅRed - Indsendelsen er ikke tidligere blevet offentliggjort, og det er heller ikke sendt til bedømmelse hos et andet forlag (eller der er givet en forklaring i kommentarfeltet til redaktøren). - Indsendelsesfilen er i et Microsoft Word-, RTF- eller OpenDocument-filformat. - Der er angivet URL-adresser til referencerne, hvor de er tilgængelige. - Teksten er skrevet med enkelt linjeafstand, benytter en 12-punktsskrifttype og anvender kursiv i stedet for understregning (med undtagelse af URL-adresser), og alle illustrationer, figurer og tabeller er placeret i teksten på passende steder i stedet for til sidst. - Retningslinjer for forfattere, som findes under Om forlaget.]]> - Navne og e-mail-adresser, der er indtastet på dette websted, vil udelukkende blive brugt i overensstemmelse med de angivne formål og vil ikke blive gjort tilgængelige for andre formål eller for nogen anden part.

]]>
- Dette forlag giver øjeblikkelig åben adgang til dets indhold ud fra princippet om, at frigivelse af forskning til rådighed for offentligheden understøtter en større global videnudveksling. - -________________________________________________________________________
-{$ldelim}$contextName{$rdelim}]]>
- Registrer øverst på forlagets hjemmeside. Denne registrering medfører, at læseren via e-mail modtager indholdsfortegnelsen for alle nye bøger fra forlaget. Denne liste giver også forlaget mulighed for at hævde at have et vist supportniveau eller et vist antal læsere. Se forlagets Erklæring om beskyttelse af personlige oplysninger, der garanterer læserne, at deres navne og e-mail-adresser ikke benyttes til andre formål.]]> - Om forlaget, hvor du kan finde forlagets sektionspolitikker, samt Retningslinjer for forfattere. Forfattere skal tilmelde sig forlaget via linket Registrer>, inden de kan fremsende et manuskript. Hvis de allerede er tilmeldt, kan de blot logge på og påbegynde processen, der består af 5 trin.]]> - Open Monograph Press).]]> - Kategori - Bogserie - Ekstern bedømmer - Eksterne bedømmere - EB -
diff --git a/locale/da_DK/editor.po b/locale/da_DK/editor.po deleted file mode 100644 index 722239023c5..00000000000 --- a/locale/da_DK/editor.po +++ /dev/null @@ -1,176 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28T15:10:04-08:00\n" -"PO-Revision-Date: 2020-11-27 19:05+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.submissionArchive" -msgstr "Indsendelsesarkiv" - -msgid "editor.monograph.cancelReview" -msgstr "Annullér anmodning" - -msgid "editor.monograph.clearReview" -msgstr "Fjern bedømmer" - -msgid "editor.monograph.enterRecommendation" -msgstr "Indtast anbefaling" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Angiv anmelderens anbefaling" - -msgid "editor.monograph.recommendation" -msgstr "Anbefaling" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "Vælg en bedømmer ovenfor, og tryk dernæst på knappen 'Vælg bedømmer' for at fortsætte." - -msgid "editor.monograph.replaceReviewer" -msgstr "Udskift bedømmer" - -msgid "editor.monograph.editorToEnter" -msgstr "Redaktør indsætter anbefaling/kommentarer til bedømmer" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Upload bedømmelse" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Valgmuligheder for fagfællebedømmelse" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Korrekturlæsningsfiler" - -msgid "editor.monograph.internalReview" -msgstr "Påbegynd intern revision" - -msgid "editor.monograph.internalReviewDescription" -msgstr "Vælg filer nedenfor for at sende dem til det interne bedømmelsestrin." - -msgid "editor.monograph.externalReview" -msgstr "Påbegynd ekstern bedømmelse" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Vælg endelige kladdefiler" - -msgid "editor.monograph.final.currentFiles" -msgstr "Nyeste kladdefil" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Nyeste filer" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Besked til bruger" - -msgid "editor.monograph.legend.submissionActions" -msgstr "Indsendelseshandlinger" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Overordnede indsendelseshandlinger og muligheder." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Sektionshandlinger" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "Valgmuligheder, der er specifikke for et given sektion, for eksempel upload af filer eller tilføjelse af brugere." - -msgid "editor.monograph.legend.itemActions" -msgstr "Enhedshandlinger" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Handlinger og indstillinger, der er specifikke for en enkelt fil." - -msgid "editor.monograph.legend.catalogEntry" -msgstr "" -"Se og administrér indsendelsens katalogindgang, herunder metadata og " -"publiceringsformater" - -msgid "editor.monograph.legend.bookInfo" -msgstr "" -"Se og administrér indsendelsesmetadata, noter, notifikationer og historik" - -msgid "editor.monograph.legend.participants" -msgstr "" -"Se og administrér deltagerne hørende til denne indsendelse: forfattere, " -"redaktører, designere m.fl." - -msgid "editor.monograph.legend.add" -msgstr "Upload en fil til sektionen" - -msgid "editor.monograph.legend.add_user" -msgstr "Føj en bruger til sektionen" - -msgid "editor.monograph.legend.settings" -msgstr "Se og få adgang til enhedsindstillinger, f.eks. information og sletningsmuligheder" - -msgid "editor.monograph.legend.more_info" -msgstr "Flere oplysninger: filnotater, notifikationsindstillinger og historik" - -msgid "editor.monograph.legend.notes_none" -msgstr "Filoplysninger: noter, notifikationsindstillinger og historik (Der er ikke tilføjet nogen noter endnu)" - -msgid "editor.monograph.legend.notes" -msgstr "Filoplysninger: noter, notifikationsindstillinger og historik (Noter er tilgængelige)" - -msgid "editor.monograph.legend.notes_new" -msgstr "Filoplysninger: noter, notifikationsindstillinger og historik (Nye noter tilføjet siden sidste besøg)" - -msgid "editor.monograph.legend.edit" -msgstr "Redigér enhed" - -msgid "editor.monograph.legend.delete" -msgstr "Slet enhed" - -msgid "editor.monograph.legend.in_progress" -msgstr "Handlingen er i gang eller endnu ikke afsluttet" - -msgid "editor.monograph.legend.complete" -msgstr "Handlingen afsluttet" - -msgid "editor.monograph.legend.uploaded" -msgstr "Fil uploadet af rollen nævnt i tabeloversigtens titelfelt" - -msgid "editor.submission.introduction" -msgstr "Under Indsendelse vælger redaktøren, efter gennemsyn af de indsendte filer, den passende handling (som inkluderer besked til forfatteren): Send til intern bedømmelse (indebærer valg af filer til intern bedømmelse); Send til ekstern gennemgang (indebærer valg af filer til ekstern gennemgang); Accepter indsendelse (indebærer valg af filer til det redaktionelle trin); eller Afvis indsendelse (arkivlagring)." - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Renskrift" - -msgid "editor.monograph.proofs" -msgstr "Korrektur" - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Godkendelse og udgivelse" - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "Forskellige publikationsformater, såsom hardcover, paperback og digital, kan uploades i sektionen med publikationsformater nedenfor. Du kan bruge opsætningen til publikationsformater nedenfor som en tjekliste for, hvad der stadig skal gøres for at offentliggøre et publikationsformat." - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "Tilføj publikationsformater (f.eks. digital, paperback), så layoutredaktøren kan opsætte sider til korrekturlæsning. Korrekturer skal kontrolleres som værende godkendt, og Katalog-indtastningen for formatet skal kontrolleres som anført i bogens katalogpost, før et format kan gøres Tilgængelig (dvs. publiceret)." - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Angiv betingelser i forbindelse med download" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Angiv betingelser" - -msgid "editor.monograph.proof.addNote" -msgstr "Tilføj svar" - -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "Alle de filer, der er uploadet til et af indsendelsestrinnene, kan føjes til listen over korrekturfiler ved at blive markeret i afkrydsningsfeltet nedenfor og ved at klikke på Søg: alle tilgængelige filer vises på listen og kan vælges til inkludering." - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "Den offentlige identifikator (the public identifier) '{$publicIdentifier}' findes allerede i forbindelse med et andet objekt af samme type. Vælg unikke identifikatorer for objekter af samme type under dette forlag." - -msgid "editor.submissions.assignedTo" -msgstr "Tildelt redaktør" diff --git a/locale/da_DK/editor.xml b/locale/da_DK/editor.xml deleted file mode 100644 index 09e3de4dcc3..00000000000 --- a/locale/da_DK/editor.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - Indsendelsesarkiv - Annuller anmodning - Fjern bedømmer - Indtast anbefaling - Angiv anmelderens anbefaling - Anbefaling - Vælg en bedømmer ovenfor, og tryk dernæst på knappen 'Vælg bedømmer' for at fortsætte. - Udskift bedømmer - Redaktør indsætter anbefaling/kommentarer til bedømmer - Upload bedømmelse - Valgmuligheder for peer review - Korrekturlæsningsfiler - Påbegynd intern revision - Vælg filer nedenfor for at sende dem til det interne bedømmelsestrin. - Påbegynd ekstern bedømmelse - Vælg endelige kladdefiler - Nyeste kladdefil - Nyeste filer - Besked til bruger - Indsendelseshandlinger - Overordnede indsendelseshandlinger og muligheder. - Sektionshandlinger - Valgmuligheder, der er specifikke for et given sektion, for eksempel upload af filer eller tilføjelse af brugere. - Enhedshandlinger - Handlinger og indstillinger, der er specifikke for en enkelt fil. - Se og administrer indsendelsens katalogindgang, herunder metadata og publiceringsformater - Se og administrer indsendelsesmetadata, noter, notifikationer og historik - Se og administrer deltagerne hørende til denne indsendelse: forfattere, redaktører, designere m.fl. - Upload en fil til sektionen - Føj en bruger til sektionen - Se og få adgang til enhedsindstillinger, f.eks. information og sletningsmuligheder - Flere oplysninger: filnotater, notifikationsindstillinger og historik - Filoplysninger: noter, notifikationsindstillinger og historik (Der er ikke tilføjet nogen noter endnu) - Filoplysninger: noter, notifikationsindstillinger og historik (Noter er tilgængelige) - Filoplysninger: noter, notifikationsindstillinger og historik (Nye noter tilføjet siden sidste besøg) - Rediger enhed - Slet enhed - Handlingen er i gang eller endnu ikke afsluttet - Handlingen afsluttet - File uploaded by the role in the grid column title - Under Indsendelse vælger redaktøren, efter gennemsyn af de indsendte filer, den passende handling (som inkluderer besked til forfatteren): Send til intern bedømmelse (indebærer valg af filer til intern bedømmelse); Send til ekstern gennemgang (indebærer valg af filer til ekstern gennemgang); Accepter indsendelse (indebærer valg af filer til det redaktionelle trin); eller Afvis indsendelse (arkivlagring). - Renskrift - Korrektur - Godkendelse og udgivelse - Forskellige publikationsformater, såsom hardcover, paperback og digital, kan uploades i sektionen med publikationsformater nedenfor. Du kan bruge opsætningen til publikationsformater nedenfor som en tjekliste for, hvad der stadig skal gøres for at offentliggøre et publikationsformat. - Korrekturer skal kontrolleres som værende godkendt, og Katalog-indtastningen for formatet skal kontrolleres som anført i bogens katalogpost, før et format kan gøres Tilgængelig (dvs. publiceret).]]> - Angiv betingelser i forbindelse med download - Angiv betingelser - Tilføj svar - Alle de filer, der er uploadet til et af indsendelsestrinnene, kan føjes til listen over korrekturfiler ved at blive markeret i afkrydsningsfeltet nedenfor og ved at klikke på Søg: alle tilgængelige filer vises på listen og kan vælges til inkludering. - Den offentlige identifikator (the public identifier) '{$publicIdentifier}' findes allerede i forbindelse med et andet objekt af samme type. Vælg unikke identifikatorer for objekter af samme type under dette forlag. - diff --git a/locale/da_DK/emailTemplates.xml b/locale/da_DK/emailTemplates.xml deleted file mode 100644 index 933cca82635..00000000000 --- a/locale/da_DK/emailTemplates.xml +++ /dev/null @@ -1,521 +0,0 @@ - - - - - - Registrering hos forlag - -
-Du er nu blevet registreret som bruger med {$contextName}. Vi har inkluderet dit brugernavn og din adgangskode i denne e-mail. Dette skal bruges i forbindelse med arbejdet omkring forlagets hjemmeside. På ethvert tidspunkt kan du bede om at blive fjernet fra listen over brugere ved at kontakte mig.
-
-Brugernavn: {$username}
-Password: {$password}
-
-Mange tak,
-{$principalContactSignature}]]> - Denne e-mail sendes til ny-registrerede brugere for at byde dem velkommen til systemet og give dem deres brugernavn og adgangskode. -
- - Valider din konto - -
-Du har oprettet en konto med {$contextName}, men inden du kan begynde at bruge den, skal du validere din e-mail-konto. For at gøre dette skal du blot følge nedenstående link:
-
-{$activateUrl}
-
-Mange tak,
-{$principalContactSignature}]]> - Denne e-mail sendes til ny-registrerede brugere for at byde dem velkommen til systemet og give dem deres brugernavn og adgangskode. -
- - Forespørgsel om manuskriptredigering - -
-Jeg vil bede dig om at foretage manuskriptredigering af "{$submissionTitle}" til {$contextName} ved at følge disse trin.
-1. Klik på manuskriptets URL-adresse nedenfor.
-2. Log ind på forlaget, og klik på filen, der vises i trin 1.
-3. Gennemse manuskriptredigerings-vejledningen, der findes på hjemmesiden
-4. Åbn den downloadede fil og foretag en manuskriptredigering, tilføj eventuelle forespørgsler til forfatteren.
-5. Gem den manuskriptredigerede fil, og upload til Trin 1 under Manuskriptredigering
-6. Send den FÆRDIGE e-mail til redaktøren.
-
-{$contextName} URL: {$contextUrl}
-Submission URL: {$submissionUrl}
-Username: {$participantUsername}
-
-{$editorialContactSignature}]]> - Denne e-mail sendes af en serieredaktør til manuskriptredaktøren for at bede vedkommende om at påbegynde manuskriptredigeringsprocessen. Den indeholder oplysninger om manuskriptet og om, hvordan der oprettes adgang til det. -
- - Redaktionel tildeling - -
-Som sektionsredaktør har du fået tildelt manuskriptet "{$submissionTitle}," der er sendt til {$contextName} og som du skal følge igennem den redaktionelle proces..
-
-Submission URL: {$submissionUrl}
-Username: {$editorUsername}
-
-Mange tak
-{$editorialContactSignature}]]> - Denne e-mail underretter en serieredaktør om, at redaktøren har tildelt vedkommende opgaven med at følge et manuskript igennem redigeringsprocessen. Den indeholder oplysninger om manuskriptet og om, hvordan der oprettes adgang til tidsskriftets websted. -
- - Redaktørbeslutning - -
-Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, "{$submissionTitle}".
-
-Vi har besluttet at:
-
-Manuscript URL: {$submissionUrl}
-
-{$editorialContactSignature}
]]> - Denne e-mail fra redaktøren eller serieredaktøren til en forfatter er en meddelelse om den endelige afgørelse vedrørende deres bidrag. -
- - Redaktørbeslutning - -
-Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, "{$submissionTitle}".
-
-Vi har besluttet at:
-
-Manuscript URL: {$submissionUrl}
-
-{$editorialContactSignature}
]]> - Denne e-mail fra redaktøren eller serieredaktøren til en forfatter er en meddelelse om den endelige afgørelse vedrørende deres bidrag. -
- - Redaktørbeslutning - -
-Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, "{$submissionTitle}".
-
-Vi har besluttet at: Afvise manuskript
-
-Manuscript URL: {$submissionUrl}
-
-{$editorialContactSignature}
]]> - Denne e-mail sendes til forfatteren, hvis redaktøren afviser indsendelsen, før gennemgangsfasen -
- - Redaktørbeslutning - -
-Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, "{$submissionTitle}".
-
-Vi har besluttet følgende:
-
-Manuscript URL: {$submissionUrl}
-
-{$editorialContactSignature}
]]> - Denne e-mail fra redaktøren eller serieredaktøren til en forfatter er en meddelelse om den endelige afgørelse vedrørende deres bidrag. -
- - Redaktørbeslutning - -
-Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, "{$submissionTitle}".
-
-Vi har besluttet følgende:
-
-Manuscript URL: {$submissionUrl}
-
-{$editorialContactSignature}
]]> - Denne e-mail fra redaktøren eller serieredaktøren til en forfatter er en meddelelse om den endelige afgørelse vedrørende deres bidrag. -
- - Redaktørbeslutning - -
-Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, "{$submissionTitle}".
-
-Vi har besluttet følgende:
-
-Manuscript URL: {$submissionUrl}
-
-{$editorialContactSignature}
]]> - Denne e-mail fra redaktøren eller serieredaktøren til forfatteren meddeler at indsendelsen videresendes til ekstern bedømmelse. -
- - Redaktørbeslutning - -
-Vi har færdiggjort redigeringen af din indsendelse, "{$submissionTitle}," is complete. Den vil nu blive sendt til publicering.
-
-Manuscript URL: {$submissionUrl}
-
-{$editorialContactSignature}
]]> - Denne e-mail fra redaktøren eller sektionsredaktøren til forfatteren meddeler at indsendelsen nu sendes til publicering -
- - Redaktøranbefaling - -
-Anbefalingen med hensyn til {$contextName}, "{$submissionTitle}" er: {$recommendation}
-
-{$editorialContactSignature}
]]> - Denne e-mail fra den anbefalende redaktør eller sektionsredaktør til de beslutningstagende redaktører eller sekttionredaktører indeholder den endelige anbefaling vedrørende indsendelsen. -
- - Artikel, der muligvis har din interesse - - Denne e-mail-skabelon giver en registreret læser mulighed for at sende oplysninger om en artikel til en person, der muligvis er interesseret. Den er tilgængelig via læseværktøjerne og skal aktiveres af tidsskriftschefen på siden Administration af læseværktøjer. - - - Register færdiggjort - -
-Der er nu udarbejdet indeks til manuskriptet "{$submissionTitle}," til {$contextName} og den er klar til korrekturlæsning.
-
-Hvis du har spørgsmål, er du velkommen til at kontakte mig.
-
-{$signatureFullName}]]> - Denne e-mail fra kartotekføreren til serieredaktøren underretter serieredaktøren om, at udfærdigelsen af registeret er fuldført. -
- - Forespørgsel om indeksering - -
-Indsendelsen "{$submissionTitle}" til {$contextName} skal nu indekseres ved at følge disse trin.
-1. Klik på manuskriptets URL-adresse nedenfor.
-2. Hent filerne placeret under ‘Produktionsklare filer’ og formater dem til publikationsformater i overensstemmelse med tidsskriftets krav..
-3. Send den FÆRDIGE e-mail til redaktøren
-
-{$contextName} URL: {$contextUrl}
-Submission URL: {$submissionUrl}
-Username: {$participantUsername}
-
-Hvis du ikke er i stand til at påtage dig dette arbejde på nuværende tidspunkt eller har spørgsmål, bedes du kontakte mig. Tak for dit bidrag til dette tidsskrift.
-
-{$editorialContactSignature}]]> - Denne e-mail fra Serieredaktøren til Indexer'en giver besked om, at vedkommende har fået til opgave at oprette indekser til en indsendelse. Den giver information om indsendelsen og hvordan man får adgang til den. -
- - Publiceringsversion færdiggjort - -
-Der er nu indsat en publiceringsklar fil til manuskriptet "{$submissionTitle}," til {$contextName} og den er klar til korrekturlæsning.
-
-Hvis du har spørgsmål, er du velkommen til at kontakte mig.
-
-{$signatureFullName}]]> - Denne e-mail fra layoutredaktøren til serieredaktøren underretter dem om, at layoutprocessen er fuldført. -
- - Forespørgsel om publiceringsversion - -
-Indsendelsen "{$submissionTitle}" til {$contextName} skal nu gøres publiceringsklar ved at følge disse trin.
-1. Klik på manuskriptets URL-adresse nedenfor.
-2. Hent filerne placeret under ‘Produktionsklare filer’ og formater dem til publiceringsklare filer i overensstemmelse med tidsskriftets krav.
-3. Send den FÆRDIGE e-mail til redaktøren.
-
-{$contextName} URL: {$contextUrl}
-Submission URL: {$submissionUrl}
-Username: {$participantUsername}
-
-Hvis du ikke er i stand til at påtage dig dette arbejde på nuværende tidspunkt eller har spørgsmål, bedes du kontakte mig.
-Tak for dit bidrag til dette tidsskrift.
-
-{$editorialContactSignature}]]> - enne e-mail fra serieredaktøren til layoutredaktøren underretter dem om, at han/hun har fået til opgave at foretage layoutredigering af et manuskript. Den indeholder oplysninger om manuskriptet og om, hvordan der oprettes adgang til det. -
- - Ny meddelelse fra {$siteTitle} - -
-{$notificationContents}
-
-Link: {$url}
-
-This is an automatically generated email; please do not reply to this message.
-{$principalContactSignature}]]> - Denne e-mail er blevet sendt til registrerede brugere, som har valgt at få tilsendt denne type meddelelser. -
- - Besked omhandlende {$contextName} - Skriv venligst din besked. - Standardmeddelelsen (tom), der bliver brugt i Notification Center Message Listbuilder. - - - Nulstil adgangskode - -
-Dit brugernavn: {$username}
-Dit nye password: {$password}
-
-{$principalContactSignature}]]> - Denne e-mail sendes til registrerede brugere, når de har nulstillet deres adgangskode, efter at de har fulgt den proces, der er beskrevet i e-mailen PASSWORD_RESET_CONFIRM. -
- - Bekræftelse af nulstilling af adgangskode - -
-Hvis du ikke selv har sendt denne forespørgsel, skal du ignorere denne e-mail, og din adgangskode vil ikke blive ændret. Klik på nedenstående URL-adresse, hvis adgangskoden skal ændres.
-
-Nulstil min password: {$url}
-
-{$principalContactSignature}]]> - Denne e-mail sendes til registrerede brugere, når de angiver, at de har glemt deres adgangskode eller ikke kan logge på. Den indeholder en URL-adresse, de kan følge for at nulstille deres adgangskode. -
- - Ny bog er blevet publiceret - -
-{$contextName} har lige publiceret den seneste bog på {$contextUrl}. Vi inviterer dig til at gennemse indholdsfortegnelsen her og derefter besøge vores websted, hvor du kan gennemse monografer og andet, der har din interesse.
-
-Tak for din fortsatte interesse i vores arbejde. {$editorialContactSignature}]]> - Denne e-mail sendes til registrerede læsere via linket "Underret brugere" på redaktørens brugerstartside. Den underretter læsere om en ny bog og inviterer dem til at besøge tidsskriftet på en angiven URL-adresse. -
- - Registrering som bedømmer hos {$contextName} - -
-Vi giver dig et brugernavn og en adgangskode, der skal bruges i forbindelse med alle interaktioner med tidsskriftet via tidsskriftets webside. Du kan f.eks. bede om at få opdateret din profil, herunder dine bedømmelsesinteresser.
-
-Brugernavn: {$username}
-Password: {$password}
-
-Mange tak.
-{$principalContactSignature}]]> - Denne e-mail sendes til netop registrerede bedømmere for at byde dem velkommen til systemet og for at oplyse dem om deres brugernavn og adgangskode. -
- - Bekræftelse af bedømmelse af artikel - -
-Tak, fordi du har fuldført bedømmelsen af manuskriptet "{$submissionTitle}" til {$contextName}. Vi påskønner dit bidrag til kvaliteten af de artikler, vi publicerer.
-
-{$editorialContactSignature}]]> - Denne e-mail sendes af sektionsredaktøren for at bekræfte modtagelsen af en fuldført bedømmelse og takker bedømmeren for sit bidrag. -
- - Annullering af forespørgsel om bedømmelse - -
-På nuværende tidspunkt har vi valgt at annullere vores forespørgsel til dig om at bedømme manuskriptet "{$submissionTitle}" til {$contextName}. Vi beklager den ulejlighed, dette eventuelt måtte forårsage, og vi håber, at vi må henvende os til dig i fremtiden og bede om din assistance i forbindelse med dette tidsskrifts bedømmelsesproces.
-
-Hvis du har spørgsmål, er du velkommen til at kontakte mig.
-
-{$editorialContactSignature}]]> - Denne e-mail sendes af sektionsredaktøren til en bedømmer, som er ved at bedømme et manuskript, og underretter vedkommende om, at bedømmelsen er blevet annulleret. -
- - Kan foretage bedømmelse - -
-Jeg kan og er villig til at bedømme manuskriptet "{$submissionTitle}" til {$contextName}. Tak, fordi du tænkte på mig, og jeg planlægger at være færdig med bedømmelsen senest på forfaldsdatoen, {$reviewDueDate}, hvis ikke før.
-
-{$reviewerName}]]> - Denne e-mail sendes af en bedømmer til sektionsredaktøren som svar på en bedømmelsesforespørgsel og underretter sektionsredaktøren om, at bedømmelsesforespørgslen er blevet accepteret, og at bedømmelsen vil være fuldført til den angivne dato. -
- - Kan ikke foretage bedømmelse - -
-Jeg beklager, at jeg på nuværende tidspunkt ikke kan bedømme manuskriptet "{$submissionTitle}" til {$contextName}. Tak, fordi du tænkte på mig, og du er altid velkommen til at kontakte mig en anden gang.
-
-{$reviewerName}]]> - Denne e-mail sendes af en bedømmer til sektionsredaktøren som svar på en bedømmelsesforespørgsel og underretter sektionsredaktøren om, at bedømmelsesforespørgslen er blevet afvist. -
- - Påmindelse om bedømmelse af manuskript - -
-Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af manuskriptet "{$submissionTitle}" til {$contextName}. Vi havde håbet på at modtage bedømmelsen senest den {$reviewDueDate} og ser frem til at modtage den, så snart du er færdig med den.
-
-Hvis du ikke har dit brugernavn og dit password til tidsskriftets websted, kan du bruge dette link til at nulstille adgangskoden (som så vil blive sendt til dig via e-mail sammen med dit brugernavn). {$passwordResetUrl}
-
-Manuskriptets URL-adresse: {$submissionReviewUrl}
-
-Vi beder dig bekræfte, at du er i stand til at fuldføre dette vigtige bidrag til tidsskriftets arbejde. Jeg ser frem til at høre fra dig.
-
-{$editorialContactSignature}]]> - Denne e-mail sendes af sektionsredaktøren til en bedømmer for at minde vedkommende om, at bedømmelsen skulle have været afleveret. -
- - Automatisk påmindelse om bedømmelse af manuskript - -
-Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af manuskriptet "{$submissionTitle}" til {$contextName}. Vi havde håbet på at modtage bedømmelsen senest den {$reviewDueDate}, og denne e-mail er blevet automatisk genereret og sendt til dig, da den pågældende dato er overskredet. Vi ser stadig frem til at modtage den, så snart du er færdig med den.
-
-Hvis du ikke har dit brugernavn og password til tidsskriftets websted, kan du bruge dette link til at nulstille adgangskoden (som så vil blive sendt til dig via e-mail sammen med dit brugernavn). {$passwordResetUrl}
-
-Manuskriptets URL-adresse: {$submissionReviewUrl}
-
-Vi beder dig bekræfte, at du er i stand til at fuldføre dette vigtige bidrag til tidsskriftets arbejde. Jeg ser frem til at høre fra dig.
-
-{$editorialContactSignature}]]> - Denne e-mail sendes automatisk, når en bedømmers forfaldsdato overskrides (se Bedømmelsesindstillinger under Konfiguration af tidsskrift, trin 2), og når adgang for bedømmere ved hjælp af ét klik er deaktiveret. Planlagte opgaver skal aktiveres og konfigureres (se webstedets konfigurationsfil). -
- - Automatisk påmindelse om bedømmelse af manuskript - -
-Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af manuskriptet "{$submissionTitle}" til {$contextName}. Vi havde håbet på at modtage bedømmelsen senest den {$reviewDueDate}, og denne e-mail er blevet automatisk genereret og sendt til dig, da den pågældende dato er overskredet. Vi ser stadig frem til at modtage den, så snart du er færdig med den.
-
-Manuskriptets URL-adresse: {$submissionReviewUrl}
-
-Vi beder dig bekræfte, at du er i stand til at fuldføre dette vigtige bidrag til tidsskriftets arbejde. Jeg ser frem til at høre fra dig.
-
-{$editorialContactSignature}]]> - Workflow > Bedømmelse), og når adgang for bedømmere ved hjælp af ét klik er aktiveret. Planlagte opgaver skal aktiveres og konfigureres (se webstedets konfigurationsfil).]]> -
- - Påmindelse om bedømmelse af manuskript - -
-Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af manuskriptet "{$submissionTitle}" til {$contextName}. Vi havde håbet på at modtage bedømmelsen senest den {$reviewDueDate} og ser frem til at modtage den, så snart du er færdig med den.
-
-Manuskriptets URL-adresse: {$submissionReviewUrl}
-
-Vi beder dig bekræfte, at du er i stand til at fuldføre dette vigtige bidrag til tidsskriftets arbejde. Jeg ser frem til at høre fra dig.
-
-{$editorialContactSignature}]]> - Denne e-mail sendes af serieredaktøren til en bedømmer for at minde vedkommende om, at bedømmelsen skulle have været afleveret. -
- - Forespørgsel om bedømmelse af manuskript - -
-{$messageToReviewer}
-
-Log venligst ind på forlagets websted ved {$ responseDueDate} for at tilkendegive, om du vil foretage bedømmelsen eller ikke, samt for at få adgang til indsendelsen og registrere din bedømmelse og anbefaling.
-
-Selve bedømmelsen skal afleveres senest den {$reviewDueDate}.
-
-Submission URL: {$submissionReviewUrl}
-
-Brugernavn: {$reviewerUserName}
-
-Tak for din overvejelse af denne forespørgsel.
-
-
-Mange hilsner
-{$editorialContactSignature}
]]> - Denne e-mail fra serieredaktøren til en bedømmer anmoder bedømmeren om at acceptere eller afvise at bedømme et manuskript. Den indeholder oplysninger om manuskriptet, f.eks. titel og resumé, forfaldsdato for bedømmelse, samt hvordan der kan oprettes adgang til selve manuskriptet. -
- - Forespørgsel om bedømmelse af manuskript - -
-Jeg tror, at du vil kunne være en fremragende bedømmer af manuskriptet "{$submissionTitle}", og jeg beder dig om at overveje at påtage dig denne vigtige opgave for os. Dette forlags Retningslinjer for bedømmelser er tilføjet nedenfor, og manuskriptet er vedhæftet denne e-mail. Din bedømmelse af manuskriptet samt din anbefaling skal sendes til mig pr. e-mail senest den {$reviewDueDate}.
-
-Meld venligst tilbage via e-mail inden den {$weekLaterDate} , om du kan og er villig til at foretage bedømmelsen.
-
-Tak for din overvejelse af denne forespørgsel.
-
-{$editorialContactSignature}
-
-
-Retningslinjer for bedømmelser
-
-{$reviewGuidelines}
]]> - Denne e-mail sendes af serieredaktøren til en bedømmer og beder vedkommende om at acceptere eller afvise at bedømme et manuskript. Manuskriptet er vedhæftet denne e-mail. Denne meddelelse benyttes, hvis indstillingen for bedømmelsesproces, hvor manuskript er vedhæftet e-mail, er valgt -
- - Forespørgsel om bedømmelse af manuskript - -
-Jeg tror, at du vil være en fremragende bedømmer af manuskriptet "{$submissionTitle}", der er blevet sendt til {$contextName}. Nedenfor finder du et resumé af manuskriptet, og jeg håber, at du vil overveje at påtage dig denne vigtige opgave for os.
-
-Log på tidsskriftets websted inden den {$weekLaterDate} for at angive, om du vil påtage dig bedømmelsen eller ej, samt for at få adgang til manuskriptet og registrere din bedømmelse og anbefaling.
-
-Selve bedømmelsen skal afleveres senest den {$reviewDueDate}.
-
-Manuskriptets URL-adresse: {$submissionReviewUrl}
-
-Tak for din overvejelse af denne forespørgsel.
-
-{$editorialContactSignature}
-
-
-
-"{$submissionTitle}"
-
-{$abstractTermIfEnabled}
-{$submissionAbstract}]]> - Workflow > Bedømmelse og adgang for bedømmere ved hjælp af ét klik er aktiveret.]]> -
- - Forespørgsel om bedømmelse af manuskript - -Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af manuskriptet "{$submissionTitle}," for {$contextName}. Vi havde håbet på at modtage dit svar senest den {$responseDueDate}, og denne e-mail er blevet automatisk genereret og sendt til dig, da den pågældende dato er overskredet. -
-{$messageToReviewer}
-
-Log på tidsskriftets websted for at angive, om du vil påtage dig bedømmelsen eller ej, samt for at få adgang til manuskriptet og registrere din bedømmelse og anbefaling. -
-Selve bedømmelsen skal afleveres senest den {$reviewDueDate}.
-
-Submission URL: {$submissionReviewUrl}
-
-Brugernavn: {$reviewerUserName}
-
-Tak for din overvejelse af denne forespørgsel.
-
-
-MAnge hilsner
-{$editorialContactSignature}
]]> - Workflow > Bedømmelse) og ’Aktiver adgang for bedømmere ved hjælp af ét klik’ er fravalgt. Tidsfrister og påmindelser skal være defineret.]]> -
- - Forespørgsel om bedømmelse af manuskript - -Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af manuskriptet "{$submissionTitle}," for {$contextName}. Vi havde håbet på at modtage dit svar senest den {$responseDueDate}, og denne e-mail er blevet automatisk genereret og sendt til dig, da den pågældende dato er overskredet. -
-Jeg tror, at du vil være en fremragende bedømmer af manuskriptet. Nedenfor finder du et resumé af manuskriptet, og jeg håber, at du vil overveje at påtage dig denne vigtige opgave for os.
-
-Log på tidsskriftets websted for at angive, om du vil påtage dig bedømmelsen eller ej, samt for at få adgang til manuskriptet og registrere din bedømmelse og anbefaling.
-
-Selve bedømmelsen skal afleveres senest den {$reviewDueDate}.
-
-Manuskriptets URL-adresse: {$submissionReviewUrl}
-
-Tak for din overvejelse af denne forespørgsel.
-
-{$editorialContactSignature}
-
-"{$submissionTitle}"
-
-
-
-{$abstractTermIfEnabled}
-{$submissionAbstract}]]> - Workflow > Bedømmelse) og ’Aktiver adgang for bedømmere ved hjælp af ét klik’ er aktiveret. Tidsfrister og påmindelser skal være defineret.]]> -
- - Bekræftelse af manuskript - -
-Tak, fordi du har fremsendt manuskriptet "{$submissionTitle}" til {$contextName}. Ved hjælp af det online-styringssystem, vi bruger, kan du følge manuskriptet igennem den redaktionelle proces ved at logge på tidsskriftets websted:
-
-Manuskriptets URL-adresse: {$submissionUrl}
-Brugernavn: {$authorUsername}
-
-Hvis du har spørgsmål, er du velkommen til at kontakte mig. Tak, fordi du har valgt at publicere din artikel i dette tidsskrift.
-
-{$editorialContactSignature}]]> - Når denne e-mail er aktiveret, sendes den automatisk til en forfatter, når vedkommende har fremsendt et manuskript til tidsskriftet. Den indeholder oplysninger om, hvordan forfatteren kan følge manuskriptet igennem processen, og den takker forfatteren for manuskriptet. -
- - Indsendelsesbekræftelse - -
-{$submitterName} har indsendt manuskriptet "{$submissionTitle}" til {$contextName}.
-
-Hvis du har spørgsmål, er du velkommen til at kontakte mig. Tak fordi du har valgt at publicere din artikel i dette tidsskrift.
-
-{$editorialContactSignature}]]> - Når denne e-mail er aktiveret, sendes automatisk besked til de andre forfattere, der ikke er brugere inden for OMP, der er angivet under indsendelsesprocessen. -
-
diff --git a/locale/da_DK/emails.po b/locale/da_DK/emails.po deleted file mode 100644 index 3b3314ddd8e..00000000000 --- a/locale/da_DK/emails.po +++ /dev/null @@ -1,871 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" -"PO-Revision-Date: 2020-06-05 16:39+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "emails.userRegister.subject" -msgstr "Registrering hos forlag" - -msgid "emails.userRegister.body" -msgstr "" -"{$userFullName}
\n" -"
\n" -"Du er nu blevet registreret som bruger med {$contextName}. Vi har inkluderet dit brugernavn og din adgangskode i denne e-mail. Dette skal bruges i forbindelse med arbejdet omkring forlagets hjemmeside. På ethvert tidspunkt kan du bede om at blive fjernet fra listen over brugere ved at kontakte mig.
\n" -"
\n" -"Brugernavn: {$username}
\n" -"Password: {$password}
\n" -"
\n" -"Mange tak,
\n" -"{$principalContactSignature}" - -msgid "emails.userRegister.description" -msgstr "Denne e-mail sendes til ny-registrerede brugere for at byde dem velkommen til systemet og give dem deres brugernavn og adgangskode." - -msgid "emails.userValidate.subject" -msgstr "Validér din konto" - -msgid "emails.userValidate.body" -msgstr "" -"{$userFullName}
\n" -"
\n" -"Du har oprettet en konto med {$contextName}, men inden du kan begynde at bruge den, skal du validere din e-mail-konto. For at gøre dette skal du blot følge nedenstående link:
\n" -"
\n" -"{$activateUrl}
\n" -"
\n" -"Mange tak,
\n" -"{$principalContactSignature}" - -msgid "emails.userValidate.description" -msgstr "Denne e-mail sendes til ny-registrerede brugere for at byde dem velkommen til systemet og give dem deres brugernavn og adgangskode." - -msgid "emails.copyeditRequest.subject" -msgstr "Forespørgsel om manuskriptredigering" - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$participantName}:
\n" -"
\n" -"Jeg vil bede dig om at foretage manuskriptredigering af " -""{$submissionTitle}" til {$contextName} ved at følge disse trin.<" -"br />\n" -"1. Klik på manuskriptets URL-adresse nedenfor.
\n" -"2. Log ind på forlaget, og klik på filen, der vises i trin 1.
\n" -"3. Gennemse manuskriptredigerings-vejledningen, der findes på hjemmesiden
\n" -"4. Åbn den downloadede fil og foretag en manuskriptredigering, tilføj " -"eventuelle forespørgsler til forfatteren.
\n" -"5. Gem den manuskriptredigerede fil, og upload til Trin 1 under " -"Manuskriptredigering
\n" -"6. Send den FÆRDIGE e-mail til redaktøren.
\n" -"
\n" -"{$contextName} URL: {$contextUrl}
\n" -"Manuskript URL: {$submissionUrl}
\n" -"Brugernavn: {$participantUsername}" - -msgid "emails.copyeditRequest.description" -msgstr "Denne e-mail sendes af en serieredaktør til manuskriptredaktøren for at bede vedkommende om at påbegynde manuskriptredigeringsprocessen. Den indeholder oplysninger om manuskriptet og om, hvordan der oprettes adgang til det." - -msgid "emails.editorAssign.subject" -msgstr "Redaktionel tildeling" - -msgid "emails.editorAssign.body" -msgstr "" -"{$editorialContactName}:
\n" -"
\n" -"Som sektionsredaktør har du fået tildelt manuskriptet " -""{$submissionTitle}," der er sendt til {$contextName} og som du " -"skal følge igennem den redaktionelle proces..
\n" -"
\n" -"Submission URL: {$submissionUrl}
\n" -"Username: {$editorUsername}
\n" -"
\n" -"Mange tak" - -msgid "emails.editorAssign.description" -msgstr "Denne e-mail underretter en serieredaktør om, at redaktøren har tildelt vedkommende opgaven med at følge et manuskript igennem redigeringsprocessen. Den indeholder oplysninger om manuskriptet og om, hvordan der oprettes adgang til tidsskriftets websted." - -msgid "emails.editorDecisionAccept.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionAccept.body" -msgstr "" -"{$authorName}:
\n" -"
\n" -"Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, " -""{$submissionTitle}".
\n" -"
\n" -"Vi har besluttet at:
\n" -"
\n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionAccept.description" -msgstr "Denne e-mail fra redaktøren eller serieredaktøren til en forfatter er en meddelelse om den endelige afgørelse vedrørende deres bidrag." - -msgid "emails.editorDecisionDecline.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"{$authorName}:
\n" -"
\n" -"Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, " -""{$submissionTitle}".
\n" -"
\n" -"Vi har besluttet at:
\n" -"
\n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.description" -msgstr "Denne e-mail fra redaktøren eller serieredaktøren til en forfatter er en meddelelse om den endelige afgørelse vedrørende deres bidrag." - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\t{$authorName}:
\n" -"
\n" -"Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, " -""{$submissionTitle}".
\n" -"
\n" -"Vi har besluttet at: Afvise manuskript
\n" -"
\n" -"Manuskript URL: {$submissionUrl}\n" -"\t\t" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "Denne e-mail sendes til forfatteren, hvis redaktøren afviser indsendelsen, før gennemgangsfasen" - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"{$authorName}:
\n" -"
\n" -"Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, " -""{$submissionTitle}".
\n" -"
\n" -"Vi har besluttet følgende:
\n" -"
\n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.description" -msgstr "Denne e-mail fra redaktøren eller serieredaktøren til en forfatter er en meddelelse om den endelige afgørelse vedrørende deres bidrag." - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"{$authorName}:
\n" -"
\n" -"Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, " -""{$submissionTitle}".
\n" -"
\n" -"Vi har besluttet følgende:
\n" -"
\n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.description" -msgstr "Denne e-mail fra redaktøren eller serieredaktøren til en forfatter er en meddelelse om den endelige afgørelse vedrørende deres bidrag." - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"{$authorName}:
\n" -"
\n" -"Vi er nået frem til en afgørelse vedrørende dit bidrag til {$contextName}, " -""{$submissionTitle}".
\n" -"
\n" -"Vi har besluttet følgende:
\n" -"
\n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "Denne e-mail fra redaktøren eller serieredaktøren til forfatteren meddeler at indsendelsen videresendes til ekstern bedømmelse." - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"{$authorName}:
\n" -"
\n" -"Vi har færdiggjort redigeringen af din indsendelse, " -""{$submissionTitle}," is complete. Den vil nu blive sendt til " -"publicering.
\n" -"
\n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "" -"Denne e-mail fra redaktøren eller sektionsredaktøren til forfatteren " -"meddeler at indsendelsen nu sendes til produktion." - -msgid "emails.editorRecommendation.subject" -msgstr "Redaktøranbefaling" - -msgid "emails.editorRecommendation.body" -msgstr "" -"{$editors}:
\n" -"
\n" -"Anbefalingen med hensyn til {$contextName}, "{$submissionTitle}" " -"er: {$recommendation}" - -msgid "emails.editorRecommendation.description" -msgstr "Denne e-mail fra den anbefalende redaktør eller sektionsredaktør til de beslutningstagende redaktører eller sekttionredaktører indeholder den endelige anbefaling vedrørende indsendelsen." - -msgid "emails.emailLink.subject" -msgstr "Artikel, der muligvis har din interesse" - -msgid "emails.emailLink.body" -msgstr "Jeg tænkte, at du måske ville være interesseret i at læse "{$submissionTitle}" af {$authorName} der er publiceret i Årg. {$volume}, Nummer {$number} ({$year}) i {$contextName} at "{$monographUrl}"." - -msgid "emails.emailLink.description" -msgstr "Denne e-mail-skabelon giver en registreret læser mulighed for at sende oplysninger om en artikel til en person, der muligvis er interesseret. Den er tilgængelig via læseværktøjerne og skal aktiveres af tidsskriftschefen på siden Administration af læseværktøjer." - -msgid "emails.indexComplete.subject" -msgstr "Register færdiggjort" - -msgid "emails.indexComplete.body" -msgstr "" -"{$editorialContactName}:
\n" -"
\n" -"Der er nu udarbejdet indeks til manuskriptet "{$submissionTitle}," til {$contextName} og den er klar til korrekturlæsning.
\n" -"
\n" -"Hvis du har spørgsmål, er du velkommen til at kontakte mig.
\n" -"
\n" -"{$signatureFullName}" - -msgid "emails.indexComplete.description" -msgstr "Denne e-mail fra kartotekføreren til serieredaktøren underretter serieredaktøren om, at udfærdigelsen af registeret er fuldført." - -msgid "emails.indexRequest.subject" -msgstr "Forespørgsel om indeksering" - -msgid "emails.indexRequest.body" -msgstr "" -"{$participantName}:
\n" -"
\n" -"Indsendelsen "{$submissionTitle}" til {$contextName} skal nu indekseres ved at følge disse trin.
\n" -"1. Klik på manuskriptets URL-adresse nedenfor.
\n" -"2. Hent filerne placeret under ‘Produktionsklare filer’ og formater dem til publikationsformater i overensstemmelse med tidsskriftets krav..
\n" -"3. Send den FÆRDIGE e-mail til redaktøren
\n" -"
\n" -"{$contextName} URL: {$contextUrl}
\n" -"Submission URL: {$submissionUrl}
\n" -"Username: {$participantUsername}
\n" -"
\n" -"Hvis du ikke er i stand til at påtage dig dette arbejde på nuværende tidspunkt eller har spørgsmål, bedes du kontakte mig. Tak for dit bidrag til dette tidsskrift.
\n" -"
\n" -"{$editorialContactSignature}" - -msgid "emails.indexRequest.description" -msgstr "" -"Denne e-mail fra Serieredaktøren til Indexeren giver besked om, at " -"vedkommende har fået til opgave at oprette indekser til en indsendelse. Den " -"giver information om indsendelsen og hvordan man får adgang til den." - -msgid "emails.layoutComplete.subject" -msgstr "Publiceringsversion færdiggjort" - -msgid "emails.layoutComplete.body" -msgstr "" -"{$editorialContactName}:
\n" -"
\n" -"Der er nu indsat en publiceringsklar fil til manuskriptet "{$submissionTitle}," til {$contextName} og den er klar til korrekturlæsning.
\n" -"
\n" -"Hvis du har spørgsmål, er du velkommen til at kontakte mig.
\n" -"
\n" -"{$signatureFullName}" - -msgid "emails.layoutComplete.description" -msgstr "Denne e-mail fra layoutredaktøren til serieredaktøren underretter dem om, at layoutprocessen er fuldført." - -msgid "emails.layoutRequest.subject" -msgstr "Forespørgsel om publiceringsversion" - -msgid "emails.layoutRequest.body" -msgstr "" -"{$participantName}:
\n" -"
\n" -"Indsendelsen "{$submissionTitle}" til {$contextName} skal nu gøres " -"publiceringsklar ved at følge disse trin.
\n" -"1. Klik på manuskriptets URL-adresse nedenfor.
\n" -"2. Hent filerne placeret under ‘Produktionsklare filer’ og formater dem til " -"publiceringsklare filer i overensstemmelse med tidsskriftets krav.
\n" -"3. Send den FÆRDIGE e-mail til redaktøren.
\n" -"
\n" -"{$contextName} URL: {$contextUrl}
\n" -"Manuskript URL: {$submissionUrl}
\n" -"Brugernavn: {$participantUsername}
\n" -"
\n" -"Hvis du ikke er i stand til at påtage dig dette arbejde på nuværende " -"tidspunkt eller har spørgsmål, bedes du kontakte mig. Tak for dit bidrag til " -"dette tidsskrift." - -msgid "emails.layoutRequest.description" -msgstr "" -"Denne e-mail fra serieredaktøren til layoutredaktøren underretter dem om, at " -"han/hun har fået til opgave at foretage layoutredigering af et manuskript. " -"Den indeholder oplysninger om manuskriptet og om, hvordan der oprettes " -"adgang til det." - -msgid "emails.notification.subject" -msgstr "Ny meddelelse fra {$siteTitle}" - -msgid "emails.notification.body" -msgstr "" -"Du har modtaget en ny meddelelse fra {$siteTitle}:
\n" -"
\n" -"{$notificationContents}
\n" -"
\n" -"Link: {$url}
\n" -"
\n" -"This is an automatically generated email; please do not reply to this message.
\n" -"{$principalContactSignature}" - -msgid "emails.notification.description" -msgstr "Denne e-mail er blevet sendt til registrerede brugere, som har valgt at få tilsendt denne type meddelelser." - -msgid "emails.notificationCenterDefault.subject" -msgstr "Besked omhandlende {$contextName}" - -msgid "emails.notificationCenterDefault.body" -msgstr "Skriv venligst din besked." - -msgid "emails.notificationCenterDefault.description" -msgstr "Standardmeddelelsen (tom), der bliver brugt i Notification Center Message Listbuilder." - -msgid "emails.passwordReset.subject" -msgstr "Nulstil adgangskode" - -msgid "emails.passwordReset.body" -msgstr "" -"Din adgangskode er blevet nulstillet og kan benyttes på webstedet {$siteTitle}.
\n" -"
\n" -"Dit brugernavn: {$username}
\n" -"Dit nye password: {$password}
\n" -"
\n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.description" -msgstr "Denne e-mail sendes til registrerede brugere, når de har nulstillet deres adgangskode, efter at de har fulgt den proces, der er beskrevet i e-mailen PASSWORD_RESET_CONFIRM." - -msgid "emails.passwordResetConfirm.subject" -msgstr "Bekræftelse af nulstilling af adgangskode" - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"Vi har modtaget en forespørgsel om at nulstille din adgangskode til webstedet {$siteTitle}.
\n" -"
\n" -"Hvis du ikke selv har sendt denne forespørgsel, skal du ignorere denne e-mail, og din adgangskode vil ikke blive ændret. Klik på nedenstående URL-adresse, hvis adgangskoden skal ændres.
\n" -"
\n" -"Nulstil min password: {$url}
\n" -"
\n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.description" -msgstr "Denne e-mail sendes til registrerede brugere, når de angiver, at de har glemt deres adgangskode eller ikke kan logge på. Den indeholder en URL-adresse, de kan følge for at nulstille deres adgangskode." - -msgid "emails.publishNotify.subject" -msgstr "Ny bog er blevet publiceret" - -msgid "emails.publishNotify.body" -msgstr "" -"Læsere:
\n" -"
\n" -"{$contextName} har lige publiceret den seneste bog på {$contextUrl}. Vi " -"inviterer dig til at gennemse indholdsfortegnelsen her og derefter besøge " -"vores websted, hvor du kan gennemse monografer og andet, der har din " -"interesse.
\n" -"
\n" -"Tak for din fortsatte interesse i vores arbejde.
\n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.description" -msgstr "Denne e-mail sendes til registrerede læsere via linket \"Underret brugere\" på redaktørens brugerstartside. Den underretter læsere om en ny bog og inviterer dem til at besøge tidsskriftet på en angiven URL-adresse." - -msgid "emails.reviewerRegister.subject" -msgstr "Registrering som bedømmer hos {$contextName}" - -msgid "emails.reviewerRegister.body" -msgstr "" -"På baggrund af din ekspertise har vi taget den frihed at registrere dit navn i bedømmerdatabasen for {$contextName}. Dette stiller ikke krav om nogen form for engagement fra din side, men gør det blot muligt for os at kontakte dig med hensyn til en eventuelt bedømmelse af et manuskript. Hvis du inviteres til at foretage en bedømmelse, vil du have mulighed for at se titlen på og et resumé af det pågældende manuskript, og du vil altid kunne acceptere eller afvise invitationen. Du kan til enhver tid også bede om at få dit navn fjernet fra listen over bedømmere.
\n" -"
\n" -"Vi giver dig et brugernavn og en adgangskode, der skal bruges i forbindelse med alle interaktioner med tidsskriftet via tidsskriftets webside. Du kan f.eks. bede om at få opdateret din profil, herunder dine bedømmelsesinteresser.
\n" -"
\n" -"Brugernavn: {$username}
\n" -"Password: {$password}
\n" -"
\n" -"Mange tak.
\n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.description" -msgstr "Denne e-mail sendes til netop registrerede bedømmere for at byde dem velkommen til systemet og for at oplyse dem om deres brugernavn og adgangskode." - -msgid "emails.reviewAck.subject" -msgstr "Bekræftelse af bedømmelse af artikel" - -msgid "emails.reviewAck.body" -msgstr "" -"{$reviewerName}:
\n" -"
\n" -"Tak, fordi du har fuldført bedømmelsen af manuskriptet " -""{$submissionTitle}" til {$contextName}. Vi påskønner dit bidrag " -"til kvaliteten af de artikler, vi publicerer." - -msgid "emails.reviewAck.description" -msgstr "Denne e-mail sendes af sektionsredaktøren for at bekræfte modtagelsen af en fuldført bedømmelse og takker bedømmeren for sit bidrag." - -msgid "emails.reviewCancel.subject" -msgstr "Annullering af forespørgsel om bedømmelse" - -msgid "emails.reviewCancel.body" -msgstr "" -"{$reviewerName}:
\n" -"
\n" -"På nuværende tidspunkt har vi valgt at annullere vores forespørgsel til dig " -"om at bedømme manuskriptet "{$submissionTitle}" til {$contextName}" -". Vi beklager den ulejlighed, dette eventuelt måtte forårsage, og vi håber, " -"at vi må henvende os til dig i fremtiden og bede om din assistance i " -"forbindelse med dette tidsskrifts bedømmelsesproces.
\n" -"
\n" -"Hvis du har spørgsmål, er du velkommen til at kontakte mig." - -msgid "emails.reviewCancel.description" -msgstr "Denne e-mail sendes af sektionsredaktøren til en bedømmer, som er ved at bedømme et manuskript, og underretter vedkommende om, at bedømmelsen er blevet annulleret." - -msgid "emails.reviewConfirm.subject" -msgstr "Kan foretage bedømmelse" - -msgid "emails.reviewConfirm.body" -msgstr "" -"Redaktører:
\n" -"
\n" -"Jeg kan og er villig til at bedømme manuskriptet "{$submissionTitle}" til {$contextName}. Tak, fordi du tænkte på mig, og jeg planlægger at være færdig med bedømmelsen senest på forfaldsdatoen, {$reviewDueDate}, hvis ikke før.
\n" -"
\n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.description" -msgstr "Denne e-mail sendes af en bedømmer til sektionsredaktøren som svar på en bedømmelsesforespørgsel og underretter sektionsredaktøren om, at bedømmelsesforespørgslen er blevet accepteret, og at bedømmelsen vil være fuldført til den angivne dato." - -msgid "emails.reviewDecline.subject" -msgstr "Kan ikke foretage bedømmelse" - -msgid "emails.reviewDecline.body" -msgstr "" -"Redaktører:
\n" -"
\n" -"Jeg beklager, at jeg på nuværende tidspunkt ikke kan bedømme manuskriptet "{$submissionTitle}" til {$contextName}. Tak, fordi du tænkte på mig, og du er altid velkommen til at kontakte mig en anden gang.
\n" -"
\n" -"{$reviewerName}" - -msgid "emails.reviewDecline.description" -msgstr "Denne e-mail sendes af en bedømmer til sektionsredaktøren som svar på en bedømmelsesforespørgsel og underretter sektionsredaktøren om, at bedømmelsesforespørgslen er blevet afvist." - -msgid "emails.reviewRemind.subject" -msgstr "Påmindelse om bedømmelse af manuskript" - -msgid "emails.reviewRemind.body" -msgstr "" -"{$reviewerName}:
\n" -"
\n" -"Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af " -"manuskriptet "{$submissionTitle}" til {$contextName}. Vi havde " -"håbet på at modtage bedømmelsen senest den {$reviewDueDate} og ser frem til " -"at modtage den, så snart du er færdig med den.
\n" -"
\n" -"Hvis du ikke har dit brugernavn og dit password til tidsskriftets websted, " -"kan du bruge dette link til at nulstille adgangskoden (som så vil blive " -"sendt til dig via e-mail sammen med dit brugernavn). {$passwordResetUrl}
\n" -"
\n" -"Manuskriptets URL-adresse: {$submissionReviewUrl}
\n" -"
\n" -"Brugerbavb: {$reviewerUserName}
\n" -"
\n" -"Vi beder dig bekræfte, at du er i stand til at fuldføre dette vigtige bidrag " -"til tidsskriftets arbejde. Jeg ser frem til at høre fra dig.
\n" -"
\n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemind.description" -msgstr "Denne e-mail sendes af sektionsredaktøren til en bedømmer for at minde vedkommende om, at bedømmelsen skulle have været afleveret." - -msgid "emails.reviewRemindAuto.subject" -msgstr "Automatisk påmindelse om bedømmelse af manuskript" - -msgid "emails.reviewRemindAuto.body" -msgstr "" -"{$reviewerName}:
\n" -"
\n" -"Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af " -"manuskriptet "{$submissionTitle}" til {$contextName}. Vi havde " -"håbet på at modtage bedømmelsen senest den {$reviewDueDate}, og denne e-mail " -"er blevet automatisk genereret og sendt til dig, da den pågældende dato er " -"overskredet. Vi ser stadig frem til at modtage den, så snart du er færdig " -"med den.
\n" -"
\n" -"Hvis du ikke har dit brugernavn og password til tidsskriftets websted, kan " -"du bruge dette link til at nulstille adgangskoden (som så vil blive sendt " -"til dig via e-mail sammen med dit brugernavn). {$passwordResetUrl}
\n" -"
\n" -"Manuskriptets URL-adresse: {$submissionReviewUrl}
\n" -"
\n" -"Brugernavn: {$reviewerUserName}
\n" -"
\n" -"Vi beder dig bekræfte, at du er i stand til at fuldføre dette vigtige bidrag " -"til tidsskriftets arbejde. Jeg ser frem til at høre fra dig.
\n" -"
\n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.description" -msgstr "Denne e-mail sendes automatisk, når en bedømmers forfaldsdato overskrides (se Bedømmelsesindstillinger under Konfiguration af tidsskrift, trin 2), og når adgang for bedømmere ved hjælp af ét klik er deaktiveret. Planlagte opgaver skal aktiveres og konfigureres (se webstedets konfigurationsfil)." - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Automatisk påmindelse om bedømmelse af manuskript" - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
\n" -"
\n" -"Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af manuskriptet "{$submissionTitle}" til {$contextName}. Vi havde håbet på at modtage bedømmelsen senest den {$reviewDueDate}, og denne e-mail er blevet automatisk genereret og sendt til dig, da den pågældende dato er overskredet. Vi ser stadig frem til at modtage den, så snart du er færdig med den.
\n" -"
\n" -"Manuskriptets URL-adresse: {$submissionReviewUrl}
\n" -"
\n" -"Vi beder dig bekræfte, at du er i stand til at fuldføre dette vigtige bidrag til tidsskriftets arbejde. Jeg ser frem til at høre fra dig.
\n" -"
\n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "Denne e-mail sendes automatisk, når en bedømmers forfaldsdato overskrides (se Bedømmelsesindstillinger under Indstillinger > Workflow > Bedømmelse), og når adgang for bedømmere ved hjælp af ét klik er aktiveret. Planlagte opgaver skal aktiveres og konfigureres (se webstedets konfigurationsfil)." - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Påmindelse om bedømmelse af manuskript" - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"{$reviewerName}:
\n" -"
\n" -"Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af manuskriptet "{$submissionTitle}" til {$contextName}. Vi havde håbet på at modtage bedømmelsen senest den {$reviewDueDate} og ser frem til at modtage den, så snart du er færdig med den.
\n" -"
\n" -"Manuskriptets URL-adresse: {$submissionReviewUrl}
\n" -"
\n" -"Vi beder dig bekræfte, at du er i stand til at fuldføre dette vigtige bidrag til tidsskriftets arbejde. Jeg ser frem til at høre fra dig.
\n" -"
\n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.description" -msgstr "Denne e-mail sendes af serieredaktøren til en bedømmer for at minde vedkommende om, at bedømmelsen skulle have været afleveret." - -msgid "emails.reviewRequest.subject" -msgstr "Forespørgsel om bedømmelse af manuskript" - -msgid "emails.reviewRequest.body" -msgstr "" -"Kære {$reviewerName},
\n" -"
\n" -"{$messageToReviewer}
\n" -"
\n" -"Log venligst ind på forlagets websted ved {$ responseDueDate} for at " -"tilkendegive, om du vil foretage bedømmelsen eller ikke, samt for at få " -"adgang til indsendelsen og registrere din bedømmelse og anbefaling.
\n" -"
\n" -"Selve bedømmelsen skal afleveres senest den {$reviewDueDate}.
\n" -"
\n" -"Submission URL: {$submissionReviewUrl}
\n" -"
\n" -"Brugernavn: {$reviewerUserName}
\n" -"
\n" -"Tak for din overvejelse af denne forespørgsel.
\n" -"
\n" -"
\n" -"Mange hilsner
\n" -"{$editorialContactSignature}
\n" - -msgid "emails.reviewRequest.description" -msgstr "" -"Denne e-mail fra serieredaktøren til en bedømmer anmoder bedømmeren om at " -"acceptere eller afvise opgaven med at gennemgå et manuskript. Den indeholder " -"information om manuskriptet, såsom titel og resumé, forfaldsdato for " -"bedømmelse, og hvordan man får adgang til selve manuskriptet. Denne " -"meddelelse bruges, når standardbedømmelsesprocessen er valgt i Indstillinger>" -" Workflow> Bedømmelse. (Se ellers REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequestAttached.subject" -msgstr "Forespørgsel om bedømmelse af manuskript" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName}:
\n" -"
\n" -"Jeg tror, at du vil kunne være en fremragende bedømmer af manuskriptet " -""{$submissionTitle}", og jeg beder dig om at overveje at påtage " -"dig denne vigtige opgave for os. Dette forlags Retningslinjer for " -"bedømmelser er tilføjet nedenfor, og manuskriptet er vedhæftet denne e-mail. " -"Din bedømmelse af manuskriptet samt din anbefaling skal sendes til mig pr. e-" -"mail senest den {$reviewDueDate}.
\n" -"
\n" -"Meld venligst tilbage via e-mail inden den {$weekLaterDate} , om du kan og " -"er villig til at foretage bedømmelsen.
\n" -"
\n" -"Tak for din overvejelse af denne forespørgsel.
\n" -"
\n" -"{$editorialContactSignature}
\n" -"
\n" -"
\n" -"Retningslinjer for bedømmelser
\n" -"
\n" -"{$reviewGuidelines}
\n" - -msgid "emails.reviewRequestAttached.description" -msgstr "Denne e-mail sendes af serieredaktøren til en bedømmer og beder vedkommende om at acceptere eller afvise at bedømme et manuskript. Manuskriptet er vedhæftet denne e-mail. Denne meddelelse benyttes, hvis indstillingen for bedømmelsesproces, hvor manuskript er vedhæftet e-mail, er valgt" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Forespørgsel om bedømmelse af manuskript" - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"{$reviewerName}:
\n" -"
\n" -"Jeg tror, at du vil være en fremragende bedømmer af manuskriptet "{$submissionTitle}", der er blevet sendt til {$contextName}. Nedenfor finder du et resumé af manuskriptet, og jeg håber, at du vil overveje at påtage dig denne vigtige opgave for os.
\n" -"
\n" -"Log på tidsskriftets websted inden den {$weekLaterDate} for at angive, om du vil påtage dig bedømmelsen eller ej, samt for at få adgang til manuskriptet og registrere din bedømmelse og anbefaling.
\n" -"
\n" -"Selve bedømmelsen skal afleveres senest den {$reviewDueDate}.
\n" -"
\n" -"Manuskriptets URL-adresse: {$submissionReviewUrl}
\n" -"
\n" -"Tak for din overvejelse af denne forespørgsel.
\n" -"
\n" -"{$editorialContactSignature}
\n" -"
\n" -"
\n" -"
\n" -""{$submissionTitle}"
\n" -"
\n" -"{$abstractTermIfEnabled}
\n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.description" -msgstr "Denne e-mail fra serieredaktøren til en bedømmer anmoder bedømmeren om at acceptere eller afvise at bedømme et manuskript. Den indeholder oplysninger om manuskriptet, f.eks. titel og resumé, forfaldsdato for bedømmelse, samt hvordan der kan oprettes adgang til selve manuskriptet. Denne meddelelse benyttes, hvis indstillingen standardbedømmelsesproces er valgt under Indstillinger > Workflow > Bedømmelse og adgang for bedømmere ved hjælp af ét klik er aktiveret." - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Forespørgsel om bedømmelse af manuskript" - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Kære {$reviewerName}:
\n" -"Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af " -"manuskriptet "{$submissionTitle}," for {$contextName}. Vi havde " -"håbet på at modtage dit svar senest den {$responseDueDate}, og denne e-mail " -"er blevet automatisk genereret og sendt til dig, da den pågældende dato er " -"overskredet.\n" -"
\n" -"{$messageToReviewer}
\n" -"
\n" -"Log på tidsskriftets websted for at angive, om du vil påtage dig bedømmelsen " -"eller ej, samt for at få adgang til manuskriptet og registrere din " -"bedømmelse og anbefaling.
\n" -"
\n" -"Selve bedømmelsen skal afleveres senest den {$reviewDueDate}.
\n" -"
\n" -"Submission URL: {$submissionReviewUrl}
\n" -"
\n" -"Brugernavn: {$reviewerUserName}
\n" -"
\n" -"Tak for din overvejelse af denne forespørgsel.
\n" -"
\n" -"
\n" -"Mange hilsner
\n" -"{$editorialContactSignature}
\n" - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "Denne e-mail sendes automatisk når en bedømmers bekræftelsesdato er overskredet (se bedømmelsesindstillinger under Indstillinger > Workflow > Bedømmelse) og ’Aktiver adgang for bedømmere ved hjælp af ét klik’ er fravalgt. Tidsfrister og påmindelser skal være defineret." - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Forespørgsel om bedømmelse af manuskript" - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
\n" -"Dette er blot for at minde dig om vores forespørgsel om din bedømmelse af " -"manuskriptet "{$submissionTitle}," for {$contextName}. Vi havde " -"håbet på at modtage dit svar senest den {$responseDueDate}, og denne e-mail " -"er blevet automatisk genereret og sendt til dig, da den pågældende dato er " -"overskredet.\n" -"
\n" -"Jeg tror, at du vil være en fremragende bedømmer af manuskriptet. Nedenfor " -"finder du et resumé af manuskriptet, og jeg håber, at du vil overveje at " -"påtage dig denne vigtige opgave for os.
\n" -"
\n" -"Log på tidsskriftets websted for at angive, om du vil påtage dig bedømmelsen " -"eller ej, samt for at få adgang til manuskriptet og registrere din " -"bedømmelse og anbefaling.
\n" -"
\n" -"Selve bedømmelsen skal afleveres senest den {$reviewDueDate}.
\n" -"
\n" -"Manuskriptets URL-adresse: {$submissionReviewUrl}
\n" -"
\n" -"Tak for din overvejelse af denne forespørgsel.
\n" -"
\n" -"{$editorialContactSignature}
\n" -"
\n" -"
\n" -"
\n" -""{$submissionTitle}"
\n" -"
\n" -"{$abstractTermIfEnabled}
\n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "Denne e-mail sendes automatisk når en bedømmers bekræftelsesdato er overskredet (se bedømmelsesindstillinger under Indstillinger > Workflow > Bedømmelse) og ’Aktiver adgang for bedømmere ved hjælp af ét klik’ er aktiveret. Tidsfrister og påmindelser skal være defineret." - -msgid "emails.submissionAck.subject" -msgstr "Bekræftelse af manuskript" - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName}:
\n" -"
\n" -"Tak, fordi du har fremsendt manuskriptet "{$submissionTitle}" til " -"{$contextName}. Ved hjælp af det online-styringssystem, vi bruger, kan du " -"følge manuskriptet igennem den redaktionelle proces ved at logge på " -"tidsskriftets websted:
\n" -"
\n" -"Manuskriptets URL-adresse: {$submissionUrl}
\n" -"Brugernavn: {$authorUsername}
\n" -"
\n" -"Hvis du har spørgsmål, er du velkommen til at kontakte mig. Tak, fordi du " -"har valgt at publicere din artikel i dette tidsskrift.
\n" -"
\n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.description" -msgstr "Når denne e-mail er aktiveret, sendes den automatisk til en forfatter, når vedkommende har fremsendt et manuskript til tidsskriftet. Den indeholder oplysninger om, hvordan forfatteren kan følge manuskriptet igennem processen, og den takker forfatteren for manuskriptet." - -msgid "emails.submissionAckNotUser.subject" -msgstr "Indsendelsesbekræftelse" - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Hej
\n" -"
\n" -"{$submitterName} har indsendt manuskriptet "{$submissionTitle}" til {$contextName}.
\n" -"
\n" -"Hvis du har spørgsmål, er du velkommen til at kontakte mig. Tak fordi du har valgt at publicere din artikel i dette tidsskrift.
\n" -"
\n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.description" -msgstr "Når denne e-mail er aktiveret, sendes automatisk besked til de andre forfattere, der ikke er brugere inden for OMP, der er angivet under indsendelsesprocessen." - -msgid "emails.notifyFile.description" -msgstr "En meddelelse fra en bruger sendt fra et filinformationscenter modal" - -msgid "emails.notifyFile.body" -msgstr "" -"Du har en besked fra {$sender} vedrørende filen "{$fileName}" i " -""{$submissionTitle}" ({$monographDetailsUrl}):
\n" -"
\n" -"\t\t{$message}
\n" -"
\n" -"\t\t" - -msgid "emails.notifyFile.subject" -msgstr "Meddelelse om indsendelsesfil" - -msgid "emails.notifySubmission.description" -msgstr "" -"En meddelelse fra en bruger sendt fra et indsendelsesinformationscenter " -"modal." - -msgid "emails.notifySubmission.body" -msgstr "" -"Du har en besked fra {$sender} vedrørende "{$submissionTitle}" " -"({$monographDetailsUrl}):
\n" -"
\n" -"\t\t{$message}
\n" -"
\n" -"\t\t" - -msgid "emails.notifySubmission.subject" -msgstr "Indsendelsesmeddelelse" - -msgid "emails.reviewReinstate.description" -msgstr "" -"Denne e-mail er afsendt af sektionsredaktøren til en bedømmer, som er i gang " -"med en bedømmelse for at underrette vedkommende om, at bedømmelsen er blevet " -"annulleret." - -msgid "emails.reviewReinstate.body" -msgstr "" -"{$reviewerName}:
\n" -"
\n" -"Vi vil gerne på ny anmode om, at du foretager en bedømmelse af indsendelsen, " -""{$submissionTitle}," for {$contextName}. Vi håber, at du har " -"mulighed for at hjælpe med dette tidsskrifts bedømmelsesproces.
\n" -"
\n" -"Du bedes kontakte mig, hvis du har spørgsmål." - -msgid "emails.reviewReinstate.subject" -msgstr "Anmodning om bedømmelse genindsat" - -msgid "emails.statisticsReportNotification.description" -msgstr "" -"Denne e-mail sendes automatisk en gang om måneden til redaktører og " -"tidsskriftschefer for at give dem et overblik over systemets tilstand." - -msgid "emails.statisticsReportNotification.body" -msgstr "" -"\n" -"{$name},
\n" -"
\n" -"Dit forlags tilstandsrapport for {$month}, {$year} er nu tilgængelig. De " -"statistiske nøgletal ses nedenfor.
\n" -"
    \n" -"\t
  • Nye indsendelser I denne måned: {$newSubmissions}
  • \n" -"\t
  • Afviste indsendelser I denne måned: {$declinedSubmissions}
  • \n" -"\t
  • Accepterede indsendelser i denne måned: {$acceptedSubmissions}
  • \n" -"\t
  • Systemets samlede antal indsendelser: {$totalSubmissions}
  • \n" -"
\n" -"Log ind på forlaget for at se flere oplysninger omredaktionelle udviklingstendenser og offentliggjorte artikelstatistikker. En " -"komplet kopi af denne måneds redaktionelle udvikling er vedhæftet.
\n" -"
\n" -"Med venlig hilsen
\n" -"{$principalContactSignature}" - -msgid "emails.statisticsReportNotification.subject" -msgstr "Redaktionel aktivitet for {$month}, {$year}" - -msgid "emails.announcement.description" -msgstr "Denne e-mail sendes, når der oprettes en ny meddelelse." - -msgid "emails.announcement.body" -msgstr "" -"{$title}
\n" -"
\n" -"{$summary}
\n" -"
\n" -"Besøg vores websted for at læse hele meddelelsen." - -msgid "emails.announcement.subject" -msgstr "{$title}" diff --git a/locale/da_DK/locale.po b/locale/da_DK/locale.po deleted file mode 100644 index 1e5af19ad5e..00000000000 --- a/locale/da_DK/locale.po +++ /dev/null @@ -1,1555 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28T15:10:04-08:00\n" -"PO-Revision-Date: 2021-01-16 12:53+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "common.publishedSubmission" -msgstr "Monografi" - -msgid "common.publishedSubmissions" -msgstr "Monografier" - -msgid "monograph.audience" -msgstr "Publikum" - -msgid "monograph.coverImage" -msgstr "Forsidebillede" - -msgid "monograph.currentCoverImageReload" -msgstr "Gem dine ændringer for at se det nye forsidebillede." - -msgid "monograph.audience.rangeQualifier" -msgstr "Publikums kvalitetsrangering" - -msgid "monograph.audience.rangeFrom" -msgstr "Publikums rangering (fra)" - -msgid "monograph.audience.rangeTo" -msgstr "Publikums rangering (til)" - -msgid "monograph.audience.rangeExact" -msgstr "Publikums rangering (præcis)" - -msgid "monograph.languages" -msgstr "Sprog (engelsk, fransk, spansk)" - -msgid "monograph.publicationFormats" -msgstr "Publikationsformat" - -msgid "monograph.publicationFormat" -msgstr "Format" - -msgid "monograph.publicationFormatDetails" -msgstr "Detaljer om det tilgængelige publikationsformat: {$format}" - -msgid "monograph.miscellaneousDetails" -msgstr "Detaljer om denne monografi" - -msgid "monograph.carousel.publicationFormats" -msgstr "Formater:" - -msgid "monograph.type" -msgstr "Indsendelsestype" - -msgid "submission.pageProofs" -msgstr "Korrekturside" - -msgid "monograph.proofReadingDescription" -msgstr "Layoutredaktøren uploader de produktionsklare filer, der er klar til offentliggørelse her. Brug + Tildel til at udpege forfattere og andre til korrekturlæsning af tilrettede korrektursider, der er uploadet til godkendelse, inden de offentliggøres." - -msgid "monograph.task.addNote" -msgstr "Føj til opgave" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Open Access" - -msgid "monograph.publicationFormat.imprint" -msgstr "Mærke (Brand Name)" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Sidetæller" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Præliminærsider (fortekst)" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Subsidiærsider (sider efter bogens hovedtekst)" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Produktsammensætning" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Produktsammensætning (ikke påkrævet)" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Produktidentifikation" - -msgid "monograph.publicationFormat.price" -msgstr "Pris" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "En pris er påkrævet." - -msgid "monograph.publicationFormat.priceType" -msgstr "Pristype" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Rabatprocent, hvis det er relevant" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Produkttilgængelighed" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Returindikator" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Digitalinformation" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Fysiske dimensioner" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Filstørrelse i Mbytes" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Indtast din egen filstørrelsesværdi?" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Højde" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Tykkelse" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Vægt" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Bredde" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Fremstillingsland" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Digital teknisk beskyttelse" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Produktdistributionsregion" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Beskatningsprocent" - -msgid "monograph.publicationFormat.taxType" -msgstr "Beskatningstype" - -msgid "monograph.publicationFormat.formatMetadata" -msgstr "Formater metadata" - -msgid "monograph.publicationFormat.isApproved" -msgstr "Medtag metadataene for dette publikationsformat i katalogposten for denne bog." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Manglende markeder og priser." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Mangler en identifikationskode." - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Mangler nogle metadatafelter." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "

Det valgte publikationsformat eksisterer ikke længere for denne monografi.

" - -msgid "monograph.publicationFormat.openTab" -msgstr "Åbn fanebladet for publikationsformat." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Publikationsformat" - -msgid "grid.catalogEntry.nameRequired" -msgstr "Et navn kræves." - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "En gyldig pris er påkrævet." - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Formatdetaljer" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Fysisk format" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Dette format vil være tilgængeligt på et separat websted" - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL til indhold hos ekstern vært" - -msgid "grid.catalogEntry.monographRequired" -msgstr "Der kræves en monografisk id." - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Der skal vælges et publikationsformat." - -msgid "grid.catalogEntry.availability" -msgstr "Tilgængelighed" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Tilgængelig" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Ikke tilgængelig" - -msgid "grid.catalogEntry.proof" -msgstr "Korrektur" - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Godkendelse af format" - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "

Godkend metadataene for dette format. Metadata kan kontrolleres fra katalogposten

" - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

Angiv, at metadataene for dette format ikke er blevet godkendt.

" - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Format-tilgængelighed" - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "

Gør dette format tilgængeligt for læsere. Downloadbare filer og andre distributioner vises i bogens katalogpost.

" - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

Dette format vil ikke være tilgængeligt for læsere. Eventuelle " -"filer der kan downloades eller andre distributioner vises ikke længere i " -"bogens katalogpost.

" - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Katalogpost ikke godkendt." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Format ikke i katalogpost." - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Korrektur ikke godkendt." - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Godkendt" - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Afventer godkendelse" - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "En filstørrelse til digitale formater er påkrævet." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "En produkttilgængelighedskode er påkrævet." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Der skal vælges en produktsammensætningskode." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Kodeværdi" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "ONIX kodetype" - -msgid "grid.catalogEntry.codeRequired" -msgstr "Der kræves en identifikationskode." - -msgid "grid.catalogEntry.valueRequired" -msgstr "Der kræves en værdi." - -msgid "grid.catalogEntry.salesRights" -msgstr "Salgsrettigheder" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Kodeværdi" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Salgsrettighedstype" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Resten af verden?" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "" -"Markér dette felt for at bruge denne salgsrettighedsindgang som en " -"fællesbetegnelse til dit format. Lande og regioner behøver ikke vælges i " -"dette tilfælde." - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "Der er allerede defineret en ROW-salgstype (resten af verden) til dette publikationsformat." - -msgid "grid.catalogEntry.countries" -msgstr "Lande" - -msgid "grid.catalogEntry.regions" -msgstr "Regioner" - -msgid "grid.catalogEntry.included" -msgstr "Inkluderet" - -msgid "grid.catalogEntry.excluded" -msgstr "Ekskluderet" - -msgid "grid.catalogEntry.markets" -msgstr "Markedsområder" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Område" - -msgid "grid.catalogEntry.publicationDates" -msgstr "Publikationsdatoer" - -msgid "grid.catalogEntry.roleRequired" -msgstr "Der kræves en repræsentativ rolle." - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Et datoformat er påkrævet." - -msgid "grid.catalogEntry.dateValue" -msgstr "Dato" - -msgid "grid.catalogEntry.dateRole" -msgstr "Rolle" - -msgid "grid.catalogEntry.dateFormat" -msgstr "Datoformat" - -msgid "grid.catalogEntry.dateRequired" -msgstr "En dato er påkrævet, og datoen skal svare til det valgte datoformat." - -msgid "grid.catalogEntry.representatives" -msgstr "Repræsentanter" - -msgid "grid.catalogEntry.representativeType" -msgstr "Repræsentativ type" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agenter" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Leverandører" - -msgid "grid.catalogEntry.agent" -msgstr "Agent" - -msgid "grid.catalogEntry.agentTip" -msgstr "Du kan vælge en agent til at repræsentere dig i dette prædefinerede område. Det kræves ikke." - -msgid "grid.catalogEntry.supplier" -msgstr "Leverandør" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Vælg en rolle:" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Rolle" - -msgid "grid.catalogEntry.representativeName" -msgstr "Navn" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Telefon" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "E-mail-adresse" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Website" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Repræsentant-ID" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Repræsenttant-ID-type (GNL anbefales)" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "Du kan efterlade følgende afsnit tomt, hvis du leverer dine egne tjenester til dine kunder." - -msgid "grid.action.addRepresentative" -msgstr "Tilføj repræsentant" - -msgid "grid.action.editRepresentative" -msgstr "Redigér denne repræsentant" - -msgid "grid.action.deleteRepresentative" -msgstr "Slet denne repræsentant" - -msgid "spotlight" -msgstr "Spotlight" - -msgid "spotlight.spotlights" -msgstr "Spotlights" - -msgid "spotlight.noneExist" -msgstr "Der er ingen aktuelle spotlights." - -msgid "spotlight.title.homePage" -msgstr "I spotlightet" - -msgid "spotlight.author" -msgstr "Forfatter, " - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Spotlight-element" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Homepage" - -msgid "grid.content.spotlights.form.location" -msgstr "Spotlights-område" - -msgid "grid.content.spotlights.form.item" -msgstr "Indtast spotlightet titel (autofuldførelse)" - -msgid "grid.content.spotlights.form.title" -msgstr "Spotlight-titel" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Bog" - -msgid "grid.content.spotlights.itemRequired" -msgstr "Et element er påkrævet." - -msgid "grid.content.spotlights.titleRequired" -msgstr "En spotlight-titel er påkrævet." - -msgid "grid.content.spotlights.locationRequired" -msgstr "Vælg en placering til dette spotlight." - -msgid "grid.action.editSpotlight" -msgstr "Redigér dette spotlight" - -msgid "grid.action.deleteSpotlight" -msgstr "Slet dette spotlight" - -msgid "grid.action.addSpotlight" -msgstr "Tilføj spotlight" - -msgid "manager.series.open" -msgstr "Åbn indsendelser" - -msgid "manager.series.indexed" -msgstr "Indekseret" - -msgid "grid.libraryFiles.column.files" -msgstr "Filer" - -msgid "grid.action.catalogEntry" -msgstr "Se katalogpostens formular" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Format vises i katalogposten" - -msgid "grid.action.editFormat" -msgstr "Redigér dette format" - -msgid "grid.action.deleteFormat" -msgstr "Slet dette format" - -msgid "grid.action.addFormat" -msgstr "Tilføj publikationsformat" - -msgid "grid.action.approveProof" -msgstr "Godkend korrektur til indeksering og inkludering i kataloget" - -msgid "grid.action.pageProofApproved" -msgstr "Korrekturfilen er klat til publicering" - -msgid "grid.action.addAnnouncement" -msgstr "Tilføj en meddelelse" - -msgid "grid.action.newCatalogEntry" -msgstr "Ny katalogpost" - -msgid "grid.action.publicCatalog" -msgstr "Se dette element i katalog" - -msgid "grid.action.feature" -msgstr "Skift funktionsdisplayet" - -msgid "grid.action.featureMonograph" -msgstr "Vis dette i katalogkarusellen" - -msgid "grid.action.releaseMonograph" -msgstr "Markér denne indsendelse som en 'ny udgivelse'" - -msgid "grid.action.manageCategories" -msgstr "Konfigurér kategorier til dette forlag" - -msgid "grid.action.manageSeries" -msgstr "Konfigurér serier til dette forlag" - -msgid "grid.action.addCode" -msgstr "Tilføj kode" - -msgid "grid.action.editCode" -msgstr "Redigér kode" - -msgid "grid.action.deleteCode" -msgstr "Slet koden" - -msgid "grid.action.addRights" -msgstr "Tilføj salgsrettigheder" - -msgid "grid.action.editRights" -msgstr "Redigér disse rettigheder" - -msgid "grid.action.deleteRights" -msgstr "Slet disse rettigheder" - -msgid "grid.action.addMarket" -msgstr "Tilføj marked" - -msgid "grid.action.editMarket" -msgstr "Redigér dette marked" - -msgid "grid.action.deleteMarket" -msgstr "Slet dette marked" - -msgid "grid.action.addDate" -msgstr "Tilføj publiceringsdato" - -msgid "grid.action.editDate" -msgstr "Redigér denne dato" - -msgid "grid.action.deleteDate" -msgstr "Slet denne dato" - -msgid "grid.action.createContext" -msgstr "Opret et nyt forlag" - -msgid "grid.action.publicationFormatTab" -msgstr "Vis fanen med publikationsformat" - -msgid "grid.action.moreAnnouncements" -msgstr "Gå til siden med forlagsmeddelelser" - -msgid "grid.action.submissionEmail" -msgstr "Klik for at læse denne e-mail" - -msgid "grid.action.approveProofs" -msgstr "Se korrekturnet" - -msgid "grid.action.proofApproved" -msgstr "Der er læst korrektur på formatet" - -msgid "grid.action.availableRepresentation" -msgstr "Godkend/afvis dette format" - -msgid "grid.action.formatAvailable" -msgstr "Slå tilgængeligheden af dette format til og fra" - -msgid "grid.reviewAttachments.add" -msgstr "Tilføj vedhæftet fil til bedømmelse" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Tilgængelige filer" - -msgid "series.series" -msgstr "Serier" - -msgid "series.featured.description" -msgstr "Denne serie vises på hovednavigationsmenuen" - -msgid "series.path" -msgstr "Sti" - -msgid "catalog.manage" -msgstr "Katalogstyring" - -msgid "catalog.manage.newReleases" -msgstr "Nye udgivelser" - -msgid "catalog.manage.category" -msgstr "Kategori" - -msgid "catalog.manage.series" -msgstr "Serier" - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series.issn.validation" -msgstr "Indtast et gyldigt ISSN." - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "Online og print ISSN må ikke være det samme." - -msgid "catalog.manage.series.onlineIssn" -msgstr "Online ISSN" - -msgid "catalog.manage.series.printIssn" -msgstr "Print ISSN" - -msgid "catalog.selectSeries" -msgstr "Vælg serier" - -msgid "catalog.selectCategory" -msgstr "Vælg kategori" - -msgid "catalog.manage.homepageDescription" -msgstr "Forsidebilledet af udvalgte bøger vises øverst på hjemmesiden som en scrolbar opsætning. Klik på 'Udvælg' og derefter på stjernen for at tilføje en bog til karrusellen; klik på udråbstegn for at markere, at det er en ny udgivelse; træk og slip for at bestille." - -msgid "catalog.manage.categoryDescription" -msgstr "Klik på 'Udvælg' og derefter på stjernen for at vælge en fremhævet bog til denne kategori; træk og slip for at bestille." - -msgid "catalog.manage.seriesDescription" -msgstr "Klik på \"Udvælg\" og derefter på stjernen for at vælge en fremhævet bog til denne serie; træk og slip for at bestille. Serier identificeres med en redaktør og en serietitel inden for en kategori eller uafhængigt." - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Karrusel" - -msgid "catalog.manage.newRelease" -msgstr "Udgivelse" - -msgid "catalog.manage.manageSeries" -msgstr "Administrér serien" - -msgid "catalog.manage.manageCategories" -msgstr "Administrér kategorier" - -msgid "catalog.manage.noMonographs" -msgstr "Der er ingen tildelte monografier." - -msgid "catalog.manage.featured" -msgstr "Udvalgt" - -msgid "catalog.manage.categoryFeatured" -msgstr "Udvalgt i kategori" - -msgid "catalog.manage.seriesFeatured" -msgstr "Udvalgt i serier" - -msgid "catalog.manage.featuredSuccess" -msgstr "Monografi er udvalgt." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Monografi er ikke udvalgt." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Monografi er markeret som en ny udgivelse." - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Monografi er ikke markeret som ny udgivelse." - -msgid "catalog.manage.feature.newRelease" -msgstr "Ny udgivelse" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Ny udgivelse i kategori" - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Ny udgivelse i serie" - -msgid "catalog.manage.nonOrderable" -msgstr "Denne monografi kan ikke bestilles, før den er blevet udvalgt." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Søg efter titel eller forfatter" - -msgid "catalog.noTitles" -msgstr "Der er endnu ikke offentliggjort nogen titler." - -msgid "catalog.noTitlesNew" -msgstr "Der er ingen nye udgivelser i øjeblikket." - -msgid "catalog.noTitlesSearch" -msgstr "Der blev ikke fundet nogen titler, der matcher din søgning efter \"{$searchQuery}\"." - -msgid "catalog.feature" -msgstr "Udvælg" - -msgid "catalog.featured" -msgstr "Udvalgt" - -msgid "catalog.featuredBooks" -msgstr "Udvalgte bøger" - -msgid "catalog.foundTitleSearch" -msgstr "Der blev fundet en titel, der matchede din søgning efter \"{$searchQuery}\"." - -msgid "catalog.foundTitlesSearch" -msgstr "{$number} titler blev fundet, der matchede din søgning efter \"{$searchQuery}\"." - -msgid "catalog.category.heading" -msgstr "Alle bøger" - -msgid "catalog.newReleases" -msgstr "Nye udgivelser" - -msgid "catalog.dateAdded" -msgstr "Tilføjet" - -msgid "catalog.publicationInfo" -msgstr "Publikationsinfo" - -msgid "catalog.published" -msgstr "Publiceret" - -msgid "catalog.forthcoming" -msgstr "Kommende" - -msgid "catalog.categories" -msgstr "Kategorier" - -msgid "catalog.parentCategory" -msgstr "Hovedkategori" - -msgid "catalog.category.subcategories" -msgstr "Underkategorier" - -msgid "catalog.aboutTheAuthor" -msgstr "Om {$roleName}en" - -msgid "catalog.loginRequiredForPayment" -msgstr "Bemærk: For at købe varer skal du først logge ind. Valg af en vare, der skal købes, leder dig til login-siden. Enhver vare, der er markeret med et Open Access-ikon, kan downloades gratis uden at logge ind." - -msgid "catalog.sortBy" -msgstr "Sortering af monografier" - -msgid "catalog.sortBy.seriesDescription" -msgstr "Vælg hvordan du sorterer bøger i denne serie." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Vælg hvordan du sorterer bøger i denne kategori." - -msgid "catalog.sortBy.catalogDescription" -msgstr "Vælg hvordan du sorterer bøger i dette katalog." - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Serieposition (lavest først)" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Serieposition (højest først)" - -msgid "catalog.viewableFile.title" -msgstr "{$type} visning af filen {$title}" - -msgid "catalog.viewableFile.return" -msgstr "Vend tilbage for at se detaljer om {$monographTitle}" - -msgid "common.prefix" -msgstr "Præfiks" - -msgid "common.preview" -msgstr "Vis" - -msgid "common.feature" -msgstr "Udvælg" - -msgid "common.searchCatalog" -msgstr "Søg i katalog" - -msgid "common.moreInfo" -msgstr "Mere information" - -msgid "common.listbuilder.completeForm" -msgstr "Udfyld venligst hele formularen." - -msgid "common.listbuilder.selectValidOption" -msgstr "Vælg en gyldig mulighed fra listen." - -msgid "common.listbuilder.itemExists" -msgstr "Du kan ikke tilføje den samme element to gange." - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.homePageHeader.altText" -msgstr "Homepage Header" - -msgid "navigation.catalog" -msgstr "Katalog" - -msgid "navigation.competingInterestPolicy" -msgstr "Konkurrerende interessepolitik" - -msgid "navigation.catalog.allMonographs" -msgstr "Alle monografier" - -msgid "navigation.catalog.manage" -msgstr "Administrér" - -msgid "navigation.catalog.administration.short" -msgstr "Administration" - -msgid "navigation.catalog.administration" -msgstr "Katalogadministration" - -msgid "navigation.catalog.administration.categories" -msgstr "Kategorier" - -msgid "navigation.catalog.administration.series" -msgstr "Serier" - -msgid "navigation.infoForAuthors" -msgstr "Til forfattere" - -msgid "navigation.infoForLibrarians" -msgstr "Til bibliotekarer" - -msgid "navigation.infoForAuthors.long" -msgstr "Information til forfattere" - -msgid "navigation.infoForLibrarians.long" -msgstr "Information til bibliotekarer" - -msgid "navigation.newReleases" -msgstr "Nye udgivelser" - -msgid "navigation.published" -msgstr "Publiceret" - -msgid "navigation.wizard" -msgstr "Guide" - -msgid "navigation.linksAndMedia" -msgstr "Links til sociale medier" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Link til dit katalog." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Serier" - -msgid "navigation.navigationMenus.series.description" -msgstr "Link til en serie." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Kategori" - -msgid "navigation.navigationMenus.category.description" -msgstr "Link til en kategori." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Nye udgivelser" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Link til dine nye udgivelser." - -msgid "context.contexts" -msgstr "Forlag" - -msgid "press.path" -msgstr "Sti" - -msgid "context.context" -msgstr "Forlag" - -msgid "context.current" -msgstr "Nyeste forlag:" - -msgid "context.select" -msgstr "Skift til et andet forlag:" - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Inkludér brugere uden roller hos dette forlag." - -msgid "user.noRoles.submitMonograph" -msgstr "Indsend et forslag" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Indsend en monografi: Forfatterregistrering er i øjeblikket deaktiveret." - -msgid "user.noRoles.regReviewer" -msgstr "Registrér dig som bedømmer" - -msgid "user.noRoles.regReviewerClosed" -msgstr "" -"Registrér dig som bedømmer: bedømmerregistrering er i øjeblikket deaktiveret." - -msgid "user.reviewerPrompt" -msgstr "Vil du være villig til at bedømme indsendelser fra dette forlag?" - -msgid "user.reviewerPrompt.userGroup" -msgstr "Ja, anmod om rollen {$userGroup}." - -msgid "user.reviewerPrompt.optin" -msgstr "Ja, jeg vil gerne kontaktes med anmodninger om at bedømme indsendelser fra denne presse." - -msgid "user.register.contextsPrompt" -msgstr "Hvilke forlag på dette websted vil du gerne registreres hos?" - -msgid "user.register.otherContextRoles" -msgstr "Anmod om følgende roller." - -msgid "user.register.noContextReviewerInterests" -msgstr "Hvis du anmodede om at være bedømmer hos et forlag, skal du indtaste dine emneinteresser." - -msgid "user.role.manager" -msgstr "Forlagschef" - -msgid "user.role.pressEditor" -msgstr "Forlagsredaktør" - -msgid "user.role.subEditor" -msgstr "Serieredaktør" - -msgid "user.role.copyeditor" -msgstr "Manuskriptredaktør" - -msgid "user.role.proofreader" -msgstr "Korrekturlæser" - -msgid "user.role.productionEditor" -msgstr "Produktionsredaktør" - -msgid "user.role.managers" -msgstr "Forlagschefer" - -msgid "user.role.subEditors" -msgstr "Serieredaktører" - -msgid "user.role.editors" -msgstr "Redaktører" - -msgid "user.role.copyeditors" -msgstr "Manuskriptredaktører" - -msgid "user.role.proofreaders" -msgstr "Korrekturlæsere" - -msgid "user.role.productionEditors" -msgstr "Produktionsredaktører" - -msgid "user.register.selectContext" -msgstr "Vælg det forlag, du vil registreres hos:" - -msgid "user.register.noContexts" -msgstr "Der er ingen forlag, du kan registreres hos på dette websted." - -msgid "user.register.privacyStatement" -msgstr "Erklæring om beskyttelse af personlige oplysninger" - -msgid "user.register.registrationDisabled" -msgstr "Dette forlag accepterer i øjeblikket ikke brugerregistreringer." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Det password, du indtastede, er ikke langt nok." - -msgid "user.register.readerDescription" -msgstr "Informeres via e-mail ved publicering af en monografi." - -msgid "user.register.authorDescription" -msgstr "I stand til at indsende poster til forlaget." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "" -"Villig til at foretage fagfællebedømmelser af indsendelser til forlaget." - -msgid "user.register.reviewerDescription" -msgstr "" -"Villig til at foretage fagfællebedømmelser af indsendelser til dette websted." - -msgid "user.register.reviewerInterests" -msgstr "Indkreds bedømmerinteresser (væsentlige emneområder og forskningsmetoder):" - -msgid "user.register.form.userGroupRequired" -msgstr "Du skal vælge mindst én rolle" - -msgid "site.pressView" -msgstr "Se forlagets websted" - -msgid "about.pressContact" -msgstr "Forlagskontakt" - -msgid "about.aboutContext" -msgstr "Om forlaget" - -msgid "about.editorialTeam" -msgstr "Redaktionsmedlemmer" - -msgid "about.editorialPolicies" -msgstr "Redaktionelle politikker" - -msgid "about.focusAndScope" -msgstr "Fokusområde" - -msgid "about.seriesPolicies" -msgstr "Serie- og kategoripolitikker" - -msgid "about.submissions" -msgstr "Indsendelser" - -msgid "about.onlineSubmissions" -msgstr "Online-indsendelser" - -msgid "about.onlineSubmissions.login" -msgstr "Login" - -msgid "about.onlineSubmissions.register" -msgstr "Registrér" - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} eller {$register} for at foretage en indsendelse." - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} eller {$viewSubmissions}." - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Foretag en ny indsendelse" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "se dine igangværende indsendelser" - -msgid "about.authorGuidelines" -msgstr "Forfattervejledninger" - -msgid "about.submissionPreparationChecklist" -msgstr "Tjekliste til forberedelse af indsendelse" - -msgid "about.submissionPreparationChecklist.description" -msgstr "Som en del af indsendelsesprocessen er forfattere forpligtet til at kontrollere, at deres indsendelse er i overensstemmelse med følgende punkter. Indsendelser kan returneres til forfattere, der ikke overholder disse retningslinjer." - -msgid "about.copyrightNotice" -msgstr "Oplysninger om copyright" - -msgid "about.privacyStatement" -msgstr "Erklæring om beskyttelse af personlige oplysninger" - -msgid "about.reviewPolicy" -msgstr "Fagfællebedømmelsesproces" - -msgid "about.publicationFrequency" -msgstr "Publikationsfrekvens" - -msgid "about.openAccessPolicy" -msgstr "Open Access-politik" - -msgid "about.pressSponsorship" -msgstr "Forlagssponsorering" - -msgid "about.aboutThisPublishingSystem" -msgstr "" -"Mere information om publiceringssystemet, platform og workflow fra OMP / PKP." - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "OMP redaktions- og publiceringsproces" - -msgid "about.aboutOMPPress" -msgstr "" -"Dette forlag bruger Open Monograph Press {$ompVersion}, som er open source-" -"redigerings- og publiceringssoftware, udviklet, understøttet og frit " -"distribueret af Public Knowledge Project under GNU General Public License. " -"Besøg PKP's websted for at lære mere om " -"softwaren. Kontakt forlaget direkte med " -"spørgsmål om forlaget og indsendelser til forlaget." - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "" -"Dette websted bruger Open Monograph Press {$ompVersion}, som er open source-" -"redigerings- og publiceringssoftware udviklet, understøttet og frit " -"distribueret af Public Knowledge Project " -"under GNU General Public License." - -msgid "help.searchReturnResults" -msgstr "Vend tilbage til søgeresultater" - -msgid "help.goToEditPage" -msgstr "Åbn en ny side for at redigere disse oplysninger" - -msgid "installer.appInstallation" -msgstr "OMP-installation" - -msgid "installer.ompUpgrade" -msgstr "OMP-opgradering" - -msgid "installer.installApplication" -msgstr "Installér Open Monograph Press" - -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

Tak fordi du downloadede the Public Knowledge Project's Open " -"Monograph Press {$version}. Før du fortsætter, skal du læse filen <" -"a href=\"{$baseUrl}/docs/README\">README, der følger med denne software. " -"For at få mere information om Public Knowledge Project og dets " -"softwareprojekter, kan du besøge PKP web site. Hvis du har fejlrapporter eller teknisk " -"supporthenvendelser om Open Monograph Press, kan du se supportforum eller besøge " -"PKP's online bug " -"reporting system. Selvom supportforummet er den foretrukne kontaktform, " -"kan du også e-maile teamet via pkp.contact@gmail.com.

\n" - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Før-installations-foranstaltninger" - -msgid "installer.preInstallationInstructions" -msgstr "" -"

1. Følgende filer og mapper (og deres indhold) skal gøres skrivbare:

\n" -"
    \n" -"
  • config.inc.php er skrivbar (valgfrit): {$writable_config}
  • \n" -"
  • public/ er skrivbar: {$writable_public}
  • \n" -"
  • cache/ er skrivbar: {$writable_cache}
  • \n" -"
  • cache/t_cache/ er skrivbar: {$writable_templates_cache}
  • \n" -"
  • cache/t_compile/ er skrivbar: {$writable_templates_compile}
  • " -"\n" -"
  • cache/_db er skrivbar: {$writable_db_cache}
  • \n" -"
\n" -"\n" -"

2. Et bibliotek til lagring af uploadede filer skal oprettes og gøres " -"skrivbart (se \"Filindstillinger\" nedenfor).

" - -msgid "installer.upgradeInstructions" -msgstr "" -"

OMP Version {$version}

\n" -"\n" -"

Tak fordi du downloadede the Public Knowledge Project's Open " -"Monograph Press. Før du fortsætter, skal du læse filen READMEog UPGRADErefiler, der følger med denne software. For at få mere " -"information om Public Knowledge Project og dets softwareprojekter, kan du " -"besøge PKP web site. " -"Hvis du har fejlrapporter eller teknisk supporthenvendelser om Open " -"Monograph Press, kan du se supportforum eller besøge PKP's online bug reporting system. Selvom " -"supportforummet er den foretrukne kontaktform, kan du også e-maile teamet " -"via pkp.contact@gmail.com.

\n" -"

Det anbefales på det kraftigste, at du " -"sikkerhedskopierer din database, filmappe og OMP installationsmappe, før du " -"fortsætter.

\n" -"

Hvis du kører i PHP Safe Mode , skal du sikre dig, at max_execution_time-" -"direktivet i din php. ini-konfigurationsfil er sat til en høj grænse. Hvis " -"denne eller nogen anden tidsbegrænsning (f.eks. Apaches \"Timeout\"-direktiv)" -" er nået, og opgraderingsprocessen afbrydes, kræves manuel indgriben.

" - -msgid "installer.localeSettingsInstructions" -msgstr "" -"For at få en komplet understøttelse af Unicode (UTF-8) skal du vælge UTF-8 " -"for alle tegnsætsindstillinger. Bemærk, at denne support i øjeblikket kræver " -"en MySQL >= 4.1.1 or PostgreSQL >= 9.1.5 databaseserver. Bemærk også, at en " -"komplet Unicode-support kræver mbstring-biblioteket (aktiveret som standard i de " -"nyeste PHP-installationer). Du kan opleve problemer med at bruge udvidede " -"tegnsæt, hvis din server ikke opfylder disse krav.\n" -"

\n" -"Din server understøtter i øjeblikket mbstring: " -"{$supportsMBString}" - -msgid "installer.allowFileUploads" -msgstr "Din server tillader i øjeblikket filoverførsler: {$allowFileUploads}" - -msgid "installer.maxFileUploadSize" -msgstr "Din server tillader i øjeblikket en maksimal filoverførselsstørrelse på: {$maxFileUploadSize}" - -msgid "installer.localeInstructions" -msgstr "Det primære sprog, der skal bruges til dette system. Se OMP-dokumentationen, hvis du er interesseret i support til sprog, der ikke er nævnt her." - -msgid "installer.additionalLocalesInstructions" -msgstr "Vælg supplerende sprog, der skal understøttes i dette system. Disse sprog vil være tilgængelige til brug af forlag, der er tilknyttet dette websted. Supplerende sprog kan også installeres når som helst fra websteds-administrationens interface. Sprog (locales) markeret * kan være ufuldstændige." - -msgid "installer.filesDirInstructions" -msgstr "Indtast det fulde stinavn til et eksisterende bibliotek, hvor uploadede filer skal opbevares. Dette bibliotek bør ikke være direkte tilgængeligt på internettet. Sørg for, at dette bibliotek er oprettet og skrivbart før installation. Windows-stinavne skal bruge retvendt skråstreg, f.eks. \"C:/mypress/filer\"." - -msgid "installer.databaseSettingsInstructions" -msgstr "OMP kræver adgang til en SQL-database for at gemme des data. Se systemkravene ovenfor der indeholder en liste over understøttede databaser. Angiv de indstillinger, der skal bruges for at oprette forbindelse til databasen i felterne herunder." - -msgid "installer.upgradeApplication" -msgstr "Opgradér Open Monograph Press" - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

VIGTIGT!

\n" -"

Installationsprogrammet kunne ikke automatisk overskrive konfigurationsfilen. Før du forsøger at bruge systemet, skal du åbne config.inc.php i en egnet teksteditor og erstatte dets indhold med indholdet i tekstfeltet nedenfor.

" - -msgid "installer.installationComplete" -msgstr "" -"

Installation af OMP er afsluttet.

\n" -"

For at begynde at bruge systemet skal du logge " -"ind med det brugernavn og adgangskode, der er indtastet på den forrige " -"side.

\n" -"

Hvis du ønsker at modtage nyheder og opdateringer, skal du " -"registrere dig på http://pkp.sfu.ca/omp/register. Hvis du har spørgsmål " -"eller kommentarer, kan du besøge supportforum.

" - -msgid "installer.upgradeComplete" -msgstr "" -"

Opgradering af OMP til version {$version} er afsluttet.

\n" -"

Glem ikke at indstille \"installeret\"-indstillingen i din config.inc.php " -"konfigurationsfil tilbage til On.

\n" -"

Hvis du ikke allerede har registreret dig og ønsker at modtage nyheder og " -"opdateringer, skal du registrere dig på http://pkp.sfu.ca/omp/register. " -" Hvis du har spørgsmål eller kommentarer, kan du besøge supportforum.

" - -msgid "log.review.reviewCleared" -msgstr "Runde {$round}-bedømmelsen af {$reviewerName} i forbindelse med indsendelse {$submissionId} er blevet ryddet." - -msgid "log.review.reviewDueDateSet" -msgstr "Forfaldsdato for runde {$round}-bedømmelsen af indsendelse {$submissionId} af {$reviewerName} er sat til {$dueDate}." - -msgid "log.review.reviewDeclined" -msgstr "{$reviewerName} har afvist runde {$round}-bedømmelsen i forbindelse med indsendelse {$submissionId}." - -msgid "log.review.reviewAccepted" -msgstr "{$reviewerName} har accepteret runde {$round}-bedømmelsen i forbindelse med indsendelse {$submissionId}." - -msgid "log.review.reviewUnconsidered" -msgstr "{$editorName} har markeret runde {$round}-bedømmelsen i forbindelse med indsendelse {$submissionId} som uovervejet." - -msgid "log.editor.decision" -msgstr "En redaktørbeslutning ({$decision}) i forbindelse med monografi {$submissionId} blev registreret af {$editorName}." - -msgid "log.editor.recommendation" -msgstr "" -"En redaktøranbefaling ({$decision}) i forbindelse med monografi " -"{$submissionId} blev registreret af {$editorName}." - -msgid "log.editor.archived" -msgstr "Indsendelsen {$submissionId} er blevet arkiveret." - -msgid "log.editor.restored" -msgstr "Indsendelsen {$submissionId} er gendannet og indsat i køen." - -msgid "log.editor.editorAssigned" -msgstr "{$editorName} er blevet valgt som redaktør i forbindelse med indsendelse {$submissionId}." - -msgid "log.proofread.assign" -msgstr "{$assignerName} har valgt {$proofreaderName} til at læse korrektur på {$submissionId}." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} har sendt {$submissionId} til planlægning." - -msgid "log.imported" -msgstr "{$userName} har importeret monografi {$submissionId}." - -msgid "notification.addedIdentificationCode" -msgstr "Identifikationskode tilføjet." - -msgid "notification.editedIdentificationCode" -msgstr "Identifikationskode redigeret." - -msgid "notification.removedIdentificationCode" -msgstr "Identifikationskode fjernet." - -msgid "notification.addedPublicationDate" -msgstr "Publiceringsdato tilføjet." - -msgid "notification.editedPublicationDate" -msgstr "Publiceringsdato redigeret." - -msgid "notification.removedPublicationDate" -msgstr "Publiceringsdato fjernet." - -msgid "notification.addedPublicationFormat" -msgstr "Publiceringsformat tilføjet." - -msgid "notification.editedPublicationFormat" -msgstr "Publiceringsformat redigeret." - -msgid "notification.removedPublicationFormat" -msgstr "Publiceringsformat fjernet." - -msgid "notification.addedSalesRights" -msgstr "Salgsrettigheder tilføjet." - -msgid "notification.editedSalesRights" -msgstr "Salgsrettigheder redigeret." - -msgid "notification.removedSalesRights" -msgstr "Salgsrettigheder fjernet." - -msgid "notification.addedRepresentative" -msgstr "Repræsentant tilføjet." - -msgid "notification.editedRepresentative" -msgstr "Repræsentant redigeret." - -msgid "notification.removedRepresentative" -msgstr "Repræsentant fjernet." - -msgid "notification.addedMarket" -msgstr "Marked tilføjet." - -msgid "notification.editedMarket" -msgstr "Marked redigeret." - -msgid "notification.removedMarket" -msgstr "Marked fjernet." - -msgid "notification.addedSpotlight" -msgstr "Spotlight tilføjet." - -msgid "notification.editedSpotlight" -msgstr "Spotlight redigeret." - -msgid "notification.removedSpotlight" -msgstr "Spotlight fjernet." - -msgid "notification.savedCatalogMetadata" -msgstr "Katalog-metadata gemt." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Metadata for publikationsformat gemt." - -msgid "notification.proofsApproved" -msgstr "Korrektur godkendt." - -msgid "notification.removedSubmission" -msgstr "Indsendelse slettet." - -msgid "notification.type.submissionSubmitted" -msgstr "En ny monografi, \"{$title},\" er blevet indsendt." - -msgid "notification.type.editing" -msgstr "Redigeringsforløb" - -msgid "notification.type.reviewing" -msgstr "Bedømmelsesforløb" - -msgid "notification.type.site" -msgstr "Websitehændelser" - -msgid "notification.type.submissions" -msgstr "Indsendelseforløb" - -msgid "notification.type.userComment" -msgstr "En læser har kommenteret \"{$title}\"." - -msgid "notification.type.public" -msgstr "Offentlige meddelelser" - -msgid "notification.type.editorAssignmentTask" -msgstr "Der er indsendt en ny monografi, som en redaktør skal tilknyttes." - -msgid "notification.type.copyeditorRequest" -msgstr "Du er blevet bedt om at gennemgå det tilrettede i forbindelse med \"{$file}\"." - -msgid "notification.type.layouteditorRequest" -msgstr "Du er blevet bedt om at gennemgå layout i forbindelse med \"{$title}\"." - -msgid "notification.type.indexRequest" -msgstr "Du er blevet bedt om at oprette et indeks i forbindelse med \"{$title}\"." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Intern bedømmelsesproces påbegyndt." - -msgid "notification.type.approveSubmission" -msgstr "Denne indsendelse afventer i øjeblikket godkendelse i katalogposterne, før den vises i det offentlige katalog." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Afventer godkendelse." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Der er ikke konfigureret nogen betalingsmetode." - -msgid "notification.type.configurePaymentMethod" -msgstr "En konfigureret betalingsmetode er påkrævet, før du kan definere indstillinger for e-handel." - -#, fuzzy -msgid "notification.type.visitCatalog" -msgstr "Monografien er godkendt. Gå til 'Katalog' for at indskrive dets katalogoplysninger ved hjælp af katalog-linket ovenfor." - -msgid "notification.type.visitCatalogTitle" -msgstr "Katalogstyring" - -msgid "user.authorization.invalidReviewAssignment" -msgstr "" -"Du er blevet nægtet adgang, fordi du ikke ser ud til at være en valid " -"bedømmer i forbindelse med denne monografi." - -msgid "user.authorization.monographAuthor" -msgstr "" -"Du er blevet nægtet adgang, fordi du ikke ser ud til af være forfatter til " -"denne monografi." - -msgid "user.authorization.monographReviewer" -msgstr "" -"Du er blevet nægtet adgang, fordi du ikke synes at være blevet tildelt " -"bedømmerrollen til denne monografi." - -msgid "user.authorization.monographFile" -msgstr "Du er blevet nægtet adgang til den angivne monografi-fil." - -msgid "user.authorization.invalidMonograph" -msgstr "Ugyldig monografi eller ingen monografi efterspurgt!" - -msgid "user.authorization.noContext" -msgstr "Intet forlag i denne sammenhæng!" - -msgid "user.authorization.seriesAssignment" -msgstr "Du forsøger at få adgang til en monografi, der ikke er en del af din serie." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Adgang nægtet! Du er ikke blevet tilknyttet dette redaktionelle trin." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "" -"Adgang nægtet! Den brugergruppe, du i øjeblikket er en del af, er ikke " -"tilknyttet dette redaktionelle trin. Kontrollér dine forlagsindstillinger." - -msgid "payment.directSales" -msgstr "Download fra forlagets webside" - -msgid "payment.directSales.price" -msgstr "Pris" - -msgid "payment.directSales.availability" -msgstr "Tilgængelighed" - -msgid "payment.directSales.catalog" -msgstr "Katalog" - -msgid "payment.directSales.approved" -msgstr "Godkendt" - -msgid "payment.directSales.priceCurrency" -msgstr "Pris ({$currency})" - -msgid "payment.directSales.numericOnly" -msgstr "Priserne må kun være numeriske. Medtag ikke valutasymboler." - -msgid "payment.directSales.directSales" -msgstr "Direkte salg" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.notAvailable" -msgstr "Ikke tilgængelig" - -msgid "payment.directSales.notSet" -msgstr "Ikke indstillet" - -msgid "payment.directSales.openAccess" -msgstr "Open Access" - -msgid "payment.directSales.price.description" -msgstr "Filformater kan stilles til rådighed via download fra forlagets websted gennem enten Open Access uden omkostninger for læsere eller direkte salg (ved hjælp af en online betalings-processor, som konfigureres under Distribuering). Angiv hvilken adgang, der gælder for denne fil." - -msgid "payment.directSales.validPriceRequired" -msgstr "En gyldig numerisk pris er påkrævet." - -msgid "payment.directSales.purchase" -msgstr "Køb {$format} ({$amount} {$currency})" - -msgid "payment.directSales.download" -msgstr "Download {$format}" - -msgid "payment.directSales.monograph.name" -msgstr "Køb download af monografi eller kapitel" - -msgid "payment.directSales.monograph.description" -msgstr "Denne transaktion er til køb af et direkte download af en enkelt monografi eller et monografi-kapitel." - -msgid "debug.notes.helpMappingLoad" -msgstr "Genindlæst XML-hjælp til at kortlægge fil {$filename} på søgning efter {$id}." - -msgid "rt.metadata.pkp.dctype" -msgstr "Bog" - -msgid "submission.pdf.download" -msgstr "Download denne PDF-fil" - -msgid "user.profile.form.showOtherContexts" -msgstr "Registrer dig hos andre forlag" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Skjul andre forlag" - -msgid "submission.round" -msgstr "Runde {$round}" - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "" -"Monografien vises først i kataloget, når den er publiceret. For at tilføje " -"denne bog til kataloget skal du klikke på fanebladet Publicering." - -msgid "navigation.skip.spotlights" -msgstr "Spring til spotlights" - -msgid "common.publications" -msgstr "Monografier" - -msgid "common.publication" -msgstr "Monografi" - -msgid "submission.search" -msgstr "Bogsøgning" - -msgid "catalog.manage.isNotNewRelease" -msgstr "" -"Denne monografi er ikke blandt nye udgivelser. Indsæt denne monografi blandt " -"nye udgivelser." - -msgid "catalog.manage.isNewRelease" -msgstr "" -"Denne monografi er blandt nye udgivelser. Fjern denne monografi fra nye " -"udgivelser." - -msgid "catalog.manage.isNotFeatured" -msgstr "" -"Denne monografi er ikke udvalgt. Indsæt denne monografi blandt de udvalgte." - -msgid "catalog.manage.isFeatured" -msgstr "Denne monografi er udvalgt. Fjern denne monografi fra udvalgte." - -msgid "monograph.audience.success" -msgstr "Publikumdetaljerne er blevet opdateret." - -msgid "catalog.coverImageTitle" -msgstr "Forsidebillede" - -msgid "user.authorization.invalidPublishedSubmission" -msgstr "En ugyldig publiceret indsendelse blev angivet." - -msgid "submissionGroup.assignedSubEditors" -msgstr "Valgte redaktører" - -msgid "site.noPresses" -msgstr "Der er ingen forlag (udgivere) tilgængelige." - -msgid "user.register.form.privacyConsentThisContext" -msgstr "" -"Ja, jeg accepterer at få mine data indsamlet og opbevaret i overensstemmelse " -"med vores Erklæring om " -"beskyttelse af personlige oplysninger." - -msgid "catalog.manage.noSubmissionsSelected" -msgstr "Ingen indsendelse blev udvalgt til kataloget." - -msgid "catalog.manage.findSubmissions" -msgstr "Find monografier til kataloget" - -msgid "user.authorization.representationNotFound" -msgstr "Det ønskede publiceringsformat blev ikke fundet." - -msgid "catalog.manage.submissionsNotFound" -msgstr "En eller flere af indsendelserne blev ikke fundet." - -msgid "about.aboutSoftware" -msgstr "Om Open Monograph Press" - -msgid "common.payments" -msgstr "Betalinger" - -msgid "installer.updatingInstructions" -msgstr "" -"Såfremt du opgraderer en eksisterende installation af OMP, skal du klikke her for at fortsætte." diff --git a/locale/da_DK/locale.xml b/locale/da_DK/locale.xml deleted file mode 100644 index 53e582dccdf..00000000000 --- a/locale/da_DK/locale.xml +++ /dev/null @@ -1,504 +0,0 @@ - - - - - - - Monografi - Monografier - Audience - Forsidebillede - Gem dine ændringer for at se det nye forsidebillede. - Audience Range Qualifier - Audience Range (from) - Audience Range (to) - Audience Range (exact) - Sprog (engelsk, fransk, spansk) - Publikationsformat - Format - Detaljer om det tilgængelige publikationsformat: {$format} - Detaljer om denne monografi - Formater: - Indsendelsestype - Korrekturside - + Tildel til at udpege forfattere og andre til korrekturlæsning af tilrettede korrektursider, der er uploadet til godkendelse, inden de offentliggøres.]]> - Føj til opgave - Open Access - Mærke (Brand Name) - Sidetæller - Præliminærsider (fortekst) - Subsidiærsider (sider efter bogens hovedtekst) - Produktsammensætning - Produktsammensætning (ikke påkrævet) - Produktidentifikation - Pris - En pris er påkrævet. - Pristype - Rabatprocent, hvis det er relevant - Produkttilgængelighed - Returindikator - Digitalinformation - Fysiske dimensioner - x - Filstørrelse i Mbytes - Indtast din egen filstørrelsesværdi? - Højde - Tykkelse - Vægt - Bredde - Fremstillingsland - Digital teknisk beskyttelse - Produktdistributionsregion - Beskatningsprocent - Beskatningstype - Formater metadata - Medtag metadataene for dette publikationsformat i katalogposten for denne bog. - Manglende markeder og priser. - Mangler en identifikationskode. - Mangler nogle metadatafelter. - Det valgte publikationsformat eksisterer ikke længere for denne monografi.

]]>
- Åbn fanebladet for publikationsformat. - Publikationsformat - Et navn kræves. - En gyldig pris er påkrævet. - Formatdetaljer - Fysisk format - Dette format vil være tilgængeligt på et separat websted - URL til indhold hos ekstern vært - Der kræves en monografisk id. - Der skal vælges et publikationsformat. - Tilgængelighed. - Tilgængelig - Ikke tilgængelig - Korrektur - Godkendelse af format - Godkend metadataene for dette format. Metadata kan kontrolleres fra katalogposten

]]>
- Angiv, at metadataene for dette format ikke er blevet godkendt.

]]>
- Format-tilgængelighed - Gør dette format tilgængeligt for læsere. Downloadbare filer og andre distributioner vises i bogens katalogpost.

]]>
- Dette format vil ikke være tilgængeligt for læsere. Eventuelle downloadbare filer eller andre distributioner vises ikke længere i bogens katalogpost.

]]>
- Katalogpost ikke godkendt. - Format ikke i katalogpost. - Korrektur ikke godkendt. - Godkendt - Afventer godkendelse - En filstørrelse til digitale formater er påkrævet. - En produkttilgængelighedskode er påkrævet. - Der skal vælges en produktsammensætningskode. - Kodeværdi - ONIX kodetype - Der kræves en identifikationskode. - Der kræves en værdi - Salgsrettigheder - Kodeværdi - Salgsrettighedstype - Resten af verden? - Marker dette felt for at bruge denne salgsrettighedsindgang som en fællesbetegnelse til dit format. Lande og regioner behøver ikke vælges i dette tilfælde. - Der er allerede defineret en ROW-salgstype (resten af verden) til dette publikationsformat. - - - Lande - Regioner - Inkluderet - Ekskluderet - - Markedsområder - Område - Publikationsdatoer - - Der kræves en repræsentativ rolle. - Et datoformat er påkrævet. - Dato - Rolle - Datoformat - En dato er påkrævet, og datoen skal svare til det valgte datoformat. - - Repræsentanter - Repræsentativ type - - Agenter - Leverandører - Agent - Du kan vælge en agent til at repræsentere dig i dette prædefinerede område. Det kræves ikke. - - Leverandør - Vælg en rolle: - Rolle - Navn - Telefon - E-mail-adresse - Website - - Repræsentant-ID - Repræsenttant-ID-type (GNL anbefales) - - Du kan efterlade følgende afsnit tomt, hvis du leverer dine egne tjenester til dine kunder. - Tilføj repræsentant - - Rediger denne repræsentant - Slet denne repræsentant - Spotlight - Spotlights - Der er ingen aktuelle spotlights. - - In the Spotlight - Forfatter, - Spotlight-element - Homepage - Spotlights-område - - Indtast spotlighted titel (autofuldførelse) - Spotlight-titel - Bog - Et element er påkrævet - En spotlight-titel er påkrævet - Vælg en placering til dette spotlight. - Rediger dette spotlight - Slet dette spotlight - Tilføj spotlight - Åbn indsendelser - Indekseret - Filer - Se katalogpostens formular - Format vises i katalogposten - Rediger dette format - Slet dette format - Tilføj publikationsformat - Godkend korrektur til indeksering og inkludering i kataloget - Korrekturfilen er klat til publicering - Tilføj en meddelelse - Ny katalogpost - Se dette element i katalog - Skift funktionsdisplayet - Vis dette i katalogkarusellen - Marker denne indsendelse som en 'ny udgivelse' - Konfigurer kategorier til dette forlag - Konfigurer serier til dette forlag - Tilføj kode - Rediger kodn - Slet koden - Tilføj salgsrettigheder - Rediger disse rettigheder - Slet disse rettigheder - Tilføj marked - Rediger dette marked - Slet dette marked - Tilføj publiceringsdato - Rediger denne dato - Slet denne dato - Opret et nyt forlag - Vis fanen med publikationsformat - Gå til siden med forlagsmeddelelser - Klik for at læse denne e-mail - Se korrekturnet - Der er læst korrektur på formatet - Godkend/afvis dette format - Slå tilgængeligheden af dette format til og fra - Tilføj vedhæftet fil til bedømmelse - Tilgængelige filer - Serier - Denne serie vises på hovednavigationsmenuen - Sti - Katalogstyring - Nye udgivelser - Kategori - Serier - ISSN - Indtast et gyldigt ISSN. - Online og print ISSN må ikke være det samme. - Online ISSN - Print ISSN - Vælg serier - Vælg kategori - Forsidebilledet af udvalgte bøger vises øverst på hjemmesiden som en scrolbar opsætning. Klik på 'Udvælg' og derefter på stjernen for at tilføje en bog til karrusellen; klik på udråbstegn for at markere, at det er en ny udgivelse; træk og slip for at bestille. - Klik på 'Udvælg' og derefter på stjernen for at vælge en fremhævet bog til denne kategori; træk og slip for at bestille. - Klik på "Udvælg" og derefter på stjernen for at vælge en fremhævet bog til denne serie; træk og slip for at bestille. Serier identificeres med en redaktør og en serietitel inden for en kategori eller uafhængigt. - Karrusel - Udgivelse - Administrer serien - Administrer kategorier - Der er ingen tildelte monografier. - Udvalgt - Udvalgt i kategori - Udvalgt i serier - Monografi er udvalgt - Monografi er ikke udvalgt - Monografi er markeret som en ny udgivelse. - Monografi er ikke markeret som ny udgivelse. - Ny udgivelse - Ny udgivelse i kategori - Ny udgivelse i serie - Denne monografi kan ikke bestilles, før den er blevet udvalgt. - Søg efter titel eller forfatter - Der er endnu ikke offentliggjort nogen titler. - Der er ingen nye udgivelser i øjeblikket. - Der blev ikke fundet nogen titler, der matcher din søgning efter "{$searchQuery}". - Udvælg - Udvalgt - Udvalgte bøger - Der blev fundet en titel, der matchede din søgning efter "{$searchQuery}". - {$number} titler blev fundet, der matchede din søgning efter "{$searchQuery}". - Alle bøger - Nye udgivelser - Tilføjet - Publikationsinfo - Publiceret - Kommende - Kategorier - Hovedkategori - Underkategorier - Om {$roleName}en - Forsidebillede til {$monographTitle} - Bemærk: For at købe varer skal du først logge ind. Valg af en vare, der skal købes, leder dig til login-siden. Enhver vare, der er markeret med et Open Access-ikon, kan downloades gratis uden at logge ind. - Sortering af monografier - Vælg hvordan du sorterer bøger i denne serie. - Vælg hvordan du sorterer bøger i denne kategori. - Vælg hvordan du sorterer bøger i dette katalog. - Serieposition (lavest først) - Serieposition (højest først) - {$type} visning af filen {$title} - Vend tilbage for at se detaljer om {$monographTitle} - Præfiks - Vis - Udvælg - Søg i katalog - Mere information - Udfyld venligst hele formularen. - Vælg en gyldig mulighed fra listen. - Du kan ikke tilføje den samme element to gange. - Open Monograph Press - OMP - Homepage Header - Katalog - Konkurrerende interessepolitik - Alle monografier - Administrer - Administration - Katalogadministration - Kategorier - Serier - Til forfattere - Til bibliotekarer - Information til forfattere - Information til bibliotekarer - Nye udgivelser - Publiceret - Guide - Links til sociale medier - Link til dit katalog. - Serier - Link til en serie. - Kategori - Link til en kategori. - Nye udgivelser - Link til dine nye udgivelser - Forlag - Sti - Forlag - Nyeste forlag: - Skift til et andet forlag: - Inkluder brugere uden roller hos dette forlag - Indsend et forslag - Indsend en monografi: Forfatterregistrering er i øjeblikket deaktiveret. - Registrer dig som bedømmer - Registrer dig som bedømmer: bedømmerregistrering er i øjeblikket deaktiveret. - Vil du være villig til at bedømme indsendelser fra dette forlag? - Ja, anmod om rollen {$userGroup}. - Ja, jeg vil gerne kontaktes med anmodninger om at bedømme indsendelser fra denne presse. - Hvilke forlag på dette websted vil du gerne registreres hos? - Anmod om følgende roller. - Hvis du anmodede om at være bedømmer hos et forlag, skal du indtaste dine emneinteresser. - Forlagschef - Forlagsredaktør - Serieredaktør - Manuskriptredaktør - Korrekturlæser - Produktionsredaktør - Forlagschefer - Serieredaktører - Redaktører - Manuskriptredaktører - Korrekturlæsere - Produktionsredaktører - Vælg det forlag, du vil registreres hos: - Der er ingen forlag, du kan registreres hos på dette websted. - Erklæring om beskyttelse af personlige oplysninger - Dette forlag accepterer i øjeblikket ikke brugerregistreringer. - Det password, du indtastede, er ikke langt nok. - Informeres via e-mail ved publicering af en monografi - I stand til at indsende poster til forlaget. - Villig til at foretage bedømmelser af indsendelser til forlaget. - Villig til at foretage bedømmelser af indsendelser til dette websted. - Indkreds bedømmerinteresser (væsentlige emneområder og forskningsmetoder): - Du skal vælge mindst én rolle - Se forlagets websted - Forlagskontakt - Om forlaget - Redaktionsmedlemmer - Redaktionel politik - Fokusområde - Serie- og kategoripolitikker - Indsendelser - Online-indsendelser - Login - Registrer - {$login} eller {$register} for at foretage en indsendelse. - {$newSubmission} eller {$viewSubmissions}. - Foretag en ny indsendelse - se dine endnu igangværende indsendelser - Forfattervejledninger - Tjekliste til forberedelse af manuskript - Som en del af indsendelsesprocessen er forfattere forpligtet til at kontrollere, at deres indsendelse er i overensstemmelse med følgende punkter. Indsendelser kan returneres til forfattere, der ikke overholder disse retningslinjer. - Oplysninger om ophavsret - Erklæring om beskyttelse af personlige oplysninger - Peer review proces - Publikationsfrekvens - Open Access-politik - Forlagssponsorering - Om dette publiceringssystem - OMP redaktions- og publiceringsproces - Public Knowledge Project< / a> under GNU General Public License.]]> - Public Knowledge Project< / a> under GNU General Public License.]]> - Vend tilbage til søgeresultater - Åbn en ny side for at redigere disse oplysninger - OMP-installation - OMP-opgradering - Installer Open Monograph Press - Tak fordi du downloadede the Public Knowledge Project's Open Monograph Press {$version}. Før du fortsætter, skal du læse filen README, der følger med denne software. For at få mere information om Public Knowledge Project og dets softwareprojekter, kan du besøge PKP web site. Hvis du har fejlrapporter eller teknisk supporthenvendelser om Open Monograph Press, kan du se supportforum eller besøge PKP's online bug reporting system. Selvom supportforummet er den foretrukne kontaktform, kan du også e-maile teamet via pkp.contact@gmail.com.

- -

Upgradre - -

Hvis du opgraderer en eksisterende installation af OMP 0.x, klik her for at fortsætte.

]]> - Før-installations-foranstaltninger - 1. Følgende filer og mapper (og deres indhold) skal gøres skrivbare:

-
    -
  • config.inc.php er skrivbar (valgfrit): {$writable_config}
  • -
  • public/ er skrivbar: {$writable_public}
  • -
  • cache/ er skrivbar: {$writable_cache}
  • -
  • cache/t_cache/ er skrivbar: {$writable_templates_cache}
  • -
  • cache/t_compile/ er skrivbar: {$writable_templates_compile}
  • -
  • cache/_db er skrivbar: {$writable_db_cache}
  • -
- -

2. Et bibliotek til lagring af uploadede filer skal oprettes og gøres skrivbart (se "Filindstillinger" nedenfor).

-]]>
- Tak fordi du downloadede the Public Knowledge Project's Open Monograph Press {$version}. Før du fortsætter, skal du læse filen README, der følger med denne software. For at få mere information om Public Knowledge Project og dets softwareprojekter, kan du besøge PKP web site. Hvis du har fejlrapporter eller teknisk supporthenvendelser om Open Monograph Press, kan du se supportforum eller besøge PKP's online bug reporting system. Selvom supportforummet er den foretrukne kontaktform, kan du også e-maile teamet via pkp.contact@gmail.com.

]]>
- = 4.1.1 or PostgreSQL >= 9.1.5 databaseserver. Bemærk også, at en komplet Unicode-support kræver mbstring-biblioteket (aktiveret som standard i de nyeste PHP-installationer). Du kan opleve problemer med at bruge udvidede tegnsæt, hvis din server ikke opfylder disse krav. -

-Din server understøtter i øjeblikket mbstring: {$supportsMBString} -]]>
- {$allowFileUploads}]]> - {$maxFileUploadSize}]]> - Det primære sprog, der skal bruges til dette system. Se OMP-dokumentationen, hvis du er interesseret i support til sprog, der ikke er nævnt her. - Vælg supplerende sprog, der skal understøttes i dette system. Disse sprog vil være tilgængelige til brug af forlag, der er tilknyttet dette websted. Supplerende sprog kan også installeres når som helst fra websteds-administrationens interface. Sprog (locales) markeret * kan være ufuldstændige. - Sørg for, at dette bibliotek er oprettet og skrivbart før installation. Windows-stinavne skal bruge retvendt skråstreg, f.eks. "C:/mypress/filer".]]> - OMP kræver adgang til en SQL-database for at gemme des data. Se systemkravene ovenfor der indeholder en liste over understøttede databaser. Angiv de indstillinger, der skal bruges for at oprette forbindelse til databasen i felterne herunder. - Opgrader Open Monograph Press - VIGTIGT!

-

Installationsprogrammet kunne ikke automatisk overskrive konfigurationsfilen. Før du forsøger at bruge systemet, skal du åbne config.inc.php i en egnet teksteditor og erstatte dets indhold med indholdet i tekstfeltet nedenfor.

]]>
- Installation af OMP er afsluttet.

-

For at begynde at bruge systemet skal du logge ind med det brugernavn og adgangskode, der er indtastet på den forrige side.

-

Hvis du ønsker at modtage nyheder og opdateringer, skal du registrere dig på http://pkp.sfu.ca/omp/register. Hvis du har spørgsmål eller kommentarer, kan du besøge supportforum.]]> - Opgradering af OMP til version {$version} er afsluttet.

-

Glem ikke at indstille "installeret"-indstillingen i din config.inc.php konfigurationsfil tilbage til On.

-

Hvis du ikke allerede har registreret dig og ønsker at modtage nyheder og opdateringer, skal du registrere dig på http://pkp.sfu.ca/omp/register. Hvis du har spørgsmål eller kommentarer, kan du besøge supportforum.

]]>
- Runde {$round}-bedømmelsen af {$reviewerName} i forbindelse med indsendelse {$submissionId} er blevet ryddet. - Forfaldsdato for runde {$round}-bedømmelsen af indsendelse {$submissionId} af {$reviewerName} er sat til {$dueDate}. - {$reviewerName} har afvist runde {$round}-bedømmelsen i forbindelse med indsendelse {$submissionId}. - {$reviewerName} har accepteret runde {$round}-bedømmelsen i forbindelse med indsendelse {$submissionId}. - {$editorName} har markeret runde {$round}-bedømmelsen i forbindelse med indsendelse {$submissionId} som uovervejet. - En redaktørbeslutning ({$decision}) i forbindelse med monografi {$submissionId} blev registreret af {$editorName}. - En redaktøranbefaling ({$decision}) i forbindelse med monografi {$submissionId} blev regostreret af {$editorName}. - Indsendelsen {$submissionId} er blevet arkiveret. - Indsendelsen {$submissionId} er gendannet og indsat i køen. - {$editorName} er blevet valgt som redaktør i forbindelse med indsendelse {$submissionId}. - {$assignerName} har valgt {$proofreaderName} til at læse korrektur på {$submissionId}. - {$proofreaderName} har sendt {$submissionId} til planlægning. - {$userName} har importeret monografi {$submissionId}. - Identifikationskode tilføjet. - Identifikationskode redigeret. - Identifikationskode fjernet. - Publiceringsdato tilføjet. - Publiceringsdato redigeret. - Publiceringsdato fjernet. - Publiceringsformat tilføjet. - Publiceringsformat redigeret. - Publiceringsformat fjernet. - Salgsrettigheder tilføjet. - Salgsrettigheder redigeret. - Salgsrettigheder fjernet. - Repræsentant tilføjet. - Repræsentant redigeret. - Repræsentant fjernet. - Marked tilføjet. - Marked redigeret. - Marked fjernet. - Spotlight tilføjet - Spotlight redigeret. - Spotlight fjernet. - Katalog-metadata gemt. - Metadata for publikationsformat gemt. - Korrektur godkendt. - Indsendelse slettet. - En ny monografi, "{$title}," er blevet indsendt. - Redigeringsforløb - Bedømmelsesforløb - Websitehændelser - Indsendelseforløb - En læser har kommenteret "{$title}". - Offentlige meddelelser - Der er indsendt en ny monografi, som en redaktør skal tilknyttes. - Du er blevet bedt om at gennemgå det tilrettede i forbindelse med "{$file}". - Du er blevet bedt om at gennemgå layout i forbindelse med "{$title}". - Du er blevet bedt om at oprette et indeks i forbindelse med "{$title}". - Intern bedømmelsesproces påbegyndt. - Denne indsendelse afventer i øjeblikket godkendelse i katalogposterne, før den vises i det offentlige katalog. - Afventer godkendelse. - Monografien vises først i kataloget, når der er oprettet en katalogpost. For at tilføje denne bog til kataloget skal du klikke på katalogposter ovenfor og finde fanebladet 'Katalog'. - Der er ikke konfigureret nogen betalingsmetode. - En konfigureret betalingsmetode er påkrævet, før du kan definere indstillinger for e-handel. - Monografien er godkendt. Gå til 'Katalog' for at indskrive dets katalogoplysninger ved hjælp af katalog-linket ovenfor. - Katalogstyring - Du er blevet nægtet adgang fordi du ikke ser ud til at være en valid korrekturlæser i forbindelse med denne monografi. - Du er blevet nægtet adgang fordi du ikke ser ud til af være forfatter til denne monografi. - Du er blevet nægtet adgang fordi du ikke synes at være blevet tildelt korrekturlæserrollen til denne monografi. - Du er blevet nægtet adgang til den angivne monografi-fil. - Ugyldig monografi eller ingen monografi efterspurgt! - Intet forlag i denne sammenhæng! - Du forsøger at få adgang til en monografi, der ikke er en del af din serie. - Adgang nægtet! Du er ikke blevet tilknyttet dette redaktionelle trin. - Adgang nægtet! Den brugergruppe, du i øjeblikket er en del af, er ikke tilknyttet dette redaktionelle trin. Kontroller dine forlagsindstillinger. - Download fra forlagets webside - Pris - Tilgængelighed - Katalog - Godkendt - Pris ({$currency}) - Priserne må kun være numeriske. Medtag ikke valutasymboler. - Direkte salg - {$amount} ({$currency}) - Ikke tilgængelig - Ikke indstillet - Open Access - Filformater kan stilles til rådighed via download fra forlagets websted gennem enten Open Access uden omkostninger for læsere eller direkte salg (ved hjælp af en online betalings-processor, som konfigureres under Distribuering). Angiv hvilken adgang, der gælder for denne fil. - En gyldig numerisk pris er påkrævet. - Køb {$format} ({$amount} {$currency}) - Download {$format} - Køb download af monografi eller kapitel - Denne transaktion er til køb af et direkte download af en enkelt monografi eller et monografi-kapitel. - Indlæst valutaliste "{$filename}" fra XML - Genindlæst XML-hjælp til at kortlægge fil {$filename} på søgning efter {$id}. - Bog - Download denne PDF-fil - Registrer dig hos andre forlag - Skjul andre forlag - -
diff --git a/locale/da_DK/manager.po b/locale/da_DK/manager.po deleted file mode 100644 index a2676cb7690..00000000000 --- a/locale/da_DK/manager.po +++ /dev/null @@ -1,1396 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28T15:10:04-08:00\n" -"PO-Revision-Date: 2020-12-14 15:47+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "" -"Dette erstatter alle sprogspecifikke forlagsindstillinger, du havde i " -"tilknytning til dette sprog" - -msgid "manager.languages.noneAvailable" -msgstr "" -"Beklager, ingen ekstra sprog er tilgængelige. Kontakt din " -"webstedsadministrator, hvis du ønsker at bruge flere sprog i forbindelse med " -"dette forlag." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Dette vil være standardsproget for forlags-sitet." - -msgid "manager.series.form.mustAllowPermission" -msgstr "Sørg for, at der mindst er markeret et afkrydsningsfelt for hver serieredaktør-tildeling." - -msgid "manager.series.form.reviewFormId" -msgstr "Sørg for, at du har valgt en gyldig bedømmelsesformular." - -msgid "manager.series.submissionIndexing" -msgstr "Vil ikke være med i forlagenes indeksering" - -msgid "manager.series.editorRestriction" -msgstr "Elementer kan kun indsendes af redaktører og serieredaktører." - -msgid "manager.series.confirmDelete" -msgstr "Er du sikker på, at du vil slette denne serie permanent?" - -msgid "manager.series.indexed" -msgstr "Indekseret" - -msgid "manager.series.open" -msgstr "Åbn indsendelser" - -msgid "manager.series.readingTools" -msgstr "Læseværktøjer" - -msgid "manager.series.submissionReview" -msgstr "Vil ikke blive fagfællebedømt" - -msgid "manager.series.submissionsToThisSection" -msgstr "Indsendelser foretaget til denne serie" - -msgid "manager.series.abstractsNotRequired" -msgstr "Kræver ikke resume" - -msgid "manager.series.disableComments" -msgstr "Deaktivér læserkommentarer i forbindelse denne serie." - -msgid "manager.series.book" -msgstr "Bogserie" - -msgid "manager.series.create" -msgstr "Opret serie" - -msgid "manager.series.policy" -msgstr "Seriebeskrivelse" - -msgid "manager.series.assigned" -msgstr "Redaktører til denne serie" - -msgid "manager.series.seriesEditorInstructions" -msgstr "" -"Føj en serieredaktør til denne serie fra de tilgængelige serieredaktører. " -"Når redaktøren er tilføjet, skal du angive, om serieredaktøren vil føre " -"tilsyn med BEDØMMELSEN (fagfællebedømmelse) og/eller REDIGERING (" -"manuskriptredigering, layout og korrekturlæsning) af indsendelser i " -"forbindelse med denne serie. Serieredaktører oprettes ved at klikke på Serieredaktører under Roller i " -"forlagsadministration." - -msgid "manager.series.hideAbout" -msgstr "Undlad denne serie i Om forlaget." - -msgid "manager.series.unassigned" -msgstr "Tilgængelige serieredaktører" - -msgid "manager.series.form.abbrevRequired" -msgstr "En forkortet titel til serien er påkrævet." - -msgid "manager.series.form.titleRequired" -msgstr "En titel til serien er påkrævet." - -msgid "manager.series.noneCreated" -msgstr "Der er ikke oprettet nogen serier." - -msgid "manager.series.existingUsers" -msgstr "Eksisterende brugere" - -msgid "manager.series.seriesTitle" -msgstr "Serietitel" - -msgid "manager.series.restricted" -msgstr "Tillad ikke forfattere at sende direkte til denne serie." - -msgid "manager.payment.generalOptions" -msgstr "Generelle indstillinger" - -msgid "manager.payment.options.enablePayments" -msgstr "Betalinger vil blive aktiveret i forbindelse med dette forlag. Bemærk, at brugerne skal logge på for at foretage betalinger." - -msgid "manager.settings" -msgstr "Indstillinger" - -msgid "manager.settings.pressSettings" -msgstr "Forlagsindstillinger" - -msgid "manager.settings.press" -msgstr "Forlag" - -msgid "manager.settings.publisherInformation" -msgstr "Disse felter er påkrævet for at oprette gyldige ONIX metadata. Medtag dem, hvis du ønsker at offentliggøre ONIX-metadata." - -msgid "manager.settings.publisher" -msgstr "Forlagets udgivernavn" - -msgid "manager.settings.location" -msgstr "Geografisk placering" - -msgid "manager.settings.publisherCode" -msgstr "Udgiverkode" - -msgid "manager.settings.publisherCodeType" -msgstr "Type for udgiverkode" - -msgid "manager.settings.publisherCodeType.tip" -msgstr "Hvis du har en kode til dit udgivernavn, skal du udfylde den nedenfor. Det vil blive inkluderet i genererede metadata. Feltet er påkrævet, hvis du genererer ONIX-metadata til dine publikationer." - -msgid "manager.settings.distributionDescription" -msgstr "" -"Alle indstillinger, der er specifikke for distributionsprocessen (" -"meddelelser, indeksering, arkivering, betaling, læseværktøjer)." - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Download af monografi-filer" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Visninger af monografisk resuméside" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Monografisk resumé og downloads" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Visninger af en series hovedside" - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Visninger af et forlags hovedside" - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Begræns resultater efter kontekst (serie og/eller monografi)." - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "Begræns resultater efter objekttype (forlag, serie, monografi, filtyper) og/eller efter et eller flere objekt-id(er)." - -msgid "manager.tools" -msgstr "Værktøjer" - -msgid "manager.tools.importExport" -msgstr "Alle værktøjer, der er specifikke i forbindelse med import og eksport af data (forlag, monografier, brugere)" - -msgid "manager.tools.statistics" -msgstr "" -"Værktøjer til at generere rapporter relateret til brugsstatistikker (visning " -"af katalogindeks-side, visning af resumésider, download af monografi-filer)" - -msgid "manager.users.availableRoles" -msgstr "Tilgængelige roller" - -msgid "manager.users.currentRoles" -msgstr "Aktuelle roller" - -msgid "manager.users.selectRole" -msgstr "Vælg rolle" - -msgid "manager.people.allEnrolledUsers" -msgstr "Brugere tilmeldt dette forlag" - -msgid "manager.people.allPresses" -msgstr "Alle forlag" - -msgid "manager.people.allSiteUsers" -msgstr "Tilmeld en bruger fra dette site til dette forlag" - -msgid "manager.people.allUsers" -msgstr "Alle tilmeldte brugere" - -msgid "manager.people.confirmRemove" -msgstr "Vil du fjerne denne bruger fra dette forlag? Denne handling vil fjerne brugeren fra alle roller tilknyttet dette forlag." - -msgid "manager.people.enrollExistingUser" -msgstr "Tilmeld en eksisterende bruger" - -msgid "manager.people.enrollSyncPress" -msgstr "Med forlag" - -msgid "manager.people.mergeUsers.from.description" -msgstr "Vælg en bruger, der skal sammenflettes med en anden brugerkonto (f.eks. når en bruger har to brugerkonti). Den førstvalgte konto bliver slettet, og dens indsendelser, opgaver osv. lægges under den anden konto." - -msgid "manager.people.mergeUsers.into.description" -msgstr "Vælg en bruger, som den forrige brugers forfatterskaber, redigeringsopgaver osv. skal lægges ind under." - -msgid "manager.people.syncUserDescription" -msgstr "Tilmeldingssynkronisering tilmelder alle brugere, der er tilmeldt den nævnte rolle hos det specificerede forlag, til en og samme rolle hos dette forlag. Denne funktion gør det muligt at synkronisere et fælles sæt brugere (f.eks. bedømmere) mellem de enkelte forlag." - -msgid "manager.people.confirmDisable" -msgstr "" -"Deaktivér denne bruger? Dette forhindrer brugeren i at logge ind i systemet." -"\n" -"\n" -"Du kan eventuelt give brugeren en grund til at vedkommendes konto " -"deaktiveres." - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Beklager, du har ikke administratorrettigheder over denne bruger. Dette kan " -"skyldes:\n" -"
    \n" -"
  • Brugeren er en webstedsadministrator
  • \n" -"
  • Brugeren er aktiv hos forlag, du ikke administrerer
  • \n" -"
\n" -" Denne opgave skal udføres af en webstedsadministrator.\n" -"\t" - -msgid "manager.setup.emailBounceAddress.disabled" -msgstr "" -"For at sende e-mails, der ikke kan afleveres, til en returneringsadresse, " -"skal webstedsadministratoren aktivere indstillingen " -"allow_envelope_sender i konfigurationsfilen til webstedet. " -"Serverkonfiguration kan være påkrævet, som angivet i OMP-dokumentationen." - -msgid "manager.setup.emailBounceAddress.description" -msgstr "" -"Alle e-mails, der ikke kan afleveres, resulterer i en fejlmeddelelse til " -"denne adresse." - -msgid "manager.setup.emailBounceAddress" -msgstr "Returneringsadresse" - -msgid "manager.setup.editorDecision" -msgstr "Redaktørbeslutning" - -msgid "manager.setup.doiPrefixDescription" -msgstr "" -"DOI-præfikset tildeles af CrossRef og er i formatet 10.xxxx (f.eks. 10.1234)." - -msgid "manager.setup.doiPrefix" -msgstr "DOI-præfiks" - -msgid "manager.setup.displayNewReleases.label" -msgstr "Nyudgivelser" - -msgid "manager.setup.displayNewReleases" -msgstr "Vis nyudgivelser på startsiden" - -msgid "manager.setup.displayInSpotlight.label" -msgstr "Spotlight" - -msgid "manager.setup.displayInSpotlight" -msgstr "Vis bøger fra spotlight på startsiden" - -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Udvalgte bøger" - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Vis udvalgte bøger på startsiden" - -msgid "manager.setup.displayOnHomepage" -msgstr "Startsideindhold" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "" -"Tilføj indholdsfortegnelsen til den aktuelle monografi (hvis tilgængelig)." - -msgid "manager.setup.disciplineProvideExamples" -msgstr "" -"Giv eksempler på relevante akademiske discipliner i forbindelse med dette " -"forlag" - -msgid "manager.setup.disciplineExamples" -msgstr "" -"(F.eks. Historie; Uddannelse; Sociologi; Psykologi; Kulturstudier; Jura)" - -msgid "manager.setup.disciplineDescription" -msgstr "" -"Nyttigt, når forlaget krydser faglige grænser og/eller forfattere indsender " -"tværfagligt indhold." - -msgid "manager.setup.discipline" -msgstr "Akademisk fagområde og underdiscipliner" - -msgid "manager.setup.disableUserRegistration" -msgstr "" -"Forlagschefen registrerer alle brugerkonti. Redaktører eller " -"sektionsredaktører kan registrere brugerkonti for bedømmere." - -msgid "manager.setup.details.description" -msgstr "Navn på forlag, kontakter, sponsorer og søgemaskiner." - -msgid "manager.setup.details" -msgstr "Detaljer" - -msgid "manager.setup.customTagsDescription" -msgstr "" -"Brugerdefinerede HTML-header-tags, der skal indsættes i header-sektionen på " -"hver side (f.eks. META-tags)." - -msgid "manager.setup.customTags" -msgstr "Brugerdefinerede tags" - -msgid "manager.setup.customizingTheLook" -msgstr "Trin 5. Tilpasning af udseendet (Look & Feel)" - -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" -msgstr "" -"Billeder mindskes, når de er større end denne størrelse, men bliver aldrig " -"opskaleret eller strækkes for at passe til disse dimensioner." - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Forsidebillede max bredde" - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Forsidebillede max højde" - -msgid "manager.setup.coverage" -msgstr "Dækning" - -msgid "manager.setup.copyrightNotice" -msgstr "Oplysninger om copyright" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "" -"Manuskriptredaktørvejledninger bliver gjort tilgængelige for " -"manuskriptredaktører, forfattere og sektionsredaktører på " -"indsendelsesredigeringstrinnet. Nedenfor er et standardsæt med instruktioner " -"i HTML, som kan ændres eller erstattes af forlagschefen på ethvert tidspunkt " -"(i HTML eller almindelig tekst)." - -msgid "manager.setup.copyeditInstructions" -msgstr "Manuskriptredaktørvejledninger" - -msgid "manager.setup.copyediting" -msgstr "Manuskriptredaktører" - -msgid "manager.setup.contextSummary" -msgstr "Forlagsresumé" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Inkludér de oplysninger om dit forlag, som kan være af interesse for læsere, " -"forfattere eller bedømmere. Dette kan omfatte din open access-politik, fokus " -"og sigte med forlaget, sponsorering og forlagets historie." - -msgid "manager.setup.contextAbout" -msgstr "Om forlaget" - -msgid "manager.setup.appearInAboutPress" -msgstr "(Vises i Om forlaget) " - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "" -"Indtast supplerende oplysninger, der skal vises for læserne på siden " -"'Meddelelser'." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Yderligere information" - -msgid "manager.setup.announcementsDescription" -msgstr "" -"Meddelelser kan publiceres for at informere læserne om nyheder og " -"begivenheder. Publicerede meddelelser vises på siden 'Meddelelser'." - -msgid "manager.setup.announcements.success" -msgstr "Indstillingerne for meddelelser er blevet opdateret." - -msgid "manager.setup.announcements" -msgstr "Meddelelser" - -msgid "manager.setup.addSponsor" -msgstr "Tilføj sponsororganisation" - -msgid "manager.setup.addNavItem" -msgstr "Tilføj element" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Tilføj element, der skal vises under \"Om forlaget\"" - -msgid "manager.setup.addItem" -msgstr "Tilføj element" - -msgid "manager.setup.addChecklistItem" -msgstr "Tilføj element til tjekliste" - -msgid "manager.setup.addAboutItem" -msgstr "Tilføj Om-element" - -msgid "manager.setup.aboutItemContent" -msgstr "Indhold" - -msgid "manager.setup" -msgstr "Konfiguration" - -msgid "manager.pressManagement" -msgstr "Forlagsadministration" - -msgid "user.authorization.pluginLevel" -msgstr "" -"Du har ikke tilstrækkelige brugerrettigheder til at administrere dette " -"plugin." - -msgid "manager.system.payments" -msgstr "Betalinger" - -msgid "manager.system.readingTools" -msgstr "Læseværktøjer" - -msgid "manager.system.reviewForms" -msgstr "Bedømmelsesformularer" - -msgid "manager.system.archiving" -msgstr "Arkivering" - -msgid "manager.system" -msgstr "Systemindstillinger" - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "Dette er ikke en gyldig udgiverkode." - -msgid "manager.settings.publisher.identity.description" -msgstr "" -"Disse felter er obligatoriske i forbindelse med publicering af gyldig ONIX metadata." - -msgid "manager.settings.publisher.identity" -msgstr "Udgiveridentitet" - -msgid "manager.payment.success" -msgstr "Betalingsindstillingerne er blevet opdateret." - -msgid "manager.setup.reviewProcess" -msgstr "Bedømmelsesproces" - -msgid "manager.setup.reviewPolicy" -msgstr "Bedømmelsespolitik" - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Påmindelser om bedømmelse" - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Bedømmerklassificering" - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" -msgstr "Inkludér et sikkert link i e-mail-invitationen til bedømmere." - -#, fuzzy -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" -msgstr "" -"Bedømmere kan få tilsendt et sikkert link i e-mail-invitationen, der giver " -"dem adgang til bedømmelsen uden at logge ind. Adgang til andre sider kræver, " -"at de logger på." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" -msgstr "Adgang for bedømmere ved hjælp af ét klik" - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Bedømmeradgang" - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "" -"Bedømmere får kun adgang til manuskriptfilen, efter de har accepteret at " -"bedømme den." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" -msgstr "Begræns filadgang" - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "" -"Redaktører vurderer bedømmere på en fempunkts-kvalitetskala efter hver " -"bedømmelse." - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "" -"For at aktivere disse indstillinger, skal webstedsadministratoren aktivere " -"indstillingen scheduled_tasks i OMP-konfigurationsfilen. " -"Understøttelse af denne funktionalitet (som eventuelt ikke er muligt på alle " -"servere) kan kræve yderligere konfiguration af serveren som angivet i " -"dokumentationen til OMP." - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Automatiske e-mail-påmindelser" - -msgid "manager.setup.reviewOptions" -msgstr "Bedømmelsesindstillinger" - -msgid "manager.setup.internalReviewGuidelines" -msgstr "Retningslinjer for intern bedømmelse" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "" -"Stil kriterier for at foretage en bedømmelse af en indsendelses egnethed til " -"publicering hos forlaget til rådighed for eksterne bedømmere. Det kan " -"indeholde instruktioner i hvordan man forbereder en effektiv og nyttig " -"bedømmelse. Bedømmere vil have mulighed for at videregive kommentarer stilet " -"til forfatteren og redaktøren samt separate kommentarer til redaktøren." - -msgid "manager.setup.reviewGuidelines" -msgstr "Retningslinjer for ekstern bedømmelse" - -msgid "manager.setup.restrictSiteAccess" -msgstr "Brugere skal være registreret og logge på for at se forlagets website." - -msgid "manager.setup.restrictMonographAccess" -msgstr "" -"Brugere skal være registreret og logge på for at se open access indhold." - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Layoutinstruktioner til referencelinking" - -msgid "manager.setup.referenceLinking" -msgstr "Referencelink" - -msgid "manager.setup.publisherDescription" -msgstr "" -"Navnet på den organisation, der står bag forlaget, vises i 'Om forlaget'." - -msgid "manager.setup.publisher" -msgstr "Udgiver" - -msgid "manager.setup.publicationScheduleDescription" -msgstr "" -"Indhold kan publiceres samlet som en del af en monografi med sin egen " -"indholdsfortegnelse. Alternativt kan individuelle indlæg offentliggøres, så " -"snart de er klar, ved at tilføje dem til det nyeste binds " -"indholdsfortegnelse. Giv læserne i ’Om forlaget’ en beskrivelse af det " -"system, dettee forlag vil bruge, og dets forventede publikationsfrekvens." - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Stil instruktioner til rådighed for layoutredaktører." - -msgid "manager.setup.proofreading" -msgstr "Korrekturlæsere" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "" -"Korrekturlæsningsinstruktionerne vil blive gjort tilgængelige for " -"korrekturlæsere, forfattere, layoutredaktører og sektionsredaktører på " -"manuskriptredigeringstrinnet. Nedenfor er et standardsæt med instruktioner i " -"HTML, som, på ethvert tidspunkt, kan redigeres eller erstattes af " -"forlagschefen (i HTML eller klartekst)." - -msgid "manager.setup.proofingInstructions" -msgstr "Korrekturinstruktioner" - -msgid "manager.setup.printIssn" -msgstr "Print ISSN" - -msgid "manager.setup.contextTitle" -msgstr "Forlagsnavn" - -msgid "manager.setup.pressTheme" -msgstr "Forlagstema" - -msgid "manager.setup.styleSheetInvalid" -msgstr "Ugyldigt stylesheet-format. Accepteret format er .css." - -msgid "manager.setup.pressSetupUpdated" -msgstr "Din forlagskonfiguration er blevet opdateret." - -msgid "manager.setup.pressSetup" -msgstr "Forlagskonfiguration" - -msgid "manager.setup.pressPolicies" -msgstr "Trin 2: Forlagspolitikker" - -msgid "manager.setup.pageHeader" -msgstr "Forlagets sidehoved" - -msgid "manager.setup.layout" -msgstr "Forlags-layout" - -msgid "manager.setup.contextInitials" -msgstr "Forlagsinitialer" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "" -"Forlagets hjemmeside består som standard af en række navigationslink. " -"Yderligere hjemmesideindhold kan tilføjes ved hjælp af en eller flere af de " -"følgende muligheder, der fremkommer i den viste rækkefølge." - -msgid "manager.setup.pressHomepageContent" -msgstr "Forlagets hjemmesideindhold" - -msgid "manager.setup.homepageContentDescription" -msgstr "" -"Forlagets hjemmeside består som standard af en række navigationslink. " -"Yderligere hjemmesideindhold kan tilføjes ved hjælp af en eller flere af de " -"følgende muligheder, der fremkommer i den viste rækkefølge." - -msgid "manager.setup.homepageContent" -msgstr "Forlagets hjemmesideindhold" - -msgid "manager.setup.pressArchiving" -msgstr "Forlagsarkivering" - -msgid "manager.setup.aboutPress.description" -msgstr "" -"Medtag alle oplysninger om dit forlag, som kan være af interesse for læsere, " -"forfattere eller bedømmere. Dette kan omfatte din open access-politik, " -"forlagets fokusområde, copyright, meddelelse om sponsorering, forlagets " -"historie og en erklæring om beskyttelse af personlige oplysninger." - -msgid "manager.setup.aboutPress" -msgstr "Om forlaget" - -msgid "manager.setup.pressDescription.description" -msgstr "En kort beskrivelse af dit forlag." - -msgid "manager.setup.pressDescription" -msgstr "Forlagsresumé" - -msgid "manager.setup.appearanceDescription" -msgstr "" -"Forskellige komponenter, der indgår i forlagets fremtoning og design kan " -"konfigureres fra denne side, herunder sidehoved og sidefodselementer, temaer " -"samt hvordan lister med information præsenteres for brugerne." - -msgid "manager.setup.privacyStatement.success" -msgstr "Erklæring om beskyttelse af personlige oplysninger er blevet opdateret." - -msgid "manager.setup.policies.description" -msgstr "" -"Fokusområde, fagfællebedømmelse, sektioner, beskyttelse af personlige " -"oplysninger, sikkerhed mm. i forbindelse med indhold." - -msgid "manager.setup.policies" -msgstr "Politikker" - -msgid "manager.setup.onlineIssn" -msgstr "Online ISSN" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Adgang til forlagsindhold" - -msgid "manager.setup.numPageLinks.description" -msgstr "" -"Begræns antallet af links, der skal vises til efterfølgende sider på en " -"liste." - -msgid "manager.setup.numPageLinks" -msgstr "Sidelinks" - -msgid "manager.setup.noUseProofreaders" -msgstr "" -"En redaktør eller sektionsredaktør tilknyttet indsendelsen tjekker " -"publiceringsversionerne." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "" -"En redaktør eller sektionsredaktør tilknyttet indsendelsen vil forberede " -"HTML, PDF og evt. andre filer." - -msgid "manager.setup.noUseCopyeditors" -msgstr "" -"Manuskriptredigering foretages af en redaktør eller sektionsredaktør " -"tilknyttet indsendelsen." - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "" -"Når du anvender e-mailen 'Underet forfatter', skal du inkludere e-mail-" -"adresserne til samtlige medforfattere, når indsendelser har flere " -"forfattere, og ikke kun underrette den bruger, der har stået for " -"indsendelsen." - -msgid "manager.setup.note" -msgstr "Note" - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "Intet stylesheet uploadet." - -msgid "manager.setup.noImageFileUploaded" -msgstr "Ingen billedfil uploadet." - -msgid "manager.setup.masthead.success" -msgstr "Detaljer om forlagets kolofon er blevet opdateret." - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Håndtering af de grundlæggende redaktionelle trin" - -msgid "manager.setup.managingThePress" -msgstr "Trin 4. Håndtering af indstillingerne" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Håndtering af publiceringsopsætning" - -msgid "manager.setup.management.description" -msgstr "" -"Adgang og sikkerhed, planlægning, meddelelser, redigering, layout og " -"korrekturlæsning." - -msgid "manager.setup.settings" -msgstr "Indstillinger" - -msgid "manager.setup.look.description" -msgstr "" -"Hjemmesidens header, indhold, forlagets sidehoved, bundtekst, navigationsbar " -"og stylesheet." - -msgid "manager.setup.look" -msgstr "Udseende (Look & Feel)" - -msgid "manager.setup.lists.success" -msgstr "Listeindstillingerne er blevet opdateret." - -msgid "manager.setup.lists" -msgstr "Lister" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Titel" - -msgid "manager.setup.layoutTemplates.file" -msgstr "Skabelonfil" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "" -"Skabeloner kan uploades så de vises under layout til hvert af de " -"standardformater, der bliver publiceret hos forlaget (f.eks. monografi, " -"boganmeldelse osv.) og til et hvilket som helst filformat (f.eks. pdf, doc " -"osv.) med tilføjede kommentarer og angivelse af skrifttype, størrelse, " -"marginer osv., så det kan fungere som en vejledning for layoutredaktører og " -"korrekturlæsere." - -msgid "manager.setup.layoutTemplates" -msgstr "Layoutskabeloner" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "" -"Layoutinstruktioner til formatering af forlagets publiceringsmateriale kan " -"forberedes og indtastes nedenfor i HTML eller klartekst. De vil blive gjort " -"tilgængelige for layoutredaktør og sektionsredaktør på " -"manuskriptredigeringssiden i forbindelse med hver indsendelse. (Da hvert " -"forlag kan vælge sine egne filformater, bibliografiske standarder, " -"stylesheets osv., leveres der ikke en standardinstruktion.)" - -msgid "manager.setup.layoutInstructions" -msgstr "Layoutinstruktioner" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Layoutredaktører" - -msgid "manager.setup.labelName" -msgstr "Etiketnavn" - -msgid "manager.setup.keyInfo.description" -msgstr "" -"Giv en kort beskrivelse af dit forlag og angiv redaktører, administrerende " -"medarbejdere og andre medlemmer af den redaktionelle gruppe." - -msgid "manager.setup.keyInfo" -msgstr "Nøgleinformation" - -msgid "manager.setup.itemsPerPage.description" -msgstr "" -"Begræns antallet af elementer (f.eks. indsendelser, brugere eller " -"redigeringsopgaver), der skal vises på en liste, før de efterfølgende " -"elementer vises på en anden side." - -msgid "manager.setup.itemsPerPage" -msgstr "Elementer per side" - -msgid "manager.setup.institution" -msgstr "Institution" - -msgid "manager.setup.information.success" -msgstr "Informationen om forlaget blev opdateret." - -msgid "manager.setup.information.forReaders" -msgstr "Til læsere" - -msgid "manager.setup.information.forLibrarians" -msgstr "Til bibliotekarer" - -msgid "manager.setup.information.forAuthors" -msgstr "Til forfattere" - -msgid "manager.setup.information.description" -msgstr "" -"Kort beskrivelse af forlaget for bibliotekarer og potentielle forfattere og " -"læsere. Denne gøres tilgængelig i webstedets sidefelt, når " -"informationsblokken er tilføjet." - -msgid "manager.setup.information" -msgstr "Information" - -msgid "manager.setup.identity" -msgstr "Forlagsidentitet" - -msgid "manager.setup.preparingWorkflow" -msgstr "Trin 3. Forbered workflowet" - -msgid "manager.setup.guidelines" -msgstr "Retningslinjer" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Trin 1. Få styr på detaljerne" - -msgid "manager.setup.generalInformation" -msgstr "Generel information" - -msgid "manager.setup.form.supportNameRequired" -msgstr "Supportnavnet er påkrævet." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Support-e-mailen er påkrævet." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Antallet af bedømmere per indsendelse er påkrævet." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Det primære kontaktnavn er påkrævet." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Den primære e-mail kontakt er påkrævet." - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "" -"OMP overholder " -"Open Archives Initiative Protocol for Metadata Harvesting, som er den " -"nye standard, der skal sørge for velindekseret adgang til elektroniske " -"forskningsressourcer på verdensplan. Forfatterne vil bruge en lignende " -"skabelon til at knytte metadata til deres indsendelse. Forlagschefen skal " -"vælge kategorierne til indeksering og vise forfattere relevante eksempler " -"for at hjælpe dem med at indeksere deres arbejde, idet termer adskilles med " -"et semikolon (f.eks. term1; term2). Eksemplerne skal vises ved at indlede " -"med \"F.eks.\" eller \"For eksempel\"." - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "For forfattere til indeksering af deres værker" - -msgid "manager.setup.focusScopeDescription" -msgstr "EXAMPLE HTML DATA" - -msgid "manager.setup.focusScope" -msgstr "Fokusområde" - -msgid "manager.setup.focusAndScope.description" -msgstr "" -"Beskriv over for forfattere, læsere og bibliotekarer udvalget af monografier " -"og andre publikationer som forlaget vil offentliggøre." - -msgid "manager.setup.focusAndScope" -msgstr "Forlagets fokusområde" - -msgid "manager.setup.enableUserRegistration" -msgstr "Besøgende kan oprette en brugerkonto hos forlaget." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "" -"Brugerdefinerede identifikatorer bruges til at identificere " -"publiceringsversioner (f.eks. HTML- eller PDF-filer) for offentliggjort " -"indhold." - -msgid "manager.setup.enablePublicMonographId" -msgstr "" -"Brugerdefinerede identifikatorer bruges til at identificere offentliggjort " -"indhold." - -msgid "manager.setup.enablePressInstructions" -msgstr "Offentliggør dette forlag på webstedet" - -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "" -"Hvor mange meddelelser, der skal vises på hjemmesiden. Lad dette felt være " -"tomt, hvis ingen skal vises." - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Vis på hjemmesiden" - -msgid "manager.setup.enableAnnouncements.description" -msgstr "" -"Meddelelser kan offentliggøres for at informere læserne om nyheder og " -"begivenheder. Publicerede meddelelser vises på siden Meddelelser." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Aktivér meddelelser" - -msgid "manager.setup.emailSignature.description" -msgstr "" -"De forberedte e-mails, der sendes af systemet på vegne af forlaget, tilføjes " -"følgende signatur ved afslutningen." - -msgid "manager.setup.emailSignature" -msgstr "Signatur" - -msgid "manager.setup.emails" -msgstr "E-mail-identifikation" - -msgid "manager.setup.searchEngineIndexing.success" -msgstr "Indstillingerne for søgemaskineindekset er opdateret." - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "" -"Hjælp søgemaskiner som Google med at finde og vise dit websted. Du opfordres " -"til at indsende dit sitemap." - -msgid "manager.setup.searchEngineIndexing" -msgstr "Søgeindeksering" - -msgid "manager.setup.searchDescription.description" -msgstr "" -"Giv en kort beskrivelse (50-300 tegn) af forlaget, som søgemaskinerne kan " -"vise, når forlaget vises i søgeresultaterne." - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "" -"Redaktører sender en e-mail til udvalgte bedømmere indeholdende " -"manuskriptets titel og resumé samt en invitation til at logge ind på " -"forlagets websted for at færdiggøre bedømmelsen. Bedømmere går ind på " -"forlagets websted accepterer at foretage bedømmelsen, downloade " -"indsendelser, indsende deres kommentarer og vælge en anbefaling." - -msgid "manager.setup.reviewProcessStandard" -msgstr "Standardbedømmelsesproces" - -msgid "manager.setup.reviewProcessEmail" -msgstr "E-mail-baseret bedømmelsesproces" - -msgid "manager.setup.reviewProcessDescription" -msgstr "" -"OMP understøtter to modeller til styring af bedømmelsesprocessen. Det " -"anbefales at anvende standardbedømmelsesprocessen, fordi den trinvis leder " -"bedømmere gennem processen, sikrer en komplet gennemgangshistorik for hver " -"indsendelse og drager fordel af automatisk påmindelsesmeddelelse og " -"standardanbefalinger i forbindelse med manuskriptet (Acceptér; Rettelser er " -"påkrævet; Fremsend igen til bedømmelse; Fremsend igen til andet sted/anden " -"bedømmer; Afvis; Se kommentarer).

Vælg en af følgende:" - -msgid "manager.setup.copyrightNotice.sample" -msgstr "" -"

Forslag til Creative Commons copyright-meddelelser

\n" -"

Forslag til politik for forlag, der tilbyder Open Access

\n" -"Forfattere, der udgiver på dette forlag, accepterer følgende vilkår:\n" -"
    \n" -"
  1. Forfattere beholder copyright og giver forlaget ret til første " -"offentliggørelse af værket samtidig med, at det licenseres under en " -"Creative Commons Attribution Licens , der giver andre mulighed for at " -"dele værket med en anerkendelse af værkets forfatterskab og indledende " -"publicering hos dette forlag.
  2. \n" -"
  3. Forfattere har tilladelse til at indgå separate, nye kontraktlige " -"udgivelser til ikke-eksklusiv udbredelse af versionen af det arbejde, som " -"forlaget har udgivet (f.eks. sende det til et institutionelt repository " -"eller offentliggøre det i en bog), med en anerkendelse af dens første " -"offentliggørelse hos dette forlag.
  4. \n" -"
  5. Forfattere har tilladelse og opfordres til at sende deres arbejde online " -"(f.eks. i institutionelle repositorier eller på deres hjemmeside) før og " -"under indsendelsesprocessen, da det kan føre til produktiv udveksling, samt " -"tidligere og flere citationer i offentliggjorte arbejder (Se Effekten " -"af Open Access).
  6. \n" -"
\n" -"\n" -"

Forslag til politik for forlag, der tilbyder forsinket Open Access

\n" -"Forfattere, der udgiver på dette forlag, accepterer følgende vilkår:\n" -"
    \n" -"
  1. Forfattere beholder copyright og giver forlaget retten til første " -"offentliggørelse af værket [FASTSÆT TIDSPERODE] samtidig med at det " -"licenseres under en Creative Commons Attribution License, der giver " -"andre mulighed for at dele værket med en anerkendelse af værkets " -"forfatterskab og indledende publicering hos dette forlag.
  2. \n" -"
  3. Forfattere har tilladelse til at indgå separate, nye kontraktlige " -"udgivelser til ikke-eksklusiv udbredelse af versionen af det arbejde, som " -"forlaget har udgivet (f.eks. sende det til et institutionelt repository " -"eller offentliggøre det i en bog), med en anerkendelse af dens første " -"offentliggørelse hos dette forlag.
  4. \n" -"
  5. Forfattere har tilladelse og opfordres til at sende deres arbejde online " -"(f.eks. i institutionelle repositorier eller på deres hjemmeside) før og " -"under indsendelsesprocessen, da det kan føre til produktiv udveksling, samt " -"tidligere og flere citationer i offentliggjorte arbejder (Se Effekten " -"af Open Access ).
  6. \n" -"
" - -msgid "manager.files.note" -msgstr "" -"Bemærk: Filbrowseren er en avanceret funktion, der gør det muligt direkte at " -"se og manipulere filer og mapper knyttet til et forlag." - -msgid "manager.setup.productionTemplates" -msgstr "Produktionsskabeloner" - -msgid "manager.setup.files" -msgstr "Filer" - -msgid "manager.setup.editorialTeam.description" -msgstr "" -"Liste over redaktører, ledelse og andre personer, der er tilknyttet forlaget." - -msgid "manager.setup.editorialTeam" -msgstr "Redaktionelt hold" - -msgid "manager.setup.masthead" -msgstr "Kolofon" - -msgid "manager.setup.internalReviewRoles" -msgstr "Interne bedømmerroller" - -msgid "manager.setup.currentRoles" -msgstr "Aktuelle roller" - -msgid "manager.setup.availableRoles" -msgstr "Tilgængelige roller" - -msgid "manager.setup.managerialRoles" -msgstr "Administrative roller" - -msgid "manager.setup.authorRoles" -msgstr "Forfatterroller" - -msgid "manager.setup.roleType" -msgstr "Rolletype" - -msgid "manager.setup.reviewForms" -msgstr "Bedømmelsesformularer" - -msgid "manager.setup.series.description" -msgstr "" -"Du kan oprette et vilkårligt antal serier, der hjælper med at organisere " -"dine publikationer. En serie repræsenterer et specielt sæt bøger, der er " -"tilknyttet et tema eller emner, som nogen har foreslået, ofte et " -"fakultetsmedlem, og som vedkommende derefter fører tilsyn med. Besøgende vil " -"være i stand til at søge i og gennemse forlaget via serie." - -msgid "manager.setup.categories.description" -msgstr "" -"Du kan oprette en liste over kategorier, der hjælper med at organisere dine " -"publikationer. Kategorier kan være grupperinger af bøger efter emne, for " -"eksempel økonomi; litteratur; poesi; osv. Kategorier kan være indlejret " -"under \"overordnede\" kategorier: For eksempel kan en hovedkategori for " -"økonomi omfatte individuelle mikro-økonomiske og makro-økonomiske " -"kategorier. Besøgende vil være i stand til at søge i og gennemse forlaget " -"via kategorier." - -msgid "manager.setup.categoriesAndSeries" -msgstr "Kategorier og serier" - -msgid "manager.setup.currentFormats" -msgstr "Aktuelle formater" - -msgid "manager.setup.issnDescription" -msgstr "" -"ISSN (International Standard Serial Number) er et ottecifret nummer, der " -"identificerer periodiske publikationer inklusive elektroniske serier. Et " -"nummer kan fås fra ISSN " -"International Center." - -msgid "manager.setup.submitToSeries" -msgstr "Tillad serieindsendelser" - -msgid "manager.setup.submitToCategories" -msgstr "Tillad kategoriindsendelser" - -msgid "manager.setup.prospectusDescription" -msgstr "" -"Prospektvejledningen er et dokument udarbejdet af forlaget, der skal hjælpe " -"forfatteren med at beskrive de indsendte materialer på en måde, der giver et " -"forlag mulighed for at bestemme værdien af indsendelsen. Et prospekt kan " -"omfatte en mængde aspekter - fra marketingspotentiale til teoretisk værdi. " -"Under alle omstændigheder bør et forlag oprette en prospektvejledning, der " -"supplerer deres publiceringsagende." - -msgid "manager.setup.prospectus" -msgstr "Prospektvejledning" - -msgid "manager.setup.restoreDefaults" -msgstr "Gendan standardindstillinger" - -msgid "manager.setup.deleteSelected" -msgstr "Slet det valgte" - -msgid "manager.setup.newGenreDescription" -msgstr "" -"For at oprette en ny genre skal du udfylde nedenstående formular og klikke " -"på knappen 'Opret'." - -msgid "manager.setup.newGenre" -msgstr "Ny monografigenre" - -msgid "manager.setup.genres" -msgstr "Genre" - -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "" -"Redaktører sender bedømmere anmodningen om at stå for bedømmelsen med " -"indsendelsen vedhæftet e-mailen. Bedømmere e-mailer redaktører deres " -"samtykke (eller beklagelse) såvel som bedømmelsen og anbefalingen. " -"Redaktører går ind og ser bedømmernes samtykke (eller beklagelse) samt " -"bedømmelsen og anbefaling på indsendelsens bedømmelsesside for at registrere " -"bedømmelsesprocessen." - -msgid "manager.setup.genresDescription" -msgstr "" -"Disse genrer bruges til filnavngivning og præsenteres i en rullemenu i " -"forbindelse med upload af filer. Genrerne benævnt ## giver brugeren mulighed " -"for at knytte filen til enten hele bogen 99Z eller et bestemt kapitel efter " -"nummer (f.eks. 02)." - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "" -"For at oprette et nyt publiceringsformat skal du udfylde nedenstående " -"formular og klikke på knappen 'Opret'." - -msgid "manager.setup.publicationFormat.inUse" -msgstr "" -"Da dette publiceringsformat i øjeblikket er knyttet til en af forlagets " -"monografier, kan det ikke slettes." - -msgid "manager.setup.newPublicationFormat" -msgstr "Nyt publiceringsformat" - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "Er dette et fysisk (ikke-digitalt) format?" - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "Du skal tildele et navn til dette format." - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "Et format skal vælges." - -msgid "manager.setup.publicationFormat.code" -msgstr "Format" - -msgid "manager.setup.volumePerYear" -msgstr "Bind per år" - -msgid "manager.setup.useTextTitle" -msgstr "Titeltekst" - -msgid "manager.setup.userRegistration" -msgstr "Brugerregistrering" - -msgid "manager.setup.useProofreaders" -msgstr "" -"En korrekturlæser vil (sammen med forfatterne) skulle kontrollere " -"publiceringsversionerne inden publicering." - -msgid "manager.setup.useLayoutEditors" -msgstr "" -"En layoutredaktør vil blive knyttet til klargøring af HTML, PDF og andre " -"filer til elektronisk publicering." - -msgid "manager.setup.useStyleSheet" -msgstr "Forlags-stylesheet" - -msgid "manager.setup.useImageTitle" -msgstr "Titelbillede" - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "Et redaktionelt-/bedømmelses-udvalg vil være knyttet til forlaget." - -msgid "manager.setup.useCopyeditors" -msgstr "En manuskriptredaktør vil blive knyttet til hver indsendelse." - -msgid "manager.setup.typeProvideExamples" -msgstr "" -"Giv eksempler på relevante forskningstyper, metoder og tilgange på dette felt" - -msgid "manager.setup.typeMethodApproach" -msgstr "Type (metode/fremgangsmåde)" - -msgid "manager.setup.typeExamples" -msgstr "" -"(F.eks. historisk undersøgelse; kvasi-eksperimentel; litterær analyse; " -"meningsmåling/interview)" - -msgid "manager.setup.submissions.description" -msgstr "" -"Forfattervejledninger, copyright og indeksering (inklusiv registrering)." - -msgid "manager.setup.workflow" -msgstr "Workflow" - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "Tjeklisteindhold er påkrævet." - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Tjekliste til forberedelse af indsendelse" - -msgid "manager.setup.submissionGuidelines" -msgstr "Retningslinjer for indsendelse" - -msgid "manager.setup.subjectProvideExamples" -msgstr "Giv eksempler på nøgleord eller emner som vejledning til forfattere" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Nøgleord" - -msgid "manager.setup.subjectExamples" -msgstr "(F.eks., fotosyntese; sorte huller; firfarveproblemet; Bayes' teorem)" - -msgid "manager.setup.stepsToPressSite" -msgstr "Fem trin til et forlagswebsted" - -msgid "manager.setup.siteAccess.viewContent" -msgstr "Se monografiindhold" - -msgid "manager.setup.siteAccess.view" -msgstr "Webstedsadgang" - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "Vis altid links til publiceringsversion og angiv begrænset adgang." - -msgid "manager.setup.selectSectionDescription" -msgstr "" -"Forlagssektionen som vil blive taget i betragtning i forbindelse dette " -"indlæg." - -msgid "manager.setup.selectEditorDescription" -msgstr "Forlagsredaktøren, der vil følge det gennem den redaktionelle proces." - -msgid "manager.setup.securitySettings.note" -msgstr "" -"Andre sikkerheds- og adgangsrelaterede indstillinger kan konfigureres fra " -"siden " -"Adgang og sikkerhed." - -msgid "manager.setup.securitySettings" -msgstr "Adgangs- og sikkerhedsindstillinger" - -msgid "manager.setup.sectionsDescription" -msgstr "" -"Hvis du vil oprette eller ændre sektioner til forlaget (f.eks. monografier, " -"boganmeldelser osv.), Skal du gå til Sektionsstyring.

" -"Forfattere, der sender indlæg til forlaget, vil udpege ..." - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "" -"(Hvis sektioner ikke er tilføjet, sendes poster som standard til afsnittet " -"'Monografier'.)" - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Sektioner og sektionsredaktører" - -msgid "stats.publications.abstracts" -msgstr "Katalogindgange" - -msgid "stats.publications.countOfTotal" -msgstr "{$count} af {$total} monografier" - -msgid "stats.publications.totalGalleyViews.timelineInterval" -msgstr "Komplet filvisning efter dato" - -msgid "stats.publications.totalAbstractViews.timelineInterval" -msgstr "Komplet katalogvisning efter dato" - -msgid "stats.publications.none" -msgstr "" -"Der blev ikke fundet nogen monografier med brugsstatistikker, der matcher " -"disse parametre." - -msgid "stats.publications.details" -msgstr "Monografidetaljer" - -msgid "stats.publicationStats" -msgstr "Monografistatistikker" - -msgid "grid.series.urlWillBe" -msgstr "Seriens URL vil blive: {$sampleUrl}" - -msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" -msgstr "Vælg den kategori, som du ønsker, at dette menupunkt skal linke til." - -msgid "manager.navigationMenus.form.navigationMenuItem.category" -msgstr "Vælg kategori" - -msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" -msgstr "Vælg den serie, som du ønsker, at dette menupunkt skal linke til." - -msgid "manager.navigationMenus.form.navigationMenuItem.series" -msgstr "Vælg serier" - -msgid "grid.series.pathExists" -msgstr "Seriestien findes allerede. Indtast en unik sti." - -msgid "grid.series.pathAlphaNumeric" -msgstr "Seriestien må kun bestå af bogstaver og tal." - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "" -"Send en kopi til den primære kontaktperson, der er registreret i " -"forlagsindstillinger." - -msgid "grid.genres.title" -msgstr "Monografikomponenter" - -msgid "grid.genres.title.short" -msgstr "Komponenter" - -msgid "manager.setup.resetPermissions.success" -msgstr "Monografitilladelser blev nulstillet." - -msgid "manager.setup.resetPermissions.description" -msgstr "" -"Copyright-erklæring og licensoplysninger vil permanent være knyttet til " -"allerede publiceret materiale, hvilket sikrer, at disse data ikke ændres i " -"tilfælde af forlaget skifter politik i forbindelse med nye indsendelser. For " -"at nulstille gemte tilladelsesdata knyttet til det allerede publicerede " -"materiale anvendes knappen herunder." - -msgid "manager.setup.resetPermissions.confirm" -msgstr "" -"Er du sikker på, at du vil nulstille tilladelsesdata, der allerede er " -"knyttet til monografier?" - -msgid "manager.setup.resetPermissions" -msgstr "Nulstil monografitilladelser" - -msgid "manager.publication.library" -msgstr "Forlagsbibliotek" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "" -"

For at gøre det muligt for læsere at finde onlineversioner af det af en " -"forfatter citerede værk, er følgende indstillinger tilgængelige.

\n" -"\n" -"
    \n" -"
  1. Tilføj et læseværktøj

    Forlagschefen kan tilføje \"" -"Find referencer\" til læseværktøjerne, der ledsager publiceret materiale, " -"som gør det muligt for læsere at indsætte en references titel og derefter " -"søge efter det citerede materiale i forudvalgte videnskabelige " -"databaser.

  2. \n" -"
  3. Indsæt links i referencerne

    Layoutredaktøren kan " -"tilføje et link til referencer, der kan findes online ved hjælp af følgende " -"instruktioner (som kan redigeres).

  4. \n" -"
" - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "" -"Trin: Indsendelseskø > Indsendelsesbedømmelse > Indsendelsesredigering " -"> Indholdsfortegnelse.

\n" -"Vælg en model til håndtering af disse trin i den redaktionelle proces. (Gå " -"til Redaktører under Forlagsadministration for at udpege en hovedredaktør og " -"serieredaktører.)" - -msgid "manager.setup.pressThumbnail.description" -msgstr "" -"Et lille logo eller repræsentation af forlaget, der kan bruges i oversigter " -"over forlag." - -msgid "manager.setup.pressThumbnail" -msgstr "Forlagsminiaturebillede" - -msgid "manager.setup.disableSubmissions.description" -msgstr "" -"Afhold brugere fra at sende nye indlæg til forlaget. Indsendelser kan " -"deaktiveres for individuelle forlagsserier på siden " -"forlagsserier ." - -msgid "manager.setup.disableSubmissions.notAccepting" -msgstr "" -"Dette forlag accepterer ikke indsendelser på nuværende tidspunkt. Gå til " -"workflow-indstillingerne for at tillade indsendelser." - -msgid "manager.series.confirmDeactivateSeries.error" -msgstr "" -"Mindst én serie skal være aktiv. Gå til workflow-indstillingerne for at " -"deaktivere alle indsendelser til dette forlag." - -msgid "plugins.importexport.native.exportSubmissions" -msgstr "Eksporter indsendelser" - -msgid "plugins.importexport.common.invalidXML" -msgstr "Ugyldig XML:" - -msgid "plugins.importexport.common.error.validation" -msgstr "Kunne ikke konvertere valgte objekter." - -msgid "plugins.importexport.common.error.noObjectsSelected" -msgstr "Ingen objekter er blevet valgt." diff --git a/locale/da_DK/manager.xml b/locale/da_DK/manager.xml deleted file mode 100644 index 3be5436e42d..00000000000 --- a/locale/da_DK/manager.xml +++ /dev/null @@ -1,365 +0,0 @@ - - - - - - - Dette erstatter alle lokalitetsspecifikke forlagsindstillinger, du havde i tilknytning til dette sprog (lokalitet) - Beklager, ingen yderligere sprog er tilgængelige. Kontakt din websteds-administrator, hvis du ønsker at bruge flere sprog i forbindelse med dette forlag. - Dette vil være standardsproget for forlags-sitet. - Sørg for, at der mindst er markeret et afkrydsningsfelt for hver serieredaktør-tildeling. - Sørg for, at du har valgt en gyldig bedømmelsesformular. - Vil ikke være med i forlagenes indeksering - Elementer kan kun indsendes af redaktører og serieredaktører. - Er du sikker på, at du vil slette denne serie permanent? - Indekseret - Åben indsendelse - Læseværktøjer - Vil ikke blive fagfællebedømt - Indsendelser foretaget til denne serie - Kræver ikke resume - Deaktiver læserkommentarer i forbindelse denne serie - Bogserie - Opret serie - Seriebeskrivelse - Redaktører til denne serie - Serieredaktører /a> under Roller i forlagsadministration.]]> - Undlad denne serie i Om forlaget. - Tilgængelige serieredaktører - En forkortet titel til serien er påkrævet. - En titel til serien er påkrævet. - Der er ikke oprettet nogen serier. - Eksisterende brugere - Serietitel - Tillad ikke forfattere at sende direkte til denne serie. - Generelle indstillinger - Betalinger vil blive aktiveret i forbindelse med dette forlag. Bemærk, at brugerne skal logge på for at foretage betalinger. - Indstillinger - Forlagsindstillinger - Forlag - ONIX metadata. Medtag dem, hvis du ønsker at offentliggøre ONIX-metadata.]]> - Forlagets udgivernavn - Geografisk placering - Udgiverkode - Type for udgiverkode - Hvis du har en kode til dit udgivernavn, skal du udfylde den nedenfor. Det vil blive inkluderet i genererede metadata. Feltet er påkrævet, hvis du genererer ONIX-metadata til dine publikationer. - Alle indstillinger, der er specifikke for distributionsprocessen (notifikation, indeksering, arkivering, betaling, læseværktøjer). - Download af monografi-fil - Visninger af monografisk resumeside - Monografisk resume og downloads - Visninger af en series hovedside - Visninger af et forlags hovedside - Begræns resultater efter kontekst (serie og/eller monografi). - Begræns resultater efter objekttype (forlag, serie, monografi, filtyper) og/eller efter et eller flere objekt-id(er). - Værktøjer - Alle værktøjer, der er specifikke i forbindelse med import og eksport af data (forlag, monografier, brugere) - Værktøjer til at generere rapporter relateret til brugsstatistikker (visning af katalogindeks-side, visning af resume-sider, download af monografi-filer) - Brugeradministration - Tilgængelige roller - Aktuelle roller - Vælg rolle - Brugere tilmeldt dette forlag - Alle forlag - Tilmeld en bruger fra dette site til dette forlag - Alle tilmeldte brugere - Vil du fjerne denne bruger fra dette forlag? Denne handling vil fjerne brugeren fra alle roller tilknyttet dette forlag. - Tilmeld en eksisterende bruger - Med forlag - Vælg en bruger, der skal sammenflettes med en anden brugerkonto (f.eks. når en bruger har to brugerkonti). Den førstvalgte konto bliver slettet, og dens indsendelser, opgaver osv. lægges under den anden konto. - Vælg en bruger, som den forrige brugers forfatterskaber, redigeringsopgaver osv. skal lægges ind under. - Tilmeldingssynkronisering tilmelder alle brugere, der er tilmeldt den nævnte rolle hos det specificerede forlag, til en og samme rolle hos dette forlag. Denne funktion gør det muligt at synkronisere et fælles sæt brugere (f.eks. bedømmere) mellem de enkelte forlag. - Deaktiver denne bruger? Dette forhindrer brugeren i at logge ind i systemet. - -Du kan eventuelt give brugeren en grund til at vedkommendes konto deaktiveres. - -
  • Brugeren er en webstedsadministrator
  • -
  • Brugeren er aktiv hos de forlag, du ikke administrerer
  • - -Denne opgave skal udføres af en webstedsadministrator.]]>
    - Systemindstillinger - Arkivering - Bedømmelsesformularer - Læseværktøjer - Betalinger - Du har ikke tilstrækkelige brugerrettigheder til at administrere dette plugin. - Forlagsadministration - Opsætning - Indhold - Tilføj 'Om'-element - Tilføj tjeklisteelementer - Tilføj elementer - Tilføj element, der skal vises i "Om forlaget" - Tilføj element - Tilføj sponsororganisation - Meddelelser - Meddelelser kan offentliggøres for at informere læserne om nyheder og begivenheder. Publicerede meddelelser vises på siden Meddelelser. - Yderligere Information - Indtast yderligere oplysninger, der skal vises for læserne på siden 'Meddelelser'. - (Vises i 'Om forlaget') - Manuskriptredaktører - Anvisninger til manuskriptredaktører - Anvisningerne til manuskriptredaktørerne stilles til rådighed for manuskriptredaktører, forfattere og sektionredaktører under redigeringsfasen. Nedenfor er et standardsæt med instruktioner i HTML, som til enhver tid kan ændres eller erstattes af forlagschefen (i HTML eller almindelig tekst). - Oplysninger om ophavsret - Dækningsområde - - Brugerdefinerede tags - Brugerdefinerede HTML-header-tags, der skal indsættes i headeren på hver side (f.eks. META-tags). - Detaljer - Forlaget navn, kontakter, sponsorer og søgemaskiner. - Forlagschefen registrerer alle brugerkonti. Redaktører eller sektionsredaktører kan registrere brugerkonti for bedømmere. - Akademisk fagområde og underdiscipliner - Nyttig, når forlaget krydser faggrænser og/eller forfattere indsender tværfagligt indhold. - (F.eks. Historie; Uddannelse; Sociologi; Psykologi; Kulturstudier; Jura) - Giv eksempler på relevante akademiske fagområder i forbindelse med dette forlag - Tilføj indholdsfortegnelsen til den aktuelle monografi (hvis tilgængelig). - Hjemmesideindhold - Vis fremhævede bøger på startsiden. - Vis spotlight-bøger på hjemmesiden. - Vis nye udgivelser på hjemmesiden - DOI-præfiks - CrossRef og er i formatet 10.xxxx (f.eks. 10.1234).]]> - Redaktørbeslutning - Bounce-adresse - Eventuelle e-mails, der ikke kan leveres, resulterer i en fejlmeddelelse til denne adresse. - Bemærk: For at aktivere denne indstilling skal webstedsadministratoren aktivere indstillingen allow_envelope_sender i OMP-konfigurationsfilen. Yderligere serverkonfiguration kræves muligvis for at understøtte denne funktionalitet (som muligvis ikke er mulig på alle servere), som angivet i OMP-dokumentationen.]]> - E-mail-identifikation - Signatur - De forud formulerede e-mails, der sendes af systemet på vegne af forlaget, tilføjes følgende signatur til slut. - Aktiver meddelelser - Vis - af de seneste meddelelser på forlagets hjemmeside. - Offentliggør dette forlag på webstedet - Brugerdefinerede identifikatorer vil blive brugt til at identificere offentliggjort indhold. - Brugerdefinerede identifikatorer vil blive brugt til at identificere publiceringsversioner (f.eks. HTML- eller PDF-filer) i det publicerede indhold. - Besøgende kan registrere en brugerkonto hos forlaget. - Forlagets fokusområde - Beskriv for forfattere, læsere og bibliotekarer udvalget af monografier og andet indhold, som forlaget vil offentliggøre. - Fokusområde - EXAMPLE HTML DATA]]> - Til brug for forfattere i forbindelse med indeksering af deres arbejde - Open Archives Initiative-protokollen i forbindelse med Metadata Harvesting, som er den nye standard til levering af en velindekseret adgang til elektroniske forskningsressourcer på verdensplan. Forfatterne vil bruge en lignende skabelon til at levere metadata til deres indsendelse. Forlagschefen skal vælge kategorierne til indeksering og præsentere relevante eksempler for forfattere for at hjælpe dem med at indeksere deres arbejde. Termer adskilles med en semikolon (f.eks. term 1; term2). Indgangene skal introduceres som eksempler ved at bruge "F.eks" eller "For eksempel".]]> - Den primære kontaktpersons e-mail er påkrævet. - Den primære kontaktpersons navn er påkrævet. - Forlagets navn er påkrævet. - Antallet af bedømmere pr. Indsendelse er påkrævet. - Support-e-mail er påkrævet - Supportnavn er påkrævet - Forlagets initialer er påkrævet. - Generel information - Trin 1. Indskriv detaljerne - Retningslinjer - Trin 3. Forberedelse af workflowet - Korte beskrivelser af forlaget til bibliotekarer og potentielle forfattere og læsere. Beskirivelserne bliver gjort tilgængelige i webstedets sidemenu, når Informationsfunktionen er tilføjet. - Til Forfattere - Til bibliotekarer - Til læsere - Institution - Mærkenavn - Layoutredaktører - Layout-vejledninger - Layout-vejledninger kan forberedes og indsættes i forbindelse med formatering af indhold, der senere skal publiceres. Vejledningerne lægges ind nedenfor i HTML eller almindelig tekst. De vil blive gjort tilgængelige for layoutredaktør og sektionsredaktør på redigeringssiden til hver indsendelse. (Da hvert forlag kan anvende sine egne filformater, bibliografiske standarder, typografiark osv., leveres der her ikke et sæt standardinstruktioner). - Layoutskabeloner - Skabeloner kan uploades så de vises i Layout for hvert af de standardformater, som forlaget har offentliggjort (f.eks. monografi, bogbedømmelse osv.) og ethvert filformat (f.eks. pdf, doc osv.) med tilføjede kommentarer, der angiver skrifttype, størrelse , marginer osv. så det fungerer som en guide til layoutredaktører og korrekturlæsere. - Skabelonfil - Titel - Lister - Begræns antallet af poster (f.eks. indsendelser, brugere eller redigeringsopgaver), der skal vises på en liste, før de efterfølgende poster vises på en anden side. Begræns også antallet af links, der skal vises på de efterfølgende siders lister. - - Homepage-sidens sidehoved, indhold, forlagets sidehoved, sidefod, navigationmenu og style sheet. - Indstillinger - Adgang og sikkerhed, planlægning, meddelelser, manuskriptredigering, layout og korrekturlæsning. - Administration af grundlæggende redaktionelle trin - Administrations- og publiceringsopsætning - Trin 4. Håndtering af indstillinger - Ingen billedfil uploadet. - Intet style sheet uploadet. - Note - Når du bruger 'Underret forfatter-e-mailen', skal du, på de indsendelser, der har flere forfattere, inkludere e-mail-adresserne på alle medforfattere og ikke kun e-mail-adressen på den, der indsender manuskriptet. - Manuskriptredigering vil blive foretaget af en redaktør eller sektioneditor, der har fået tildelt indsendelsen. - En redaktør eller sektionsredaktør, der har fået tildelt indsendelsen klargør publiceringsfilerne (HTML-, PDF- osv.). - En redaktør eller sektionsredaktør, der er blevet tildelt indsendelsen, kontrollerer publiceringsfilerne. - Sidelinks - Adgang til forlagsindhold - Online ISSN - Politikker - Fokus, peer review, sektioner, erklæring om beskyttelse af personlige oplysninger, sikkerhed og ekstra indhold under 'Om'. - Forskellige komponenter, der indgår i opbygningen af udseendet af forlagssiderne kan konfigureres fra denne side, inklusiv sidehoved- og sidefodselementer, forlagets stil og layout-tema, og måden hvorpå lister med information præsenteres for brugerne. - Forlagsresume - En kort beskrivelse af dit forlag. - Om forlaget - Medtag alle oplysninger om dit forlag, som kan være af interesse for læsere, forfattere eller bedømmere. Dette kan omfatte din open access-politik, fokusområde, ophavsret, sponsoreringer, forlagets historie og en erklæring om beskyttelse af personlige oplysninger. - Forlagsarkivering - Forlagets homepage-indhold - Forlagets hjemmeside består i standardopsætningen af navigationslink. Yderligere hjemmesideindhold kan tilføjes ved hjælp af en eller flere af følgende indstillinger, som optræder i den viste rækkefølge. - Forlagets homepage-indhold - Forlagets hjemmeside består i standardopsætningen af navigationslink. Yderligere hjemmesideindhold kan tilføjes ved hjælp af en eller flere af følgende indstillinger, som optræder i den viste rækkefølge. - Forlagsinitialer - Forlags-layout - Forlagets sidehoved - Trin 2. Forlags-politikker - Forlagsopsætning - Din forlagsopsætning er blevet opdateret. - Ugyldigt style sheet. Accepteret format er .css. - Forlagets layout-tema - Forlagsnavn - Print ISSN - Korrekturvejledning - Korrekturlæsnings-vejledningen stilles til rådighed for korrekturlæsere, forfattere, layout-redaktører og sektionsredaktører i redigeringsfasen. Nedenfor findes et standardsæt med vejledninger i HTML, som, til enhver tid, kan redigeres eller erstattes af forlagschefen (i HTML eller almindelig tekst). - Korrekturlæsere - Lever vejledning til layout-redaktører. - Forlagsindhold kan offentliggøres samlet som en del af en monografi med egen indholdsfortegnelse. Alternativt kan enkelte dele af indhold offentliggøres, så snart de er klar, ved at tilføje dem til det "aktuelle" binds indholdsfortegnelse. Giv læserne i 'Om forlaget' en redegørelse for det system, dette forlag vil bruge, og dets forventede udgivelsesfrekvens. - Udgiver - Navnet på den organisation, der står bag forlaget, vises i Om forlaget. - Reference-linking - Layout-vejledning i forbindelse med reference-linking - Brugere skal være registreret og logget på for at se indhold med åben adgang. - Brugere skal være registreret og logget på for at se forlagets hjemmesider. - Retningslinjer for eksterne bedømmere - Sørg får at eksterne bedømmere får en vejledning i, hvordan de bedømmer om en indsendelse er egnet til publicering hos forlaget. I vejledningen kan der indgå en instruktion i hvordan en effektiv og nyttig bedømmelse forberedes. Bedømmere vil have mulighed for at videregive kommentarer til forfatteren og redaktøren samt separate kommentarer til redaktøren. - Retningslinjer for interne bedømmere - Ligesom i retningslinjerne for ekstern bedømmelse, vil disse instruktioner give bedømmere oplysninger om hvordan en indsendelsen skal vurderes. Denne vejledning er til bedømmere, der generelt agerer som interne bedømmere for forlaget. - Bedømmelsesmuligheder - Automatiske e-mail-påmindelser - scheduled_tasks i OMP-konfigurationsfilen. Yderligere serverkonfiguration kræves muligvis for at understøtte denne funktionalitet (som måske ikke er mulig på alle servere), som angivet i OMP-dokumentationen.]]> - Blind Review - Redaktører vurderer bedømmere på en fem-trins kvalitetskala efter hver gennemgang. - Bedømmere har kun adgang til indsendelsesfilen, når de har accepteret at gennemføre bedømmelsen. - Bedømmeradgang - Aktiver adgang for bedømmere ved hjælp af ét klik. - Bemærk: E-mail-invitationen til bedømmere vil indeholde en speciel URL, der bringer inviterede bedømmere direkte til indsendelsens redaktionelle bedømmelsesside (med adgang til andre sider, der kræver login). Af sikkerhedsmæssige årsager kan redaktører, i denne sammenhæng, ikke ændre e-mail-adresser eller tilføje CC'er eller BCC'er, før de sender invitationer til bedømmere.]]> - Bedømmervurderinger - Bedømmer-påmindelser - Indsæt link til "Sikring af blind review" på sider, hvor forfattere og bedømmere uploader filer. - Bedømmelsespolitikker - Bedømmelsesproces -
    Vælg en af følgende:]]>
    - Email-Attachment Review Process - Standard Review Process - Redaktører sender en e-mail til udvalgte bedømmere med titel og abstrakt samt en invitation til at logge ind på forlagets website for at gennemføre anmeldelsen. Bedømmere går ind på forlagets website for at tilkendegive om de vil give en bedømmelse, downloade indsendelser, indsende deres kommentarer og vælge en anbefaling. - Søgemaskineindeksering - Giv en kort beskrivelse af forlaget, som søgemaskiner kan vise, når forlaget vises i søgeresultaterne. - Sektioner og sektionsredaktører - (Hvis sektioner ikke er tilføjet, sendes poster som standard til sektionen 'Monografier'). -
    Forfattere vil, ved indsendelse af poster til forlaget, udpege...]]>
    - Adgangs- og sikkerhedsindstillinger - Adgang og sikkerhed page.]]> - Forlagsredaktøren, der vil følge det gennem den redaktionelle proces. - Sektionen, som indlægget vil blive set i forhold til. - Vis altid links til publiceringsfiler og angiv begrænset adgang. - Yderligere adgangsbegrænsninger til website og indhold - Fem trin til et forlags-websted - (F.eks. Fotosyntese; sorte huller; bayesisk teori) - Nøgleord - Giv eksempler på nøgleord eller emner som vejledning for forfattere - Indsendelsesvejledning - Tjekliste til forberedelse af manuskript - Tjeklisteindhold er påkrævet. - Workflow - Retningslinjer for forfattere, ophavsret og indeksering (inklusiv registrering). - Miniaturebillede af bogomslag - Indstil maksimal bredde og højde på miniaturebillederne af bogomslagene. Hvis de er større ændres de til disse indstillinger, men hvis de er mindre forstørres de ikke. Billederne strækkes aldrig for at passe til disse dimensioner. - Maks. højde - Der kræves en maksimal højde på miniaturebilledet af bogomslag. - Maks. bredde - Der kræves en maksimal bredde på miniaturebilledet til bogomslag. - Ændre størrelse på alle eksisterendeminiaturebilleder til bogomslag. - (F.eks. historisk undersøgelse; kvasi-eksperimentel; litterær analyse; undersøgelse/interview) - Type (metode/fremgangsmåde) - Giv eksempler på relevante forskningstyper, metoder og tilgange til dette felt - En manuskriptredaktør vil blive knyttet til redigeringen af hver indsendelse. - Et rådgivende udvalg dækkende det redaktionelle og bedømmelsesmæssige område vil blive tilknyttet forlaget. - Titelbillede - Forlags style sheet - Der vil blive tilknyttet en layoutredaktør der vil klargøre HTML, PDF og andre filtyper til elektronisk publicering. - Der vil blive tilknyttet en korrekturlæser der sammen med forfatterne vil tjekke publiceringsfilerne inden udgivelsen. - Brugerregistrering - Titeltekst - Bind per år - Format - Der skal vælges et format. - Du skal tildele et navn til dette format. - Er dette et fysisk (ikke-digitalt) format? - Da dette publikationsformat i øjeblikket bruges af en af forlagets monografier, kan det ikke slettes. - Nyt publiceringsformat - For at oprette et nyt publikationsformat skal du udfylde nedenstående formular og klikke på knappen "Opret". - Disse genrer bruges til filnavngivning og præsenteres i en rullemenu i forbindelse med upload af filer. Genrene, der er betegnet ##, giver brugeren mulighed for at knytte filen til enten hele bogen 99Z eller et bestemt kapitel efter nummer (f.eks. 02). - Redaktører sender bedømmere anmodningen om at foretage en bedømmelse med indsendelsen vedhæftet e-mailen. Bedømmere sender e-mail til redaktører med deres godkendelse (eller indvendinger) sammen med gennemgangen og anbefalingen. Redaktører indsætter bedømmernes godkendelse (eller indvendinger) såvel som gennemgang og anbefalinger i forbindelse med indsendelsen på den redaktionelle bedømmelsesside for at registrere bedømmelsesprocessen. - Genre - Nye monografigenre - For at oprette en ny genre skal du udfylde nedenstående formular og klikke på knappen "Opret". - Slet valgte - Gendan standardindstillinger - Prospektvejledning - Prospektvejledningen er et dokument udarbejdet af forlaget, der hjælper forfatteren med at beskrive de indsendte materialer på en måde, der giver et forlag mulighed for at bestemme værdien af indsendelsen. Et prospekt kan omfatte mange elementer - fra markedsføringspotentiale til teoretisk værdi. Under alle omstændigheder bør et forlag oprette en prospektvejledning, der supplerer deres udgivelsesprogram. - Tillad kategori-indsendelser - Tillad serie-indsendelser - ISSN International Center.]]> - Katalogisering af metadata - Aktuelle formater - Kategorier og serier - Du kan oprette en liste over kategorier, der hjælper med at organisere dine publikationer. Kategorier er grupperinger af bøger efter emne, for eksempel økonomi; litteratur; poesi osv. Kategorier kan være indlejret inden for "overordnede" kategorier, for eksempel kan en hovedkategori for økonomi omfatte individuelle mikroøkonomiske og makroøkonomiske kategorier. Besøgende vil være i stand til at søge og gennemse pressen efter kategori. - Du kan oprette et vilkårligt antal serier, der hjælper med at organisere dine publikationer. En serie repræsenterer et specielt sæt bøger, der knytter sig til et tema eller emner, som nogen måtte have foreslået, normalt et fakultetsmedlem eller to, der derefter fører tilsyn med indholdet. Besøgende vil være i stand til at søge og gennemse forlaget efter serie .. - Bedømmelsesformularer - Rolletyper - Forfatterroller - Administrerende roller - Tilgængelige roller - Aktuelle roller - Interne bedømmelsesroller - Kolofon - Redaktionel gruppe - Liste over redaktører, administrerende ledere og andre personer, der er tilknyttet forlaget - Filer - Produktionsskabeloner - Bemærk: Filbrowseren er en avanceret funktion, der gør det muligt at se filer og mapper, der er knyttet til et forlag, med det formål at se og håndtere dem direkte. - Proposed Creative Commons Copyright Notices -

    Proposed Policy for Presses That Offer Open Access

    -Authors who publish with this press agree to the following terms: -
      -
    1. Authors retain copyright and grant the press right of first publication with the work simultaneously licensed under a Creative Commons Attribution License that allows others to share the work with an acknowledgement of the work's authorship and initial publication in this press.
    2. -
    3. Authors are able to enter into separate, additional contractual series for the non-exclusive distribution of the version of the work published by the press (e.g., post it to an institutional repository or publish it in a book), with an acknowledgement of its initial publication in this press.
    4. -
    5. Authors are permitted and encouraged to post their work online (e.g., in institutional repositories or on their website) prior to and during the submission process, as it can lead to productive exchanges, as well as earlier and greater citation of published work (See The Effect of Open Access).
    6. -
    - -

    Proposed Policy for Presses That Offer Delayed Open Access

    -Authors who publish with this press agree to the following terms: -
      -
    1. Authors retain copyright and grant the press right of first publication, with the work [SPECIFY PERIOD OF TIME] after publication simultaneously licensed under a Creative Commons Attribution License that allows others to share the work with an acknowledgement of the work's authorship and initial publication in this press.
    2. -
    3. Authors are able to enter into separate, additional contractual series for the non-exclusive distribution of the version of the work published by the press (e.g., post it to an institutional repository or publish it in a book), with an acknowledgement of its initial publication in this press.
    4. -
    5. Authors are permitted and encouraged to post their work online (e.g., in institutional repositories or on their website) prior to and during the submission process, as it can lead to productive exchanges, as well as earlier and greater citation of published work (See The Effect of Open Access).
    6. -
    ]]>
    -
    -Vælg en model til håndtering af disse dele af den redaktionelle proces. (Hvis du vil udpege en administrerende redaktør og serieredaktører, skal du gå til Redaktører under forlagsadministration.)]]>
    - For at gøre det muligt for læsere at finde online-versioner af det af en forfatter citerede værk er følgende indstillinger tilgængelige.

    - -
      -
    1. Tilføj et læseværktøj

      Forlagschefen kan tilføje "Find referencer" til læseværktøjerne, der følger med publiceret indhold, og som gør det muligt for læsere at indsætte en references titel og derefter søge i forudvalgt videnskabeligt baserede databaser efter det citerede arbejde.

    2. -
    3. Integrer links i referencerne

      Layoutredaktøren kan tilføje et link til referencer, der kan findes online ved hjælp af følgende instruktioner (som kan redigeres).

    4. -
    ]]>
    - Forlagsbibliotek - Nulstil monografi-tilladelser - Er du sikker på, at du vil nulstille data-tilladelses, der allerede er knyttet til monografier? - Ophavsretlig erklæring og licensoplysninger vil blive vedhæftet permanent til publiceret indhold, hvilket sikrer, at disse data ikke ændres i tilfælde af forlagspolitiske ændringer for nye indsendelser. For at nulstille gemte tilladelsesoplysninger, der allerede er knyttet til publiceret indhold, skal du bruge knappen nedenfor. - Komponenter - Monografikomponenter - Send en kopi til den primære kontaktperson, der er registreret i forlagets web-indstillinger. - Seriestien skal kun bestå af bogstaver og tal. - Seriestien findes allerede. Indtast en unik sti. - Vælg serie - Vælg den serie, som du ønsker, at dette menupunkt skal linke til. - Vælg kategori - Vælg den kategori, som du ønsker, at dette menupunkt skal linke til. - Seriens URL vil være: {$sampleUrl} - Monografidetaljer - Ingen monografier blev fundet - Samlede resume-visninger for hver monografi efter dato -
    diff --git a/locale/da_DK/submission.po b/locale/da_DK/submission.po deleted file mode 100644 index c2dfef62633..00000000000 --- a/locale/da_DK/submission.po +++ /dev/null @@ -1,488 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28T15:10:05-08:00\n" -"PO-Revision-Date: 2020-11-27 19:05+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.submit.title" -msgstr "Indsend en monografi" - -msgid "submission.upload.selectComponent" -msgstr "Vælg komponent" - -msgid "submission.title" -msgstr "Bogtitel" - -msgid "submission.select" -msgstr "Vælg indsendelse" - -msgid "submission.synopsis" -msgstr "Synopsis" - -msgid "submission.workflowType" -msgstr "Indsendelsestype" - -msgid "submission.workflowType.description" -msgstr "En monografi er et værk, der helt igennem er skrevet af en eller flere forfattere. Et redigeret værk har forskellige forfattere til hvert enkelt kapitel (med kapiteloplysninger indtastet senere i denne proces.)" - -msgid "submission.workflowType.editedVolume" -msgstr "Redigeret værk: Forfattere er knyttet til deres eget kapitel." - -msgid "submission.workflowType.authoredWork" -msgstr "Monografi: Forfattere er forbundet med bogen som helhed." - -msgid "submission.editorName" -msgstr "{$editorName} (ed)" - -msgid "submission.published" -msgstr "Klar til produktion" - -msgid "submission.fairCopy" -msgstr "Renskrift" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.artwork.permissions" -msgstr "Tilladelser" - -msgid "submission.chapter" -msgstr "Kapitel" - -msgid "submission.chapters" -msgstr "Kapitler" - -msgid "submission.chaptersDescription" -msgstr "Du kan opstille en liste over kapitlerne her og tilknytte forfattere fra listen over bidragydere ovenfor. Disse forfattere kan få adgang til kapitlet i forskellige faser af den redaktionelle proces." - -msgid "submission.chapter.addChapter" -msgstr "Tilføj kapitel" - -msgid "submission.chapter.editChapter" -msgstr "Redigér kapitel" - -msgid "submission.chapter.pages" -msgstr "Sider" - -msgid "submission.copyedit" -msgstr "Manuskriptredigering" - -msgid "submission.publicationFormats" -msgstr "Publikationsformater" - -msgid "submission.proofs" -msgstr "Korrekturer" - -msgid "submission.download" -msgstr "Download" - -msgid "submission.sharing" -msgstr "Del dette" - -msgid "manuscript.submission" -msgstr "Manuskriptindsendelse" - -msgid "submission.round" -msgstr "Runde {$round}" - -msgid "submissions.queuedReview" -msgstr "Til bedømmelse" - -msgid "manuscript.submissions" -msgstr "Manuskriptindsendelser" - -msgid "submission.confirmSubmit" -msgstr "Er du sikker på, at du ønsker at indsende dette manuskript til forlaget?" - -msgid "submission.metadata" -msgstr "Metadata" - -msgid "submission.supportingAgencies" -msgstr "Støtteinstanser" - -msgid "grid.action.addChapter" -msgstr "Opret et nyt kapitel" - -msgid "grid.action.editChapter" -msgstr "Redigér dette kapitel" - -msgid "grid.action.deleteChapter" -msgstr "Slet dette kapitel" - -msgid "submission.submit" -msgstr "Påbegynd ny indsendelse af bog" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Påbegynd en ny indsendelse i" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Ny indsendelse" - -msgid "submission.submit.upload" -msgstr "Upload indsendelse" - -msgid "submission.submit.cancelSubmission" -msgstr "Du kan afslutte denne indsendelse på et senere tidspunkt ved at vælge aktive indsendelser fra forfatterens webside." - -msgid "submission.submit.selectSeries" -msgstr "Vælg serie (valgfrit)" - -msgid "author.submit.seriesRequired" -msgstr "En gyldig serie er påkrævet." - -msgid "submission.submit.seriesPosition" -msgstr "Seriens position" - -msgid "submission.submit.seriesPosition.description" -msgstr "Eksempler: Bog 2, bind 2" - -msgid "submission.submit.form.localeRequired" -msgstr "Vælg et indsendelsessprog." - -msgid "submission.submit.privacyStatement" -msgstr "Erklæring om beskyttelse af personlige oplysninger" - -msgid "submission.submit.contributorRole" -msgstr "Bidragyderens rolle" - -msgid "submission.submit.form.authorRequired" -msgstr "Der kræves mindst en forfatter." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Forfatterens fornavn, efternavn og e-mail-adresse er påkrævet." - -msgid "submission.submit.form.titleRequired" -msgstr "Indtast titlen på din monografi." - -msgid "submission.submit.form.abstractRequired" -msgstr "Indsæt et kort resumé over din monografi." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Vælg bidragyderens rolle." - -msgid "submission.submit.submissionFile" -msgstr "Indsendelsesfil" - -msgid "submission.submit.prepare" -msgstr "Forbered" - -msgid "submission.submit.catalog" -msgstr "Katalog" - -msgid "submission.submit.metadata" -msgstr "Metadata" - -msgid "submission.submit.finishingUp" -msgstr "Færdiggør" - -msgid "submission.submit.confirmation" -msgstr "Bekræftelse" - -msgid "submission.submit.nextSteps" -msgstr "Næste trin" - -msgid "submission.submit.coverNote" -msgstr "Følgeskrivelse til redaktør" - -msgid "submission.submit.generalInformation" -msgstr "Generel information" - -msgid "submission.submit.whatNext.description" -msgstr "Forlaget har fået besked om din indsendelse, og du har modtaget en e-mail med en bekræftelse for modtagelse af din indsendelse. Når redaktøren har gennemgået indsendelsen, vil du blive kontaktet." - -msgid "submission.submit.checklistErrors" -msgstr "" -"Læs og tjek alle punkter på indsendelsestjeklisten Der er {$itemsRemaining} " -"punkter, der ikke er markeret." - -msgid "submission.submit.placement" -msgstr "Indsendelsesplacering" - -msgid "submission.submit.userGroup" -msgstr "Indsend i min rolle som ..." - -msgid "submission.submit.userGroupDescription" -msgstr "Hvis du sender et redigeret værk, bør du vælge redaktørrollen." - -msgid "grid.chapters.title" -msgstr "Kapitler" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Slet upload fra manuskriptredaktør" - -msgid "submission.complete" -msgstr "Godkendt" - -msgid "submission.incomplete" -msgstr "Afventer godkendelse" - -msgid "submission.editCatalogEntry" -msgstr "Indgang" - -msgid "submission.catalogEntry.new" -msgstr "Tilføj indgang" - -msgid "submission.catalogEntry.add" -msgstr "Føj valgte til katalog" - -msgid "submission.catalogEntry.select" -msgstr "Vælg de monografier, der skal føjes til kataloget" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "Du skal vælge mindst en monografi for at foretage en tilføjelse til kataloget." - -msgid "submission.catalogEntry.confirm" -msgstr "Føj denne bog til det offentlige katalog" - -msgid "submission.catalogEntry.confirm.required" -msgstr "Bekræft, at indsendelsen er klar til at blive placeret i kataloget." - -msgid "submission.catalogEntry.isAvailable" -msgstr "" -"Denne monografi er klar til at blive inkluderet i det offentliggjorte " -"katalog." - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Se indsendelse" - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Publikationsdato" - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Alle kapitler bruger monografiens publiceringsdato." - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Hvert kapitel kan have sin egen publikationsdato." - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monografi" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Katalog" - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Publikationsformat" - -msgid "submission.event.metadataPublished" -msgstr "Monografiens metadata er godkendt til publicering." - -msgid "submission.event.metadataUnpublished" -msgstr "Monografiens metadata er ikke længere publiceret." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Publikationsformatet \"{$publicationFormatName}\" stilles til rådighed." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Publikationsformatet \"{$publicationFormatName}\" er ikke længere tilgængeligt." - -msgid "submission.event.publicationFormatPublished" -msgstr "Publikationsformatet \"{$publicationFormatName}\" er godkendt til publicering." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "" -"Publikationsformatet \"{$publicationFormatName}\" er ikke længere " -"tilgængeligt." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Katalog-metadata blev opdateret." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Publikationsformatets metadata til \"{$formatName}\" blev opdateret." - -msgid "submission.event.publicationFormatCreated" -msgstr "Publikationsformatet \"{$formatName}\" blev oprettet." - -msgid "submission.event.publicationFormatRemoved" -msgstr "Publikationsformatet \"{$formatName}\" blev fjernet." - -msgid "submission.submit.titleAndSummary" -msgstr "Titel og resume" - -msgid "workflow.review.externalReview" -msgstr "Ekstern bedømmelse" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Send til ekstern bedømmelse" - -msgid "submission.upload.fileContents" -msgstr "Indsendelseskomponent" - -msgid "submission.dependentFiles" -msgstr "Afhængige filer" - -msgid "submission.metadataDescription" -msgstr "Disse specifikationer er baseret på Dublin Core-metadatasættet, en international standard, der bruges til at beskrive forlagsindhold." - -msgid "section.any" -msgstr "Enhver serie" - -msgid "submission.list.countMonographs" -msgstr "{$count} monografier" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} af {$total} monografier" - -msgid "submission.list.orderFeatures" -msgstr "Bestil funktioner" - -msgid "submission.list.orderingFeatures" -msgstr "Træk og slip eller tryk på op- og ned-knapperne for at ændre rækkefølgen af funktionerne på startsiden." - -msgid "submission.list.orderingFeaturesSection" -msgstr "Træk og slip eller tryk på op- og ned-knapperne for at ændre rækkefølgen af funktionerne i {$title}." - -msgid "submission.list.saveFeatureOrder" -msgstr "Gem rækkefølge" - -msgid "catalog.browseTitles" -msgstr "{$numTitles} titler" - -msgid "publication.scheduledIn" -msgstr "Planlagt til publicering i {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "" -"Alle publikationskrav er opfyldt. Er du sikker på, at du vil offentliggøre " -"denne katalogpost?" - -msgid "publication.publishedIn" -msgstr "Publiceret i {$issueName}." - -msgid "publication.required.issue" -msgstr "Publikationen skal tilknyttes et nummer, inden det kan publiceres." - -msgid "publication.invalidSeries" -msgstr "Denne publikations seriebetegnelse blev ikke fundet." - -msgid "publication.catalogEntry.success" -msgstr "Informationer under katalogindgangen er blevet opdateret." - -msgid "publication.catalogEntry" -msgstr "Katalogindgang" - -msgid "submission.list.monographs" -msgstr "Monografier" - -msgid "submission.submit.noContext" -msgstr "Denne indsendelses forlag blev ikke fundet." - -msgid "author.isVolumeEditor" -msgstr "Definér denne bidragyder som værende redaktør af dette bind." - -msgid "submission.monograph" -msgstr "Monografi" - -msgid "submission.workflowType.change" -msgstr "Skift" - -msgid "submission.workflowType.editedVolume.label" -msgstr "Redigeret bind" - -msgid "publication.inactiveSeries" -msgstr "{$series} (Inaktiv)" - -msgid "submission.list.viewEntry" -msgstr "Se post" - -msgid "submission.publication" -msgstr "Publikation" - -msgid "publication.status.published" -msgstr "Publiceret" - -msgid "submission.status.scheduled" -msgstr "Planlagt" - -msgid "publication.status.unscheduled" -msgstr "Ikke planlagt" - -msgid "submission.publications" -msgstr "Publikationer" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Copyright-året indstilles automatisk, når dette offentliggøres i et nummer." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "Copyright-året indstilles automatisk ud fra publiceringsdatoen." - -msgid "publication.datePublished" -msgstr "Dato publiceret" - -msgid "publication.editDisabled" -msgstr "Denne version er blevet publiceret og kan ikke redigeres." - -msgid "publication.event.published" -msgstr "Indsendelsen blev publiceret." - -msgid "publication.event.scheduled" -msgstr "Indsendelsen var planlagt til publicering." - -msgid "publication.event.unpublished" -msgstr "Indsendelsen blev ikke publiceret." - -msgid "publication.event.versionPublished" -msgstr "En ny version blev publiceret." - -msgid "publication.event.versionScheduled" -msgstr "En ny version var planlagt til publicering." - -msgid "publication.event.versionUnpublished" -msgstr "En version blev fjernet fra publikationen." - -msgid "publication.invalidSubmission" -msgstr "Indsendelsen til denne publikation kunne ikke findes." - -msgid "publication.publish" -msgstr "Publicér" - -msgid "publication.publish.requirements" -msgstr "Følgende krav skal være opfyldt, før dette kan offentliggøres." - -msgid "publication.required.declined" -msgstr "En afvist indsendelse kan ikke offentliggøres." - -msgid "publication.required.reviewStage" -msgstr "" -"Indsendelsen skal være under manuskriptredigerings- eller " -"produktionstrinnet, før det kan offentliggøres." - -msgid "submission.license.description" -msgstr "" -"Licensen indstilles automatisk til {$" -" licensnavn}, når dette publiceres." - -msgid "submission.copyrightHolder.description" -msgstr "Copyright tildeles automatisk {$copyright}, når dette publiceres." - -msgid "submission.copyrightOther.description" -msgstr "" -"Tildel copyright i forbindelse med offentliggjorte indsendelser til følgende " -"gruppe." - -msgid "publication.unpublish" -msgstr "Træk tilbage" - -msgid "publication.unpublish.confirm" -msgstr "Er du sikker på, at du ikke ønsker, at dette skal publiceres?" - -msgid "publication.unschedule.confirm" -msgstr "" -"Er du sikker på, at du ikke vil have dette planlagt til senere publicering?" - -msgid "publication.version.details" -msgstr "Publikationsoplysninger i forbindelse med version {$version}" - -msgid "submission.queries.production" -msgstr "Drøftelser under produktion" - diff --git a/locale/da_DK/submission.xml b/locale/da_DK/submission.xml deleted file mode 100644 index 952dae49257..00000000000 --- a/locale/da_DK/submission.xml +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - Indsend en monografi - Vælg komponent - Bogtitel - Vælg indsendelse - Synopsis - Indsendelsestype - En monografi er et værk, der helt igennem er skrevet af en eller flere forfattere. Et redigeret værk har forskellige forfattere til hvert enkelt kapitel (med kapiteloplysninger indtastet senere i denne proces.) - Redigeret værk: Forfattere er knyttet til deres eget kapitel. - Monografi: Forfattere er forbundet med bogen som helhed. - Vælg redaktører - Vælg de forfattere, der skal identificeres som redaktører for hele værket. - {$editorName} (ed) - Klar til produktion - Renskrift - ; - Tilladelser - Kapitel - Kapitler - Du kan opstille en liste over kapitlerne her og tilknytte forfattere fra listen over bidragydere ovenfor. Disse forfattere kan få adgang til kapitlet i forskellige faser af den redaktionelle proces. - Tilføj kapitel - Rediger kapitel - Resume - Sider - Publiceret - Manuskriptredigering - Publikationsformater - Korrekturer - Download - Del dette - Manuskriptindsendelse - - Til bedømmelse - Manuskriptindsendelser - Er du sikker på, at du ønsker at indsende dette manuskript til forlaget? - Metadata - Støtteinstanser - Opret et nyt kapitel - Rediger dette kapitel - Slet dette kapitel - Påbegynd ny indsendelse af bog - Påbegynd en ny indsendelse i - Ny indsendelse - Upload indsendelse - Du kan afslutte denne indsendelse på et senere tidspunkt ved at vælge aktive indsendelser fra forfatterens webside. - Vælg serie (valgfrit) - En gyldig serie er påkrævet. - Seriens position - Eksempler: Bog 2, bind 2 - Vælg et indsendelsessprog. - Erklæring om beskyttelse af personlige oplysninger - Bidragyderens rolle - Der kræves mindst en forfatter. - Forfatterens fornavn, efternavn og e-mail-adresse er påkrævet. - Indtast titlen på din monografi. - Indsæt et kort resume over din monografi. - Vælg bidragyderens rolle. - Indsendelsesfil - Forbered - Katalog - Metadata - Færdiggør - Bekræftelse - Næste trin - Følgeskrivelse til redaktør - Generel information - Forlaget har fået besked om din indsendelse, og du har modtaget en e-mail med en bekræftelse for modtagelse af din indsendelse. Når redaktøren har gennemgået indsendelsen, vil du blive kontaktet. - Læs og tjek det indsendte i indsendelseslisten. Der er {$itemsRemaining} elementer, der ikke er markeret. - Indsendelsesplacering - Indsend i min rolle som ... - Hvis du sender et redigeret værk, bør du vælge redaktørrollen. - Kapitler - Slet upload fra manuskriptredaktør - Katalogindgang - Godkendt - Afventer godkendelse - Indgang - Tilføj indgang - Føj valgte til katalog - Vælg de monografier der skal tilføjes til kataloget - Du skal vælge mindst en monografi for at foretage en tilføjelse til kataloget. - Føj denne bog til det offentlige katalog - Bekræft, at indsendelsen er klar til at blive placeret i kataloget. - Denne monografi er klar til at blive inkluderet i det offentlige katalog. - Se indsendelse - Publikationsdato - Alle kapitler bruger monografiens publiceringsdato. - Hvert kapitel kan have sin egen publikationsdato. - Monografi - Katalog - Publikationsformat - Monografiens metadata er godkendt til publicering. - Monografiens metadata er ikke længere publiceret. - Publikationsformatet "{$publicationFormatName}" stilles til rådighed. - Publikationsformatet "{$publicationFormatName}" er ikke længere tilgængeligt. - Publikationsformatet "{$publicationFormatName}" er godkendt til publicering. - Publikationsformatet "{$publicationFormatName}" is ikke længere tilgængeligt. - Katalog-metadata blev opdateret. - Publikationsformatets metadata til "{$formatName}" blev opdateret. - Publikationsformatet "{$formatName}" blev oprettet. - Publikationsformatet "{$formatName}" blev fjernet. - Titel og resume - Ekstern bedømmelse - Send til ekstern bedømmelse - Indsendelseskomponent - Afhængige filer - Disse specifikationer er baseret på Dublin Core-metadatasættet, en international standard, der bruges til at beskrive forlagsindhold. - Enhver serie - {$count} monografier - {$count} af {$total} monografier - Bestil funktioner - Træk og slip eller tryk på op- og ned-knapperne for at ændre rækkefølgen af funktionerne på startsiden. - Træk og slip eller tryk på op- og ned-knapperne for at ændre rækkefølgen af funktionerne i {$title}. - Gem rækkefølge - {$numTitles} titler - diff --git a/locale/de/admin.po b/locale/de/admin.po new file mode 100644 index 00000000000..e671b4cff5a --- /dev/null +++ b/locale/de/admin.po @@ -0,0 +1,213 @@ +# Pia Piontkowitz , 2021, 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2023-04-29 14:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Gehostete Verlage" + +msgid "admin.settings.appearance.success" +msgstr "" +"Die Einstellungen zum Aussehen der Seite wurden erfolgreich aktualisiert." + +msgid "admin.settings.config.success" +msgstr "" +"Die Einstellungen zur Konfiguration der Seite wurden erfolgreich " +"aktualisiert." + +msgid "admin.settings.info.success" +msgstr "Die Seiteninformationen wurden erfolgreich aktualisiert." + +msgid "admin.settings.redirect" +msgstr "Weiterleitung an den Verlag" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Auf der Startseite eingehende Fragen werden an diesen Verlag weitergeleitet. " +"Dies kann beispielsweise eine praktische Lösung sein, wenn die Website nur " +"einen einzigen Verlag hostet." + +msgid "admin.settings.noPressRedirect" +msgstr "Nicht umleiten" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Dies wird die voreingestellte Sprache für diese Website und alle gehosteten " +"Verlage sein." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Wählen Sie alle Regionaleinstellungen aus, die auf dieser Seite unterstützt " +"werden sollen. Die ausgewählten Regionaleinstellungen werden allen Verlagen, " +"die von dieser Website gehostet werden, verfügbar gemacht und erscheinen " +"ebenfalls in einem Sprachauswahlmenü, das auf jeder Seite der Website " +"erscheinen wird (das Menü kann auf verlagsspezifischen Seiten überschrieben " +"werden). Wurde nur eine Regionaleinstellung ausgewählt, erscheint weder ein " +"Sprachwechselblock noch stehen erweiterte Spracheinstellungen zur Verfügung." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Die markierten Regionaleinstellungen können unvollständig sein." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Sind Sie sicher, dass Sie diese Regionaleinstellung deinstallieren möchten? " +"Dies kann Auswirkungen auf alle Verlage haben, die zurzeit diese " +"Regionaleinstellung verwenden." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Wählen Sie zusätzliche Regionaleinstellungen (Locales) aus, um deren " +"Unterstützung in diesem System zu installieren. Locales müssen installiert " +"sein, bevor sie von den gehosteten Verlagen genutzt werden können. In der " +"OMP-Dokumentation erhalten Sie weitere Informationen darüber, wie Sie " +"zusätzliche Unterstützung für neue Sprachen erhalten können." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Sind Sie sicher, dass Sie diese Regionaleinstellung löschen wollen? Dies " +"wird alle Verlage auf Ihrer Plattform betreffen, die diese " +"Regionaleinstellung benutzen." + +msgid "admin.systemVersion" +msgstr "OMP-Version" + +msgid "admin.systemConfiguration" +msgstr "OMP-Konfiguration" + +msgid "admin.presses.pressSettings" +msgstr "Verlagseinstellungen" + +msgid "admin.presses.noneCreated" +msgstr "Es wurden noch keine Verlage angelegt." + +msgid "admin.contexts.create" +msgstr "Verlag anlegen" + +msgid "admin.contexts.form.titleRequired" +msgstr "Die Angabe des Titels ist erforderlich." + +msgid "admin.contexts.form.pathRequired" +msgstr "Die Angabe des Pfades ist erforderlich." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Der Pfad darf nur Buchstaben und Zahlen, Unterstriche und Bindestriche " +"enthalten und muss mit einem Buchstaben oder einer Zahl beginnen und enden." + +msgid "admin.contexts.form.pathExists" +msgstr "Der ausgewählte Pfad wird bereits von einem anderen Verlag verwendet." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Die primären Regionaleinstellungen müssen eine der für den Verlag " +"ausgewählten Regionaleinstellungen (Locales) sein." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} wurde erfolgreich erstellt." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} wurde erfolgreich bearbeitet." + +msgid "admin.contexts.contextDescription" +msgstr "Verlagsbeschreibung" + +msgid "admin.presses.addPress" +msgstr "Verlag hinzufügen" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

    Beachten Sie:

    \n" +"

    Das System konnte die Konfigurationsdatei nicht automatisch " +"überschreiben. Um Ihre Änderungen der Konfiguration anzuwenden, öffnen Sie " +"config.inc.php mit einem geeigneten Texteditor und ersetzen Sie den " +"Inhalt durch den Text im nachstehenden Textfeld.

    " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Wählen Sie die gehosteten Verlage, die Massen-E-Mails senden dürfen. Wenn " +"dieses Feature aktiviert ist, kann ein/e Verlagsmanager/in eine E-Mail an " +"alle registrierten Nutzer/innen des Verlags schicken.

    Der Missbrauch " +"dieses Features um ungebetene E-Mails zu verschicken kann gegen Anti-Spam " +"Gesetze verstoßen und dazu führen, dass E-Mails Ihres Servers als Spam " +"blockiert werden. Erbitten Sie sich technische Hilfe, bevor Sie dieses " +"Feature aktivieren und ziehen Sie es in Erwägung, mit Verlagsmanager/innen " +"in Kontakt zu treten um zu vergewisseren, dass dieses Feature für den " +"beabsichtigten Zweck verwendet wird.

    Weitere Einschränkungen dieses " +"Features können für jeden Verlag im Konfigurationsassistenten in der Liste " +"der gehosteten Verlage aktiviert werden." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Ein/e Verlagsmanager/in wird keine Massen-E-Mails an die unten ausgewählten " +"Rollen verschicken können. Benutzen Sie diese Einstellung, um Missbrauch des " +"Benachrichtigungsfeatures einzuschränken. Es könnte z.B. sicherer sein, " +"Lesende, Autor/innen, oder weitere große Nutzer/innengruppen, die nicht " +"zugestimmt haben, solche E-Mails zu erhalten, auszuschließen.

    Das " +"Massen-E-Mail-Feature kann für diesen Verlag unter Administration > Einstellungen der Websitekomplett " +"deaktiviert werden." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Das Massen-E-Mail-Feature wurde für diesen Verlag deaktiviert. Es kann unter " +"Administration > Einstellungen der Website aktiviert werden." + +msgid "admin.siteManagement.description" +msgstr "" +"Verlage hinzufügen, bearbeiten, oder löschen und seitenübergreifende " +"Einstellungen verwalten." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "Kapitel ID ist keine ganze Zahl" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "Reihen ID ist keine ganze Zahl" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Wählen Sie die Art der geografischen Nutzungsstatistiken, die von Verlagen " +"auf dieser Website erfasst werden können. Detailliertere geografische " +"Statistiken können die Größe Ihrer Datenbank beträchtlich erhöhen und in " +"einigen seltenen Fällen die Anonymität Ihrer Besucher/innen gefährden. Jeder " +"Verlag kann diese Einstellungen anders konfigurieren, aber ein Verlag kann " +"niemals detailliertere Datensätze als die hier konfigurierten sammeln. Wenn " +"die Website zum Beispiel nur Land und Region unterstützt, kann der Verlag " +"Land und Region oder nur Land auswählen. Der Verlag ist nicht in der Lage, " +"Land, Region und Ort zu erfassen." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Aktivieren Sie institutionelle Statistiken, wenn Sie möchten, dass die " +"Verlage auf dieser Website Nutzungsstatistiken nach Institutionen sammeln " +"können. Die Verlage müssen die Einrichtung und ihre IP Ranges hinzufügen, um " +"diese Funktion nutzen zu können. Die Aktivierung der institutionellen " +"Statistiken kann die Größe Ihrer Datenbank beträchtlich erhöhen." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Ob die SUSHI-API-Endpunkte für alle Verlage auf dieser Website öffentlich " +"zugänglich sein sollen oder nicht. Wenn Sie die öffentliche API aktivieren, " +"kann jeder Verlag diese Einstellung außer Kraft setzen, um seine Statistiken " +"privat zu machen. Wenn Sie jedoch die öffentliche API deaktivieren, können " +"die Verlage ihre eigene API nicht öffentlich machen." + +#~ msgid "admin.contexts.confirmDelete" +#~ msgstr "" +#~ "Sind Sie sicher, dass Sie diesen Verlag und alle Verlagsinhalte endgültig " +#~ "löschen möchten?" + +#, fuzzy +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Website als Plattform für alle Zeitschriften verwenden." diff --git a/locale/de/api.po b/locale/de/api.po new file mode 100644 index 00000000000..4fe3212540b --- /dev/null +++ b/locale/de/api.po @@ -0,0 +1,45 @@ +# Pia Piontkowitz , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-29 14:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Sie müssen eine oder mehrere Einreichungs-IDs angeben, die in den Katalog " +"aufgenommen werden sollen." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "" +"Eine oder mehrere der angegebenen Einreichungen konnte nicht gefunden werden." + +msgid "api.submissions.400.wrongContext" +msgstr "Die angeforderte Einreichung befindet sich nicht in diesem Verlag." + +msgid "api.emails.403.disabled" +msgstr "" +"Die E-Mail-Benachrichtigungsfunktion wurde für diesen Verlag nicht aktiviert." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"Sie haben keine Berechtigung diese E-Mail-Vorlage zu einem anderen Verlag zu " +"verschieben." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "Die Publikation, die Sie suchen, ist nicht Teil dieses Verlags." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "Die Publikation, die Sie suchen, ist nicht Teil dieser Einreichung." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Sie können den Verlag einer Einreichung nicht ändern." + +msgid "api.submission.400.inactiveSection" +msgstr "Für diese Rubrik sind keine Einreichungen mehr möglich." diff --git a/locale/de/author.po b/locale/de/author.po new file mode 100644 index 00000000000..1daf51745cf --- /dev/null +++ b/locale/de/author.po @@ -0,0 +1,18 @@ +# Pia Piontkowitz , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-26 17:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "author.submit.notAccepting" +msgstr "Dieser Verlag nimmt derzeit keine Einreichungen an." + +msgid "author.submit" +msgstr "Neue Einreichung" diff --git a/locale/de/default.po b/locale/de/default.po new file mode 100644 index 00000000000..2ffbd18643d --- /dev/null +++ b/locale/de/default.po @@ -0,0 +1,229 @@ +# Pia Piontkowitz , 2021, 2022, 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2023-04-26 17:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German " +"\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "default.genres.appendix" +msgstr "Anhang" + +msgid "default.genres.bibliography" +msgstr "Bibliographie" + +msgid "default.genres.manuscript" +msgstr "Buchmanuskript" + +msgid "default.genres.chapter" +msgstr "Kapitelmanuskript" + +msgid "default.genres.glossary" +msgstr "Glossar" + +msgid "default.genres.index" +msgstr "Register" + +msgid "default.genres.preface" +msgstr "Vorwort" + +msgid "default.genres.prospectus" +msgstr "Exposé" + +msgid "default.genres.table" +msgstr "Tabelle" + +msgid "default.genres.figure" +msgstr "Abbildung" + +msgid "default.genres.photo" +msgstr "Foto" + +msgid "default.genres.illustration" +msgstr "Illustration" + +msgid "default.genres.other" +msgstr "Anderes" + +msgid "default.groups.name.manager" +msgstr "Verlagsleiter/in" + +msgid "default.groups.plural.manager" +msgstr "Verlagsleiter/innen" + +msgid "default.groups.abbrev.manager" +msgstr "VL" + +msgid "default.groups.name.editor" +msgstr "Herausgeber/in" + +msgid "default.groups.plural.editor" +msgstr "Herausgeber/innen" + +msgid "default.groups.abbrev.editor" +msgstr "Hrsg" + +msgid "default.groups.name.sectionEditor" +msgstr "Reihenherausgeber/in" + +msgid "default.groups.plural.sectionEditor" +msgstr "Reihenherausgeber/innen" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "RHrsg" + +msgid "default.groups.name.subscriptionManager" +msgstr "Subskriptionsmanager/in" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Subskriptionsmanager/innen" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "SubMng" + +msgid "default.groups.name.chapterAuthor" +msgstr "Kapitelautor/in" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Kapitelautor/innen" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "KapAu" + +msgid "default.groups.name.volumeEditor" +msgstr "Sammelbandherausgeber/in" + +msgid "default.groups.plural.volumeEditor" +msgstr "Sammelbandherausgeber/innen" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "RHrsg" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

    Autoren sind dazu eingeladen, einen Beitrag bei diesem Verlag " +"einzureichen. Alle Einreichungen werden von einem/r Redakteur/in daraufhin " +"geprüft, ob sie den Zielen und dem Umfang dieses Verlages entsprechen. " +"Diejenigen, die als geeignet erachtet werden, werden zum Peer Review " +"weitergeleitet, bevor entschieden wird, ob sie angenommen oder abgelehnt " +"werden.

    Vor der Einreichung eines Beitrags sind die Autor/innen dazu " +"verpflichtet, die Erlaubnis zur Veröffentlichung von Material einzuholen, " +"das dem Beitrag beigefügt ist, wie Fotos, Dokumente und Datensätze. Alle in " +"der Einreichung genannten Autor/innen müssen damit einverstanden sein, als " +"Autor/in genannt zu werden. Gegebenenfalls sollte die Forschung von einer " +"geeigneten Ethikkommission in Übereinstimmung mit den gesetzlichen " +"Bestimmungen des Landes, in dem die Studie durchgeführt wurde, genehmigt " +"werden.

    Ein/e Redakteur/in kann eine Einreichung ablehnen, wenn sie " +"nicht den Mindestqualitätsstandards entspricht. Bitte stellen Sie vor der " +"Einreichung sicher, dass das Studiendesign und das Forschungsargument " +"passend strukturiert und formuliert sind. Der Titel sollte prägnant sein und " +"der Abstract sollte für sich allein stehen können. Dies erhöht die " +"Wahrscheinlichkeit, dass die Gutachter/innen den Beitrag begutachten wollen. " +"Wenn Sie sich vergewissert haben, dass Ihr Beitrag diesem Standard " +"entspricht, folgen Sie bitte der nachstehenden Checkliste, um Ihren Beitrag " +"vorzubereiten.

    " + +msgid "default.contextSettings.checklist" +msgstr "" +"

    Alle Einreichungen müssen die folgenden Kriterien erfüllen.

    • Diese Einreichung erfüllt die Anforderungen, die in den Author Guidelines gelistet sind.
    • Diese Einreichung wurde weder zuvor veröffentlicht, noch liegt sie " +"einem anderen Verlag zur Prüfung vor.
    • Alle Literaturangaben wurden " +"auf ihre Richtigkeit und Vollständigkeit überprüft.
    • Alle Diagramme " +"und Abbildungen sind nummeriert und beschriftet.
    • Die Erlaubnis zur " +"Veröffentlichung aller Fotos, Datensätze und sonstiger Materialien, die mit " +"diesem Beitrag eingereicht wurden, wurde eingeholt.
    " + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

    Namen und E-Mail-Adressen, die auf dieser Website eingetragen sind, " +"werden ausschließlich zu den angegebenen Zwecken verwendet und nicht an " +"Dritte weitergegeben.

    " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Dieser Verlag bietet freien Zugang (Open Access) zu seinen Inhalten, " +"entsprechend der Grundannahme, dass die freie öffentliche Verfügbarkeit von " +"Forschung einem weltweiten Wissensaustausch zugute kommt." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Sie möchten gerne über die Neuerscheinungen unseres Verlages auf dem " +"Laufenden gehalten werden? Als registrierte/r Leser/in erhalten Sie von " +"jeder neu erscheinenden Monographie das Inhaltsverzeichnis per E-Mail " +"zugeschickt. Folgen Sie dem Registrieren-Link rechts oben auf der Homepage, um sich für " +"diesen Service anzumelden. Selbstverständlich sichern wir Ihnen zu, dass Ihr " +"Name und Ihre E-Mail-Adresse nicht zu anderen Zwecken verwendet werden " +"(siehe Datenschutzerklärung." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Haben Sie Interesse, ein Manuskript bei uns einzureichen? Dann möchten wir " +"Sie auf die Seite Über uns " +"verweisen. Dort finden Sie die Richtlinien des Verlags. Bitte beachten Sie " +"auch die Richtlinien für Autor/innen. Autor/innen " +"müssen sich registrieren, bevor sie ein Buch oder einen Beitrag zu einem " +"Sammelband einreichen können. Wenn Sie bereits registriert sind, können Sie " +"sich einloggen und die fünf " +"\"Schritte zur Einreichung\" abarbeiten." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Wir ermutigen wissenschaftliche Bibliothekar/innen, diesen Verlag in den " +"digitalen Bestand ihrer Bibliothek aufzunehmen. Bibliotheken können dieses " +"Open-Source-Publikationssystem außerdem zum Hosting für Verlage einsetzen, " +"an deren Arbeit ihre Wissenschaftler/innen beteiligt sind (siehe Open Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Externe/r Gutachter/in" + +msgid "default.groups.plural.externalReviewer" +msgstr "Externe Gutachter/innen" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "ER" + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Das eingereichte Manuskript wurde nicht bereits vorher veröffentlicht und " +#~ "liegt zurzeit auch nicht einem anderen Verlag zur Begutachtung vor (oder " +#~ "es wurde im Feld 'Vermerk für den/die Herausgeber/in\" eine entsprechende " +#~ "Erklärung dazu abgegeben)." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Die eingereichten Dateien liegen im Format Microsoft Word, RTF, " +#~ "OpenDocument oder WordPerfect vor." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "Soweit möglich, wurden den Literaturangaben URLs beigefügt." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Der Text ist mit einzeiligen Zeilenabstand in einer 12-Punkt-Schrift " +#~ "geschrieben; Hervorhebungen sind kursiv gesetzt, auf Unterstreichungen, " +#~ "wird - mit Ausnahme der URL-Adressen - verzichtet; alle Illustrationen, " +#~ "Abbildungen und Tabellen stehen an der Stelle im Text, an der sie auch in " +#~ "der endgültigen Fassung stehen sollen (nicht am Textende)." + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Der Text entspricht den im Leitfaden für Autor/" +#~ "innen beschriebenen stilistischen und bibliographischen Anforderungen " +#~ "(s. den Reiter 'Über uns')." diff --git a/locale/de/editor.po b/locale/de/editor.po new file mode 100644 index 00000000000..39421e66ec5 --- /dev/null +++ b/locale/de/editor.po @@ -0,0 +1,221 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2021-01-21 15:49+0000\n" +"Last-Translator: Heike Riegler \n" +"Language-Team: German \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Manuskriptarchiv" + +msgid "editor.monograph.cancelReview" +msgstr "Anfrage abbrechen" + +msgid "editor.monograph.clearReview" +msgstr "Gutachter/innen löschen" + +msgid "editor.monograph.enterRecommendation" +msgstr "Empfehlung abgeben" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Empfehlung der Gutachterin/des Gutachters eintragen" + +msgid "editor.monograph.recommendation" +msgstr "Empfehlung" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Wählen Sie oben einen Gutachter/eine Gutachterin aus und klicken Sie auf " +"'Gutachter/in auswählen'." + +msgid "editor.monograph.replaceReviewer" +msgstr "Gutachter/innen ersetzen" + +msgid "editor.monograph.editorToEnter" +msgstr "" +"Herausgeber/innen pflegen die Empfehlungen/Kommentare für Gutachter/in ein" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Gutachten hochladen" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Gutachten-Optionen" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Korrekturfahnen-Dateien" + +msgid "editor.monograph.internalReview" +msgstr "Interne Begutachtung starten" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Sie starten hiermit das interne Begutachtungsverfahren. Dateien, die Teil " +"des eingereichten Manuskripts sind, finden Sie unten aufgelistet und können " +"von Ihnen zur Begutachtung ausgewählt werden." + +msgid "editor.monograph.externalReview" +msgstr "Externe Begutachtung starten" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Endfassungen auswählen" + +msgid "editor.monograph.final.currentFiles" +msgstr "Aktuelle Endfassungen" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Aktuelle Dateien" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Nachricht an den Benutzer/die Benutzerin" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Einreichungsaktionen" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Während der Einreichung mögliche Aktionen und Optionen" + +msgid "editor.monograph.legend.sectionActions" +msgstr "Sektionsaktionen" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Für eine bestimmte Sektion spezifische Optionen, z.B. Dateien hochladen oder " +"Benutzer/innen hinzufügen." + +msgid "editor.monograph.legend.itemActions" +msgstr "Auf den Titel bezogene Aktionen" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Für eine individuelle Datei spezifische Aktionen und Optionen." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Katalogeintrag anschauen und verwalten (einschließlich Metadaten und Formate)" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Metadaten, Anmerkungen, Benachrichtigungen sowie das Verlaufsprotokoll zu " +"einem Manuskript anschauen und verwalten" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Die an der Manuskriptbearbeitung Beteiligten wie z.B. Autor/innen, Redakteur/" +"innen, Layouter/innen ansehen und verwalten" + +msgid "editor.monograph.legend.add" +msgstr "Eine Datei in dieser Sektion hochladen" + +msgid "editor.monograph.legend.add_user" +msgstr "Zu dieser Sektion einen Benutzer hinzufügen" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Ansicht und Zugang zu den Einstellungen, wie zum Beispiel für die " +"Informations- und Löscheinstellungen" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"Weitere Informationen: Anmerkungen zu den Dateien, Benachrichtigungsoptionen " +"und Verlaufsprotokoll" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Datei-Informationen: Anmerkungen, Benachrichtigungsoptionen und " +"Verlaufsprotokoll (bisher wurden noch keine Anmerkungen hinzufügt)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Datei-Informationen: Anmerkungen, Benachrichtigungsoptionen und Verlauf (es " +"liegen Anmerkungen vor)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Datei-Informationen: Anmerkungen, Benachrichtigungsoptionen und Verlauf " +"(seit dem letzten Besuch wurden Anmerkungen hinzugefügt)" + +msgid "editor.monograph.legend.edit" +msgstr "Titel bearbeiten" + +msgid "editor.monograph.legend.delete" +msgstr "Titel entfernen" + +msgid "editor.monograph.legend.in_progress" +msgstr "Aktion wird noch ausgeführt oder ist noch nicht vollständig" + +msgid "editor.monograph.legend.complete" +msgstr "Aktion vollständig" + +msgid "editor.monograph.legend.uploaded" +msgstr "Datei wurde hochgeladen durch die im Spaltentitel angegebene Rolle" + +msgid "editor.submission.introduction" +msgstr "" +"In der Einreichungsphase bestimmt der zuständige Herausgeber/die zuständige " +"Herausgeberin nach Prüfung der eingereichten Manuskripte die passende Aktion " +"aus (über die der Autor/die Autorin grundsätzlich informiert wird): Zur " +"internen Begutachtung senden (anschließend müssen die für die interne " +"Begutachtung vorgesehenen Dateien ausgewählt werden); Zur externen " +"Begutachtung senden (anschließend müssen die für die externe Begutachtung " +"vorgesehenen Dateien ausgewählt werden); Manuskript annnehmen (anschließend " +"sind die Dateien für die redaktionelle Bearbeitung auszuwählen) oder " +"Manuskript ablehnen (das Manuskript wird im Archiv abgelegt)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Freigegebene satzfertige Manuskriptfassung" + +msgid "editor.monograph.proofs" +msgstr "Korrekturfahnen" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Freigabe und Veröffentlichung" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Verschiedene Formate wie zum Beispiel Hardcover, Softcover und digitale " +"Formate können unten unter 'Formate' hochgeladen werden. Sie können die " +"Formate-Tabelle als Checkliste verwenden, um zu prüfen, was noch für die " +"Veröffentlichung im ausgewählten Format getan werden muss." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Fügen Sie Formate (z.B. digital, Paperback) hinzu, für die der Layouter " +"Korrekturfahnen zum Korrekturlesen erstellen soll. Die Korrekturdateien müssen als \"akzeptiert\" gekennzeichnet und die Metadaten im " +"Katalog aufgenommen und zur Veröffentlichung freigegeben worden " +"sein, damit das Buch als verfügbar angezeigt (das heißt " +"'veröffentlicht') werden kann." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Bedingungen für den Download festlegen" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Bestimmungen festlegen" + +msgid "editor.monograph.proof.addNote" +msgstr "Antwort hinzufügen" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Alle Dateien, die schon zu irgendeiner Einreichungsphase hochgeladen worden " +"sind, können zur Liste der Korrekturfahnen hinzugefügt werden, indem Sie die " +"Einschließen-Checkbox unten aktivieren und danach auf Suche klicken: Alle " +"verfügbaren Dateien werden angezeigt und können ausgewählt werden, um sie in " +"die Liste aufzunehmen." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Der Public Identifier '{$publicIdentifier}' existiert bereits für ein " +"anderes Objekt desselben Typs. Bitte wählen Sie eindeutige Identifier für " +"die Objekte des gleichen Typs innerhalb Ihres Verlags." + +msgid "editor.submissions.assignedTo" +msgstr "Einem/r Redakteur/in zugeordnet" diff --git a/locale/de/emails.po b/locale/de/emails.po new file mode 100644 index 00000000000..f42434e7c9b --- /dev/null +++ b/locale/de/emails.po @@ -0,0 +1,448 @@ +# Ljiljana Brkić , 2023. +# Pia Piontkowitz , 2023. +# Renate Voget , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-08-10 14:40+0000\n" +"Last-Translator: Renate Voget \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Bestätigung der Passwortzurücksetzung" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Wir haben eine Anfrage erhalten, Ihr Passwort für die Website {$siteTitle} " +"zurückzusetzen.
    \n" +"
    \n" +"Wenn die Anfrage nicht von Ihnen stammt, ignorieren Sie bitte diese Email " +"und Ihr Passwort bleibt bestehen. Wenn Sie hingegen Ihr Passwort ändern " +"möchten, klicken Sie bitte auf den untenstehenden Link:
    \n" +"
    \n" +"Mein Passwort zurücksetzen: {$passwordResetUrl}
    \n" +"
    \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Registrierung bei dem Verlag" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"Sie wurden als Benutzer/in für {$contextName} registriert. Mit dieser Email " +"erhalten Sie Ihren Benutzer/innen-Namen und Ihr Passwort, die Sie für " +"sämtliche Verlagsarbeiten innerhalb dieser Website benötigen. Sie haben " +"jederzeit die Möglichkeit, sich als Benutzer/in auszutragen zu lassen. Eine " +"Nachricht an mich genügt.
    \n" +"
    \n" +"Benutzer/innen-Name: {$recipientUsername}
    \n" +"Passwort: {$password}
    \n" +"
    \n" +"Mit bestem Dank
    \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Account validieren" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"Sie haben ein Benutzer/innenkonto bei {$contextName} angelegt, aber bevor " +"Sie es benutzen können, müssen Sie Ihre E-Mail-Adresse bestätigen. Dazu " +"folgen Sie bitte einfach dem folgenden Link:
    \n" +"
    \n" +"{$activateUrl}
    \n" +"
    \n" +"Vielen Dank
    \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Account validieren" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"Sie haben ein Benutzer/innenkonto bei {$siteTitle} angelegt, aber bevor Sie " +"es benutzen können, müssen Sie Ihre E-Mail-Adresse bestätigen. Dazu folgen " +"Sie bitte einfach dem folgenden Link:
    \n" +"
    \n" +"{$activateUrl}
    \n" +"
    \n" +"Vielen Dank
    \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Registrierung als Benutzer/in bei {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Angesichts Ihrer Erfahrung haben wir uns erlaubt, Ihren Namen der Gutachter/" +"innendatenbank von {$contextName} hinzuzufügen. Dies verpflichtet Sie in " +"keiner Weise, ermöglicht uns aber, Sie um mögliche Gutachten für eine " +"Einreichung zu bitten. Wenn Sie zu einem Gutachten eingeladen werden, werden " +"Sie Titel und Abstract des Beitrags sehen können und werden stets selber " +"entscheiden können, ob Sie der Einladung folgen oder nicht. Sie können zu " +"jedem Zeitpunkt Ihren Namen von der Gutachter/innenliste entfernen " +"lassen.
    \n" +"
    \n" +"Wir senden Ihnen einen Benutzer/innennamen und ein Passwort, die sie in " +"allen Schritten der Zusammenarbeit mit dem Verlag über dessen Website " +"benötigen. Vielleicht möchten Sie z.B. Ihr Profil inkl. Ihrer " +"Begutachtungsinteressen aktualisieren.
    \n" +"
    \n" +"Benutzer/innenname: {$recipientUsername}
    \n" +"Passwort: {$password}
    \n" +"
    \n" +"Vielen Dank!
    \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "" +"Sie wurden als Redakteur/in von einer Einreichung bei {$contextName} " +"zugewiesen" + +msgid "emails.editorAssign.body" +msgstr "" +"

    Guten Tag {$recipientName},

    der folgende Beitrag wurde Ihnen zur " +"Durchführung des redaktionellen Prozesses zugewiesen.

    {$submissionTitle}
    {$authors}

    Abstract

    {$submissionAbstract}

    Wenn Sie den " +"Beitrag für {$contextName} relevant halten, leiten Sie bitte die " +"Begutachtungsphase ein, indem Sie \"Zur internen Begutachtung senden\" " +"klicken und anschließend durch Klicken von \"Gutachter/in hinzufügen\" eine/" +"n Gutachter/in zuweisen.

    Wenn hingegen die Einreichung für diesen " +"Verlag ungeeignet ist, wählen Sie bitte \"Beitrag ablehnen\".

    Vielen " +"Dank im Voraus.

    Mit freundlichen Grüßen

    {$contextSignature}" + +msgid "emails.reviewRequest.subject" +msgstr "Anfrage zur Begutachtung eines Manuskripts" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Anfrage zur Begutachtung einer überarbeiteten Einreichung" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Anfrage zur Begutachtung eines Manuskripts" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Guten Tag {$recipientName},
    \n" +"dies ist eine freundliche Erinnerung an unsere Bitte an Sie, den Beitrag " +""{$submissionTitle}," für {$contextName} zu begutachten. Wir " +"hatten auf Ihre Antwort bis zum {$responseDueDate} gehofft. Diese E-Mail " +"wurde automatisch erzeugt und mit Verstreichen dieses Datums verschickt.\n" +"
    \n" +"{$messageToReviewer}
    \n" +"
    \n" +"Bitte melden Sie sich bei der Webseite der Zeitschrift an, um uns " +"mitzuteilen, ob Sie die Begutachtung übernehmen werden. Über die Webseite " +"können Sie auch auf den Beitrag zugreifen und Ihr Gutachten sowie Ihre " +"Empfehlung hinzufügen.
    \n" +"
    \n" +"Wir benötigen das Gutachten bis zum {$reviewDueDate}.
    \n" +"
    \n" +"URL des Beitrags {$reviewAssignmentUrl}
    \n" +"
    \n" +"Benutzer/inkennung: {$recipientUsername}
    \n" +"
    \n" +"Vielen Dank, dass Sie unsere Anfrage in Betracht ziehen.
    \n" +"
    \n" +"
    \n" +"Mit freundlichen Grüßen
    \n" +"{$contextSignature}
    \n" + +msgid "emails.reviewCancel.subject" +msgstr "Anfrage zur Begutachtung zurückgezogen" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Wir haben uns entschieden, unsere Anfrage nach einem Gutachten für den " +"Beitrag "{$submissionTitle}," für {$contextName} zurückzuziehen. " +"Verzeihen Sie bitte die Ihnen dadurch evtl. entstandenen Unannehmlichkeiten. " +"Wir hoffen, dass wir weiterhin auf Ihre Hilfe als Gutachter/in zählen " +"können.
    \n" +"
    \n" +"Falls Sie Fragen haben, können Sie sich gerne an mich wenden." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "" + +msgid "emails.reviewReinstate.body" +msgstr "" +"

    Guten Tag {$recipientName},

    wir haben vor Kurzem unsere Anfrage " +"nach einem Gutachten für {$submissionTitle} in {$contextName} zurückgezogen. " +"Wir haben uns umentschieden und möchten unsere Anfrage nun erneuern.

    Wir hoffen, dass Sie uns im Begutachtungsprozess unterstützen können, " +"indem Sie sich unter bei dem Verlag " +"einloggen, um die Einreichung anzusehen und Ihr Gutachten inkl. " +"zugehöriger Dateien hochzuladen.

    Wenn Sie Fragen haben, können Sie " +"sich gern an mich wenden.

    Mit freundlichen Grüßen

    {$signature}" + +msgid "emails.reviewDecline.subject" +msgstr "Nicht in der Lage zu begutachten" + +msgid "emails.reviewDecline.body" +msgstr "" +"Sehr geehrte Redaktion,
    \n" +"
    \n" +"leider kann ich gegenwärtig die Begutachtung des Beitrags \" " +""{$submissionTitle}," \" für {$contextName} nicht übernehmen. Ich " +"danke für Ihr Vertrauen. Bei anderer Gelegenheit können Sie sich gerne " +"wieder an mich wenden.
    \n" +"
    \n" +"{$senderName}" + +msgid "emails.reviewRemind.subject" +msgstr "Eine Erinnerung, Ihr Gutachten bitte abzuschließen" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" + +msgid "emails.editorDecisionAccept.subject" +msgstr "Ihre Einreichung wurde bei {$contextName} angenommen" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

    Guten Tag {$recipientName},

    ich freue mich, Ihnen mitteilen zu " +"können, dass wir uns zur Annahme Ihrer Einreichung ohne weitere " +"Überarbeitung entschieden haben. Nach einer sorgsamen Begutachtung hat Ihr " +"Beitrag unsere Erwartungen erfüllt oder sogar übertroffen. Wir freuen uns " +"daher darauf, Ihre Arbeit in {$contextName} zu veröffentlichen und danken " +"Ihnen, unseren Verlag als Erscheinungsort gewählt zu haben.

    Ihr " +"Beitrag wird bald auf der Verlagsseite von Y{$contextName} veröffentlicht " +"werden, worauf Sie gerne in Ihrer Publikationsliste hinweisen können. In " +"Anbetracht der harten Arbeit, die in jeden erfolgreichen Beitrag einfließt, " +"möchten wir Ihnen ausdrücklich dazu gratulieren, dass sie diesen Grad " +"erreicht hat.

    Im nächsten Schritt geht Ihr Beitrag ins Lektorat und in " +"den Satz.

    Sie werden in Kürze nähergehende Informationen erhalten.

    Sollten Sie bis dahin Fragen haben, können Sie mich jederzeit über das " +"Einreichungsdashboard erreichen.

    Mit freundlichen Grüßen

    {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Ihre Einreichung wurde zur internen Begutachtung geschickt" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

    Guten Tag {$recipientName},

    ich freue mich, Ihnen mitteilen zu " +"dürfen, dass die Redaktion Ihre Einreichung {$submissionTitle} geprüft und " +"entschieden hat, sie in die interne Begutachtung zu geben. Wir werden Sie " +"über die Rückmeldungen der Gutachter/innen und die nächsten Schritte " +"informieren.

    Bitte beachten Sie, dass dies noch keine Zusage zur " +"Veröffentlichung darstellt. Wir werden die Empfehlung der Gutachter/innen " +"abwarten, bevor wir entscheiden, ob wir die Einreichung publizieren werden. " +"Unter Umständen werden Sie gebeten werden, Änderungen vorzunehmen und auf " +"die Kommentare der Gutachter/innen zu antworten, bevor die finale " +"Entscheidung getroffen wird.

    Bei Fragen stehe ich Ihnen gerne über das " +"Einreichungsdashboard zur Verfügung.

    {$signature}

    " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Ihre Einreichung wurde in das Lektorat geschickt" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

    Guten Tag{$recipientName},

    \n" +"

    ich freue mich, Ihnen mitteilen zu können, dass wir uns zur Annahme Ihrer " +"Einreichung ohne weitere Begutachtung entschieden haben. Ihre Einreichung " +"{$submissionTitle} hat unsere Erwartungen erfüllt und benötigt diesen daher " +"Arbeitsschritt nicht. Wir freuen uns darauf, Ihre Einreichung in " +"{$contextName} veröffentlichen zu dürfen und danken Ihnen, unseren Verlag " +"als Erscheinungsort gewählt zu haben.

    \n" +"

    Ihr Beitrag wird bald auf der Verlagsseite für {$contextName} " +"veröffentlicht werden und wir laden Sie dazu ein, den Titel in Ihre " +"Publikationsliste aufzunehmen. Wir sind uns der harten Arbeit, die in jede " +"erfolgreiche Einreichung einfließt, bewusst und möchten Sie an dieser Stelle " +"zu Ihrem Ergebnis beglückwünschen.

    \n" +"

    Ihr Beitrag wird nun lektoriert und formatiert werden, um ihn für die " +"Publikation vorzubereiten.

    \n" +"

    Sie werden in Kürze weitere Anweisungen erhalten.

    \n" +"

    Sollten Sie in der Zwischenzeit Fragen haben, erreichen Sie mich über das " +"Einreichungsdashboard.

    \n" +"

    Mit freundlichen Grüßen

    \n" +"

    {$signature}

    \n" + +msgid "emails.layoutRequest.subject" +msgstr "" +"Die Einreichung {$submissionId} ist bereit für die Produktion bei " +"{$contextAcronym}" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" + +msgid "emails.layoutComplete.subject" +msgstr "Fahnen vollständig" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" + +msgid "emails.indexRequest.subject" +msgstr "Index anfordern" + +msgid "emails.indexRequest.body" +msgstr "" + +msgid "emails.indexComplete.subject" +msgstr "Indexfahnen vollständig" + +msgid "emails.indexComplete.body" +msgstr "" + +msgid "emails.emailLink.subject" +msgstr "Möglicherweise interessantes Manuskript" + +msgid "emails.emailLink.body" +msgstr "" +"Ich dachte, Sie würden sich vielleicht für den Beitrag " +"„"{$submissionTitle}"“ von {$authors}, veröffentlicht in Band " +"{$volume}, Nummer {$number} ({$year}) von {$contextName} unter " +"„"{$submissionUrl}"“ interessieren." + +msgid "emails.emailLink.description" +msgstr "" +"Diese E-Mail-Vorlage bietet registrierten Leser/innen die Möglichkeit, " +"Informationen über eine Monographie an eine interessierte Person zu senden. " +"Sie ist über die Reading Tools verfügbar und muss von dem/der Verlagsmanager/" +"in auf der Verwaltungsseite der Reading Tools aktiviert werden." + +msgid "emails.notifySubmission.subject" +msgstr "Benachrichtigung über eine Einreichung" + +msgid "emails.notifySubmission.body" +msgstr "" +"Sie haben eine neue Nachricht von {$sender} bezüglich " +""{$submissionTitle}" ({$monographDetailsUrl}):
    \n" +"
    \n" +"\t\t{$message}
    \n" +"
    \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Eine Benachrichtigung eines/einer Benutzer/in, die von einem Modal des " +"Einreichungsinformationszentrums gesendet wird." + +msgid "emails.notifyFile.subject" +msgstr "Benachrichtigung über eine Einreichungsdatei" + +msgid "emails.notifyFile.body" +msgstr "" +"Sie haben eine neue Benachrichtigung von {$sender} zu der Datei " +""{$fileName}" in "{$submissionTitle}" " +"({$monographDetailsUrl}):
    \n" +"
    \n" +"\t\t{$message}
    \n" +"
    \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"Eine Benachrichtigung von einem/einer Benutzer/in, die von einem modalen " +"Dateiinformationszentrum gesendet wird" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Redaktionelle Aktivitäten für {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"Sehr geehrte/r {$recipientName},
    \n" +"
    \n" +"der Bericht zu Ihrem Verlag für {$month}, {$year} ist nun verfügbar. Die " +"Hauptstatistiken für diesen Monat finden Sie im Folgenden.
    \n" +"
      \n" +"
    • Neue Einreichungen in diesem Monat: {$newSubmissions}
    • \n" +"
    • Abgelehnte Einreichungen in diesem Monat: {$declinedSubmissions}
    • \n" +"
    • Angenommene Einreichungen in diesem Monat: {$acceptedSubmissions}
    • \n" +"
    • Gesamtzahl der Einreichungen im System: {$totalSubmissions}
    • \n" +"
    \n" +"Detailliertere Daten finden Sie beim Verlag unter Redaktionelle Trends und Veröffentlichungsstatistik. Eine Kopie des " +"Gesamtberichtes der redaktionellen Trends ist beigefügt.
    \n" +"
    \n" +"Mit freundlichen Grüßen
    \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
    \n" +"
    \n" +"{$announcementSummary}
    \n" +"
    \n" +"Besuchen Sie die Webseite, um die gesamte " +"Ankündigung zu lesen." + +msgid "emails.revisedVersionNotify.subject" +msgstr "Überarbeitete Version hochgeladen" + +msgid "emails.reviewReinstate.subject" +msgstr "Können Sie weiterhin einen Beitrag für {$contextName} begutachten?" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

    Guten Tag {$recipientName},

    der/die Autor/in hat eine " +"überarbeitete Version der Einreichung {$authorsShort} — " +"{$submissionTitle} hochgeladen.

    Als zuständige/r Redakteur/in möchten " +"wir Sie bitten, sich einzuloggen, die " +"Überarbeitung anzusehen und eine Entscheidung zu treffen, ob die " +"Einreichung für den weiteren Begutachtungsprozess angenommen oder abgelehnt " +"werden sollte oder weiterer Überarbeitung bedarf.




    Diese " +"Nachricht wurde automatisch versendet von {$contextName}." + +msgid "emails.editorAssignReview.body" +msgstr "" +"

    Guten Tag {$recipientName},

    die folgende Einreichung wurde Ihnen " +"zur Betreuung während des Begutachtungsprozesses zugewiesen:

    {$submissionTitle}
    {$authors}

    Abstract

    {$submissionAbstract}

    Bitte loggen " +"Sie sich ein um die Einreichung zu sehen " +"und eine/n geeignete/n Gutachter/in zuzuweisen. Sie können eine/n Gutachter/" +"in zuweisen, indem Sie auf \"Gutachter/in hinzufügen\" klicken.

    Vielen " +"Dank im Voraus.

    Mit freundlichen Grüßen

    {$signature}" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

    Guten Tag {$recipientName},

    die folgende Einreichung wurde Ihnen " +"zur Betreuung während der Produktionsphase zugewiesen:

    {$submissionTitle}
    {$authors}

    Abstract

    {$submissionAbstract}

    Bitte loggen " +"Sie sich ein um die Einreichung anzusehen. " +"Sobald produktionsreife Dateien vorliegen, laden Sie sie bitte in der Rubrik " +" Produktionsfertige Dateien hoch.

    Vielen Dank im " +"Voraus.

    Mit freundlichen Grüßen

    {$signature}" diff --git a/locale/de/locale.po b/locale/de/locale.po new file mode 100644 index 00000000000..7a94401570a --- /dev/null +++ b/locale/de/locale.po @@ -0,0 +1,1755 @@ +# Pia Piontkowitz , 2021, 2022, 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2023-04-26 17:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "common.payments" +msgstr "Zahlungen" + +msgid "monograph.audience" +msgstr "Zielgruppe" + +msgid "monograph.audience.success" +msgstr "Die Angaben zur Zielgruppe wurden aktualisiert." + +msgid "monograph.coverImage" +msgstr "Titelbild" + +msgid "monograph.audience.rangeQualifier" +msgstr "Grundlage der Eingrenzung der Zielgruppe" + +msgid "monograph.audience.rangeFrom" +msgstr "Bildungsstand (von)" + +msgid "monograph.audience.rangeTo" +msgstr "Bildungsstand (bis)" + +msgid "monograph.audience.rangeExact" +msgstr "Bildungsstand (genau)" + +msgid "monograph.languages" +msgstr "Sprachen (Englisch, Französisch, Spanisch)" + +msgid "monograph.publicationFormats" +msgstr "Publikationsformate" + +msgid "monograph.publicationFormat" +msgstr "Format" + +msgid "monograph.publicationFormatDetails" +msgstr "Genauere Angaben zum verfügbaren Publikationsformat {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Angaben zur Monographie" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formate:" + +msgid "monograph.type" +msgstr "Art der Einreichung" + +msgid "submission.pageProofs" +msgstr "Korrekturfahnen" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Der Layouter/die Layouterin lädt hier die für die Publikation vorbereiteten " +"herstellungsreifen Dateien hoch. Über +Zuweisen können Sie Autor/" +"innen und andere Beteiligten mit dem Gegenlesen der Korrekturfahne " +"beauftragen, wobei die korrigierten Dateien zur abschließenden Prüfung " +"erneut hochgeladen werden müssen bevor es zu einer Veröffentlichung kommt." + +msgid "monograph.task.addNote" +msgstr "Zu den Aufgaben hinzufügen" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Open Access" + +msgid "monograph.publicationFormat.imprint" +msgstr "Impressum (Marken-/Verlagsname)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Seitenanzahl" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Titelei" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Nachspann" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Produktzusammensetzung" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Produktangaben (nicht erforderlich)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Produktcode" + +msgid "monograph.publicationFormat.price" +msgstr "Preis" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Eine Preisangabe ist erforderlich." + +msgid "monograph.publicationFormat.priceType" +msgstr "Preisart" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Rabattsatz (falls zutreffend)" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Verfügbarkeit" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Remissionskonditionen" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Digitale Informationen" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Abmessungen" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Dateigröße in MB" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Möchten Sie eine eigene Dateigröße eingeben?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Höhe" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Dicke" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Gewicht" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Breite" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Herstellungsland" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Digitale technische Schutzmaßnahmen" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Vertriebsregion" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Steuersatz" + +msgid "monograph.publicationFormat.taxType" +msgstr "Steuerart" + +msgid "monograph.publicationFormat.isApproved" +msgstr "Metadaten für dieses Publikationsformat in den Katalog aufnehmen." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Markt- und Preisangabe fehlen." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Identifikationscode fehlt." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Einige Metadatenfelder wurden nicht ausgefüllt." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

    Das von Ihnen gewählte Format steht für diese Monographie nicht mehr zur " +"Verfügung.

    " + +msgid "monograph.publicationFormat.openTab" +msgstr "Öffne Reiter Publikationsform." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Format" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Eine Namensangabe ist erforderlich." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Eine gültige Preisangabe ist erforderlich." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Weitere Angaben für dieses Format" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Physisches Format" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Dieses Format wird auf einer externen Website bereitgestellt werden" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL des remote bereitgestellten Inhalts" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "Ein 13-stelliger ISBN-Code, z.B. 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "Ein 10-stelliger ISBN-Code, z.B. 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Es wird eine Kennung für die Monographie benötigt." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Bitte wählen Sie ein Publikationsformat." + +msgid "grid.catalogEntry.availability" +msgstr "Verfügbarkeit" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Verfügbar" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Nicht verfügbar" + +msgid "grid.catalogEntry.proof" +msgstr "Korrekturfahne" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Format-Freigabe" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

    Die Metadaten für dieses Format freigeben. Metadaten können im Bereich " +"\"Bearbeiten\" für jedes Format überprüft werden.

    " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "" +"

    Anzeigen, dass die Metadaten für dieses Format noch nicht genehmigt " +"wurden.

    " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Format-Verfügbarkeit" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

    Dieses Format für Leser/innen zugänglich machen. Herunterladbare " +"Dateien und alle anderen Vertriebswege werden im Katalogeintrag des Buchs " +"angezeigt.

    " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

    Dieses Format wird für Leser/innen nicht verfügbar sein. Alle " +"herunterladbaren Dateien oder andere Vertriebswege werden nicht mehr im " +"Katalogeintrag des Buchs angezeigt.

    " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Der Katalogeintrag wurde nicht akzeptiert." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Format nicht im Katalogeintrag." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Fahne nicht akzeptiert." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Akzeptiert" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Warte auf Freigabe" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Für digitale Formate wird eine Dateigröße benötigt." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Bitte geben Sie die Produktverfügbarkeit an." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Bitte wählen Sie einen Code für die Produktzusammensetzung." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Wert" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "ONIX Code-Typ" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Ein Code ist erforderlich." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Bitte geben Sie einen Wert ein." + +msgid "grid.catalogEntry.salesRights" +msgstr "Vertriebskonditionen" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Codewert" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Vertriebskonditionen" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Restliche Welt/Rest of World?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Setzen Sie hier einen Haken, wenn Sie die Vertriebskonditionen pauschal " +"festlegen möchten. Sie müssen in diesem Fall nicht einzelne Länder und " +"Regionen auswählen." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Es wurde schon \"Restliche Welt\" als Geltungsbereich für die " +"Vertriebskonditionen dieses Formats festgelegt." + +msgid "grid.catalogEntry.countries" +msgstr "Länder" + +msgid "grid.catalogEntry.regions" +msgstr "Regionen" + +msgid "grid.catalogEntry.included" +msgstr "Eingeschlossen" + +msgid "grid.catalogEntry.excluded" +msgstr "Ausgeschlossen" + +msgid "grid.catalogEntry.markets" +msgstr "Absatzgebiete" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Gebiet" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Erscheinungsdatum" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Die Angabe einer Vertreter/in ist erforderlich." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Bitte geben Sie ein Datumsformat ein." + +msgid "grid.catalogEntry.dateValue" +msgstr "Datum" + +msgid "grid.catalogEntry.dateRole" +msgstr "Das Datum bezieht sich auf das ..." + +msgid "grid.catalogEntry.dateFormat" +msgstr "Datumsformat" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Bitte geben Sie ein Datum ein. Das Datumsformat muss dem von Ihnen gewählten " +"Format entsprechen." + +msgid "grid.catalogEntry.representatives" +msgstr "Vertriebspartner" + +msgid "grid.catalogEntry.representativeType" +msgstr "Vertriebspartnertyp" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Vertreter/innen" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Dienstleister" + +msgid "grid.catalogEntry.agent" +msgstr "Vertreter/in" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Sie können eine/n Vertreter/in bestimmen, um Sie in dem ausgewählten Gebiet " +"zu repräsentieren. Diese Angabe ist nicht verpflichtend." + +msgid "grid.catalogEntry.supplier" +msgstr "Dienstleister" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Wählen Sie eine Funktion:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Funktion" + +msgid "grid.catalogEntry.representativeName" +msgstr "Name" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Telefon" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "E-Mail-Adresse" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Website" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Identifkationsnummer des Unternehmens" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Identifikationsnmmerntyp des Unternehmens (empfohlen wird GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Sie können die folgenden Abschnitte leer lassen, wenn Sie Ihren Kunden Ihre " +"eigenen Dienste anbieten möchten." + +msgid "grid.action.addRepresentative" +msgstr "Vertriebspartner hinzufügen" + +msgid "grid.action.editRepresentative" +msgstr "Diesen Vertriebspartner bearbeiten" + +msgid "grid.action.deleteRepresentative" +msgstr "Vertriebspartner entfernen" + +msgid "spotlight" +msgstr "Spotlight" + +msgid "spotlight.spotlights" +msgstr "Spotlights" + +msgid "spotlight.noneExist" +msgstr "Aktuell sind keine Spotlights vorhanden." + +msgid "spotlight.title.homePage" +msgstr "Im Rampenlicht" + +msgid "spotlight.author" +msgstr "Autor, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Spotlight-Titel" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Homepage" + +msgid "grid.content.spotlights.form.location" +msgstr "Spotlightplatzierung" + +msgid "grid.content.spotlights.form.item" +msgstr "Geben Sie den Titel des Spotlights ein (Auto-Vervollständigen)" + +msgid "grid.content.spotlights.form.title" +msgstr "Spotlight-Titel (wie er auf der Website erscheinen soll)" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Buch" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Bitte machen Sie eine Angabe." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Bitte geben Sie den Titel des Spotlights an." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Bitte wählen Sie einen Platz für dieses Spotlight." + +msgid "grid.action.editSpotlight" +msgstr "Spotlight bearbeiten" + +msgid "grid.action.deleteSpotlight" +msgstr "Spotlight löschen" + +msgid "grid.action.addSpotlight" +msgstr "Spotlight hinzufügen" + +msgid "manager.series.open" +msgstr "Offene Einreichungen" + +msgid "manager.series.indexed" +msgstr "Indiziert" + +msgid "grid.libraryFiles.column.files" +msgstr "Dateien" + +msgid "grid.action.catalogEntry" +msgstr "Den Katalogeintrag ansehen" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Das Format erscheint im Katalog" + +msgid "grid.action.editFormat" +msgstr "Format bearbeiten" + +msgid "grid.action.deleteFormat" +msgstr "Format entfernen" + +msgid "grid.action.addFormat" +msgstr "Format hinzufügen" + +msgid "grid.action.approveProof" +msgstr "" +"Akzeptieren Sie die Korrekturfahne um den Titel zu indizieren und dem " +"Katalog hinzuzufügen" + +msgid "grid.action.pageProofApproved" +msgstr "Die Korrekturfahnen ist fertig zur Veröffentlichung" + +msgid "grid.action.newCatalogEntry" +msgstr "Neuer Katalogeintrag" + +msgid "grid.action.publicCatalog" +msgstr "Diesen Titel im Katalog ansehen" + +msgid "grid.action.feature" +msgstr "Auf die Anzeige empfohlener Bücher umschalten" + +msgid "grid.action.featureMonograph" +msgstr "Diesen Band in das Karussell aufnehmen" + +msgid "grid.action.releaseMonograph" +msgstr "Diesen Titel als 'Neuerscheinung' kennzeichnen" + +msgid "grid.action.manageCategories" +msgstr "Kategorien konfigurieren" + +msgid "grid.action.manageSeries" +msgstr "Reihen konfigurieren" + +msgid "grid.action.addCode" +msgstr "Code hinzufügen" + +msgid "grid.action.editCode" +msgstr "Diesen Code bearbeiten" + +msgid "grid.action.deleteCode" +msgstr "Diesen Code löschen" + +msgid "grid.action.addRights" +msgstr "Vertriebskonditionen hinzufügen" + +msgid "grid.action.editRights" +msgstr "Konditionen bearbeiten" + +msgid "grid.action.deleteRights" +msgstr "Konditionen entfernen" + +msgid "grid.action.addMarket" +msgstr "Absatzmarkt hinzufügen" + +msgid "grid.action.editMarket" +msgstr "Absatzmarkt bearbeiten" + +msgid "grid.action.deleteMarket" +msgstr "Absatzmarkt entfernen" + +msgid "grid.action.addDate" +msgstr "Erscheinungsdatum hinzufügen" + +msgid "grid.action.editDate" +msgstr "Dieses Datum bearbeiten" + +msgid "grid.action.deleteDate" +msgstr "Dieses Datum löschen" + +msgid "grid.action.createContext" +msgstr "Einen neuen Verlag anlegen" + +msgid "grid.action.publicationFormatTab" +msgstr "Zeige den Reiter Format" + +msgid "grid.action.moreAnnouncements" +msgstr "Zu den Bekanntmachungen" + +msgid "grid.action.submissionEmail" +msgstr "Zum Lesen der E-Mail bitte klicken" + +msgid "grid.action.approveProofs" +msgstr "Korrekturfahnen anzeigen" + +msgid "grid.action.proofApproved" +msgstr "Das Format wurde geprüft" + +msgid "grid.action.availableRepresentation" +msgstr "Dieses Format freigeben/nicht freigeben" + +msgid "grid.action.formatAvailable" +msgstr "Format ist verfügbar und wurde veröffentlicht" + +msgid "grid.reviewAttachments.add" +msgstr "Füge dem Gutachten einen Anhang hinzu" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Verfügbare Dateien" + +msgid "series.series" +msgstr "Reihe" + +msgid "series.featured.description" +msgstr "Diese Reihen werden in der Hauptnavigation erscheinen" + +msgid "series.path" +msgstr "Pfad" + +msgid "catalog.manage" +msgstr "Katalogverwaltung" + +msgid "catalog.manage.newReleases" +msgstr "Neuerscheinungen" + +msgid "catalog.manage.category" +msgstr "Kategorie" + +msgid "catalog.manage.series" +msgstr "Reihe" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Bitte geben Sie eine gültige ISSN an." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Online- und Print-ISSN dürfen nicht gleich sein." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Online-ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "Print-ISSN" + +msgid "catalog.selectSeries" +msgstr "Wählen Sie eine Reihe aus" + +msgid "catalog.selectCategory" +msgstr "Wählen Sie eine Kategorie aus" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Die Umschlagbilder der ausgewählten Bücher erscheinen auf der Homepage als " +"scrollbare Liste. Klicken Sie auf den Icon 'Empfehlen' (rechts) und " +"anschließend auf das entsprechende Sternchen, um ein Buch dem Karussell " +"hinzuzufügen, und auf das Ausrufezeichen, wenn Sie es unter der Rubrik " +"'Neuerscheinungen\" erscheinen soll. Durch Drag and Drop können Sie die " +"Reihenfolge festlegen, in der die Bücher angezeigt werden." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Um ein Buch auszuwählen, das Sie in der jeweiligen Kategorie besonders " +"empfehlen möchten, klicken Sie zunächst auf den Icon 'Empfehlen' (rechts " +"unterhalb dieser Erklärung) und dann auf das Sternchen. Mit Drag and Drop " +"legen Sie die Reihenfolge der angezeigten empfohlenen Titel fest." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Wenn Sie innerhalb der Reihe ein Buch als empfehlenswert hervorheben " +"möchten, klicken Sie zuerst auf den Icon 'Empfehlen' (rechts unterhalb " +"dieser Erklärung) und dann auf das jeweilige Sternchen. Mit Drag and Drop " +"können Sie die Reihenfolge festlegen, in der die empfohlenen Titel anzeigt " +"werden.

    Reihen lassen sich stets über den/die Herausgeber/in und Titel " +"identifizieren, sie können einer Kategorie zugeordnet sein, müssen es aber " +"nicht." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Karussell" + +msgid "catalog.manage.newRelease" +msgstr "Ausgabe" + +msgid "catalog.manage.manageSeries" +msgstr "Reihen verwalten" + +msgid "catalog.manage.manageCategories" +msgstr "Kategorien verwalten" + +msgid "catalog.manage.noMonographs" +msgstr "Es liegen keine Ihnen zugewiesenen Monographien vor." + +msgid "catalog.manage.featured" +msgstr "Gefeaturet" + +msgid "catalog.manage.categoryFeatured" +msgstr "Gefeaturet in Kategorie" + +msgid "catalog.manage.seriesFeatured" +msgstr "Gefeaturet in Reihe" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monographie wurde gefeaturet." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monographie wurde nicht gefeaturet." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Die Monographie wurde als Neuerscheinung gekennzeichnet." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Die Kenntlichmachung als Neuerscheinung wurde entfernt." + +msgid "catalog.manage.feature.newRelease" +msgstr "Neuerscheinung" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Neuerscheinung in der Kategorie" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Neuerscheinung in der Reihe" + +msgid "catalog.manage.nonOrderable" +msgstr "" +"Diese Monographie kann nicht bestellt werden bevor sie gefeaturet wurde." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Nach Titel oder Autor/in suchen" + +msgid "catalog.manage.isFeatured" +msgstr "" +"Diese Monographie wurde gefeaturet. Feature für diese Monographie " +"zurückziehen." + +msgid "catalog.manage.isNotFeatured" +msgstr "Diese Monographie wurde nicht gefeaturet. Diese Monographie featuren." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Diese Monographie ist eine neue Veröffentlichung. Den Status der neuen " +"Veröffentlichung entfernen." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Diese Monographie ist keine neue Veröffentlichung. Diese Monographie als " +"neue Veröffentlichung markieren." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Es wurden keine Einreichungen zur Aufnahme in den Katalog ausgewählt." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Eine oder mehrere der Einreichungen konnten nicht gefunden werden." + +msgid "catalog.manage.findSubmissions" +msgstr "Finden Sie Monographien zur Aufnahme in den Katalog" + +msgid "catalog.noTitles" +msgstr "Bisher wurden keine Titel veröffentlicht." + +msgid "catalog.noTitlesNew" +msgstr "Zur Zeit sind keine neuen Veröffentlichungen verfügbar." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Zu Ihrer Suche nach \"{$searchQuery}\" wurden keine passenden Titel gefunden." + +msgid "catalog.feature" +msgstr "Empfehlen" + +msgid "catalog.featured" +msgstr "Empfohlen" + +msgid "catalog.featuredBooks" +msgstr "Empfohlene Bücher" + +msgid "catalog.foundTitleSearch" +msgstr "Zu Ihrer Suche nach \"{$searchQuery}\" wurde ein Titel gefunden." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"Zu Ihrer Suche nach \"{$searchQuery}\" wurden {$number} Titel gefunden." + +msgid "catalog.category.heading" +msgstr "Alle Bücher" + +msgid "catalog.newReleases" +msgstr "Neuerscheinungen" + +msgid "catalog.dateAdded" +msgstr "Hinzugefügt {$dateAdded}" + +msgid "catalog.publicationInfo" +msgstr "Informationen zum Buch" + +msgid "catalog.published" +msgstr "Veröffentlicht" + +msgid "catalog.forthcoming" +msgstr "Neuerscheinungen" + +msgid "catalog.categories" +msgstr "Kategorien" + +msgid "catalog.parentCategory" +msgstr "Oberkategorie" + +msgid "catalog.category.subcategories" +msgstr "Unterkategorie" + +msgid "catalog.aboutTheAuthor" +msgstr "Über den/die {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Bitte beachten Sie: Um einen Band zu kaufen, müssen Sie angemeldet sein. " +"Sobald Sie einen Band ausgewählt haben, den Sie erwerben möchten, gelangen " +"Sie automatisch zur Anmeldeseite. Alle Titel, die mit einem Open-Access-" +"Symbol (geöffnetes Schloss) gekennzeichnet sind, können kostenlos " +"heruntergeladen werden. Eine Anmeldung ist dazu nicht erforderlich." + +msgid "catalog.sortBy" +msgstr "Reihenfolge der Bücher" + +msgid "catalog.sortBy.seriesDescription" +msgstr "" +"Wählen Sie aus, in welcher Reihenfolge Bücher in dieser Reihe angezeigt " +"werden sollen." + +msgid "catalog.sortBy.categoryDescription" +msgstr "" +"Wählen Sie aus, in welcher Reihenfolge Bücher in dieser Kategorie angezeigt " +"werden sollen." + +msgid "catalog.sortBy.catalogDescription" +msgstr "" +"Wählen Sie aus, in welcher Reihenfolge Bücher im Katalog angezeigt werden " +"sollen." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Position in Reihe (niedrigste zuerst)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Position in Reihe (höchste zuerst)" + +msgid "catalog.viewableFile.title" +msgstr "{$type}-Ansicht der Datei {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Zurück zur Detailanzeige von {$monographTitle}" + +msgid "submission.search" +msgstr "Büchersuche" + +msgid "common.publication" +msgstr "Monographie" + +msgid "common.publications" +msgstr "Monographien" + +msgid "common.prefix" +msgstr "Präfix" + +msgid "common.preview" +msgstr "Vorschau" + +msgid "common.feature" +msgstr "Empfehlen" + +msgid "common.searchCatalog" +msgstr "Suche im Katalog" + +msgid "common.moreInfo" +msgstr "Weitere Informationen" + +msgid "common.listbuilder.completeForm" +msgstr "Bitte füllen Sie dieses Formular vollständig aus." + +msgid "common.listbuilder.selectValidOption" +msgstr "Bitte wählen Sie eine gültige Option aus dieser Liste aus." + +msgid "common.listbuilder.itemExists" +msgstr "Sie können nicht den gleichen Eintrag ein zweites Mal hinzufügen." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Homepage-Header" + +msgid "navigation.catalog" +msgstr "Katalog" + +msgid "navigation.competingInterestPolicy" +msgstr "Leitlinie zu Interessenskonflikten" + +msgid "navigation.catalog.allMonographs" +msgstr "Alle Monographien" + +msgid "navigation.catalog.manage" +msgstr "Verwalten" + +msgid "navigation.catalog.administration.short" +msgstr "Administration" + +msgid "navigation.catalog.administration" +msgstr "Katalogverwaltung" + +msgid "navigation.catalog.administration.categories" +msgstr "Kategorien" + +msgid "navigation.catalog.administration.series" +msgstr "Reihe" + +msgid "navigation.infoForAuthors" +msgstr "Für Autoren/innen" + +msgid "navigation.infoForLibrarians" +msgstr "Für Bibliothekare/innen" + +msgid "navigation.infoForAuthors.long" +msgstr "Informationen für Autoren/innen" + +msgid "navigation.infoForLibrarians.long" +msgstr "Informationen für Bibliothekare/innen" + +msgid "navigation.newReleases" +msgstr "Neuerscheinungen" + +msgid "navigation.published" +msgstr "Erschienen" + +msgid "navigation.wizard" +msgstr "Assistent" + +msgid "navigation.linksAndMedia" +msgstr "Links und Soziale Netzwerke" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Link zu Ihrem Katalog." + +msgid "navigation.skip.spotlights" +msgstr "Zu Spotlights springen" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Reihen" + +msgid "navigation.navigationMenus.series.description" +msgstr "Link zu einer Reihe." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Kategorie" + +msgid "navigation.navigationMenus.category.description" +msgstr "Link zu einer Kategorie." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Neuerscheinungen" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Link zu Ihren Neuerscheinungen." + +msgid "context.contexts" +msgstr "Verlage" + +msgid "context.context" +msgstr "Verlag" + +msgid "context.current" +msgstr "Aktueller Verlag:" + +msgid "context.select" +msgstr "Wählen Sie einen Verlag:" + +msgid "user.authorization.representationNotFound" +msgstr "Das angeforderte Publikationsformat konnte nicht gefunden werden." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Benutzer/innen ohne zugewiesene Funktion mit einbeziehen." + +msgid "user.noRoles.submitMonograph" +msgstr "Einen Vorschlag einreichen" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Einreichen einer Monographie: Die Registrierung als Autor/in ist zurzeit " +"deaktiviert." + +msgid "user.noRoles.regReviewer" +msgstr "Registrierung als Gutachter/in" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Registrierung als Gutachter/in: Die Gutachterregistrierung ist zurzeit " +"deaktiviert." + +msgid "user.reviewerPrompt" +msgstr "" +"Wären Sie einverstanden, Einreichungen dieses Verlags einem Review zu " +"unterziehen?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Ja, die {$userGroup} Rolle anfragen." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Ja, ich möchte Anfragen zugeschickt bekommen, wenn Reviews zu Einreichungen " +"dieses Verlag ausständig sind." + +msgid "user.register.contextsPrompt" +msgstr "Für welche Verlage dieser Seite möchten Sie sich registrieren?" + +msgid "user.register.otherContextRoles" +msgstr "Die folgenden Rollen anfragen." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Falls Sie Reviewer eines Verlags werden wollen, geben Sie bitte Ihre " +"Fachgebiete an." + +msgid "user.role.manager" +msgstr "Verlagsleiter/in" + +msgid "user.role.pressEditor" +msgstr "Leitender Herausgeber/Leitende Herausgeberin" + +msgid "user.role.subEditor" +msgstr "Reihenherausgeber/in" + +msgid "user.role.copyeditor" +msgstr "Lektor/in" + +msgid "user.role.proofreader" +msgstr "Korrektor/in" + +msgid "user.role.productionEditor" +msgstr "Hersteller/in" + +msgid "user.role.managers" +msgstr "Verlagsleiter/in" + +msgid "user.role.subEditors" +msgstr "Reihenherausgeber/innen" + +msgid "user.role.editors" +msgstr "Herausgeber/innen" + +msgid "user.role.copyeditors" +msgstr "Lektoren/innen" + +msgid "user.role.proofreaders" +msgstr "Korrektoren/innen" + +msgid "user.role.productionEditors" +msgstr "Hersteller/innen" + +msgid "user.register.selectContext" +msgstr "Wählen Sie den Verlag aus, bei dem Sie sich registrieren möchten:" + +msgid "user.register.noContexts" +msgstr "" +"Es gibt keine Verlage, bei denen Sie sich auf dieser Website anmelden können." + +msgid "user.register.privacyStatement" +msgstr "Datenschutzerklärung" + +msgid "user.register.registrationDisabled" +msgstr "Zurzeit ist keine Registrierung möglich." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Das eingegebene Passwort ist zu kurz." + +msgid "user.register.readerDescription" +msgstr "Per E-Mail über das Erscheinen eines Buches benachrichtigt." + +msgid "user.register.authorDescription" +msgstr "Kann einen Titel beim Verlag einreichen." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Ich bin bereit, beim Verlag eingegangene Manuskripte zu begutachten." + +msgid "user.register.reviewerDescription" +msgstr "" +"Erklärt sich bereit, den Peer-Review-Prozess für auf dieser Website " +"eingereichte Manuskripte durchzuführen." + +msgid "user.register.reviewerInterests" +msgstr "Interessen (inhaltliche Schwerpunkte und Forschungsmethoden):" + +msgid "user.register.form.userGroupRequired" +msgstr "Sie müssen mindestens eine Funktion auswählen" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Ja, ich stimme zu, dass meine Daten erfasst und gespeichert werden wie in " +"der Datenschutzerklärung des " +"Verlags angegeben." + +msgid "site.noPresses" +msgstr "Es sind keine Verlage verfügbar." + +msgid "site.pressView" +msgstr "Verlagswebsite ansehen" + +msgid "about.pressContact" +msgstr "Pressekontakt" + +msgid "about.aboutContext" +msgstr "Über den Verlag" + +msgid "about.editorialTeam" +msgstr "Herausgeber/innen" + +msgid "about.editorialPolicies" +msgstr "Richtlinien für Herausgeber/innen" + +msgid "about.focusAndScope" +msgstr "Fokus und Umfang" + +msgid "about.seriesPolicies" +msgstr "Richtlinien für Reihen und Kategorien" + +msgid "about.submissions" +msgstr "Manuskripte einreichen" + +msgid "about.onlineSubmissions" +msgstr "Online-Einreichungen" + +msgid "about.onlineSubmissions.login" +msgstr "Zum Login" + +msgid "about.onlineSubmissions.register" +msgstr "Registrieren" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "" +"Sie müssen registriert und eingeloggt sein, um Manuskripte einzureichen oder " +"den aktuellen Status Ihrer Einreichung zu überprüfen. Mit einem bestehenden " +"Account {$login} oder einen neuen Account {$register}." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} oder {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Eine neue Einreichung anlegen" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "ausständige Einreichungen einsehen" + +msgid "about.authorGuidelines" +msgstr "Richtlinien für Autoren/innen" + +msgid "about.submissionPreparationChecklist" +msgstr "Checkliste zur Manuskripteinreichung" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Während des Einreichungsvorganges werden die Autor/innen dazu aufgefordert " +"zu überprüfen, ob ihr Manuskript alle genannten Anforderungen erfüllt. " +"Manuskripte, die nicht mit den Richtlinien übereinstimmen, können an die " +"Autor/innen zurückgegeben werden." + +msgid "about.copyrightNotice" +msgstr "Copyright-Vermerk" + +msgid "about.privacyStatement" +msgstr "Datenschutzerkärung" + +msgid "about.reviewPolicy" +msgstr "Peer-Review-Prozess" + +msgid "about.publicationFrequency" +msgstr "Erscheinungsweise" + +msgid "about.openAccessPolicy" +msgstr "Open-Access-Leitlinien" + +msgid "about.pressSponsorship" +msgstr "Verlagssponsoren" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Mehr Informationen zu diesem Publikationssystem, der Plattform und dem " +"Workflow von OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "OMP-Redaktions- und Veröffentlichungsprozess" + +msgid "about.aboutSoftware" +msgstr "Über Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"Dieser Verlag verwendet Open Monograph Press {$ompVersion}, eine Open-Source " +"Verlagsmanagement- und Publikations-Software, die vom Public Knowledge Project unter der GNU General Public License " +"entwickelt wurde. Support und Vertrieb der Software sind kostenfrei. Bitte " +"kontaktieren Sie den Verlag um Fragen über den " +"Verlag und Einreichungen zu stellen." + +#, fuzzy +msgid "about.aboutOMPSite" +msgstr "" +"Dieser Verlag verwendet Open Monograph Press {$ompVersion}, eine Open-Source-" +"Presse- und Verlagsmanagement-Software, die vom Public Knowledge Project unter der GNU General Public License " +"entwickelt wurde. Support und Vertrieb der Software sind kostenfrei." + +msgid "help.searchReturnResults" +msgstr "Zurück zu den Suchergebnissen" + +msgid "help.goToEditPage" +msgstr "Öffnen Sie eine neue Seite, um diese Informationen zu bearbeiten" + +msgid "installer.appInstallation" +msgstr "OMP-Installation" + +msgid "installer.ompUpgrade" +msgstr "OMP-Upgrade" + +msgid "installer.installApplication" +msgstr "Installiere Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Wenn Sie eine existierende Installation von OMP aktualisieren, klicken Sie " +"hier um fortzufahren." + +msgid "installer.installationInstructions" +msgstr "" +"

    Danke, dass Sie Open Monograph Press {$version} des " +"Public Knowledge Project heruntergeladen haben. Bitte lesen Sie die in der " +"Software enthaltene README -Datei, " +"bevor Sie fortfahren. Mehr Informationen über das das Public Knowledge " +"Project und seine Softwareprojekte finden Sie auf der PKP-Website PKP web site. Wenn Sie einen " +"Bug melden möchten oder technischen Support für Open Monograph Press " +"benötigen, wenden Sie sich bitte an unser: support forum oder besuchen Sie das " +"online Bug " +"Reporting System von PKP. Wir empfehlen Ihnen zwar, über das " +"Supportforum Kontakt zu uns aufzunehmen, Sie können aber eine E-Mail an " +"unser Team schreiben: pkp." +"contact@gmail.com.

    " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Schritte vor der Installation" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

    1. Die folgenden Dateien und Verzeichnisse (und deren Inhalte) müssen mit " +"einer Schreibberechtigung ausgestattet sein:

    \n" +"
      \n" +"\t
    • config.inc.php ist beschreibbar (optional): {$writable_config}" +"
    • \n" +"\t
    • public/ ist beschreibbar: {$writable_public}
    • \n" +"\t
    • cache/ ist beschreibbar: {$writable_cache}
    • \n" +"\t
    • cache/t_cache/ ist beschreibbar: {$writable_templates_cache}\n" +"\t
    • cache/t_compile/ ist beschreibbar: " +"{$writable_templates_compile}
    • \n" +"\t
    • cache/_db ist beschreibbar: {$writable_db_cache}
    • \n" +"
    \n" +"\n" +"

    2. Es muss ein Verzeichnis angelegt und mit Schreibrechten ausgestattet " +"werden, in dem die hochgeladenen Dateien gespeichert werden können (siehe " +"\"Dateieinstellungen\" unten).

    " + +msgid "installer.upgradeInstructions" +msgstr "" +"

    OMP Version {$version}

    \n" +"\n" +"

    Vielen Dank, dass Sie Open Monograph Press des Public " +"Knowledge Project heruntergeladen haben. Bevor Sie fortfahren, empfehlen wir " +"Ihnen, die README und UPGRADE Dateien zu lesen, die in dieser " +"Software enthalten sind. Weitere Informationen über das Public Knowledge " +"Project und seine Softwareprojecte finden Sie auf der PKP-Website. Wenn Sie einen Bug melden " +"möchten oder technischen Support für Open Monograph Press benötigen, wenden " +"Sie sich bitte an unser: Support Forum oder besuchen Sie online PKPs bug reporting system. Wir " +"empfehlen Ihnen zwar, über das Supportforum Kontakt zu uns aufzunehmen, Sie " +"können eine E-Mail an unser Team schreiben: pkp.contact@gmail.com.

    \n" +"

    Es wird dringend empfohlen Datenbank, Dateienverzeichnis " +"und OMP-Installationsverzeichnis zu speichern, bevor Sie fortfahren.

    " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Für einen vollständigen Unicode (UTF-8)-Support wählen Sie bitte UTF-8 für " +"alle Zeichensatz-Einstellungen. Bitte beachten Sie, dass der Support zurzeit " +"einen MySQL >= 4.1.1 or PostgreSQL >= 9.1.5 Datenbankserver zur " +"Voraussetzung hat. Außerdem wird für den vollen Unicode-Support die mbstring-Bibliothek " +"(in jüngeren PHP-Installationen meist standardmäßig aktiviert). Sollten Sie " +"erweiterte Zeichensätze verwenden, kann es zu Schwierigkeiten kommen, wenn " +"Ihr Server diese Anforderungen nicht erfüllt.\n" +"

    \n" +"Ihr Server untersützt aktuell mbstring: {$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Ihr Server erlaubt aktuell die Datei-Uploads: {$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Ihr Server erlaubt aktuell das Hochladen von Dateien bis zu einer maximalen " +"Dateigröße von: {$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Die Sprache, die Hauptsprache in Ihrem System sein soll. Bitte konsultieren " +"Sie die OMP-Dokumentation, wenn Sie an der Unterstützung einer Sprache " +"interessiert sind, die hier nicht aufgeführt ist." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Wählen Sie weitere Sprachen aus, die in diesem System unterstützt werden " +"sollen. Verlage, die auf dieser Website gehostet sind, können diese Sprachen " +"verwenden. Weitere Sprachen können ebenfalls jederzeit installiert werden, " +"und zwar über das Website-Administration-Interface. Mit * markierte " +"Regionaleinstellungen sind unter Umständen unvollständig." + +msgid "installer.filesDirInstructions" +msgstr "" +"Geben Sie den vollständigen Pfadnamen zu einem bestehenden Verzeichnis an, " +"in dem die hochgeladenen Dateien abgelegt werden sollen. Auf dieses " +"Verzeichnis sollte kein direkter Zugriff von außen (vom Web aus) möglich " +"sein. Bitte stellen Sie sicher, dass das Verzeichnis bereits " +"existiert und es beschreibbar ist, bevor Sie mit der Installation beginnen. Für Windows-Pfadnamen sind Schrägstriche zu verwenden, z.B. \"C:/" +"mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"Um die Daten ablegen zu können, benötigt OMP einen Zugriff auf eine SQL-" +"Datenbank. Bitte beachten Sie die oben genannten Systemanforderungen für die " +"aufgeführten unterstützten Datenbanken. In den darunter stehenden Feldern " +"werden die Einstellungen angegeben, die zur Verbindung mit der Datenbank " +"gesetzt werden müssen." + +msgid "installer.upgradeApplication" +msgstr "Open Monograph Press upgraden" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

    WICHTIG!

    \n" +"

    Der Installer konnte die Konfigurationsdatei nicht automatisch " +"überschreiben. Bevor Sie versuchen, das System zu verwenden, öffnen Sie " +"bitte config.inc.php in einem geeigneten Texteditor und ersetzen " +"Sie dessen Inhalte durch die Inhalte der unten stehenden Textbox.

    " + +msgid "installer.installationComplete" +msgstr "" +"

    Die OMP-Installation wurde erfolgreich abgeschlossen.

    \n" +"

    Um das System zu verwenden, loggen Sie sich auf der Login-Seite mit Ihrem Benutzernamen und Ihrem Passwort ein.

    \n" +"

    Besuchen Sie das Community Forum oder melden Sie sich für den Developer Newsletter an, um " +"Sicherheitshinweise und Updates zu neuen Releases, Plugins, und geplanten " +"Features zu erhalten.

    " + +msgid "installer.upgradeComplete" +msgstr "" +"

    Der Upgrade von OMP auf Version {$version} wurde erfolgreich " +"abgeschlossen.

    \n" +"

    Vergessen Sie nicht, die \"installiert\"-Einstellung in Ihrer config." +"inc.php Konfigurationsdatei auf Ein zurückzusetzen.

    \n" +"

    Besuchen Sie das Community Forum oder melden Sie sich für den Developer Newsletter an, um " +"Sicherheitshinweise und Updates zu neuen Releases, Plugins, und geplanten " +"Features zu erhalten.

    " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Das Abgabedatum für Begutachtungsrunde {$round} von Manuskript " +"{$submissionId} durch {$reviewerName} wurde auf den {$dueDate} festgesetzt." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} hat es abgelehnt, an der Begutachtungsrunde {$round} für " +"Manuskript {$submissionId} teilzunehmen." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} hat der Teilnahme an der Begutachtungsrunde {$round} für " +"Manuskript {$submissionId} zugestimmt." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} hat die Begutachtungsrunde {$round} für Manuskript " +"{$submissionId} als 'nicht berücksichtigt' markiert." + +msgid "log.editor.decision" +msgstr "" +"Die Entscheidung des Herausgebers ({$decision}) zu Monographie " +"{$submissionId} wurde von {$editorName} protokolliert." + +msgid "log.editor.recommendation" +msgstr "" +"Eine Bearbeiter/innen-Empfehlung ({$decision}) für Monographie " +"{$submissionId} wurde von {$editorName} gemacht." + +msgid "log.editor.archived" +msgstr "Manuskript {$submissionId} wurde archiviert." + +msgid "log.editor.restored" +msgstr "Manuskript {$submissionId} wurde in die Warteschlange zurückgestellt." + +msgid "log.editor.editorAssigned" +msgstr "" +"{$editorName} wurde als Herausgeber/in des Manuskripts {$submissionId} " +"bestimmt." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} hat {$proofreaderName} zum Korrektor für Manuskript " +"{$submissionId} bestimmt." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} hat {$submissionId} zur Planung eingereichtng." + +msgid "log.imported" +msgstr "{$userName} hat Monographie {$submissionId} importiert." + +msgid "notification.addedIdentificationCode" +msgstr "Code hinzugefügt." + +msgid "notification.editedIdentificationCode" +msgstr "Code bearbeitet." + +msgid "notification.removedIdentificationCode" +msgstr "Code entfernt." + +msgid "notification.addedPublicationDate" +msgstr "Erscheinungsdatum hinzugefügt." + +msgid "notification.editedPublicationDate" +msgstr "Erscheinungsdatum bearbeitet." + +msgid "notification.removedPublicationDate" +msgstr "Erscheinungsdatum entfernt." + +msgid "notification.addedPublicationFormat" +msgstr "Format hinzugefügt." + +msgid "notification.editedPublicationFormat" +msgstr "Format bearbeitet." + +msgid "notification.removedPublicationFormat" +msgstr "Format entfernt." + +msgid "notification.addedSalesRights" +msgstr "Vertriebsrechte hinzugefügt." + +msgid "notification.editedSalesRights" +msgstr "Vertriebsrechte bearbeitet." + +msgid "notification.removedSalesRights" +msgstr "Vertriebsrechte gelöscht." + +msgid "notification.addedRepresentative" +msgstr "Vertriebspartner hinzugefügt." + +msgid "notification.editedRepresentative" +msgstr "Vertriebspartner bearbeitet." + +msgid "notification.removedRepresentative" +msgstr "Vertriebspartner entfernt." + +msgid "notification.addedMarket" +msgstr "Absatzmarkt hinzugefügt." + +msgid "notification.editedMarket" +msgstr "Absatzmarkt bearbeitet." + +msgid "notification.removedMarket" +msgstr "Absatzmarkt gelöscht." + +msgid "notification.addedSpotlight" +msgstr "Spotlight hinzugefügt." + +msgid "notification.editedSpotlight" +msgstr "Spotlight bearbeitet." + +msgid "notification.removedSpotlight" +msgstr "Spotlight entfernt." + +msgid "notification.savedCatalogMetadata" +msgstr "Die Katalogmetadaten wurden gespeichert." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Die Metadaten dieses Formats wurden gespeichert." + +msgid "notification.proofsApproved" +msgstr "Korrekurfahnen akzeptiert." + +msgid "notification.removedSubmission" +msgstr "Das eingereichte Manuskript wurde gelöscht." + +msgid "notification.type.submissionSubmitted" +msgstr "Eine neue Monographie, \"{$title},\" wurde eingereicht." + +msgid "notification.type.editing" +msgstr "Bei der redaktionellen Bearbeitung aufgetretene Ereignisse" + +msgid "notification.type.reviewing" +msgstr "Bei der Begutachtung aufgetretene Ereignisse" + +msgid "notification.type.site" +msgstr "Auf der Webite aufgetretene Ereignisse" + +msgid "notification.type.submissions" +msgstr "Bei der Manuskripteinreichung aufgetretene Ereignisse" + +msgid "notification.type.userComment" +msgstr "Ein Leser hat einen Kommentar zu \"{$title}\" geschrieben." + +msgid "notification.type.public" +msgstr "Öffentliche Ankündigungen" + +msgid "notification.type.editorAssignmentTask" +msgstr "" +"Eine neue Monographie wurde eingereicht. Sie muss noch einem Herausgeber/" +"einer Herausgeberin zugewiesen werden." + +msgid "notification.type.copyeditorRequest" +msgstr "" +"Sie wurden um die Durchsicht der lektorierten Manuskripte \"{$file}\" " +"gebeten." + +msgid "notification.type.layouteditorRequest" +msgstr "Sie wurden um die Durchsicht der Layout-Dateien \"{$title}\" gebeten." + +msgid "notification.type.indexRequest" +msgstr "Sie wurden gebeten, einen Index für \"{$title}\" zu erstellen." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Der interne Begutachtungsprozess wurde gestartet." + +msgid "notification.type.approveSubmission" +msgstr "" +"Das eingereichte Manuskript muss noch im Katalogtool als akzeptiert " +"gekennzeichnet werden. Sobald dies geschehen ist, wird es im öffentlichen " +"Verlagskatalog erscheinen." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Warten auf Freigabe." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Die Monographie wird nicht im Katalog gelistet, bevor sie publiziert wurde. " +"Um dieses Buch dem Katalog hinzuzufügen, klicken Sie bitte auf den Tab " +"Publikation." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Es wurde noch keine Zahlungsweise konfiguriert." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Bevor Sie die E-Commerce-Einstellungen definieren können, müssen Sie " +"zunächst eine Zahlungsweise konfigurieren." + +msgid "notification.type.visitCatalogTitle" +msgstr "Katalogverwaltung" + +msgid "notification.type.visitCatalog" +msgstr "" +"Die Monographie wurde zugelassen. Bitte nutzen Sie die obigen Links zu " +"\"Marketing\" und \"Publikation\" um die Details der Monographie zu " +"bearbeiten." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Der Zugang wurde Ihnen verweigert, da Sie für diese Monographie nicht als " +"Gutachter/in zugelassen sind." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Der Zugang wurde Ihnen verweigert, da Sie anscheinend nicht der Autor/die " +"Autorin dieser Monographie sind." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Der Zugang wurde Ihnen verweigert, da diese Monographie Ihnen anscheinend " +"nicht zur Begutachtung zugewiesen wurde." + +msgid "user.authorization.monographFile" +msgstr "Der Zugang zu dieser Buchdatei wurde verweigert." + +msgid "user.authorization.invalidMonograph" +msgstr "Ungültiges Buch oder kein Buch angefordert!" + +msgid "user.authorization.noContext" +msgstr "Kein Verlag im Kontext." + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Sie versuchen, auf eine Monographie zuzugreifen, die nicht mehr zu Ihrer " +"Reihe gehört." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" +"Zugriff verweigert! Sie sind nicht für dieses Stadium des " +"Publikationsprozesses freigeschaltet." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Zugriff verweigert! Die Benutzer/innengruppe, in der Sie aktuell aktiv sind, " +"ist nicht mit dieser Phase des Publikationsprozesses befasst. Bitte " +"überprüfen Sie Ihre Einstellungen." + +msgid "payment.directSales" +msgstr "Download von der Verlagswebseite" + +msgid "payment.directSales.price" +msgstr "Preis" + +msgid "payment.directSales.availability" +msgstr "Verfügbarkeit" + +msgid "payment.directSales.catalog" +msgstr "Katalog" + +msgid "payment.directSales.approved" +msgstr "Akzeptiert" + +msgid "payment.directSales.priceCurrency" +msgstr "Preis ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "" +"Preise sollten ausschließlich numerisch sein. Geben Sie keine " +"Währungssymbole mit ein." + +msgid "payment.directSales.directSales" +msgstr "Direktvertrieb" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Nicht verfügbar" + +msgid "payment.directSales.notSet" +msgstr "Nicht festgelegt" + +msgid "payment.directSales.openAccess" +msgstr "Open Access" + +msgid "payment.directSales.price.description" +msgstr "" +"Dateiformate können den Lesern auf der Verlagswebseite entweder im Open " +"Access oder gegen Bezahlung zum Download angeboten werden. (Für den " +"kostenpflichten Download wird das unter 'Vertrieb' konfigurierte Online-" +"Bezahlsystem verwendet.) Bitte geben Sie die Zugriffsbedingungen für diese " +"Datei an." + +msgid "payment.directSales.validPriceRequired" +msgstr "Bitte geben Sie einen gültigen Preis (als Zahl) ein." + +msgid "payment.directSales.purchase" +msgstr "{$format} kaufen ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "{$format} herunterladen" + +msgid "payment.directSales.monograph.name" +msgstr "Download einer Monographie oder eines Kapitels erwerben" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Diese Transaktion dient dem Erwerb eines direkten Buch- oder " +"Kapiteldownloads." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"XML Hilfe Mapping Datei {$filename} neu geladen bei der Suche von {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Buch" + +msgid "submission.pdf.download" +msgstr "PDF herunterladen" + +msgid "user.profile.form.showOtherContexts" +msgstr "Andere Verlage anzeigen" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Andere Verlage verbergen" + +msgid "submission.round" +msgstr "Durchgang {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Die angegbene veröffentlichte Einreichung ist ungültig." + +msgid "catalog.coverImageTitle" +msgstr "Umschlagbild" + +msgid "grid.catalogEntry.chapters" +msgstr "Kapitel" + +msgid "search.results.orderBy.article" +msgstr "Artikeltitel" + +msgid "search.results.orderBy.author" +msgstr "Autor/in" + +msgid "search.results.orderBy.date" +msgstr "Publikationsdatum" + +msgid "search.results.orderBy.monograph" +msgstr "Monographientitel" + +msgid "search.results.orderBy.press" +msgstr "Verlagstitel" + +msgid "search.results.orderBy.popularityAll" +msgstr "Beliebtheit (All Time)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Beliebtheit (Letzter Monat)" + +msgid "search.results.orderBy.relevance" +msgstr "Relevanz" + +msgid "search.results.orderDir.asc" +msgstr "Aufsteigend" + +msgid "search.results.orderDir.desc" +msgstr "Absteigend" + +#~ msgid "catalog.manage.homepage" +#~ msgstr "Homepage" + +#~ msgid "user.register.completeForm" +#~ msgstr "Füllen Sie das Formular aus, um sich beim Verlag zu registrieren" + +#~ msgid "user.register.alreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Klicken Sie hier, wenn Sie bereits " +#~ "registriert sind." + +#~ msgid "user.register.notAlreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Klicken Sie hier, wenn Sie sich noch " +#~ "nicht bei diesem oder einem anderen Verlag dieser " +#~ "Website registriert haben." + +#~ msgid "user.register.loginToRegister" +#~ msgstr "" +#~ "Geben Sie Ihren Benutzernamen und Ihr Passwort ein, um sich zu " +#~ "registrieren." + +#~ msgid "about.aboutThePress" +#~ msgstr "Über den Verlag" + +#~ msgid "about.sponsors" +#~ msgstr "Sponsor/innen" + +#~ msgid "about.contributors" +#~ msgstr "Förderer" + +#~ msgid "grid.series.urlWillBe" +#~ msgstr "" +#~ "Die URL der Reihe soll lauten {$sampleUrl}. 'Path' (deutsch \"Pfad\") ist " +#~ "eine Zeichenkette, durch die die Reihe eindeutig identifizierbar wird." + +msgid "section.section" +msgstr "Reihe" diff --git a/locale/de/manager.po b/locale/de/manager.po new file mode 100644 index 00000000000..0581fe541d8 --- /dev/null +++ b/locale/de/manager.po @@ -0,0 +1,1819 @@ +# Pia Piontkowitz , 2021, 2022, 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2023-05-01 15:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German " +"\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Damit werden alle bisher vorgenommenen Anpassungen für diese " +"Regionaleinstellungen ersetzt" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Leider sind keine weiteren Sprachen verfügbar. Kontaktieren Sie Ihre/n " +"Website-Administrator/in, wenn Sie weitere Sprachen verwenden möchten." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "" +"Diese Sprache wird die voreingestellte Sprache für die Verlagswebsite sein." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Bitte stellen Sie sicher, dass für die Zuweisung der Reihe zu einem/einer " +"Reihenherausgeber/in zumindest eine Checkbox aktiviert wurde." + +msgid "manager.series.form.reviewFormId" +msgstr "" +"Stellen Sie sicher, dass Sie ein gültiges Gutachtenformular gewählt haben." + +msgid "manager.series.submissionIndexing" +msgstr "Wird nicht in die Indizierung eingeschlossen" + +msgid "manager.series.editorRestriction" +msgstr "" +"Titel können nur von Herausgeber/innen und Reihenherausgeber/innen " +"eingereicht werden." + +msgid "manager.series.confirmDelete" +msgstr "Sind Sie sicher, dass Sie die Reihe endgültig löschen wollen?" + +msgid "manager.series.indexed" +msgstr "Indiziert" + +msgid "manager.series.open" +msgstr "Offene Einreichungen" + +msgid "manager.series.readingTools" +msgstr "Lesewerkzeuge" + +msgid "manager.series.submissionReview" +msgstr "Kein Peer Review" + +msgid "manager.series.submissionsToThisSection" +msgstr "In dieser Reihe eingereichte Manuskripte" + +msgid "manager.series.abstractsNotRequired" +msgstr "Keine Abstracts verlangen" + +msgid "manager.series.disableComments" +msgstr "Leser/innenkommentarfunktion für diese Serie deaktivieren." + +msgid "manager.series.book" +msgstr "Buchreihe" + +msgid "manager.series.create" +msgstr "Reihe anlegen" + +msgid "manager.series.policy" +msgstr "Beschreibung der Reihe" + +msgid "manager.series.assigned" +msgstr "Herausgeber/innen dieser Reihe" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Fügen Sie eine/n Reihenherausgeber/in aus der Liste der verfügbaren " +"Reihenherausgeber/innen hinzu. Legen Sie anschließend fest, ob der/die " +"Reihenherausgeber/in den Begutachtungsprozess koordinieren UND die Redaktion " +"(Lektorat, Layout und Korrekturlesen) der Manuskripte dieser Reihe " +"übernehmen oder nur eine der beiden Aufgabenfelder wahrnehmen soll. Möchten " +"Sie eine/n Reihenherausgeber/in neu anlegen, gehen Sie über \"Verwaltung\" > " +"\"Einstellungen und Funktionen\" auf \"Funktionen\" und klicken Sie dort auf " +"Reihenherausgeber/innen ." + +msgid "manager.series.hideAbout" +msgstr "Diese Reihe nicht unter \"Über uns\" anzeigen." + +msgid "manager.series.unassigned" +msgstr "Verfügbare Reihenherausgeber/innen" + +msgid "manager.series.form.abbrevRequired" +msgstr "Für Reihen wird ein Kurztitel benötigt." + +msgid "manager.series.form.titleRequired" +msgstr "Es wird ein Titel für die Reihe benötigt." + +msgid "manager.series.noneCreated" +msgstr "Es wurde keine Reihe angelegt." + +msgid "manager.series.existingUsers" +msgstr "Bestehende Benutzer/innen" + +msgid "manager.series.seriesTitle" +msgstr "Reihentitel" + +msgid "manager.series.restricted" +msgstr "Verbieten Sie Autor/innen, direkt bei dieser Reihe einzureichen." + +msgid "manager.payment.generalOptions" +msgstr "Allgemeine Optionen" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Zahlungen werden für diesen Verlag aktiviert. Beachten Sie, dass Nutzer/" +"innen sich einloggen müssen um Zahlungen zu machen." + +msgid "manager.payment.success" +msgstr "Die Zahlungs-Einstellungen wurden aktualisiert." + +msgid "manager.settings" +msgstr "Einstellungen" + +msgid "manager.settings.pressSettings" +msgstr "Verlagseinstellungen" + +msgid "manager.settings.press" +msgstr "Verlag" + +msgid "manager.settings.publisher.identity" +msgstr "Identität des Verlegers" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Diese Felder werden zwar nicht grundsätzlich für die Verwendung von OMP, " +"aber zur Erzeugung gültiger ONIX-Metadaten benötigt. Bitte fügen Sie sie ein, wenn " +"Sie die ONIX-Funktionalität verwenden möchten." + +msgid "manager.settings.publisher" +msgstr "Verlagsname" + +msgid "manager.settings.location" +msgstr "Standort" + +msgid "manager.settings.publisherCode" +msgstr "Verlagscode" + +msgid "manager.settings.publisherCodeType" +msgstr "Verlagscode-Typ" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Dies ist kein gültiger Verleger Code Typ." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Einstellungen, die den Vertrieb betreffen (Benachrichtigung, Indizierung, " +"Archivierung, Bezahlung, Lesewerkzeuge)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Monographie herunterladen" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Seitenaufrufe Abstract" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Abstract der Monographie und Downloads" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Seitenaufrufe Hauptseite der Reihe" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Seitenaufrufe Hauptseite des Verlags" + +msgid "manager.tools" +msgstr "Werkzeuge" + +msgid "manager.tools.importExport" +msgstr "" +"Für den Datenimport/-export (Verlage, Monographien, Benutzer/innen) " +"spezifische Werkzeuge" + +msgid "manager.tools.statistics" +msgstr "" +"Werkzeuge um Berichte zu erzeugen, die sich auf Nutzungsstatistiken beziehen " +"(Anzeigen des Katalogs, Anzeigen von Buchabstracts, Buchdownloads)" + +msgid "manager.users.availableRoles" +msgstr "Vorhandene Funktionen" + +msgid "manager.users.currentRoles" +msgstr "Aktuelle Funktionen" + +msgid "manager.users.selectRole" +msgstr "Funktion auswählen" + +msgid "manager.people.allEnrolledUsers" +msgstr "In diesem Verlag registrierte Nutzer/innen" + +msgid "manager.people.allPresses" +msgstr "Alle Verlage" + +msgid "manager.people.allSiteUsers" +msgstr "Eine/n Benutzer/in dieser Website für diesen Verlag eintragen" + +msgid "manager.people.allUsers" +msgstr "Alle registrierten Benutzer/innen" + +msgid "manager.people.confirmRemove" +msgstr "" +"Möchten Sie diese/n Benutzer/in wirklich aus dem Verlag entfernen? Mit " +"dieser Aktion wird die Person aus allen Funktionen entfernt, denen sie " +"zugeordnet war." + +msgid "manager.people.enrollExistingUser" +msgstr "Eine/n bereits existierende/n Benutzer/in eintragen" + +msgid "manager.people.enrollSyncPress" +msgstr "Beim Verlag" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Wählen Sie eine/n Benutzer/in aus, deren/dessen Daten in einem anderen Konto " +"zusammengeführt werden sollen (wenn jemand z.B. zwei Konten hat). Das zuerst " +"ausgewählte Konto wird gelöscht, seine Beiträge, Aufgaben usw. werden dem " +"zweiten Konto zugeschrieben." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Wählen Sie ein Benutzer/innenkonto aus, auf das die bestehenden Autor/" +"innenschaften, Aufgaben etc. übertragen werden sollen." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Bei dieser Synchronisation werden alle Benutzer/innen, die in einer " +"bestimmten Funktion bei einem bestimmten Verlag eingetragen sind, in der " +"gleichen Funktion auch in diesem Verlag eingetragen. Damit ist möglich, eine " +"gemeinsame Benutzer/innengruppe (zum Beispiel Gutacher/innen) zwischen den " +"Verlagen zu synchronisieren." + +msgid "manager.people.confirmDisable" +msgstr "" +"Möchten Sie diese/n Benutzer/in deaktivieren? Der/die Benutzer/in wird sich " +"dann nicht mehr einloggen können.\n" +"\n" +"Sie können dem/der Benutzer/in den Grund für die Deaktivierung des Kontos " +"nennen (optional)." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Sie besitzen nicht die administrativen Rechte an diesem Benutzer/innenkonto. " +"Grund dafür kann sein, dass:\n" +"\t\t
      \n" +"\t\t\t
    • der/die Benutzer/in Website-Administrator/in ist
    • \n" +"\t\t\t
    • der/die Benutzer/in in einem Verlag aktiv ist, den Sie nicht " +"verwalten
    • \n" +"\t\t
    \n" +"\tDieser Task muss von einem Website-Administrator ausgeführt werden.\n" +"\t" + +msgid "manager.system" +msgstr "Systemeinstellungen" + +msgid "manager.system.archiving" +msgstr "Archivieren" + +msgid "manager.system.reviewForms" +msgstr "Gutachtenformulare" + +msgid "manager.system.readingTools" +msgstr "Lesewerkzeuge" + +msgid "manager.system.payments" +msgstr "Bezahlverfahren" + +msgid "user.authorization.pluginLevel" +msgstr "" +"Sie haben keine ausreichende Berechtigung, um dieses Plugin zu verwalten." + +msgid "manager.pressManagement" +msgstr "Verlagsverwaltung" + +msgid "manager.setup" +msgstr "Setup" + +msgid "manager.setup.aboutItemContent" +msgstr "Inhalt" + +msgid "manager.setup.addAboutItem" +msgstr "Navigationspunkt zu 'Über uns' hinzufügen" + +msgid "manager.setup.addChecklistItem" +msgstr "Punkt zur Checkliste hinzufügen" + +msgid "manager.setup.addItem" +msgstr "Punkt hinzufügen" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Punkt hinzufügen, der unter \"Über uns\" erscheint" + +msgid "manager.setup.addNavItem" +msgstr "Navigationspunkt hinzufügen" + +msgid "manager.setup.addSponsor" +msgstr "Sponsororganisation hinzufügen" + +msgid "manager.setup.announcements" +msgstr "Bekanntmachungen" + +msgid "manager.setup.announcements.success" +msgstr "Die Ankündigungs-Einstellungen wurden aktualisiert." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Mithilfe von Bekanntmachungen können Sie Leser/innen über Neuigkeiten " +"informieren und auf Veranstaltungen des Verlages hinweisen. Die " +"Bekanntmachungen erscheinen auf der Seite 'Bekanntmachungen'." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Zusätzliche Informationen" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Fügen Sie weitere Informationen hinzu, die den Leser/innen auf der Seite " +"'Bekanntmachungen' angezeigt werden sollen." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Erscheint in 'Über uns') " + +msgid "manager.setup.contextAbout" +msgstr "Über den Verlag" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Nennen Sie jegliche Informationen über Ihren Verlag, die für Leser/innen, " +"Autor/innen, oder Gutachter/innen von Interesse sein könnten. Dies könnte " +"Ihre Open Access Policy, den Fokus und die Reichweite des Verlags, " +"Sponsoren, und die Geschichte Ihres Verlags beinhalten." + +msgid "manager.setup.contextSummary" +msgstr "Beschreibung des Verlags" + +msgid "manager.setup.copyediting" +msgstr "Lektor/innen" + +msgid "manager.setup.copyeditInstructions" +msgstr "Lektoratsrichtlinien" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Die Lektoratsrichtlinien sind den Lektor/innen, Autor/innen und " +"Sektionsherausgeber/innen im Stadium 'Redaktionelle Bearbeitung' zugänglich. " +"Unten auf der Seite befindet sich eine Reihe an Standardvorgaben in HTML. " +"Sie können von der/dem Verlagsleiter/in an jeder Stelle verändert oder " +"ersetzt werden (in HTML oder im Klartext)." + +msgid "manager.setup.copyrightNotice" +msgstr "Copyright-Vermerk" + +msgid "manager.setup.coverage" +msgstr "Inhaltlicher Umfang" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Titelbild Max Höhe" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Titelbild Max Breite" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Bilder werden reduziert, wenn sie größer als erlaubt sind. Sie werden nie " +"vergrößert oder gestreckt um den Dimensionen angepasst zu werden." + +msgid "manager.setup.customizingTheLook" +msgstr "Schritt 5. Look & Feel anpassen" + +msgid "manager.setup.customTags" +msgstr "Benutzerdefinierte Tags" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Benutzerdefinierte HTML-Header-Tags, die auf jeder Seite in den Header " +"eingefügt werden (zum Beispiel META-Tags)." + +msgid "manager.setup.details" +msgstr "Angaben" + +msgid "manager.setup.details.description" +msgstr "Verlagsname, Ansprechpartner/in, Sponsoren und Suchmaschinen." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Verlagsleiter/innen registrieren alle Benutzer/innen. Sie sind zusammen mit " +"den Herausgeber/innen und Sektionsherausgeber/innen die einzigen, die " +"Gutachter/innen registrieren können." + +msgid "manager.setup.discipline" +msgstr "Wissenschafltliche Disziplinen und Teildisziplinen" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Dies ist nützlich, wenn der Verlag Disziplingrenzen überschreitet und/oder " +"Autor/innen interdisziplinäre Veröffentlichungen einreichen." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(z.B. Geschichte; Erziehungswissenschaften; Soziologie; Psychologie; " +"Kulturwissenschaften; Rechtswissenschaften)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Nennen Sie Beispiele für relevante akademische Disziplinen Ihres Verlages" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "" +"Fügen Sie ein Inhaltsverzeichnis für die aktuelle Monographie bei (falls " +"verfügbar)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Homepage-Inhalt" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Featured Bücher auf der Startseite anzeigen" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Featured Bücher" + +msgid "manager.setup.displayInSpotlight" +msgstr "Bücher im Spotlight auf der Startseite anzeigen" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Spotlight" + +msgid "manager.setup.displayNewReleases" +msgstr "Neuerscheinungen auf der Startseite anzeigen" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Neuerscheinungen" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Digital Object Identifier (DOIs) zu Monographien, Kapiteln, " +"Publikationsformaten, und Dateien zuweisen." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Bitte wählen Sie die Objekte aus, denen DOIs zugewiesen werden sollen. Die " +"meisten Verlage vergeben DOIs an Monographien/Kapitel, aber vielleicht " +"möchten Sie allen veröffentlichen Objekten DOIs zuweisen." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Standard-Patterns verwenden.
    %p.%m für Monographien
    %p.%m.c%c für " +"Kapitel
    %p.%m.%f für Publikationsformate
    %p.%m.%f.%s für Dateien." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "Im Schritt \"Lektorat\"" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Format / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Entscheidung des Herausgebers/der Herausgeberin" + +msgid "manager.setup.emailBounceAddress" +msgstr "E-Mail-Adresse für Unzustellbarkeitsnachrichten (Bounce Messages)" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Jede unzustellbare E-Mail führt zum Versand einer Fehlernachricht an diese E-" +"Mail-Adresse." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Um eine unzustellbare E-Mail an eine Bounce Adresse zu schicken, muss der " +"Administrator die allow_envelope_sender Option in der " +"Konfigurationsdatei der Seite aktivieren. Möglicherweise ist, wie in der OMP " +"Dokumentation beschrieben, die Konfiguration des Servers notwendig." + +msgid "manager.setup.emails" +msgstr "E-Mail-Identifizierung" + +msgid "manager.setup.emailSignature" +msgstr "Signatur" + +msgid "manager.setup.emailSignature.description" +msgstr "" +"Alle E-Mails, die vom System im Namen des Verlags verschickt werden, tragen " +"die folgende Signatur." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Ankündigungen freischalten" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Ankündigungen können veröffentlicht werden um Leser/innen über Neuigkeiten " +"und Events zu informieren. Veröffentlichte Ankündigungen erscheinen auf der " +"Seite \"Ankündigungen\"." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Auf der Homepage anzeigen" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Wie viele Ankündigungen auf der Homepage erscheinen. Lassen Sie das Feld " +"leer, um keine Ankündigungen anzeigen zu lassen." + +msgid "manager.setup.enablePressInstructions" +msgstr "" +"Diesen Verlag für das öffentliche Erscheinen auf der Website freischalten" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Benutzerdefinierte Kennungen werden verwendet, um veröffentlichte Titel zu " +"identifizieren." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Benutzerdefinierte Kennungen werden verwendet, um Fahnen (z.B. HTML- oder " +"PDF-Dateien) für veröffentlichte Bände zu identifizieren." + +msgid "manager.setup.enableUserRegistration" +msgstr "Benutzer/innen können sich beim Verlag registrieren." + +msgid "manager.setup.focusAndScope" +msgstr "Verlagsprofil" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Fügen Sie eine kurze Selbstdarstellung des Verlages (auf der Website unter " +"'Über uns' aufrufbar) ein, in der Sie Autor/innen, Leser/innen und " +"Bibliothekar/innen einen Eindruck von dem Spektrum an Monographien und " +"anderen Verlagsprodukten vermitteln, das der Verlag veröffentlichen wird." + +msgid "manager.setup.focusScope" +msgstr "Verlagsprofil" + +msgid "manager.setup.focusScopeDescription" +msgstr "BEISPIEL HTML-DATEN" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Für Autor/innen zur Indizierung ihres Werkes" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP setzt das Open Archives Initiative Protocol for Metadata Harvesting ein, " +"welches ein zukünftiger Standard für die weltweite Abfrage und Übertragung " +"von Metadaten ist. Die Autoren werden ein entsprechendes Template verwenden, " +"um die Metadaten für ihr Manuskript zu liefern. Der/die Verlagsleiter/in " +"sollte die Kategorien für die Indizierung auswählen und den Autoren " +"Beispiele zeigen, um ihnen beim Indizieren ihrer Werke zu helfen; die " +"Kategoriebegriffen werden dabei jeweils mit einem Semikolon voneinander " +"getrennt (zum Beispiel: Begriff 1; Begriff 2). Die Einträge sollten als " +"Beispiele kenntlich gemacht werden, in dem \"z.B.\" oder \"zum Beispiel\" " +"vorangestellt wird." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Die E-Mail-Adresse des Hauptansprechpartners wird benötigt." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Der Name des zentralen Ansprechpartners wird benötigt." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Bitte geben Sie die Zahl der Gutachter pro Manuskript an." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Die E-Mail des Supports wird benötigt." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Der Supportname wird benötigt." + +msgid "manager.setup.generalInformation" +msgstr "Allgemeine Informationen" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Schritt 1: Sich mit dem System vetraut machen" + +msgid "manager.setup.guidelines" +msgstr "Leitfaden" + +msgid "manager.setup.preparingWorkflow" +msgstr "Schritt 3: Den Workflow vorbereiten" + +msgid "manager.setup.identity" +msgstr "Verlagsidentität" + +msgid "manager.setup.information" +msgstr "Informationen" + +msgid "manager.setup.information.description" +msgstr "" +"Diese kurzen Beschreibungen des Verlages, gerichtet an Bibliothekar/innen, " +"interessierte Autor/innen und Leser/innen, erscheinen in der Sidebar unter " +"dem Punkt 'Informationen'." + +msgid "manager.setup.information.forAuthors" +msgstr "Für Autor/innen" + +msgid "manager.setup.information.forLibrarians" +msgstr "Für Bibliothekar/innen" + +msgid "manager.setup.information.forReaders" +msgstr "Für Leser/innen" + +msgid "manager.setup.information.success" +msgstr "Die Informationen über diesen Verlag wurden aktualisiert." + +msgid "manager.setup.institution" +msgstr "Institution" + +msgid "manager.setup.itemsPerPage" +msgstr "Elemente pro Seite" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Begrenzen Sie die Anzahl von Elementen (z.B. Einreichungen, Nutzer/innen, " +"oder Begutachtungszuordnungen), die in einer Liste angezeigt werden, bevor " +"weitere Elemente auf der nächsten Seite angezeigt werden." + +msgid "manager.setup.keyInfo" +msgstr "Hauptinformationen" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Fügen Sie eine kurze Beschreibung Ihres Verlags ein und identifizieren Sie " +"Redakteur/innen, Managing Directors und weitere Mitglieder des " +"redaktionellen Teams." + +msgid "manager.setup.labelName" +msgstr "Labelname" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Layouter/in" + +msgid "manager.setup.layoutInstructions" +msgstr "Layoutrichtlinien" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Für die Formatierung von Veröffentlichungen können Layoutrichtlinien " +"erstellt und unten entweder in HTML oder in Klartext eingefügt werden. Sie " +"stehen dem Layouter und dem Sektionsherausgeber auf der Editierseite jedes " +"Manuskripts zur Verfügung. (Da jeder Verlag seine eigenen Dateiformate, " +"bibliographischen Standards, Stylesheets etc. verwenden kann, sind keine " +"Standardlayoutrichtlinien vorgesehen.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Layoutvorlagen" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Als Richtlinie für Layouter/innen und Korrektor/innen können Sie unter " +"'Layout' Templates für jedes der Standardformate des Verlags (Monographien, " +"Buchbesprechungen etc.) in einem Dateiformat Ihrer Wahl (pdf, doc etc. ) " +"hochladen und sie mit Anmerkungen bezüglich der zu verwendenden Schriften, " +"Größen, Randbreiten etc. versehen." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Template-Datei" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Titel" + +msgid "manager.setup.lists" +msgstr "Listen" + +msgid "manager.setup.lists.success" +msgstr "Die Listen-Einstellungen wurden aktualisiert." + +msgid "manager.setup.look" +msgstr "Aussehen" + +msgid "manager.setup.look.description" +msgstr "" +"Homepage-Header, Inhalt, Verlags-Header, Footer, Navigationsleiste und " +"Stylesheet." + +msgid "manager.setup.settings" +msgstr "Einstellungen" + +msgid "manager.setup.management.description" +msgstr "" +"Zugriff und Sicherheit, Terminplanung, Bekanntmachungen, Lektorat, Layout " +"und Korrektorat." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Management der grundlegenden redaktionellen Schritte" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Setup des Verwaltungs- und Veröffentlichungsprozesses" + +msgid "manager.setup.managingThePress" +msgstr "Schritt 4: Einstellungen verwalten" + +msgid "manager.setup.masthead.success" +msgstr "Die Details des Impressums für diesen Verlag wurden aktualisiert." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Es wurde kein Bild hochgeladen." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Es wurde kein Stylesheet hochgeladen." + +msgid "manager.setup.note" +msgstr "Hinweis" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Wurde das Manuskript von mehreren Autor/innen gemeinschaftlich verfasst, " +"fügen Sie bitte in der Benachrichtungsmail an den Autor die E-Mail-Adressen " +"aller Autor/innen mit ein, nicht nur diejenige der Person, die das " +"Manuskript eingereicht hat." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Das Lektorat liegt in der Zuständigkeit von Herausgeber/in oder " +"Sektionsherausgeber/in." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Ein Herausgeber oder Sektionsherausgeber, dem das Manuskript zugewiesen " +"wurden, bearbeitet die HTML-, PDF (etc.)-Dateien." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Ein Herausgeber oder Sektionsherausgeber, dem das Manuskript zugewiesen " +"wurde, prüft die Fahnen." + +msgid "manager.setup.numPageLinks" +msgstr "Links" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Begrenzen Sie die Anzahl der angezeigten Links, die auf weitere Seiten einer " +"Liste hinweisen." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Zugriff auf die Verlagsinhalte" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN für digitale Medien" + +msgid "manager.setup.policies" +msgstr "Leitlinien" + +msgid "manager.setup.policies.description" +msgstr "" +"Fokus, Peer Review, Sektionen, Datenschutz, Sicherheit und zusätzliche " +"'Über ...'-Punkte.." + +msgid "manager.setup.privacyStatement.success" +msgstr "Die Datenschutzerklärung wurde aktualisiert." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Verschiedene Komponenten des Verlagsauftrittes können von dieser Seite aus " +"konfiguriert werden, z.B. Header- und Footerelemente, Style und Theme des " +"Verlags sowie die Gestaltung der Listen." + +msgid "manager.setup.pressDescription" +msgstr "Beschreibung des Verlags" + +msgid "manager.setup.pressDescription.description" +msgstr "" +"Fügen Sie hier bitte eine allgemeine Beschreibung des Verlages ein. Sie " +"erscheint auf der Verlagshomepage." + +msgid "manager.setup.aboutPress" +msgstr "Über den Verlag" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Nennen Sie jegliche Informationen über Ihren Verlag, die für Leser/innen, " +"Autor/innen, oder Gutachter/innen von Interesse sein könnten. Dies könnte " +"Ihre Open Access Policy, den Fokus und die Reichweite des Verlags, die " +"Copyright-Notiz, Sponsoren, die Geschichte Ihres Verlags und eine " +"Datenschutzerklärung beinhalten." + +msgid "manager.setup.pressArchiving" +msgstr "Archivierung" + +msgid "manager.setup.homepageContent" +msgstr "Inhalt" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Die Verlagshomepage besteht standardmäßig aus Links zur Navigation. " +"Zusätzlicher Inhalt kann zur Homepage hinzugefügt werden, indem eine oder " +"mehrere der folgenden Optionen verwendet werden. Sie erscheinen auf der " +"Homepage in der Reihenfolge, wie sie auf dieser Seite aufgeführt sind." + +msgid "manager.setup.pressHomepageContent" +msgstr "Inhalt" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Die Verlagshomepage besteht standardmäßig aus Links zur Navigation. " +"Zusätzlicher Inhalt kann zur Homepage hinzugefügt werden, indem eine oder " +"mehrere der folgenden Optionen verwendet werden. Sie erscheinen auf der " +"Homepage in der Reihenfolge, wie sie auf dieser Seite aufgeführt sind." + +msgid "manager.setup.contextInitials" +msgstr "Verlagsinitialen" + +msgid "manager.setup.selectCountry" +msgstr "" +"Wählen Sie entweder das Land aus, in dem dieser Verlag ansässig ist, oder " +"das Land der Mail-Adresse des Verlags oder Verlegers." + +msgid "manager.setup.layout" +msgstr "Verlagslayout" + +msgid "manager.setup.pageHeader" +msgstr "Header der Website" + +msgid "manager.setup.pageHeaderDescription" +msgstr "Konfiguration des Headers der Seite" + +msgid "manager.setup.pressPolicies" +msgstr "Schritt 2: Leitlinien des Verlags" + +msgid "manager.setup.pressSetup" +msgstr "Setup" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Das Setup wurde aktualisiert." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Ungültiges Stylesheetformat. Akzeptiert wird das Format css." + +msgid "manager.setup.pressTheme" +msgstr "Verlags-Theme" + +msgid "manager.setup.pressThumbnail" +msgstr "Verlags-Thumbnail" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Ein kleines Logo des Verlags, das in Listen von Verlagen verwendet werden " +"kann." + +msgid "manager.setup.contextTitle" +msgstr "Verlagsname" + +msgid "manager.setup.printIssn" +msgstr "ISSN der Printausgabe" + +msgid "manager.setup.proofingInstructions" +msgstr "Korrekturrichtlinien" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Die Korrekturrichtlinien werden Korrektor/innen, Autor/innen, Layouter/innen " +"und Bereichsherausgeber/innen im Stadium 'Redaktionelle Bearbeitung' " +"zugänglich gemacht. Unten finden Sie Standardrichtlinien in HTML, die von " +"dem/der Verlagsleiter/in bearbeitet oder ersetzt werden können (in HTML oder " +"im Klartext)." + +msgid "manager.setup.proofreading" +msgstr "Korrektoren" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Stelle den Layoutern Anleitungen zur Verfügung.." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Beiträge können zusammen veröffentlicht werden, als Teile einer Monographie " +"mit einem eigenen Inhaltsverzeichnis. Es ist aber auch möglich, sie einzeln " +"zu publizieren, indem man die Beiträge dem Inhaltsverzeichnis eines " +"\"laufenden\" Bandes hinzufügt. Informieren Sie Ihre Leser/innen unter 'Über " +"uns' darüber, welches Verfahren der Verlag verwenden wird und wie häufig " +"neue Publikationen erscheinen werden." + +msgid "manager.setup.publisher" +msgstr "Verlag" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Der Name der Organisation, die den Verlag führt, erscheint unter 'Über uns'." + +msgid "manager.setup.referenceLinking" +msgstr "" +"Reference Linking (Verknüpfung von Literaturzitaten mit elektronischen " +"Volltexten)" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Layoutrichtlinien für Reference Linking" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Benutzer/innen müssen registriert und eingeloggt sein, um Open-Access-" +"Inhalte sehen zu können." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Benutzer/innen müssen registriert und eingeloggt sein, um sich die " +"Verlagswebsite anschauen zu können." + +msgid "manager.setup.reviewGuidelines" +msgstr "Leitfäden für externe Begutachtungen" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Die Leitfäden für die externe Begutachtachtung geben den externen Gutachter/" +"innen Kriterien an die Hand, mit denen sie die Eignung des eingereichten " +"Manuskripts beurteilen können. Die Leitfäden können auch genaue Anweisungen " +"zur Erstellung eines gelungenen und aussagekräftigen Gutachens enthalten. " +"Den Gutachter/innen werden bei der Erstellung der Gutachten zwei offene " +"Textboxen angezeigt, die erste ist für Gutachten, die \"an Autor/in und " +"Herausgeber/in\" adressiert werden sollen, die zweite für Gutachten, die nur " +"\"an den/die Herausgeber/in\" gehen sollen. Alternativ dazu kann der " +"Verlagsleiter auch selbst Begutachtungsformulare unter 'Gutachen-Formulare' " +"anlegen. In allen Fällen haben die Herausgeber/innen aber immer die " +"Möglichkeit, die Gutachten in ihre Korrespondenz mit dem Autor/der Autorin " +"einzufügen." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Leitfäden für interne Begutachtungen" + +msgid "manager.setup.reviewOptions" +msgstr "Begutachtungsoptionen" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Automatisierte E-Mail-Erinnerungen" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Um diese Optionen zu aktivieren, muss der Administrator/die Administratorin " +"die scheduled_tasks-Option in der OMP-Konfigurationdatei freigeben. " +"Eventuell ist eine weitere Konfiguration des Servers nötig, um diese " +"Funktionalität zu unterstützen (dies ist unter Umständen nicht auf allen " +"Servern möglich). Nähere Informationen dazu finden Sie in der OMP-" +"Dokumentation." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Nach Abschluss der Begutachtung bewerten die Herausgeber/innen die Gutachter/" +"innen auf einer Fünf-Punkte-Qualitätsskala bewerten." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Dateizugriff einschränken" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Die Gutachter/innen haben erst dann Zugang zu den Manuskriptdateien, wenn " +"sie der Begutachtung zugestimmt haben." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Zugang für Gutachter/innen" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "One-click Zugang für Gutachter/innen" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Gutachter/innen kann ein sicherer Link in der E-Mail-Einladung geschickt " +"werden, welcher den Zugang zur Begutachtung ohne Login ermöglicht. Der " +"Zugriff auf weitere Seiten benötigt einen Login." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" +"Einen sicheren Link in die E-Mail-Einladung an Gutachter/innen einfügen." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Gutachterbewertungen" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Gutachtererinnerungen" + +msgid "manager.setup.reviewPolicy" +msgstr "Begutachtungsleitlinien" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Fügen Sie eine kurze Beschreibung (50-300 Zeichen) des Verlags ein, die " +"Suchmaschinen in der Suchergebnisliste anzeigen können." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Suchmaschinen-Indizierung" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Helfen Sie Suchmaschinen wie Google dabei, Ihre Seite zu finden und " +"anzuzeigen. Erstellen Sie dafür eine sitemap." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Die Suchmaschinenindizierung-Einstellungen wurden aktualisiert." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Sektionen und Sektionsherausgeber/innen" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Wurden keine Sektionen hinzugefügt, werden die Titel standardmäßig der " +"Sektion Monographien zugeordnet.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Um Sektionen anzulegen oder zu verändern (z.B. Monographien, " +"Buchrezensionen), gehen Sie bitte zu 'Sektionsmanagement'.

    Autor/" +"innen, die eine Publikation beim Verlag einreichen, werden es der " +"entsprechenden Sektion zuordnen." + +msgid "manager.setup.securitySettings" +msgstr "Zugangs- und Sicherheitseinstellungen" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Andere auf die Sicherheit der Website und auf deren Zugang bezogene Optionen " +"können von der Seite Zugang und Sicherheit aus konfiguriert werden." + +msgid "manager.setup.selectEditorDescription" +msgstr "" +"Leitende/r Herausgeber/in zur Betreuung des gesamten Publikationsprozesses." + +msgid "manager.setup.selectSectionDescription" +msgstr "Verlagssektion, für die der Titel vorgesehen ist." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Zeige immer Links zu den Druckfahnen und weise auf Zugangsbeschränkungen hin." + +msgid "manager.setup.siteAccess.view" +msgstr "Seitenzugang" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Monographieninhalte ansehen" + +msgid "manager.setup.stepsToPressSite" +msgstr "Fünf Schritte zur Verlagswebsite" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(z.B. Photosynthese; Schwarze Löcher; Vier-Farben-Satz; Bayes'scher " +"Wahrscheinlichkeitsbegriff)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Schlüsselwörter" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Geben Sie Beispiele für Schlüsselwörter oder Themengebiete als Orientierung " +"für die Autoren" + +msgid "manager.setup.submissionGuidelines" +msgstr "Richtlinien für die Einreichung" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Dieser Punkt der Checkliste muss bestätigt sein." + +msgid "manager.setup.workflow" +msgstr "Workflow" + +msgid "manager.setup.submissions.description" +msgstr "" +"Leitfaden für Autoren, Copyright und Indizierung (einschließlich " +"Registrierung)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(z.B. historische Untersuchung; quasi-experimentelle Studie; literarische " +"Analyse; Umfrage/Interview)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Typ (Methode/Ansatz)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Nennen Sie Beispiele für relevante Forschungsarten, -methoden und -ansätze " +"auf diesem Feld" + +msgid "manager.setup.useCopyeditors" +msgstr "Jedem Manuskript wird ein/e Lektor/in zugewiesen." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Ein Redaktioneller Beirat/Gutachterbeirat wird vom Verlag eingesetzt." + +msgid "manager.setup.useImageTitle" +msgstr "Titelbild" + +msgid "manager.setup.useStyleSheet" +msgstr "Formatvorlage des Verlags" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Aufgabe des Layouters ist es, HTML-, PDF- und andere Dateien für die " +"elektronische Veröffentlichtung vorzubereiten." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Ein/e Korrektor/in wird bestimmt, um (zusammen mit den Autoren/innen) die " +"Fahnen im letzten Schritt vor der Veröffentlichung gegenzulesen." + +msgid "manager.setup.userRegistration" +msgstr "Benutzerregistrierung" + +msgid "manager.setup.useTextTitle" +msgstr "Seitentitel der Website" + +msgid "manager.setup.volumePerYear" +msgstr "Bände pro Jahr" + +msgid "manager.setup.publicationFormat.code" +msgstr "Format" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Bitte wählen Sie ein Format aus." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Sie müssen diesem Format einen Namen zuweisen." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Ist es ein physisches (nicht-digitales) Format?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Dieses Format kann nicht gelöscht werden, da zurzeit ein Buch Ihres Verlages " +"in diesem Format erscheint." + +msgid "manager.setup.newPublicationFormat" +msgstr "Neues Format" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Um ein neues Format anzulegen, füllen Sie bitte das unten stehende Formular " +"aus und klicken dann auf den Button 'Erstellen'." + +msgid "manager.setup.genresDescription" +msgstr "" +"Diese Genres bilden einen Bestandteil des Dateinamen. Beim Hochladeprozess " +"werden die Manuskriptdateien in einem Pull-down-Menü angezeigt. Genres, die " +"mit ## gekennzeichnet sind, können sowohl mit dem ganzen Buch 99Z oder mit " +"einem bestimmten Kapitel über Angabe einer Nummer (z.B. 02) verbunden werden." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Dieser Verlag nimmt derzeit keine Einreichungen an. Gehen Sie zu den " +"Workflow-Einstellungen um Einreichungen zu erlauben." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Verbieten Sie Nutzer/innen, neue Einreichungen an den Verlag zu machen. " +"Einreichungen für einzelne Reihen können auf der Reihen-Seite der Verlagseinstellungen verhindert werden." + +msgid "manager.setup.genres" +msgstr "Genres" + +msgid "manager.setup.newGenre" +msgstr "Neues Genre" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Um ein neues Genre anzulegen, füllen Sie die unten stehenden Felder aus und " +"klicken Sie auf 'Erstellen'." + +msgid "manager.setup.deleteSelected" +msgstr "Ausgewählte Elemente löschen" + +msgid "manager.setup.restoreDefaults" +msgstr "Grundeinstellungen wiederherstellen" + +msgid "manager.setup.prospectus" +msgstr "Leitfaden für das Exposé" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Der Leitfaden für Exposés soll dem Autor/der Autorin dabei helfen soll, die " +"eingereichten Materialien so zu beschreiben, dass der Verlag daraus den Wert " +"der Einreichung erkennen kann. Der Verlag stellt dazu ein vorbereitetes " +"Exposé als Orientierungshilfe zur Verfügung. Das Exposé kann eine Vielzahl " +"verschiedener Punkte enthalten - vom Marktpotenzial bis zum theoretischen " +"Wert; in jedem Fall sollte der Verlag einen Exposéleitfaden erstellen, der " +"die eigene Verlagsagenda ergänzt." + +msgid "manager.setup.submitToCategories" +msgstr "Einreichung in einer Kategorie zulassen" + +msgid "manager.setup.submitToSeries" +msgstr "Einreichung in einer Reihe zulassen" + +msgid "manager.setup.issnDescription" +msgstr "" +"Die ISSN (International Standard Serial Number) ist eine aus acht Ziffern " +"bestehende Nummer, die periodisch erscheinende Veröffentlichungen - dazu " +"zählen auch elektronische Zeitschriften (E-Journals) - als solche " +"identifiziert. Sie wird von einem weltweit arbeitenden Netzwerk von " +"Nationalzentren verwaltet. Die Koordinierung erfolgt über das ISSN " +"International Centre mit Sitz in Paris, unterstützt von der Unesco und der " +"französischen Regierung. ISSN können jederzeit über ISSN web site bezogen werden." + +msgid "manager.setup.currentFormats" +msgstr "Aktuelle Formate" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Kategorien und Reihen" + +msgid "manager.setup.categories.description" +msgstr "" +"Sie können eine Liste von Kategorien anlegen, um Ihre Publikationen besser " +"organisieren zu können. Kategorien sind Gruppierungen von Büchern zu " +"bestimmten Sachbegriffen, zum Beispiel zu Wirtschaft; Literatur; Poesie und " +"so weiter. Kategorien können 'Eltern'-Kategorien untergeordnet werden: Zum " +"Beispiel kann die Elternkategorie 'Wirtschaft\" die beiden Individuen " +"'Mikroökonomie' und 'Makroökonomie' mit einschließen. Besucher der Website " +"können nach Kategorien suchen und in den Kategorien browsen." + +msgid "manager.setup.series.description" +msgstr "" +"Sie können eine unbegrenzte Anzahl von Reihen anlegen. Eine Reihe stellt " +"eine Zusammenstellung von Büchern zu einem bestimmten Thema dar. " +"Normalerweise wird das Thema oder der Gegenstand der Reihe von ein oder zwei " +"Mitgliedern einer Fakultät vorgeschlagen. Sie betreuen auch die Reihe und " +"überwachen deren Qualität. Besucher der Website können nach Reihen suchen " +"und browsen." + +msgid "manager.setup.reviewForms" +msgstr "Gutachtenformulare" + +msgid "manager.setup.roleType" +msgstr "Funktionstyp" + +msgid "manager.setup.authorRoles" +msgstr "Funktionen von \"Autor/in\"" + +msgid "manager.setup.managerialRoles" +msgstr "Funktionen von \"Manager/in\"" + +msgid "manager.setup.availableRoles" +msgstr "Verfügbare Funktionen" + +msgid "manager.setup.currentRoles" +msgstr "Aktuelle Funktionen" + +msgid "manager.setup.internalReviewRoles" +msgstr "Funktionen von \"Interne/r Gutachter/in\"" + +msgid "manager.setup.masthead" +msgstr "Impressum" + +msgid "manager.setup.editorialTeam" +msgstr "Herausgeber/innen" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Das Impressum sollte ein Liste der Herausgeber/innen und Geschäftsführer/" +"innen sowie anderer Personen enthalten, die mit dem Verlag in Verbindung " +"stehen. Hier eingegebene Informationen erscheinen unter 'Über uns'." + +msgid "manager.setup.files" +msgstr "Dateien" + +msgid "manager.setup.productionTemplates" +msgstr "Vorlagen für die Herstellung" + +msgid "manager.files.note" +msgstr "" +"Hinweis: Der Dateimanager ist ein erweitertes Feature, das es erlaubt, dem " +"Verlag zugeordnete Dateien und Verzeichnisse direkt anzuschauen und zu " +"ändern." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

    Vorgeschlagener Text für den Creative Commons Copyright-Vermerk

    \n" +"

    Vorgeschlagene Leitlinie für Verlage, die Open Access anbieten

    \n" +"Autor/innen, die in diesem Verlag veröffentlichen, stimmen den folgenden " +"Bedingungen zu:\n" +"
      \n" +"\t
    1. Autor/innen behalten das Urheberrecht an dem Werk und gewähren dem " +"Verlag das Recht zu dessen Erstveröffentlichung. Parallel dazu wird das Werk " +"unter eine Creative Commons Attribution License gestellt. Diese erlaubt " +"es anderen, das Werk weiterzuverbreiten, unter der Bedingung, dass der Autor/" +"die Autorin benannt und auf die Erstveröffentlichung in diesem Verlag " +"hingewiesen wird.
    2. \n" +"\t
    3. Autor/innen können weitere, gesonderte Verträge für eine nicht-" +"exklusive Verbreitung einer vom Verlag veröffentlichten Version des Buches " +"abschließen (sie können es z. B auf einem institutionellen Repositorium " +"einstellen oder in einem Buch veröffentlichen), jedoch unter Hinweis auf die " +"Erstveröffentlichung in diesem Verlag.
    4. \n" +"\t
    5. Autor/innen ist es erlaubt und werden dazu ermutigt, ihr Werk bereits " +"online zu stellen, bevor es beim Verlag eingereicht oder veröffentlicht " +"wurde (z.B. auf institutionellen Repositorien oder auf ihrer Website), da " +"dies zu einem produktiven Austausch einerseits als auch zu einer früheren " +"Zitierung und einer höheren Zitierhäufigkeit andererseits führen kann. " +"(Siehe Der Effekt von Open Access).
    6. \n" +"
    \n" +"\n" +"

    Vorgeschlagene Leitlinie für Verlage, die eine freie Zugänglichkeit nach " +"einem festgesetzten Verwertungszeitraum anbieten (Delayed Open Access)

    \n" +"Autor/innen, die bei diesem Verlag publizieren, stimmen folgenden " +"Bedingungen zu:\n" +"
      \n" +"\t
    1. Autor/innen behalten das Urheberrecht an dem Werk und gewähren dem " +"Verlag das Recht zu dessen Erstveröffentlichung. Das Werk wird [Zeitraum " +"angeben] nach der Veröffentlichung parallel unter einer Creative Commons " +"Attribution License lizenziert, die es anderen erlaubt, das Werk " +"weiterzuverbreiten, unter der Bedingung, dass der Autor/die Autorin benannt " +"und auf die Erstveröffentlichung in diesem Verlag hingewiesen wird.
    2. \n" +"\t
    3. Autor/innen können weitere, gesonderte Verträge für eine nicht-" +"exklusive Verbreitung einer vom Verlag veröffentlichten Version des Buches " +"abschließen (sie können es z.B auf einem institutionellen Repositorium " +"einstellen oder in einem Buch veröffentlichen), jedoch muss auf die " +"Erstveröffentlichung in diesem Verlag hingewiesen werden.
    4. \n" +"\t
    5. Autor/innen dürfen gerne ihr Werk bereits online stellen, bevor es " +"beim Verlag eingereicht oder veröffentlicht wurde (z.B. auf institutionellen " +"Repositorien oder auf ihren Websites). Dies dient nicht nur dem produktiven " +"Austausch untereinander, sondern kann auch zu einer früheren Zitierung und " +"einer höheren Zitierhäufigkeit des veröffentlichten Werks beitragen. (Siehe " +"Der Effekt von Open Access).
    6. \n" +"
    " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Schritte: Warteschlange > Begutachtung > Redaktionelle Bearbeitung " +"> Inhaltsverzeichnis.

    \n" +"Wählen Sie ein Modell, um diese Aspekte des Publikationsprozesses zu " +"steuern. (Um leitende Herausgeber/innen oder Serienherausgeber/innen zu " +"bestimmen, gehen Sie in der Verlagsverwaltung zu 'Herausgeber/innen'.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

    Um Leser/innen das Auffinden der Onlineversion eines zitierten Werkes zu " +"erleichtern, können Sie:

    \n" +"\n" +"
      \n" +"\t
    1. Ein Lesewerkzeug hinzufügen:

      Der Verlagsleiter " +"kann den Link \"Finde Literaturnachweise\" zu den Lesewerkzeugen (sie stehen " +"in der Sidebar neben dem veröffentlichten Werk) hinzufügen. Durch Anklicken " +"des Links öffnet sich ein Fenster, in dem Leser/innen einen zitierten Titel " +"einfügen und anschließend in vorausgewählten wissenschaftlichen Datenbanken " +"danach suchen können.

    2. \n" +"\t
    3. Links in die Literaturnachweise einbinden:

      Der/die " +"Layouter/in kann einen Link zu online aufrufbaren Zitationen hinzufügen. Die " +"folgenden Instruktionen sind dabei unter Umständen hilfreich (Bearbeitung " +"erlaubt).

    4. \n" +"
    " + +msgid "manager.publication.library" +msgstr "Verlagsdokumentenarchiv" + +msgid "manager.setup.resetPermissions" +msgstr "Rechte für Monographien zurücksetzen" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Sind Sie sicher, dass Sie die bereits vergebenen Rechte für Monographien " +"zurücksetzen wollen?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Copyright-Angaben und Lizenzinformationen werden dauerhaft mit dem " +"veröffentlichten Inhalt verknüpft, damit diese Daten sich nicht ändern, wenn " +"ein Verlag die Regeln für neue Einreichungen ändert. Um vergebene Rechte für " +"bereits veröffentlichte Inhalte zurückzusetzen, nutzen Sie den Knopf unten." + +msgid "manager.setup.resetPermissions.success" +msgstr "Die Berechtigungen für Monographien wurden erfolgreich zurückgesetzt." + +msgid "grid.genres.title.short" +msgstr "Komponenten" + +msgid "grid.genres.title" +msgstr "Monographie-Komponenten" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Senden Sie eine Kopie an den in den Verlagseinstellungen identifizierten " +"Hauptkontakt." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Der Reihenpfad darf nur Buchstaben und Zahlen beinhalten." + +msgid "grid.series.pathExists" +msgstr "" +"Der Reihenpfad existiert bereits. Bitte fügen Sie einen neuen Pfad ein." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Reihe auswählen" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" +"Bitte wählen Sie die Reihe aus, auf die dieses Menüelement verlinken soll." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Kategorie auswählen" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" +"Bitte wählen Sie die Kategorie aus, auf die dieses Menüelement verlinken " +"soll." + +msgid "grid.series.urlWillBe" +msgstr "Die URL der Reihe wird {$sampleUrl} sein" + +msgid "stats.contextStats" +msgstr "Verlagsstatistik" + +msgid "stats.context.tooltip.text" +msgstr "Anzahl der Besucher/innen der Verlags- und Katalog-Startseite." + +msgid "stats.context.tooltip.label" +msgstr "Über Verlagsstatistken" + +msgid "stats.context.downloadReport.description" +msgstr "" +"Laden Sie eine CSV/Excel-Datei mit Nutzungsstatistiken für diesen Verlag " +"herunter, die den folgenden Parametern entsprechen." + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "Anzahl der Anzeigen der Verlags- und Katalog-Startseite." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Verlag herunterladen" + +msgid "stats.publications.downloadReport.description" +msgstr "" +"Laden Sie eine CSV/Excel-Datei mit Nutzungsstatistiken für Monographien " +"herunter, die den folgenden Parametern entsprechen." + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Monographien herunterladen" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "Anzahl der Abstract-Besuche und Datei-Downloads für jede Monographie." + +msgid "stats.publicationStats" +msgstr "Monographie Statistiken" + +msgid "stats.publications.details" +msgstr "Monographie Details" + +msgid "stats.publications.none" +msgstr "" +"Es konnten keine Monographien gefunden werden, deren Nutzungstatistiken mit " +"diesen Parametern übereinstimmen." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Gesamte Katalogansichten, nach Datum" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Gesamte Dateiansichten, nach Datum" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} von {$total} Monographien" + +msgid "stats.publications.abstracts" +msgstr "Katalogeinträge" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Keine Objekte ausgewählt." + +msgid "plugins.importexport.common.error.validation" +msgstr "Ausgewählte Objekte konnten nicht konvertiert werden." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Ungültige XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Einreichungen exportieren" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Eine Kopie der Einreichungsbestätigung an den Hauptkontakt des Verlags " +"schicken." + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"Für diesen Verlag wurde kein Hauptkontakt definiert. Sie können einen " +"Hauptkontakt in den Verlagseinstellungen einfügen." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Die angegebenen Objekte konnten nicht gefunden werden." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "Der/die angegebene Nutzer/in, \"{$userName}\", existiert nicht." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Das Parsen der Publikationsformate hat nicht funktioniert" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Das Parsen der Kapitel hat nicht funktioniert" + +msgid "emailTemplate.variable.context.contextName" +msgstr "Der Name des Verlags" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "Die URL der Verlagshomepage" + +msgid "emailTemplate.variable.context.contactName" +msgstr "Der Name des Hauptkontakts des Verlags" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "Die E-Mail-Signatur des Verlags für automatisierte E-Mails" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "Die E-Mail-Adresse des Hauptkontakts des Verlags" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "Der Name des Zahlungstyps" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Der Zahlungsbetrag" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "Die Währung des Zahlungsbetrags, z.B. USD" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Der Name der Website, wenn mehr als ein Verlag gehostet wird" + +msgid "mailable.validateEmailContext.name" +msgstr "E-Mail überprüfen (Verlagsregistrierung)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Diese E-Mail wird automatisch an neue Nutzer/innen gesendet wenn sie sich " +"mit einem Verlag registrieren, der die Überprüfung der E-Mail Adresse " +"verlangt." + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "DOIs" + +msgid "doi.description" +msgstr "" +"Dieses Plugin ermöglicht die Zuweisung eines Digital Object Identifiers " +"(DOI) zu einem Publikationsformat in OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Bitte konfigurieren Sie das DOI-Plugin, damit Sie in OMP DOIs verwalten und " +"benutzen können:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Bitte wählen Sie die Publikationsobjekte aus, denen Digital Object " +"Identifier (DOI) zugewiesen werden sollen:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monographien" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Kapitel" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Publikationsformate" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Dateien" + +msgid "doi.manager.settings.doiPrefix" +msgstr "DOI-Präfix" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "Das DOI-Präfix ist obligatorisch und muss die Form 10.xxxx haben." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Geben Sie für jeden Publikationstyp ein benutzerdefiniertes Suffix-Muster " +"ein. Das benutzerdefinierte Suffix-Muster kann die folgenden Symbole " +"verwenden, um das Suffix zu erzeugen:

    %p " +"Verlagsinitialien
    %m Monographie ID
    %cKapitel ID
    %f Publikationsformat ID
    %s Datei ID
    %x Individuelle Kennung

    Beachten Sie, " +"dass benutzerdefinierte Suffix-Muster oft zu Problemen bei der Erstellung " +"und Hinterlegung von DOIs führen. Wenn Sie ein benutzerdefiniertes Suffix-" +"Muster verwenden, prüfen Sie sorgfältig, ob die Herausgeber DOIs erzeugen " +"und bei einer Registrierungsagentur wie Crossref hinterlegen können. " + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Beispiel: press%ppub%f würde eine DOI wie 10.1234/pressESPpub100 kreieren" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "für Monographien" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "für Kapitel" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "für Publikationsformate" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "für Dateien" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Bitte tragen Sie das DOI-Suffix Schema für Monographien ein." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Bitte tragen Sie das DOI-Suffix Schema für Kapitel ein." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Bitte tragen Sie das DOI-Suffix Schema für Publikationsformate ein." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Bitte tragen Sie das DOI-Suffix Schema für Dateien ein." + +msgid "doi.manager.settings.doiReassign" +msgstr "DOIs neu zuweisen" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Wenn Sie Ihre DOI-Konfiguration ändern, werden bereits zugewiesene DOIs " +"davon nicht beeinflusst. Sobald die Konfiguration gespeichert ist, können " +"Sie diesen Button verwenden um alle bestehenden DOIs zu entfernen und im " +"Anschluss die neuen Einstellungen auf alle existierenden Objekte anzuwenden." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Sind Sie sicher, dass Sie alle existierenden DOIs entfernen möchten?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "Die DOI muss mit {$prefix} beginnen." + +msgid "doi.editor.doi.assignDoi" +msgstr "Zuweisen" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "Monographie" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "Kapitel" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "Publikationsformat" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "Datei" + +msgid "doi.editor.customSuffixMissing" +msgstr "Die DOI kann nicht zugewiesen werden, da das Custom-Suffix fehlt." + +msgid "doi.editor.missingParts" +msgstr "" +"Sie können keine DOI generieren, da einem oder mehreren Teilen des DOI-" +"Schema Daten fehlen." + +msgid "doi.editor.patternNotResolved" +msgstr "" +"Die DOI kann nicht zugewiesen werden, da sie ein ungelöstes Schema " +"beinhaltet." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Dies ist eine Vorschau der DOI. Klicken Sie die Checkbox an und speichern " +"das Formular um die DOI zuzuweisen." + +msgid "doi.editor.assigned" +msgstr "Die DOI wurde dem Objekt vom Typ {$pubObjectType} zugewiesen." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Der angegebene DOI-Suffix wird bereits für ein anderes veröffentlichtes " +"Element benutzt. Bitte vergeben Sie einen eindeutigen DOI-Suffix für jedes " +"Element." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Entfernen" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "" +"Sind Sie sicher, dass Sie die bereits bestehende DOI entfernen möchten?" + +msgid "doi.editor.assignDoi" +msgstr "Die DOI {$pubId} dem Objekt vom Typ {$pubObjectType} zuweisen" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "Die DOI kann nicht zugewiesen werden, da das Custom-Suffix fehlt." + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"Die DOI {$pubId} kann nicht zugewiesen werden, da sie ein ungelöstes Schema " +"beinhaltet." + +msgid "doi.editor.assignDoi.assigned" +msgstr "Die DOI {$pubId} wurde zugewiesen." + +msgid "doi.editor.missingPrefix" +msgstr "Die DOI muss mit {$doiPrefix} beginnen." + +msgid "doi.editor.preview.publication" +msgstr "Die DOI für diese Publikation wird {$doi} sein." + +msgid "doi.editor.preview.publication.none" +msgstr "Dieser Publikation wurde keine DOI zugewiesen." + +msgid "doi.editor.preview.chapters" +msgstr "Kapitel: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Publikationsformat: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Datei: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Element" + +msgid "doi.manager.submissionDois" +msgstr "Monographien-DOIs" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Diese E-Mail benachrichtigt Autor/innen, dass ihre Einreichung in die " +"interne Begutachtung geschickt wird." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Diese E-Mail benachrichtigt Autor/innen, dass ihre Einreichung vor der " +"Begutachtung abgelehnt wird, da sie die Anforderungen für Veröffentlichungen " +"in diesem Verlag nicht erfüllt." + +msgid "manager.institutions.noContext" +msgstr "Der Verlag dieser Institution konnte nicht gefunden werden." + +msgid "manager.manageEmails.description" +msgstr "" +"Nachrichten bearbeiten, die in E-Mails von diesem Verlag verschickt werden." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Zur internen Begutachtung geschickt" + +msgid "mailable.indexRequest.name" +msgstr "Index angefordert" + +msgid "mailable.indexComplete.name" +msgstr "Index vollständig" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Neue Version kreiert" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" +"Diese E-Mail benachrichtigt automatisch zugewiesene Redakteur/innen, wenn " +"eine neue Version der Einreichung kreiert wird." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"Diese E-Mail wird an Verlagsmanager/innen geschickt, wenn ein neuer Beitrag " +"eingereicht wurde und keine Redakteur/innen zugewiesen sind." + +#~ msgid "manager.people.existingUserRequired" +#~ msgstr "Sie müssen eine/n existierende/n Benutzer/in angeben." + +#~ msgid "manager.setup.addContributor" +#~ msgstr "Beiträger/in hinzufügen" + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "DOI-Präfix" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "Das DOI (Digital Object Identifier)-Präfix wird von CrossRef vergeben und hat das Format " +#~ "10.xxxx (z.B. 10.1234)." + +#~ msgid "manager.setup.emailSignatureDescription" +#~ msgstr "" +#~ "Die folgende Signatur wird am Ende der vorbereiteten E-Mails stehen, die " +#~ "vom System im Namen des Verlages versendet werden. Den Inhaltsteil " +#~ "(Textteil) dieser E-Mails können Sie unten bearbeiten." + +#~ msgid "manager.setup.internalReviewGuidelinesDescription" +#~ msgstr "" +#~ "Wie die Leitfäden für die externe Begutachtung liefern diese Anleitungen " +#~ "den Gutachter/innen Informationen zu Bewertung des eingereichten " +#~ "Manuskripts. Diese Anleitungen sind für interne Gutachter/innen, die " +#~ "generell den Begutachtungsprozess verlagsintern durchführen." + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "" +"Ein Datensatz des Verkaufsrechts wurde übersprungen, weil ihm weder ein Land " +"noch eine Region zugewiesen wurde." + +msgid "manager.sections.alertDelete" +msgstr "" +"Bevor diese Reihe entfernt werden kann, müssen Sie Beiträge aus dieser Reihe " +"in andere Reihen verschieben." + +msgid "mailable.layoutComplete.name" +msgstr "Fahnen vollständig" + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "Adresse des Verlags" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "Link zur Statistikseite der Bücher" + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Diese E-Mail wird monatlich automatisch an Redakteur/innen und " +"Verlagsmanager/innen versandt, um ihnen einen Überblick über den " +"Systemzustand zu geben." diff --git a/locale/de/submission.po b/locale/de/submission.po new file mode 100644 index 00000000000..13964cf318d --- /dev/null +++ b/locale/de/submission.po @@ -0,0 +1,652 @@ +# Pia Piontkowitz , 2021, 2022, 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2023-04-26 17:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Komponente auswählen" + +msgid "submission.title" +msgstr "Buchtitel" + +msgid "submission.select" +msgstr "Wählen Sie ein Manuskript aus" + +msgid "submission.synopsis" +msgstr "Über dieses Buch" + +msgid "submission.workflowType" +msgstr "Art des Buches" + +msgid "submission.workflowType.description" +msgstr "" +"Eine Monographie ist ein Werk, das von einer Autorin/einem Autor oder " +"mehreren Autor/innen gemeinsam verfasst worden ist. Ein Sammelband besteht " +"aus mehreren Kapiteln jeweils unterschiedlicher Autor/innen (detaillierte " +"Kapitelangaben sind erst zu einem späteren Zeitpunkt im " +"Veröffentlichungsprozess zu machen)." + +msgid "submission.workflowType.editedVolume.label" +msgstr "Sammelband" + +msgid "submission.workflowType.editedVolume" +msgstr "Sammelband: Autor/innen sind mit dem eigenen Kapitel assoziiert." + +msgid "submission.workflowType.authoredWork" +msgstr "Monographie: Autor/innen sind mit dem Buch als Ganzes assoziiert." + +msgid "submission.workflowType.change" +msgstr "Ändern" + +msgid "submission.editorName" +msgstr "{$editorName} (Hrsg)" + +msgid "submission.monograph" +msgstr "Monographie" + +msgid "submission.published" +msgstr "Druckreif" + +msgid "submission.fairCopy" +msgstr "Reinschrift" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Rechte" + +msgid "submission.chapter" +msgstr "Kapitel" + +msgid "submission.chapters" +msgstr "Kapitel" + +msgid "submission.chapter.addChapter" +msgstr "Kapitel hinzufügen" + +msgid "submission.chapter.editChapter" +msgstr "Kapitel bearbeiten" + +msgid "submission.chapter.pages" +msgstr "Seiten" + +msgid "submission.copyedit" +msgstr "Lektorat" + +msgid "submission.publicationFormats" +msgstr "Formate" + +msgid "submission.proofs" +msgstr "Proofs" + +msgid "submission.download" +msgstr "Download" + +msgid "submission.sharing" +msgstr "Teilen" + +msgid "manuscript.submission" +msgstr "Manuskript einreichen" + +msgid "submission.round" +msgstr "Durchgang {$round}" + +msgid "submissions.queuedReview" +msgstr "In Begutachtung" + +msgid "manuscript.submissions" +msgstr "Manuskripte einreichen" + +msgid "submission.metadata" +msgstr "Metadaten" + +msgid "submission.supportingAgencies" +msgstr "Träger" + +msgid "grid.action.addChapter" +msgstr "Ein neues Kapitel erzeugen" + +msgid "grid.action.editChapter" +msgstr "Kapitel bearbeiten" + +msgid "grid.action.deleteChapter" +msgstr "Kapitel löschen" + +msgid "submission.submit" +msgstr "Ein neues Buchmanuskript einreichen" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Ein neues Buchmanuskript einreichen bei" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Ein neues Manuskript bei {$contextName} einreichen" + +msgid "submission.submit.upload" +msgstr "Einreichung hochladen" + +msgid "author.volumeEditor" +msgstr "Band Herausgeber/in" + +msgid "author.isVolumeEditor" +msgstr "Diese Person als Herausgeber/in des Bandes identifizieren." + +msgid "submission.submit.seriesPosition" +msgstr "Position innerhalb der Reihe (z.B. Band 2)" + +msgid "submission.submit.seriesPosition.description" +msgstr "Beispiel: Buch 2, Band 2" + +msgid "submission.submit.privacyStatement" +msgstr "Datenschutzerklärung" + +msgid "submission.submit.contributorRole" +msgstr "Funktion des Beiträgers/der Beiträgerin" + +msgid "submission.submit.submissionFile" +msgstr "Manuskriptdatei" + +msgid "submission.submit.prepare" +msgstr "Vorbereiten" + +msgid "submission.submit.catalog" +msgstr "Katalog" + +msgid "submission.submit.metadata" +msgstr "Metadaten" + +msgid "submission.submit.finishingUp" +msgstr "Fertigstellen" + +msgid "submission.submit.confirmation" +msgstr "Bestätigung" + +msgid "submission.submit.nextSteps" +msgstr "Die nächsten Schritte" + +msgid "submission.submit.coverNote" +msgstr "Vermerk für den/die Herausgeber/in" + +msgid "submission.submit.generalInformation" +msgstr "Allgemeine Informationen" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Der Verlag wurde über die Einsendung Ihres Manuskriptes informiert. Für Ihre " +"Unterlagen haben wir Ihnen eine Bestätigung per E-Mail zugesandt. Sobald der/" +"die Herausgeber/in das Manuskript geprüft hat, wird er sich mit Ihnen in " +"Verbindung setzen." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Bitte lesen und bestätigen Sie die Punkte der Einreichungscheckliste. " +"{$itemsRemaining} Punkte wurden bisher noch nicht bestätigt." + +msgid "submission.submit.placement" +msgstr "Manuskriptplatzierung" + +msgid "submission.submit.userGroup" +msgstr "Einreichen in meiner Funktion als ..." + +msgid "submission.submit.noContext" +msgstr "Der Verlag der Einreichung konnte nicht gefunden werden." + +msgid "grid.chapters.title" +msgstr "Kapitel" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Vom Lektor hochgeladenes Dokument löschen" + +msgid "submission.complete" +msgstr "Freigegeben" + +msgid "submission.incomplete" +msgstr "Warte auf Freigabe" + +msgid "submission.editCatalogEntry" +msgstr "Eintrag" + +msgid "submission.catalogEntry.new" +msgstr "Neuer Katalogeintrag" + +msgid "submission.catalogEntry.add" +msgstr "Auswahl dem Katalog hinzufügen" + +msgid "submission.catalogEntry.select" +msgstr "Wählen Sie Monographien aus um sie dem Katalog hinzuzufügen" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" +"Es muss mindestens eine Monographie ausgewählt werden, um sie dem Katalog " +"hinzuzufügen." + +msgid "submission.catalogEntry.confirm" +msgstr "Dieses Buch dem Katalog hinzufügen" + +msgid "submission.catalogEntry.confirm.required" +msgstr "" +"Bitte bestätigen Sie, dass der Publikationsprozess abgeschlossen ist und das " +"Buch in den Katalog aufgenommen werden soll." + +msgid "submission.catalogEntry.isAvailable" +msgstr "" +"Diese Monographie ist fertig und soll in den öffentlichen Katalog " +"aufgenommen werden." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Einreichung ansehen" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Publikationsdaten" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Alle Kapitel werden das Publikationsdatum der Monographie verwenden." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Jedes Kapitel kann ein eigenes Publikationsdatum haben." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monographie" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Katalog" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Format" + +msgid "submission.event.metadataPublished" +msgstr "" +"Die Metadaten der Monographie sind zur Veröffentlichung akzeptiert worden." + +msgid "submission.event.metadataUnpublished" +msgstr "" +"Die Veröffentlichung der Metadaten dieser Monographie wurde eingestellt." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Das \"{$publicationFormatName}\"-Format wurde verfügbar gemacht." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Das \"{$publicationFormatName}\"-Format ist nicht länger verfügbar." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Das \"{$publicationFormatName}\"-Format ist für die Veröffentlichung " +"akzeptiert worden." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"Die Veröffentlichung des \"{$publicationFormatName}\"-Formats wurde " +"eingestellt." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Die Katalogmetadaten wurden aktualisiert." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "Die Metadaten für das Format \"{$formatName}\" wurden upgedatet." + +msgid "submission.event.publicationFormatCreated" +msgstr "Das Format \"{$formatName}\" wurde erstellt." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Das Format \"{$formatName}\" wurde entfernt." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "In externe Begutachtung geben" + +msgid "workflow.review.externalReview" +msgstr "Externe Begutachtung" + +msgid "submission.upload.fileContents" +msgstr "Einreichungs-Komponente" + +msgid "submission.dependentFiles" +msgstr "Unselbstständige Dateien" + +msgid "submission.metadataDescription" +msgstr "" +"Diese Spezifizierungen basieren auf dem Dublin Core Metadaten-Set. Dies ist " +"ein internationaler Standard zur Beschreibung von Verlagsinhalten." + +msgid "section.any" +msgstr "Beliebige Reihe" + +msgid "submission.list.monographs" +msgstr "Monographien" + +msgid "submission.list.countMonographs" +msgstr "{$count} Monographien" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} von {$total} Monographien" + +msgid "submission.list.orderFeatures" +msgstr "Features sortieren" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Drag-and-drop oder klicken Sie die Hoch- und Runter-Pfeile um die Sortierung " +"der Features auf der Homepage zu verändern." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Drag-and-drop oder klicken Sie die Hoch- und Runter-Pfeile um die Sortierung " +"der Features in {$title} zu verändern." + +msgid "submission.list.saveFeatureOrder" +msgstr "Sortierung speichern" + +msgid "submission.list.viewEntry" +msgstr "Eintrag ansehen" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Titel" + +msgid "publication.catalogEntry" +msgstr "Katalog" + +msgid "publication.catalogEntry.success" +msgstr "Die Details des Katalogeintrags wurden aktualisiert." + +msgid "publication.invalidSeries" +msgstr "Die Reihe dieser Publikation konnte nicht gefunden werden." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Inaktiv)" + +msgid "publication.required.issue" +msgstr "" +"Die Publikation muss einer Ausgabe zugewiesen werden, bevor sie publiziert " +"werden kann." + +msgid "publication.publishedIn" +msgstr "Veröffentlicht in {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Alle Vorraussetzungen für die Veröffentlichung sind erfüllt. Sind Sie " +"sicher, dass Sie diesen Katalogeintrag publizieren möchten?" + +msgid "publication.scheduledIn" +msgstr "" +"Für die Publikation in {$issueName} vorgesehen." + +msgid "submission.publication" +msgstr "Veröffentlichung" + +msgid "publication.status.published" +msgstr "Veröffentlicht" + +msgid "submission.status.scheduled" +msgstr "Eingeplant" + +msgid "publication.status.unscheduled" +msgstr "Nicht eingeplant" + +msgid "submission.publications" +msgstr "Veröffentlichungen" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Das Copyright-Jahr wird automatisch gesetzt, wenn dieser Beitrag in einer " +"Ausgabe veröffentlicht wird." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Das Copyright-Jahr wird, basierend auf dem Veröffentlichungsdatum, " +"automatisch gesetzt." + +msgid "publication.datePublished" +msgstr "Veröffentlichungsdatum" + +msgid "publication.editDisabled" +msgstr "Diese Version wurde veröffentlicht und kann nicht geändert werden." + +msgid "publication.event.published" +msgstr "Der Beitrag wurde veröffentlicht." + +msgid "publication.event.scheduled" +msgstr "Der Beitrag wurde zur Veröffentlichung vorgesehen." + +msgid "publication.event.unpublished" +msgstr "Der Beitrag wurde zurückgezogen." + +msgid "publication.event.versionPublished" +msgstr "Eine neue Version wurde veröffentlicht." + +msgid "publication.event.versionScheduled" +msgstr "Eine neue Version wurde zur Veröffentlichung vorgesehen." + +msgid "publication.event.versionUnpublished" +msgstr "Eine Version wurde zurückgezogen." + +msgid "publication.invalidSubmission" +msgstr "" +"Die Einreichung für diese Veröffentlichung konnte nicht gefunden werden." + +msgid "publication.publish" +msgstr "Veröffentlichen" + +msgid "publication.publish.requirements" +msgstr "" +"Die folgenden Bedingungen müssen erfüllt sein, bevor dies veröffentlicht " +"werden kann." + +msgid "publication.required.declined" +msgstr "Ein abgelehnter Beitrag kann nicht veröffentlicht werden." + +msgid "publication.required.reviewStage" +msgstr "" +"Die Einreichung muss sich im Copyediting oder im Produktionsschritt befinden " +"um veröffentlicht werden zu können." + +msgid "submission.license.description" +msgstr "" +"Die Lizenz wird bei Veröffentlichung automatisch auf {$licenseName} gesetzt." + +msgid "submission.copyrightHolder.description" +msgstr "" +"{$copyright} wird bei Veröffentlichung automatisch als Rechteinhaber gesetzt." + +msgid "submission.copyrightOther.description" +msgstr "Die Rechte am veröffentlichten Beitrag folgender Gruppe zuordnen." + +msgid "publication.unpublish" +msgstr "Zurückziehen" + +msgid "publication.unpublish.confirm" +msgstr "Sind sie sicher, dass dies nicht veröffentlicht werden soll?" + +msgid "publication.unschedule.confirm" +msgstr "" +"Sind sie sicher, dass dies nicht zur Veröffentlichung eingeplant werden soll?" + +msgid "publication.version.details" +msgstr "Veröffentlichungsdetails für Version {$version}" + +msgid "submission.queries.production" +msgstr "Diskussion zur Herstellung" + +msgid "publication.chapter.landingPage" +msgstr "Kapitelseite" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Dieses Kapitel auf einer eigenen Seite anzeigen, auf die vom " +"Inhaltsverzeichnis der Publikation aus verlinkt wird." + +msgid "publication.publish.success" +msgstr "Der Publikationsstatus wurde erfolgreich verändert." + +msgid "chapter.volume" +msgstr "Band" + +msgid "submission.withoutChapter" +msgstr "{$name} — Ohne dieses Kapitel" + +msgid "submission.chapterCreated" +msgstr " — Kapitel kreiert" + +msgid "chapter.pages" +msgstr "Seiten" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Zur internen Begutachtung schicken" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" +"Die Einreichung ist für die Weitergabe in die interne Begutachtung bereit." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" +"{$editorName} hat diese Einreichung in die interne Begutachtung geschickt." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Zur internen Begutachtung geschickt" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"Die Einreichung {$title} wurde in die interne Begutachtung geschickt. Die " +"Autor/innen wurden benachrichtigt, es sei denn, Sie haben diese E-Mail " +"übersprungen." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Eine E-Mail an die Autor/innen senden, um sie darüber zu informieren, dass " +"ihre Einreichung zur internen Begutachtung geschickt wird. Sofern möglich, " +"geben Sie den Autor/innen einen Hinweis darauf, wie lange die Begutachtung " +"dauern wird und wann sie von den Redakteur/innen eine Rückmeldung erwarten " +"können." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" +"Dateien auswählen, die zur internen Begutachtung geschickt werden sollen." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" +"{$editorName} hat diese Einreichung in die externe Begutachtung geschickt." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Zur externen Begutachtung geschickt" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "Die Einreichung {$title} wurde in die externe Begutachtung geschickt." + +msgid "editor.submission.decision.backToReview" +msgstr "Zurück zur Begutachtung" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Annahmeentscheidung über diese Einreichung rückgängig machen und die " +"Einreichung in die Begutachtung zurückschicken." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} hat die Entscheidung, diese Einreichung zu akzeptieren, " +"rückgängig gemacht und sie in die Begutachtung zurückgeschickt." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "In die Begutachtung zurückgeschickt" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "Die Einreichung {$title} wurde in die Begutachtung zurückgeschickt." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Eine E-Mail an die Autor/innen senden, um sie darüber zu informieren, dass " +"ihre Einreichung in die Begutachtung zurückgeschickt wird. Erklären Sie, " +"warum diese Entscheidung getroffen wurde und informieren Sie die Autor/" +"innen, welche weiteren Begutachtungen unternommen werden." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Eine E-Mail an die Autor/innen senden, um sie darüber zu informieren, dass " +"ihre Einreichung zum Peer Review geschickt wird. Sofern möglich, geben Sie " +"den Autor/innen einen Hinweis darauf, wie lange das Peer Review-Verfahren " +"dauern wird und wann sie von den Redakteur/innen eine Rückmeldung erwarten " +"können." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Dateien auswählen, die zur Begutachtung geschickt werden sollen." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Empfehlen, zur externen Begutachtung zu schicken" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" +"Empfehlen, dass diese Einreichung zur externen Begutachtung geschickt werden " +"soll." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} hat empfohlen, diese Einreichung zur externen Begutachtung zu " +"schicken." + +msgid "doi.submission.incorrectContext" +msgstr "" +"DOI für die Einreichung {$pubObjectTitle} konnte nicht kreiert werden. Die " +"Einreichung existiert im aktuellen Verlagskontext nicht." + +msgid "publication.chapter.licenseUrl" +msgstr "Lizenz URL" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "Default Kapitel Lizenz URL" + +msgid "submission.copyright.description" +msgstr "" +"Bitte lesen und verstehen Sie die Copyright-Bestimmungen für Beiträge an " +"diesen Verlag." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Sie können keine Beiträge in diesem Verlag einreichen, da Autor/innen von " +"der Redaktion registriert werden müssen. Wenn Sie glauben, dass dies ein " +"Fehler ist, wenden Sie sich bitte an {$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} akzeptiert keine Einreichungen für die Sektion {$section}. " +"Wenn Sie Hilfe bei der Wiederherstellung Ihrer Einreichung benötigen, bitte " +"kontaktieren Sie {$name}." + +msgid "submission.sectionNotFound" +msgstr "Die Reihe für diese Einreichung konnte nicht gefunden werden." + +msgid "submission.sectionRestrictedToEditors" +msgstr "Nur die Reaktion kann Beiträge in dieser Reihe einreichen." + +msgid "submission.wizard.submitting.monograph" +msgstr "Einreichung einer Monographie." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" +"Einreichung einer Monographie auf " +"{$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Einreichung eines Sammelbandes." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Einreichungs eines Sammelbandes auf " +"{$language}." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Bitte geben Sie alle Kapitel dieser Einreichung an. Wenn Sie einen " +"Sammelband einreichen, vergewissern Sie sich bitte, dass in jedem Kapitel " +"die Autor/innen angegeben sind, die für das jeweilige Kapitel verantwortlich " +"sind." diff --git a/locale/de_DE/admin.po b/locale/de_DE/admin.po deleted file mode 100644 index 2aeba3c976a..00000000000 --- a/locale/de_DE/admin.po +++ /dev/null @@ -1,141 +0,0 @@ -# Pia Piontkowitz , 2021. -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2021-10-21 11:07+0000\n" -"Last-Translator: Pia Piontkowitz \n" -"Language-Team: German " -"\n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.hostedContexts" -msgstr "Gehostete Verlage" - -msgid "admin.settings.redirect" -msgstr "Weiterleitung an den Verlag" - -msgid "admin.settings.redirectInstructions" -msgstr "Auf der Startseite eingehende Fragen werden an diesen Verlag weitergeleitet. Dies kann beispielsweise eine praktische Lösung sein, wenn die Website nur einen einzigen Verlag hostet." - -msgid "admin.settings.noPressRedirect" -msgstr "Nicht umleiten" - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "Dies wird die voreingestellte Sprache für diese Website und alle gehosteten Verlage sein." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "Wählen Sie alle Regionaleinstellungen aus, die auf dieser Seite unterstützt werden sollen. Die ausgewählten Regionaleinstellungen werden allen Verlagen, die von dieser Website gehostet werden, verfügbar gemacht und erscheinen ebenfalls in einem Sprachauswahlmenü, das auf jeder Seite der Website erscheinen wird (das Menü kann auf verlagsspezifischen Seiten überschrieben werden). Wurde nur eine Regionaleinstellung ausgewählt, erscheint weder ein Sprachwechselblock noch stehen erweiterte Spracheinstellungen zur Verfügung." - -msgid "admin.locale.maybeIncomplete" -msgstr "* Die markierten Regionaleinstellungen können unvollständig sein." - -msgid "admin.languages.confirmUninstall" -msgstr "Sind Sie sicher, dass Sie diese Regionaleinstellung deinstallieren möchten? Dies kann Auswirkungen auf alle Verlage haben, die zurzeit diese Regionaleinstellung verwenden." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "Wählen Sie zusätzliche Regionaleinstellungen (Locales) aus, um deren Unterstützung in diesem System zu installieren. Locales müssen installiert sein, bevor sie von den gehosteten Verlagen genutzt werden können. In der OMP-Dokumentation erhalten Sie weitere Informationen darüber, wie Sie zusätzliche Unterstützung für neue Sprachen erhalten können." - -msgid "admin.languages.confirmDisable" -msgstr "Sind Sie sicher, dass Sie diese Regionaleinstellung löschen wollen? Dies wird alle Verlage auf Ihrer Plattform betreffen, die diese Regionaleinstellung benutzen." - -msgid "admin.systemVersion" -msgstr "OMP-Version" - -msgid "admin.systemConfiguration" -msgstr "OMP-Konfiguration" - -msgid "admin.presses.pressSettings" -msgstr "Verlagseinstellungen" - -msgid "admin.presses.noneCreated" -msgstr "Es wurden noch keine Verlage angelegt." - -msgid "admin.contexts.confirmDelete" -msgstr "Sind Sie sicher, dass Sie diesen Verlag und alle Verlagsinhalte endgültig löschen möchten?" - -msgid "admin.contexts.create" -msgstr "Verlag anlegen" - -msgid "admin.contexts.form.titleRequired" -msgstr "Die Angabe des Titels ist erforderlich." - -msgid "admin.contexts.form.pathRequired" -msgstr "Die Angabe des Pfades ist erforderlich." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "Der Pfad darf nur Buchstaben und Zahlen, Unterstriche und Bindestriche enthalten und muss mit einem Buchstaben oder einer Zahl beginnen und enden." - -msgid "admin.contexts.form.pathExists" -msgstr "Der ausgewählte Pfad wird bereits von einem anderen Verlag verwendet." - -msgid "admin.contexts.contextDescription" -msgstr "Verlagsbeschreibung" - -msgid "admin.presses.addPress" -msgstr "Verlag hinzufügen" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

    Beachten Sie:

    \n" -"

    Das System konnte die Konfigurationsdatei nicht automatisch überschreiben. Um Ihre Änderungen der Konfiguration anzuwenden, öffnen Sie config.inc.php mit einem geeigneten Texteditor und ersetzen Sie den Inhalt durch den Text im nachstehenden Textfeld.

    " - -msgid "admin.settings.disableBulkEmailRoles.contextDisabled" -msgstr "" -"Das Massen-E-Mail-Feature wurde für diesen Verlag deaktiviert. Es kann unter " -"Administration > Einstellungen der Website" -" aktiviert werden." - -msgid "admin.settings.enableBulkEmails.description" -msgstr "" -"Wählen Sie die gehosteten Verlage, die Massen-E-Mails senden dürfen. Wenn " -"dieses Feature aktiviert ist, kann ein/e Verlagsmanager/in eine E-Mail an " -"alle registrierten Nutzer/innen des Verlags schicken.

    Der Missbrauch " -"dieses Features um ungebetene E-Mails zu verschicken kann gegen Anti-Spam " -"Gesetze verstoßen und dazu führen, dass E-Mails Ihres Servers als Spam " -"blockiert werden. Erbitten Sie sich technische Hilfe, bevor Sie dieses " -"Feature aktivieren und ziehen Sie es in Erwägung, mit Verlagsmanager/innen " -"in Kontakt zu treten um zu vergewisseren, dass dieses Feature für den " -"beabsichtigten Zweck verwendet wird.

    Weitere Einschränkungen dieses " -"Features können für jeden Verlag im Konfigurationsassistenten in der Liste " -"der gehosteten Verlage aktiviert werden." - -msgid "admin.settings.disableBulkEmailRoles.description" -msgstr "" -"Ein/e Verlagsmanager/in wird keine Massen-E-Mails an die unten ausgewählten " -"Rollen verschicken können. Benutzen Sie diese Einstellung, um Missbrauch des " -"Benachrichtigungsfeatures einzuschränken. Es könnte z.B. sicherer sein, " -"Lesende, Autor/innen, oder weitere große Nutzer/innengruppen, die nicht " -"zugestimmt haben, solche E-Mails zu erhalten, auszuschließen.

    Das " -"Massen-E-Mail-Feature kann für diesen Verlag unter Administration > Einstellungen der Websitekomplett " -"deaktiviert werden." - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} wurde erfolgreich bearbeitet." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} wurde erfolgreich erstellt." - -msgid "admin.contexts.form.primaryLocaleNotSupported" -msgstr "" -"Die primären Regionaleinstellungen müssen eine der für den Verlag " -"ausgewählten Regionaleinstellungen (Locales) sein." - -msgid "admin.settings.info.success" -msgstr "Die Seiteninformationen wurden erfolgreich aktualisiert." - -msgid "admin.settings.config.success" -msgstr "" -"Die Einstellungen zur Konfiguration der Seite wurden erfolgreich " -"aktualisiert." - -msgid "admin.settings.appearance.success" -msgstr "" -"Die Einstellungen zum Aussehen der Seite wurden erfolgreich aktualisiert." diff --git a/locale/de_DE/default.po b/locale/de_DE/default.po deleted file mode 100644 index 888f2ce0886..00000000000 --- a/locale/de_DE/default.po +++ /dev/null @@ -1,166 +0,0 @@ -# Pia Piontkowitz , 2021, 2022. -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2022-02-22 11:05+0000\n" -"Last-Translator: Pia Piontkowitz \n" -"Language-Team: German \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.genres.appendix" -msgstr "Anhang" - -msgid "default.genres.bibliography" -msgstr "Bibliographie" - -msgid "default.genres.manuscript" -msgstr "Buchmanuskript" - -msgid "default.genres.chapter" -msgstr "Kapitelmanuskript" - -msgid "default.genres.glossary" -msgstr "Glossar" - -msgid "default.genres.index" -msgstr "Register" - -msgid "default.genres.preface" -msgstr "Vorwort" - -msgid "default.genres.prospectus" -msgstr "Exposé" - -msgid "default.genres.table" -msgstr "Tabelle" - -msgid "default.genres.figure" -msgstr "Abbildung" - -msgid "default.genres.photo" -msgstr "Foto" - -msgid "default.genres.illustration" -msgstr "Illustration" - -msgid "default.genres.other" -msgstr "Anderes" - -msgid "default.groups.name.manager" -msgstr "Verlagsleiter/in" - -msgid "default.groups.plural.manager" -msgstr "Verlagsleiter/innen" - -msgid "default.groups.abbrev.manager" -msgstr "VL" - -msgid "default.groups.name.editor" -msgstr "Herausgeber/in" - -msgid "default.groups.plural.editor" -msgstr "Herausgeber/innen" - -msgid "default.groups.abbrev.editor" -msgstr "Hrsg" - -msgid "default.groups.name.sectionEditor" -msgstr "Reihenherausgeber/in" - -msgid "default.groups.plural.sectionEditor" -msgstr "Reihenherausgeber/innen" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "RHrsg" - -msgid "default.groups.name.chapterAuthor" -msgstr "Kapitelautor/in" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Kapitelautor/innen" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "KapAu" - -msgid "default.groups.name.volumeEditor" -msgstr "Sammelbandherausgeber/in" - -msgid "default.groups.plural.volumeEditor" -msgstr "Sammelbandherausgeber/innen" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "RHrsg" - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "Das eingereichte Manuskript wurde nicht bereits vorher veröffentlicht und liegt zurzeit auch nicht einem anderen Verlag zur Begutachtung vor (oder es wurde im Feld 'Vermerk für den/die Herausgeber/in\" eine entsprechende Erklärung dazu abgegeben)." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "Die eingereichten Dateien liegen im Format Microsoft Word, RTF, OpenDocument oder WordPerfect vor." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Soweit möglich, wurden den Literaturangaben URLs beigefügt." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "Der Text ist mit einzeiligen Zeilenabstand in einer 12-Punkt-Schrift geschrieben; Hervorhebungen sind kursiv gesetzt, auf Unterstreichungen, wird - mit Ausnahme der URL-Adressen - verzichtet; alle Illustrationen, Abbildungen und Tabellen stehen an der Stelle im Text, an der sie auch in der endgültigen Fassung stehen sollen (nicht am Textende)." - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "Der Text entspricht den im Leitfaden für Autor/innen beschriebenen stilistischen und bibliographischen Anforderungen (s. den Reiter 'Über uns')." - -msgid "default.contextSettings.privacyStatement" -msgstr "

    Namen und E-Mail-Adressen, die auf dieser Website eingetragen sind, werden ausschließlich zu den angegebenen Zwecken verwendet und nicht an Dritte weitergegeben.

    " - -msgid "default.contextSettings.openAccessPolicy" -msgstr "Dieser Verlag bietet freien Zugang (Open Access) zu seinen Inhalten, entsprechend der Grundannahme, dass die freie öffentliche Verfügbarkeit von Forschung einem weltweiten Wissensaustausch zugute kommt." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Sie möchten gerne über die Neuerscheinungen unseres Verlages auf dem " -"Laufenden gehalten werden? Als registrierte/r Leser/in erhalten Sie von " -"jeder neu erscheinenden Monographie das Inhaltsverzeichnis per E-Mail " -"zugeschickt. Folgen Sie dem Registrieren-Link rechts oben auf der Homepage, um sich für " -"diesen Service anzumelden. Selbstverständlich sichern wir Ihnen zu, dass Ihr " -"Name und Ihre E-Mail-Adresse nicht zu anderen Zwecken verwendet werden (" -"siehe Datenschutzerklärung." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"Haben Sie Interesse, ein Manuskript bei uns einzureichen? Dann möchten wir " -"Sie auf die Seite Über uns " -"verweisen. Dort finden Sie die Richtlinien des Verlags. Bitte beachten Sie " -"auch die Richtlinien für Autor/innen. Autor/innen müssen sich <" -"a href=\"{$indexUrl}/{$contextPath}/user/register\">registrieren, bevor " -"sie ein Buch oder einen Beitrag zu einem Sammelband einreichen können. Wenn " -"Sie bereits registriert sind, können Sie sich einloggen und die fünf \"Schritte zur Einreichung\" abarbeiten." - -msgid "default.contextSettings.forLibrarians" -msgstr "Wir ermutigen wissenschaftliche Bibliothekar/innen, diesen Verlag in den digitalen Bestand ihrer Bibliothek aufzunehmen. Bibliotheken können dieses Open-Source-Publikationssystem außerdem zum Hosting für Verlage einsetzen, an deren Arbeit ihre Wissenschaftler/innen beteiligt sind (siehe Open Monograph Press)." - -msgid "default.groups.abbrev.externalReviewer" -msgstr "ER" - -msgid "default.groups.plural.externalReviewer" -msgstr "Externe Gutachter/innen" - -msgid "default.groups.name.externalReviewer" -msgstr "Externe/r Gutachter/in" - -msgid "default.groups.abbrev.subscriptionManager" -msgstr "SubMng" - -msgid "default.groups.plural.subscriptionManager" -msgstr "Subskriptionsmanager/innen" - -msgid "default.groups.name.subscriptionManager" -msgstr "Subskriptionsmanager/in" diff --git a/locale/de_DE/editor.po b/locale/de_DE/editor.po deleted file mode 100644 index 881df5f28b7..00000000000 --- a/locale/de_DE/editor.po +++ /dev/null @@ -1,176 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2021-01-21 15:49+0000\n" -"Last-Translator: Heike Riegler \n" -"Language-Team: German \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.submissionArchive" -msgstr "Manuskriptarchiv" - -msgid "editor.monograph.cancelReview" -msgstr "Anfrage abbrechen" - -msgid "editor.monograph.clearReview" -msgstr "Gutachter/innen löschen" - -msgid "editor.monograph.enterRecommendation" -msgstr "Empfehlung abgeben" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Empfehlung der Gutachterin/des Gutachters eintragen" - -msgid "editor.monograph.recommendation" -msgstr "Empfehlung" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "Wählen Sie oben einen Gutachter/eine Gutachterin aus und klicken Sie auf 'Gutachter/in auswählen'." - -msgid "editor.monograph.replaceReviewer" -msgstr "Gutachter/innen ersetzen" - -msgid "editor.monograph.editorToEnter" -msgstr "Herausgeber/innen pflegen die Empfehlungen/Kommentare für Gutachter/in ein" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Gutachten hochladen" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Gutachten-Optionen" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Korrekturfahnen-Dateien" - -msgid "editor.monograph.internalReview" -msgstr "Interne Begutachtung starten" - -msgid "editor.monograph.internalReviewDescription" -msgstr "Sie starten hiermit das interne Begutachtungsverfahren. Dateien, die Teil des eingereichten Manuskripts sind, finden Sie unten aufgelistet und können von Ihnen zur Begutachtung ausgewählt werden." - -msgid "editor.monograph.externalReview" -msgstr "Externe Begutachtung starten" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Endfassungen auswählen" - -msgid "editor.monograph.final.currentFiles" -msgstr "Aktuelle Endfassungen" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Aktuelle Dateien" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Nachricht an den Benutzer/die Benutzerin" - -msgid "editor.monograph.legend.submissionActions" -msgstr "Einreichungsaktionen" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Während der Einreichung mögliche Aktionen und Optionen" - -msgid "editor.monograph.legend.sectionActions" -msgstr "Sektionsaktionen" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "Für eine bestimmte Sektion spezifische Optionen, z.B. Dateien hochladen oder Benutzer/innen hinzufügen." - -msgid "editor.monograph.legend.itemActions" -msgstr "Auf den Titel bezogene Aktionen" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Für eine individuelle Datei spezifische Aktionen und Optionen." - -msgid "editor.monograph.legend.catalogEntry" -msgstr "Katalogeintrag anschauen und verwalten (einschließlich Metadaten und Formate)" - -msgid "editor.monograph.legend.bookInfo" -msgstr "Metadaten, Anmerkungen, Benachrichtigungen sowie das Verlaufsprotokoll zu einem Manuskript anschauen und verwalten" - -msgid "editor.monograph.legend.participants" -msgstr "Die an der Manuskriptbearbeitung Beteiligten wie z.B. Autor/innen, Redakteur/innen, Layouter/innen ansehen und verwalten" - -msgid "editor.monograph.legend.add" -msgstr "Eine Datei in dieser Sektion hochladen" - -msgid "editor.monograph.legend.add_user" -msgstr "Zu dieser Sektion einen Benutzer hinzufügen" - -msgid "editor.monograph.legend.settings" -msgstr "" -"Ansicht und Zugang zu den Einstellungen, wie zum Beispiel für die " -"Informations- und Löscheinstellungen" - -msgid "editor.monograph.legend.more_info" -msgstr "Weitere Informationen: Anmerkungen zu den Dateien, Benachrichtigungsoptionen und Verlaufsprotokoll" - -msgid "editor.monograph.legend.notes_none" -msgstr "Datei-Informationen: Anmerkungen, Benachrichtigungsoptionen und Verlaufsprotokoll (bisher wurden noch keine Anmerkungen hinzufügt)" - -msgid "editor.monograph.legend.notes" -msgstr "Datei-Informationen: Anmerkungen, Benachrichtigungsoptionen und Verlauf (es liegen Anmerkungen vor)" - -msgid "editor.monograph.legend.notes_new" -msgstr "Datei-Informationen: Anmerkungen, Benachrichtigungsoptionen und Verlauf (seit dem letzten Besuch wurden Anmerkungen hinzugefügt)" - -msgid "editor.monograph.legend.edit" -msgstr "Titel bearbeiten" - -msgid "editor.monograph.legend.delete" -msgstr "Titel entfernen" - -msgid "editor.monograph.legend.in_progress" -msgstr "Aktion wird noch ausgeführt oder ist noch nicht vollständig" - -msgid "editor.monograph.legend.complete" -msgstr "Aktion vollständig" - -msgid "editor.monograph.legend.uploaded" -msgstr "Datei wurde hochgeladen durch die im Spaltentitel angegebene Rolle" - -msgid "editor.submission.introduction" -msgstr "In der Einreichungsphase bestimmt der zuständige Herausgeber/die zuständige Herausgeberin nach Prüfung der eingereichten Manuskripte die passende Aktion aus (über die der Autor/die Autorin grundsätzlich informiert wird): Zur internen Begutachtung senden (anschließend müssen die für die interne Begutachtung vorgesehenen Dateien ausgewählt werden); Zur externen Begutachtung senden (anschließend müssen die für die externe Begutachtung vorgesehenen Dateien ausgewählt werden); Manuskript annnehmen (anschließend sind die Dateien für die redaktionelle Bearbeitung auszuwählen) oder Manuskript ablehnen (das Manuskript wird im Archiv abgelegt)." - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Freigegebene satzfertige Manuskriptfassung" - -msgid "editor.monograph.proofs" -msgstr "Korrekturfahnen" - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Freigabe und Veröffentlichung" - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "Verschiedene Formate wie zum Beispiel Hardcover, Softcover und digitale Formate können unten unter 'Formate' hochgeladen werden. Sie können die Formate-Tabelle als Checkliste verwenden, um zu prüfen, was noch für die Veröffentlichung im ausgewählten Format getan werden muss." - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "Fügen Sie Formate (z.B. digital, Paperback) hinzu, für die der Layouter Korrekturfahnen zum Korrekturlesen erstellen soll. Die Korrekturdateien müssen als \"akzeptiert\" gekennzeichnet und die Metadaten im Katalog aufgenommen und zur Veröffentlichung freigegeben worden sein, damit das Buch als verfügbar angezeigt (das heißt 'veröffentlicht') werden kann." - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Bedingungen für den Download festlegen" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Bestimmungen festlegen" - -msgid "editor.monograph.proof.addNote" -msgstr "Antwort hinzufügen" - -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "Alle Dateien, die schon zu irgendeiner Einreichungsphase hochgeladen worden sind, können zur Liste der Korrekturfahnen hinzugefügt werden, indem Sie die Einschließen-Checkbox unten aktivieren und danach auf Suche klicken: Alle verfügbaren Dateien werden angezeigt und können ausgewählt werden, um sie in die Liste aufzunehmen." - -msgid "editor.submissions.assignedTo" -msgstr "Einem/r Redakteur/in zugeordnet" - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "" -"Der Public Identifier '{$publicIdentifier}' existiert bereits für ein " -"anderes Objekt desselben Typs. Bitte wählen Sie eindeutige Identifier für " -"die Objekte des gleichen Typs innerhalb Ihres Verlags." diff --git a/locale/de_DE/locale.po b/locale/de_DE/locale.po deleted file mode 100644 index 43df938fe38..00000000000 --- a/locale/de_DE/locale.po +++ /dev/null @@ -1,1585 +0,0 @@ -# Pia Piontkowitz , 2021, 2022. -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2022-02-22 11:05+0000\n" -"Last-Translator: Pia Piontkowitz \n" -"Language-Team: German \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "monograph.audience" -msgstr "Zielgruppe" - -msgid "monograph.coverImage" -msgstr "Titelbild" - -msgid "monograph.audience.rangeQualifier" -msgstr "Grundlage der Eingrenzung der Zielgruppe" - -msgid "monograph.audience.rangeFrom" -msgstr "Bildungsstand (von)" - -msgid "monograph.audience.rangeTo" -msgstr "Bildungsstand (bis)" - -msgid "monograph.audience.rangeExact" -msgstr "Bildungsstand (genau)" - -msgid "monograph.languages" -msgstr "Sprachen (Englisch, Französisch, Spanisch)" - -msgid "monograph.publicationFormats" -msgstr "Publikationsformate" - -msgid "monograph.publicationFormat" -msgstr "Format" - -msgid "monograph.publicationFormatDetails" -msgstr "Genauere Angaben zum verfügbaren Publikationsformat {$format}" - -msgid "monograph.miscellaneousDetails" -msgstr "Angaben zur Monographie" - -msgid "monograph.carousel.publicationFormats" -msgstr "Formate:" - -msgid "monograph.type" -msgstr "Art der Einreichung" - -msgid "submission.pageProofs" -msgstr "Korrekturfahnen" - -msgid "monograph.proofReadingDescription" -msgstr "" -"Der Layouter/die Layouterin lädt hier die für die Publikation vorbereiteten " -"herstellungsreifen Dateien hoch. Über +Zuweisen können Sie Autor/" -"innen und andere Beteiligten mit dem Gegenlesen der Korrekturfahne " -"beauftragen, wobei die korrigierten Dateien zur abschließenden Prüfung " -"erneut hochgeladen werden müssen bevor es zu einer Veröffentlichung kommt." - -msgid "monograph.task.addNote" -msgstr "Zu den Aufgaben hinzufügen" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Open Access" - -msgid "monograph.publicationFormat.imprint" -msgstr "Impressum (Marken-/Verlagsname)" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Seitenanzahl" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Titelei" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Nachspann" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Produktzusammensetzung" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Produktangaben (nicht erforderlich)" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Produktcode" - -msgid "monograph.publicationFormat.price" -msgstr "Preis" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Eine Preisangabe ist erforderlich." - -msgid "monograph.publicationFormat.priceType" -msgstr "Preisart" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Rabattsatz (falls zutreffend)" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Verfügbarkeit" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Remissionskonditionen" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Digitale Informationen" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Abmessungen" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Dateigröße in MB" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Möchten Sie eine eigene Dateigröße eingeben?" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Höhe" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Dicke" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Gewicht" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Breite" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Herstellungsland" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Digitale technische Schutzmaßnahmen" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Vertriebsregion" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Steuersatz" - -msgid "monograph.publicationFormat.taxType" -msgstr "Steuerart" - -msgid "monograph.publicationFormat.isApproved" -msgstr "Metadaten für dieses Publikationsformat in den Katalog aufnehmen." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Markt- und Preisangabe fehlen." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Identifikationscode fehlt." - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Einige Metadatenfelder wurden nicht ausgefüllt." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "" -"

    Das von Ihnen gewählte Format steht für diese Monographie nicht mehr zur " -"Verfügung.

    " - -msgid "monograph.publicationFormat.openTab" -msgstr "Öffne Reiter Publikationsform." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Format" - -msgid "grid.catalogEntry.nameRequired" -msgstr "Eine Namensangabe ist erforderlich." - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Eine gültige Preisangabe ist erforderlich." - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Weitere Angaben für dieses Format" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Physisches Format" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Dieses Format wird auf einer externen Website bereitgestellt werden" - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL des remote bereitgestellten Inhalts" - -msgid "grid.catalogEntry.monographRequired" -msgstr "Es wird eine Kennung für die Monographie benötigt." - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Bitte wählen Sie ein Publikationsformat." - -msgid "grid.catalogEntry.availability" -msgstr "Verfügbarkeit" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Verfügbar" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Nicht verfügbar" - -msgid "grid.catalogEntry.proof" -msgstr "Korrekturfahne" - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Format-Freigabe" - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

    Anzeigen, dass die Metadaten für dieses Format noch nicht genehmigt wurden.

    " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Format-Verfügbarkeit" - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "

    Dieses Format für Leser/innen zugänglich machen. Herunterladbare Dateien und alle anderen Vertriebswege werden im Katalogeintrag des Buchs angezeigt.

    " - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "

    Dieses Format wird für Leser/innen nicht verfügbar sein. Alle herunterladbaren Dateien oder andere Vertriebswege werden nicht mehr im Katalogeintrag des Buchs angezeigt.

    " - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Der Katalogeintrag wurde nicht akzeptiert." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Format nicht im Katalogeintrag." - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Fahne nicht akzeptiert." - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Akzeptiert" - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Warte auf Freigabe" - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Für digitale Formate wird eine Dateigröße benötigt." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Bitte geben Sie die Produktverfügbarkeit an." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Bitte wählen Sie einen Code für die Produktzusammensetzung." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Wert" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "ONIX Code-Typ" - -msgid "grid.catalogEntry.codeRequired" -msgstr "Ein Code ist erforderlich." - -msgid "grid.catalogEntry.valueRequired" -msgstr "Bitte geben Sie einen Wert ein." - -msgid "grid.catalogEntry.salesRights" -msgstr "Vertriebskonditionen" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Codewert" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Vertriebskonditionen" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Restliche Welt/Rest of World?" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "Setzen Sie hier einen Haken, wenn Sie die Vertriebskonditionen pauschal festlegen möchten. Sie müssen in diesem Fall nicht einzelne Länder und Regionen auswählen." - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "Es wurde schon \"Restliche Welt\" als Geltungsbereich für die Vertriebskonditionen dieses Formats festgelegt." - -msgid "grid.catalogEntry.countries" -msgstr "Länder" - -msgid "grid.catalogEntry.regions" -msgstr "Regionen" - -msgid "grid.catalogEntry.included" -msgstr "Eingeschlossen" - -msgid "grid.catalogEntry.excluded" -msgstr "Ausgeschlossen" - -msgid "grid.catalogEntry.markets" -msgstr "Absatzgebiete" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Gebiet" - -msgid "grid.catalogEntry.publicationDates" -msgstr "Erscheinungsdatum" - -msgid "grid.catalogEntry.roleRequired" -msgstr "Die Angabe einer Vertreter/in ist erforderlich." - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Bitte geben Sie ein Datumsformat ein." - -msgid "grid.catalogEntry.dateValue" -msgstr "Datum" - -msgid "grid.catalogEntry.dateRole" -msgstr "Das Datum bezieht sich auf das ..." - -msgid "grid.catalogEntry.dateFormat" -msgstr "Datumsformat" - -msgid "grid.catalogEntry.dateRequired" -msgstr "Bitte geben Sie ein Datum ein. Das Datumsformat muss dem von Ihnen gewählten Format entsprechen." - -msgid "grid.catalogEntry.representatives" -msgstr "Vertriebspartner" - -msgid "grid.catalogEntry.representativeType" -msgstr "Vertriebspartnertyp" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Vertreter/innen" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Dienstleister" - -msgid "grid.catalogEntry.agent" -msgstr "Vertreter/in" - -msgid "grid.catalogEntry.agentTip" -msgstr "Sie können eine/n Vertreter/in bestimmen, um Sie in dem ausgewählten Gebiet zu repräsentieren. Diese Angabe ist nicht verpflichtend." - -msgid "grid.catalogEntry.supplier" -msgstr "Dienstleister" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Wählen Sie eine Funktion:" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Funktion" - -msgid "grid.catalogEntry.representativeName" -msgstr "Name" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Telefon" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "E-Mail-Adresse" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Website" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Identifkationsnummer des Unternehmens" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Identifikationsnmmerntyp des Unternehmens (empfohlen wird GLN)" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "Sie können die folgenden Abschnitte leer lassen, wenn Sie Ihren Kunden Ihre eigenen Dienste anbieten möchten." - -msgid "grid.action.addRepresentative" -msgstr "Vertriebspartner hinzufügen" - -msgid "grid.action.editRepresentative" -msgstr "Diesen Vertriebspartner bearbeiten" - -msgid "grid.action.deleteRepresentative" -msgstr "Vertriebspartner entfernen" - -msgid "spotlight" -msgstr "Spotlight" - -msgid "spotlight.spotlights" -msgstr "Spotlights" - -msgid "spotlight.noneExist" -msgstr "Aktuell sind keine Spotlights vorhanden." - -msgid "spotlight.title.homePage" -msgstr "Im Rampenlicht" - -msgid "spotlight.author" -msgstr "Autor, " - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Spotlight-Titel" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Homepage" - -msgid "grid.content.spotlights.form.location" -msgstr "Spotlightplatzierung" - -msgid "grid.content.spotlights.form.item" -msgstr "Geben Sie den Titel des Spotlights ein (Auto-Vervollständigen)" - -msgid "grid.content.spotlights.form.title" -msgstr "Spotlight-Titel (wie er auf der Website erscheinen soll)" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Buch" - -msgid "grid.content.spotlights.itemRequired" -msgstr "Bitte machen Sie eine Angabe." - -msgid "grid.content.spotlights.titleRequired" -msgstr "Bitte geben Sie den Titel des Spotlights an." - -msgid "grid.content.spotlights.locationRequired" -msgstr "Bitte wählen Sie einen Platz für dieses Spotlight." - -msgid "grid.action.editSpotlight" -msgstr "Spotlight bearbeiten" - -msgid "grid.action.deleteSpotlight" -msgstr "Spotlight löschen" - -msgid "grid.action.addSpotlight" -msgstr "Spotlight hinzufügen" - -msgid "manager.series.open" -msgstr "Offene Einreichungen" - -msgid "manager.series.indexed" -msgstr "Indiziert" - -msgid "grid.libraryFiles.column.files" -msgstr "Dateien" - -msgid "grid.action.catalogEntry" -msgstr "Den Katalogeintrag ansehen" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Das Format erscheint im Katalog" - -msgid "grid.action.editFormat" -msgstr "Format bearbeiten" - -msgid "grid.action.deleteFormat" -msgstr "Format entfernen" - -msgid "grid.action.addFormat" -msgstr "Format hinzufügen" - -msgid "grid.action.approveProof" -msgstr "" -"Akzeptieren Sie die Korrekturfahne um den Titel zu indizieren und dem " -"Katalog hinzuzufügen" - -msgid "grid.action.pageProofApproved" -msgstr "Die Korrekturfahnen ist fertig zur Veröffentlichung" - -msgid "grid.action.newCatalogEntry" -msgstr "Neuer Katalogeintrag" - -msgid "grid.action.publicCatalog" -msgstr "Diesen Titel im Katalog ansehen" - -msgid "grid.action.feature" -msgstr "Auf die Anzeige empfohlener Bücher umschalten" - -msgid "grid.action.featureMonograph" -msgstr "Diesen Band in das Karussell aufnehmen" - -msgid "grid.action.releaseMonograph" -msgstr "Diesen Titel als 'Neuerscheinung' kennzeichnen" - -msgid "grid.action.manageCategories" -msgstr "Kategorien konfigurieren" - -msgid "grid.action.manageSeries" -msgstr "Reihen konfigurieren" - -msgid "grid.action.addCode" -msgstr "Code hinzufügen" - -msgid "grid.action.editCode" -msgstr "Diesen Code bearbeiten" - -msgid "grid.action.deleteCode" -msgstr "Diesen Code löschen" - -msgid "grid.action.addRights" -msgstr "Vertriebskonditionen hinzufügen" - -msgid "grid.action.editRights" -msgstr "Konditionen bearbeiten" - -msgid "grid.action.deleteRights" -msgstr "Konditionen entfernen" - -msgid "grid.action.addMarket" -msgstr "Absatzmarkt hinzufügen" - -msgid "grid.action.editMarket" -msgstr "Absatzmarkt bearbeiten" - -msgid "grid.action.deleteMarket" -msgstr "Absatzmarkt entfernen" - -msgid "grid.action.addDate" -msgstr "Erscheinungsdatum hinzufügen" - -msgid "grid.action.editDate" -msgstr "Dieses Datum bearbeiten" - -msgid "grid.action.deleteDate" -msgstr "Dieses Datum löschen" - -msgid "grid.action.createContext" -msgstr "Einen neuen Verlag anlegen" - -msgid "grid.action.publicationFormatTab" -msgstr "Zeige den Reiter Format" - -msgid "grid.action.moreAnnouncements" -msgstr "Zu den Bekanntmachungen" - -msgid "grid.action.submissionEmail" -msgstr "Zum Lesen der E-Mail bitte klicken" - -msgid "grid.action.approveProofs" -msgstr "Korrekturfahnen anzeigen" - -msgid "grid.action.proofApproved" -msgstr "Das Format wurde geprüft" - -msgid "grid.action.availableRepresentation" -msgstr "Dieses Format freigeben/nicht freigeben" - -msgid "grid.action.formatAvailable" -msgstr "Format ist verfügbar und wurde veröffentlicht" - -msgid "grid.reviewAttachments.add" -msgstr "Füge dem Gutachten einen Anhang hinzu" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Verfügbare Dateien" - -msgid "series.series" -msgstr "Reihe" - -msgid "series.featured.description" -msgstr "Diese Reihen werden in der Hauptnavigation erscheinen" - -msgid "series.path" -msgstr "Pfad" - -msgid "catalog.manage" -msgstr "Katalogverwaltung" - -msgid "catalog.manage.homepage" -msgstr "Homepage" - -msgid "catalog.manage.newReleases" -msgstr "Neuerscheinungen" - -msgid "catalog.manage.category" -msgstr "Kategorie" - -msgid "catalog.manage.series" -msgstr "Reihe" - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series.issn.validation" -msgstr "Bitte geben Sie eine gültige ISSN an." - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "Online- und Print-ISSN dürfen nicht gleich sein." - -msgid "catalog.manage.series.onlineIssn" -msgstr "Online-ISSN" - -msgid "catalog.manage.series.printIssn" -msgstr "Print-ISSN" - -msgid "catalog.selectSeries" -msgstr "Wählen Sie eine Reihe aus" - -msgid "catalog.selectCategory" -msgstr "Wählen Sie eine Kategorie aus" - -msgid "catalog.manage.homepageDescription" -msgstr "Die Umschlagbilder der ausgewählten Bücher erscheinen auf der Homepage als scrollbare Liste. Klicken Sie auf den Icon 'Empfehlen' (rechts) und anschließend auf das entsprechende Sternchen, um ein Buch dem Karussell hinzuzufügen, und auf das Ausrufezeichen, wenn Sie es unter der Rubrik 'Neuerscheinungen\" erscheinen soll. Durch Drag and Drop können Sie die Reihenfolge festlegen, in der die Bücher angezeigt werden." - -msgid "catalog.manage.categoryDescription" -msgstr "Um ein Buch auszuwählen, das Sie in der jeweiligen Kategorie besonders empfehlen möchten, klicken Sie zunächst auf den Icon 'Empfehlen' (rechts unterhalb dieser Erklärung) und dann auf das Sternchen. Mit Drag and Drop legen Sie die Reihenfolge der angezeigten empfohlenen Titel fest." - -msgid "catalog.manage.seriesDescription" -msgstr "Wenn Sie innerhalb der Reihe ein Buch als empfehlenswert hervorheben möchten, klicken Sie zuerst auf den Icon 'Empfehlen' (rechts unterhalb dieser Erklärung) und dann auf das jeweilige Sternchen. Mit Drag and Drop können Sie die Reihenfolge festlegen, in der die empfohlenen Titel anzeigt werden.

    Reihen lassen sich stets über den/die Herausgeber/in und Titel identifizieren, sie können einer Kategorie zugeordnet sein, müssen es aber nicht." - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Karussell" - -msgid "catalog.manage.newRelease" -msgstr "Ausgabe" - -msgid "catalog.manage.manageSeries" -msgstr "Reihen verwalten" - -msgid "catalog.manage.manageCategories" -msgstr "Kategorien verwalten" - -msgid "catalog.manage.noMonographs" -msgstr "Es liegen keine Ihnen zugewiesenen Monographien vor." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Die Monographie wurde als Neuerscheinung gekennzeichnet." - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Die Kenntlichmachung als Neuerscheinung wurde entfernt." - -msgid "catalog.manage.feature.newRelease" -msgstr "Neuerscheinung" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Neuerscheinung in der Kategorie" - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Neuerscheinung in der Reihe" - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Nach Titel oder Autor/in suchen" - -msgid "catalog.noTitles" -msgstr "Bisher wurden keine Titel veröffentlicht." - -msgid "catalog.noTitlesNew" -msgstr "Zur Zeit sind keine neuen Veröffentlichungen verfügbar." - -msgid "catalog.noTitlesSearch" -msgstr "Zu Ihrer Suche nach \"{$searchQuery}\" wurden keine passenden Titel gefunden." - -msgid "catalog.feature" -msgstr "Empfehlen" - -msgid "catalog.featured" -msgstr "Empfohlen" - -msgid "catalog.featuredBooks" -msgstr "Empfohlene Bücher" - -msgid "catalog.foundTitleSearch" -msgstr "Zu Ihrer Suche nach \"{$searchQuery}\" wurde ein Titel gefunden." - -msgid "catalog.foundTitlesSearch" -msgstr "Zu Ihrer Suche nach \"{$searchQuery}\" wurden {$number} Titel gefunden." - -msgid "catalog.category.heading" -msgstr "Alle Bücher" - -msgid "catalog.newReleases" -msgstr "Neuerscheinungen" - -msgid "catalog.dateAdded" -msgstr "Hinzugefügt {$dateAdded}" - -msgid "catalog.publicationInfo" -msgstr "Informationen zum Buch" - -msgid "catalog.published" -msgstr "Veröffentlicht" - -msgid "catalog.categories" -msgstr "Kategorien" - -msgid "catalog.parentCategory" -msgstr "Oberkategorie" - -msgid "catalog.category.subcategories" -msgstr "Unterkategorie" - -msgid "catalog.aboutTheAuthor" -msgstr "Über den/die {$roleName}" - -msgid "catalog.loginRequiredForPayment" -msgstr "Bitte beachten Sie: Um einen Band zu kaufen, müssen Sie angemeldet sein. Sobald Sie einen Band ausgewählt haben, den Sie erwerben möchten, gelangen Sie automatisch zur Anmeldeseite. Alle Titel, die mit einem Open-Access-Symbol (geöffnetes Schloss) gekennzeichnet sind, können kostenlos heruntergeladen werden. Eine Anmeldung ist dazu nicht erforderlich." - -msgid "catalog.sortBy" -msgstr "Reihenfolge der Bücher" - -msgid "catalog.sortBy.seriesDescription" -msgstr "Wählen Sie aus, in welcher Reihenfolge Bücher in dieser Reihe angezeigt werden sollen." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Wählen Sie aus, in welcher Reihenfolge Bücher in dieser Kategorie angezeigt werden sollen." - -msgid "catalog.sortBy.catalogDescription" -msgstr "Wählen Sie aus, in welcher Reihenfolge Bücher im Katalog angezeigt werden sollen." - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Position in Reihe (niedrigste zuerst)" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Position in Reihe (höchste zuerst)" - -msgid "catalog.viewableFile.title" -msgstr "{$type}-Ansicht der Datei {$title}" - -msgid "catalog.viewableFile.return" -msgstr "Zurück zur Detailanzeige von {$monographTitle}" - -msgid "common.prefix" -msgstr "Präfix" - -msgid "common.preview" -msgstr "Vorschau" - -msgid "common.feature" -msgstr "Empfehlen" - -msgid "common.searchCatalog" -msgstr "Suche im Katalog" - -msgid "common.moreInfo" -msgstr "Weitere Informationen" - -msgid "common.listbuilder.completeForm" -msgstr "Bitte füllen Sie dieses Formular vollständig aus." - -msgid "common.listbuilder.selectValidOption" -msgstr "Bitte wählen Sie eine gültige Option aus dieser Liste aus." - -msgid "common.listbuilder.itemExists" -msgstr "Sie können nicht den gleichen Eintrag ein zweites Mal hinzufügen." - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.homePageHeader.altText" -msgstr "Homepage-Header" - -msgid "navigation.catalog" -msgstr "Katalog" - -msgid "navigation.competingInterestPolicy" -msgstr "Leitlinie zu Interessenskonflikten" - -msgid "navigation.catalog.manage" -msgstr "Verwalten" - -msgid "navigation.catalog.administration.short" -msgstr "Administration" - -msgid "navigation.catalog.administration" -msgstr "Katalogverwaltung" - -msgid "navigation.catalog.administration.categories" -msgstr "Kategorien" - -msgid "navigation.catalog.administration.series" -msgstr "Reihe" - -msgid "navigation.infoForAuthors" -msgstr "Für Autoren/innen" - -msgid "navigation.infoForLibrarians" -msgstr "Für Bibliothekare/innen" - -msgid "navigation.infoForAuthors.long" -msgstr "Informationen für Autoren/innen" - -msgid "navigation.infoForLibrarians.long" -msgstr "Informationen für Bibliothekare/innen" - -msgid "navigation.newReleases" -msgstr "Neuerscheinungen" - -msgid "navigation.published" -msgstr "Erschienen" - -msgid "navigation.wizard" -msgstr "Assistent" - -msgid "navigation.linksAndMedia" -msgstr "Links und Soziale Netzwerke" - -msgid "context.contexts" -msgstr "Verlage" - -msgid "context.context" -msgstr "Verlag" - -msgid "context.current" -msgstr "Aktueller Verlag:" - -msgid "context.select" -msgstr "Wählen Sie einen Verlag:" - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Benutzer/innen ohne zugewiesene Funktion mit einbeziehen." - -msgid "user.noRoles.submitMonograph" -msgstr "Einen Vorschlag einreichen" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "" -"Einreichen einer Monographie: Die Registrierung als Autor/in ist zurzeit " -"deaktiviert." - -msgid "user.noRoles.regReviewer" -msgstr "Registrierung als Gutachter/in" - -msgid "user.noRoles.regReviewerClosed" -msgstr "Registrierung als Gutachter/in: Die Gutachterregistrierung ist zurzeit deaktiviert." - -msgid "user.role.manager" -msgstr "Verlagsleiter/in" - -msgid "user.role.pressEditor" -msgstr "Leitender Herausgeber/Leitende Herausgeberin" - -msgid "user.role.subEditor" -msgstr "Reihenherausgeber/in" - -msgid "user.role.copyeditor" -msgstr "Lektor/in" - -msgid "user.role.proofreader" -msgstr "Korrektor/in" - -msgid "user.role.productionEditor" -msgstr "Hersteller/in" - -msgid "user.role.managers" -msgstr "Verlagsleiter/in" - -msgid "user.role.subEditors" -msgstr "Reihenherausgeber/innen" - -msgid "user.role.editors" -msgstr "Herausgeber/innen" - -msgid "user.role.copyeditors" -msgstr "Lektoren/innen" - -msgid "user.role.proofreaders" -msgstr "Korrektoren/innen" - -msgid "user.role.productionEditors" -msgstr "Hersteller/innen" - -msgid "user.register.completeForm" -msgstr "Füllen Sie das Formular aus, um sich beim Verlag zu registrieren" - -msgid "user.register.selectContext" -msgstr "Wählen Sie den Verlag aus, bei dem Sie sich registrieren möchten:" - -msgid "user.register.noContexts" -msgstr "Es gibt keine Verlage, bei denen Sie sich auf dieser Website anmelden können." - -msgid "user.register.privacyStatement" -msgstr "Datenschutzerklärung" - -msgid "user.register.alreadyRegisteredOtherContext" -msgstr "Klicken Sie hier, wenn Sie bereits registriert sind." - -msgid "user.register.notAlreadyRegisteredOtherContext" -msgstr "Klicken Sie hier, wenn Sie sich noch nicht bei diesem oder einem anderen Verlag dieser Website registriert haben." - -msgid "user.register.loginToRegister" -msgstr "Geben Sie Ihren Benutzernamen und Ihr Passwort ein, um sich zu registrieren." - -msgid "user.register.registrationDisabled" -msgstr "Zurzeit ist keine Registrierung möglich." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Das eingegebene Passwort ist zu kurz." - -msgid "user.register.readerDescription" -msgstr "Per E-Mail über das Erscheinen eines Buches benachrichtigt." - -msgid "user.register.authorDescription" -msgstr "Kann einen Titel beim Verlag einreichen." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Ich bin bereit, beim Verlag eingegangene Manuskripte zu begutachten." - -msgid "user.register.reviewerDescription" -msgstr "Erklärt sich bereit, den Peer-Review-Prozess für auf dieser Website eingereichte Manuskripte durchzuführen." - -msgid "user.register.reviewerInterests" -msgstr "Interessen (inhaltliche Schwerpunkte und Forschungsmethoden):" - -msgid "user.register.form.userGroupRequired" -msgstr "Sie müssen mindestens eine Funktion auswählen" - -msgid "site.pressView" -msgstr "Verlagswebsite ansehen" - -msgid "about.pressContact" -msgstr "Pressekontakt" - -msgid "about.aboutThePress" -msgstr "Über den Verlag" - -msgid "about.editorialTeam" -msgstr "Herausgeber/innen" - -msgid "about.editorialPolicies" -msgstr "Richtlinien für Herausgeber/innen" - -msgid "about.focusAndScope" -msgstr "Fokus und Umfang" - -msgid "about.seriesPolicies" -msgstr "Richtlinien für Reihen und Kategorien" - -msgid "about.submissions" -msgstr "Manuskripte einreichen" - -msgid "about.sponsors" -msgstr "Sponsor/innen" - -msgid "about.contributors" -msgstr "Förderer" - -msgid "about.onlineSubmissions" -msgstr "Online-Einreichungen" - -msgid "about.onlineSubmissions.login" -msgstr "Zum Login" - -msgid "about.onlineSubmissions.register" -msgstr "Registrieren" - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "Sie müssen registriert und eingeloggt sein, um Manuskripte einzureichen oder den aktuellen Status Ihrer Einreichung zu überprüfen. Mit einem bestehenden Account {$login} oder einen neuen Account {$register}." - -msgid "about.authorGuidelines" -msgstr "Richtlinien für Autoren/innen" - -msgid "about.submissionPreparationChecklist" -msgstr "Checkliste zur Manuskripteinreichung" - -msgid "about.submissionPreparationChecklist.description" -msgstr "Während des Einreichungsvorganges werden die Autor/innen dazu aufgefordert zu überprüfen, ob ihr Manuskript alle genannten Anforderungen erfüllt. Manuskripte, die nicht mit den Richtlinien übereinstimmen, können an die Autor/innen zurückgegeben werden." - -msgid "about.copyrightNotice" -msgstr "Copyright-Vermerk" - -msgid "about.privacyStatement" -msgstr "Datenschutzerkärung" - -msgid "about.reviewPolicy" -msgstr "Peer-Review-Prozess" - -msgid "about.publicationFrequency" -msgstr "Erscheinungsweise" - -msgid "about.openAccessPolicy" -msgstr "Open-Access-Leitlinien" - -msgid "about.pressSponsorship" -msgstr "Verlagssponsoren" - -msgid "about.aboutThisPublishingSystem" -msgstr "" -"Mehr Informationen zu diesem Publikationssystem, der Plattform und dem " -"Workflow von OMP/PKP." - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "OMP-Redaktions- und Veröffentlichungsprozess" - -msgid "about.aboutOMPPress" -msgstr "" -"Dieser Verlag verwendet Open Monograph Press {$ompVersion}, eine Open-Source " -"Verlagsmanagement- und Publikations-Software, die vom Public Knowledge Project unter der GNU General " -"Public License entwickelt wurde. Support und Vertrieb der Software sind " -"kostenfrei. Bitte kontaktieren Sie den Verlag " -"um Fragen über den Verlag und Einreichungen zu stellen." - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "Dieser Verlag verwendet Open Monograph Press {$ompVersion}, eine Open-Source-Presse- und Verlagsmanagement-Software, die vom Public Knowledge Project unter der GNU General Public License entwickelt wurde. Support und Vertrieb der Software sind kostenfrei." - -msgid "help.searchReturnResults" -msgstr "Zurück zu den Suchergebnissen" - -msgid "help.goToEditPage" -msgstr "Öffnen Sie eine neue Seite, um diese Informationen zu bearbeiten" - -msgid "installer.appInstallation" -msgstr "OMP-Installation" - -msgid "installer.ompUpgrade" -msgstr "OMP-Upgrade" - -msgid "installer.installApplication" -msgstr "Installiere Open Monograph Press" - -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

    Danke, dass Sie Open Monograph Press {$version} des " -"Public Knowledge Project heruntergeladen haben. Bitte lesen Sie die in der " -"Software enthaltene README -Datei, " -"bevor Sie fortfahren. Mehr Informationen über das das Public Knowledge " -"Project und seine Softwareprojekte finden Sie auf der PKP-Website PKP web site. Wenn Sie einen Bug " -"melden möchten oder technischen Support für Open Monograph Press benötigen, " -"wenden Sie sich bitte an unser: support forum oder besuchen Sie das online Bug Reporting System von " -"PKP. Wir empfehlen Ihnen zwar, über das Supportforum Kontakt zu uns " -"aufzunehmen, Sie können aber eine E-Mail an unser Team schreiben: pkp.contact@gmail.com.

    \n" - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Schritte vor der Installation" - -msgid "installer.preInstallationInstructions" -msgstr "" -"

    1. Die folgenden Dateien und Verzeichnisse (und deren Inhalte) müssen mit einer Schreibberechtigung ausgestattet sein:

    \n" -"
      \n" -"\t
    • config.inc.php ist beschreibbar (optional): {$writable_config}
    • \n" -"\t
    • public/ ist beschreibbar: {$writable_public}
    • \n" -"\t
    • cache/ ist beschreibbar: {$writable_cache}
    • \n" -"\t
    • cache/t_cache/ ist beschreibbar: {$writable_templates_cache}
    • \n" -"\t
    • cache/t_compile/ ist beschreibbar: {$writable_templates_compile}
    • \n" -"\t
    • cache/_db ist beschreibbar: {$writable_db_cache}
    • \n" -"
    \n" -"\n" -"

    2. Es muss ein Verzeichnis angelegt und mit Schreibrechten ausgestattet werden, in dem die hochgeladenen Dateien gespeichert werden können (siehe \"Dateieinstellungen\" unten).

    " - -msgid "installer.upgradeInstructions" -msgstr "" -"

    OMP Version {$version}

    \n" -"\n" -"

    Vielen Dank, dass Sie Open Monograph Press des Public Knowledge Project heruntergeladen haben. Bevor Sie fortfahren, empfehlen wir Ihnen, die README und UPGRADE Dateien zu lesen, die in dieser Software enthalten sind. Weitere Informationen über das Public Knowledge Project und seine Softwareprojecte finden Sie auf der PKP-Website. Wenn Sie einen Bug melden möchten oder technischen Support für Open Monograph Press benötigen, wenden Sie sich bitte an unser: support forum oder besuchen Sie online PKPs bug reporting system. Wir empfehlen Ihnen zwar, über das Supportforum Kontakt zu uns aufzunehmen, Sie können eine E-Mail an unser Team schreiben: pkp.contact@gmail.com.

    \n" -"

    Es wird dringend empfohlen Datenbank, Dateienverzeichnis und OMP-Installationsverzeichnis zu speichern, bevor Sie fortfahren.

    \n" -"

    Wenn Sie den Upgrade im abgesicherten Modus PHP Safe Mode durchführen, setzen Sie bitte bei max_execution_time in Ihrer php.ini-Konfigurationsdatei einen hohen Wert fest. Wenn dieses oder ein anderes Zeitlimit (z.B. Apache's \"Timeout\") erreicht und der Upgrade-Vorgang unterbrochen wurde, kann der Vorgang nur durch manuelles Eingreifen fortgesetzt werden.

    " - -msgid "installer.localeSettingsInstructions" -msgstr "" -"Für einen vollständigen Unicode (UTF-8)-Support wählen Sie bitte UTF-8 für alle Zeichensatz-Einstellungen. Bitte beachten Sie, dass der Support zurzeit einen MySQL >= 4.1.1 or PostgreSQL >= 9.1.5 Datenbankserver zur Voraussetzung hat. Außerdem wird für den vollen Unicode-Support die mbstring-Bibliothek (in jüngeren PHP-Installationen meist standardmäßig aktiviert). Sollten Sie erweiterte Zeichensätze verwenden, kann es zu Schwierigkeiten kommen, wenn Ihr Server diese Anforderungen nicht erfüllt.\n" -"

    \n" -"Ihr Server untersützt aktuell mbstring: {$supportsMBString}" - -msgid "installer.allowFileUploads" -msgstr "Ihr Server erlaubt aktuell die Datei-Uploads: {$allowFileUploads}" - -msgid "installer.maxFileUploadSize" -msgstr "Ihr Server erlaubt aktuell das Hochladen von Dateien bis zu einer maximalen Dateigröße von: {$maxFileUploadSize}" - -msgid "installer.localeInstructions" -msgstr "Die Sprache, die Hauptsprache in Ihrem System sein soll. Bitte konsultieren Sie die OMP-Dokumentation, wenn Sie an der Unterstützung einer Sprache interessiert sind, die hier nicht aufgeführt ist." - -msgid "installer.additionalLocalesInstructions" -msgstr "Wählen Sie weitere Sprachen aus, die in diesem System unterstützt werden sollen. Verlage, die auf dieser Website gehostet sind, können diese Sprachen verwenden. Weitere Sprachen können ebenfalls jederzeit installiert werden, und zwar über das Website-Administration-Interface. Mit * markierte Regionaleinstellungen sind unter Umständen unvollständig." - -msgid "installer.filesDirInstructions" -msgstr "Geben Sie den vollständigen Pfadnamen zu einem bestehenden Verzeichnis an, in dem die hochgeladenen Dateien abgelegt werden sollen. Auf dieses Verzeichnis sollte kein direkter Zugriff von außen (vom Web aus) möglich sein. Bitte stellen Sie sicher, dass das Verzeichnis bereits existiert und es beschreibbar ist, bevor Sie mit der Installation beginnen. Für Windows-Pfadnamen sind Schrägstriche zu verwenden, z.B. \"C:/mypress/files\"." - -msgid "installer.databaseSettingsInstructions" -msgstr "Um die Daten ablegen zu können, benötigt OMP einen Zugriff auf eine SQL-Datenbank. Bitte beachten Sie die oben genannten Systemanforderungen für die aufgeführten unterstützten Datenbanken. In den darunter stehenden Feldern werden die Einstellungen angegeben, die zur Verbindung mit der Datenbank gesetzt werden müssen." - -msgid "installer.upgradeApplication" -msgstr "Open Monograph Press upgraden" - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

    WICHTIG!

    \n" -"

    Der Installer konnte die Konfigurationsdatei nicht automatisch überschreiben. Bevor Sie versuchen, das System zu verwenden, öffnen Sie bitte config.inc.php in einem geeigneten Texteditor und ersetzen Sie dessen Inhalte durch die Inhalte der unten stehenden Textbox.

    " - -msgid "installer.installationComplete" -msgstr "" -"

    Die OMP-Installation wurde erfolgreich abgeschlossen.

    \n" -"

    Um das System zu verwenden, loggen Sie sich auf der Login-Seite mit Ihrem Benutzernamen und Ihrem Passwort ein.

    \n" -"

    Wenn Sie Nachrichten und Updates erhalten möchten, melden Sie sich bitte bei http://pkp.sfu.ca/omp/register an. Wenn Sie irgendwelche Fragen stellen oder Kommentare abgeben möchten, besuchen Sie bitte das Supportforum.

    " - -msgid "installer.upgradeComplete" -msgstr "" -"

    Der Upgrade von OMP auf Version {$version} wurde erfolgreich abgeschlossen.

    \n" -"

    Vergessen Sie nicht, die \"installiert\"-Einstellung in Ihrer config.inc.php Konfigurationsdatei auf Ein zurückzusetzen.

    \n" -"

    Wenn Sie bisher noch nicht registriert sind und Neuigkeiten und Updates empfangen möchten, registireren Sie sich bitte unter http://pkp.sfu.ca/omp/register. Falls Sie Fragen oder Anmerkungen haben, besuchen Sie bitte das Supportforum.

    " - -msgid "log.review.reviewDueDateSet" -msgstr "Das Abgabedatum für Begutachtungsrunde {$round} von Manuskript {$submissionId} durch {$reviewerName} wurde auf den {$dueDate} festgesetzt." - -msgid "log.review.reviewDeclined" -msgstr "{$reviewerName} hat es abgelehnt, an der Begutachtungsrunde {$round} für Manuskript {$submissionId} teilzunehmen." - -msgid "log.review.reviewAccepted" -msgstr "{$reviewerName} hat der Teilnahme an der Begutachtungsrunde {$round} für Manuskript {$submissionId} zugestimmt." - -msgid "log.review.reviewUnconsidered" -msgstr "{$editorName} hat die Begutachtungsrunde {$round} für Manuskript {$submissionId} als 'nicht berücksichtigt' markiert." - -msgid "log.editor.decision" -msgstr "" -"Die Entscheidung des Herausgebers ({$decision}) zu Monographie " -"{$submissionId} wurde von {$editorName} protokolliert." - -msgid "log.editor.archived" -msgstr "Manuskript {$submissionId} wurde archiviert." - -msgid "log.editor.restored" -msgstr "Manuskript {$submissionId} wurde in die Warteschlange zurückgestellt." - -msgid "log.editor.editorAssigned" -msgstr "{$editorName} wurde als Herausgeber/in des Manuskripts {$submissionId} bestimmt." - -msgid "log.proofread.assign" -msgstr "{$assignerName} hat {$proofreaderName} zum Korrektor für Manuskript {$submissionId} bestimmt." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} hat {$submissionId} zur Planung eingereichtng." - -msgid "log.imported" -msgstr "{$userName} hat Monographie {$submissionId} importiert." - -msgid "notification.addedIdentificationCode" -msgstr "Code hinzugefügt." - -msgid "notification.editedIdentificationCode" -msgstr "Code bearbeitet." - -msgid "notification.removedIdentificationCode" -msgstr "Code entfernt." - -msgid "notification.addedPublicationDate" -msgstr "Erscheinungsdatum hinzugefügt." - -msgid "notification.editedPublicationDate" -msgstr "Erscheinungsdatum bearbeitet." - -msgid "notification.removedPublicationDate" -msgstr "Erscheinungsdatum entfernt." - -msgid "notification.addedPublicationFormat" -msgstr "Format hinzugefügt." - -msgid "notification.editedPublicationFormat" -msgstr "Format bearbeitet." - -msgid "notification.removedPublicationFormat" -msgstr "Format entfernt." - -msgid "notification.addedSalesRights" -msgstr "Vertriebsrechte hinzugefügt." - -msgid "notification.editedSalesRights" -msgstr "Vertriebsrechte bearbeitet." - -msgid "notification.removedSalesRights" -msgstr "Vertriebsrechte gelöscht." - -msgid "notification.addedRepresentative" -msgstr "Vertriebspartner hinzugefügt." - -msgid "notification.editedRepresentative" -msgstr "Vertriebspartner bearbeitet." - -msgid "notification.removedRepresentative" -msgstr "Vertriebspartner entfernt." - -msgid "notification.addedMarket" -msgstr "Absatzmarkt hinzugefügt." - -msgid "notification.editedMarket" -msgstr "Absatzmarkt bearbeitet." - -msgid "notification.removedMarket" -msgstr "Absatzmarkt gelöscht." - -msgid "notification.addedSpotlight" -msgstr "Spotlight hinzugefügt." - -msgid "notification.editedSpotlight" -msgstr "Spotlight bearbeitet." - -msgid "notification.removedSpotlight" -msgstr "Spotlight entfernt." - -msgid "notification.savedCatalogMetadata" -msgstr "Die Katalogmetadaten wurden gespeichert." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Die Metadaten dieses Formats wurden gespeichert." - -msgid "notification.proofsApproved" -msgstr "Korrekurfahnen akzeptiert." - -msgid "notification.removedSubmission" -msgstr "Das eingereichte Manuskript wurde gelöscht." - -msgid "notification.type.submissionSubmitted" -msgstr "Eine neue Monographie, \"{$title},\" wurde eingereicht." - -msgid "notification.type.editing" -msgstr "Bei der redaktionellen Bearbeitung aufgetretene Ereignisse" - -msgid "notification.type.reviewing" -msgstr "Bei der Begutachtung aufgetretene Ereignisse" - -msgid "notification.type.site" -msgstr "Auf der Webite aufgetretene Ereignisse" - -msgid "notification.type.submissions" -msgstr "Bei der Manuskripteinreichung aufgetretene Ereignisse" - -msgid "notification.type.userComment" -msgstr "Ein Leser hat einen Kommentar zu \"{$title}\" geschrieben." - -msgid "notification.type.editorAssignmentTask" -msgstr "" -"Eine neue Monographie wurde eingereicht. Sie muss noch einem Herausgeber/" -"einer Herausgeberin zugewiesen werden." - -msgid "notification.type.copyeditorRequest" -msgstr "Sie wurden um die Durchsicht der lektorierten Manuskripte \"{$file}\" gebeten." - -msgid "notification.type.layouteditorRequest" -msgstr "Sie wurden um die Durchsicht der Layout-Dateien \"{$title}\" gebeten." - -msgid "notification.type.indexRequest" -msgstr "Sie wurden gebeten, einen Index für \"{$title}\" zu erstellen." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Der interne Begutachtungsprozess wurde gestartet." - -msgid "notification.type.approveSubmission" -msgstr "Das eingereichte Manuskript muss noch im Katalogtool als akzeptiert gekennzeichnet werden. Sobald dies geschehen ist, wird es im öffentlichen Verlagskatalog erscheinen." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Warten auf Freigabe." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Es wurde noch keine Zahlungsweise konfiguriert." - -msgid "notification.type.configurePaymentMethod" -msgstr "Bevor Sie die E-Commerce-Einstellungen definieren können, müssen Sie zunächst eine Zahlungsweise konfigurieren." - -msgid "notification.type.visitCatalogTitle" -msgstr "Katalogverwaltung" - -msgid "user.authorization.invalidReviewAssignment" -msgstr "" -"Der Zugang wurde Ihnen verweigert, da Sie für diese Monographie nicht als " -"Gutachter/in zugelassen sind." - -msgid "user.authorization.monographAuthor" -msgstr "" -"Der Zugang wurde Ihnen verweigert, da Sie anscheinend nicht der Autor/die " -"Autorin dieser Monographie sind." - -msgid "user.authorization.monographReviewer" -msgstr "" -"Der Zugang wurde Ihnen verweigert, da diese Monographie Ihnen anscheinend " -"nicht zur Begutachtung zugewiesen wurde." - -msgid "user.authorization.monographFile" -msgstr "Der Zugang zu dieser Buchdatei wurde verweigert." - -msgid "user.authorization.invalidMonograph" -msgstr "Ungültiges Buch oder kein Buch angefordert!" - -#, fuzzy -msgid "user.authorization.noContext" -msgstr "Kein Verlag im Kontext!" - -msgid "user.authorization.seriesAssignment" -msgstr "" -"Sie versuchen, auf eine Monographie zuzugreifen, die nicht mehr zu Ihrer " -"Reihe gehört." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Zugriff verweigert! Sie sind nicht für dieses Stadium des Publikationsprozesses freigeschaltet." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "Zugriff verweigert! Die Benutzer/innengruppe, in der Sie aktuell aktiv sind, ist nicht mit dieser Phase des Publikationsprozesses befasst. Bitte überprüfen Sie Ihre Einstellungen." - -msgid "payment.directSales" -msgstr "Download von der Verlagswebseite" - -msgid "payment.directSales.price" -msgstr "Preis" - -msgid "payment.directSales.availability" -msgstr "Verfügbarkeit" - -msgid "payment.directSales.catalog" -msgstr "Katalog" - -msgid "payment.directSales.approved" -msgstr "Akzeptiert" - -msgid "payment.directSales.priceCurrency" -msgstr "Preis ({$currency})" - -msgid "payment.directSales.numericOnly" -msgstr "Preise sollten ausschließlich numerisch sein. Geben Sie keine Währungssymbole mit ein." - -msgid "payment.directSales.directSales" -msgstr "Direktvertrieb" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.notAvailable" -msgstr "Nicht verfügbar" - -msgid "payment.directSales.notSet" -msgstr "Nicht festgelegt" - -msgid "payment.directSales.openAccess" -msgstr "Open Access" - -msgid "payment.directSales.price.description" -msgstr "Dateiformate können den Lesern auf der Verlagswebseite entweder im Open Access oder gegen Bezahlung zum Download angeboten werden. (Für den kostenpflichten Download wird das unter 'Vertrieb' konfigurierte Online-Bezahlsystem verwendet.) Bitte geben Sie die Zugriffsbedingungen für diese Datei an." - -msgid "payment.directSales.validPriceRequired" -msgstr "Bitte geben Sie einen gültigen Preis (als Zahl) ein." - -msgid "payment.directSales.purchase" -msgstr "{$format} kaufen ({$amount} {$currency})" - -msgid "payment.directSales.download" -msgstr "{$format} herunterladen" - -msgid "payment.directSales.monograph.name" -msgstr "Download einer Monographie oder eines Kapitels erwerben" - -msgid "payment.directSales.monograph.description" -msgstr "Diese Transaktion dient dem Erwerb eines direkten Buch- oder Kapiteldownloads." - -msgid "debug.notes.helpMappingLoad" -msgstr "" -"XML Hilfe Mapping Datei {$filename} neu geladen bei der Suche von {$id}." - -msgid "rt.metadata.pkp.dctype" -msgstr "Buch" - -msgid "submission.pdf.download" -msgstr "PDF herunterladen" - -msgid "user.profile.form.showOtherContexts" -msgstr "Andere Verlage anzeigen" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Andere Verlage verbergen" - -msgid "grid.series.urlWillBe" -msgstr "Die URL der Reihe soll lauten {$sampleUrl}. 'Path' (deutsch \"Pfad\") ist eine Zeichenkette, durch die die Reihe eindeutig identifizierbar wird." - -msgid "submission.round" -msgstr "Durchgang {$round}" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Link zu Ihren Neuerscheinungen." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Neuerscheinungen" - -msgid "navigation.navigationMenus.category.description" -msgstr "Link zu einer Kategorie." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Kategorie" - -msgid "navigation.navigationMenus.series.description" -msgstr "Link zu einer Reihe." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Reihen" - -msgid "navigation.skip.spotlights" -msgstr "Zu Spotlights springen" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Link zu Ihrem Katalog." - -msgid "navigation.catalog.allMonographs" -msgstr "Alle Monographien" - -msgid "common.publications" -msgstr "Monographien" - -msgid "common.publication" -msgstr "Monographie" - -msgid "submission.search" -msgstr "Büchersuche" - -msgid "catalog.forthcoming" -msgstr "Neuerscheinungen" - -msgid "catalog.manage.isNotNewRelease" -msgstr "" -"Diese Monographie ist keine neue Veröffentlichung. Diese Monographie als " -"neue Veröffentlichung markieren." - -msgid "catalog.manage.isNewRelease" -msgstr "" -"Diese Monographie ist eine neue Veröffentlichung. Den Status der neuen " -"Veröffentlichung entfernen." - -msgid "catalog.manage.isNotFeatured" -msgstr "Diese Monographie wurde nicht gefeaturet. Diese Monographie featuren." - -msgid "catalog.manage.isFeatured" -msgstr "" -"Diese Monographie wurde gefeaturet. Feature für diese Monographie " -"zurückziehen." - -msgid "catalog.manage.nonOrderable" -msgstr "" -"Diese Monographie kann nicht bestellt werden bevor sie gefeaturet wurde." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Monographie wurde nicht gefeaturet." - -msgid "catalog.manage.featuredSuccess" -msgstr "Monographie wurde gefeaturet." - -msgid "catalog.manage.seriesFeatured" -msgstr "Gefeaturet in Reihe" - -msgid "catalog.manage.categoryFeatured" -msgstr "Gefeaturet in Kategorie" - -msgid "catalog.manage.featured" -msgstr "Gefeaturet" - -msgid "submissionGroup.assignedSubEditors" -msgstr "Zugewiesene Redakteur/innen" - -msgid "monograph.audience.success" -msgstr "Die Angaben zur Zielgruppe wurden aktualisiert." - -msgid "catalog.coverImageTitle" -msgstr "Umschlagbild" - -msgid "user.authorization.invalidPublishedSubmission" -msgstr "Die angegbene veröffentlichte Einreichung ist ungültig." - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "ausständige Einreichungen einsehen" - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Eine neue Einreichung anlegen" - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} oder {$viewSubmissions}." - -msgid "user.register.otherContextRoles" -msgstr "Die folgenden Rollen anfragen." - -msgid "user.reviewerPrompt.optin" -msgstr "" -"Ja, ich möchte Anfragen zugeschickt bekommen, wenn Reviews zu Einreichungen " -"dieses Verlag ausständig sind." - -msgid "notification.type.visitCatalog" -msgstr "" -"Die Monographie wurde zugelassen. Bitte nutzen Sie die obigen Links zu \"" -"Marketing\" und \"Publikation\" um die Details der Monographie zu bearbeiten." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "" -"Die Monographie wird nicht im Katalog gelistet, bevor sie publiziert wurde. " -"Um dieses Buch dem Katalog hinzuzufügen, klicken Sie bitte auf den Tab " -"Publikation." - -msgid "notification.type.public" -msgstr "Öffentliche Ankündigungen" - -msgid "log.editor.recommendation" -msgstr "" -"Eine Bearbeiter/innen-Empfehlung ({$decision}) für Monographie " -"{$submissionId} wurde von {$editorName} gemacht." - -msgid "installer.updatingInstructions" -msgstr "" -"Wenn Sie eine existierende Installation von OMP aktualisieren, klicken Sie <" -"a href=\"{$upgradeUrl}\">hier um fortzufahren." - -msgid "about.aboutSoftware" -msgstr "Über Open Monograph Press" - -msgid "about.aboutContext" -msgstr "Über den Verlag" - -msgid "site.noPresses" -msgstr "Es sind keine Verlage verfügbar." - -msgid "user.register.form.privacyConsentThisContext" -msgstr "" -"Ja, ich stimme zu, dass meine Daten erfasst und gespeichert werden wie in " -"der Datenschutzerklärung des " -"Verlags angegeben." - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Falls Sie Reviewer eines Verlags werden wollen, geben Sie bitte Ihre " -"Fachgebiete an." - -msgid "user.register.contextsPrompt" -msgstr "Für welche Verlage dieser Seite möchten Sie sich registrieren?" - -msgid "user.reviewerPrompt.userGroup" -msgstr "Ja, die {$userGroup} Rolle anfragen." - -msgid "user.reviewerPrompt" -msgstr "" -"Wären Sie einverstanden, Einreichungen dieses Verlags einem Review zu " -"unterziehen?" - -msgid "user.authorization.representationNotFound" -msgstr "Das angeforderte Publikationsformat konnte nicht gefunden werden." - -msgid "catalog.manage.findSubmissions" -msgstr "Finden Sie Monographien zur Aufnahme in den Katalog" - -msgid "catalog.manage.submissionsNotFound" -msgstr "Eine oder mehrere der Einreichungen konnten nicht gefunden werden." - -msgid "catalog.manage.noSubmissionsSelected" -msgstr "Es wurden keine Einreichungen zur Aufnahme in den Katalog ausgewählt." - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" -"

    Die Metadaten für dieses Format freigeben. Metadaten können im Bereich \"" -"Bearbeiten\" für jedes Format überprüft werden.

    " - -msgid "grid.catalogEntry.isbn10.description" -msgstr "Ein 10-stelliger ISBN-Code, z.B. 951-98548-9-4." - -msgid "grid.catalogEntry.isbn13.description" -msgstr "Ein 13-stelliger ISBN-Code, z.B. 978-951-98548-9-2." - -msgid "grid.catalogEntry.isbn" -msgstr "ISBN" - -msgid "common.payments" -msgstr "Zahlungen" - -msgid "grid.catalogEntry.chapters" -msgstr "Kapitel" - -msgid "search.results.orderDir.desc" -msgstr "Absteigend" - -msgid "search.results.orderDir.asc" -msgstr "Aufsteigend" - -msgid "search.results.orderBy.relevance" -msgstr "Relevanz" - -msgid "search.results.orderBy.popularityMonth" -msgstr "Beliebtheit (Letzter Monat)" - -msgid "search.results.orderBy.popularityAll" -msgstr "Beliebtheit (All Time)" - -msgid "search.results.orderBy.press" -msgstr "Verlagstitel" - -msgid "search.results.orderBy.monograph" -msgstr "Monographientitel" - -msgid "search.results.orderBy.date" -msgstr "Publikationsdatum" - -msgid "search.results.orderBy.author" -msgstr "Autor/in" - -msgid "search.results.orderBy.article" -msgstr "Artikeltitel" diff --git a/locale/de_DE/manager.po b/locale/de_DE/manager.po deleted file mode 100644 index fc7c1da891a..00000000000 --- a/locale/de_DE/manager.po +++ /dev/null @@ -1,1478 +0,0 @@ -# Pia Piontkowitz , 2021, 2022. -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2022-02-22 11:05+0000\n" -"Last-Translator: Pia Piontkowitz \n" -"Language-Team: German \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "" -"Damit werden alle bisher vorgenommenen Anpassungen für diese " -"Regionaleinstellungen ersetzt" - -msgid "manager.languages.noneAvailable" -msgstr "Leider sind keine weiteren Sprachen verfügbar. Kontaktieren Sie Ihre/n Website-Administrator/in, wenn Sie weitere Sprachen verwenden möchten." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Diese Sprache wird die voreingestellte Sprache für die Verlagswebsite sein." - -msgid "manager.series.form.mustAllowPermission" -msgstr "Bitte stellen Sie sicher, dass für die Zuweisung der Reihe zu einem/einer Reihenherausgeber/in zumindest eine Checkbox aktiviert wurde." - -msgid "manager.series.form.reviewFormId" -msgstr "Stellen Sie sicher, dass Sie ein gültiges Gutachtenformular gewählt haben." - -msgid "manager.series.submissionIndexing" -msgstr "Wird nicht in die Indizierung eingeschlossen" - -msgid "manager.series.editorRestriction" -msgstr "Titel können nur von Herausgeber/innen und Reihenherausgeber/innen eingereicht werden." - -msgid "manager.series.confirmDelete" -msgstr "Sind Sie sicher, dass Sie die Reihe endgültig löschen wollen?" - -msgid "manager.series.indexed" -msgstr "Indiziert" - -msgid "manager.series.open" -msgstr "Offene Einreichungen" - -msgid "manager.series.readingTools" -msgstr "Lesewerkzeuge" - -msgid "manager.series.submissionReview" -msgstr "Kein Peer Review" - -msgid "manager.series.submissionsToThisSection" -msgstr "In dieser Reihe eingereichte Manuskripte" - -msgid "manager.series.abstractsNotRequired" -msgstr "Keine Abstracts verlangen" - -msgid "manager.series.disableComments" -msgstr "Leser/innenkommentarfunktion für diese Serie deaktivieren." - -msgid "manager.series.book" -msgstr "Buchreihe" - -msgid "manager.series.create" -msgstr "Reihe anlegen" - -msgid "manager.series.policy" -msgstr "Beschreibung der Reihe" - -msgid "manager.series.assigned" -msgstr "Herausgeber/innen dieser Reihe" - -msgid "manager.series.seriesEditorInstructions" -msgstr "Fügen Sie eine/n Reihenherausgeber/in aus der Liste der verfügbaren Reihenherausgeber/innen hinzu. Legen Sie anschließend fest, ob der/die Reihenherausgeber/in den Begutachtungsprozess koordinieren UND die Redaktion (Lektorat, Layout und Korrekturlesen) der Manuskripte dieser Reihe übernehmen oder nur eine der beiden Aufgabenfelder wahrnehmen soll. Möchten Sie eine/n Reihenherausgeber/in neu anlegen, gehen Sie über \"Verwaltung\" > \"Einstellungen und Funktionen\" auf \"Funktionen\" und klicken Sie dort auf Reihenherausgeber/innen ." - -msgid "manager.series.hideAbout" -msgstr "Diese Reihe nicht unter \"Über uns\" anzeigen." - -msgid "manager.series.unassigned" -msgstr "Verfügbare Reihenherausgeber/innen" - -msgid "manager.series.form.abbrevRequired" -msgstr "Für Reihen wird ein Kurztitel benötigt." - -msgid "manager.series.form.titleRequired" -msgstr "Es wird ein Titel für die Reihe benötigt." - -msgid "manager.series.noneCreated" -msgstr "Es wurde keine Reihe angelegt." - -msgid "manager.series.existingUsers" -msgstr "Bestehende Benutzer/innen" - -msgid "manager.series.seriesTitle" -msgstr "Reihentitel" - -msgid "manager.series.restricted" -msgstr "Verbieten Sie Autor/innen, direkt bei dieser Reihe einzureichen." - -msgid "manager.settings" -msgstr "Einstellungen" - -msgid "manager.settings.pressSettings" -msgstr "Verlagseinstellungen" - -msgid "manager.settings.press" -msgstr "Verlag" - -msgid "manager.settings.publisher.identity.description" -msgstr "" -"Diese Felder werden zwar nicht grundsätzlich für die Verwendung von OMP, " -"aber zur Erzeugung gültiger ONIX-Metadaten benötigt. Bitte fügen Sie sie ein, wenn " -"Sie die ONIX-Funktionalität verwenden möchten." - -msgid "manager.settings.publisher" -msgstr "Verlagsname" - -msgid "manager.settings.location" -msgstr "Standort" - -msgid "manager.settings.publisherCodeType" -msgstr "Verlagscode-Typ" - -msgid "manager.settings.publisherCode" -msgstr "Verlagscode" - -msgid "manager.settings.distributionDescription" -msgstr "Einstellungen, die den Vertrieb betreffen (Benachrichtigung, Indizierung, Archivierung, Bezahlung, Lesewerkzeuge)." - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Monographie herunterladen" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Seitenaufrufe Abstract" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Abstract der Monographie und Downloads" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Seitenaufrufe Hauptseite der Reihe" - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Seitenaufrufe Hauptseite des Verlags" - -msgid "manager.tools" -msgstr "Werkzeuge" - -msgid "manager.tools.importExport" -msgstr "" -"Für den Datenimport/-export (Verlage, Monographien, Benutzer/innen) " -"spezifische Werkzeuge" - -msgid "manager.tools.statistics" -msgstr "Werkzeuge um Berichte zu erzeugen, die sich auf Nutzungsstatistiken beziehen (Anzeigen des Katalogs, Anzeigen von Buchabstracts, Buchdownloads)" - -msgid "manager.users.availableRoles" -msgstr "Vorhandene Funktionen" - -msgid "manager.users.currentRoles" -msgstr "Aktuelle Funktionen" - -msgid "manager.users.selectRole" -msgstr "Funktion auswählen" - -msgid "manager.people.allPresses" -msgstr "Alle Verlage" - -msgid "manager.people.allSiteUsers" -msgstr "Eine/n Benutzer/in dieser Website für diesen Verlag eintragen" - -msgid "manager.people.allUsers" -msgstr "Alle registrierten Benutzer/innen" - -msgid "manager.people.confirmRemove" -msgstr "Möchten Sie diese/n Benutzer/in wirklich aus dem Verlag entfernen? Mit dieser Aktion wird die Person aus allen Funktionen entfernt, denen sie zugeordnet war." - -msgid "manager.people.enrollExistingUser" -msgstr "Eine/n bereits existierende/n Benutzer/in eintragen" - -msgid "manager.people.existingUserRequired" -msgstr "Sie müssen eine/n existierende/n Benutzer/in angeben." - -msgid "manager.people.enrollSyncPress" -msgstr "Beim Verlag" - -msgid "manager.people.mergeUsers.from.description" -msgstr "Wählen Sie eine/n Benutzer/in aus, deren/dessen Daten in einem anderen Konto zusammengeführt werden sollen (wenn jemand z.B. zwei Konten hat). Das zuerst ausgewählte Konto wird gelöscht, seine Beiträge, Aufgaben usw. werden dem zweiten Konto zugeschrieben." - -msgid "manager.people.mergeUsers.into.description" -msgstr "Wählen Sie ein Benutzer/innenkonto aus, auf das die bestehenden Autor/innenschaften, Aufgaben etc. übertragen werden sollen." - -msgid "manager.people.syncUserDescription" -msgstr "Bei dieser Synchronisation werden alle Benutzer/innen, die in einer bestimmten Funktion bei einem bestimmten Verlag eingetragen sind, in der gleichen Funktion auch in diesem Verlag eingetragen. Damit ist möglich, eine gemeinsame Benutzer/innengruppe (zum Beispiel Gutacher/innen) zwischen den Verlagen zu synchronisieren." - -msgid "manager.people.confirmDisable" -msgstr "" -"Möchten Sie diese/n Benutzer/in deaktivieren? Der/die Benutzer/in wird sich dann nicht mehr einloggen können.\n" -"\n" -"Sie können dem/der Benutzer/in den Grund für die Deaktivierung des Kontos nennen (optional)." - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Sie besitzen nicht die administrativen Rechte an diesem Benutzer/innenkonto. Grund dafür kann sein, dass:\n" -"\t\t
      \n" -"\t\t\t
    • der/die Benutzer/in Website-Administrator/in ist
    • \n" -"\t\t\t
    • der/die Benutzer/in in einem Verlag aktiv ist, den Sie nicht verwalten
    • \n" -"\t\t
    \n" -"\tDieser Task muss von einem Website-Administrator ausgeführt werden.\n" -"\t" - -msgid "manager.system" -msgstr "Systemeinstellungen" - -msgid "manager.system.archiving" -msgstr "Archivieren" - -msgid "manager.system.reviewForms" -msgstr "Gutachtenformulare" - -msgid "manager.system.readingTools" -msgstr "Lesewerkzeuge" - -msgid "manager.system.payments" -msgstr "Bezahlverfahren" - -msgid "user.authorization.pluginLevel" -msgstr "Sie haben keine ausreichende Berechtigung, um dieses Plugin zu verwalten." - -msgid "manager.pressManagement" -msgstr "Verlagsverwaltung" - -msgid "manager.setup" -msgstr "Setup" - -msgid "manager.setup.aboutItemContent" -msgstr "Inhalt" - -msgid "manager.setup.addAboutItem" -msgstr "Navigationspunkt zu 'Über uns' hinzufügen" - -msgid "manager.setup.addChecklistItem" -msgstr "Punkt zur Checkliste hinzufügen" - -msgid "manager.setup.addContributor" -msgstr "Beiträger/in hinzufügen" - -msgid "manager.setup.addItem" -msgstr "Punkt hinzufügen" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Punkt hinzufügen, der unter \"Über uns\" erscheint" - -msgid "manager.setup.addNavItem" -msgstr "Navigationspunkt hinzufügen" - -msgid "manager.setup.addSponsor" -msgstr "Sponsororganisation hinzufügen" - -msgid "manager.setup.announcements" -msgstr "Bekanntmachungen" - -msgid "manager.setup.announcementsDescription" -msgstr "Mithilfe von Bekanntmachungen können Sie Leser/innen über Neuigkeiten informieren und auf Veranstaltungen des Verlages hinweisen. Die Bekanntmachungen erscheinen auf der Seite 'Bekanntmachungen'." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Zusätzliche Informationen" - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "Fügen Sie weitere Informationen hinzu, die den Leser/innen auf der Seite 'Bekanntmachungen' angezeigt werden sollen." - -msgid "manager.setup.appearInAboutPress" -msgstr "(Erscheint in 'Über uns') " - -msgid "manager.setup.copyediting" -msgstr "Lektor/innen" - -msgid "manager.setup.copyeditInstructions" -msgstr "Lektoratsrichtlinien" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "Die Lektoratsrichtlinien sind den Lektor/innen, Autor/innen und Sektionsherausgeber/innen im Stadium 'Redaktionelle Bearbeitung' zugänglich. Unten auf der Seite befindet sich eine Reihe an Standardvorgaben in HTML. Sie können von der/dem Verlagsleiter/in an jeder Stelle verändert oder ersetzt werden (in HTML oder im Klartext)." - -msgid "manager.setup.copyrightNotice" -msgstr "Copyright-Vermerk" - -msgid "manager.setup.coverage" -msgstr "Inhaltlicher Umfang" - -msgid "manager.setup.customizingTheLook" -msgstr "Schritt 5. Look & Feel anpassen" - -msgid "manager.setup.customTags" -msgstr "Benutzerdefinierte Tags" - -msgid "manager.setup.customTagsDescription" -msgstr "Benutzerdefinierte HTML-Header-Tags, die auf jeder Seite in den Header eingefügt werden (zum Beispiel META-Tags)." - -msgid "manager.setup.details" -msgstr "Angaben" - -msgid "manager.setup.details.description" -msgstr "Verlagsname, Ansprechpartner/in, Sponsoren und Suchmaschinen." - -msgid "manager.setup.disableUserRegistration" -msgstr "Verlagsleiter/innen registrieren alle Benutzer/innen. Sie sind zusammen mit den Herausgeber/innen und Sektionsherausgeber/innen die einzigen, die Gutachter/innen registrieren können." - -msgid "manager.setup.discipline" -msgstr "Wissenschafltliche Disziplinen und Teildisziplinen" - -msgid "manager.setup.disciplineDescription" -msgstr "Dies ist nützlich, wenn der Verlag Disziplingrenzen überschreitet und/oder Autor/innen interdisziplinäre Veröffentlichungen einreichen." - -msgid "manager.setup.disciplineExamples" -msgstr "(z.B. Geschichte; Erziehungswissenschaften; Soziologie; Psychologie; Kulturwissenschaften; Rechtswissenschaften)" - -msgid "manager.setup.disciplineProvideExamples" -msgstr "Nennen Sie Beispiele für relevante akademische Disziplinen Ihres Verlages" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "" -"Fügen Sie ein Inhaltsverzeichnis für die aktuelle Monographie bei (falls " -"verfügbar)." - -msgid "manager.setup.displayOnHomepage" -msgstr "Homepage-Inhalt" - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Featured Bücher auf der Startseite anzeigen" - -msgid "manager.setup.displayInSpotlight" -msgstr "Bücher im Spotlight auf der Startseite anzeigen" - -msgid "manager.setup.displayNewReleases" -msgstr "Neuerscheinungen auf der Startseite anzeigen" - -msgid "manager.setup.doiPrefix" -msgstr "DOI-Präfix" - -msgid "manager.setup.doiPrefixDescription" -msgstr "Das DOI (Digital Object Identifier)-Präfix wird von CrossRef vergeben und hat das Format 10.xxxx (z.B. 10.1234)." - -msgid "manager.setup.editorDecision" -msgstr "Entscheidung des Herausgebers/der Herausgeberin" - -msgid "manager.setup.emailBounceAddress" -msgstr "E-Mail-Adresse für Unzustellbarkeitsnachrichten (Bounce Messages)" - -msgid "manager.setup.emailBounceAddress.description" -msgstr "Jede unzustellbare E-Mail führt zum Versand einer Fehlernachricht an diese E-Mail-Adresse." - -msgid "manager.setup.emails" -msgstr "E-Mail-Identifizierung" - -msgid "manager.setup.emailSignature" -msgstr "Signatur" - -msgid "manager.setup.emailSignatureDescription" -msgstr "Die folgende Signatur wird am Ende der vorbereiteten E-Mails stehen, die vom System im Namen des Verlages versendet werden. Den Inhaltsteil (Textteil) dieser E-Mails können Sie unten bearbeiten." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Ankündigungen freischalten" - -msgid "manager.setup.enablePressInstructions" -msgstr "Diesen Verlag für das öffentliche Erscheinen auf der Website freischalten" - -msgid "manager.setup.enablePublicMonographId" -msgstr "Benutzerdefinierte Kennungen werden verwendet, um veröffentlichte Titel zu identifizieren." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "Benutzerdefinierte Kennungen werden verwendet, um Fahnen (z.B. HTML- oder PDF-Dateien) für veröffentlichte Bände zu identifizieren." - -msgid "manager.setup.enableUserRegistration" -msgstr "Benutzer/innen können sich beim Verlag registrieren." - -msgid "manager.setup.focusAndScope" -msgstr "Verlagsprofil" - -msgid "manager.setup.focusAndScope.description" -msgstr "" -"Fügen Sie eine kurze Selbstdarstellung des Verlages (auf der Website unter " -"'Über uns' aufrufbar) ein, in der Sie Autor/innen, Leser/innen und " -"Bibliothekar/innen einen Eindruck von dem Spektrum an Monographien und " -"anderen Verlagsprodukten vermitteln, das der Verlag veröffentlichen wird." - -msgid "manager.setup.focusScope" -msgstr "Verlagsprofil" - -msgid "manager.setup.focusScopeDescription" -msgstr "BEISPIEL HTML-DATEN" - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "Für Autor/innen zur Indizierung ihres Werkes" - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "OMP setzt das Open Archives Initiative Protocol for Metadata Harvesting ein, welches ein zukünftiger Standard für die weltweite Abfrage und Übertragung von Metadaten ist. Die Autoren werden ein entsprechendes Template verwenden, um die Metadaten für ihr Manuskript zu liefern. Der/die Verlagsleiter/in sollte die Kategorien für die Indizierung auswählen und den Autoren Beispiele zeigen, um ihnen beim Indizieren ihrer Werke zu helfen; die Kategoriebegriffen werden dabei jeweils mit einem Semikolon voneinander getrennt (zum Beispiel: Begriff 1; Begriff 2). Die Einträge sollten als Beispiele kenntlich gemacht werden, in dem \"z.B.\" oder \"zum Beispiel\" vorangestellt wird." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Die E-Mail-Adresse des Hauptansprechpartners wird benötigt." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Der Name des zentralen Ansprechpartners wird benötigt." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Bitte geben Sie die Zahl der Gutachter pro Manuskript an." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Die E-Mail des Supports wird benötigt." - -msgid "manager.setup.form.supportNameRequired" -msgstr "Der Supportname wird benötigt." - -msgid "manager.setup.generalInformation" -msgstr "Allgemeine Informationen" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Schritt 1: Sich mit dem System vetraut machen" - -msgid "manager.setup.guidelines" -msgstr "Leitfaden" - -msgid "manager.setup.preparingWorkflow" -msgstr "Schritt 3: Den Workflow vorbereiten" - -msgid "manager.setup.information.description" -msgstr "Diese kurzen Beschreibungen des Verlages, gerichtet an Bibliothekar/innen, interessierte Autor/innen und Leser/innen, erscheinen in der Sidebar unter dem Punkt 'Informationen'." - -msgid "manager.setup.information.forAuthors" -msgstr "Für Autor/innen" - -msgid "manager.setup.information.forLibrarians" -msgstr "Für Bibliothekar/innen" - -msgid "manager.setup.information.forReaders" -msgstr "Für Leser/innen" - -msgid "manager.setup.institution" -msgstr "Institution" - -msgid "manager.setup.labelName" -msgstr "Labelname" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Layouter/in" - -msgid "manager.setup.layoutInstructions" -msgstr "Layoutrichtlinien" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "Für die Formatierung von Veröffentlichungen können Layoutrichtlinien erstellt und unten entweder in HTML oder in Klartext eingefügt werden. Sie stehen dem Layouter und dem Sektionsherausgeber auf der Editierseite jedes Manuskripts zur Verfügung. (Da jeder Verlag seine eigenen Dateiformate, bibliographischen Standards, Stylesheets etc. verwenden kann, sind keine Standardlayoutrichtlinien vorgesehen.)" - -msgid "manager.setup.layoutTemplates" -msgstr "Layoutvorlagen" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "" -"Als Richtlinie für Layouter/innen und Korrektor/innen können Sie unter " -"'Layout' Templates für jedes der Standardformate des Verlags (Monographien, " -"Buchbesprechungen etc.) in einem Dateiformat Ihrer Wahl (pdf, doc etc. ) " -"hochladen und sie mit Anmerkungen bezüglich der zu verwendenden Schriften, " -"Größen, Randbreiten etc. versehen." - -msgid "manager.setup.layoutTemplates.file" -msgstr "Template-Datei" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Titel" - -msgid "manager.setup.lists" -msgstr "Listen" - -msgid "manager.setup.look" -msgstr "Aussehen" - -msgid "manager.setup.look.description" -msgstr "Homepage-Header, Inhalt, Verlags-Header, Footer, Navigationsleiste und Stylesheet." - -msgid "manager.setup.settings" -msgstr "Einstellungen" - -msgid "manager.setup.management.description" -msgstr "Zugriff und Sicherheit, Terminplanung, Bekanntmachungen, Lektorat, Layout und Korrektorat." - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Management der grundlegenden redaktionellen Schritte" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Setup des Verwaltungs- und Veröffentlichungsprozesses" - -msgid "manager.setup.managingThePress" -msgstr "Schritt 4: Einstellungen verwalten" - -msgid "manager.setup.noImageFileUploaded" -msgstr "Es wurde kein Bild hochgeladen." - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "Es wurde kein Stylesheet hochgeladen." - -msgid "manager.setup.note" -msgstr "Hinweis" - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "Wurde das Manuskript von mehreren Autor/innen gemeinschaftlich verfasst, fügen Sie bitte in der Benachrichtungsmail an den Autor die E-Mail-Adressen aller Autor/innen mit ein, nicht nur diejenige der Person, die das Manuskript eingereicht hat." - -msgid "manager.setup.noUseCopyeditors" -msgstr "Das Lektorat liegt in der Zuständigkeit von Herausgeber/in oder Sektionsherausgeber/in." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "Ein Herausgeber oder Sektionsherausgeber, dem das Manuskript zugewiesen wurden, bearbeitet die HTML-, PDF (etc.)-Dateien." - -msgid "manager.setup.noUseProofreaders" -msgstr "Ein Herausgeber oder Sektionsherausgeber, dem das Manuskript zugewiesen wurde, prüft die Fahnen." - -msgid "manager.setup.numPageLinks" -msgstr "Links" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Zugriff auf die Verlagsinhalte" - -msgid "manager.setup.onlineIssn" -msgstr "ISSN für digitale Medien" - -msgid "manager.setup.policies" -msgstr "Leitlinien" - -msgid "manager.setup.policies.description" -msgstr "Fokus, Peer Review, Sektionen, Datenschutz, Sicherheit und zusätzliche 'Über ...'-Punkte.." - -msgid "manager.setup.appearanceDescription" -msgstr "Verschiedene Komponenten des Verlagsauftrittes können von dieser Seite aus konfiguriert werden, z.B. Header- und Footerelemente, Style und Theme des Verlags sowie die Gestaltung der Listen." - -msgid "manager.setup.pressDescription" -msgstr "Beschreibung des Verlags" - -msgid "manager.setup.pressDescription.description" -msgstr "Fügen Sie hier bitte eine allgemeine Beschreibung des Verlages ein. Sie erscheint auf der Verlagshomepage." - -msgid "manager.setup.pressArchiving" -msgstr "Archivierung" - -msgid "manager.setup.homepageContent" -msgstr "Inhalt" - -msgid "manager.setup.homepageContentDescription" -msgstr "Die Verlagshomepage besteht standardmäßig aus Links zur Navigation. Zusätzlicher Inhalt kann zur Homepage hinzugefügt werden, indem eine oder mehrere der folgenden Optionen verwendet werden. Sie erscheinen auf der Homepage in der Reihenfolge, wie sie auf dieser Seite aufgeführt sind." - -msgid "manager.setup.pressHomepageContent" -msgstr "Inhalt" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "Die Verlagshomepage besteht standardmäßig aus Links zur Navigation. Zusätzlicher Inhalt kann zur Homepage hinzugefügt werden, indem eine oder mehrere der folgenden Optionen verwendet werden. Sie erscheinen auf der Homepage in der Reihenfolge, wie sie auf dieser Seite aufgeführt sind." - -msgid "manager.setup.contextInitials" -msgstr "Verlagsinitialen" - -msgid "manager.setup.layout" -msgstr "Verlagslayout" - -msgid "manager.setup.pageHeader" -msgstr "Header der Website" - -msgid "manager.setup.pageHeaderDescription" -msgstr "Konfiguration des Headers der Seite" - -msgid "manager.setup.pressPolicies" -msgstr "Schritt 2: Leitlinien des Verlags" - -msgid "manager.setup.pressSetup" -msgstr "Setup" - -msgid "manager.setup.pressSetupUpdated" -msgstr "Das Setup wurde aktualisiert." - -msgid "manager.setup.styleSheetInvalid" -msgstr "Ungültiges Stylesheetformat. Akzeptiert wird das Format css." - -msgid "manager.setup.pressTheme" -msgstr "Verlags-Theme" - -msgid "manager.setup.contextTitle" -msgstr "Verlagsname" - -msgid "manager.setup.printIssn" -msgstr "ISSN der Printausgabe" - -msgid "manager.setup.proofingInstructions" -msgstr "Korrekturrichtlinien" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "Die Korrekturrichtlinien werden Korrektor/innen, Autor/innen, Layouter/innen und Bereichsherausgeber/innen im Stadium 'Redaktionelle Bearbeitung' zugänglich gemacht. Unten finden Sie Standardrichtlinien in HTML, die von dem/der Verlagsleiter/in bearbeitet oder ersetzt werden können (in HTML oder im Klartext)." - -msgid "manager.setup.proofreading" -msgstr "Korrektoren" - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Stelle den Layoutern Anleitungen zur Verfügung.." - -msgid "manager.setup.publicationScheduleDescription" -msgstr "" -"Beiträge können zusammen veröffentlicht werden, als Teile einer Monographie " -"mit einem eigenen Inhaltsverzeichnis. Es ist aber auch möglich, sie einzeln " -"zu publizieren, indem man die Beiträge dem Inhaltsverzeichnis eines \"" -"laufenden\" Bandes hinzufügt. Informieren Sie Ihre Leser/innen unter 'Über " -"uns' darüber, welches Verfahren der Verlag verwenden wird und wie häufig " -"neue Publikationen erscheinen werden." - -msgid "manager.setup.publisher" -msgstr "Verlag" - -msgid "manager.setup.publisherDescription" -msgstr "Der Name der Organisation, die den Verlag führt, erscheint unter 'Über uns'." - -msgid "manager.setup.referenceLinking" -msgstr "Reference Linking (Verknüpfung von Literaturzitaten mit elektronischen Volltexten)" - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Layoutrichtlinien für Reference Linking" - -msgid "manager.setup.restrictMonographAccess" -msgstr "" -"Benutzer/innen müssen registriert und eingeloggt sein, um Open-Access-" -"Inhalte sehen zu können." - -msgid "manager.setup.restrictSiteAccess" -msgstr "Benutzer/innen müssen registriert und eingeloggt sein, um sich die Verlagswebsite anschauen zu können." - -msgid "manager.setup.reviewGuidelines" -msgstr "Leitfäden für externe Begutachtungen" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "Die Leitfäden für die externe Begutachtachtung geben den externen Gutachter/innen Kriterien an die Hand, mit denen sie die Eignung des eingereichten Manuskripts beurteilen können. Die Leitfäden können auch genaue Anweisungen zur Erstellung eines gelungenen und aussagekräftigen Gutachens enthalten. Den Gutachter/innen werden bei der Erstellung der Gutachten zwei offene Textboxen angezeigt, die erste ist für Gutachten, die \"an Autor/in und Herausgeber/in\" adressiert werden sollen, die zweite für Gutachten, die nur \"an den/die Herausgeber/in\" gehen sollen. Alternativ dazu kann der Verlagsleiter auch selbst Begutachtungsformulare unter 'Gutachen-Formulare' anlegen. In allen Fällen haben die Herausgeber/innen aber immer die Möglichkeit, die Gutachten in ihre Korrespondenz mit dem Autor/der Autorin einzufügen." - -msgid "manager.setup.internalReviewGuidelines" -msgstr "Leitfäden für interne Begutachtungen" - -msgid "manager.setup.internalReviewGuidelinesDescription" -msgstr "Wie die Leitfäden für die externe Begutachtung liefern diese Anleitungen den Gutachter/innen Informationen zu Bewertung des eingereichten Manuskripts. Diese Anleitungen sind für interne Gutachter/innen, die generell den Begutachtungsprozess verlagsintern durchführen." - -msgid "manager.setup.reviewOptions" -msgstr "Begutachtungsoptionen" - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Automatisierte E-Mail-Erinnerungen" - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "Bitte beachten Sie: Um diese Optionen zu aktivieren, muss der Administrator/die Administratorin die scheduled_tasks-Option in der OMP-Konfigurationdatei freigeben. Eventuell ist eine weitere Konfiguration des Servers nötig, um diese Funktionalität zu unterstützen (dies ist unter Umständen nicht auf allen Servern möglich). Nähere Informationen dazu finden Sie in der OMP-Dokumentation." - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "Nach Abschluss der Begutachtung bewerten die Herausgeber/innen die Gutachter/innen auf einer Fünf-Punkte-Qualitätsskala bewerten." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "Die Gutachter/innen haben erst dann Zugang zu den Manuskriptdateien, wenn sie der Begutachtung zugestimmt haben." - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Zugang für Gutachter/innen" - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Gutachterbewertungen" - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Gutachtererinnerungen" - -msgid "manager.setup.reviewPolicy" -msgstr "Begutachtungsleitlinien" - -msgid "manager.setup.searchEngineIndexing" -msgstr "Suchmaschinen-Indizierung" - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "" -"Helfen Sie Suchmaschinen wie Google dabei, Ihre Seite zu finden und " -"anzuzeigen. Erstellen Sie dafür eine sitemap." - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Sektionen und Sektionsherausgeber/innen" - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "" -"(Wurden keine Sektionen hinzugefügt, werden die Titel standardmäßig der " -"Sektion Monographien zugeordnet.)" - -msgid "manager.setup.sectionsDescription" -msgstr "" -"Um Sektionen anzulegen oder zu verändern (z.B. Monographien, Buchrezensionen)" -", gehen Sie bitte zu 'Sektionsmanagement'.

    Autor/innen, die eine " -"Publikation beim Verlag einreichen, werden es der entsprechenden Sektion " -"zuordnen." - -msgid "manager.setup.securitySettings" -msgstr "Zugangs- und Sicherheitseinstellungen" - -msgid "manager.setup.securitySettings.note" -msgstr "Andere auf die Sicherheit der Website und auf deren Zugang bezogene Optionen können von der Seite Zugang und Sicherheit aus konfiguriert werden." - -msgid "manager.setup.selectEditorDescription" -msgstr "Leitende/r Herausgeber/in zur Betreuung des gesamten Publikationsprozesses." - -msgid "manager.setup.selectSectionDescription" -msgstr "Verlagssektion, für die der Titel vorgesehen ist." - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "Zeige immer Links zu den Druckfahnen und weise auf Zugangsbeschränkungen hin." - -msgid "manager.setup.stepsToPressSite" -msgstr "Fünf Schritte zur Verlagswebsite" - -msgid "manager.setup.subjectExamples" -msgstr "(z.B. Photosynthese; Schwarze Löcher; Vier-Farben-Satz; Bayes'scher Wahrscheinlichkeitsbegriff)" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Schlüsselwörter" - -msgid "manager.setup.subjectProvideExamples" -msgstr "Geben Sie Beispiele für Schlüsselwörter oder Themengebiete als Orientierung für die Autoren" - -msgid "manager.setup.submissionGuidelines" -msgstr "Richtlinien für die Einreichung" - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Einreichungs-Checkliste" - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "Dieser Punkt der Checkliste muss bestätigt sein." - -msgid "manager.setup.workflow" -msgstr "Workflow" - -msgid "manager.setup.submissions.description" -msgstr "Leitfaden für Autoren, Copyright und Indizierung (einschließlich Registrierung)." - -msgid "manager.setup.typeExamples" -msgstr "(z.B. historische Untersuchung; quasi-experimentelle Studie; literarische Analyse; Umfrage/Interview)" - -msgid "manager.setup.typeMethodApproach" -msgstr "Typ (Methode/Ansatz)" - -msgid "manager.setup.typeProvideExamples" -msgstr "Nennen Sie Beispiele für relevante Forschungsarten, -methoden und -ansätze auf diesem Feld" - -msgid "manager.setup.useCopyeditors" -msgstr "Jedem Manuskript wird ein/e Lektor/in zugewiesen." - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "Ein Redaktioneller Beirat/Gutachterbeirat wird vom Verlag eingesetzt." - -msgid "manager.setup.useImageTitle" -msgstr "Titelbild" - -msgid "manager.setup.useStyleSheet" -msgstr "Formatvorlage des Verlags" - -msgid "manager.setup.useLayoutEditors" -msgstr "Aufgabe des Layouters ist es, HTML-, PDF- und andere Dateien für die elektronische Veröffentlichtung vorzubereiten." - -msgid "manager.setup.useProofreaders" -msgstr "Ein/e Korrektor/in wird bestimmt, um (zusammen mit den Autoren/innen) die Fahnen im letzten Schritt vor der Veröffentlichung gegenzulesen." - -msgid "manager.setup.userRegistration" -msgstr "Benutzerregistrierung" - -msgid "manager.setup.useTextTitle" -msgstr "Seitentitel der Website" - -msgid "manager.setup.volumePerYear" -msgstr "Bände pro Jahr" - -msgid "manager.setup.publicationFormat.code" -msgstr "Format" - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "Bitte wählen Sie ein Format aus." - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "Sie müssen diesem Format einen Namen zuweisen." - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "Ist es ein physisches (nicht-digitales) Format?" - -msgid "manager.setup.publicationFormat.inUse" -msgstr "Dieses Format kann nicht gelöscht werden, da zurzeit ein Buch Ihres Verlages in diesem Format erscheint." - -msgid "manager.setup.newPublicationFormat" -msgstr "Neues Format" - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "Um ein neues Format anzulegen, füllen Sie bitte das unten stehende Formular aus und klicken dann auf den Button 'Erstellen'." - -msgid "manager.setup.genresDescription" -msgstr "Diese Genres bilden einen Bestandteil des Dateinamen. Beim Hochladeprozess werden die Manuskriptdateien in einem Pull-down-Menü angezeigt. Genres, die mit ## gekennzeichnet sind, können sowohl mit dem ganzen Buch 99Z oder mit einem bestimmten Kapitel über Angabe einer Nummer (z.B. 02) verbunden werden." - -msgid "manager.setup.genres" -msgstr "Genres" - -msgid "manager.setup.newGenre" -msgstr "Neues Genre" - -msgid "manager.setup.newGenreDescription" -msgstr "Um ein neues Genre anzulegen, füllen Sie die unten stehenden Felder aus und klicken Sie auf 'Erstellen'." - -msgid "manager.setup.deleteSelected" -msgstr "Ausgewählte Elemente löschen" - -msgid "manager.setup.restoreDefaults" -msgstr "Grundeinstellungen wiederherstellen" - -msgid "manager.setup.prospectus" -msgstr "Leitfaden für das Exposé" - -msgid "manager.setup.prospectusDescription" -msgstr "Der Leitfaden für Exposés soll dem Autor/der Autorin dabei helfen soll, die eingereichten Materialien so zu beschreiben, dass der Verlag daraus den Wert der Einreichung erkennen kann. Der Verlag stellt dazu ein vorbereitetes Exposé als Orientierungshilfe zur Verfügung. Das Exposé kann eine Vielzahl verschiedener Punkte enthalten - vom Marktpotenzial bis zum theoretischen Wert; in jedem Fall sollte der Verlag einen Exposéleitfaden erstellen, der die eigene Verlagsagenda ergänzt." - -msgid "manager.setup.submitToCategories" -msgstr "Einreichung in einer Kategorie zulassen" - -msgid "manager.setup.submitToSeries" -msgstr "Einreichung in einer Reihe zulassen" - -msgid "manager.setup.issnDescription" -msgstr "Die ISSN (International Standard Serial Number) ist eine aus acht Ziffern bestehende Nummer, die periodisch erscheinende Veröffentlichungen - dazu zählen auch elektronische Zeitschriften (E-Journals) - als solche identifiziert. Sie wird von einem weltweit arbeitenden Netzwerk von Nationalzentren verwaltet. Die Koordinierung erfolgt über das ISSN International Centre mit Sitz in Paris, unterstützt von der Unesco und der französischen Regierung. ISSN können jederzeit über ISSN web site bezogen werden." - -msgid "manager.setup.currentFormats" -msgstr "Aktuelle Formate" - -msgid "manager.setup.categoriesAndSeries" -msgstr "Kategorien und Reihen" - -msgid "manager.setup.categories.description" -msgstr "Sie können eine Liste von Kategorien anlegen, um Ihre Publikationen besser organisieren zu können. Kategorien sind Gruppierungen von Büchern zu bestimmten Sachbegriffen, zum Beispiel zu Wirtschaft; Literatur; Poesie und so weiter. Kategorien können 'Eltern'-Kategorien untergeordnet werden: Zum Beispiel kann die Elternkategorie 'Wirtschaft\" die beiden Individuen 'Mikroökonomie' und 'Makroökonomie' mit einschließen. Besucher der Website können nach Kategorien suchen und in den Kategorien browsen." - -msgid "manager.setup.series.description" -msgstr "Sie können eine unbegrenzte Anzahl von Reihen anlegen. Eine Reihe stellt eine Zusammenstellung von Büchern zu einem bestimmten Thema dar. Normalerweise wird das Thema oder der Gegenstand der Reihe von ein oder zwei Mitgliedern einer Fakultät vorgeschlagen. Sie betreuen auch die Reihe und überwachen deren Qualität. Besucher der Website können nach Reihen suchen und browsen." - -msgid "manager.setup.reviewForms" -msgstr "Gutachtenformulare" - -msgid "manager.setup.roleType" -msgstr "Funktionstyp" - -msgid "manager.setup.authorRoles" -msgstr "Funktionen von \"Autor/in\"" - -msgid "manager.setup.managerialRoles" -msgstr "Funktionen von \"Manager/in\"" - -msgid "manager.setup.availableRoles" -msgstr "Verfügbare Funktionen" - -msgid "manager.setup.currentRoles" -msgstr "Aktuelle Funktionen" - -msgid "manager.setup.internalReviewRoles" -msgstr "Funktionen von \"Interne/r Gutachter/in\"" - -msgid "manager.setup.masthead" -msgstr "Impressum" - -msgid "manager.setup.editorialTeam" -msgstr "Herausgeber/innen" - -msgid "manager.setup.editorialTeam.description" -msgstr "Das Impressum sollte ein Liste der Herausgeber/innen und Geschäftsführer/innen sowie anderer Personen enthalten, die mit dem Verlag in Verbindung stehen. Hier eingegebene Informationen erscheinen unter 'Über uns'." - -msgid "manager.setup.files" -msgstr "Dateien" - -msgid "manager.setup.productionTemplates" -msgstr "Vorlagen für die Herstellung" - -msgid "manager.files.note" -msgstr "Hinweis: Der Dateimanager ist ein erweitertes Feature, das es erlaubt, dem Verlag zugeordnete Dateien und Verzeichnisse direkt anzuschauen und zu ändern." - -msgid "manager.setup.copyrightNotice.sample" -msgstr "" -"

    Vorgeschlagener Text für den Creative Commons Copyright-Vermerk

    \n" -"

    Vorgeschlagene Leitlinie für Verlage, die Open Access anbieten

    \n" -"Autor/innen, die in diesem Verlag veröffentlichen, stimmen den folgenden " -"Bedingungen zu:\n" -"
      \n" -"\t
    1. Autor/innen behalten das Urheberrecht an dem Werk und gewähren dem " -"Verlag das Recht zu dessen Erstveröffentlichung. Parallel dazu wird das Werk " -"unter eine Creative Commons Attribution License gestellt. Diese erlaubt " -"es anderen, das Werk weiterzuverbreiten, unter der Bedingung, dass der Autor/" -"die Autorin benannt und auf die Erstveröffentlichung in diesem Verlag " -"hingewiesen wird.
    2. \n" -"\t
    3. Autor/innen können weitere, gesonderte Verträge für eine nicht-" -"exklusive Verbreitung einer vom Verlag veröffentlichten Version des Buches " -"abschließen (sie können es z. B auf einem institutionellen Repositorium " -"einstellen oder in einem Buch veröffentlichen), jedoch unter Hinweis auf die " -"Erstveröffentlichung in diesem Verlag.
    4. \n" -"\t
    5. Autor/innen ist es erlaubt und werden dazu ermutigt, ihr Werk bereits " -"online zu stellen, bevor es beim Verlag eingereicht oder veröffentlicht " -"wurde (z.B. auf institutionellen Repositorien oder auf ihrer Website), da " -"dies zu einem produktiven Austausch einerseits als auch zu einer früheren " -"Zitierung und einer höheren Zitierhäufigkeit andererseits führen kann. (" -"Siehe Der Effekt von Open Access).
    6. \n" -"
    \n" -"\n" -"

    Vorgeschlagene Leitlinie für Verlage, die eine freie Zugänglichkeit nach " -"einem festgesetzten Verwertungszeitraum anbieten (Delayed Open Access)

    \n" -"Autor/innen, die bei diesem Verlag publizieren, stimmen folgenden " -"Bedingungen zu:\n" -"
      \n" -"\t
    1. Autor/innen behalten das Urheberrecht an dem Werk und gewähren dem " -"Verlag das Recht zu dessen Erstveröffentlichung. Das Werk wird [Zeitraum " -"angeben] nach der Veröffentlichung parallel unter einer Creative Commons " -"Attribution License lizenziert, die es anderen erlaubt, das Werk " -"weiterzuverbreiten, unter der Bedingung, dass der Autor/die Autorin benannt " -"und auf die Erstveröffentlichung in diesem Verlag hingewiesen wird.
    2. \n" -"\t
    3. Autor/innen können weitere, gesonderte Verträge für eine nicht-" -"exklusive Verbreitung einer vom Verlag veröffentlichten Version des Buches " -"abschließen (sie können es z.B auf einem institutionellen Repositorium " -"einstellen oder in einem Buch veröffentlichen), jedoch muss auf die " -"Erstveröffentlichung in diesem Verlag hingewiesen werden.
    4. \n" -"\t
    5. Autor/innen dürfen gerne ihr Werk bereits online stellen, bevor es " -"beim Verlag eingereicht oder veröffentlicht wurde (z.B. auf institutionellen " -"Repositorien oder auf ihren Websites). Dies dient nicht nur dem produktiven " -"Austausch untereinander, sondern kann auch zu einer früheren Zitierung und " -"einer höheren Zitierhäufigkeit des veröffentlichten Werks beitragen. (Siehe <" -"a target=\"_blank\" href=\"http://opcit.eprints.org/oacitation-biblio.html\">" -"Der Effekt von Open Access).
    6. \n" -"
    " - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "" -"Schritte: Warteschlange > Begutachtung > Redaktionelle Bearbeitung > Inhaltsverzeichnis.

    \n" -"Wählen Sie ein Modell, um diese Aspekte des Publikationsprozesses zu steuern. (Um leitende Herausgeber/innen oder Serienherausgeber/innen zu bestimmen, gehen Sie in der Verlagsverwaltung zu 'Herausgeber/innen'.)" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "" -"

    Um Leser/innen das Auffinden der Onlineversion eines zitierten Werkes zu erleichtern, können Sie:

    \n" -"\n" -"
      \n" -"\t
    1. Ein Lesewerkzeug hinzufügen:

      Der Verlagsleiter kann den Link \"Finde Literaturnachweise\" zu den Lesewerkzeugen (sie stehen in der Sidebar neben dem veröffentlichten Werk) hinzufügen. Durch Anklicken des Links öffnet sich ein Fenster, in dem Leser/innen einen zitierten Titel einfügen und anschließend in vorausgewählten wissenschaftlichen Datenbanken danach suchen können.

    2. \n" -"\t
    3. Links in die Literaturnachweise einbinden:

      Der/die Layouter/in kann einen Link zu online aufrufbaren Zitationen hinzufügen. Die folgenden Instruktionen sind dabei unter Umständen hilfreich (Bearbeitung erlaubt).

    4. \n" -"
    " - -msgid "manager.publication.library" -msgstr "Verlagsdokumentenarchiv" - -msgid "manager.setup.resetPermissions" -msgstr "Rechte für Monographien zurücksetzen" - -msgid "manager.setup.resetPermissions.confirm" -msgstr "" -"Sind Sie sicher, dass Sie die bereits vergebenen Rechte für Monographien " -"zurücksetzen wollen?" - -msgid "manager.setup.resetPermissions.description" -msgstr "Copyright-Angaben und Lizenzinformationen werden dauerhaft mit dem veröffentlichten Inhalt verknüpft, damit diese Daten sich nicht ändern, wenn ein Verlag die Regeln für neue Einreichungen ändert. Um vergebene Rechte für bereits veröffentlichte Inhalte zurückzusetzen, nutzen Sie den Knopf unten." - -msgid "grid.genres.title.short" -msgstr "Komponenten" - -msgid "grid.genres.title" -msgstr "Monographie-Komponenten" - -msgid "manager.setup.searchEngineIndexing.success" -msgstr "Die Suchmaschinenindizierung-Einstellungen wurden aktualisiert." - -msgid "emailTemplate.variable.site.siteTitle" -msgstr "Der Name der Website, wenn mehr als ein Verlag gehostet wird" - -msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" -msgstr "Die Währung des Zahlungsbetrags, z.B. USD" - -msgid "emailTemplate.variable.queuedPayment.itemCost" -msgstr "Der Zahlungsbetrag" - -msgid "emailTemplate.variable.queuedPayment.itemName" -msgstr "Der Name des Zahlungstyps" - -msgid "emailTemplate.variable.context.contactEmail" -msgstr "Die E-Mail-Adresse des Hauptkontakts des Verlags" - -msgid "emailTemplate.variable.context.contextSignature" -msgstr "Die E-Mail-Signatur des Verlags für automatisierte E-Mails" - -msgid "emailTemplate.variable.context.contactName" -msgstr "Der Name des Hauptkontakts des Verlags" - -msgid "emailTemplate.variable.context.contextUrl" -msgstr "Die URL der Verlagshomepage" - -msgid "emailTemplate.variable.context.contextName" -msgstr "Der Name des Verlags" - -msgid "plugins.importexport.chapter.exportFailed" -msgstr "Das Parsen der Kapitel hat nicht funktioniert" - -msgid "plugins.importexport.publicationformat.exportFailed" -msgstr "Das Parsen der Publikationsformate hat nicht funktioniert" - -msgid "plugins.importexport.native.error.unknownUser" -msgstr "Der/die angegebene Nutzer/in, \"{$userName}\", existiert nicht." - -msgid "plugins.importexport.common.error.unknownObjects" -msgstr "Die angegebenen Objekte konnten nicht gefunden werden." - -msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.disabled.description" -msgstr "" -"Für diesen Verlag wurde kein Hauptkontakt definiert. Sie können einen " -"Hauptkontakt in den Verlagseinstellungen einfügen." - -msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" -msgstr "" -"Eine Kopie der Einreichungsbestätigung an den Hauptkontakt des Verlags " -"schicken." - -msgid "plugins.importexport.native.exportSubmissions" -msgstr "Einreichungen exportieren" - -msgid "plugins.importexport.common.invalidXML" -msgstr "Ungültige XML:" - -msgid "plugins.importexport.common.error.validation" -msgstr "Ausgewählte Objekte konnten nicht konvertiert werden." - -msgid "plugins.importexport.common.error.noObjectsSelected" -msgstr "Keine Objekte ausgewählt." - -msgid "stats.publications.abstracts" -msgstr "Katalogeinträge" - -msgid "stats.publications.countOfTotal" -msgstr "{$count} von {$total} Monographien" - -msgid "stats.publications.totalGalleyViews.timelineInterval" -msgstr "Gesamte Dateiansichten, nach Datum" - -msgid "stats.publications.totalAbstractViews.timelineInterval" -msgstr "Gesamte Katalogansichten, nach Datum" - -msgid "stats.publications.none" -msgstr "" -"Es konnten keine Monographien gefunden werden, deren Nutzungstatistiken mit " -"diesen Parametern übereinstimmen." - -msgid "stats.publications.details" -msgstr "Monographie Details" - -msgid "stats.publicationStats" -msgstr "Monographie Statistiken" - -msgid "grid.series.urlWillBe" -msgstr "Die URL der Reihe wird {$sampleUrl} sein" - -msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" -msgstr "" -"Bitte wählen Sie die Kategorie aus, auf die dieses Menüelement verlinken " -"soll." - -msgid "manager.navigationMenus.form.navigationMenuItem.category" -msgstr "Kategorie auswählen" - -msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" -msgstr "" -"Bitte wählen Sie die Reihe aus, auf die dieses Menüelement verlinken soll." - -msgid "manager.navigationMenus.form.navigationMenuItem.series" -msgstr "Reihe auswählen" - -msgid "grid.series.pathExists" -msgstr "Der Reihenpfad existiert bereits. Bitte fügen Sie einen neuen Pfad ein." - -msgid "grid.series.pathAlphaNumeric" -msgstr "Der Reihenpfad darf nur Buchstaben und Zahlen beinhalten." - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "" -"Senden Sie eine Kopie an den in den Verlagseinstellungen identifizierten " -"Hauptkontakt." - -msgid "manager.setup.resetPermissions.success" -msgstr "Die Berechtigungen für Monographien wurden erfolgreich zurückgesetzt." - -msgid "manager.setup.disableSubmissions.description" -msgstr "" -"Verbieten Sie Nutzer/innen, neue Einreichungen an den Verlag zu machen. " -"Einreichungen für einzelne Reihen können auf der Reihen-Seite der Verlagseinstellungen verhindert werden." - -msgid "manager.setup.disableSubmissions.notAccepting" -msgstr "" -"Dieser Verlag nimmt derzeit keine Einreichungen an. Gehen Sie zu den " -"Workflow-Einstellungen um Einreichungen zu erlauben." - -msgid "manager.setup.siteAccess.viewContent" -msgstr "Monographieninhalte ansehen" - -msgid "manager.setup.siteAccess.view" -msgstr "Seitenzugang" - -msgid "manager.setup.searchDescription.description" -msgstr "" -"Fügen Sie eine kurze Beschreibung (50-300 Zeichen) des Verlags ein, die " -"Suchmaschinen in der Suchergebnisliste anzeigen können." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" -msgstr "" -"Einen sicheren Link in die E-Mail-Einladung an Gutachter/innen einfügen." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" -msgstr "" -"Gutachter/innen kann ein sicherer Link in der E-Mail-Einladung geschickt " -"werden, welcher den Zugang zur Begutachtung ohne Login ermöglicht. Der " -"Zugriff auf weitere Seiten benötigt einen Login." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" -msgstr "One-click Zugang für Gutachter/innen" - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" -msgstr "Dateizugriff einschränken" - -msgid "manager.setup.pressThumbnail.description" -msgstr "" -"Ein kleines Logo des Verlags, das in Listen von Verlagen verwendet werden " -"kann." - -msgid "manager.setup.pressThumbnail" -msgstr "Verlags-Thumbnail" - -msgid "manager.setup.selectCountry" -msgstr "" -"Wählen Sie entweder das Land aus, in dem dieser Verlag ansässig ist, oder " -"das Land der Mail-Adresse des Verlags oder Verlegers." - -msgid "manager.setup.aboutPress.description" -msgstr "" -"Nennen Sie jegliche Informationen über Ihren Verlag, die für Leser/innen, " -"Autor/innen, oder Gutachter/innen von Interesse sein könnten. Dies könnte " -"Ihre Open Access Policy, den Fokus und die Reichweite des Verlags, die " -"Copyright-Notiz, Sponsoren, die Geschichte Ihres Verlags und eine " -"Datenschutzerklärung beinhalten." - -msgid "manager.setup.aboutPress" -msgstr "Über den Verlag" - -msgid "manager.setup.privacyStatement.success" -msgstr "Die Datenschutzerklärung wurde aktualisiert." - -msgid "manager.setup.numPageLinks.description" -msgstr "" -"Begrenzen Sie die Anzahl der angezeigten Links, die auf weitere Seiten einer " -"Liste hinweisen." - -msgid "manager.setup.masthead.success" -msgstr "Die Details des Impressums für diesen Verlag wurden aktualisiert." - -msgid "manager.setup.lists.success" -msgstr "Die Listen-Einstellungen wurden aktualisiert." - -msgid "manager.setup.keyInfo.description" -msgstr "" -"Fügen Sie eine kurze Beschreibung Ihres Verlags ein und identifizieren Sie " -"Redakteur/innen, Managing Directors und weitere Mitglieder des " -"redaktionellen Teams." - -msgid "manager.setup.keyInfo" -msgstr "Hauptinformationen" - -msgid "manager.setup.itemsPerPage.description" -msgstr "" -"Begrenzen Sie die Anzahl von Elementen (z.B. Einreichungen, Nutzer/innen, " -"oder Begutachtungszuordnungen), die in einer Liste angezeigt werden, bevor " -"weitere Elemente auf der nächsten Seite angezeigt werden." - -msgid "manager.setup.itemsPerPage" -msgstr "Elemente pro Seite" - -msgid "manager.setup.information.success" -msgstr "Die Informationen über diesen Verlag wurden aktualisiert." - -msgid "manager.setup.information" -msgstr "Informationen" - -msgid "manager.setup.identity" -msgstr "Verlagsidentität" - -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "" -"Wie viele Ankündigungen auf der Homepage erscheinen. Lassen Sie das Feld " -"leer, um keine Ankündigungen anzeigen zu lassen." - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Auf der Homepage anzeigen" - -msgid "manager.setup.enableAnnouncements.description" -msgstr "" -"Ankündigungen können veröffentlicht werden um Leser/innen über Neuigkeiten " -"und Events zu informieren. Veröffentlichte Ankündigungen erscheinen auf der " -"Seite \"Ankündigungen\"." - -msgid "manager.setup.emailSignature.description" -msgstr "" -"Den vorbereiteten E-Mails, die das System im Namen des Verlags verschickt, " -"werden die folgende Signatur am Ende der Nachricht zugefügt." - -msgid "manager.setup.emailBounceAddress.disabled" -msgstr "" -"Um eine unzustellbare E-Mail an eine Bounce Adresse zu schicken, muss der " -"Administrator die allow_envelope_sender Option in der " -"Konfigurationsdatei der Seite aktivieren. Möglicherweise ist, wie in der OMP " -"Dokumentation beschrieben, die Konfiguration des Servers notwendig." - -msgid "manager.setup.displayNewReleases.label" -msgstr "Neuerscheinungen" - -msgid "manager.setup.displayInSpotlight.label" -msgstr "Spotlight" - -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Featured Bücher" - -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" -msgstr "" -"Bilder werden reduziert, wenn sie größer als erlaubt sind. Sie werden nie " -"vergrößert oder gestreckt um den Dimensionen angepasst zu werden." - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Titelbild Max Breite" - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Titelbild Max Höhe" - -msgid "manager.setup.contextSummary" -msgstr "Beschreibung des Verlags" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Nennen Sie jegliche Informationen über Ihren Verlag, die für Leser/innen, " -"Autor/innen, oder Gutachter/innen von Interesse sein könnten. Dies könnte " -"Ihre Open Access Policy, den Fokus und die Reichweite des Verlags, " -"Sponsoren, und die Geschichte Ihres Verlags beinhalten." - -msgid "manager.setup.contextAbout" -msgstr "Über den Verlag" - -msgid "manager.setup.announcements.success" -msgstr "Die Ankündigungs-Einstellungen wurden aktualisiert." - -msgid "manager.people.allEnrolledUsers" -msgstr "In diesem Verlag registrierte Nutzer/innen" - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "Dies ist kein gültiger Verleger Code Typ." - -msgid "manager.settings.publisher.identity" -msgstr "Identität des Verlegers" - -msgid "manager.payment.success" -msgstr "Die Zahlungs-Einstellungen wurden aktualisiert." - -msgid "manager.payment.options.enablePayments" -msgstr "" -"Zahlungen werden für diesen Verlag aktiviert. Beachten Sie, dass Nutzer/" -"innen sich einloggen müssen um Zahlungen zu machen." - -msgid "manager.payment.generalOptions" -msgstr "Allgemeine Optionen" - -msgid "manager.series.confirmDeactivateSeries.error" -msgstr "" -"Mindestens eine Reihe muss aktiv sein. Gehen Sie zu den Workflow-" -"Einstellungen um alle Einreichungen zu diesem Verlag zu deaktivieren." - -msgid "mailable.validateEmailContext.description" -msgstr "" -"Diese E-Mail wird automatisch an neue Nutzer/innen gesendet wenn sie sich " -"mit einem Verlag registrieren, der die Überprüfung der E-Mail Adresse " -"verlangt." - -msgid "mailable.validateEmailContext.name" -msgstr "E-Mail überprüfen (Verlagsregistrierung)" - -msgid "doi.displayName" -msgstr "DOI" - -msgid "doi.description" -msgstr "Dieses Plugin ermöglicht die Zuweisung eines Digital Object Identifiers (DOI) zu einem Publikationsformat in OMP." - -msgid "doi.readerDisplayName" -msgstr "DOI:" - -msgid "doi.manager.settings.description" -msgstr "" -"Bitte konfigurieren Sie das DOI-Plugin, damit Sie in OMP DOIs verwalten und " -"benutzen können:" - -#, fuzzy -msgid "doi.manager.settings.doiObjectsRequired" -msgstr "Bitte wählen Sie die Objekte aus, denen DOIs zugewiesen werden sollen." - -msgid "doi.manager.settings.doiPrefix" -msgstr "DOI-Präfix" - -msgid "doi.manager.settings.doiPrefixPattern" -msgstr "Das DOI-Präfix ist obligatorisch und muss die Form 10.xxxx haben." - -msgid "doi.manager.settings.doiSuffixPattern.representations" -msgstr "für Publikationsformate" - -msgid "doi.editor.doi" -msgstr "DOI" - -msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" -msgstr "Der angegebene DOI-Suffix wird bereits für ein anderes veröffentlichtes Element benutzt. Bitte vergeben Sie einen eindeutigen DOI-Suffix für jedes Element." - -msgid "doi.editor.preview.objects" -msgstr "Element" - -msgid "doi.editor.preview.files" -msgstr "Datei: {$title}" - -msgid "doi.editor.preview.publicationFormats" -msgstr "Publikationsformat: {$title}" - -msgid "doi.editor.preview.chapters" -msgstr "Kapitel: {$title}" - -msgid "doi.editor.preview.publication.none" -msgstr "Dieser Publikation wurde keine DOI zugewiesen." - -msgid "doi.editor.preview.publication" -msgstr "Die DOI für diese Publikation wird {$doi} sein." - -msgid "doi.editor.missingPrefix" -msgstr "Die DOI muss mit {$doiPrefix} beginnen." - -msgid "doi.editor.assignDoi.assigned" -msgstr "Die DOI {$pubId} wurde zugewiesen." - -msgid "doi.editor.assignDoi.pattern" -msgstr "" -"Die DOI {$pubId} kann nicht zugewiesen werden, da sie ein ungelöstes Schema " -"beinhaltet." - -msgid "doi.editor.assignDoi.emptySuffix" -msgstr "Die DOI kann nicht zugewiesen werden, da das Custom-Suffix fehlt." - -msgid "doi.editor.assignDoi" -msgstr "Die DOI {$pubId} dem Objekt vom Typ {$pubObjectType} zuweisen" - -msgid "doi.editor.clearObjectsDoi.confirm" -msgstr "Sind Sie sicher, dass Sie die bereits bestehende DOI entfernen möchten?" - -msgid "doi.editor.clearObjectsDoi" -msgstr "Entfernen" - -msgid "doi.editor.assigned" -msgstr "Die DOI wurde dem Objekt vom Typ {$pubObjectType} zugewiesen." - -msgid "doi.editor.canBeAssigned" -msgstr "" -"Dies ist eine Vorschau der DOI. Klicken Sie die Checkbox an und speichern " -"das Formular um die DOI zuzuweisen." - -msgid "doi.editor.patternNotResolved" -msgstr "" -"Die DOI kann nicht zugewiesen werden, da sie ein ungelöstes Schema " -"beinhaltet." - -msgid "doi.editor.missingParts" -msgstr "" -"Sie können keine DOI generieren, da einem oder mehreren Teilen des DOI-" -"Schema Daten fehlen." - -msgid "doi.editor.customSuffixMissing" -msgstr "Die DOI kann nicht zugewiesen werden, da das Custom-Suffix fehlt." - -msgid "doi.editor.doiObjectTypeSubmissionFile" -msgstr "Datei" - -msgid "doi.editor.doiObjectTypeRepresentation" -msgstr "Publikationsformat" - -msgid "doi.editor.doiObjectTypeChapter" -msgstr "Kapitel" - -msgid "doi.editor.doiObjectTypeSubmission" -msgstr "Monographie" - -msgid "doi.editor.doi.assignDoi" -msgstr "Zuweisen" - -msgid "doi.editor.doi.description" -msgstr "Die DOI muss mit {$prefix} beginnen." - -msgid "doi.manager.settings.doiReassign.confirm" -msgstr "Sind Sie sicher, dass Sie alle existierenden DOIs entfernen möchten?" - -msgid "doi.manager.settings.doiReassign.description" -msgstr "" -"Wenn Sie Ihre DOI-Konfiguration ändern, werden bereits zugewiesene DOIs " -"davon nicht beeinflusst. Sobald die Konfiguration gespeichert ist, können " -"Sie diesen Button verwenden um alle bestehenden DOIs zu entfernen und im " -"Anschluss die neuen Einstellungen auf alle existierenden Objekte anzuwenden." - -msgid "doi.manager.settings.doiReassign" -msgstr "DOIs neu zuweisen" - -msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" -msgstr "Bitte tragen Sie das DOI-Suffix Schema für Dateien ein." - -msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" -msgstr "Bitte tragen Sie das DOI-Suffix Schema für Publikationsformate ein." - -msgid "doi.manager.settings.doiChapterSuffixPatternRequired" -msgstr "Bitte tragen Sie das DOI-Suffix Schema für Kapitel ein." - -msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" -msgstr "Bitte tragen Sie das DOI-Suffix Schema für Monographien ein." - -msgid "doi.manager.settings.doiSuffixPattern.files" -msgstr "für Dateien" - -msgid "doi.manager.settings.doiSuffixPattern.chapters" -msgstr "für Kapitel" - -msgid "doi.manager.settings.doiSuffixPattern.submissions" -msgstr "für Monographien" - -msgid "doi.manager.settings.doiSuffixPattern.example" -msgstr "" -"Beispiel: press%ppub%f würde eine DOI wie 10.1234/pressESPpub100 kreieren" - -msgid "doi.manager.settings.doiSuffixPattern" -msgstr "" -"Benutzen Sie das unten eingetragene Schema um DOI-Suffixe zu generieren. " -"Verwenden Sie %p für die Verlagsinitialien, %m für die Monographien-ID, %c " -"für die Kapitel-ID, %f für die Publikationsformat-ID, %s für die Datei-ID " -"und %x für \"Custom Identifier\"." - -msgid "doi.manager.settings.enableSubmissionFileDoi" -msgstr "Dateien" - -msgid "doi.manager.settings.enableRepresentationDoi" -msgstr "Publikationsformate" - -msgid "doi.manager.settings.enableChapterDoi" -msgstr "Kapitel" - -msgid "doi.manager.settings.enablePublicationDoi" -msgstr "Monographien" - -msgid "doi.manager.settings.explainDois" -msgstr "" -"Bitte wählen Sie die Publikationsobjekte aus, denen Digital Object " -"Identifier (DOI) zugewiesen werden sollen:" - -msgid "doi.manager.submissionDois" -msgstr "Monographien-DOIs" - -msgid "doi.manager.displayName" -msgstr "DOIs" - -msgid "manager.dois.formatIdentifier.file" -msgstr "Format / {$format}" - -msgid "doi.manager.settings.doiCreationTime.copyedit" -msgstr "Im Schritt \"Lektorat\"" - -msgid "doi.manager.settings.doiSuffixLegacy" -msgstr "" -"Standard-Patterns verwenden.
    %p.%m für Monographien
    %p.%m.c%c für " -"Kapitel
    %p.%m.%f für Publikationsformate
    %p.%m.%f.%s für Dateien." - -msgid "manager.setup.enableDois.description" -msgstr "" -"Digital Object Identifier (DOIs) zu Monographien, Kapiteln, " -"Publikationsformaten, und Dateien zuweisen." diff --git a/locale/de_DE/submission.po b/locale/de_DE/submission.po deleted file mode 100644 index 8ca3fc03ae5..00000000000 --- a/locale/de_DE/submission.po +++ /dev/null @@ -1,530 +0,0 @@ -# Pia Piontkowitz , 2021, 2022. -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2022-02-22 11:05+0000\n" -"Last-Translator: Pia Piontkowitz \n" -"Language-Team: German \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.submit.title" -msgstr "Monographie einreichen" - -msgid "submission.upload.selectComponent" -msgstr "Komponente auswählen" - -msgid "submission.title" -msgstr "Buchtitel" - -msgid "submission.select" -msgstr "Wählen Sie ein Manuskript aus" - -msgid "submission.synopsis" -msgstr "Über dieses Buch" - -msgid "submission.workflowType" -msgstr "Art des Buches" - -msgid "submission.workflowType.description" -msgstr "" -"Eine Monographie ist ein Werk, das von einer Autorin/einem Autor oder " -"mehreren Autor/innen gemeinsam verfasst worden ist. Ein Sammelband besteht " -"aus mehreren Kapiteln jeweils unterschiedlicher Autor/innen (detaillierte " -"Kapitelangaben sind erst zu einem späteren Zeitpunkt im " -"Veröffentlichungsprozess zu machen)." - -msgid "submission.workflowType.editedVolume" -msgstr "Sammelband: Autor/innen sind mit dem eigenen Kapitel assoziiert." - -msgid "submission.workflowType.authoredWork" -msgstr "Monographie: Autor/innen sind mit dem Buch als Ganzes assoziiert." - -msgid "submission.monograph" -msgstr "Monographie" - -msgid "submission.published" -msgstr "Druckreif" - -msgid "submission.fairCopy" -msgstr "Reinschrift" - -msgid "submission.artwork.permissions" -msgstr "Rechte" - -msgid "submission.chapter" -msgstr "Kapitel" - -msgid "submission.chapters" -msgstr "Kapitel" - -msgid "submission.chaptersDescription" -msgstr "Hier können Sie die Kapitel auflisten und ihnen Personen zuordnen, die in der oben stehenden Liste der Beiträger/innen (z.B. Kapitelautor/innen, Übersetzer/innen) verzeichnet sind. Beiträger/innen, die Sie an dieser Stelle dem Kapitel zuordnen, werden während des Veröffentlichungsprozesses Zugang zu dem Kapitel haben." - -msgid "submission.chapter.addChapter" -msgstr "Kapitel hinzufügen" - -msgid "submission.chapter.editChapter" -msgstr "Kapitel bearbeiten" - -msgid "submission.copyedit" -msgstr "Lektorat" - -msgid "submission.publicationFormats" -msgstr "Formate" - -msgid "submission.proofs" -msgstr "Proofs" - -msgid "submission.download" -msgstr "Download" - -msgid "submission.sharing" -msgstr "Teilen" - -msgid "manuscript.submission" -msgstr "Manuskript einreichen" - -msgid "submission.round" -msgstr "Durchgang {$round}" - -msgid "submissions.queuedReview" -msgstr "In Begutachtung" - -msgid "manuscript.submissions" -msgstr "Manuskripte einreichen" - -msgid "submission.confirmSubmit" -msgstr "Sind Sie sicher, dass Sie das Manuskript einreichen möchten?" - -msgid "submission.metadata" -msgstr "Metadaten" - -msgid "submission.supportingAgencies" -msgstr "Träger" - -msgid "grid.action.addChapter" -msgstr "Ein neues Kapitel erzeugen" - -msgid "grid.action.editChapter" -msgstr "Kapitel bearbeiten" - -msgid "grid.action.deleteChapter" -msgstr "Kapitel löschen" - -msgid "submission.submit" -msgstr "Ein neues Buchmanuskript einreichen" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Ein neues Buchmanuskript einreichen bei" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Ein neues Manuskript bei {$contextName} einreichen" - -msgid "submission.submit.upload" -msgstr "Einreichung hochladen" - -msgid "submission.submit.cancelSubmission" -msgstr "Sie können den Einreichungsprozess auch zu einem späteren Zeitpunkt abschließen. Gehen Sie dazu auf die Startseite und wählen Sie die entsprechenden Manuskripte aus." - -msgid "submission.submit.selectSeries" -msgstr "Reihe auswählen" - -msgid "submission.submit.seriesPosition" -msgstr "Position innerhalb der Reihe (z.B. Band 2)" - -msgid "submission.submit.seriesPosition.description" -msgstr "Beispiel: Buch 2, Band 2" - -msgid "submission.submit.form.localeRequired" -msgstr "Bitte wählen Sie die Sprache des Manuskripts aus." - -msgid "submission.submit.privacyStatement" -msgstr "Datenschutzerklärung" - -msgid "submission.submit.contributorRole" -msgstr "Funktion des Beiträgers/der Beiträgerin" - -msgid "submission.submit.form.authorRequired" -msgstr "Es muss mindestens ein Autor/eine Autorin angegeben werden." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Es werden Vorname, Nachname und E-Mail-Adresse aller Autor/innen benötigt." - -msgid "submission.submit.form.titleRequired" -msgstr "Bitte geben Sie den Titel Ihrer Monographie ein." - -msgid "submission.submit.form.abstractRequired" -msgstr "Bitte geben Sie eine kurze Zusammenfassung Ihrer Monographie ein." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Bitte wählen Sie die Funktion der Beiträgerin/des Beiträgers." - -msgid "submission.submit.submissionFile" -msgstr "Manuskriptdatei" - -msgid "submission.submit.prepare" -msgstr "Vorbereiten" - -msgid "submission.submit.catalog" -msgstr "Katalog" - -msgid "submission.submit.metadata" -msgstr "Metadaten" - -msgid "submission.submit.finishingUp" -msgstr "Fertigstellen" - -msgid "submission.submit.confirmation" -msgstr "Bestätigung" - -msgid "submission.submit.nextSteps" -msgstr "Die nächsten Schritte" - -msgid "submission.submit.coverNote" -msgstr "Vermerk für den/die Herausgeber/in" - -msgid "submission.submit.generalInformation" -msgstr "Allgemeine Informationen" - -msgid "submission.submit.whatNext.description" -msgstr "Der Verlag wurde über die Einsendung Ihres Manuskriptes informiert. Für Ihre Unterlagen haben wir Ihnen eine Bestätigung per E-Mail zugesandt. Sobald der/die Herausgeber/in das Manuskript geprüft hat, wird er sich mit Ihnen in Verbindung setzen." - -msgid "submission.submit.checklistErrors" -msgstr "Bitte lesen und bestätigen Sie die Punkte der Einreichungscheckliste. {$itemsRemaining} Punkte wurden bisher noch nicht bestätigt." - -msgid "submission.submit.placement" -msgstr "Manuskriptplatzierung" - -msgid "submission.submit.userGroup" -msgstr "Einreichen in meiner Funktion als ..." - -msgid "submission.submit.userGroupDescription" -msgstr "Wenn Sie einen Sammelband einreichen, sollten Sie die Funktion \"Sammelbandherausgeber/in\" auswählen." - -msgid "grid.chapters.title" -msgstr "Kapitel" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Vom Lektor hochgeladenes Dokument löschen" - -msgid "publication.catalogEntry" -msgstr "Katalog" - -msgid "submission.complete" -msgstr "Freigegeben" - -msgid "submission.incomplete" -msgstr "Warte auf Freigabe" - -msgid "submission.editCatalogEntry" -msgstr "Eintrag" - -msgid "submission.catalogEntry.new" -msgstr "Neuer Katalogeintrag" - -msgid "submission.catalogEntry.confirm" -msgstr "Dieses Buch dem Katalog hinzufügen" - -msgid "submission.catalogEntry.confirm.required" -msgstr "Bitte bestätigen Sie, dass der Publikationsprozess abgeschlossen ist und das Buch in den Katalog aufgenommen werden soll." - -msgid "submission.catalogEntry.isAvailable" -msgstr "" -"Diese Monographie ist fertig und soll in den öffentlichen Katalog " -"aufgenommen werden." - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monographie" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Katalog" - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Format" - -msgid "submission.event.metadataPublished" -msgstr "" -"Die Metadaten der Monographie sind zur Veröffentlichung akzeptiert worden." - -msgid "submission.event.metadataUnpublished" -msgstr "" -"Die Veröffentlichung der Metadaten dieser Monographie wurde eingestellt." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Das \"{$publicationFormatName}\"-Format wurde verfügbar gemacht." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Das \"{$publicationFormatName}\"-Format ist nicht länger verfügbar." - -msgid "submission.event.publicationFormatPublished" -msgstr "Das \"{$publicationFormatName}\"-Format ist für die Veröffentlichung akzeptiert worden." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "Die Veröffentlichung des \"{$publicationFormatName}\"-Formats wurde eingestellt." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Die Katalogmetadaten wurden aktualisiert." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Die Metadaten für das Format \"{$formatName}\" wurden upgedatet." - -msgid "submission.event.publicationFormatCreated" -msgstr "Das Format \"{$formatName}\" wurde erstellt." - -msgid "submission.event.publicationFormatRemoved" -msgstr "Das Format \"{$formatName}\" wurde entfernt." - -msgid "submission.submit.titleAndSummary" -msgstr "Titel und Zusammenfassung" - -msgid "workflow.review.externalReview" -msgstr "Externe Begutachtung" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "In externe Begutachtung geben" - -msgid "submission.upload.fileContents" -msgstr "Einreichungs-Komponente" - -msgid "submission.publication" -msgstr "Veröffentlichung" - -msgid "publication.status.published" -msgstr "Veröffentlicht" - -msgid "submission.status.scheduled" -msgstr "Eingeplant" - -msgid "publication.status.unscheduled" -msgstr "Nicht eingeplant" - -msgid "submission.publications" -msgstr "Veröffentlichungen" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Das Copyright-Jahr wird automatisch gesetzt, wenn dieser Beitrag in einer " -"Ausgabe veröffentlicht wird." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "" -"Das Copyright-Jahr wird, basierend auf dem Veröffentlichungsdatum, " -"automatisch gesetzt." - -msgid "publication.datePublished" -msgstr "Veröffentlichungsdatum" - -msgid "publication.editDisabled" -msgstr "Diese Version wurde veröffentlicht und kann nicht geändert werden." - -msgid "publication.event.published" -msgstr "Der Beitrag wurde veröffentlicht." - -msgid "publication.event.scheduled" -msgstr "Der Beitrag wurde zur Veröffentlichung vorgesehen." - -msgid "publication.event.unpublished" -msgstr "Der Beitrag wurde zurückgezogen." - -msgid "publication.event.versionPublished" -msgstr "Eine neue Version wurde veröffentlicht." - -msgid "publication.event.versionScheduled" -msgstr "Eine neue Version wurde zur Veröffentlichung vorgesehen." - -msgid "publication.event.versionUnpublished" -msgstr "Eine Version wurde zurückgezogen." - -msgid "publication.invalidSubmission" -msgstr "" -"Die Einreichung für diese Veröffentlichung konnte nicht gefunden werden." - -msgid "publication.publish" -msgstr "Veröffentlichen" - -msgid "publication.publish.requirements" -msgstr "" -"Die folgenden Bedingungen müssen erfüllt sein, bevor dies veröffentlicht " -"werden kann." - -msgid "publication.required.declined" -msgstr "Ein abgelehnter Beitrag kann nicht veröffentlicht werden." - -msgid "publication.required.reviewStage" -msgstr "" -"Die Einreichung muss sich im Copyediting oder im Produktionsschritt befinden " -"um veröffentlicht werden zu können." - -msgid "submission.license.description" -msgstr "" -"Die Lizenz wird bei Veröffentlichung automatisch auf {$licenseName} gesetzt." - -msgid "submission.copyrightHolder.description" -msgstr "" -"{$copyright} wird bei Veröffentlichung automatisch als Rechteinhaber gesetzt." - -msgid "submission.copyrightOther.description" -msgstr "Die Rechte am veröffentlichten Beitrag folgender Gruppe zuordnen." - -msgid "publication.unpublish" -msgstr "Zurückziehen" - -msgid "publication.unpublish.confirm" -msgstr "Sind sie sicher, dass dies nicht veröffentlicht werden soll?" - -msgid "publication.unschedule.confirm" -msgstr "" -"Sind sie sicher, dass dies nicht zur Veröffentlichung eingeplant werden soll?" - -msgid "publication.version.details" -msgstr "Veröffentlichungsdetails für Version {$version}" - -msgid "submission.queries.production" -msgstr "Diskussion zur Herstellung" - -msgid "publication.scheduledIn" -msgstr "" -"Für die Publikation in {$issueName} vorgesehen." - -msgid "publication.publish.confirmation" -msgstr "" -"Alle Vorraussetzungen für die Veröffentlichung sind erfüllt. Sind Sie " -"sicher, dass Sie diesen Katalogeintrag publizieren möchten?" - -msgid "publication.publishedIn" -msgstr "Veröffentlicht in {$issueName}." - -msgid "publication.required.issue" -msgstr "" -"Die Publikation muss einer Ausgabe zugewiesen werden, bevor sie publiziert " -"werden kann." - -msgid "publication.inactiveSeries" -msgstr "{$series} (Inaktiv)" - -msgid "publication.invalidSeries" -msgstr "Die Reihe dieser Publikation konnte nicht gefunden werden." - -msgid "publication.catalogEntry.success" -msgstr "Die Details des Katalogeintrags wurden aktualisiert." - -msgid "catalog.browseTitles" -msgstr "{$numTitles} Titel" - -msgid "submission.list.viewEntry" -msgstr "Eintrag ansehen" - -msgid "submission.list.orderingFeaturesSection" -msgstr "" -"Drag-and-drop oder klicken Sie die Hoch- und Runter-Pfeile um die Sortierung " -"der Features in {$title} zu verändern." - -msgid "submission.list.saveFeatureOrder" -msgstr "Sortierung speichern" - -msgid "submission.list.orderingFeatures" -msgstr "" -"Drag-and-drop oder klicken Sie die Hoch- und Runter-Pfeile um die Sortierung " -"der Features auf der Homepage zu verändern." - -msgid "submission.list.orderFeatures" -msgstr "Features sortieren" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} von {$total} Monographien" - -msgid "submission.list.countMonographs" -msgstr "{$count} Monographien" - -msgid "submission.list.monographs" -msgstr "Monographien" - -msgid "section.any" -msgstr "Beliebige Reihe" - -msgid "submission.metadataDescription" -msgstr "" -"Diese Spezifizierungen basieren auf dem Dublin Core Metadaten-Set. Dies ist " -"ein internationaler Standard zur Beschreibung von Verlagsinhalten." - -msgid "submission.dependentFiles" -msgstr "Unselbstständige Dateien" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Jedes Kapitel kann ein eigenes Publikationsdatum haben." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Alle Kapitel werden das Publikationsdatum der Monographie verwenden." - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Publikationsdaten" - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Einreichung ansehen" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "" -"Es muss mindestens eine Monographie ausgewählt werden, um sie dem Katalog " -"hinzuzufügen." - -msgid "submission.catalogEntry.select" -msgstr "Wählen Sie Monographien aus um sie dem Katalog hinzuzufügen" - -msgid "submission.catalogEntry.add" -msgstr "Auswahl dem Katalog hinzufügen" - -msgid "submission.submit.noContext" -msgstr "Der Verlag der Einreichung konnte nicht gefunden werden." - -msgid "author.submit.seriesRequired" -msgstr "Eine gültige Reihe wird benötigt." - -msgid "author.isVolumeEditor" -msgstr "Diese Person als Herausgeber/in des Bandes identifizieren." - -msgid "submission.chapter.pages" -msgstr "Seiten" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.editorName" -msgstr "{$editorName} (Hrsg)" - -msgid "submission.workflowType.change" -msgstr "Ändern" - -msgid "submission.workflowType.editedVolume.label" -msgstr "Sammelband" - -msgid "chapter.volume" -msgstr "Band" - -msgid "chapter.pages" -msgstr "Seiten" - -msgid "submission.chapterCreated" -msgstr " — Kapitel kreiert" - -msgid "submission.withoutChapter" -msgstr "{$name} — Ohne dieses Kapitel" - -msgid "publication.chapter.hasLandingPage" -msgstr "" -"Dieses Kapitel auf einer eigenen Seite anzeigen, auf die vom " -"Inhaltsverzeichnis der Publikation aus verlinkt wird." - -msgid "publication.chapter.landingPage" -msgstr "Kapitelseite" - -msgid "publication.publish.success" -msgstr "Der Publikationsstatus wurde erfolgreich verändert." diff --git a/locale/el/admin.po b/locale/el/admin.po new file mode 100644 index 00000000000..9d7dfb87dfd --- /dev/null +++ b/locale/el/admin.po @@ -0,0 +1,157 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:05-08:00\n" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Φιλοξενούμενες Εκδόσεις" + +msgid "admin.settings.appearance.success" +msgstr "" + +msgid "admin.settings.config.success" +msgstr "" + +msgid "admin.settings.info.success" +msgstr "" + +msgid "admin.settings.redirect" +msgstr "Προώθηση σε URL της Έκδοσης" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Αιτήματα πρόσβασης στον κυρίως ιστότοπο της συλλογής θα προωθούνται στην " +"ιστοσελίδα της έκδοσης. Αυτό μπορεί να φανεί χρήσιμο αν η συλλογή φιλοξενεί " +"για παράδειγμα μόνο μία έκδοση." + +msgid "admin.settings.noPressRedirect" +msgstr "Καμία προώθηση" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Αυτή θα είναι η εξ'ορισμού γλώσσα της συλλογής και των φιλοξενούμενων " +"εκδόσεων." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Επιλέξτε όλες τις τοπικές ρυθμίσεις που θέλετε να υποστηρίζονται στη " +"συλλογή. Οι επιλεγμένες τοπικές ρυθμίσεις θα είναι διαθέσιμες για χρήση από " +"όλες τις εκδόσεις της συλλογής, και θα εμφανίζονται σε ένα Μενού Επιλογής " +"Γλώσσας στην ιστοσελίδα κάθε έκδοσης. Εάν δεν επιλεχθούν πολλαπλές τοπικές " +"ρυθμίσεις, το παραπάνω Μενού Επιλογής Γλώσσας δεν θα εμφανίζεται και συνεπώς " +"δεν θα είναι δυνατή η ρύθμιση της γλώσσας στις ιστοσελίδες των εκδόσεων." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Επιλεγμένες τοπικές ρυθμίσεις μπορεί να μην είναι ολοκληρωμένες." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Είστε σίγουρος ότι θέλετε να απεγκαταστήσετε αυτή τη ρύθμιση; Αυτό θα " +"επηρεάσει όσες φιλοξενούμενες εκδόσεις χρησιμοποιούν αυτή την ρύθμιση." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Επιλέξτε τις επιπρόσθετες τοπικές ρυθμίσεις που θέλετε να εγκαταστήσετε " +"για να τις υποστηρίζει το σύστημα. Οι ρυθμίσεις πρέπει να εγκατασταθούν " +"πριν χρησιμοποιηθούν από κάποια έκδοση. Δείτε την τεκμηρίωση του OMP για " +"πληροφορίες και τεκμηρίωση σχετικά με την προσθήκη νέων γλωσσών." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Είστε σίγουρος ότι επιθυμείτε να απενεργοποιήσετε αυτή την τοπική ρύθμιση; " +"Αυτό θα επηρεάσει όσες φιλοξενούμενες εκδόσεις χρησιμοποιούν τη συγκεκριμένη " +"ρύθμιση." + +msgid "admin.systemVersion" +msgstr "OMP Έκδοση" + +msgid "admin.systemConfiguration" +msgstr "Ρυθμίσεις OMP" + +msgid "admin.presses.pressSettings" +msgstr "Ρυθμίσεις Έκδοσης" + +msgid "admin.presses.noneCreated" +msgstr "Καμία Έκδοση δεν έχει δημιουργηθεί." + +msgid "admin.contexts.create" +msgstr "" + +msgid "admin.contexts.form.titleRequired" +msgstr "" + +msgid "admin.contexts.form.pathRequired" +msgstr "" + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" + +msgid "admin.contexts.form.pathExists" +msgstr "" + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" + +msgid "admin.contexts.form.create.success" +msgstr "" + +msgid "admin.contexts.form.edit.success" +msgstr "" + +msgid "admin.contexts.contextDescription" +msgstr "Περιγραφή Έκδοσης" + +msgid "admin.presses.addPress" +msgstr "Προσθήκη Έκδοσης" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

    ΣΗΜΕΙΩΣΗ!\n" +"

    Δεν ήταν δυνατή η αυτόματη αντικατάσταση του αρχείου ρυθμίσεων από το " +"σύστημα. Για να εφαρμόσετε τις αλλαγές στις ρυθμίσεις πρέπει να ανοίξετε " +"config.inc.php με κατάλληλο πρόγραμμα διόρθωσης κειμένων και να " +"αντικαταστήσετε τα περιεχόμενα αυτού με τα περιεχόμενα του πεδίου κειμένου " +"που βρίκεται παρακάτω.

    " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" + +msgid "admin.siteManagement.description" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +#~ msgid "admin.systemConfigurationDescription" +#~ msgstr "Διαμόρφωση Ρυθμίσεων (Configuration) OMP από config.inc.php" + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "" diff --git a/locale/el/default.po b/locale/el/default.po new file mode 100644 index 00000000000..b11d101b8f2 --- /dev/null +++ b/locale/el/default.po @@ -0,0 +1,319 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" +"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "default.genres.appendix" +msgstr "Παράρτημα" + +msgid "default.genres.bibliography" +msgstr "Βιβλιογραφία" + +msgid "default.genres.manuscript" +msgstr "Χειρόγραφο Βιβλίου" + +msgid "default.genres.chapter" +msgstr "Χειρόγραφο Κεφαλαίου" + +msgid "default.genres.glossary" +msgstr "Γλωσσάριο" + +msgid "default.genres.index" +msgstr "Ευρετήριο" + +msgid "default.genres.preface" +msgstr "Πρόλογος" + +msgid "default.genres.prospectus" +msgstr "Πρόταση για έκδοση Βιβλίου (Prospectus)" + +msgid "default.genres.table" +msgstr "Πίνακας" + +msgid "default.genres.figure" +msgstr "Εικόνα/Figure" + +msgid "default.genres.photo" +msgstr "Φωτογραφία" + +msgid "default.genres.illustration" +msgstr "Εικόνογράφηση" + +msgid "default.genres.other" +msgstr "Διάφορα" + +msgid "default.groups.name.manager" +msgstr "" + +msgid "default.groups.plural.manager" +msgstr "" + +msgid "default.groups.abbrev.manager" +msgstr "" + +msgid "default.groups.name.editor" +msgstr "Επιμελητής Έκδοσης" + +msgid "default.groups.plural.editor" +msgstr "Επιμελητές Έκδοσης" + +msgid "default.groups.abbrev.editor" +msgstr "PE" + +msgid "default.groups.name.sectionEditor" +msgstr "Επιμελητής Σειράς" + +msgid "default.groups.plural.sectionEditor" +msgstr "Επιμελητές Σειράς" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "AcqE" + +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + +msgid "default.groups.name.chapterAuthor" +msgstr "Συγγραφέας Κεφαλαίου" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Συγγραφείς Κεφαλαίου" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "CA" + +msgid "default.groups.name.volumeEditor" +msgstr "Επιμελητής Έργου" + +msgid "default.groups.plural.volumeEditor" +msgstr "Επιμελητές Έργου" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "VE" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

    Τα ονόματα και οι διευθύνσεις ηλεκτρονικού ταχυδρομείου που καταχωρούνται " +"στις ιστοσελίδες των εκδόσεων της συλλογής θα χρησιμοποιούνται αποκλειστικά " +"για τους καθορισμένους σκοπούς των υπηρεσίας μας και δεν θα διατίθεται για " +"κανένα άλλο σκοπό ή σε κανένα τρίτο μέρος.

    " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Η συγκεκριμένη έκδοση παρέχει άμεση ανοικτή πρόσβαση στο περιεχόμενό της " +"υποστηρίζοντας την αρχή της υποστήριξης της παγκόσμιας ανταλλαγής γνώσεων " +"και καθιστώντας διαθέσιμη ελεύθερα στο κοινό τα αποτελέσματα της " +"επιστημονικής έρευνας." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Η χρήση της συλλογής είναι ελεύθερη και δωρεάν για όλους και δεν απαιτείται " +"η χρήση κωδικού πρόσβασης. Ωστόσο, ενθαρρύνουμε τους αναγνώστες-χρήστες να " +"εγγραφούν στην υπηρεσία ενημέρωσης για τις εκδόσεις της συλλογής μας. " +"Επιλέξτε τον σύνδεσμο Εγγραφείτε στη κορυφή της αρχικής σελίδας των Εκδόσεων. Κάθε " +"εγγεγραμμένος χρήστης θα λαμβάνει με email με τους Πίνακες Περιεχομένων κάθε " +"νέας έκδοσης που δημοσιεύεται στη συλλογή. Επίσης, η λίστα των " +"καταχωρημένων αναγνωστών-χρηστών επιτρέπει στην υπηρεσία και στις εκδόσεις " +"της συλλογής να διαπιστώσουν το πραγματικό επίπεδο ανταπόκρισης και χρήσης. " +"Ενημερωθείτε για την Πολιτική Προστασίας Προωπικών Δεδομένων " +"της συλλογής, που διαβεβαιώνει ότι τα στοιχεία και τα email των χρηστών δεν " +"θα χρησιμοποιηθούν για άλλους λόγους." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Ενδιαφέρεστε να πραγματοποιήσετε υποβολή στη συγκεκριμένη έκδοση; Σας " +"συμβουλεύουμε να μελετήσετε τη σελίδα Σχετικά με την Έκδοση για τις πολιτικές των ενοτήτων της " +"Έκδοσης, καθώς και τη σελίδαΟδηγίες για Συγγραφείς. Οι Συγγραφείς " +"πρέπει να εγγραφούν " +"στην έκδοση πριν από την υποβολή, ή στην περίπτωση που έχουν εγγραφεί, " +"μπορούν απλά να συνδεθούν και να " +"ξεκινήσουν τη διαδικασία με τα 5 βήματα" + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Βασική επιδίωξη και επιθυμία της συλλογής \"Τιμαία\" είναι καταχώρηση αυτής " +"ή/και άλλων εκδόσεων της στις συλλογές ηλεκτρονικών εκδόσεων και πηγών " +"πληροφόρησης των βιβλιοθηκών. Επίσης, είναι πιθανόν χρήσιμο να τονιστεί ότι " +"το χρησιμοποιούμενο σύστημα ηλεκτρονικής δημοσίευσης της συλλογής Τιμαία, " +"είναι ανοικτού κώδικα και μπορεί να χρησιμοποιηθεί από τις βιβλιοθήκες για " +"τη φιλοξενία εκδόσεων ή/και την εξυπηρέτηση των μελών της ακαδημαϊκής " +"κοινότητας που είναι μέλη της συντακτικής ομάδας μιας έκδοσης. (Διαβάστε " +"περισσότερα για το Open Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Εξωτερικός Αξιολογητής" + +msgid "default.groups.plural.externalReviewer" +msgstr "Εξωτερικοί Αξιολογητές" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "ER" + +#~ msgid "default.groups.name.siteAdmin" +#~ msgstr "Site Admin" + +#~ msgid "default.groups.plural.siteAdmin" +#~ msgstr "Διαχειριστής Ιστοσελίδας" + +#~ msgid "default.groups.name.pressManager" +#~ msgstr "Διαχειριστής Εκδόσεων" + +#~ msgid "default.groups.plural.pressManager" +#~ msgstr "Διαχειριστές Εκδόσεων" + +#~ msgid "default.groups.abbrev.pressManager" +#~ msgstr "PM" + +#~ msgid "default.groups.name.productionEditor" +#~ msgstr "Επιμελητής Παραγωγής" + +#~ msgid "default.groups.plural.productionEditor" +#~ msgstr "Επιμελητές Παραγωγής" + +#~ msgid "default.groups.abbrev.productionEditor" +#~ msgstr "ProdE" + +#~ msgid "default.groups.name.copyeditor" +#~ msgstr "Επιμελητής Κειμένων" + +#~ msgid "default.groups.plural.copyeditor" +#~ msgstr "Επιμελητές Κειμένων" + +#~ msgid "default.groups.abbrev.copyeditor" +#~ msgstr "CE" + +#~ msgid "default.groups.name.proofreader" +#~ msgstr "Επιμελητής Τυπογραφικών Δοκιμίων" + +#~ msgid "default.groups.plural.proofreader" +#~ msgstr "Επιμελητές Τυπογραφικών Δοκιμίων" + +#~ msgid "default.groups.abbrev.proofreader" +#~ msgstr "PR" + +#~ msgid "default.groups.name.designer" +#~ msgstr "Σχεδιαστής" + +#~ msgid "default.groups.plural.designer" +#~ msgstr "Σχεδιαστές" + +#~ msgid "default.groups.abbrev.designer" +#~ msgstr "Σχέδιο" + +#~ msgid "default.groups.name.internalReviewer" +#~ msgstr "Εσωτερικός Αξιολογητής" + +#~ msgid "default.groups.plural.internalReviewer" +#~ msgstr "Εσωτερικοί Αξιολογητές" + +#~ msgid "default.groups.abbrev.internalReviewer" +#~ msgstr "IR" + +#~ msgid "default.groups.name.marketing" +#~ msgstr "Υπεύθυνος Marketing και Πωλήσεων" + +#~ msgid "default.groups.plural.marketing" +#~ msgstr "Υπεύθυνος Marketing και Πωλήσεων" + +#~ msgid "default.groups.abbrev.marketing" +#~ msgstr "MS" + +#~ msgid "default.groups.name.funding" +#~ msgstr "Υπεύθυνος Χρηματοδότησης" + +#~ msgid "default.groups.plural.funding" +#~ msgstr "Υπεύθυνοι Χρηματοδότησης" + +#~ msgid "default.groups.abbrev.funding" +#~ msgstr "FC" + +#~ msgid "default.groups.name.indexer" +#~ msgstr "Ευρετηριαστής" + +#~ msgid "default.groups.plural.indexer" +#~ msgstr "Ευρετηριαστές" + +#~ msgid "default.groups.abbrev.indexer" +#~ msgstr "IND" + +#~ msgid "default.groups.name.layoutEditor" +#~ msgstr "Επιμελητής Σελιδοποίησης" + +#~ msgid "default.groups.plural.layoutEditor" +#~ msgstr "Επιμελητές Σελιδοποίησης" + +#~ msgid "default.groups.abbrev.layoutEditor" +#~ msgstr "LE" + +#~ msgid "default.groups.name.author" +#~ msgstr "Συγγραφέας" + +#~ msgid "default.groups.plural.author" +#~ msgstr "Συγγραφείς" + +#~ msgid "default.groups.abbrev.author" +#~ msgstr "AU" + +#~ msgid "default.groups.name.translator" +#~ msgstr "Μεταφραστής" + +#~ msgid "default.groups.plural.translator" +#~ msgstr "Μεταφραστές" + +#~ msgid "default.groups.abbrev.translator" +#~ msgstr "Μεταφρ." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Η υποβολή δεν έχει δημοσιευτεί εκ των προτέρων, ούτε έχει υποβληθεί σε " +#~ "άλλες εκδόσεις για εξέταση (ή δεν έχει δοθεί εξήγηση στα Σχόλια προς τον " +#~ "επιμελητή)." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Το αρχείο υποβολής είναι σε μορφή αρχείου εγγράφου OpenOffice, Microsoft " +#~ "Word ή RTF." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Όταν είναι διαθέσιμα, παρέχονται τα URL για πρόσβαση σε αναφορές online." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Το κείμενο έχει μονό διάκενο, χρησιμοποιεί γραμματοσειρά μεγέθους 12, " +#~ "χρησιμοποιεί όπου απαιτείται κείμενο σε πλάγια γραφή και όχι με " +#~ "υπογράμμιση (εκτός από τις διευθύνσεις URL) και όλες οι εικόνες, τα " +#~ "διαγράμματα και οι πίνακες τοποθετούνται εντός του κειμένου σε κατάλληλα " +#~ "σημεία, και όχι στο τέλος αυτού." + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Το κείμενο τηρεί τις στιλιστικές και βιβλιογραφικές απαιτήσεις που " +#~ "ορίζονται στις Οδηγίες προς τους συγγραφείς Οδηγίες προς Συγγραφείς, που βρίσκονται στο μενού \"Σχετικά με το " +#~ "περιοδικό\"." diff --git a/locale/el/editor.po b/locale/el/editor.po new file mode 100644 index 00000000000..7cf8cdafc17 --- /dev/null +++ b/locale/el/editor.po @@ -0,0 +1,244 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" +"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "editor.submissionArchive" +msgstr "Αρχείο Υποβολών" + +msgid "editor.monograph.cancelReview" +msgstr "Ακύρωση Αιτήματος" + +msgid "editor.monograph.clearReview" +msgstr "Καθαρισμός Αξιολογητή" + +msgid "editor.monograph.enterRecommendation" +msgstr "Εισαγωγή Εισήγησης" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Εισαγωγή εισήγησης αξιολογητή" + +msgid "editor.monograph.recommendation" +msgstr "Εισαγωγή Εισήγησης" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Επιλέξτε έναν από τους παραπάνω αξιολογητές και πατήστε \"Επιλογή Αξιολογητή" +"\" για να συνεχίσετε." + +msgid "editor.monograph.replaceReviewer" +msgstr "Αντικατάσταση Αξιολογητή" + +msgid "editor.monograph.editorToEnter" +msgstr "Ο επιμελητής εισάγει συστάσεις/σχόλια για τον αξιολογητή" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Ανέβασμα Αξιολόγησης" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Επιλογές αξιολόγησης απο ομότιμους αξιολογητές (Peer Review)" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Αρχεία επιμέλειας τυπογραφικών δοκιμίων" + +msgid "editor.monograph.internalReview" +msgstr "Έναρξη Εσωτερικής Αξιολόγησης" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Είτε έτοιμοι να ξεκινήσετε ένα γύρο εσωτερικής αξιολόγησης για την υποβολή. " +"Τα αρχεία που αποτελούν μέρος της υποβολής παρατίθενται παρακάτω και μπορούν " +"να επιλεγούν για αξιολόγηση." + +msgid "editor.monograph.externalReview" +msgstr "Έναρξη Εξωτερικής Αξιολόγησης" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Επιλογή Αρχείων Τελικού Κειμένου" + +msgid "editor.monograph.final.currentFiles" +msgstr "Τρέχοντα Αρχεία Τελικού Κειμένου" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Τρέχοντα Αρχεία" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Μήνυμα σε χρήστη" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Ενέργεια Υποβολής" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Συνολικές ενέργειες και επιλογές υποβολής." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Ενέργειες Ενότητας (Section Actions)" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Επιλογές μιας συγκεκριμένης ενότητας, για παράδειγμα μεταφόρτωση αρχείων ή " +"εγγραφή χρηστών." + +msgid "editor.monograph.legend.itemActions" +msgstr "Ενέργειες Στοιχείου" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Ενέργειες και επιλογές που αφορούν ένα συγκεκριμένο αρχείο." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Προβολή και διαχείριση της καταχώρησης μιας υποβολής στον κατάλογο, " +"συμπεριλαμβανομένων των μεταδεδομένων και των μορφότυπων δημοσίευσης." + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Προβολή και διαχείριση των μεταδεδομένων, των σημειώσεων, κοινοποιήσεων και " +"του ιστορικού μιας υποβολής" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Προβολή και Διαχείριση των συμμετεχόντων της υποβολής: συγγραφείς, " +"επιμελητές, σχεδιαστές, και άλλων" + +msgid "editor.monograph.legend.add" +msgstr "Ανεβάστε ένα αρχείο στην ενότητα" + +msgid "editor.monograph.legend.add_user" +msgstr "Προσθήκη χρήστη στην ενότητα" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Προβολή και πρόσβαση στις ρυθμίσεις στοιχείου, όπως πληροφορίες και επιλογές " +"αφαίρεσης" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"Επιπλέον πληροφορίες: σημειώσεις αρχείου, επιλογές κοινοποίησης και ιστορικό" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Πληροφορίες αρχείου: σημειώσεις, επιλογές κοινοποίησης και ιστορικό (Δεν " +"έχουν προστεθεί σημειώσεις ακόμα)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Πληροφορίες αρχείου: σημειώσεις, επιλογές κοινοποίησης και ιστορικό (Οι " +"σημειώσεις είναι διαθέσιμες)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Πληροφορίες αρχείου: σημειώσεις, επιλογές κοινοποίησης και ιστορικό (Νέες " +"σημειώσεις προστέθηκαν κατά την τελευταία επίσκεψη)" + +msgid "editor.monograph.legend.edit" +msgstr "Επεξεργασία στοιχείου" + +msgid "editor.monograph.legend.delete" +msgstr "Διαγραφή στοιχείου" + +msgid "editor.monograph.legend.in_progress" +msgstr "Ενέργεια σε εξέλιξη ή δεν έχει ολοκληρωθεί" + +msgid "editor.monograph.legend.complete" +msgstr "Ολοκληρώθηκε" + +msgid "editor.monograph.legend.uploaded" +msgstr "File uploaded by the role in the grid column title" + +msgid "editor.submission.introduction" +msgstr "" +"Σε μια υποβολή, ο επιμελητής έκδοσης (editor), μετά από διαβούλευση των " +"αρχείων που έχουν υποβληθεί, προβαίνει στις ακόλουθες ενέργειες " +"συμπεριλαμβανομένου και την ενημέρωση του συγγραφέα: αποστολή για εσωτερική " +"αξιολόγηση (επιλέγοντας και τα αρχεία για εσωτερική αξιολόγηση), αποστολή " +"για εξωτερική αξιολόγηση (επιλέγοντας και τα αρχεία για εξωτερική " +"αξιολόγηση), αποδοχή υποβολής (συνεπάγεται και η επιλογή αρχείων για το " +"στάδιο σύνταξης/δημοσίευσης) ή απόρριψη υποβολής (υποβολή στο αρχείο)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Τελικό Αντίγραφο" + +msgid "editor.monograph.proofs" +msgstr "Τυπογραφικά Δοκίμια" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Αποδοχή και Δημοσίευση" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Διαφορετικές μορφές εκδόσεων, όπως σκληρόδετο (hardcover), χαρτόδετο " +"(softcover) και ψηφιακό, μπορούν να μεταφορτωθούν παρακάτω στην ενότητα " +"Μορφότυπα Έκδοσης. Μπορείτε να χρησιμοποιήσετε το παρακάτω πλέγμα (grid) ως " +"μια λίστα επιλογών για το τι απομένει να γίνει για να εκδοθεί μια μορφή " +"έκδοσης του βιβλίου. (Different publication formats, such as hardcover, " +"softcover and digital, can be uploaded in the Publication Formats section " +"below. You can use the publication formats grid below as a checklist for " +"what still needs to be done to publish a publication format)." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Προσθέστε τα μορφότυπα έκδοσης (πχ. ψηφιακό, χαρτόδετο) τα οποία ο " +"επιμελητής σελιδοποίησης ετοίμασε για τη διόρθωση τυπογραφικών δοκιμίων. Τα " +"Τυπογραφικά Δοκίμια θα πρεπει να ελεγχθούν σύμφωνα με τα πρότυπα " +"των εκδόσεων και η καταχώριση στον Κατάλογο πρέπει να είναι σύμφωνη " +"με την εγκεκριμένη καταχώριση του βιβλίου, πριν να μπορεί ένα μορφότυπο να " +"γίνει διαθέσιμο πχ. Δημοσιευμένο." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Καθορισμός Όρων για Λήψη Αρχείων" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Καθορισμός Όρων" + +msgid "editor.monograph.proof.addNote" +msgstr "Προσθήκη Απάντησης" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" + +msgid "editor.submissions.assignedTo" +msgstr "" + +#~ msgid "editor.pressSignoff" +#~ msgstr "Υπογραφή Εκδόσεων" + +#~ msgid "editor.monograph.editorial.fairCopyDescription" +#~ msgstr "" +#~ "Ο επιμελητής κειμένων μεταφορτώνει ένα διορθωμένο ή τελικό αντίγραφο της " +#~ "υποβολής για έγκριση από τον επιμελητή έκδοσης, ώστε αυτό να σταλεί για " +#~ "την παραγωγή του." + +#~ msgid "editor.internalReview.introduction" +#~ msgstr "" +#~ "Στην Εσωτερική Αξιολόγηση, ο επιμελητή έκδοσης αναθέτει τα αρχεία της " +#~ "υποβολής στους εσωτερικούς αξιολογητές και βασίζεται στα αποτελέσματα της " +#~ "αξιολόγησης τους, πριν επιλέξει τις κατάλληλες ενέργειες (στις οποίες " +#~ "συμπεριλαμβάνεται η ενημέρωση του συγγραφέα): αίτηματα για αναθεωρήσεις " +#~ "(οι αναθεωρήσεις ελέγχονται μόνο από τον επιμελητή έκδοσης), εκ νέου " +#~ "υποβολή για αξιολόγηση (οι αναθεωρήσεις ξεκινούν ένα νέο γύρο " +#~ "αξιολογήσεων), αποστολή αιτήματος για εξωτερική αξιολόγηση (συνεπάγεται " +#~ "επιλογή αρχείων για εξωτερική αξιολόγηση), αποδοχή υποβολής (συνεπάγεται " +#~ "επιλογή αρχείων για το στάδιο Σύνταξης) ή απόρριψη υποβολής (υποβολή στο " +#~ "αρχείο)." + +#~ msgid "editor.externalReview.introduction" +#~ msgstr "" +#~ "Στην Εξωτερική Αξιολόγηση, ο επιμελητής έκδοσης αναθέτει τα αρχεία της " +#~ "υποβολής στους εξωτερικούς αξιολογητές των εκδόσεων και βασίζεται στα " +#~ "αποτελέσματα της αξιολόγησης τους, πριν επιλέξει τις κατάλληλες ενέργειες " +#~ "(στις οποίες συμπεριλαμβάνεται η ενημέρωση του συγγραφέα): αίτηματα για " +#~ "αναθεωρήσεις (οι αναθεωρήσεις ελέγχονται μόνο από τον επιμελητή " +#~ "έκδοσης), εκ νέου υποβολή για αξιολόγηση (οι αναθεωρήσεις ξεκινούν ένα " +#~ "νέο κύκλο αξιολογήσεων), αποδοχή υποβολής (συνεπάγεται επιλογή αρχείων " +#~ "για το στάδιο Σύνταξης) ή απόρριψη υποβολής (υποβολή στο αρχείο)." diff --git a/locale/el/emails.po b/locale/el/emails.po new file mode 100644 index 00000000000..8770c034eba --- /dev/null +++ b/locale/el/emails.po @@ -0,0 +1,437 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" +"PO-Revision-Date: 2019-12-03T14:14:06-08:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Επιβεβαίωση αλλαγής κωδικού πρόσβασης" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Παραλάβαμε ένα αίτημα για επαναφορά (αλλαγή) του κωδικού πρόσβασής σας για " +"τον ιστότοπο {$siteTitle} .
    \n" +"
    \n" +"Εάν δεν προωθήσατε εσείς το αίτημα αυτό, σας παρακαλούμε αγνοήστε το μήνυμα " +"αυτό και ο κωδικός πρόσβασής δεν θα αλλάξει. Εάν επιθυμείτε να αλλάξετε τον " +"κωδικό πρόσβασής σας, ακολουθήστε το παρακάτω URL.
    \n" +"
    \n" +"Αλλαγή του κωδικού πρόσβασής μου: {$passwordResetUrl}
    \n" +"
    \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Εγγραφή χρήστη" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"Είστε πλέον εγγεγραμμένος χρήστης των εκδόσεων {$contextName}. Το όνομα " +"χρήστη και ο κωδικός πρόσβασής σας, που είναι απαραίτητα για όλες τις " +"εργασίες σας με τη συγκεκριμένη έκδοση μέσω του ιστότοπου της, έχουν " +"συμπεριληφθεί στο συγκεκριμένο μήνυμα. Ανά πάσα στιγμή, μπορείτε να " +"καταργήσετε το όνομά σας από τη λίστα των χρηστών, επικοινωνώντας με το " +"αρμόδιο προσωπικό.
    \n" +"
    \n" +"Όνομα χρήστη: {$recipientUsername}
    \n" +"Όνομα χρήστη: {$password}
    \n" +"
    \n" +"Σας ευχαριστούμε,
    \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "" + +msgid "emails.userValidateContext.body" +msgstr "" + +msgid "emails.userValidateSite.subject" +msgstr "" + +msgid "emails.userValidateSite.body" +msgstr "" + +msgid "emails.reviewerRegister.subject" +msgstr "Εγγραφή ως Αξιολογητής στις εκδόσεις {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Λαμβάνοντας υπόψη την αρτιότητα των γνώσεών σας, το όνομα σας καταχωρήθηκε " +"αυτόματα στη βάση δεδομένων αξιολογητών για τις εκδόσεις {$contextName}. Το " +"γεγονός αυτό δεν συνεπάγεται οποιαδήποτε μορφή δέσμευσης από μέρους σας, " +"απλά προσφέρει τη δυνατότητα επικοινωνίας μαζί σας για πιθανή αξιολόγηση " +"κάποιας υποβολής στο περιοδικό μας. Μόλις δεχτείτε πρόσκληση για αξιολόγηση, " +"θα έχετε τη δυνατότητα να δείτε τον τίτλο και το απόσπασμα της υπό " +"αξιολόγηση εργασίας, και θα βρίσκεστε πάντα σε θέση να αποδεχτείτε ή όχι την " +"πρόσκληση. Ανά πάσα στιγμή, επίσης, μπορείτε να καταργήσετε το όνομά σας από " +"τη λίστα των αξιολογητών.
    \n" +"
    \n" +"Το όνομα χρήστη και ο κωδικός πρόσβασης που σας παρέχεται, χρησιμοποιείται " +"σε όλες τις αλληλεπιδράσεις με τις εκδόσεις μέσω του συγκεκριμένου " +"ιστότοπου. Για παράδειγμα, μπορείτε να ενημερώσετε το προφίλ σας καθώς και " +"τα ενδιαφέροντά σας σε σχέση με την αξιολόγηση.
    \n" +"
    \n" +"Όνομα Χρήστη: {$recipientUsername}
    \n" +"Κωδικός Πρόσβασης: {$password}
    \n" +"
    \n" +"Σας ευχαριστούμε,
    \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Ανάθεση ομάδας εργασίας" + +msgid "emails.editorAssign.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Στο πλαίσιο του ρόλου σας ως Επιμελητή, σας έχει ανατεθεί η παρακολούθηση " +"της υποβολή, "{$submissionTitle}," στις εκδόσεις {$contextName} σε " +"όλη τη διάρκεια της διαδικασίας επιμέλειας.
    \n" +"
    \n" +"URL Υποβολής: {$submissionUrl}
    \n" +"Όνομα χρήστη: {$recipientUsername}
    \n" +"
    \n" +"Thank you," + +msgid "emails.reviewRequest.subject" +msgstr "Αίτημα αξιολόγησης εργασίας" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Κύριε/α {$recipientName},
    \n" +"
    \n" +"{$messageToReviewer}
    \n" +"
    \n" +"Θα σας παρακαλούσαμε να συνδεθείτε στον ιστότοπο των εκδόσεων Τιμαία μέχρι " +"την {$responseDueDate} για να δηλώσετε αν θα αναλάβετε την αξιολόγηση ή όχι, " +"καθώς και για να αποκτήσετε πρόσβαση στην υποβολή και για να καταχωρίσετε " +"την αξιολόγησή σας και τις συστάσεις σας. Ο δικτυακός τόπος των εκδόσεων " +"είναι
    \n" +"
    \n" +"Η προθεσμία ολοκλήρωσης της αξιολόγηση λήγει στις {$reviewDueDate}.
    \n" +"
    \n" +"URL υποβολής: {$reviewAssignmentUrl}
    \n" +"
    \n" +"Username: {$recipientUsername}
    \n" +"
    \n" +"Σας ευχαριστούμε εκ των προτέρων για την εξέταση του αιτήματός μας.
    \n" +"
    \n" +"
    \n" +"Με εκτίμηση,
    \n" +"{$signature}" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" + +msgid "emails.reviewCancel.subject" +msgstr "Αίτημα για ακύρωση αξιολόγησης" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Θα θέλαμε να σας ενημερώσουμε ότι η συντακτική ομάδα αποφάσισε την ακύρωση " +"του αιτήματός μας προς εσάς για την αξιολόγηση της εργασίας, "" +"{$submissionTitle}," για τις εκδόσεις {$contextName}. Σας ζητούμε " +"συγνώμη για την ενδεχόμενη αναστάτωση και ελπίζουμε να είναι δυνατή η " +"μελλοντική βοήθειά σας για τη διαδικασία αξιολόγησης μιας εργασίας.
    \n" +"
    \n" +"Για οποιαδήποτε διευκρίνιση, παρακαλώ επικοινωνήστε μαζί μας" + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "" + +msgid "emails.reviewReinstate.body" +msgstr "" + +msgid "emails.reviewDecline.subject" +msgstr "Μη δυνατότητα πραγματοποίησης αξιολόγησης" + +msgid "emails.reviewDecline.body" +msgstr "" +"Επιμελητές:
    \n" +"
    \n" +"Θα ήθελα να σας ενημερώσω ότι την τρέχουσα περίοδο, δυστυχώς δεν δύναμαι να " +"αναλάβω την αξιολόγηση της εργασίας, "{$submissionTitle}," για τις " +"εκδόσεις {$contextName}. Θα ήθελα να σας ευχαριστήσω για την εμπιστοσύνη σας " +"και μη διστάσετε να επικοινωνήσετε μαζί μου ξανά στο μέλλον για μια πιθανή " +"συνεργασία.
    \n" +"
    \n" +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Υπενθύμιση αξιολόγησης υποβολής" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"JΤο μήνυμα αυτό αποτελεί μια απλή υπενθύμιση σχετικά με την αξιολόγηση της " +"υποβολής, "{$submissionTitle}," για τις εκδόσεις {$contextName} " +"που έχετε αναλάβει. Ελπίζουμε ότι η αξιολόγηση να είναι έτοιμη μέχρι την " +"σχετική προθεσμία {$reviewDueDate}, και θα είμαστε ευγνώμονες να τη λάβουμε " +"το συντομότερο δυνατό.
    \n" +"
    \n" +"Εάν για οποιοδήποτε λόγο δεν διαθέτετε το όνομα χρήστη και κωδικό πρόσβασης " +"σας για τον ιστότοπο των εκδόσων e-books, μπορείτε να χρησιμοποιήσετε τον " +"παρακάτω σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασης σας (το οποίο θα " +"σας αποσταλεί με email μαζί με το όνομα χρήστη). {$passwordLostUrl}
    \n" +"
    \n" +"URL Υποβολής: {$reviewAssignmentUrl}
    \n" +"
    \n" +"Username: {$recipientUsername}
    \n" +"
    \n" +"Θα σας παρακαλούσαμε να μας επιβεβαιώσετε ότι είστε σε θέση να ολοκληρώσετε " +"επιτυχώς την, τόσο σημαντική για τις εκδόσεις, εργασία της αξιολόγησης . " +"Ελπίζουμε να λάβουμε σύντομα την απάντησή σας.
    \n" +"
    \n" +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Το μήνυμα αυτό αποτελεί μια απλή υπενθύμιση σχετικά με την αξιολόγηση της " +"υποβολής, "{$submissionTitle}," για τις εκδόσεις {$contextName} " +"που έχετε αναλάβει. Ελπίζουμε ότι η αξιολόγηση να είναι έτοιμη μέχρι την " +"σχετική προθεσμία {$reviewDueDate}. Λάβετε υπόψη σας ότι το μήνυμα αυτό " +"δημιουργήθηκε αυτόματα και αποστέλλεται μετά την πάροδο της ημερομηνίας " +"αυτής. Παρόλα αυτά θα είμαστε ευγνώμονες να λάβουμε την αξιολόγησή σας το " +"συντομότερο δυνατό.
    \n" +"
    \n" +"IΕάν για οποιοδήποτε λόγο δεν διαθέτετε το όνομα χρήστη και κωδικό πρόσβασης " +"σας για τον ιστότοπο της Τιμαίας, μπορείτε να χρησιμοποιήσετε τον παρακάτω " +"σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασης σας (το οποίο θα σας " +"αποσταλλεί με email μαζί με το όνομα χρήστη). {$passwordLostUrl}
    \n" +"
    \n" +"URL Υποβολής: {$reviewAssignmentUrl}
    \n" +"
    \n" +"Θα σας παρακαλούσαμε να μας επιβεβαιώσετε ότι είστε σε θέση να ολοκληρώσετε " +"επιτυχώς την, τόσο σημαντική για το περιοδικό, εργασία της αξιολόγησης . " +"Ελπίζουμε να λάβουμε σύντομα την απάντησή σας.
    \n" +"
    \n" +"{$contextSignature}" + +#, fuzzy +msgid "emails.editorDecisionAccept.subject" +msgstr "Απόφαση Επιμελητή" + +#, fuzzy +msgid "emails.editorDecisionAccept.body" +msgstr "" +"{$authors}:
    \n" +"
    \n" +"Σχετικά με την υποβολή σας στις εκδόσεις {$contextName}, με τίτλο "" +"{$submissionTitle}" θα θέλαμε να σας ενημερώσουμε :
    \n" +"
    \n" +"
    \n" +"
    \n" +"URL Εργασίας: {$submissionUrl}
    \n" +"Username: {$recipientUsername}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" + +#, fuzzy +msgid "emails.layoutRequest.subject" +msgstr "Αίτημα σελιδοποίησης" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Στο στάδιο αυτό θα πρέπει να δημιουργηθούν τα κατάλληλα τυπογραφικά δοκίμια " +"για την υποβολή με τίτλο "{$submissionTitle}" των εκδόσεων " +"{$contextName} ακολουθώντας τα παρακάτω βήματα:
    \n" +"
    \n" +"1. Κάντε κλικ στο URL της υποβολής που βρίσκεται παρακάτω.
    \n" +"2. Συνδεθείτε στις εκδόσεις και χρησιμοποιήστε το αρχείο της Έκδοσης " +"Σελιδοποίησης για τη δημιουργία των εντύπων σύμφωνα με τα πρότυπα του " +"περιοδικού.
    \n" +"3. Αποστείλατε το μήνυμα ΟΛΟΚΛΗΡΩΜΕΝΟ στον επιμελητή.
    \n" +"
    \n" +"{$contextName} URL: {$contextUrl}
    \n" +"Submission URL: {$submissionUrl}
    \n" +"Username: {$recipientUsername}
    \n" +"
    \n" +"Εάν δεν μπορείτε να αναλάβετε τη συγκεκριμένη εργασία αυτή τη στιγμή ή έχετε " +"απορίες, επικοινωνήστε μαζί μας. Ευχαριστούμε για την συμβολή σας σε αυτή " +"την έκδοση." + +#, fuzzy +msgid "emails.layoutComplete.subject" +msgstr "Ολοκλήρωση δημιουργίας σελιδοποιημένων δοκιμίων" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Τα σελιδοποιημένα δοκίμια για την εργασία με τίτλο, "{$submissionTitle}," +"" για τις εκδόσεις {$contextName} είναι έτοιμα για την προετοιμασία των " +"τυπογραφικών δοκιμίων.
    \n" +"
    \n" +"Εάν έχετε απορίες, επικοινωνήστε μαζί μου.
    \n" +"
    \n" +"{$senderName}" + +msgid "emails.indexRequest.subject" +msgstr "Αίτημα Ευρετηρίασης" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Στο στάδιο αυτό της υποβολής με τίτλο "{$submissionTitle}" για τις " +"εκδόσεις {$contextName} θα πρέπει να γίνει η Ευρετηρίαση της ακολουθώντας τα " +"παρακάτω βήματα:
    \n" +"1. Κάντε κλικ στο URL υποβολής που βρίσκεται παρακάτω.
    \n" +"2. 2. Συνδεθείτε στις εκδόσεις και χρησιμοποιήστε το αρχείο του Τυπογραφικού " +"Δοκιμίου για τη δημιουργία εκτυπωμένων κειμένων σύμφωνα με τα πρότυπα των " +"εκδόσεων.
    \n" +"3. Αποστείλατε το μήνυμα ΟΛΟΚΛΗΡΩΜΕΝΟ στον επιμελητή.
    \n" +"
    \n" +"{$contextName} URL: {$contextUrl}
    \n" +"URL Υποβολής: {$submissionUrl}
    \n" +"όνομα Χρήστη: {$recipientUsername}
    \n" +"
    \n" +"Εάν δεν μπορείτε να αναλάβετε την συγκεκριμένη εργασία αυτή τη στιγμή ή " +"έχετε απορίες, επικοινωνήστε μαζί μας. Ευχαριστούμε για την συμβολή σας στη " +"συγκεκριμένη έκδοση.
    \n" +"
    \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Ολοκλήρωση Ευρετηρίασης" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Η ευρετηρίαση της εργασίας με τίτλο , "{$submissionTitle}," για " +"τις εκδόσεις {$contextName} έχει ολοκληρωθεί και είναι έτοιμη για την " +"προετοιμασία των τυπογραφικών δοκιμίων.
    \n" +"
    \n" +"Εάν έχετε απορίες, επικοινωνήστε μαζί μου.
    \n" +"
    \n" +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "E-book πιθανού ενδιαφέροντος" + +msgid "emails.emailLink.body" +msgstr "" +"Ίσως να σας ενδιαφέρει το κείμενο με τίτλο "{$submissionTitle}" " +"του/των {$authors} που δημοσιεύτηκε στον Τομ. {$volume}, No {$number} " +"({$year}) των εκδόσεων {$contextName} στον σύνδεσμο "{$submissionUrl}" +""." + +msgid "emails.emailLink.description" +msgstr "" +"Το συγκεκριμένο πρότυπο μηνύματος email παρέχει σε εγγεγραμμένο αναγνώστη τη " +"δυνατότητα αποστολής πληροφοριών σχετικά με μία έκδοση σε οποιονδήποτε " +"μπορεί να έχει εκδηλώσει ενδιαφέρον. Είναι διαθέσιμο μέσω των Εργαλείων " +"ανάγνωσης και πρέπει να ενεργοποιηθεί από Υπεύθυνο διαχείρισης των εκδόσεων " +"στη σελίδα Διαχείρισης εργαλείων ανάγνωσης." + +msgid "emails.notifySubmission.subject" +msgstr "Ειδοποίηση Υποβολής" + +msgid "emails.notifySubmission.body" +msgstr "" +"Έχετε μια νέα ειδοποίηση από {$sender} σχετικά με την έκδοση "" +"{$submissionTitle}" ({$monographDetailsUrl}):
    \n" +"
    \n" +"\t\t{$message}" + +msgid "emails.notifySubmission.description" +msgstr "" +"A notification from a user sent from a submission information center modal." + +msgid "emails.notifyFile.subject" +msgstr "Ειδοποίηση Αρχείου Υποβολής" + +msgid "emails.notifyFile.body" +msgstr "" +"Έχετε ένα νέο μήνυμα {$sender} σχετικά με το αρχείο "{$fileName}" " +"της έκδοσης "{$submissionTitle}" ({$monographDetailsUrl}):
    \n" +"
    \n" +"\t\t{$message}" + +msgid "emails.notifyFile.description" +msgstr "A notification from a user sent from a file information center modal" + +msgid "emails.statisticsReportNotification.subject" +msgstr "" + +msgid "emails.statisticsReportNotification.body" +msgstr "" + +msgid "emails.announcement.subject" +msgstr "" + +msgid "emails.announcement.body" +msgstr "" + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Επικύρωση λογαριασμού" + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName}
    \n" +#~ "
    \n" +#~ "
    \n" +#~ "Έχετε δημιουργήσει λογαριασμό στις εκδόσεις {$contextName}, αλλά πριν " +#~ "αρχίσετε να το χρησιμοποιείται, πρέπει να επικυρώσετε τον λογαριασμό του " +#~ "ηλεκτρονικού σας ταχυδρομείου. Για να την επικύρωση, ακολουθήστε τον " +#~ "παρακάτω σύνδεσμο:
    \n" +#~ "
    \n" +#~ "{$activateUrl}
    \n" +#~ "
    \n" +#~ "Σας ευχαριστούμε,
    \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται σε νέους " +#~ "χρήστες για να τους καλωσορίσει στο σύστημα και να τους στείλει το όνομα " +#~ "χρήστη και τον κωδικό πρόσβασής τους." diff --git a/locale/el/locale.po b/locale/el/locale.po new file mode 100644 index 00000000000..731fa2a3bab --- /dev/null +++ b/locale/el/locale.po @@ -0,0 +1,1783 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" +"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "common.payments" +msgstr "" + +msgid "monograph.audience" +msgstr "Κοινό" + +msgid "monograph.audience.success" +msgstr "" + +msgid "monograph.coverImage" +msgstr "Εικόνα Εξωφύλλου" + +msgid "monograph.audience.rangeQualifier" +msgstr "Προσδιορισμός Εύρος Κοινού" + +msgid "monograph.audience.rangeFrom" +msgstr "Εύρος Κοινού (από)" + +msgid "monograph.audience.rangeTo" +msgstr "Εύρος Κοινού (σε)" + +msgid "monograph.audience.rangeExact" +msgstr "Εύρος Κοινού (ακριβής)" + +msgid "monograph.languages" +msgstr "Γλώσσες (Αγγλικά, Γαλλικά, Ισπανικά)" + +msgid "monograph.publicationFormats" +msgstr "Μορφές Δημοσίευσης" + +msgid "monograph.publicationFormat" +msgstr "" + +msgid "monograph.publicationFormatDetails" +msgstr "" + +msgid "monograph.miscellaneousDetails" +msgstr "" + +msgid "monograph.carousel.publicationFormats" +msgstr "Μορφότυπα:" + +msgid "monograph.type" +msgstr "Τύπος Υποβολής" + +msgid "submission.pageProofs" +msgstr "Σελίδα Τυπογραφικών Δοκιμίων" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Ο επιμελητής σελιδοποίησης ανεβάζει τα αρχεία για το στάδιο-παραγωγής που " +"έχουν ετοιμαστεί για δημοσίευση εδώ. Επιλέξτε +Ανάθεση για να " +"ορίσετε συγγραφείς και άλλους να διορθώσουν και να ελέγξουν τα τυπογραφικά " +"δοκίμια ώστε τα διορθωμένα αρχεία να μεταφορτωθούν για έγκριση πριν τη " +"δημοσίευση." + +msgid "monograph.task.addNote" +msgstr "Προσθήκη Ανάθεσης" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Ανοικτή Πρόσβαση" + +msgid "monograph.publicationFormat.imprint" +msgstr "Αποτύπωμα (Λογότυπο)/ imprint" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Αριθμός Σελίδων" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Πρώτες Σελίδες" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Πίσω Σελίδες" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Σύνθεση Προϊόντος" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Λεπτομέρειες Προϊόντος (δεν απαιτείται)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Κωδικός Προϊόντος" + +msgid "monograph.publicationFormat.price" +msgstr "Τιμή" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Μία τιμή απαιτείται" + +msgid "monograph.publicationFormat.priceType" +msgstr "Τύπος Τιμής" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Ποσοστό Έκπτωσης, κατα περίπτωση" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Διαθεσιμότητα Προϊόντος" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Δείκτης Επιστρεφόμενων" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Ψηφιακές Πληροφορίες" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Φυσικές Διαστάσεις" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr "" + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Μέγεθος Αρχείου σε Mbytes" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Εισαγωγή δικής σας τιμής για το μέγεθος του αρχείου?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Ύψος" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Πάχος" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Βάρος" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Πλάτος" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Χώρα Κατασκευής" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Digital Technical Protection" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Περιοχή Διανομής Προϊόντος" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Φορολογικός Συντελεστής" + +msgid "monograph.publicationFormat.taxType" +msgstr "Τύπος Φορολογίας" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Συμπεριλάβετε τα μεταδεδομένα του μορφότυπου της έκδοσης στην καταχώρηση του " +"βιβλίου στον κατάλογο." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Λείπουν αγορές και τιμές" + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Λείπει ο κωδικός ταυτοπίοιησης (identification code)." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Λείπουν ορισμένα πεδία μεταδεδομένων." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

    Ο τύπος αρχείου της έκδοσης που έχετε επιλέξει δεν υπάρχει πλέον για αυτή " +"τη μονογραφία.

    " + +msgid "monograph.publicationFormat.openTab" +msgstr "Ετικέτα Μορφότυπου ανοικτής δημοσίευσης." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Μορφότυπο Δημοσίευσης" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Απαιτείται όνομα" + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Σας παρακαλούμε εισάγεται μια έγκυρη τιμή." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Λεπτομέρειες Μορφότυπου" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Physical format" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "" + +msgid "grid.catalogEntry.remoteURL" +msgstr "" + +msgid "grid.catalogEntry.isbn" +msgstr "" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "" + +msgid "grid.catalogEntry.isbn10.description" +msgstr "" + +msgid "grid.catalogEntry.monographRequired" +msgstr "Απαιτείται ένα id της μονογραφίας." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Ένα μορφότυπο της έκδοσης πρέπει να επιλεγεί." + +msgid "grid.catalogEntry.availability" +msgstr "" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Διαθέσιμο" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "" + +msgid "grid.catalogEntry.proof" +msgstr "Τυπογραφικό Δοκίμιο" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Έγκριση Μορφότυπου" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

    Αυτό το μορφότυπο θα γίνει τώρα διαθέσιμο στους αναγνώστες, μέσω " +"αρχείων διαθέσιμων για λήψη που θα εμφανίζονται με την καταχώρηση του " +"βιβλίου στον κατάλογο και/ή μέσω περαιτέρω ενεργειών από τις εκδόσεις για τη " +"διανομή του βιβλίου.

    " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

    Αυτό το μορφότυπο δεν διατίθεται πλεόν στους αναγνώστες, μέσω " +"αρχείων διαθέσιμων για λήψη που προηγούμένως εμφανίζονταν με την καταχώρηση " +"του βιβλίου στον κατάλογο και/ή μέσω περαιτέρω ενεργειών από τις εκδόσεις " +"για τη διανομή του βιβλίου.

    " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Η καταχώρηση στον κατάλογο δεν έγινε αποδεκτή" + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Το μορφότυπο δεν είναι καταχωρημένο στον κατάλογο" + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Το τυπογραφικό δοκίμιο δεν έγινε αποδεκτό" + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Απαιτείται μέγεθος αρχείου για τα ψηφιακά μορφότυπα." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Απαιτείται κωδικός διαθεσιμότητας για το προϊόν." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Απαιτείται να επιλέξετε έναν κωδικό σύνθεσης του προϊόντος." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Κωδικοποιημένες Τιμές (Code Value)" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Τύπος Κωδικού ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Απαιτείται ένας κωδικός." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Απαιτείται μία τιμή." + +msgid "grid.catalogEntry.salesRights" +msgstr "Δικαιώματα Πώλησης" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Κωδικοποιημένες Τιμές (Code Value)" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Τύπος Δικαιωμάτων Πώλησης" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Υπόλοιπος κόσμος?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Επιλέξτε αυτό το κουτάκι για να καταχωρήσετε τα Δικαιώματα Πώλησης σε όλα τα " +"μορφότυπα σας. Δεν χρειάζεται να επιλεγούν Χώρες και Περιοχές σε αυτή την " +"περίπτωση." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Υπάρχει ήδη ένας τύπος πωλήσεων για τον υπόλοιπο κόσμο καθορισμένος για το " +"μορφότυπο της έκδοσης." + +msgid "grid.catalogEntry.countries" +msgstr "Χώρες" + +msgid "grid.catalogEntry.regions" +msgstr "Περιοχές" + +msgid "grid.catalogEntry.included" +msgstr "Συμπεριλαμβάνεται" + +msgid "grid.catalogEntry.excluded" +msgstr "Εξαιρούνται" + +msgid "grid.catalogEntry.markets" +msgstr "Περιοχές Αγοράς" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Περιοχές" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Ημερομηνίες Έκδοσης" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Απαιτείται ένας ρόλος αντιπροσώπου." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Απαιτείται Μορφή Ημερομηνίας." + +msgid "grid.catalogEntry.dateValue" +msgstr "Ημερομηνία" + +msgid "grid.catalogEntry.dateRole" +msgstr "Ρόλος" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Μορφή Ημερομηνίας" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Απαιτείται ημερομηνία και η τιμή της πρέπει να ταιριάζει με το επιλεγμένο " +"μορφότυπο." + +msgid "grid.catalogEntry.representatives" +msgstr "Αντιπρόσωποι" + +msgid "grid.catalogEntry.representativeType" +msgstr "Τύπος αντιπροσώπου (Representative Type)" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Πράκτορες (Agents)" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Προμηθευτές" + +msgid "grid.catalogEntry.agent" +msgstr "Πράκτορας" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Μπορείτε να αναθέσετε σε έναν πράκτορα να σας αντιπροσωπεύσει σε αυτή την " +"περιοχή. Δεν απαιτείται." + +msgid "grid.catalogEntry.supplier" +msgstr "Προμηθευτής" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Επιλέξτε έναν ρόλο:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Ρόλος" + +msgid "grid.catalogEntry.representativeName" +msgstr "Όνομα" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Τηλέφωνο" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Email" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Ιστότοπος" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Αναγνωριστικό Αντιπροσώπου" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Τύπος αναγνωριστικού Αντιπροσώπου (συστήνεται GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Μπορείτε να αφήσετε την επόμενη ενότητα κενή εάν εσείς παρέχετε τις " +"υπηρεσίες στους πελάτες σας." + +msgid "grid.action.addRepresentative" +msgstr "Προσθήκη Αντοπροσώπου" + +msgid "grid.action.editRepresentative" +msgstr "Επεξεργασία του Αντιπροσώπου" + +msgid "grid.action.deleteRepresentative" +msgstr "Διαγραφή του Αντιπροσώπου" + +msgid "spotlight" +msgstr "" + +msgid "spotlight.spotlights" +msgstr "Βιτρίνα" + +msgid "spotlight.noneExist" +msgstr "Δεν υπάρχουν τρέχουσες καταχωρήσεις στη Βιτρίνα." + +msgid "spotlight.title.homePage" +msgstr "Στη βιτρίνα" + +msgid "spotlight.author" +msgstr "Συγγραφέας," + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Spotlight Item" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Αρχική σελίδα" + +msgid "grid.content.spotlights.form.location" +msgstr "Τοποθεσία Βιτρίνας" + +msgid "grid.content.spotlights.form.item" +msgstr "Εισαγωγή Τίτλου Βιτρίνας (autocomplete)" + +msgid "grid.content.spotlights.form.title" +msgstr "Τίτλος Βιτρίνας" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Βιβλίο" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Απαιτείται ένα τεκμήριο." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Απαιτείται τίτλος Βιτρίνας" + +msgid "grid.content.spotlights.locationRequired" +msgstr "Παρακαλούμε επιλέξτε μια τοποθεσία της Βιτρίνας" + +msgid "grid.action.editSpotlight" +msgstr "Επεξεργασία αυτής της Βιτρίνας" + +msgid "grid.action.deleteSpotlight" +msgstr "Διαγραφής αυτής της Βιτρίνας" + +msgid "grid.action.addSpotlight" +msgstr "Προσθήκη στη Βιτρίνα" + +msgid "manager.series.open" +msgstr "Ανοικτές Υποβολές" + +msgid "manager.series.indexed" +msgstr "Έχει ευρετηριαστεί" + +msgid "grid.libraryFiles.column.files" +msgstr "Αρχεία" + +msgid "grid.action.catalogEntry" +msgstr "Προβολή φόρμας καταχώρησης στον κατάλογο" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Μορφότυπο που εμφανίζεται στην κατχώρηση στον κατάλογο" + +msgid "grid.action.editFormat" +msgstr "Επεξεργασία αυτού του μορφότυπου" + +msgid "grid.action.deleteFormat" +msgstr "Διαγραφή αυτού του μορφότυπου" + +msgid "grid.action.addFormat" +msgstr "Προσθήκη μορφότυπου δημοσίευσης" + +msgid "grid.action.approveProof" +msgstr "" +"Έγκριση του τυπογραφικού δοκιμίου για ευρετηρίαση και ένταξη του στον " +"κατάλογο." + +msgid "grid.action.pageProofApproved" +msgstr "" +"Το αρχείο με τις σελίδες τυπογραφικού δοκιμίου είναι έτοιμο για δημοσίευση" + +msgid "grid.action.newCatalogEntry" +msgstr "Νέα Καταχώριση στον Κατάλογο" + +msgid "grid.action.publicCatalog" +msgstr "Προβολή αυτού του στοιχείου στον κατάλογο" + +msgid "grid.action.feature" +msgstr "Εναλλαγή εμφάνισης στα προτεινόμενα βιβλία" + +msgid "grid.action.featureMonograph" +msgstr "Εμφάνιση στο καρουσέλ του καταλόγου" + +msgid "grid.action.releaseMonograph" +msgstr "Επισήμανση της υποβολής στις \"νέες κυκλοφορίες\"" + +msgid "grid.action.manageCategories" +msgstr "Ρυθμίσεις κατηγοριών για αυτές τις εκδόσεις" + +msgid "grid.action.manageSeries" +msgstr "Ρυθμίσεις σειρών για αυτές τις εκδόσεις" + +msgid "grid.action.addCode" +msgstr "Προσθήκη Κωδικού" + +msgid "grid.action.editCode" +msgstr "Επεξεργασία Κωδικού" + +msgid "grid.action.deleteCode" +msgstr "Διαγραφή Κωδικού" + +msgid "grid.action.addRights" +msgstr "Προσθήκη Δικαιωμάτων Πώλησης" + +msgid "grid.action.editRights" +msgstr "Επεξεργασία των Διακαιωμάτων" + +msgid "grid.action.deleteRights" +msgstr "Διαγραφή των Δικαιωμάτων" + +msgid "grid.action.addMarket" +msgstr "Προσθήκη Αγοράς (Market)" + +msgid "grid.action.editMarket" +msgstr "Επεξεργασία Αγοράς" + +msgid "grid.action.deleteMarket" +msgstr "Διαγραφή Αγοράς" + +msgid "grid.action.addDate" +msgstr "Προσθήκη ημερομηνίας δημοσίευσης" + +msgid "grid.action.editDate" +msgstr "Επεξεργασία ημερομηνίας" + +msgid "grid.action.deleteDate" +msgstr "Διαγραφή της ημερομηνία" + +msgid "grid.action.createContext" +msgstr "" + +msgid "grid.action.publicationFormatTab" +msgstr "Προβολή ετικέτας του μορφότυπου δημοσίευσης" + +msgid "grid.action.moreAnnouncements" +msgstr "Πήγαινε στη σελίδα ανακοινώσεων των εκδόσεων" + +msgid "grid.action.submissionEmail" +msgstr "Επιλέξτε για να διαβάσετε αυτό το email" + +msgid "grid.action.approveProofs" +msgstr "Προβολή πλέγματος (grid) τυπογραφικών δοκιμίων" + +msgid "grid.action.proofApproved" +msgstr "Έχει γίνει το τυπογραφικό δοκίμιο αυτού του μορφότυπου." + +msgid "grid.action.availableRepresentation" +msgstr "Αποδοχή/απόριψη αυτού του μορφότυπου" + +msgid "grid.action.formatAvailable" +msgstr "Το μορφότυπο είναι διαθέσιμο και έχει δημοσιευθεί" + +msgid "grid.reviewAttachments.add" +msgstr "Προσθήκη Συνημμένου για Αξιολόγηση" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Διαθέσιμα Αρχεία" + +msgid "series.series" +msgstr "Σειρές" + +msgid "series.featured.description" +msgstr "Αυτή η σειρά θα εμφανιστεί στο κύριο μενού πλοήγησής" + +msgid "series.path" +msgstr "Διαδρομή" + +msgid "catalog.manage" +msgstr "Διαχείριση Καταλόγου" + +msgid "catalog.manage.newReleases" +msgstr "Νέες Κυκλοφορίες" + +msgid "catalog.manage.category" +msgstr "Κατηγορία" + +msgid "catalog.manage.series" +msgstr "Σειρές" + +msgid "catalog.manage.series.issn" +msgstr "" + +msgid "catalog.manage.series.issn.validation" +msgstr "" + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "" + +msgid "catalog.manage.series.onlineIssn" +msgstr "" + +msgid "catalog.manage.series.printIssn" +msgstr "" + +msgid "catalog.selectSeries" +msgstr "Επιλέξτε Σειρά" + +msgid "catalog.selectCategory" +msgstr "Επιλέξτε Κατηγορία" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Οι εικόνες με τα εξώφυλλα των επιλεγμένων βιβλίων εμφανίζεται στο πάνω μέρος " +"της αρχικής σελίδας με τη δυνατότητα περιστροφής των εικόνων (carousel). " +"Επιλέξτε 'Εμφάνιση', έπειτα επιλέξτε το αστέρι για τη προσθήκη του βιβλίου " +"στο carousel, το εικονίδιο με το θαυμαστικό για την εμφάνιση του στις νέες " +"κυκλοφορίες. Σύρετε και αφήστε την εικόνα για να αλλάξετε τη σειρά." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Επιλέξτε 'Εμφάνιση', έπειτα το αστέρι για την επιλογή εμφάνισης του βιβλίου " +"σε αυτή την κατηγορία. Σύρετε και αφήστε την εικόνα για να αλλάξετε τη σειρά." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Επιλέξτε 'Εμφάνιση', έπειτα το αστέρι για την επιλογή εμφάνισης του βιβλίου " +"σε αυτή τη Σειρά, σύρετε και αφήστε την εικόνα για να αλλάξετε τη σειρά " +"εμφάνισης. Οι Σειρές αναγνωρίζονται από τον/ους επιμελητή/ες και έναν τίτλο " +"σειράς, μέσα σε μια κατηγορία ή ανεξάρτητα." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Carousel" + +msgid "catalog.manage.newRelease" +msgstr "Νέες Κυκλοφορίες" + +msgid "catalog.manage.manageSeries" +msgstr "Διαχείριση Σειρών" + +msgid "catalog.manage.manageCategories" +msgstr "Διαχείριση Κατηγοριών" + +msgid "catalog.manage.noMonographs" +msgstr "Δεν υπάρχουν ανατιθέμενες μονογραφίες." + +msgid "catalog.manage.featured" +msgstr "" + +msgid "catalog.manage.categoryFeatured" +msgstr "" + +msgid "catalog.manage.seriesFeatured" +msgstr "" + +msgid "catalog.manage.featuredSuccess" +msgstr "" + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "" + +msgid "catalog.manage.newReleaseSuccess" +msgstr "" + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "" + +msgid "catalog.manage.feature.newRelease" +msgstr "" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "" + +msgid "catalog.manage.nonOrderable" +msgstr "" + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "" + +msgid "catalog.manage.isFeatured" +msgstr "" + +msgid "catalog.manage.isNotFeatured" +msgstr "" + +msgid "catalog.manage.isNewRelease" +msgstr "" + +msgid "catalog.manage.isNotNewRelease" +msgstr "" + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "" + +msgid "catalog.manage.submissionsNotFound" +msgstr "" + +msgid "catalog.manage.findSubmissions" +msgstr "" + +msgid "catalog.noTitles" +msgstr "" + +msgid "catalog.noTitlesNew" +msgstr "" + +msgid "catalog.noTitlesSearch" +msgstr "" + +msgid "catalog.feature" +msgstr "Εμφάνιση" + +msgid "catalog.featured" +msgstr "" + +msgid "catalog.featuredBooks" +msgstr "Προτεινόμενα βιβλία" + +msgid "catalog.foundTitleSearch" +msgstr "" + +msgid "catalog.foundTitlesSearch" +msgstr "" + +msgid "catalog.category.heading" +msgstr "" + +msgid "catalog.newReleases" +msgstr "" + +msgid "catalog.dateAdded" +msgstr "Προστέθηκε" + +msgid "catalog.publicationInfo" +msgstr "Πληροφορίες Έκδοσης" + +msgid "catalog.published" +msgstr "" + +msgid "catalog.forthcoming" +msgstr "" + +msgid "catalog.categories" +msgstr "" + +msgid "catalog.parentCategory" +msgstr "" + +msgid "catalog.category.subcategories" +msgstr "" + +msgid "catalog.aboutTheAuthor" +msgstr "" + +msgid "catalog.loginRequiredForPayment" +msgstr "" + +msgid "catalog.sortBy" +msgstr "" + +msgid "catalog.sortBy.seriesDescription" +msgstr "" + +msgid "catalog.sortBy.categoryDescription" +msgstr "" + +msgid "catalog.sortBy.catalogDescription" +msgstr "" + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "" + +msgid "catalog.viewableFile.title" +msgstr "" + +msgid "catalog.viewableFile.return" +msgstr "" + +msgid "submission.search" +msgstr "" + +msgid "common.publication" +msgstr "" + +msgid "common.publications" +msgstr "" + +msgid "common.prefix" +msgstr "Πρόθημα" + +msgid "common.preview" +msgstr "Προεπισκόπηση" + +msgid "common.feature" +msgstr "Προβολή" + +msgid "common.searchCatalog" +msgstr "Αναζήτηση στον κατάλογο" + +msgid "common.moreInfo" +msgstr "Περισσότερες Πληροφορίες" + +msgid "common.listbuilder.completeForm" +msgstr "Παρακαλούμε συμπληρώστε όλα τα πεδία της φόρμας." + +msgid "common.listbuilder.selectValidOption" +msgstr "Παρακαλούμε κάνετε μια έγκυρη επιλογή από τη λίστα." + +msgid "common.listbuilder.itemExists" +msgstr "Δεν μπορείτε να προσθέσετε το ίδιο στοιχείο δύο φορές." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Κεφαλίδα Ιστοσελίδας" + +msgid "navigation.catalog" +msgstr "Κατάλογος" + +msgid "navigation.competingInterestPolicy" +msgstr "Πολιτική Συγκουόμενων Συμφερόντων" + +msgid "navigation.catalog.allMonographs" +msgstr "" + +msgid "navigation.catalog.manage" +msgstr "Διαχείριση" + +msgid "navigation.catalog.administration.short" +msgstr "Διαχείριση" + +msgid "navigation.catalog.administration" +msgstr "Διαχείριση Καταλόγου" + +msgid "navigation.catalog.administration.categories" +msgstr "Κατηγορίες" + +msgid "navigation.catalog.administration.series" +msgstr "Σειρές" + +msgid "navigation.infoForAuthors" +msgstr "Για Συγγραφείς" + +msgid "navigation.infoForLibrarians" +msgstr "Για Βιβλιοθηκονόμους" + +msgid "navigation.infoForAuthors.long" +msgstr "Πληροφορίες για Συγγραφείς" + +msgid "navigation.infoForLibrarians.long" +msgstr "Πληροφορίες για Βιβλιοθηκονόμους" + +msgid "navigation.newReleases" +msgstr "Νέες Κυκλοφορίες" + +msgid "navigation.published" +msgstr "Δημοσιευμένα" + +msgid "navigation.wizard" +msgstr "Οδηγός" + +msgid "navigation.linksAndMedia" +msgstr "Σύνδεσμοι και Κοινωνικά Μέσα" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "" + +msgid "navigation.skip.spotlights" +msgstr "" + +msgid "navigation.navigationMenus.series.generic" +msgstr "" + +msgid "navigation.navigationMenus.series.description" +msgstr "" + +msgid "navigation.navigationMenus.category.generic" +msgstr "" + +msgid "navigation.navigationMenus.category.description" +msgstr "" + +msgid "navigation.navigationMenus.newRelease" +msgstr "" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "" + +msgid "context.contexts" +msgstr "Εκδόσεις" + +msgid "context.context" +msgstr "" + +msgid "context.current" +msgstr "" + +msgid "context.select" +msgstr "" + +msgid "user.authorization.representationNotFound" +msgstr "" + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "" + +msgid "user.noRoles.submitMonograph" +msgstr "Υποβολή μιας πρότασης" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Υποβολή μιας Μονογραφίας: η εγγραφή Συγγραφέα είναο προς το παρόν " +"απενεργοποιημένη." + +msgid "user.noRoles.regReviewer" +msgstr "Εγγραφείτε ως Αξιολογητής" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Εγγραφείτε ως Αξιολογητής: Η εγγραφή αξιολογητών είναι προς το παρόν " +"απενεργοποιημένη" + +msgid "user.reviewerPrompt" +msgstr "" + +msgid "user.reviewerPrompt.userGroup" +msgstr "" + +msgid "user.reviewerPrompt.optin" +msgstr "" + +msgid "user.register.contextsPrompt" +msgstr "" + +msgid "user.register.otherContextRoles" +msgstr "" + +msgid "user.register.noContextReviewerInterests" +msgstr "" + +msgid "user.role.manager" +msgstr "Διαχειριστής Εκδόσεων" + +msgid "user.role.pressEditor" +msgstr "Επιμελητής Εκδόσεων" + +msgid "user.role.subEditor" +msgstr "Επιμελητής Σειράς" + +msgid "user.role.copyeditor" +msgstr "Επιμελητής Κειμένων" + +msgid "user.role.proofreader" +msgstr "Επιμελητής Τυπογραφικών Δοκιμίων" + +msgid "user.role.productionEditor" +msgstr "Επιμελητής Παραγωγής" + +msgid "user.role.managers" +msgstr "Διαχειριστές Εκδόσεων" + +msgid "user.role.subEditors" +msgstr "Επιμελητές Σειράς" + +msgid "user.role.editors" +msgstr "Επιμελητές" + +msgid "user.role.copyeditors" +msgstr "Επιμελητές Κειμένων" + +msgid "user.role.proofreaders" +msgstr "Επιμελητές Τυπογραφικών Δοκιμίων" + +msgid "user.role.productionEditors" +msgstr "Επιμελητές Παραγωγής" + +msgid "user.register.selectContext" +msgstr "Επιλέξτε μια έκδοση για να εγγραφείτε" + +msgid "user.register.noContexts" +msgstr "" +"Δεν υπάρχουν εκδόσεις στις οποίες μπορείτε να εγγραφείτε στον ιστότοπο αυτό." + +msgid "user.register.privacyStatement" +msgstr "Πολιτική Προστασίας Προσωπικών Δεδομένων" + +msgid "user.register.registrationDisabled" +msgstr "Οι εκδόσεις αυτές προς το παρόν δεν αποδέχεται εγγραφές χρηστών." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "" +"Ο κωδικός πρόσβασης που εισάγατε περιέχει λιγότερους χαρακτήρες από τον " +"ελάχιστο επιτρεπτό αριθμό χαρακτήρων." + +msgid "user.register.readerDescription" +msgstr "" +"Θα ενημερώνεστε με μήνυμα ηλεκτρονικού ταχυδρομείου όταν μια μονογραφία " +"δημοσιεύεται." + +msgid "user.register.authorDescription" +msgstr "Δυνατότητα υποβολής εργασιών στις εκδόσεις." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Επιθυμία για συμμετοχή στην αξιολόγηση υποβολών στις Εκδόσεις" + +msgid "user.register.reviewerDescription" +msgstr "Επιθυμία για συμμετοχή στην αξιολόγηση υποβολών στις Εκδόσεις." + +msgid "user.register.reviewerInterests" +msgstr "" +"Προσδιορίστε τα ενδιαφέροντα αξιολόγησης (θεματικές περιοχές και ερευνητικές " +"μέθοδοι)" + +msgid "user.register.form.userGroupRequired" +msgstr "Πρέπει να επιλέξετε τουλάχιστον ένα ρόλο" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" + +msgid "site.noPresses" +msgstr "" + +msgid "site.pressView" +msgstr "Προβολή ιστοσελίδας εκδόσεων" + +msgid "about.pressContact" +msgstr "Επικοινωνία" + +msgid "about.aboutContext" +msgstr "" + +msgid "about.editorialTeam" +msgstr "Συντακτική ομάδα" + +msgid "about.editorialPolicies" +msgstr "Πολιτικές έκδοσης" + +msgid "about.focusAndScope" +msgstr "Επίκεντρο και Σκοπός" + +msgid "about.seriesPolicies" +msgstr "Πολιτικές σειρών και κατηγοριών" + +msgid "about.submissions" +msgstr "Υποβολές" + +msgid "about.onlineSubmissions" +msgstr "Online υποβολές" + +msgid "about.onlineSubmissions.login" +msgstr "Συνδεθείτε" + +msgid "about.onlineSubmissions.register" +msgstr "" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "" +"Η εγγραφή και η σύνδεση είναι απαραίτητες για την online υποβολή τεκμηρίων " +"και για έλεγχο της κατάστασης των υποβολών σας." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "" + +msgid "about.onlineSubmissions.newSubmission" +msgstr "" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "" + +msgid "about.authorGuidelines" +msgstr "Οδηγίες προς συγγραφείς" + +msgid "about.submissionPreparationChecklist" +msgstr "Λίστα ελέγχου προετοιμασίας υποβολής" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Ως μέρος της διαδικασίας υποβολής, είναι απαραίτητο οι συγγραφείας να " +"ελέγχουν τη συμμόρφωση της υποβολής με όλα τα ακόλουθα τεκμήρια, ενώ οι " +"υποβολές που δεν τηρούν τις Οδηγίες για τους συγγραφείς μπορεί να " +"επιστραφούν στους συγγραφείς." + +msgid "about.copyrightNotice" +msgstr "Ενημέρωση για τα πνευματικά δικαιώματα" + +msgid "about.privacyStatement" +msgstr "Πολιτική Προστασίας Προσωπικών Δεδομένων" + +msgid "about.reviewPolicy" +msgstr "Διαδικασία αξιολόγησης από ομότιμους αξιολογητές" + +msgid "about.publicationFrequency" +msgstr "Συχνότητα δημοσίευσης" + +msgid "about.openAccessPolicy" +msgstr "Πολιτική Ανοικτής Πρόσβασης" + +msgid "about.pressSponsorship" +msgstr "Χορηγοί Εκδόσεων" + +msgid "about.aboutThisPublishingSystem" +msgstr "Σχετικά με το Open Publishing System" + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "OMP Διαδικασία Επιμέλειας και Δημοσίευσης" + +msgid "about.aboutSoftware" +msgstr "" + +#, fuzzy +msgid "about.aboutOMPPress" +msgstr "" +"Οι εκδόσεις αυτές χρησιμοποιούν το Open Monograph Press {$ompVersion}, το " +"οποίο είναι ένα λογισμικό διαχείρισης και δημοσίευσης εκδόσεων (βιβλίων) " +"ανοικτού κώδικα, που έχει αναπτυχθεί, υποστηρίζεται και διανέμεται ελεύθερα " +"από το Public Knowledge Project κάτω από " +"την αδειοδότηση GNU General Public License." + +#, fuzzy +msgid "about.aboutOMPSite" +msgstr "" +"Ο ιστότοπος αυτός χρησιμοποιεί το Open Monograph Press {$ompVersion}, το " +"οποίο είναι ένα λογισμικό διαχείρισης και δημοσίευσης εκδόσεων (βιβλίων) " +"ανοικτού κώδικα, που έχει αναπτυχθεί, υποστηρίζεται και διανέμεται ελεύθερα " +"από το Public Knowledge Project κάτω από " +"την αδειοδότηση GNU General Public License." + +msgid "help.searchReturnResults" +msgstr "Επιστροφή στα αποτελέσματα της αναζήτησης" + +msgid "help.goToEditPage" +msgstr "Ανοίξτε μια νέα σελίδα για να επεξεργαστείτε αυτές τις πληροφορίες" + +msgid "installer.appInstallation" +msgstr "OMP Installation" + +msgid "installer.ompUpgrade" +msgstr "OMP Upgrade" + +msgid "installer.installApplication" +msgstr "Install Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" + +#, fuzzy +msgid "installer.installationInstructions" +msgstr "" +"

    Thank you for downloading the Public Knowledge Project's Open " +"Monograph Press {$version}. Before proceeding, please read the README file included with this software. " +"For more information about the Public Knowledge Project and its software " +"projects, please visit the PKP web site. If you have bug reports or technical support inquiries " +"about Open Monograph Press, see the support forum or visit PKP's online bug reporting system. Although " +"the support forum is the preferred method of contact, you can also email the " +"team at pkp.contact@gmail.com.\n" +"\n" +"

    Upgrade

    \n" +"\n" +"

    If you are upgrading an existing installation of OMP, click here to proceed.

    " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Pre-Installation Steps" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

    1. The following files and directories (and their contents) must be made " +"writable:

    \n" +"
      \n" +"\t
    • config.inc.php is writable (optional): {$writable_config}\n" +"\t
    • public/ is writable: {$writable_public}
    • \n" +"\t
    • cache/ is writable: {$writable_cache}
    • \n" +"\t
    • cache/t_cache/ is writable: {$writable_templates_cache}
    • \n" +"\t
    • cache/t_compile/ is writable: {$writable_templates_compile}\n" +"\t
    • cache/_db is writable: {$writable_db_cache}
    • \n" +"
    \n" +"\n" +"

    2. A directory to store uploaded files must be created and made writable " +"(see \"File Settings\" below).

    " + +msgid "installer.upgradeInstructions" +msgstr "" +"

    OMP Version {$version}

    \n" +"\n" +"

    Thank you for downloading the Public Knowledge Project's Open " +"Monograph Press. Before proceeding, please read the README and UPGRADE files included with this software. For more information about " +"the Public Knowledge Project and its software projects, please visit the PKP web site. If you have " +"bug reports or technical support inquiries about Open Monograph Press, see " +"the support forum " +"or visit PKP's online bug reporting system. Although the support forum is the preferred " +"method of contact, you can also email the team at pkp.contact@gmail.com.

    \n" +"

    It is strongly recommended that you back up your " +"database, files directory, and OMP installation directory before proceeding." +"

    \n" +"

    If you are running in PHP Safe Mode, please ensure that the " +"max_execution_time directive in your php.ini configuration file is set to a " +"high limit. If this or any other time limit (e.g. Apache's \"Timeout\" " +"directive) is reached and the upgrade process is interrupted, manual " +"intervention will be required.

    " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"For complete Unicode (UTF-8) support, select UTF-8 for all character set " +"settings. Note that this support currently requires a MySQL >= 4.1.1 or " +"PostgreSQL >= 7.1 database server. Please also note that full Unicode " +"support requires the mbstring library (enabled by default in most recent PHP " +"installations). You may experience problems using extended character sets if " +"your server does not meet these requirements.\n" +"

    \n" +"Your server currently supports mbstring: {$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Your server currently allows file uploads: {$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Your server currently allows a maximum file upload size of: " +"{$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Η κύρια γλώσσα για χρήση από το συγκεκριμένο σύστημα. Ανατρέξτε στα έγγραφα " +"τεκμηρίωσης του OMP, εάν επιθυμείτε να υποστηρίξετε γλώσσες που δεν " +"περιλαμβάνονται εδώ." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Επιλογή άλλων πρόσθετων γλωσσών για υποστήριξη στο συγκεκριμένο σύστημα. Οι " +"γλώσσες αυτές θα είναι διαθέσιμες για χρήση από εκδόσεις που φιλοξενούνται " +"στον ιστότοπο. Πρόσθετες γλώσσες μπορούν να εγκαταστασθούν ανά πάσα στιγμή " +"από τη διεπαφή διαχείρισης. Γλώσσες που μαρκάρονται με * ίσως να μην είναι " +"ολοκληρωμένες." + +msgid "installer.filesDirInstructions" +msgstr "" +"Enter full pathname to an existing directory where uploaded files are to be " +"kept. This directory should not be directly web-accessible. Please " +"ensure that this directory exists and is writable prior to installation. Windows path names should use forward slashes, e.g. \"C:/mypress/" +"files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP requires access to a SQL database to store its data. See the system " +"requirements above for a list of supported databases. In the fields below, " +"provide the settings to be used to connect to the database." + +msgid "installer.upgradeApplication" +msgstr "" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

    IMPORTANT!

    \n" +"

    The installer could not automatically overwrite the configuration file. " +"Before attempting to use the system, please open config.inc.php in " +"a suitable text editor and replace its contents with the contents of the " +"text field below.

    " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

    Installation of OMP has completed successfully.

    \n" +"

    To begin using the system, login with the " +"username and password entered on the previous page.

    \n" +"

    If you wish to receive news and updates, please register at http://pkp.sfu.ca/" +"omp/register. If you have questions or comments, please visit " +"the support forum." +"

    " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

    Upgrade of OMP to version {$version} has completed successfully.

    \n" +"

    Don't forget to set the \"installed\" setting in your config.inc.php " +"configuration file back to On.

    \n" +"

    If you haven't already registered and wish to receive news and updates, " +"please register at http://pkp.sfu.ca/omp/register. If you have " +"questions or comments, please visit the support forum.

    " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Η ημερομηνία προθεσμίας για τον γύρο αξιολόγησης {$round} της υποβολής " +"{$monographId} από τον/ην {$reviewerName} έχει οριστεί η {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"Ο/Η {$reviewerName} έχει απορρίψει τον γύρο αξιολόγησης {$round} για την " +"υποβολή {$monographId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"Ο/Η {$reviewerName} έχει αποδεχτεί τον γύρο αξιολόγησης {$round} για την " +"υποβολή {$monographId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"Ο/Η {$editorName} έχει επισημάνει το αίτημα για το γύρο αξιολόγησης {$round} " +"για την υποβολή {$monographId} ως ανεξέταστο." + +msgid "log.editor.decision" +msgstr "" +"Μια απόφαση επιμελητή ({$decision}) για τη μονογραφία {$submissionId} " +"καταγράφηκε από τον/ην {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" + +msgid "log.editor.archived" +msgstr "Η υποβολή {$monographId} αρχειοθετήθηκε." + +msgid "log.editor.restored" +msgstr "Η υποβολή {$monographId} επανατοποθετήθηκε στη σειρά αναμονής." + +msgid "log.editor.editorAssigned" +msgstr "" +"Ο/Η {$editorName} έχει αναλάβει ως επιμελητής της υποβολής {$monographId}." + +msgid "log.proofread.assign" +msgstr "" +"Ο/Η{$assignerName} ανέθεσε στον/ην {$proofreaderName} την επιμέλεια του " +"τυπογραφικού δοκιμίου της υποβολής {$monographId}." + +msgid "log.proofread.complete" +msgstr "Ο/Η {$proofreaderName} υπέβαλλε το {$monographId} για προγραμματισμό." + +msgid "log.imported" +msgstr "Ο/Η {$userName} έχει εισάγει τη μονογραφία {$monographId}." + +msgid "notification.addedIdentificationCode" +msgstr "Ο κωδικός ταυτοποίησης (Identification Code) έχει προστεθεί." + +msgid "notification.editedIdentificationCode" +msgstr "Ο κωδικός ταυτοποίησης (Identification Code) επεξεργάστηκε." + +msgid "notification.removedIdentificationCode" +msgstr "Ο κωδικός ταυτοποίησης (Identification Code) έχει αφαιρεθεί." + +msgid "notification.addedPublicationDate" +msgstr "Η ημερομηνία έκδοσης έχει προστεθεί." + +msgid "notification.editedPublicationDate" +msgstr "Η ημερομηνία έκδοσης έχει επεξεργαστεί." + +msgid "notification.removedPublicationDate" +msgstr "Η ημερομηνία έκδοσης έχει αφαιρεθεί." + +msgid "notification.addedPublicationFormat" +msgstr "Το μορφότυπο (Format) της έκδοσης έχει προστεθεί." + +msgid "notification.editedPublicationFormat" +msgstr "Το μορφότυπο (Format) της έκδοσης έχει επεξεργαστεί." + +msgid "notification.removedPublicationFormat" +msgstr "Το μορφότυπο (Format) της έκδοσης έχει αφαιρεθεί." + +msgid "notification.addedSalesRights" +msgstr "Τα Δικαιώματα Πώλησης έχουν προστεθεί." + +msgid "notification.editedSalesRights" +msgstr "Τα Δικαιώματα Πώλησης έχουν επεξεργαστεί." + +msgid "notification.removedSalesRights" +msgstr "Τα Δικαιώματα Πώλησης έχουν αφαιρεθεί." + +msgid "notification.addedRepresentative" +msgstr "Ο Αντιπρόσωπος έχει προστεθεί." + +msgid "notification.editedRepresentative" +msgstr "Ο Αντιπρόσωπος έχει επεξεργαστεί." + +msgid "notification.removedRepresentative" +msgstr "Ο Αντιπρόσωπος έχει αφαιρεθεί." + +msgid "notification.addedMarket" +msgstr "Η Αγορά έχει προστεθεί." + +msgid "notification.editedMarket" +msgstr "Τα στοιχεία της Αγοράς έχουν επεξεργαστεί." + +msgid "notification.removedMarket" +msgstr "Η Αγορά έχει αφαιρεθεί." + +msgid "notification.addedSpotlight" +msgstr "Η Βιτρίνα έχει προστεθεί." + +msgid "notification.editedSpotlight" +msgstr "Η Βιτρίνα έχει επεξεργαστεί." + +msgid "notification.removedSpotlight" +msgstr "Η Βιτρίνα έχει αφαιρεθεί." + +msgid "notification.savedCatalogMetadata" +msgstr "Τα μεταδεδομένα του Καταλόγου έχουν αποθηκευτεί." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Τα μεταδεδομένα του μορφότυπου της έκδοσης έχουν αποθηκευτεί." + +msgid "notification.proofsApproved" +msgstr "Το Τυπογραφικό δοκίμιο έχει εγκριθεί." + +msgid "notification.removedSubmission" +msgstr "Η Υποβολή έχει διαγραφεί." + +msgid "notification.type.submissionSubmitted" +msgstr "Μια νέα μονογραφία, \"{$title},\" έχει υποβληθεί." + +msgid "notification.type.editing" +msgstr "Διόρθωση Γεγονότων" + +msgid "notification.type.reviewing" +msgstr "Γεγονότα Αξιολόγησης" + +msgid "notification.type.site" +msgstr "Γεγονότα Ιστοτόπου" + +msgid "notification.type.submissions" +msgstr "Γεγονότα Υποβολής" + +msgid "notification.type.userComment" +msgstr "Ένας αναγνώστης έχει κάνει ένα σχόλιο για το \"{$title}\"." + +msgid "notification.type.public" +msgstr "" + +msgid "notification.type.editorAssignmentTask" +msgstr "" +"Μία νέα μονογραφία έχει υποβληθεί και έιναι απαραίτητο να ανατεθεί σε έναν " +"επιμελητή." + +msgid "notification.type.copyeditorRequest" +msgstr "Έχετε κληθεί να θεωρήσετε την επιμέλεια κειμένων για το \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "" +"Έχετε κληθεί να θεωρήσετε την επιμέλεια σελιδοποίησης για το \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "Έχετε κληθεί να ευρετηριάσετε το \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Η διαδικασία εσωτερικής αξιολόγησης έχει ξεκινήσει." + +msgid "notification.type.approveSubmission" +msgstr "" +"Αυτή η υποβολή αναμένει πρόσφατα για Καταχώριση στον Κατάλογο πριν αυτή " +"εμφανιστεί δημόσια στον κατάλογο." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Εν αναμονή έγκρισης." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Καμία μέθοδος πληρωμής εισφορών δεν έχει ρυθμιστεί." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Μία διαμορφωμένη μέθοδος πληρωμής εισφορών απαιτείται πριν είστε σε θέση να " +"καθορίσετε τις ρυθμίσεις για ηλεκτρονικό εμπόριο (e-commerce)." + +msgid "notification.type.visitCatalogTitle" +msgstr "Διαχείριση Καταλόγου" + +msgid "notification.type.visitCatalog" +msgstr "" + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Η πρόσβαση δεν είναι δυνατή επειδή δεν φαίνεται να είστε έγκυρος ως " +"αναθεωρητής για αυτή τη μονογραφία." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Η πρόσβαση δεν είναι δυνατή επειδή δεν φαίνεται να είστε ο συγγραφέας για " +"αυτή τη μονογραφία." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Η πρόσβαση δεν είναι δυνατή επειδή δεν φαίνεται να σας έχει ανατεθεί η " +"αξιολόγηση για αυτή τη μονογραφία." + +msgid "user.authorization.monographFile" +msgstr "" +"Έχετε απαγορεύσει την πρόσβαση στο συγκεκριμένο αρχείο της μονογραφίας." + +msgid "user.authorization.invalidMonograph" +msgstr "Μη έγκυρη μονογραφία ή δεν έχει ζητηθεί η μονογραφία!" + +msgid "user.authorization.noContext" +msgstr "" + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Προσπαθείτε να αποκτήσετε πρόσβαση σε μια μονογραφία που δεν είναι μέρος της " +"σειράς που επιμελείστε." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" +"Η πρόσβαση δεν είναι δυνατή! Δεν έχετε ανάθεση σε αυτό το στάδιο της ροής " +"εργασιών." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Η πρόσβαση δεν είναι δυνατή! Η ομάδα χρηστών που πρόσφατα ενεργείτε μέσω " +"αυτής δεν έχει ζητηθεί σε αυτό το στάδιο ροής εργασιών. Παρακαλούμε ελέγξτε " +"τις ρυθμίσεις των εκδόσεων." + +msgid "payment.directSales" +msgstr "Λήψη αρχείου (Download) από τον Ιστότοπο των Εκδόσεων" + +msgid "payment.directSales.price" +msgstr "Τιμή" + +msgid "payment.directSales.availability" +msgstr "Διαθεσιμότητα" + +msgid "payment.directSales.catalog" +msgstr "Κατάλογος" + +msgid "payment.directSales.approved" +msgstr "Έχει εγκριθεί" + +msgid "payment.directSales.priceCurrency" +msgstr "Τιμή ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "" + +msgid "payment.directSales.directSales" +msgstr "Άμεσες Πωλήσεις" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Δεν είναι δυνατή η λήψη του αρχείου" + +msgid "payment.directSales.notSet" +msgstr "" + +msgid "payment.directSales.openAccess" +msgstr "Ανοικτή Πρόσβαση" + +msgid "payment.directSales.price.description" +msgstr "" +"Τα μορφότυπα των αρχείων μπορεί να είναι διαθέσιμα για λήψη από τον ιστότοπο " +"των εκδόσεων μέσω ανοικτής πρόσβασης χωρίς κόστος για τους αναγνώστες ή " +"χωρίς άμεσες πωλήσεις (χρησιμοποιόντας μια online μέθοδο πληρωμής, όπως έχει " +"ρυθμιστεί στη Διανομή). Για το αρχείο αυτό υποδείξτε την αρχή πρόσβασης." + +msgid "payment.directSales.validPriceRequired" +msgstr "Απαιτείται ένας έγκυρος αριθμός τιμής." + +msgid "payment.directSales.purchase" +msgstr "Αγορά ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Κατέβασμα" + +msgid "payment.directSales.monograph.name" +msgstr "Αγορά Λήψης Αρχείου Μονογραφίας ή Κεφαλαίου" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Αυτή η συναλλαγή αφορά την αγορά άμεσης λήψης μιας μονογραφίας ή ενός " +"κεφαλαίου μιας μονογραφίας." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Η επαναφόρτωση XML βοηθάει τη χαρτογράφηση του αρχείου {$filename} για την " +"αναζήτηση {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "" + +msgid "submission.pdf.download" +msgstr "" + +msgid "user.profile.form.showOtherContexts" +msgstr "" + +msgid "user.profile.form.hideOtherContexts" +msgstr "" + +msgid "submission.round" +msgstr "Γύρος {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "" + +msgid "catalog.coverImageTitle" +msgstr "" + +msgid "grid.catalogEntry.chapters" +msgstr "" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +#~ msgid "monograph.coverImage.uploadInstructions" +#~ msgstr "" +#~ "Βεβαιωθείτε ότι το ύψος της εικόνας δεν είναι μεγαλύτερο από το 150% του " +#~ "πλάτους της, διαφορετικά η εικόνα του εξωφύλλου σας δεν θα εμφανίζεται " +#~ "στο carousel των εκδόσεων της συλλογής." + +#~ msgid "grid.content.spotlights.category.sidebar" +#~ msgstr "Πλευρική μπάρα" + +#~ msgid "series.featured" +#~ msgstr "Featured" + +#~ msgid "grid.series.urlWillBe" +#~ msgstr "" +#~ "Το URL της σειράς θα είναι {$sampleUrl}. Η 'διαδρομή' είναι μια σειρά " +#~ "χαρακτήρων μέσω της οποίας αναγνωρίζεται μοναδικά η σειρά." + +#~ msgid "catalog.manage.homepage" +#~ msgstr "Αρχική σελίδα" + +#~ msgid "catalog.manage.managementIntroduction" +#~ msgstr "" +#~ "Καλως ήρθατε στη σελίδα διαχείρισης του Καταλόγου. Από αυτή τη σελίδα " +#~ "μπορείτε να δημοσιεύσετε νέες καταχωρήσεις βιβλίων στον Κατάλογο, να " +#~ "αναθεωρήσετε και να ρυθμίσετε τη λίστα με τα Προτεινόμενα Βιβλία, να " +#~ "αναθεωρήσετε και να ρυθμίσετε τη λίστα με τις Νέες Κυκλοφορίες, καθώς και " +#~ "να αναθεωρήσετε και να καταχωρήσετε τα βιβλία σας ανά Κατηγορία και Σειρά" + +#~ msgid "catalog.manage.entryDescription" +#~ msgstr "" +#~ "Για να εμφανιστεί ένα βιβλίο στον κατάλογο, επιλέξτε την καρτέλα " +#~ "Μονογραφία και συμπληρώστε τις απαραίτητες πληροφορίες. Πληροφορίες για " +#~ "κάθε μορφότυπο του βιβλίου μπορεί να συμπεριληφθούν στην συγκεκριμένη " +#~ "καταχώρηση του καταλόγου, επιλέγοντας την ετικέτα μορφότυπο (Format). Ο " +#~ "προσδιορισμός των μεταδεδομένων βασίζεται στο πρότυπο ONIX (για βιβλία), " +#~ "το οποίο αποτελεί ένα διεθνές πρότυπο μεταδεδομένων που χρησιμοποιείται " +#~ "από την βιομηχανία του βιβλίου για τη ψηφιακή ανταλλαγή πληροφοριών των " +#~ "προϊόντων της." + +#~ msgid "catalog.manage.spotlightDescription" +#~ msgstr "" +#~ "Το περιεχόμενο μιας στήλης της Βιτρίνας (πχ., Προτεινόμενα Βιβλία, " +#~ "Προτεινόμρνη Σειρά) εμφανίζεται στην αρχική σελίδα των εκδόσεων, με τον " +#~ "τίτλο, την εικόνα και το κείμενο για κάθε στήλη." + +#~ msgid "catalog.relatedCategories" +#~ msgstr "Σχετιζόμενες κατηγορίες" + +#~ msgid "common.plusMore" +#~ msgstr "+ Περισσότερα" + +#~ msgid "common.catalogInformation" +#~ msgstr "" +#~ "Οι πληροφορίες στον καταλόγου δεν είναι αναγκαίο να συμπληρωθούν κατά το " +#~ "αρχικό στάδιο της υποβολής του έργου, εκτός από τον Τίτλο και την " +#~ "Περίληψη." + +#~ msgid "common.prefixAndTitle.tip" +#~ msgstr "" +#~ "Αν ο τίτλος του βιβλίου ξεκινά από \"Ο\", \"Η\", ή \"Το\" (ή κάτι " +#~ "παρόμοιο σε αλφαβητική σειρα) εντάξετε τη λέξη στο Πρόθημα (Prefix)." + +#~ msgid "user.register.completeForm" +#~ msgstr "Συμπληρώστε τη φόρμα για να εγγραφείτε στις εκδόσεις." + +#~ msgid "user.register.alreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Πατήστε εδώ εάν είστε ήδη εγγεγραμμένος " +#~ "χρήστης σε αυτή ή άλλη έκδοση της συλλογής" + +#~ msgid "user.register.notAlreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Πατήστε εδώ εάν δεν είστε " +#~ "ήδη εγγεγραμμένος σε αυτή ή άλλη έκδοση της συλλογής" + +#~ msgid "user.register.loginToRegister" +#~ msgstr "" +#~ "Εισάγετε το υπάρχον όνομα χρήστη και τον κωδικό πρόσβασής σας για να " +#~ "εγγραφείτε σε αυτή την έκδοση." + +#~ msgid "about.aboutThePress" +#~ msgstr "Σχετικά με τις εκδόσεις" + +#~ msgid "about.sponsors" +#~ msgstr "Χορηγοί" + +#~ msgid "about.contributors" +#~ msgstr "Πηγές υποστήριξης" + +#~ msgid "about.onlineSubmissions.haveAccount" +#~ msgstr "" +#~ "Έχετε ήδη όνομα χρήστη/ κωδικό πρόσβασης για τις εκδόσεις {$pressTitle}?" + +#~ msgid "about.onlineSubmissions.needAccount" +#~ msgstr "Χρειάζεστε ένα όνομα χρήστη / κωδικό πρόσβασης;" + +#~ msgid "about.onlineSubmissions.registration" +#~ msgstr "Εγγραφή χρήστη" + +#~ msgid "log.editor.submissionExpedited" +#~ msgstr "" +#~ "Ο/Η {$editorName} έχει επιταχύνει τη διαδικασία αξιολόγησης για τη " +#~ "μονογραφία {$monographId}." + +#~ msgid "notification.type.metadataModified" +#~ msgstr "Τα μεταδεδομένα του \"{$title}\" έχουν μεταβληθεί." + +#~ msgid "notification.type.reviewerComment" +#~ msgstr "Ένας Αξιολογητής έχει σχολιάσει το \"{$title}\"." + +msgid "section.section" +msgstr "Σειρές" diff --git a/locale/el/manager.po b/locale/el/manager.po new file mode 100644 index 00000000000..3646bfa4c99 --- /dev/null +++ b/locale/el/manager.po @@ -0,0 +1,1875 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" +"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Αυτό θα αντικαταστήσει όλες τις παραμέτρους τοπικής ρύθμισης που είχατε " +"ορίσει για την έκδοση σας" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Συγνώμη, καμία πρόσθετη γλώσσα δεν είναι διαθέσιμη. Επικοινωνήστε με τον " +"διαχειριστή του ιστοτόπου, σε περίπτωση που επιθυμείτε να χρησιμοποιήσετε " +"πρόσθετες γλώσσες για την έκδοση αυτή." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Αυτή είναι η προεπιλεγμένη γλώσσα για τον ιστότοπο της έκδοσης." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Παρακαλούμε σιγουρευτείτε ότι τουλάχιστον ένα checkbox έχει τσεκαριστεί για " +"κάθε ανάθεση Επιμελητή Σειράς." + +msgid "manager.series.form.reviewFormId" +msgstr "" +"Παρακαλούμε σιγουρευτείτε ότι έχετε επιλέξει μια έγκυρη φόρμα αξιολόγησης." + +msgid "manager.series.submissionIndexing" +msgstr "Δεν θα συμπεριληφθούν στην ευρετηρίαση του βιβλίου" + +msgid "manager.series.editorRestriction" +msgstr "" +"Αντικείμενα (Items) μπορούν να υποβληθούν μόνο από τους Επιμελητές Έκδοσης " +"(Editors) και τους Επιμελητές Σειράς." + +msgid "manager.series.confirmDelete" +msgstr "Είστε βέβαιοι ότι επιθυμείτε να διαγράψετε αυτή τη σειρά?" + +msgid "manager.series.indexed" +msgstr "Έχει ευρετηριατεί" + +msgid "manager.series.open" +msgstr "Ανοικτές υποβολές" + +msgid "manager.series.readingTools" +msgstr "Εργαλεία Ανάγνωσης" + +msgid "manager.series.submissionReview" +msgstr "Δεν πραγματοποιείται αξιολόγηση από ομότιμους αξιολογητές" + +msgid "manager.series.submissionsToThisSection" +msgstr "Υποβολές στη συγκεκριμένη σειρά" + +msgid "manager.series.abstractsNotRequired" +msgstr "Δεν απαιτείτε περιλείψεις" + +msgid "manager.series.disableComments" +msgstr "Απενεργοποιήστε τα σχόλεια αναγνωστών για αυτή τη σειρά." + +msgid "manager.series.book" +msgstr "Σειρά Βιβλίων" + +msgid "manager.series.create" +msgstr "Δημιουργία Σειράς" + +msgid "manager.series.policy" +msgstr "Περιγραφή Σειράς" + +msgid "manager.series.assigned" +msgstr "Επιμελητές γι' αυτή τη σειρά" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Προσθέστε έναν Επιμελητή Σειράς για αυτή τη σειρά από τους διαθέσιμους " +"Επιμελητές Σειράς. Μόλις προστεθεί, ορίσετε αν ο Επιμελεητής Σειράς θα " +"επιβλέπει τη διαδικασία ΑΞΙΟΛΟΓΗΣΗΣ (peer review) και/ η τη διαδικασία " +"ΣΥΝΤΑΞΗΣ (επιμέλεια κειμένων, σελιδοποίηση και τυπογραφικά δοκίμια) των " +"υποβολών της συγκεκριμένης Σειράς. Οι Επιμελητές Σειρών δημιουργούνται " +"επιλέγοντας Επιμελητές Σειράς κάτω από " +"το Ρόλοι στην σελίδα του Διαχειριστή της Έκδοσης." + +msgid "manager.series.hideAbout" +msgstr "Απόκτυψη αυτής της σειράς από το μενού Σχετικά με την Έκδοση." + +msgid "manager.series.unassigned" +msgstr "Διαθέσιμοι Επιμελητές Σειράς" + +msgid "manager.series.form.abbrevRequired" +msgstr "Απαιτείται συντομογραφία τίτλου για τη Σειρά." + +msgid "manager.series.form.titleRequired" +msgstr "Ένας τίτλος απαιτείται για τη σειρά." + +msgid "manager.series.noneCreated" +msgstr "Καμία σειρά δεν έχει δημιουργηθεί." + +msgid "manager.series.existingUsers" +msgstr "Υπάρχοντες χρήστες" + +msgid "manager.series.seriesTitle" +msgstr "Τίλτος Σειράς" + +msgid "manager.series.restricted" +msgstr "" + +msgid "manager.payment.generalOptions" +msgstr "" + +msgid "manager.payment.options.enablePayments" +msgstr "" + +msgid "manager.payment.success" +msgstr "" + +msgid "manager.settings" +msgstr "Ρυθμίσεις" + +msgid "manager.settings.pressSettings" +msgstr "Ρυθμίσεις Έκδοσης" + +msgid "manager.settings.press" +msgstr "Εκδόσεις" + +msgid "manager.settings.publisher.identity" +msgstr "" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Αυτά τα πεδία δεν είναι απαραίτητα για τη γενική χρήση του OMP, αλλά " +"απαιτούνται για τη δημιουργία έγκυρων ONIX μεταδεδομένων. Παρακαλούμε να τα " +"συμπεριλάβετε αν επιθυμείτε να επιτύχετε τη λειτουργικότητα των ΟΝΙΧ." + +msgid "manager.settings.publisher" +msgstr "Όνομα Εκδότη(Press Publisher Name)" + +msgid "manager.settings.location" +msgstr "Γεωγραφική Τοποθεσία" + +msgid "manager.settings.publisherCode" +msgstr "Κώδικας Εκδότη" + +msgid "manager.settings.publisherCodeType" +msgstr "" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "" + +msgid "manager.settings.distributionDescription" +msgstr "" +"Όλες οι ρυθμίσεις σχετικά με τις διαδικασίες διανομής των εκδόσεων " +"(κοινοποίηση, ευρετηρίαση, αρχειοθέτηση, πληρωμές, εργαλεία ανάγνωσης)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "" + +msgid "manager.tools" +msgstr "Εργαλεία" + +msgid "manager.tools.importExport" +msgstr "" +"Όλα τα εργαλεία σχετικά με την εισαγωγή και εξαγωγή δεδομένων (εκδόσεις, " +"μονογραφίες, χρήστες)" + +msgid "manager.tools.statistics" +msgstr "" + +msgid "manager.users.availableRoles" +msgstr "Διαθέσιμοι Ρόλοι" + +msgid "manager.users.currentRoles" +msgstr "Τρέχον Ρόλοι" + +msgid "manager.users.selectRole" +msgstr "Επιλέξτε Ρόλο" + +msgid "manager.people.allEnrolledUsers" +msgstr "" + +msgid "manager.people.allPresses" +msgstr "Όλες οι εκδόσεις" + +msgid "manager.people.allSiteUsers" +msgstr "Ανάθεση ρόλου σε χρήστη του ιστοτόπου για αυτή την Έκδοση" + +msgid "manager.people.allUsers" +msgstr "Όλοι οι Χρήστες" + +msgid "manager.people.confirmRemove" +msgstr "" +"Κατάργηση του χρήστη από την έκδοση αυτή; Η συγκεκριμένη ενέργεια θα " +"καταργήσει όλες τις αναθέσεις ρόλων στον χρήστη στο πλαίσιο αυτής της " +"Έκδοσης." + +msgid "manager.people.enrollExistingUser" +msgstr "Ανάθεση ρόλου σε υπάρχον χρήστη" + +msgid "manager.people.enrollSyncPress" +msgstr "Με τις Εκδόσεις" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Επιλέξτε τον χρήστη για συγχώνευση σε λογαριασμό άλλου χρήστη (π.χ., σε " +"περίπτωση όπου ένας χρήστης έχει δύο λογαριασμούς). Ο λογαριασμός που " +"επιλέγεται πρώτος θα διαγραφεί καθώς και οι υποβολές, οι αναθέσεις, κτλ. που " +"έχουν γίνει σε αυτόν και θα αποδοθούν στον δεύτερο λογαριασμό." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Επιλέξτε χρήστη στον οποίο θα αποδοθούν οι προηγούμενες εργασίες συγγραφής, " +"αναθέσεις επιμέλειας, κτλ. του χρήστη." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Ο συγχρονισμός ανάθεσης ρόλων πραγματοποιεί εγγραφή όλων των χρηστών με " +"καθορισμένο ρόλο σε κάποια άλλη έκδοση με τον ίδιο ρόλο στην εν λόγω έκδοση." +"Η λειτουργία αυτή επιτρέπει σε κοινό σύνολο χρηστών (π.χ., Αξιολογητές) να " +"είναι συγχρονισμένοι σε διάφορες εκδόσεις που φιλοξενούνται." + +msgid "manager.people.confirmDisable" +msgstr "" +"Απενεργοποίηση αυτού του χρήστη? Αυτή η ενέργεια θα εμποδίσει τον χρήστη να " +"εισαχθεί στο σύστημα. Μπορείτε προεραιτικά να παρέχετε στον χρήστη ένα λόγο " +"για την απενεργοποίηση των λογαριασμών του." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Συγνώμη, δεν έχετε δικαιώματα διαχείρισης σε αυτόν τον χρήστη. Αυτό μπορεί " +"να συμβαίνει επειδή:\n" +"\t\t
      \n" +"\t\t\t
    • Ο χρήστης είναι ο διαχειριστής του ιστοτόπου
    • \n" +"\t\t\t
    • Ο χρήστης είναι ενεργός σε εκδόσεις που δεν διευθύνετε
    • \n" +"\t\t
    \n" +"\tΑυτή η εργασία εκτελείτε από έναν διαχειριστή του ιστοτόπου/υπηρεσίας." + +msgid "manager.system" +msgstr "Ρυθμίσεις Συστήματος" + +msgid "manager.system.archiving" +msgstr "Αρχειοθέτηση" + +msgid "manager.system.reviewForms" +msgstr "Φόρμες Αξιολόγησης" + +msgid "manager.system.readingTools" +msgstr "Εργαλεία Ανάγνωσης" + +msgid "manager.system.payments" +msgstr "Πληρωμές" + +msgid "user.authorization.pluginLevel" +msgstr "" + +msgid "manager.pressManagement" +msgstr "Διαχείριση Εκδόσεων" + +msgid "manager.setup" +msgstr "Οργάνωση" + +msgid "manager.setup.aboutItemContent" +msgstr "Περιεχόμενο" + +msgid "manager.setup.addAboutItem" +msgstr "Προσθήκη Κατηγορίας στο Σχετικά" + +msgid "manager.setup.addChecklistItem" +msgstr "Προσθήκη πεδίου στην Λίστα Ελέγχου" + +msgid "manager.setup.addItem" +msgstr "Προσθήκη πεδίου" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Προσθήκη κατηγορίας στο πεδίο \"Σχετικά με τις εκδόσεις\"" + +msgid "manager.setup.addNavItem" +msgstr "Προσθήκη πεδίου" + +msgid "manager.setup.addSponsor" +msgstr "Προσθήκη οργανισμού χορηγίας" + +msgid "manager.setup.announcements" +msgstr "Ανακοινώσεις" + +msgid "manager.setup.announcements.success" +msgstr "" + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Οι ανακοινώσεις μπορούν να δημοσιεύονται για πληροφόρηση των αναγνωστών " +"σχετικά με ειδήσεις και εκδηλώσεις των εκδόσεων. Οι δημοσιευμένες " +"ανακοινώσεις εμφανίζονται στη σελίδα «Ανακοινώσεις»." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Πρόσθετες πληροφορίες" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Εισάγετε όλες τις πρόσθετες πληροφορίες που θέλετε να εμφανίζονται στους " +"αναγνώστες στη σελίδα «Ανακοινώσεις»." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Για να εμφανίζεται στο μενού «Σχετικά με τις εκδόσεις»)" + +msgid "manager.setup.contextAbout" +msgstr "" + +msgid "manager.setup.contextAbout.description" +msgstr "" + +msgid "manager.setup.contextSummary" +msgstr "" + +msgid "manager.setup.copyediting" +msgstr "Επιμελητές κειμένων" + +msgid "manager.setup.copyeditInstructions" +msgstr "Οδηγίες επιμέλειας κειμένων" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Οι Οδηγίες επιμέλειας των κειμένων είναι διαθέσιμες για τους Επιμελητές " +"κειμένων, τους Συγγραφείς και τους Επιμελητές ενοτήτων στο στάδιο της " +"επιμέλειας της υποβολής. Παρακάτω θα βρείτε σε μορφή HTML σετ οδηγιών πο " +"μπορούν να τροποποιηθούν ή να αντικατασταθούν από τον Διαχειριστή των " +"Εκδόσεων ανά πάσα στιγμή (σε μορφή HTML ή απλού κειμένου)." + +msgid "manager.setup.copyrightNotice" +msgstr "Δήλωση Πνευματικών Δικαιωμάτων" + +msgid "manager.setup.coverage" +msgstr "Κάλυψη" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" + +msgid "manager.setup.customizingTheLook" +msgstr "Βήμα 5. Διαμόρφωση της όψης των εκδόσεων" + +msgid "manager.setup.customTags" +msgstr "Ειδικά προσαρμοσμένες ετικέτες" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Ειδικά προσαρμοσμένες ετικέτες κεφαλίδας HTML που προορίζονται για προσθήκη " +"στην κεφαλίδα κάθε σελίδας (π.χ., ετικέτες META)." + +msgid "manager.setup.details" +msgstr "Λεπτομέρειες" + +msgid "manager.setup.details.description" +msgstr "" +"Όνομα εκδόσεων, υπεύθυνοι επικοινωνίας, χορηγοί, και μηχανές αναζήτησης." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Ο Διαχειριστής των Εκδόσεων εγγράφει όλους τους χρήστες, με τους Επιμελητές " +"ή τους Επιμελητές Σειρών να εγγράφουν μόνο τους αξιολογητές." + +msgid "manager.setup.discipline" +msgstr "Επιστημονικά θεματικά πεδία και υπο-πεδία" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Χρήσιμα όταν οι εκδόσεις δημοσιεύουν ή/και οι συγγραφείς υποβάλλουν τεκμήρια " +"που καλύπτουν περισσότερα του ενός επιστομηνικά πεδία" + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(Π.χ., Ιστορία; Εκπαίδευση; Κοινωνιολογία; Ψυχολογία; Πολιτισμικές Σπουδές; " +"Δίκαιο κτλ.)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Παραθέστε μερικά παραδείγματα σχετικών επιστημονικών κλάδων για τη " +"συγκεκριμένη έκδοση." + +msgid "manager.setup.displayCurrentMonograph" +msgstr "" +"Προσθέστε πίνακα των περιεχομένων για την τρέχουσα μονογραφία (αν είναι " +"διαθέσιμος)." + +msgid "manager.setup.displayOnHomepage" +msgstr "" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "" + +msgid "manager.setup.displayInSpotlight" +msgstr "" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "" + +msgid "manager.setup.displayNewReleases" +msgstr "" + +msgid "manager.setup.displayNewReleases.label" +msgstr "" + +msgid "manager.setup.enableDois.description" +msgstr "" + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "" + +msgid "manager.dois.formatIdentifier.file" +msgstr "" + +msgid "manager.setup.editorDecision" +msgstr "Απόφαση επιμελητή" + +msgid "manager.setup.emailBounceAddress" +msgstr "Διεύθυνση επιστροφής σε αποστολέα" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Όλα τα μηνύματα ηλεκτρονικού ταχυδρομείου που δεν παραδόθηκαν επιτυχώς θα " +"έχουν ως αποτέλεσμα μήνυμα σφάλματος στη συγκεκριμένη διεύθυνση." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" + +msgid "manager.setup.emails" +msgstr "Αναγνώριση διεύθυνσης ηλεκτρονικού ταχυδρομείου" + +msgid "manager.setup.emailSignature" +msgstr "Υπογραφή" + +msgid "manager.setup.emailSignature.description" +msgstr "" + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "" +"Ενεργοποίηση δυνατότητας προσθήκης ανακοινώσεων από τους Διαχειριστές των " +"εκδόσεων." + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" + +msgid "manager.setup.enablePressInstructions" +msgstr "Ενεργοποίηση της εμφάνισης των Εκδόσεων στον ιστότοπο" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Θα χρησιμοποιηθούν προσαρμοσμένα αναγνωριστικά για την αναγνώριση των " +"δημοσιευμένων τεκμηρίων." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Θα χρησιμοποιηθούν προσαρμοσμένα αναγνωριστικά για τις σελιδοποιημένες " +"μορφές (πχ. αρχεία HTML η PDF) των δημοσιευμένων τεκμηρίων." + +msgid "manager.setup.enableUserRegistration" +msgstr "" + +msgid "manager.setup.focusAndScope" +msgstr "Πεδίο και περιεχόμενο" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Εισαγάγετε δήλωση παρακάτω, η οποία εμφανίζεται στο πεδίο Σχετικά με τις " +"Εκδόσεις και αναφέρεται σε συγγραφείς, αναγνώστες και βιβλιοθηκονόμους " +"σχετικά με το εύρος των μονογραφιών και των λοιπών τεκμηρίων που πρόκειται " +"να δημοσιεύσουν οι εκδόσεις." + +msgid "manager.setup.focusScope" +msgstr "Πεδίο και περιεχόμενο" + +msgid "manager.setup.focusScopeDescription" +msgstr "ΠΑΡΑΔΕΙΓΜΑ ΔΕΔΟΜΕΝΩΝ ΣΕ ΜΟΡΦΗ HTML" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Οδηγίες προς τους συγγραφείς για την ευρετηρίαση του έργου τους" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"Το OMP υλοποιεί το πρωτόκολλο Open Archives Initiative Protocol for Metadata " +"Harvesting, που αποτελεί διεθνώς αποδεκτό πρότυπο για παροχή πρόσβασης μέσω " +"ορθής ευρετηρίασης σε διεθνείς ηλεκτρονικές πηγές αναζήτησης. Οι συγγραφείς " +"θα χρησιμοποιήσουν παρόμοιο πρότυπο για παροχή μεταδεδομένων για το έργο " +"τους κατά την διάρκεια της υποβολή του. Ο Διαχειριστής των Εκδόσεων πρέπει " +"να επιλέξει τις κατηγορίες για ευρετηρίαση και να παρουσιάσει στους " +"συγγραφείς σχετικά παραδείγματα για να τους βοηθήσει στην ευρετηρίαση του " +"έργου τους, διαχωρίζοντας τους όρους με ελληνικό ερωτηματικό (πχ., όρος1; " +"όρος2;). Οι καταχωρίσεις πρέπει να εισάγονται ως παραδείγματα " +"χρησιμοποιώντας \"πχ.,\" ή \"Για παράδειγμα,\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "" +"Απαιτείται η διεύθυνση ηλεκτρονικού ταχυδρομείου του κύριου υπεύθυνου " +"επικοινωνίας." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Απαιτείται το όνομα του κύριου υπεύθυνου επικοινωνίας." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Απαιτείται ο αριθμός των αξιολογητών ανά υποβολή." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "" +"Απαιτείται η διεύθυνση ηλεκτρονικού ταχυδρομείου του υπεύθυνου τεχνικής " +"υποστήριξης." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Απαιτείται το κύριο όνομα του υπεύθυνου τεχνικής υποστήριξης." + +msgid "manager.setup.generalInformation" +msgstr "Γενικές Πληροφορίες" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Βήμα 1. Λεπτομέρειες" + +msgid "manager.setup.guidelines" +msgstr "Κατευθυντήριες γραμμές" + +msgid "manager.setup.preparingWorkflow" +msgstr "Βήμα 3. Προετοιμασία της ροής των εργασιών" + +msgid "manager.setup.identity" +msgstr "" + +msgid "manager.setup.information" +msgstr "" + +msgid "manager.setup.information.description" +msgstr "" +"Σύντομες περιγραφές των εκδόσεων για τους βιβλιοθηκονόμους, τους πιθανούς " +"συγγραφείς και τους αναγνώστες είναι διαθέσιμες στην ενότητα “Πληροφορίες” " +"στην δεξιά πλαϊνή μπάρα της ιστοσελίδας." + +msgid "manager.setup.information.forAuthors" +msgstr "Για Συγγραφείς" + +msgid "manager.setup.information.forLibrarians" +msgstr "Για Βιβλιοθηκονόμους" + +msgid "manager.setup.information.forReaders" +msgstr "Για Αναγνώστες" + +msgid "manager.setup.information.success" +msgstr "" + +msgid "manager.setup.institution" +msgstr "Ίδρυμα" + +msgid "manager.setup.itemsPerPage" +msgstr "" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" + +msgid "manager.setup.keyInfo" +msgstr "" + +msgid "manager.setup.keyInfo.description" +msgstr "" + +msgid "manager.setup.labelName" +msgstr "Όνομα Πεδίου" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Επιμελητές Σελιδοποίησης" + +msgid "manager.setup.layoutInstructions" +msgstr "Οδηγίες Σελιδοποίησης" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Οι οδηγίες σελιδοποίησης μπορούν να καθοριστούν για την κατάλληλη " +"μορφοποίηση των τεκμηρίων των εκδόσεων και μπορούν να καταχωρηθούν παρακάτω " +"σε μορφή HTML ή σε απλή μορφή κειμένου. Θα είναι διαθέσιμες στον Επιμελητή " +"σελιδοποίησης και τον Επιμελητή ενότητας στη σελίδα «Επιμέλειας» κάθε " +"υποβολής. (Εφόσον κάθε έκδοση μπορεί να έχει τις δικές της μορφές αρχείου, " +"βιβλιογραφικά πρότυπα, φύλλα στυλ, κτλ., δεν παρέχεται προεπιλεγμένο σετ " +"οδηγιών.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Πρότυπα Σελιδοποίησης" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Πρότυπα σελιδοποίησης μπορούν να φορτωθούν για να εμφανίζονται στη " +"\"Σελιδοποίηση\" για καθεμία από τις πρότυπες μορφές που δημοσιεύονται στις " +"εκδόσεις (π.χ., μονογραφία, αναθεώρηση βιβλίου, κλπ.) χρησιμοποιώντας " +"οποιαδήποτε μορφή αρχείου (π.χ., pdf, doc, κτλ.) με πρόσθετους σχολιασμούς " +"που καθορίζουν τη γραμματοσειρά, το μέγεθος, το περιθώριο, κτλ. για να " +"χρησιμοποιηθούν ως οδηγός για τους Επιμελητές Σελιδοποίησης και τους " +"Επιμελητές των Τυπογραφικών Δοκιμίων." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Αρχείο προτύπου" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Τίτλος" + +msgid "manager.setup.lists" +msgstr "Λίστες" + +msgid "manager.setup.lists.success" +msgstr "" + +msgid "manager.setup.look" +msgstr "Όψη Εκδόσεων" + +msgid "manager.setup.look.description" +msgstr "" +"Κεφαλίδα αρχικής σελίδας, περιεχόμενο, κεφαλίδα εκδόσεων, υποσέλιδο, μπάρα " +"πλοήγησης και style sheet." + +msgid "manager.setup.settings" +msgstr "Ρυθμίσεις" + +msgid "manager.setup.management.description" +msgstr "" +"Πρόσβαση και ασφάλεια, προγραμματισμός, ανακοινώσεις, και χρήση υπεύθυνων " +"επιμελητών κειμένων, επιμελητών σελιδοποίησης και διορθωτών τυπογραφικών " +"δοκιμίων." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Διαχείριση βασικών βημάτων επιμέλειας της έκδοσης" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Ρυθμίσεις Διαχείρισης και Δημοσίευσης" + +msgid "manager.setup.managingThePress" +msgstr "Βήμα 4. Διαχείριση των Εκδόσεων" + +msgid "manager.setup.masthead.success" +msgstr "" + +msgid "manager.setup.noImageFileUploaded" +msgstr "Δεν έχει φορτωθεί κάποιο αρχείο εικόνας." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Δεν έχει φορτωθεί style sheet." + +msgid "manager.setup.note" +msgstr "Σημείωση" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Όταν χρησιμοποιείται το email Ενημέρωσης Συγγραφέα, συμπεριλάβετε τις " +"διευθύνσεις ηλεκτρονικού ταχυδρομείου όλων των συγγραφέων του τεκμηρίου και " +"όχι μόνο του συγγραφέα-χρήστη που υπέβαλε το τεκμήριο." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Η επιμέλεια των κειμένων θα γίνει από τον Επιμελητή των εκδόσεων ή τους " +"επιμελητές ενοτήτων της υποβολής." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Ο Επιμελητής των εκδόσεων ή κάποιος από τους Επιμελητές Ενοτήτων θα " +"προετοιμάσει τα κατάλληλα σελιδοποιημένα μορφότυπα (αρχεία HTML, PDF, κτλ.)." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Ο Επιμελητής των εκδόσεων ή ο Επιμελητής Ενότητας ελέγχουν τα τυπογραφικά " +"δοκίμια." + +msgid "manager.setup.numPageLinks" +msgstr "Σύνδεσμοι σελίδας" + +msgid "manager.setup.numPageLinks.description" +msgstr "" + +msgid "manager.setup.onlineAccessManagement" +msgstr "Διαχείριση πρόσβασης" + +msgid "manager.setup.onlineIssn" +msgstr "Online ISΒΝ" + +msgid "manager.setup.policies" +msgstr "Πολιτικές" + +msgid "manager.setup.policies.description" +msgstr "" +"Εστίαση (Focus), αξιολόγηση από ομότιμους αξιολογητές (peer review), " +"τομείς, απόρρητα, ασφάλεια, και πρόσθετα στοιχεία σχετικά με τα τεκμήρια." + +msgid "manager.setup.privacyStatement.success" +msgstr "" + +msgid "manager.setup.appearanceDescription" +msgstr "" + +msgid "manager.setup.pressDescription" +msgstr "Περιγραφή Εκδόσεων" + +msgid "manager.setup.pressDescription.description" +msgstr "" +"Μια γενική περιγραφή των Εκδόσεων θα πρέπει να περιλαμβάνεται εδώ. Αυτή η " +"περιγραφή θα είναι διαθέσιμη στην αρχική σελίδα των εκδόσεων." + +msgid "manager.setup.aboutPress" +msgstr "" + +msgid "manager.setup.aboutPress.description" +msgstr "" + +msgid "manager.setup.pressArchiving" +msgstr "Αρχειοθέτηση Εκδόσεων" + +msgid "manager.setup.homepageContent" +msgstr "" + +msgid "manager.setup.homepageContentDescription" +msgstr "" + +msgid "manager.setup.pressHomepageContent" +msgstr "Περιεχόμενα Αρχικής Σελίδας Εκδόσεων" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Εξ’ορισμού, η αρχική σελίδα των εκδόσεων αποτελείται από δεσμούς πλοήγησης. " +"Η προσθήκη πρόσθετου περιεχομένου αρχικής σελίδας μπορεί να γίνει " +"χρησιμοποιώντας κάποιες ή όλες τις ακόλουθες επιλογές, που θα εμφανιστούν με " +"την σειρά αυτή." + +msgid "manager.setup.contextInitials" +msgstr "Αρχικά Εκδόσεων" + +msgid "manager.setup.selectCountry" +msgstr "" + +msgid "manager.setup.layout" +msgstr "" + +msgid "manager.setup.pageHeader" +msgstr "" + +msgid "manager.setup.pageHeaderDescription" +msgstr "" + +msgid "manager.setup.pressPolicies" +msgstr "Βήμα 2. Πολιτικές" + +msgid "manager.setup.pressSetup" +msgstr "Οργάνωση Εκδόσεων" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Οι ρυθμίσεις του περιοδικού ενημερώθηκαν." + +msgid "manager.setup.styleSheetInvalid" +msgstr "" + +msgid "manager.setup.pressTheme" +msgstr "Θέμα Εκδόσεων" + +msgid "manager.setup.pressThumbnail" +msgstr "" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" + +msgid "manager.setup.contextTitle" +msgstr "" + +msgid "manager.setup.printIssn" +msgstr "Print ISBN" + +msgid "manager.setup.proofingInstructions" +msgstr "Οδηγίες επιμέλειας τυπογραφικών δοκιμίων" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Οι Οδηγίες επιμέλειας των τυπογραφικών δοκιμίων θα είναι διαθέσιμες στους " +"Επιμελητές τυπογραφικών δοκιμίων, τους Συγγραφείς, τους Επιμελητές " +"Σελιδοποίησης και τους Επιμελητές ενοτήτων στο στάδιο της επιμέλειας/" +"σύνταξης της υποβολής. Παρακάτω υπάρχει προεπιλεγμένο σετ οδηγιών σε μορφή " +"HTML, το οποίο μπορεί να επεξεργαστεί ή να αντικατασταθεί από τον " +"Διαχειριστή των Εκδόσεων ανά πάσα στιγμή (σε μορφή HTML ή απλού κειμένου)." + +msgid "manager.setup.proofreading" +msgstr "Επιμελητές Τυπογραφικών Δοκιμίων" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Παροχή οδηγιών στους Επιμελητές Σελιδοποίησης." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Τα τεκμήρια μιας έκδοσης μπορούν να δημοσιευτούν συλλογικά, ως μέρος μιας " +"μονογραφίας στο πλαίσιο του δικού της Πίνακα Περιεχομένου. Εναλλακτικά, " +"μεμονωμένα τεκμήρια μπορούν να δημοσιευτούν μόλις είναι έτοιμα, προσθέτοντας " +"στον \"τρέχοντα\" όγκο του Πίνακα Περιεχομένου. Στο μενού «Σχετικά με τις " +"εκδόσεις, μπορείτε να παραθέσετε πληροφορίες σχετικά με το σύστημα που οι " +"εκδόσεις θα χρησιμοποιήσουν και την αναμενόμενη συχνότητα δημοσίευσης." + +msgid "manager.setup.publisher" +msgstr "Εκδότης" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Το όνομα του οργανισμού/εκδότη εμφανίζεται στο πεδίο Σχετικά με τις εκδόσεις." + +msgid "manager.setup.referenceLinking" +msgstr "Σύνδεση Αναφορών" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Οδηγίες Σελιδοποίησης για Σύνδεση Αναφορών" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Οι χρήστες πρέπει να συνδεθούν για να δουν το περιεχόμενο ανοικτής πρόσβασης." + +msgid "manager.setup.restrictSiteAccess" +msgstr "Οι χρήστες πρέπει να συνδεθούν για να δουν τον ιστότοπο της έκδοσης." + +msgid "manager.setup.reviewGuidelines" +msgstr "Κατευθυντήριες γραμμές αξιολόγησης" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Οι κατευθυντήριες γραμμές αξιολόγησης παρέχουν κριτήρια στους αξιολογητές " +"για καθορισμό της καταλληλότητας δημοσίευσης των υποβληθέντων τεκμηρίων στις " +"εκδόσεις, καθώς και ειδικές οδηγίες για την σύνταξη αποτελεσματικής και " +"κατατοπιστικής αξιολόγησης. Κατά τη διεξαγωγή της αξιολόγησης, οι " +"αξιολογητές παρουσιάζουν την αξιολόγηση τους σε δύο ανοικτά πλαίσια " +"κειμένου, το πρώτο \"για συγγραφείς και εκδότες\" και το δεύτερο μόνο \"για " +"εκδότες\". Εναλλακτικά, ο Διαχειριστής Εκδόσεων μπορεί να δημιουργήσει μια " +"φόρμα αξιολόγησης από ομοτίμους κάτω από το Φόρμες Αξιολόγησης." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "" + +msgid "manager.setup.reviewOptions" +msgstr "" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "" +"Αυτοματοποιημένες υπενθυμίσεις μέσω ηλεκτρονικού ταχυδρομείου (διαθέσιμα " +"στις προεπιλεγμένες διευθύνσεις ηλεκτρονικού ταχυδρομείου του OMP) μπορούν " +"να αποσταλλούν σε αξιολογητές σε δύο σημεία (ενώ ο επιμελητής μπορεί ανά " +"πάσα στιγμή να αποστείλει μήνυμα ηλεκτρονικού ταχυδρομείου στον αξιολογητή)." + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Σημείωση: Για να ενεργοποίησετε τις συγκεκριμένες επιλογές, " +"ο διαχειριστής του ιστοτόπου πρέπει να ενεργοποιήσει την επιλογή " +"scheduled_tasks στο αρχείο ρυθμίσεων του OMP. Ενδέχεται να " +"απαιτούνται πρόσθετες ρυθμίσεις διακομιστή για υποστήριξη της συγκεκριμένης " +"λειτουργίας (που ενδέχεται να μην είναι διαθέσιμες σε όλους τους " +"διακομιστές), όπως διευκρινίζεται στα τεκμηριωτικά έγγραφα του OMP." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Οι επιμελητές των εκδόσεων θα βαθμολογούν κατατάξουν τους αξιολογητές σε " +"κλίμακα ποιότητας 0-5 μετά από κάθε αξιολόγηση." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Οι αξιολογητές θα έχουν πρόσβαση στο αρχείο υποβολής μόνο μετά από αποδοχή " +"αξιολόγησής αυτού." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Πρόσβαση αξιολογητή" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Βαθμολόγηση αξιολογητή" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Υπενθυμίσεις προς τους αξιολογητές" + +msgid "manager.setup.reviewPolicy" +msgstr "Πολιτική Αξιολόγησης" + +msgid "manager.setup.searchDescription.description" +msgstr "" + +msgid "manager.setup.searchEngineIndexing" +msgstr "Ευρετηρίαση μηχανών αναζήτησης" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Για παροχή βοήθειας στους χρήστες μηχανών αναζήτησης στον εντοπισμό του " +"περιοδικού, παρέχετε σύντομη περιγραφή του περιοδικού και σχετικές λέξεις-" +"κλειδιά (που διαχωρίζονται από ελληνικό ερωτηματικό)." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "" + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Ενότητες και Επιμελητές ενοτήτων" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Εάν δεν επιλεγεί η χρήση ενοτήτων, τα τεκμήρια που υποβάλλονται " +"καταχωρούνται εξ’ορισμού στην ενότητα Μονογραφίες.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Για να δημιουργήσετε ή να τροποποιήσετε τις ενότητες των εκδόσεων (πχ., " +"Μονογραφίες, Αξιολογήσεις Βιβλίων, κτλ.), μεταβείτε στη Διαχείριση Ενοτήτων." +"

    Οι συγγραφείς με την υποβολή των τεκμηρίων στις εκδόσεις " +"καθορίζουν..." + +msgid "manager.setup.securitySettings" +msgstr "Ρυθμίσεις Ασφαλείας/Πρόσβασης" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Διάφορες επιλογές σε σχέση με την ασφάλεια και την πρόσβαση μπορούν να " +"ρυθμιστούν από τη σελίδα Πρόσβαση και Ασφάλεια." + +msgid "manager.setup.selectEditorDescription" +msgstr "" +"Τον επιμελητή των εκδόσεων που θα επιβλέπει κατά τη εκδοτική διαδικασία" + +msgid "manager.setup.selectSectionDescription" +msgstr "Την ενότητα των εκδόσεων για την οποία θα ληφθεί υπόψη το τεκμήριο." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Προβάλετε πάντα τους συνδέσμους των Σελιδοποιημένων Δοκιμίων και με την " +"υπόδειξη περιορισμένης πρόσβασης." + +msgid "manager.setup.siteAccess.view" +msgstr "" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "" + +msgid "manager.setup.stepsToPressSite" +msgstr "Πέντε βήματα για την οργάνωση της ιστοσελίδας των Εκδόσεων" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(Πχ., Φωτοσύνθεση; Μαύρες τρύπες; Οικονομική θεωρία; Θεωρία Bayes, Ανεργία)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Λέξεις-κλειδιά" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Παραθέστε μερικά παραδείγματα λέξεων-κλειδιών ή θεμάτων για την καθοδήγηση " +"των συγγραφέων" + +msgid "manager.setup.submissionGuidelines" +msgstr "Οδηγίες Υποβολής" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Απαιτείται λίστα ελέγχου των τεκμηρίων" + +msgid "manager.setup.workflow" +msgstr "Ροή των εργασιών" + +msgid "manager.setup.submissions.description" +msgstr "" +"Κατευθυντήριες γραμμές προς συγγραφέα, πνευματικά δικαιώματα, και " +"καταχώριση σε ευρετήρια (συμπεριλαμβανομένης της εγγραφής)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(Πχ., Ιστορική έρευνα; Εν μέρει πειραματικό; Λογοτεχνική ανάλυση; Έρευνα/" +"συνέντευξη)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Τύπος (Μέθοδος/Προσέγγιση)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Παραθέστε μερικά παραδείγματα σχετικών τύπων έρευνας, μεθόδων, και " +"προσεγγίσεων για το συγκεκριμένο πεδίο" + +msgid "manager.setup.useCopyeditors" +msgstr "" +"Οι εκδόσεις θα καθορίσουν τους Επιμελητές κειμένων που θα εργαστούν για κάθε " +"υποβολή." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Οι εκδόσεις θα χρησιμοποιούν Επιτροπή Σύνταξης / Αξιολόγησης." + +msgid "manager.setup.useImageTitle" +msgstr "Εικόνα Τίτλου" + +msgid "manager.setup.useStyleSheet" +msgstr "" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Οι εκδόσεις ορίζουν τον Επιμελητή Σελιδοποίησης που θα προετοιμάσει τα " +"σελιδοποιημένα αρχεία HTML, PDF, PS, κτλ., για την ηλεκτρονική έκδοση." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Οι εκδόσεις ορίζουν τους Επιμελητές Τυπογραφικών Δοκιμίων οι οποίοι (μαζί με " +"τους συγγραφείς) ελέγχουν τα τυπογραφικά δοκίμια." + +msgid "manager.setup.userRegistration" +msgstr "Εγγραφή Χρήστη" + +msgid "manager.setup.useTextTitle" +msgstr "Κείμενο τίτλου" + +msgid "manager.setup.volumePerYear" +msgstr "Τόμοι ανά έτος" + +msgid "manager.setup.publicationFormat.code" +msgstr "Μορφότυπο (format)" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Απαιτείτε επιλογή Μορφότυπου (format)" + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Απαιτείται ένα όνομα για αυτή το Μορφότυπο(format)." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Είναι αυτό ένα μη-ψηφιακό μορφότυπο?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Λόγο ότι αυτό το μορφότυπο δημοσίευσης είναι προς το παρόν σε χρήση από μια " +"μονογραφία των εκδόσεων σας, δεν είναι δυνατό να διαγραφεί." + +msgid "manager.setup.newPublicationFormat" +msgstr "Νέο Μορφότυπο Δημοσίευσης" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Για να δημιουργήσετε ένα νέο μορφότυπο δημοσίευσης, συμπληρώστε την παρακάτω " +"φόρμα και κάντε κλικ στο κουμπί \"Δημιουργία\"." + +msgid "manager.setup.genresDescription" +msgstr "" +"Τα Μέρη(Genre) του βιβλίου που χρησιμοποιούνται για την κατάταξη-ονομασία " +"των αρχείων μιας έκδοσης, παρουσιάζονται σε ένα κυλιόμενο μενού για τη " +"μεταφόρτωση αρχείων. Τα μέρη του βιβλίου που ορίζονται με το σύμβολο ## " +"επιτρέπουν τον χρήστη να συνδέσει το αρχείο είτε με όλο το βιβλίο (99Ζ) ή με " +"ένα συγκεκριμένο αριθμό κεφαλαίου του βιβλίου (πχ. 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" + +msgid "manager.setup.disableSubmissions.description" +msgstr "" + +msgid "manager.setup.genres" +msgstr "Τύποι Βιβλίου (Genres)" + +msgid "manager.setup.newGenre" +msgstr "Δημιουργία Νέου τύπου Βιβλίου της Μονογραφίας" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Για να δημιουργείσετε ένα νέο τύπο βιβλίου (genre), συμπληρώστε την παρακάτω " +"φόρμα και επιλέξτε το κουμπί \"Δημιουργία\"." + +msgid "manager.setup.deleteSelected" +msgstr "Διαγραφή επιλεγμένων" + +msgid "manager.setup.restoreDefaults" +msgstr "Επαναφορά προεπιλεγμένων ρυθμίσεων" + +msgid "manager.setup.prospectus" +msgstr "Οδηγός Πρότασης Έκδοσης/Prospectus Guide" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Ο οδηγός πρότασης μιας έκδοσης(prospectus guide) αποτελεί ένα κείμενο " +"οδηγιών των εκδόσεων που βοηθά τους συγγραφείς να περιγράψουν το " +"υποβαλλόμενο υλικό με τρόπο που βοηθά τη συντακτική επιτροπή να προσδιορίσει " +"την αξία της υποβολής. Μία πρόταση μπορεί να περιλαμβάνει πολλά στοιχεία - " +"από την δυναμική του έργου στην αγορά των επιστημονικών εκδόσεων ως την " +"επιστημονική και θεωρητική του αξία. Σε κάθε περίπτωση, οι εκδόσεις πρέπει " +"να δημιουργήσουν έναν οδηγό πρότασης που θα συμπληρώνει την αντζέντα των " +"οδηγιών και των πολιτικών που ακολουθεί." + +msgid "manager.setup.submitToCategories" +msgstr "Ένταξη της υποβολής σε Κατηγορία" + +msgid "manager.setup.submitToSeries" +msgstr "Ένταξη της υποβολής σε Σειρά" + +msgid "manager.setup.issnDescription" +msgstr "" +"Ο ISSN (διεθνής πρότυπος αριθμός περιοδικής έκδοσης) αποτελεί αριθμό με οκτώ " +"ψηφία που προσδιορίζει περιοδικές εκδόσεις όπως η συγκεκριμένη, " +"συμπεριλαμβανομένων των αριθμών περιοδικής έκδοσης σε ηλεκτρονική μορφή. " +"Διαχειρίζεται από παγκόσμιο δίκτυο Εθνικών Κέντρων που συντονίζονται από " +"Διεθνές Κέντρο με βάση το Παρίσι, υποστηριζόμενο από την Unesco και τη " +"Γαλλική κυβέρνηση. Η λήψη του αριθμού αυτού μπορεί να γίνει από τον ιστότοπο " +"του ISSN . Αυτό " +"μπορεί να πραγματοποιηθεί σε οποιοδήποτε σημείο χειρισμού των εκδόσεων." + +msgid "manager.setup.currentFormats" +msgstr "Τρέχοντα Μορφότυπα" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Κατηγορίες και Σειρές" + +msgid "manager.setup.categories.description" +msgstr "" +"Μπορείτε να δημιουργήσετε μία λίστα με κατηγορίες που θα σα βοηθήσει να " +"οργανώσετε τις δημοσιεύσεις σας. Οι κατηγορίες ομαδοποιούν τα βιβλία ανάλογα " +"με το αντικείμενο, για παράδειγμα Οικονομικά, Λογοτεχνικά, Ποίηση, κλπ. " +"Ορισμένες κατηγορίες μπορούν να ταξιθετηθούν σε \"γονικές\" κατηγορίες: για " +"παράδειγμα, η γονική κατηγορία Οικονομικά μπορεί να περιλαμβάνει την " +"Μικροοικονομία και Μακροοικονομία. Οι επισκέπτες μπορούν να ανζητήσουν και " +"να περιηγηθούν στις εκδόσεις ανά κατηγορία" + +msgid "manager.setup.series.description" +msgstr "" +"Μπορείτε να δημιουργήσετε οποιοδήποτε αριθμό σειρών για να οργανώσετε τις " +"δημοσιεύσεις σας. Μία Σειρά αντιπροσωπεύει μια σειρά ιδιαίτερων εκδόσεων " +"σχετικά με ένα θέμα ή επιστημονικό πεδίο. Μία Σειρά μπορεί να δημιουργηθεί " +"μετά από πρόταση ενός ή δύο συντελεστών, συνήθως επιστημονικό προσωπικό ή " +"ΔΕΠ, οι οποίοι μπορεί να αναλάβουν και την επιβλεψη ή επιμέλεια της. Οι " +"επισκέπτες μπορούν να ανζητήσουν και να περιηγηθούν στις εκδόσεις ανά σειρά." + +msgid "manager.setup.reviewForms" +msgstr "Φόρμες Αξιολόγησης" + +msgid "manager.setup.roleType" +msgstr "Τύπος Ρόλου" + +msgid "manager.setup.authorRoles" +msgstr "Ρόλοι Συγγραφέων" + +msgid "manager.setup.managerialRoles" +msgstr "Ρόλοι Διαχείρισης" + +msgid "manager.setup.availableRoles" +msgstr "Διαθέσιμοι Ρόλοι" + +msgid "manager.setup.currentRoles" +msgstr "Τρέχον Ρόλοι" + +msgid "manager.setup.internalReviewRoles" +msgstr "Ρόλοι Εσωτερικής Αξιολόγησης" + +msgid "manager.setup.masthead" +msgstr "Ταυτότητα" + +msgid "manager.setup.editorialTeam" +msgstr "Συντακτική ομάδα" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Η Ταυτότητα πρέπει να περιέχει μια λίστα από επιμελητές, υπεύθυνους " +"διαχείρισης, και άλλα πρόσωπα που συνδέονται με τις Εκδόσεις. Πληροφορίες " +"που καταχωρούνται εδώ θα εμφανιστούν στη σελίδα \"Σχετικά\" των εκδόσεων" + +msgid "manager.setup.files" +msgstr "Αρχεία" + +msgid "manager.setup.productionTemplates" +msgstr "Πρότυπα Παραγωγής" + +msgid "manager.files.note" +msgstr "" +"Σημείωση: To ευρετήριο αρχείων αποτελεί προηγμένη λειτουργία που παρέχει τη " +"δυνατότητα σε αρχεία και καταλόγους που αφορούν τις εκδόσεις να προβάλλονται " +"και να χειρίζονται άμεσα." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

    Προτεινόμενες Δηλώσεις Προστασίας Πνευματικών Δικαιωμάτων Creative " +"Commons

    \n" +"

    Προτεινόμενη πολιτική για Εκδόσεις που παρέχουν Ανοικτή Πρόσβαση (Offer " +"Open Access)

    \n" +"Οι Συγγραφείς που δημοσιεύουν το έργο τους με αυτές τις εκδόσεις συμφωνούν " +"με τους ακόλουθους όρους:\n" +"
      \n" +"\t
    1. Οι συγγραφείς διατηρούν τα πνευματικά διακιώματα και εκχωρούν το " +"δικαίωμα της πρώτης δημοσίευσης στις εκδόσεις ενώ ταυτόχρονα τα πνευματικά " +"δικαιώματα του έργου προστατεύονται σύμφωνα με την Creative Commons Attribution " +"License που επιτρέπει σε τρίτους - αποδέκτες της άδειας να χρησιμοποιούν " +"το έργο όπως θέλουν με την προϋπόθεση της διατήρησης των διατυπώσεων που " +"προβλέπονται στην άδεια σχετικά με την αναφορά στον αρχικό δημιουργό και την " +"αρχική δημοσίευση σε αυτές τις εκδόσεις.
    2. \n" +"\t
    3. Οι συγγραφείς μπορούν να συνάπτουν ξεχωριστές, και πρόσθετες συμβάσεις " +"και συμφωνίες για την μη αποκλειστική διανομή του έργου όπως δημοσιεύτηκε " +"στις εκδόσεις συτές (πχ. κατάθεση σε ένα ακαδημαϊκό καταθετήριο ή " +"δημοσίευση σε ένα βιβλίο), με την προϋπόθεση της αναγνώρισης και της " +"αναφοράς της πρώτης δημοσίευσης σε αυτές τις εκδόσεις.
    4. \n" +"\t
    5. Οι εκδόσεις επιτρέπουν και ενθαρρύνουν τους συγγραφείς να καταθέτουν " +"τις εργασίες τους online (π.χ. σε ένα ακαδημαϊκό καταθετήριο ή στις " +"προσωπικές τους ιστοσελίδες) πριν και μετά από τις διαδικασίες της " +"δημοσίευσης, καθώς αυτό μπορεί να οδηγήσει σε παραγωγικές ανταλλαγές ιδεών " +"και σκέψεων καθώς επίσης και σε γρηγορότερη και μεγαλύτερη χρήση και " +"ευρετηρίαση της δημοσιευμένης εργασίας (Βλέπε The Effect of Open " +"Access).
    6. \n" +"
    \n" +"\n" +"

    Προτεινόμενη πολιτική για Εκδόσεις που παρέχουν Καθυστερημένη Ανοικτή " +"Πρόσβαση (Delayed Open Access)

    \n" +"Οι Συγγραφείς που δημοσιεύουν το έργο τους με αυτές τις εκδόσεις συμφωνούν " +"με τους ακόλουθους όρους:\n" +"
      \n" +"\t
    1. Οι συγγραφείς διατηρούν τα πενευματικά δικαιώματα και εκχωρούν το " +"δικαίωμα της πρώτης δημοσίευσης στις εκδόσεις, ενώ παράλληλα και " +"[ΠΡΟΣΔΙΟΡΙΣΤΕ ΧΡΟΝΙΚΗ ΠΕΡΙΟΔΟ] μετά την δημοσίευση λαμβάνει άδεια προστασίας " +"των πνευματικών δικαιωμάτων σύμφωνα με την Creative Commons Attribution " +"License που επιτρέπει σε τρίτους - αποδέκτες της άδειας να χρησιμοποιούν " +"την εργασία όπως θέλουν με την προϋπόθεση της διατήρησης των διατυπώσεων που " +"προβλέπονται στην άδεια σχετικά με την αναφορά στον αρχικό δημιουργό και την " +"αρχική δημοσίευση σε αυτές τις εκδόσεις.
    2. \n" +"\t
    3. Οι συγγραφείς μπορούν να συνάπτουν ξεχωριστές, και πρόσθετες " +"συμβάσεις και συμφωνίες για την μη αποκλειστική διανομή της εργασίας όπως " +"δημοσιεύτηκε στο περιοδικό αυτό (π.χ. κατάθεση σε ένα ακαδημαϊκό καταθετήριο " +"ή δημοσίευση σε ένα βιβλίο), με την προϋπόθεση της αναγνώρισης και την " +"αναφοράς της πρώτης δημοσίευσης σε αυτές τις εκδόσεις.
    4. \n" +"\t
    5. Οι εκδόσεις επιτρέπουν και ενθαρρύνουν τους συγγραφείς να καταθέτουν " +"τις εργασίες τους online (π.χ. σε ένα ακαδημαϊκό καταθετήριο ή στις " +"προσωπικές τους ιστοσελίδες) πριν και μετά από τις διαδικασίες της " +"δημοσίευσης, καθώς αυτό μπορεί να οδηγήσει σε παραγωγικές ανταλλαγές ιδεών " +"και σκέψεων καθώς επίσης και σε γρηγορότερη και μεγαλύτερη χρήση και " +"ευρετηρίαση της δημοσιευμένης εργασίας (Βλέπε The Effect of Open " +"Access).
    6. \n" +"
    " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Βήματα: Σειρά αναμονής Υποβολής > Αξιολόγηση Υποβολής > Διαμόρφωση " +"Υποβολής > Πίνακας Περιεχομένων.

    \n" +"Επιλέξτε ένα μοντέλο για χειρισμό των διαφόρων φάσεων της διαδικασίας " +"επιμέλειας. (Για να καθορίζετε επιμελητή διαχείρισης και επιμελητές σειρών, " +"μεταβείτε στους «Επιμελητές» στη «Διαχείριση Εκδόσεων».)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

    Για να δίνεται η δυνατότητα στους αναγνώστες να εντοπίζουν online " +"εκδόσεις των εργασιών που αναφέρονται από έναν συγγραφέα, οι παρακάτω " +"επιλογές είναι διαθέσιμες.

    \n" +"\n" +"
      \n" +"\t
    1. Προσθήκη ενός Εργαλείου Ανάγνωσης

      Ο Διαχειριστής " +"των Εκδόσεων μπορεί να προσθέσει την επιλογή \"Εύρεση Αναφορών\" στα " +"Εργαλεία Ανάγνωσης που συνοδεύουν τα δημοσιευμένα τεκμήρια, που δίνουν την " +"δυνατότητα στους αναγνώστες να επικολήσουν τον τίτλο της αναφοράς και να " +"αναζητήσουν την αντίστοιχη εργασία σε προεπιλεγμένες επσιτημονικές βάσεις " +"δεδομένων.

    2. \n" +"\t
    3. Ενσωμμάτωση Συνδέσμων στις Αναφορές

      Ο Επιμελητής " +"Σελιδοποίησης μπορεί να προσθέσει έναν σύνδεσμο σε αναφορές που μπορούν να " +"βρεθούν online σύμφωνα με τις παρακάτω οδηγίες (και οι οποίες μπορούν να " +"διαμορφωθούν κατά περίπτωση ).

    4. \n" +"
    " + +msgid "manager.publication.library" +msgstr "" + +msgid "manager.setup.resetPermissions" +msgstr "" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" + +msgid "manager.setup.resetPermissions.description" +msgstr "" + +msgid "manager.setup.resetPermissions.success" +msgstr "" + +msgid "grid.genres.title.short" +msgstr "" + +msgid "grid.genres.title" +msgstr "" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Αποστολή αντιγράφου στον κύριο υπεύθυνο επικοινωνίας των εκδόσεων, που έχει " +"ορισθεί στο βήμα 1 των ρυθμίσεων." + +msgid "grid.series.pathAlphaNumeric" +msgstr "" + +msgid "grid.series.pathExists" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" + +msgid "grid.series.urlWillBe" +msgstr "" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "" + +msgid "stats.publications.details" +msgstr "" + +msgid "stats.publications.none" +msgstr "" + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "" + +msgid "stats.publications.countOfTotal" +msgstr "" + +msgid "stats.publications.abstracts" +msgstr "" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "" + +msgid "plugins.importexport.common.error.validation" +msgstr "" + +msgid "plugins.importexport.common.invalidXML" +msgstr "" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "" + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "" + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "" + +msgid "emailTemplate.variable.context.contextName" +msgstr "" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "" + +msgid "emailTemplate.variable.context.contactName" +msgstr "" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "" + +msgid "mailable.validateEmailContext.name" +msgstr "" + +msgid "mailable.validateEmailContext.description" +msgstr "" + +msgid "doi.displayName" +msgstr "" + +msgid "doi.manager.displayName" +msgstr "" + +msgid "doi.description" +msgstr "" + +msgid "doi.readerDisplayName" +msgstr "" + +msgid "doi.manager.settings.description" +msgstr "" + +msgid "doi.manager.settings.explainDois" +msgstr "" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "" + +msgid "doi.manager.settings.doiPrefix" +msgstr "" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiReassign" +msgstr "" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "" + +msgid "doi.editor.doi" +msgstr "" + +msgid "doi.editor.doi.description" +msgstr "" + +msgid "doi.editor.doi.assignDoi" +msgstr "" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "" + +msgid "doi.editor.customSuffixMissing" +msgstr "" + +msgid "doi.editor.missingParts" +msgstr "" + +msgid "doi.editor.patternNotResolved" +msgstr "" + +msgid "doi.editor.canBeAssigned" +msgstr "" + +msgid "doi.editor.assigned" +msgstr "" + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" + +msgid "doi.editor.clearObjectsDoi" +msgstr "" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "" + +msgid "doi.editor.assignDoi" +msgstr "" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "" + +msgid "doi.editor.assignDoi.pattern" +msgstr "" + +msgid "doi.editor.assignDoi.assigned" +msgstr "" + +msgid "doi.editor.missingPrefix" +msgstr "" + +msgid "doi.editor.preview.publication" +msgstr "" + +msgid "doi.editor.preview.publication.none" +msgstr "" + +msgid "doi.editor.preview.chapters" +msgstr "" + +msgid "doi.editor.preview.publicationFormats" +msgstr "" + +msgid "doi.editor.preview.files" +msgstr "" + +msgid "doi.editor.preview.objects" +msgstr "" + +msgid "doi.manager.submissionDois" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.languages.languageInstructions" +#~ msgstr "" +#~ "Το OMP είναι διαθέσιμο στους χρήστες σε όλες τις υποστηριζόμενες γλώσσες. " +#~ "Επίσης το OMP μπορεί να λειτουργήσει ως ένα εν μέρει πολυγλωσσικό " +#~ "σύστημα, που παρέχει στους χρήστες τη δυνατότητα να αλλάζουν γλώσσες σε " +#~ "κάθε σελίδα και, επίσης, επιτρέπει τη δυνατότητα καταχώρισης ορισμένων " +#~ "δεδομένων σε δύο πρόσθετες γλώσσες.

    Εάν μια γλώσσα που " +#~ "υποστηρίζεται από το OMP δεν εμφανίζεται παρακάτω, απευθυνθείτε στον " +#~ "διαχειριστή του ιστοτόπου για να εγκαταστήσει τη γλώσσα από τη διεπαφή " +#~ "διαχείρισης του ιστοτόπου. Για οδηγίες σχετικά με την προσθήκη " +#~ "υποστήριξης για νέες γλώσσες, ανατρέξτε τα έγγραφα τεκμηρίωσης του OMP." + +#~ msgid "manager.series.noSeriesEditors" +#~ msgstr "" +#~ "Δεν υπάρχουν επιμελητές σειράς ακόμη. Προσθέστε σε αυτό τον ρόλο " +#~ "τουλάχιστον ένα χρήστη από το Διαχείριση > Ρυθμίσεις > Χρήστες & " +#~ "Ρόλοι." + +#~ msgid "manager.series.noCategories" +#~ msgstr "" +#~ "Δεν έχουν οριστεί κατηγορίες ακόμη. Εάν επιθυμείτε να εντάξετε αυτή τη " +#~ "σειρά σε κατηγορίες, κλείστε αυτή τη λειτουργία και επιλέξτε την καρτέλα " +#~ "'Κατηγορίες' και δημιουργείστε μία πρώτα." + +#~ msgid "manager.people.existingUserRequired" +#~ msgstr "Ένας υπάρχον χρήστης πρέπει να εισαχθεί." + +#~ msgid "settings.roles.gridDescription" +#~ msgstr "" +#~ "Οι Ρόλοι αποτελούν τις ομάδες χρηστών μιας έκδοσης που έχουν πρόσβαση σε " +#~ "διαφορετικά επίπεδα αδειών και σχετικών εργασιών κατά την εκδοτική " +#~ "διαδικασία. Υπάρχουν πέντε διαφορετικά επίπεδα αδειών: οι Διαχειριστές " +#~ "των Εκδόσεων έχουν πρόσβαση σε όλες τις λειτουργίες και εργασίες των " +#~ "εκδόσεων (περιεχόμενο και ρυθμίσεις), οι Επιμελητές Έκδοσης (Press " +#~ "Editors) έχουν πρόσβαση σε όλο το περιεχόμενο της σειράς που " +#~ "επιμελούνται, οι Βοηθοί Έκδοσης έχουν πρόσβαση σε όλες τις μονογραφίες " +#~ "που τους έχουν ανατεθεί από έναν επιμελητή, οι Αξιολογητές μπορούν να " +#~ "δούν και να πραγματοποιήσουν τις αξιολογήσεις που του έχουν ανατεθεί και " +#~ "οι Συγγραφείς μπορούν να δούν και να αλληλεπιδρούν με περιορισμένο αριθμό " +#~ "πληροφοριών σχετικά με την πορεία της υποβολή τους. Επιπρόσθετα, υπάρχουν " +#~ "πέντε διαφορετικά στάδια αναθέσεων στα οποία οι ρόλοι χρηστών μπορεί να " +#~ "έχουν πρόσβαση: Υποβολή, Εσωτερική Αξιολόγηση, Εξωτερική Αξιολόγηση, " +#~ "Σύνταξη και Παραγωγή." + +#~ msgid "manager.setup.addContributor" +#~ msgstr "Προσθήκη Συντελεστή" + +#~ msgid "manager.setup.additionalContent" +#~ msgstr "Πρόσθετο περιεχόμενο" + +#~ msgid "manager.setup.additionalContentDescription" +#~ msgstr "" +#~ "Εισάγετε στο παρακάτω πεδίο το κείμενο που επιθυμείτε με τη μορφή απλού " +#~ "κειμένου ή HTML κώδικα και το οποίο θα εμφανίζεται κάτω από την εικόνα " +#~ "της αρχικής σελίδας, σε περίπτωση που έχει ήδη φορτωθεί κάποια." + +#~ msgid "manager.setup.alternateHeader" +#~ msgstr "Εναλλακτική κεφαλίδα" + +#~ msgid "manager.setup.alternateHeaderDescription" +#~ msgstr "" +#~ "Εναλλακτικά, αντί του τίτλου και του λογοτύπου, μια HTML έκδοση της " +#~ "κεφαλίδας μπορεί να τοποθετηθεί στο παρακάτω πλαίσιο κειμένου. Εάν δεν " +#~ "είναι απαραίτητο, αφήστε κενό το πλαίσιο κειμένου." + +#~ msgid "manager.setup.authorCopyrightNotice" +#~ msgstr "Δήλωση για τα πνευματικά δικαιώματα" + +#~ msgid "manager.setup.authorCopyrightNoticeAgree" +#~ msgstr "" +#~ "Απαιτείται η συμφωνία των συγγραφέων με τη Δήλωση για τα πνευματικά " +#~ "δικαιώματα, ως μέρος της διαδικασίας υποβολής." + +#~ msgid "manager.setup.authorCopyrightNotice.description" +#~ msgstr "" +#~ "Η συγκεκριμένη δήλωση για τα πνευματικά δικαιώματα εμφανίζεται στο μενού " +#~ "«Σχετικά με τις εκδόσεις» και σε κάθε δημοσιευμένο μεταδεδομένο του " +#~ "τεκμηρίου. Αν και εναπόκειται στις Εκδόσεις να καθορίσουν τη φύση της " +#~ "συμφωνίας περί πνευματικών δικαιωμάτων με τους συγγραφείς, το Public " +#~ "Knowledge Project συνιστά τη χρήση των Creative Commons αδειών. Για το " +#~ "σκοπό αυτό, παρέχει έναδείγμα σημιώματος Πνευματικών Δικαιωμάτων " +#~ "το οποίο μπορείτε να κάνετε αποκοπή και επικόλληση στο παρακάτω χώρο για " +#~ "τις εκδόσεις που α) παρέχουν ανοικτή πρόσβαση, β) παρέχουν καθυστερημένη " +#~ "πρόσβαση (delayed open access), ή γ) δεν παρέχουν ανοικτή πρόσβαση." + +#~ msgid "manager.setup.authorGuidelines.description" +#~ msgstr "" +#~ "Διατύπωση προτύπων βιλιογραφίας και μορφοποίησης για συγγραφείς, που " +#~ "χρησιμοποιούνται για τεκμήρια που υποβάλλονται στις εκδόσεις (π.χ., " +#~ "Εγχειρίδιο έκδοσης της Αμερικανικής Ένωσης Ψυχολόγων (American " +#~ "Psychological Association), 5η έκδοση, 2001). Ιδιαίτερα βοηθητική " +#~ "είναι η παροχή παραδειγμάτων κοινών μορφών αναφορών και μορφοποίησης για " +#~ "εκδόσεις και βιβλία που πρέπει να χρησιμοποιούνται στις υποβολές." + +#~ msgid "manager.setup.contributor" +#~ msgstr "Συντελεστής" + +#~ msgid "manager.setup.contributors" +#~ msgstr "Πηγές Υποστήριξης" + +#~ msgid "manager.setup.contributors.description" +#~ msgstr "" +#~ "Πρόσθετοι παράγοντες ή οργανισμοί που παρέχουν οικονομική ή παρεμφερή " +#~ "υποστήριξη για τις εκδόσεις εμφανίζονται στο πεδίο Σχετικά με τις " +#~ "Εκδόσεις και ενδέχεται να συνοδεύονται και από ευχαριστήριο σημείωμα." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Πρόθημα DOI (DOI Prefix)" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "Το πρόθημα DOI (Αναγνωριστικό Ψηφιακού Αντικειμένου) ανατίθεται από CrossRef και " +#~ "βρίσκεται σε μορφή 10.xxxx (π.χ. 10.1234)." + +#~ msgid "manager.setup.emailSignatureDescription" +#~ msgstr "" +#~ "Τα έτοιμα μηνύματα ηλεκτρονικού ταχυδρομείου που αποστέλλονται μέσω του " +#~ "συστήματος για λογαριασμό των εκδόσεων θα φέρουν την ακόλουθη υπογραφή " +#~ "στο τέλος τους. Το κύριο σώμα των μηνυμάτων είναι διαθέσιμο για " +#~ "επεξεργασία παρακάτω." + +#~ msgid "manager.setup.homepageImage" +#~ msgstr "Εικόνα αρχικής σελίδας" + +#~ msgid "manager.setup.homepageImageDescription" +#~ msgstr "" +#~ "Προσθήκη εικόνας ή αρχείου γραφικών στο μέσο της σελίδας. Εάν " +#~ "χρησιμοποιείτε το προεπιλεγμένο πρότυπο και css, το μέγιστο πλάτος της " +#~ "εικόνας θα είναι 750px για το πρώτο πλαίσιο και 540px για το δεύτερο. Εάν " +#~ "χρησιμοποιείτε ένα προσαρμοσμένο πρότυπο ή css, οι τιμές αυτές μπορεί να " +#~ "αλλάξουν." + +#~ msgid "manager.setup.mailingAddress.description" +#~ msgstr "Φυσική τοποθεσία και ταχυδρομική διεύθυνση των εκδόσεων." + +#~ msgid "manager.setup.notifications" +#~ msgstr "Γνωστοποίηση συγγραφέων για την ολοκλήρωση της υποβολής" + +#~ msgid "manager.setup.notifications.copySpecifiedAddress" +#~ msgstr "Αποστολή αντιγράφου σε αυτή τη διεύθυνση ηλεκτρονικού ταχυδρομείου:" + +#~ msgid "manager.setup.notifications.description" +#~ msgstr "" +#~ "Με την ολοκλήρωση της διαδικασίας υποβολής, οι συγγραφείς λαμβάνουν " +#~ "αυτόματα ένα ευχαριστήριο μήνυμα ηλεκτρονικού ταχυδρομείου (που μπορεί να " +#~ "προβληθεί και να πεξεργαστεί στα Έτοιμα Email). Επιπλέον, αντίγραφο του " +#~ "μηνύματος αυτού μπορεί να αποσταλεί ως εξής:" + +#~ msgid "manager.setup.openAccess" +#~ msgstr "Οι εκδόσεις παρέχουν ανοικτή πρόσβαση στο περιεχόμενο τους." + +#~ msgid "manager.setup.openAccessPolicy" +#~ msgstr "Πολιτική ανοικτής πρόσβασης" + +#~ msgid "manager.setup.openAccessPolicy.description" +#~ msgstr "" +#~ "Εάν οι εκδόσεις παρέχουν άμεσα ελεύθερη πρόσβαση στο σύνολο του " +#~ "περιεχομένου τους, εισαγάγετε δήλωση σχετικά με την πολιτική ανοικτής " +#~ "πρόσβασης που θα εμφανίζεται στο μενού «Σχετικά με τις εκδόσεις»." + +#~ msgid "manager.setup.peerReview.description" +#~ msgstr "" +#~ "Περιγράψτε τις πολιτικές και τις διαδικασίες των εκδόσεων σχετικά με την " +#~ "αξιολόγηση από ομότιμους αξιολογητές, για αναγνώστες και συγγραφείς, " +#~ "συμπεριλαμβανομένου του αριθμού των αξιολογητών που συνήθως " +#~ "χρησιμοποιούνται στην αναθεώρηση υποβολής, των κριτηρίων βάσει των οποίων " +#~ "οι αξιολογητές καλούνται να κρίνουν υποβολές, του τυπικού χρόνου που " +#~ "απαιτείται για τη διεξαγωγή αξιολογήσεων και των πολιτικών συνεργασίας με " +#~ "τους αξιολογητές. Αυτό εμφανίζεται στο πεδίο Σχετικά με τις εκδόσεις." + +#~ msgid "manager.setup.principalContact" +#~ msgstr "Κύριος Υπεύθυνος Επικοινωνίας" + +#~ msgid "manager.setup.principalContactDescription" +#~ msgstr "" +#~ "Η εν λόγω θέση που μπορεί να θεωρηθεί θέση κύριας επιμέλειας, διαχείρισης " +#~ "επιμέλειας ή διοικητικού προσωπικού θα καταχωρηθεί στην αρχική σελίδα των " +#~ "εκδόσεων στο πεδίο Υπεύθυνος επικοινωνίας, μαζί με τον Υπεύθυνο για " +#~ "Τεχνική Υποστήριξη." + +#~ msgid "manager.setup.privacyStatement" +#~ msgstr "Δήλωση απορρήτου" + +#~ msgid "manager.setup.privacyStatement2" +#~ msgstr "Δήλωση απορρήτου" + +#~ msgid "manager.setup.privacyStatement.description" +#~ msgstr "" +#~ "Η συγκεκριμένη δήλωση εμφανίζεται στο πεδίο Σχετικά με τις Εκδόσεις καθώς " +#~ "και στις σελίδες εγγραφής συγγραφέα για Υποβολή και Ειδοποίησης. Παρακάτω " +#~ "υπάρχει συνιστώμενη πολιτική απορρήτου, η οποία μπορεί να αναθεωρηθεί ανά " +#~ "πάσα στιγμή." + +#~ msgid "manager.setup.reviewOptions.noteOnModification" +#~ msgstr "" +#~ "Μπορεί να τροποποιηθεί για κάθε υποβολή κατά την εκδοτική διαδικασία." + +#~ msgid "manager.setup.reviewOptions.reviewTime" +#~ msgstr "Χρόνος αξιολόγησης" + +#~ msgid "manager.setup.sponsors.description" +#~ msgstr "" +#~ "Τα ονόματα των χορηγών (π.χ., επιστημονικές ενώσεις, πανεπιστημιακά " +#~ "τμήματα, συνεργασίες, κτλ.) που αποτελούν τους χορηγούς των εκδόσεων " +#~ "εμφανίζονται στο πεδίο Σχετικά με τις Εκδόσεις και ενδέχεται να " +#~ "συνοδεύονται και από ευχαριστήριο σημείωμα." + +#~ msgid "manager.setup.technicalSupportContact" +#~ msgstr "Υπεύθυνος Επικοινωνίας για Τεχνική Υποστήριξη" + +#~ msgid "manager.setup.technicalSupportContactDescription" +#~ msgstr "" +#~ "Το εν λόγω άτομο θα καταχωρηθεί στη σελίδα του Υπεύθυνου επικοινωνίας των " +#~ "εκδόσεων για χρήση από επιμελητές, συγγραφείς και αξιολογητές και πρέπει " +#~ "να διαθέτει την ανάλογη εργασιακή εμπειρία μέσω του συστήματος για όλες " +#~ "τις δυνατότητες του. Το συγκεκριμένο σύστημα περιοδικών απαιτεί τεχνική " +#~ "υποστήριξη σε μικρό βαθμό, θα πρέπει, συνεπώς, να θεώρηθεί ανάθεση " +#~ "μερικής απασχόλησης. Μπορεί να προκύψουν περιπτώσεις, για παράδειγμα, " +#~ "όταν οι συγγραφείς και οι αξιολογητές αντιμετωπίζουν δυσκολίες σχετικά με " +#~ "τις οδηγίες ή τις μορφές των αρχείων, ή προκύπτει η ανάγκη επιβεβαίωσης " +#~ "της συνεχούς εφεδρικής αποθήκευσης των εκδόσεων στον server." + +#~ msgid "manager.setup.useImageLogo" +#~ msgstr "Εικόνα Λογοτύπου" + +#~ msgid "manager.setup.useImageLogoDescription" +#~ msgstr "" +#~ "Ένα προαιρετικό λογότυπο θα μπορούσε να ανεβεί και ν αχρησιμοποιηθεί σε " +#~ "συνδυασμό με την εικόνα ή τον τίτλο που έχει ορισθεί παραπάνω." diff --git a/locale/el/submission.po b/locale/el/submission.po new file mode 100644 index 00000000000..1f400691269 --- /dev/null +++ b/locale/el/submission.po @@ -0,0 +1,612 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" +"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "submission.upload.selectComponent" +msgstr "" + +msgid "submission.title" +msgstr "" + +msgid "submission.select" +msgstr "Επιλογή Υποβολής" + +msgid "submission.synopsis" +msgstr "Σύνοψη" + +msgid "submission.workflowType" +msgstr "Τύπος Βιβλίου" + +msgid "submission.workflowType.description" +msgstr "" +"Μια μονογραφία είναι ένα έργο που έχει συγγραφεί εξ' ολοκλήρου από έναν ή " +"πολλούς συγγραφείς. Ένα έργο υπο επιμέλια έχει διαφορετικούς συγγραφείς για " +"κάθε κεφάλαιο (λεπτομέρειες για το κάθε κεφάλαιο εισάγονται αργότερα κατα τη " +"διάρκεια της διαδικασίας.)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "" + +msgid "submission.workflowType.editedVolume" +msgstr "Έργο υπο Επιμέλεια" + +msgid "submission.workflowType.authoredWork" +msgstr "Μονογραφία" + +msgid "submission.workflowType.change" +msgstr "" + +msgid "submission.editorName" +msgstr "" + +msgid "submission.monograph" +msgstr "Μονογραφία" + +msgid "submission.published" +msgstr "Η Παραγωγή είναι έτοιμη" + +msgid "submission.fairCopy" +msgstr "Τελικό Αντιγραφο (Fair Copy)" + +msgid "submission.authorListSeparator" +msgstr "" + +msgid "submission.artwork.permissions" +msgstr "Άδειες (Permissions)" + +msgid "submission.chapter" +msgstr "Κεφάλαιο" + +msgid "submission.chapters" +msgstr "Κεφάλαια" + +msgid "submission.chapter.addChapter" +msgstr "Προσθήκη Κεφαλαίου" + +msgid "submission.chapter.editChapter" +msgstr "Επεξεργασία Κεφαλαίου" + +msgid "submission.chapter.pages" +msgstr "" + +msgid "submission.copyedit" +msgstr "Επιμέλια Κειμένου" + +msgid "submission.publicationFormats" +msgstr "Μορφότυπα Δημοσίευσης" + +msgid "submission.proofs" +msgstr "Τυπογραφικά Δοκίμια" + +msgid "submission.download" +msgstr "Λήψη αρχείων" + +msgid "submission.sharing" +msgstr "Μοιραστείτε το" + +msgid "manuscript.submission" +msgstr "Υποβολή Χειρογράφου" + +msgid "submission.round" +msgstr "Γύρος {$round}" + +msgid "submissions.queuedReview" +msgstr "Σε αξιολόγηση (In Review)" + +msgid "manuscript.submissions" +msgstr "Χειρόγραφο Υποβολών" + +msgid "submission.metadata" +msgstr "Μεταδεδομένα" + +msgid "submission.supportingAgencies" +msgstr "Οργανισμοί Υποστήριξης" + +msgid "grid.action.addChapter" +msgstr "Δημιουργία ενός νέου κεφαλαίου" + +msgid "grid.action.editChapter" +msgstr "Επεξεργασία κεφαλαίου" + +msgid "grid.action.deleteChapter" +msgstr "Διαγραφή αυτού του κεφαλαίου" + +msgid "submission.submit" +msgstr "Εισαγωγή Νέας Υποβολής Βιβλίου" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Ξεκινήστε μια νέα υποβολή στις Εκδόσεις" + +msgid "submission.submit.newSubmissionSingle" +msgstr "" + +msgid "submission.submit.upload" +msgstr "Μεταφόρτωση" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "" + +msgid "submission.submit.seriesPosition" +msgstr "Θέση σε αυτή τη Σειρά (πχ. Βιβλίο 2, ή Τόμος 2)" + +msgid "submission.submit.seriesPosition.description" +msgstr "" + +msgid "submission.submit.privacyStatement" +msgstr "Πολιτική Προστασίας Προσωπικών Δεδομένων" + +msgid "submission.submit.contributorRole" +msgstr "Ρόλος Συντελεστή" + +msgid "submission.submit.submissionFile" +msgstr "Αρχείο Υποβολής" + +msgid "submission.submit.prepare" +msgstr "Προετοιμασία" + +msgid "submission.submit.catalog" +msgstr "Κατάλογος" + +msgid "submission.submit.metadata" +msgstr "Μεταδεδομένα" + +msgid "submission.submit.finishingUp" +msgstr "Ολοκληρώνοντας" + +msgid "submission.submit.confirmation" +msgstr "" + +msgid "submission.submit.nextSteps" +msgstr "Επόμενα Βήματα" + +msgid "submission.submit.coverNote" +msgstr "Σημειώσεις Εξωφύλλου για τον επιμελητή έκδοσης" + +msgid "submission.submit.generalInformation" +msgstr "Γενικές Πληροφορίες" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Οι εκδόσεις έχουν ενημερωθεί για την υποβολή σας και θα λάβετε ένα email " +"επιβεβαίωσης για το αρχείο σας. Μόλις η εργασία σας αξιολογηθεί από τους " +"επιμελητές, θα επικοινωνήσουμε μαζί σας." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Παρακαλούμε διαβάστε και επισημάνετε τα στοιχεία στη λίστας ελέγχου της " +"υποβολής σας. Το στοιχείο {$itemsRemaining} δεν έχει ελεγχθεί." + +msgid "submission.submit.placement" +msgstr "Τοποθέτηση υποβολής" + +msgid "submission.submit.userGroup" +msgstr "Υποβολή με το ρόλο μου ως..." + +msgid "submission.submit.noContext" +msgstr "" + +msgid "grid.chapters.title" +msgstr "Κεφάλαια" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Διαγραφή αρχείου Επιμελητή Κειμένου" + +msgid "submission.complete" +msgstr "" + +msgid "submission.incomplete" +msgstr "" + +msgid "submission.editCatalogEntry" +msgstr "Καταχώριση" + +msgid "submission.catalogEntry.new" +msgstr "Νέα Καταχώριση στον καταλογο" + +msgid "submission.catalogEntry.add" +msgstr "" + +msgid "submission.catalogEntry.select" +msgstr "" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" + +msgid "submission.catalogEntry.confirm" +msgstr "" +"Δημιουργείστε μια καταχώριση στον κατάλογο γι'αυτό το βιβλίο, βασιζόμενοι " +"στα παρακάτω μεταδεδομένα." + +msgid "submission.catalogEntry.confirm.required" +msgstr "" +"Παρακαλούμε επιβεβαιώστε ότι η υποβολή είναι έτοιμη να κατχωρηθεί στον " +"καταλόγο." + +msgid "submission.catalogEntry.isAvailable" +msgstr "" +"Η μονογραφία έιναι έτοιμη να συμπεριληφθεί και να δημοσιευθεί στον κατάλογο." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Μονογραφία" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Κατάλογος" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Μορφότυπο Έκδοσης" + +msgid "submission.event.metadataPublished" +msgstr "Τα μεταδεδομένα της μονογραφίας έχουν εγκριθεί για δημοσίευση." + +msgid "submission.event.metadataUnpublished" +msgstr "Τα μεταδεδομένα της μονογραφίας δεν είναι πλέον δημοσιευμένα." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "" +"Το μορφότυπο της δημοσίευσης \"{$publicationFormatName}\" είναι διαθέσιμο." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" +"Το μορφότυπο της δημοσίευσης \"{$publicationFormatName}\" δεν είναι πλέον " +"διαθέσιμο." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Το μορφότυπο της δημοσίευσης \"{$publicationFormatName}\" έχει εγκριθεί για " +"δημοσίευση." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"Το μορφότυπο της δημοσίεσυης \"{$publicationFormatName}\" δεν είναι πλέον " +"δημοσιευμένο." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Τα μεταδεδομένα του καταλόγου έχουν ενημερωθεί." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"Τα μεταδεδομένα του μορφότυπου της δημοσίευσης για το \"{$formatName}\" " +"έχουν ενημερωθεί." + +msgid "submission.event.publicationFormatCreated" +msgstr "Το μορφότυπο της δημοσίευσης \"{$formatName}\" έχει δημιουργηθεί." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Το μορφότυπο της δημοσίευσης \"{$formatName}\" έχει αφαιρεθεί." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "" + +msgid "workflow.review.externalReview" +msgstr "" + +msgid "submission.upload.fileContents" +msgstr "" + +msgid "submission.dependentFiles" +msgstr "" + +msgid "submission.metadataDescription" +msgstr "" + +msgid "section.any" +msgstr "" + +msgid "submission.list.monographs" +msgstr "" + +msgid "submission.list.countMonographs" +msgstr "" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "" + +msgid "submission.list.orderFeatures" +msgstr "" + +msgid "submission.list.orderingFeatures" +msgstr "" + +msgid "submission.list.orderingFeaturesSection" +msgstr "" + +msgid "submission.list.saveFeatureOrder" +msgstr "" + +msgid "submission.list.viewEntry" +msgstr "" + +msgid "catalog.browseTitles" +msgstr "" + +msgid "publication.catalogEntry" +msgstr "Κατάλογος" + +msgid "publication.catalogEntry.success" +msgstr "" + +msgid "publication.invalidSeries" +msgstr "" + +msgid "publication.inactiveSeries" +msgstr "" + +msgid "publication.required.issue" +msgstr "" + +msgid "publication.publishedIn" +msgstr "" + +msgid "publication.publish.confirmation" +msgstr "" + +msgid "publication.scheduledIn" +msgstr "" + +msgid "submission.publication" +msgstr "Δημοσίευση" + +msgid "publication.status.published" +msgstr "Δημοσιευμένο" + +msgid "submission.status.scheduled" +msgstr "Προγραμματισμένο" + +msgid "publication.status.unscheduled" +msgstr "" + +msgid "submission.publications" +msgstr "Δημοσιεύσεις" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Το έτος πνευματικών δικαιωμάτων θα οριστεί αυτόματα όταν δημοσιευθεί σε ένα " +"τεύχος." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Το έτος πνευματικών δικαιωμάτων θα οριστεί αυτόματα με βάση την ημερομηνία " +"δημοσίευσης." + +msgid "publication.datePublished" +msgstr "Ημερομηνία Δημοσίευσης" + +msgid "publication.editDisabled" +msgstr "Αυτή η έκδοση έχει δημοσιευτεί και δεν είναι δυνατή η επεξεργασία της." + +msgid "publication.event.published" +msgstr "Η υποβολή δημοσιεύτηκε." + +msgid "publication.event.scheduled" +msgstr "Η υποβολή είχε προγραμματιστεί για δημοσίευση." + +msgid "publication.event.unpublished" +msgstr "" + +msgid "publication.event.versionPublished" +msgstr "Δημοσιεύθηκε μια νέα έκδοση." + +msgid "publication.event.versionScheduled" +msgstr "Μια νέα έκδοση είχε προγραμματιστεί για δημοσίευση." + +msgid "publication.event.versionUnpublished" +msgstr "Μια έκδοση καταργήθηκε από τη δημοσίευση." + +msgid "publication.invalidSubmission" +msgstr "Δεν ήταν δυνατή η εύρεση της υποβολής αυτής της δημοσίευσης." + +msgid "publication.publish" +msgstr "Δημοσίευση" + +msgid "publication.publish.requirements" +msgstr "Πρέπει να πληρούνται οι ακόλουθες προϋποθέσεις για να δημοσιευτεί." + +msgid "publication.required.declined" +msgstr "" + +msgid "publication.required.reviewStage" +msgstr "" + +msgid "submission.license.description" +msgstr "" + +msgid "submission.copyrightHolder.description" +msgstr "" + +msgid "submission.copyrightOther.description" +msgstr "" + +msgid "publication.unpublish" +msgstr "" + +msgid "publication.unpublish.confirm" +msgstr "" + +msgid "publication.unschedule.confirm" +msgstr "" + +msgid "publication.version.details" +msgstr "" + +msgid "submission.queries.production" +msgstr "Συζητήσεις Παραγωγής" + +msgid "publication.chapter.landingPage" +msgstr "" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" + +#~ msgid "submission.submit.upload.description" +#~ msgstr "" +#~ "Η μεταφόρτωση αρχείων που σχετίζεται με αυτή την υποβολή, συμπεριλαμβάνει " +#~ "χειρόγραφα, πρόταση για μια έκδοση, συνοδευτική επιστολή, καλλιτεχνικά " +#~ "έργα κλπ. Έαν είναι εφικτό, για τα έργα υπο επιμέλεια, καθώς και για τις " +#~ "μονογραφίες, ανεβάστε το κείμενο του έργου σε ξεχωριστό αρχείο." + +#~ msgid "submission.submit.copyrightNoticeAgree" +#~ msgstr "" +#~ "Συμφωνώ να τηρήσω και δεσμέυομαι από τους όρους της δήλωσης πνευματικών " +#~ "δικαιωμάτων." + +#~ msgid "submission.submit.submissionChecklist" +#~ msgstr "Λίστα Υποβολών" + +#~ msgid "submission.submit.submissionChecklistDescription" +#~ msgstr "" +#~ "Ελέξτε εάν η συγκεκριμένη υποβολή είναι έτοιμη για εξέταση από αυτές τις " +#~ "εκδόσεις, ελέγχοντας και ολοκληρώνοντας τα ακόλουθα (προσθήκη σχολίων " +#~ "προς τον επιμελητή μπορούν να προστεθούν παρακάτω)." + +#~ msgid "submission.submit.placement.seriesDescription" +#~ msgstr "Εάν το βιβλίο επίσης πρέπει να ενταχθεί σε μια σειρά..." + +#~ msgid "submission.submit.placement.seriesPositionDescription" +#~ msgstr "" +#~ "Τα βιβλία που ανήκουν σε μια σειρά διατηρούνται αντίστροφα από το χρόνο " +#~ "δημοσίευσης, ώστε να είναι ορατή η ανάπτυξή της σειράς και να εμφανίζεται " +#~ "η πιο πρόσφατη έκδοση." + +#~ msgid "submission.upload.selectBookElement" +#~ msgstr "Επιλέξτε στοιχείο βιβλίου" diff --git a/locale/el_GR/admin.po b/locale/el_GR/admin.po deleted file mode 100644 index 6671d331d49..00000000000 --- a/locale/el_GR/admin.po +++ /dev/null @@ -1,68 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-11-28T15:10:05-08:00\n" -"PO-Revision-Date: 2019-11-28T15:10:05-08:00\n" -"Language: \n" - -msgid "admin.hostedContexts" -msgstr "Φιλοξενούμενες Εκδόσεις" - -msgid "admin.settings.redirect" -msgstr "Προώθηση σε URL της Έκδοσης" - -msgid "admin.settings.redirectInstructions" -msgstr "Αιτήματα πρόσβασης στον κυρίως ιστότοπο της συλλογής θα προωθούνται στην ιστοσελίδα της έκδοσης. Αυτό μπορεί να φανεί χρήσιμο αν η συλλογή φιλοξενεί για παράδειγμα μόνο μία έκδοση." - -msgid "admin.settings.noPressRedirect" -msgstr "Καμία προώθηση" - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "Αυτή θα είναι η εξ'ορισμού γλώσσα της συλλογής και των φιλοξενούμενων εκδόσεων." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "Επιλέξτε όλες τις τοπικές ρυθμίσεις που θέλετε να υποστηρίζονται στη συλλογή. Οι επιλεγμένες τοπικές ρυθμίσεις θα είναι διαθέσιμες για χρήση από όλες τις εκδόσεις της συλλογής, και θα εμφανίζονται σε ένα Μενού Επιλογής Γλώσσας στην ιστοσελίδα κάθε έκδοσης. Εάν δεν επιλεχθούν πολλαπλές τοπικές ρυθμίσεις, το παραπάνω Μενού Επιλογής Γλώσσας δεν θα εμφανίζεται και συνεπώς δεν θα είναι δυνατή η ρύθμιση της γλώσσας στις ιστοσελίδες των εκδόσεων." - -msgid "admin.locale.maybeIncomplete" -msgstr "* Επιλεγμένες τοπικές ρυθμίσεις μπορεί να μην είναι ολοκληρωμένες." - -msgid "admin.languages.confirmUninstall" -msgstr "Είστε σίγουρος ότι θέλετε να απεγκαταστήσετε αυτή τη ρύθμιση; Αυτό θα επηρεάσει όσες φιλοξενούμενες εκδόσεις χρησιμοποιούν αυτή την ρύθμιση." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "Επιλέξτε τις επιπρόσθετες τοπικές ρυθμίσεις που θέλετε να εγκαταστήσετε για να τις υποστηρίζει το σύστημα. Οι ρυθμίσεις πρέπει να εγκατασταθούν πριν χρησιμοποιηθούν από κάποια έκδοση. Δείτε την τεκμηρίωση του OMP για πληροφορίες και τεκμηρίωση σχετικά με την προσθήκη νέων γλωσσών." - -msgid "admin.languages.confirmDisable" -msgstr "Είστε σίγουρος ότι επιθυμείτε να απενεργοποιήσετε αυτή την τοπική ρύθμιση; Αυτό θα επηρεάσει όσες φιλοξενούμενες εκδόσεις χρησιμοποιούν τη συγκεκριμένη ρύθμιση." - -msgid "admin.systemVersion" -msgstr "OMP Έκδοση" - -msgid "admin.systemConfiguration" -msgstr "Ρυθμίσεις OMP" - -msgid "admin.systemConfigurationDescription" -msgstr "Διαμόρφωση Ρυθμίσεων (Configuration) OMP από config.inc.php" - -msgid "admin.presses.pressSettings" -msgstr "Ρυθμίσεις Έκδοσης" - -msgid "admin.presses.noneCreated" -msgstr "Καμία Έκδοση δεν έχει δημιουργηθεί." - -msgid "admin.contexts.contextDescription" -msgstr "Περιγραφή Έκδοσης" - -msgid "admin.presses.addPress" -msgstr "Προσθήκη Έκδοσης" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

    ΣΗΜΕΙΩΣΗ!\n" -"

    Δεν ήταν δυνατή η αυτόματη αντικατάσταση του αρχείου ρυθμίσεων από το σύστημα. Για να εφαρμόσετε τις αλλαγές στις ρυθμίσεις πρέπει να ανοίξετε config.inc.php με κατάλληλο πρόγραμμα διόρθωσης κειμένων και να αντικαταστήσετε τα περιεχόμενα αυτού με τα περιεχόμενα του πεδίου κειμένου που βρίκεται παρακάτω.

    " diff --git a/locale/el_GR/default.po b/locale/el_GR/default.po deleted file mode 100644 index 6503cbabcfe..00000000000 --- a/locale/el_GR/default.po +++ /dev/null @@ -1,246 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" -"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" -"Language: \n" - -msgid "default.genres.appendix" -msgstr "Παράρτημα" - -msgid "default.genres.bibliography" -msgstr "Βιβλιογραφία" - -msgid "default.genres.manuscript" -msgstr "Χειρόγραφο Βιβλίου" - -msgid "default.genres.chapter" -msgstr "Χειρόγραφο Κεφαλαίου" - -msgid "default.genres.glossary" -msgstr "Γλωσσάριο" - -msgid "default.genres.index" -msgstr "Ευρετήριο" - -msgid "default.genres.preface" -msgstr "Πρόλογος" - -msgid "default.genres.prospectus" -msgstr "Πρόταση για έκδοση Βιβλίου (Prospectus)" - -msgid "default.genres.table" -msgstr "Πίνακας" - -msgid "default.genres.figure" -msgstr "Εικόνα/Figure" - -msgid "default.genres.photo" -msgstr "Φωτογραφία" - -msgid "default.genres.illustration" -msgstr "Εικόνογράφηση" - -msgid "default.genres.other" -msgstr "Διάφορα" - -msgid "default.groups.name.siteAdmin" -msgstr "Site Admin" - -msgid "default.groups.plural.siteAdmin" -msgstr "Διαχειριστής Ιστοσελίδας" - -msgid "default.groups.name.pressManager" -msgstr "Διαχειριστής Εκδόσεων" - -msgid "default.groups.plural.pressManager" -msgstr "Διαχειριστές Εκδόσεων" - -msgid "default.groups.abbrev.pressManager" -msgstr "PM" - -msgid "default.groups.name.editor" -msgstr "Επιμελητής Έκδοσης" - -msgid "default.groups.plural.editor" -msgstr "Επιμελητές Έκδοσης" - -msgid "default.groups.abbrev.editor" -msgstr "PE" - -msgid "default.groups.name.productionEditor" -msgstr "Επιμελητής Παραγωγής" - -msgid "default.groups.plural.productionEditor" -msgstr "Επιμελητές Παραγωγής" - -msgid "default.groups.abbrev.productionEditor" -msgstr "ProdE" - -msgid "default.groups.name.sectionEditor" -msgstr "Επιμελητής Σειράς" - -msgid "default.groups.plural.sectionEditor" -msgstr "Επιμελητές Σειράς" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "AcqE" - -msgid "default.groups.name.copyeditor" -msgstr "Επιμελητής Κειμένων" - -msgid "default.groups.plural.copyeditor" -msgstr "Επιμελητές Κειμένων" - -msgid "default.groups.abbrev.copyeditor" -msgstr "CE" - -msgid "default.groups.name.proofreader" -msgstr "Επιμελητής Τυπογραφικών Δοκιμίων" - -msgid "default.groups.plural.proofreader" -msgstr "Επιμελητές Τυπογραφικών Δοκιμίων" - -msgid "default.groups.abbrev.proofreader" -msgstr "PR" - -msgid "default.groups.name.designer" -msgstr "Σχεδιαστής" - -msgid "default.groups.plural.designer" -msgstr "Σχεδιαστές" - -msgid "default.groups.abbrev.designer" -msgstr "Σχέδιο" - -msgid "default.groups.name.internalReviewer" -msgstr "Εσωτερικός Αξιολογητής" - -msgid "default.groups.plural.internalReviewer" -msgstr "Εσωτερικοί Αξιολογητές" - -msgid "default.groups.abbrev.internalReviewer" -msgstr "IR" - -msgid "default.groups.name.externalReviewer" -msgstr "Εξωτερικός Αξιολογητής" - -msgid "default.groups.plural.externalReviewer" -msgstr "Εξωτερικοί Αξιολογητές" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "ER" - -msgid "default.groups.name.marketing" -msgstr "Υπεύθυνος Marketing και Πωλήσεων" - -msgid "default.groups.plural.marketing" -msgstr "Υπεύθυνος Marketing και Πωλήσεων" - -msgid "default.groups.abbrev.marketing" -msgstr "MS" - -msgid "default.groups.name.funding" -msgstr "Υπεύθυνος Χρηματοδότησης" - -msgid "default.groups.plural.funding" -msgstr "Υπεύθυνοι Χρηματοδότησης" - -msgid "default.groups.abbrev.funding" -msgstr "FC" - -msgid "default.groups.name.indexer" -msgstr "Ευρετηριαστής" - -msgid "default.groups.plural.indexer" -msgstr "Ευρετηριαστές" - -msgid "default.groups.abbrev.indexer" -msgstr "IND" - -msgid "default.groups.name.layoutEditor" -msgstr "Επιμελητής Σελιδοποίησης" - -msgid "default.groups.plural.layoutEditor" -msgstr "Επιμελητές Σελιδοποίησης" - -msgid "default.groups.abbrev.layoutEditor" -msgstr "LE" - -msgid "default.groups.name.author" -msgstr "Συγγραφέας" - -msgid "default.groups.plural.author" -msgstr "Συγγραφείς" - -msgid "default.groups.abbrev.author" -msgstr "AU" - -msgid "default.groups.name.chapterAuthor" -msgstr "Συγγραφέας Κεφαλαίου" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Συγγραφείς Κεφαλαίου" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "CA" - -msgid "default.groups.name.volumeEditor" -msgstr "Επιμελητής Έργου" - -msgid "default.groups.plural.volumeEditor" -msgstr "Επιμελητές Έργου" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "VE" - -msgid "default.groups.name.translator" -msgstr "Μεταφραστής" - -msgid "default.groups.plural.translator" -msgstr "Μεταφραστές" - -msgid "default.groups.abbrev.translator" -msgstr "Μεταφρ." - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "Η υποβολή δεν έχει δημοσιευτεί εκ των προτέρων, ούτε έχει υποβληθεί σε άλλες εκδόσεις για εξέταση (ή δεν έχει δοθεί εξήγηση στα Σχόλια προς τον επιμελητή)." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "Το αρχείο υποβολής είναι σε μορφή αρχείου εγγράφου OpenOffice, Microsoft Word ή RTF." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Όταν είναι διαθέσιμα, παρέχονται τα URL για πρόσβαση σε αναφορές online." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "Το κείμενο έχει μονό διάκενο, χρησιμοποιεί γραμματοσειρά μεγέθους 12, χρησιμοποιεί όπου απαιτείται κείμενο σε πλάγια γραφή και όχι με υπογράμμιση (εκτός από τις διευθύνσεις URL) και όλες οι εικόνες, τα διαγράμματα και οι πίνακες τοποθετούνται εντός του κειμένου σε κατάλληλα σημεία, και όχι στο τέλος αυτού." - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "Το κείμενο τηρεί τις στιλιστικές και βιβλιογραφικές απαιτήσεις που ορίζονται στις Οδηγίες προς τους συγγραφείς Οδηγίες προς Συγγραφείς, που βρίσκονται στο μενού \"Σχετικά με το περιοδικό\"." - -msgid "default.contextSettings.privacyStatement" -msgstr "

    Τα ονόματα και οι διευθύνσεις ηλεκτρονικού ταχυδρομείου που καταχωρούνται στις ιστοσελίδες των εκδόσεων της συλλογής θα χρησιμοποιούνται αποκλειστικά για τους καθορισμένους σκοπούς των υπηρεσίας μας και δεν θα διατίθεται για κανένα άλλο σκοπό ή σε κανένα τρίτο μέρος.

    " - -msgid "default.contextSettings.openAccessPolicy" -msgstr "Η συγκεκριμένη έκδοση παρέχει άμεση ανοικτή πρόσβαση στο περιεχόμενό της υποστηρίζοντας την αρχή της υποστήριξης της παγκόσμιας ανταλλαγής γνώσεων και καθιστώντας διαθέσιμη ελεύθερα στο κοινό τα αποτελέσματα της επιστημονικής έρευνας." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"________________________________________________________________________\n" -"{$contextName}\n" -"{$indexUrl}/{$contextPath}" - -msgid "default.contextSettings.forReaders" -msgstr "Η χρήση της συλλογής είναι ελεύθερη και δωρεάν για όλους και δεν απαιτείται η χρήση κωδικού πρόσβασης. Ωστόσο, ενθαρρύνουμε τους αναγνώστες-χρήστες να εγγραφούν στην υπηρεσία ενημέρωσης για τις εκδόσεις της συλλογής μας. Επιλέξτε τον σύνδεσμο Εγγραφείτε στη κορυφή της αρχικής σελίδας των Εκδόσεων. Κάθε εγγεγραμμένος χρήστης θα λαμβάνει με email με τους Πίνακες Περιεχομένων κάθε νέας έκδοσης που δημοσιεύεται στη συλλογή. Επίσης, η λίστα των καταχωρημένων αναγνωστών-χρηστών επιτρέπει στην υπηρεσία και στις εκδόσεις της συλλογής να διαπιστώσουν το πραγματικό επίπεδο ανταπόκρισης και χρήσης. Ενημερωθείτε για την Πολιτική Προστασίας Προωπικών Δεδομένων της συλλογής, που διαβεβαιώνει ότι τα στοιχεία και τα email των χρηστών δεν θα χρησιμοποιηθούν για άλλους λόγους." - -msgid "default.contextSettings.forAuthors" -msgstr "Ενδιαφέρεστε να πραγματοποιήσετε υποβολή στη συγκεκριμένη έκδοση; Σας συμβουλεύουμε να μελετήσετε τη σελίδα Σχετικά με την Έκδοση για τις πολιτικές των ενοτήτων της Έκδοσης, καθώς και τη σελίδαΟδηγίες για Συγγραφείς. Οι Συγγραφείς πρέπει να εγγραφούν στην έκδοση πριν από την υποβολή, ή στην περίπτωση που έχουν εγγραφεί, μπορούν απλά να συνδεθούν και να ξεκινήσουν τη διαδικασία με τα 5 βήματα" - -msgid "default.contextSettings.forLibrarians" -msgstr "Βασική επιδίωξη και επιθυμία της συλλογής \"Τιμαία\" είναι καταχώρηση αυτής ή/και άλλων εκδόσεων της στις συλλογές ηλεκτρονικών εκδόσεων και πηγών πληροφόρησης των βιβλιοθηκών. Επίσης, είναι πιθανόν χρήσιμο να τονιστεί ότι το χρησιμοποιούμενο σύστημα ηλεκτρονικής δημοσίευσης της συλλογής Τιμαία, είναι ανοικτού κώδικα και μπορεί να χρησιμοποιηθεί από τις βιβλιοθήκες για τη φιλοξενία εκδόσεων ή/και την εξυπηρέτηση των μελών της ακαδημαϊκής κοινότητας που είναι μέλη της συντακτικής ομάδας μιας έκδοσης. (Διαβάστε περισσότερα για το Open Monograph Press)." diff --git a/locale/el_GR/editor.po b/locale/el_GR/editor.po deleted file mode 100644 index f57d5439bb7..00000000000 --- a/locale/el_GR/editor.po +++ /dev/null @@ -1,171 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" -"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" -"Language: \n" - -msgid "editor.pressSignoff" -msgstr "Υπογραφή Εκδόσεων" - -msgid "editor.submissionArchive" -msgstr "Αρχείο Υποβολών" - -msgid "editor.monograph.cancelReview" -msgstr "Ακύρωση Αιτήματος" - -msgid "editor.monograph.clearReview" -msgstr "Καθαρισμός Αξιολογητή" - -msgid "editor.monograph.enterRecommendation" -msgstr "Εισαγωγή Εισήγησης" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Εισαγωγή εισήγησης αξιολογητή" - -msgid "editor.monograph.recommendation" -msgstr "Εισαγωγή Εισήγησης" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "Επιλέξτε έναν από τους παραπάνω αξιολογητές και πατήστε \"Επιλογή Αξιολογητή\" για να συνεχίσετε." - -msgid "editor.monograph.replaceReviewer" -msgstr "Αντικατάσταση Αξιολογητή" - -msgid "editor.monograph.editorToEnter" -msgstr "Ο επιμελητής εισάγει συστάσεις/σχόλια για τον αξιολογητή" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Ανέβασμα Αξιολόγησης" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Επιλογές αξιολόγησης απο ομότιμους αξιολογητές (Peer Review)" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Αρχεία επιμέλειας τυπογραφικών δοκιμίων" - -msgid "editor.monograph.internalReview" -msgstr "Έναρξη Εσωτερικής Αξιολόγησης" - -msgid "editor.monograph.internalReviewDescription" -msgstr "Είτε έτοιμοι να ξεκινήσετε ένα γύρο εσωτερικής αξιολόγησης για την υποβολή. Τα αρχεία που αποτελούν μέρος της υποβολής παρατίθενται παρακάτω και μπορούν να επιλεγούν για αξιολόγηση." - -msgid "editor.monograph.externalReview" -msgstr "Έναρξη Εξωτερικής Αξιολόγησης" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Επιλογή Αρχείων Τελικού Κειμένου" - -msgid "editor.monograph.final.currentFiles" -msgstr "Τρέχοντα Αρχεία Τελικού Κειμένου" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Τρέχοντα Αρχεία" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Μήνυμα σε χρήστη" - -msgid "editor.monograph.legend.submissionActions" -msgstr "Ενέργεια Υποβολής" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Συνολικές ενέργειες και επιλογές υποβολής." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Ενέργειες Ενότητας (Section Actions)" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "Επιλογές μιας συγκεκριμένης ενότητας, για παράδειγμα μεταφόρτωση αρχείων ή εγγραφή χρηστών." - -msgid "editor.monograph.legend.itemActions" -msgstr "Ενέργειες Στοιχείου" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Ενέργειες και επιλογές που αφορούν ένα συγκεκριμένο αρχείο." - -msgid "editor.monograph.legend.catalogEntry" -msgstr "Προβολή και διαχείριση της καταχώρησης μιας υποβολής στον κατάλογο, συμπεριλαμβανομένων των μεταδεδομένων και των μορφότυπων δημοσίευσης." - -msgid "editor.monograph.legend.bookInfo" -msgstr "Προβολή και διαχείριση των μεταδεδομένων, των σημειώσεων, κοινοποιήσεων και του ιστορικού μιας υποβολής" - -msgid "editor.monograph.legend.participants" -msgstr "Προβολή και Διαχείριση των συμμετεχόντων της υποβολής: συγγραφείς, επιμελητές, σχεδιαστές, και άλλων" - -msgid "editor.monograph.legend.add" -msgstr "Ανεβάστε ένα αρχείο στην ενότητα" - -msgid "editor.monograph.legend.add_user" -msgstr "Προσθήκη χρήστη στην ενότητα" - -msgid "editor.monograph.legend.settings" -msgstr "Προβολή και πρόσβαση στις ρυθμίσεις στοιχείου, όπως πληροφορίες και επιλογές αφαίρεσης" - -msgid "editor.monograph.legend.more_info" -msgstr "Επιπλέον πληροφορίες: σημειώσεις αρχείου, επιλογές κοινοποίησης και ιστορικό" - -msgid "editor.monograph.legend.notes_none" -msgstr "Πληροφορίες αρχείου: σημειώσεις, επιλογές κοινοποίησης και ιστορικό (Δεν έχουν προστεθεί σημειώσεις ακόμα)" - -msgid "editor.monograph.legend.notes" -msgstr "Πληροφορίες αρχείου: σημειώσεις, επιλογές κοινοποίησης και ιστορικό (Οι σημειώσεις είναι διαθέσιμες)" - -msgid "editor.monograph.legend.notes_new" -msgstr "Πληροφορίες αρχείου: σημειώσεις, επιλογές κοινοποίησης και ιστορικό (Νέες σημειώσεις προστέθηκαν κατά την τελευταία επίσκεψη)" - -msgid "editor.monograph.legend.edit" -msgstr "Επεξεργασία στοιχείου" - -msgid "editor.monograph.legend.delete" -msgstr "Διαγραφή στοιχείου" - -msgid "editor.monograph.legend.in_progress" -msgstr "Ενέργεια σε εξέλιξη ή δεν έχει ολοκληρωθεί" - -msgid "editor.monograph.legend.complete" -msgstr "Ολοκληρώθηκε" - -msgid "editor.monograph.legend.uploaded" -msgstr "File uploaded by the role in the grid column title" - -msgid "editor.submission.introduction" -msgstr "Σε μια υποβολή, ο επιμελητής έκδοσης (editor), μετά από διαβούλευση των αρχείων που έχουν υποβληθεί, προβαίνει στις ακόλουθες ενέργειες συμπεριλαμβανομένου και την ενημέρωση του συγγραφέα: αποστολή για εσωτερική αξιολόγηση (επιλέγοντας και τα αρχεία για εσωτερική αξιολόγηση), αποστολή για εξωτερική αξιολόγηση (επιλέγοντας και τα αρχεία για εξωτερική αξιολόγηση), αποδοχή υποβολής (συνεπάγεται και η επιλογή αρχείων για το στάδιο σύνταξης/δημοσίευσης) ή απόρριψη υποβολής (υποβολή στο αρχείο)." - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Τελικό Αντίγραφο" - -msgid "editor.monograph.editorial.fairCopyDescription" -msgstr "Ο επιμελητής κειμένων μεταφορτώνει ένα διορθωμένο ή τελικό αντίγραφο της υποβολής για έγκριση από τον επιμελητή έκδοσης, ώστε αυτό να σταλεί για την παραγωγή του." - -msgid "editor.monograph.proofs" -msgstr "Τυπογραφικά Δοκίμια" - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Αποδοχή και Δημοσίευση" - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "Διαφορετικές μορφές εκδόσεων, όπως σκληρόδετο (hardcover), χαρτόδετο (softcover) και ψηφιακό, μπορούν να μεταφορτωθούν παρακάτω στην ενότητα Μορφότυπα Έκδοσης. Μπορείτε να χρησιμοποιήσετε το παρακάτω πλέγμα (grid) ως μια λίστα επιλογών για το τι απομένει να γίνει για να εκδοθεί μια μορφή έκδοσης του βιβλίου. (Different publication formats, such as hardcover, softcover and digital, can be uploaded in the Publication Formats section below. You can use the publication formats grid below as a checklist for what still needs to be done to publish a publication format)." - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "Προσθέστε τα μορφότυπα έκδοσης (πχ. ψηφιακό, χαρτόδετο) τα οποία ο επιμελητής σελιδοποίησης ετοίμασε για τη διόρθωση τυπογραφικών δοκιμίων. Τα Τυπογραφικά Δοκίμια θα πρεπει να ελεγχθούν σύμφωνα με τα πρότυπα των εκδόσεων και η καταχώριση στον Κατάλογο πρέπει να είναι σύμφωνη με την εγκεκριμένη καταχώριση του βιβλίου, πριν να μπορεί ένα μορφότυπο να γίνει διαθέσιμο πχ. Δημοσιευμένο." - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Καθορισμός Όρων για Λήψη Αρχείων" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Καθορισμός Όρων" - -msgid "editor.monograph.proof.addNote" -msgstr "Προσθήκη Απάντησης" - -msgid "editor.internalReview.introduction" -msgstr "Στην Εσωτερική Αξιολόγηση, ο επιμελητή έκδοσης αναθέτει τα αρχεία της υποβολής στους εσωτερικούς αξιολογητές και βασίζεται στα αποτελέσματα της αξιολόγησης τους, πριν επιλέξει τις κατάλληλες ενέργειες (στις οποίες συμπεριλαμβάνεται η ενημέρωση του συγγραφέα): αίτηματα για αναθεωρήσεις (οι αναθεωρήσεις ελέγχονται μόνο από τον επιμελητή έκδοσης), εκ νέου υποβολή για αξιολόγηση (οι αναθεωρήσεις ξεκινούν ένα νέο γύρο αξιολογήσεων), αποστολή αιτήματος για εξωτερική αξιολόγηση (συνεπάγεται επιλογή αρχείων για εξωτερική αξιολόγηση), αποδοχή υποβολής (συνεπάγεται επιλογή αρχείων για το στάδιο Σύνταξης) ή απόρριψη υποβολής (υποβολή στο αρχείο)." - -msgid "editor.externalReview.introduction" -msgstr "Στην Εξωτερική Αξιολόγηση, ο επιμελητής έκδοσης αναθέτει τα αρχεία της υποβολής στους εξωτερικούς αξιολογητές των εκδόσεων και βασίζεται στα αποτελέσματα της αξιολόγησης τους, πριν επιλέξει τις κατάλληλες ενέργειες (στις οποίες συμπεριλαμβάνεται η ενημέρωση του συγγραφέα): αίτηματα για αναθεωρήσεις (οι αναθεωρήσεις ελέγχονται μόνο από τον επιμελητή έκδοσης), εκ νέου υποβολή για αξιολόγηση (οι αναθεωρήσεις ξεκινούν ένα νέο κύκλο αξιολογήσεων), αποδοχή υποβολής (συνεπάγεται επιλογή αρχείων για το στάδιο Σύνταξης) ή απόρριψη υποβολής (υποβολή στο αρχείο)." diff --git a/locale/el_GR/emails.po b/locale/el_GR/emails.po deleted file mode 100644 index 37b5f4af03a..00000000000 --- a/locale/el_GR/emails.po +++ /dev/null @@ -1,629 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" -"PO-Revision-Date: 2019-12-03T14:14:06-08:00\n" -"Language: \n" - -msgid "emails.notification.subject" -msgstr "Νέα ειδοποίηση από {$siteTitle}" - -msgid "emails.notification.body" -msgstr "" -"Έχετε μια νέα ειδοποίηση από {$siteTitle}:
    \n" -"
    \n" -"{$notificationContents}
    \n" -"
    \n" -"Σύνδεσμος: {$url}
    \n" -"
    \n" -"{$principalContactSignature}" - -msgid "emails.notification.description" -msgstr "The email is sent to registered users that have selected to have this type of notification emailed to them." - -msgid "emails.passwordResetConfirm.subject" -msgstr "Επιβεβαίωση αλλαγής κωδικού πρόσβασης" - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"Παραλάβαμε ένα αίτημα για επαναφορά (αλλαγή) του κωδικού πρόσβασής σας για τον ιστότοπο {$siteTitle} .
    \n" -"
    \n" -"Εάν δεν προωθήσατε εσείς το αίτημα αυτό, σας παρακαλούμε αγνοήστε το μήνυμα αυτό και ο κωδικός πρόσβασής δεν θα αλλάξει. Εάν επιθυμείτε να αλλάξετε τον κωδικό πρόσβασής σας, ακολουθήστε το παρακάτω URL.
    \n" -"
    \n" -"Αλλαγή του κωδικού πρόσβασής μου: {$url}
    \n" -"
    \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.description" -msgstr "This email is sent to a registered user when they indicate that they have forgotten their password or are unable to login. It provides a URL they can follow to reset their password." - -msgid "emails.passwordReset.subject" -msgstr "Επαναφορά κωδικού πρόσβασης" - -msgid "emails.passwordReset.body" -msgstr "" -"Η επαναφορά (αλλαγή) του κωδικού πρόσβασής σας πραγματοποιήθηκε επιτυχώς για χρήση στον ιστότοπο {$siteTitle} . Παρακαλούμε διατηρήστε το συγκεκριμένο όνομα χρήστη και τον κωδικό πρόσβασης, καθώς είναι απαραίτητα για όλες τις εργασίες σας στην έκδοση.
    \n" -"
    \n" -"Όνομα χρήστη: {$username}
    \n" -"Νέος κωδικός πρόσβασης: {$password}
    \n" -"
    \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.description" -msgstr "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται σε εγγεγραμμένους χρήστες αφού ολοκληρώσουν επιτυχώς την επαναφορά του κωδικού πρόσβασής τους ακολουθώντας τη διαδικασία που περιγράφεται στο email PASSWORD_RESET_CONFIRM." - -msgid "emails.userRegister.subject" -msgstr "Εγγραφή χρήστη" - -msgid "emails.userRegister.body" -msgstr "" -"{$userFullName}
    \n" -"
    \n" -"Είστε πλέον εγγεγραμμένος χρήστης των εκδόσεων {$contextName}. Το όνομα χρήστη και ο κωδικός πρόσβασής σας, που είναι απαραίτητα για όλες τις εργασίες σας με τη συγκεκριμένη έκδοση μέσω του ιστότοπου της, έχουν συμπεριληφθεί στο συγκεκριμένο μήνυμα. Ανά πάσα στιγμή, μπορείτε να καταργήσετε το όνομά σας από τη λίστα των χρηστών, επικοινωνώντας με το αρμόδιο προσωπικό.
    \n" -"
    \n" -"Όνομα χρήστη: {$username}
    \n" -"Όνομα χρήστη: {$password}
    \n" -"
    \n" -"Σας ευχαριστούμε,
    \n" -"{$principalContactSignature}" - -msgid "emails.userRegister.description" -msgstr "This email is sent to a newly registered user to welcome them to the system and provide them with a record of their username and password." - -msgid "emails.userValidate.subject" -msgstr "Επικύρωση λογαριασμού" - -msgid "emails.userValidate.body" -msgstr "" -"{$userFullName}
    \n" -"
    \n" -"
    \n" -"Έχετε δημιουργήσει λογαριασμό στις εκδόσεις {$contextName}, αλλά πριν αρχίσετε να το χρησιμοποιείται, πρέπει να επικυρώσετε τον λογαριασμό του ηλεκτρονικού σας ταχυδρομείου. Για να την επικύρωση, ακολουθήστε τον παρακάτω σύνδεσμο:
    \n" -"
    \n" -"{$activateUrl}
    \n" -"
    \n" -"Σας ευχαριστούμε,
    \n" -"{$principalContactSignature}" - -msgid "emails.userValidate.description" -msgstr "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται σε νέους χρήστες για να τους καλωσορίσει στο σύστημα και να τους στείλει το όνομα χρήστη και τον κωδικό πρόσβασής τους." - -msgid "emails.reviewerRegister.subject" -msgstr "Εγγραφή ως Αξιολογητής στις εκδόσεις {$contextName}" - -msgid "emails.reviewerRegister.body" -msgstr "" -"Λαμβάνοντας υπόψη την αρτιότητα των γνώσεών σας, το όνομα σας καταχωρήθηκε αυτόματα στη βάση δεδομένων αξιολογητών για τις εκδόσεις {$contextName}. Το γεγονός αυτό δεν συνεπάγεται οποιαδήποτε μορφή δέσμευσης από μέρους σας, απλά προσφέρει τη δυνατότητα επικοινωνίας μαζί σας για πιθανή αξιολόγηση κάποιας υποβολής στο περιοδικό μας. Μόλις δεχτείτε πρόσκληση για αξιολόγηση, θα έχετε τη δυνατότητα να δείτε τον τίτλο και το απόσπασμα της υπό αξιολόγηση εργασίας, και θα βρίσκεστε πάντα σε θέση να αποδεχτείτε ή όχι την πρόσκληση. Ανά πάσα στιγμή, επίσης, μπορείτε να καταργήσετε το όνομά σας από τη λίστα των αξιολογητών.
    \n" -"
    \n" -"Το όνομα χρήστη και ο κωδικός πρόσβασης που σας παρέχεται, χρησιμοποιείται σε όλες τις αλληλεπιδράσεις με τις εκδόσεις μέσω του συγκεκριμένου ιστότοπου. Για παράδειγμα, μπορείτε να ενημερώσετε το προφίλ σας καθώς και τα ενδιαφέροντά σας σε σχέση με την αξιολόγηση.
    \n" -"
    \n" -"Όνομα Χρήστη: {$username}
    \n" -"Κωδικός Πρόσβασης: {$password}
    \n" -"
    \n" -"Σας ευχαριστούμε,
    \n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.description" -msgstr "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται σε νέους χρήστες για να τους καλωσορίσει στο σύστημα και να τους δώσει το όνομα χρήστη και τον κωδικό πρόσβασής τους." - -msgid "emails.publishNotify.subject" -msgstr "Έκδοση νέου βιβλίου" - -msgid "emails.publishNotify.body" -msgstr "" -"Αγαπητοί Αναγνώστες:
    \n" -"
    \n" -"Οι εκδόσεις{$contextName} μόλις δημοσίευσε τη νέα της έκδοση {$contextUrl}.
    \n" -"Μπορείτε να συμβουλευτείτε τον Πίνακα περιεχομένων και, στη συνέχεια, να επισκεφτείτε τον ιστότοπο των εκδόσεων για να δείτε το πλήρες κείμενο των μονογραφιών ή/και τεκμηρίων που σας ενδιαφέρουν.
    \n" -"
    \n" -"Σας ευχαριστούμε για το συνεχές ενδιαφέρον σας για την εργασία μας,
    \n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.description" -msgstr "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται σε εγγεγραμμένους αναγνώστες μέσω του συνδέσμου \"Ενημέρωση Χρηστών\" στην αρχική σελίδα Επιμελητή των εκδόσεων. Ενημερώνει τους αναγνώστες για νέα βιβλία και τους προσκαλεί να επισκεφτούν τον δικτυακό τόπο των εκδόσεων.." - -msgid "emails.submissionAck.subject" -msgstr "Επιβεβαίωση υποβολής" - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"Ευχαριστούμε για την υποβολή της εργασίας σας, "{$submissionTitle}" στις εκδόσεις {$contextName}. Με το online σύστημα διαχείρισης που χρησιμοποιούν οι εκδόσεις, θα μπορείτε, συνδεόμενοι στον ιστότοπο των εκδόσεων, να παρακολουθείτε την πορεία της υποβολής σας στην διαδικασία της επιμέλειας:
    \n" -"
    \n" -"URL υποβολής: {$submissionUrl}
    \n" -"Όνομα χρήστη: {$authorUsername}
    \n" -"
    \n" -"Για περισσότερες πληροφορίες παρακαλούμε επικοινωνήστε μαζί μας. Ευχαριστούμε που θεωρείτε τις εκδόσεις αυτές ως τον κατάλληλο χώρο για να δημοσιεύετε την εργασία σας.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.description" -msgstr "Εφόσον έχει ενεργοποιηθεί η αντίστοιχη επιλογή, το συγκεκριμένο μήνυμα αποστέλλεται αυτόματα στον συγγραφέα όταν ολοκληρωθεί η διαδικασία υποβολής μιας εργασίας στις εκδόσεις. Παρέχει πληροφορίες σχετικά με την παρακολούθηση της πορείας της υποβολής στις διάφορες διαδικασίες και ευχαριστεί τον συγγραφέα για την υποβολή." - -msgid "emails.submissionAckNotUser.subject" -msgstr "Επιβεβαίωση υποβολής" - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Αγαπητέ κύριε/α,
    \n" -"
    \n" -"{$submitterName} έχετε υποβάλει την εργασία, "{$submissionTitle}" στις εκδόσεις {$contextName}.
    \n" -"
    \n" -"Για περισσότερες πληροφορίες παρακαλούμε επικοινωνήστε μαζί μας. Ευχαριστούμε που θεωρείτε τις εκδόσεις μας ως τον κατάλληλο χώρο για να δημοσιεύετε την εργασία σας.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.description" -msgstr "" -"This email, when enabled, is automatically sent to the other authors who are not users within OMP specified during the submission process.\n" -"Εφόσον έχει ενεργοποιηθεί η αντίστοιχη επιλογή, το συγκεκριμένο μήνυμα αποστέλλεται αυτόματα στον συγγραφέα που δεν είναι εγγεγραμμένος χρήστης όταν ολοκληρωθεί η διαδικασία υποβολής μιας εργασίας στις εκδόσεις." - -msgid "emails.editorAssign.subject" -msgstr "Ανάθεση ομάδας εργασίας" - -msgid "emails.editorAssign.body" -msgstr "" -"{$editorialContactName}:
    \n" -"
    \n" -"Στο πλαίσιο του ρόλου σας ως Επιμελητή, σας έχει ανατεθεί η παρακολούθηση της υποβολή, "{$submissionTitle}," στις εκδόσεις {$contextName} σε όλη τη διάρκεια της διαδικασίας επιμέλειας.
    \n" -"
    \n" -"URL Υποβολής: {$submissionUrl}
    \n" -"Όνομα χρήστη: {$editorUsername}
    \n" -"
    \n" -"Thank you," - -msgid "emails.editorAssign.description" -msgstr "Το συγκεκριμένο μήνυμα ενημερώνει τον Επιμελητή Σειράς ότι ο Επιμελητής των εκδόσεων του έχει αναθέσει την επίβλεψη της υποβολής στην διαδικασία επιμέλειας. Παρέχει πληροφορίες σχετικά με την υποβολή και τον τρόπο πρόσβασης στον ιστότοπο της έκδοσης." - -msgid "emails.reviewRequest.subject" -msgstr "Αίτημα αξιολόγησης εργασίας" - -msgid "emails.reviewRequest.body" -msgstr "" -"Κύριε/α {$reviewerName},
    \n" -"
    \n" -"{$messageToReviewer}
    \n" -"
    \n" -"Θα σας παρακαλούσαμε να συνδεθείτε στον ιστότοπο των εκδόσεων Τιμαία μέχρι την {$responseDueDate} για να δηλώσετε αν θα αναλάβετε την αξιολόγηση ή όχι, καθώς και για να αποκτήσετε πρόσβαση στην υποβολή και για να καταχωρίσετε την αξιολόγησή σας και τις συστάσεις σας. Ο δικτυακός τόπος των εκδόσεων είναι
    \n" -"
    \n" -"Η προθεσμία ολοκλήρωσης της αξιολόγηση λήγει στις {$reviewDueDate}.
    \n" -"
    \n" -"URL υποβολής: {$submissionReviewUrl}
    \n" -"
    \n" -"Username: {$reviewerUserName}
    \n" -"
    \n" -"Σας ευχαριστούμε εκ των προτέρων για την εξέταση του αιτήματός μας.
    \n" -"
    \n" -"
    \n" -"Με εκτίμηση,
    \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRequest.description" -msgstr "Το συγκεκριμένο μήνυμα στέλνεται από τον Επιμελητή Σειράς προς τον Αξιολογητή και του αιτείται να δεχτεί ή να απορρίψει την αξιολόγηση μιας υποβολής. Παρέχει πληροφορίες σχετικά με την υποβολή όπως ο τίτλος και το απόσπασμα, την ημερομηνία προθεσμίας της υποβολής και τον τρόπο πρόσβασης στην υποβολή. Το συγκεκριμένο μήνυμα χρησιμοποιείται όταν η Πρότυπη διαδικασία αξιολόγησης (online) έχει επιλεχθεί στο μενού Οργάνωση των εκδόσεων, Βήμα 2. (Σε διαφορετική περίπτωση ανατρέξτε στο REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Αίτημα αξιολόγησης εργασίας" - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Πιστεύουμε ότι θα μπορούσατε να συνεισφέρετε στην έκδοση του e-book μας ως ένας εξαίρετος αξιολογητής για την εργασία, "{$submissionTitle}," που έχει υποβληθεί στις εκδόσεις {$contextName}. Η περίληψη της υποβολής παρατίθεται παρακάτω, και ελπίζουμε ότι θα δεχθείτε να αναλάβετε αυτή την σημαντική εργασία για εμάς.
    \n" -"
    \n" -"Σε κάθε περίπτωση θα σας παρακαλούσαμε να συνδεθείτε στον δικτυακό τόπο των εκδόσεων μέχρι την {$weekLaterDate} για να μας γνωστοποιήσετε εάν θα αναλάβετε την συγκεκριμένη αξιολόγηση ή όχι, και σε περίπτωση θετικής απάντησης να αποκτήσετε πρόσβαση στο πλήρες κείμενο της υποβολής και να καταχωρίσετε την αξιολόγησή σας και τις συστάσεις σας.
    \n" -"
    \n" -"Η αξιολόγηση λήγει στις {$reviewDueDate}.
    \n" -"
    \n" -"URL υποβολής: {$submissionReviewUrl}
    \n" -"
    \n" -"Σας ευχαριστούμε εκ των προτέρων για την εξέταση του αιτήματός μας.
    \n" -"
    \n" -"{$editorialContactSignature}
    \n" -"
    \n" -"
    \n" -"
    \n" -""{$submissionTitle}"
    \n" -"
    \n" -"{$abstractTermIfEnabled}
    \n" -"{$monographAbstract}" - -msgid "emails.reviewRequestOneclick.description" -msgstr "Το συγκεκριμένο μήνυμα στέλνεται από τον Επιμελητή Σειράς προς τον αξιολογητή και του αιτείται να δεχτεί ή να απορρίψει την αξιολόγηση μιας υποβολής. Παρέχει πληροφορίες σχετικά με την υποβολή όπως ο τίτλος και το απόσπασμα, την ημερομηνία προθεσμίας της υποβολής και τον τρόπο πρόσβασης στην υποβολή. Το συγκεκριμένο μήνυμα χρησιμοποιείται όταν η Πρότυπη διαδικασία αξιολόγησης (online) έχει επιλεχθεί στο μενού Οργάνωση των εκδόσεων, Βήμα 2, και έτσι ενεργοποιείται η πρόσβαση του αξιολογητή με ένα μόνο κλικ." - -msgid "emails.reviewRequestAttached.subject" -msgstr "Αίτημα αξιολόγησης εργασίας" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Πιστεύουμε ότι θα μπορούσατε να συνεισφέρετε στην έκδοση του e-book μας ως ένας εξαίρετος αξιολογητής για την εργασία, "{$submissionTitle}," Η περίληψη της υποβολής παρατίθεται παρακάτω, και ελπίζουμε ότι θα δεχθείτε να αναλάβετε αυτή την σημαντική εργασία για εμάς. Οι Κατευθυντήριες γραμμές αξιολόγησης για τη συγκεκριμένη έκδοση αναφέρονται παρακάτω ενώ η υποβολή έχει επισυναφθεί στο παρόν μήνυμα. Η αξιολόγησή σας καθώς και οι συστάσεις-εισηγήσεις σας για την υποβολή θα πρέπει να αποσταλούν με email σε εμάς μέχρι την {$reviewDueDate}.
    \n" -"
    \n" -"Θα σας παρακαλούσαμε να μας ενημερώσετε με email μέχρι την {$weekLaterDate} εάν είστε διαθέσιμοι και πρόθυμοι να αναλάβετε την συγκεκριμένη αξιολόγηση.
    \n" -"
    \n" -"Σας ευχαριστούμε εκ των προτέρων για την εξέταση του αιτήματός μας.
    \n" -"
    \n" -"{$editorialContactSignature}
    \n" -"
    \n" -"
    \n" -"Κατευθυντήριες γραμμές αξιολόγησης
    \n" -"
    \n" -"{$reviewGuidelines}" - -msgid "emails.reviewRequestAttached.description" -msgstr "Το συγκεκριμένο μήνυμα στέλνεται από τον Επιμελητή Σειράς προς τον αξιολογητή και του ζητείται να δεχτεί ή να απορρίψει την αξιολόγηση της υποβολής. Περιλαμβάνει την υποβολή ως επισυναπτόμενο αρχείο. Το συγκεκριμένο μήνυμα χρησιμοποιείται όταν έχει επιλεγεί η Διαδικασία αξιολόγησης μέσω email, από το μενού Οργάνωση των εκδόσεων, Βήμα 2. (Σε διαφορετική περίπτωση ανατρέξτε στο REVIEW_REQUEST.)" - -msgid "emails.reviewCancel.subject" -msgstr "Αίτημα για ακύρωση αξιολόγησης" - -msgid "emails.reviewCancel.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Θα θέλαμε να σας ενημερώσουμε ότι η συντακτική ομάδα αποφάσισε την ακύρωση του αιτήματός μας προς εσάς για την αξιολόγηση της εργασίας, "{$submissionTitle}," για τις εκδόσεις {$contextName}. Σας ζητούμε συγνώμη για την ενδεχόμενη αναστάτωση και ελπίζουμε να είναι δυνατή η μελλοντική βοήθειά σας για τη διαδικασία αξιολόγησης μιας εργασίας.
    \n" -"
    \n" -"Για οποιαδήποτε διευκρίνιση, παρακαλώ επικοινωνήστε μαζί μας" - -msgid "emails.reviewCancel.description" -msgstr "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται από τον Επιμελητή Σειράς σε Αξιολογητή ο οποίος έχει αναλάβει την αξιολόγηση μιας υποβολής και του γνωστοποιείται η ακύρωση της εν λόγω αξιολόγησης" - -msgid "emails.reviewConfirm.subject" -msgstr "Δυνατότητα πραγματοποίησης αξιολόγησης" - -msgid "emails.reviewConfirm.body" -msgstr "" -"Επιμελητές:
    \n" -"
    \n" -"Θα ήθελα να σας ενημερώσω ότι είμαι διαθέσιμος και πρόθυμος να αναλάβω την αξιολόγηση της εργασίας, "{$submissionTitle}," για τις εκδόσεις {$contextName}. Ευχαριστώ για την εμπιστοσύνη σας και σκοπεύω να έχω την υποβολή έτοιμη μέχρι την προθεσμία, {$reviewDueDate}, αν όχι νωρίτερα.
    \n" -"
    \n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.description" -msgstr "Το συγκεκριμένο μήνυμα αποστέλλεται από τον Αξιολογητή στον Επιμελητή Σειράς ως απάντηση στο αίτημα αξιολόγησης, για να τον ειδοποιήσει ότι δέχεται να αναλάβει την αξιολόγηση της υποβολής και ότι η αξιολόγηση θα ολοκληρωθεί στην καθορισμένη ημερομηνία." - -msgid "emails.reviewDecline.subject" -msgstr "Μη δυνατότητα πραγματοποίησης αξιολόγησης" - -msgid "emails.reviewDecline.body" -msgstr "" -"Επιμελητές:
    \n" -"
    \n" -"Θα ήθελα να σας ενημερώσω ότι την τρέχουσα περίοδο, δυστυχώς δεν δύναμαι να αναλάβω την αξιολόγηση της εργασίας, "{$submissionTitle}," για τις εκδόσεις {$contextName}. Θα ήθελα να σας ευχαριστήσω για την εμπιστοσύνη σας και μη διστάσετε να επικοινωνήσετε μαζί μου ξανά στο μέλλον για μια πιθανή συνεργασία.
    \n" -"
    \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.description" -msgstr "Το συγκεκριμένο μήνυμα αποστέλλεται από τον Αξιολογητή στον Επιμελητή Σειράς ως απάντηση στο αίτημα αξιολόγησης για να τον ενημερώσει ότι δεν μπορεί να αναλάβει την συγκεκριμένη αξιολόγηση." - -msgid "emails.reviewAck.subject" -msgstr "Επιβεβαίωση λήψης αξιολόγησης εργασίας" - -msgid "emails.reviewAck.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Σας ευχαριστούμε που ολοκληρώσατε την αξιολόγηση της εργασίας, "{$submissionTitle}," για τις εκδόσεις {$contextName}, καθώς και για τη συμβολή σας στην ποιότητα του περιεχομένου της συγκεκριμένης έκδοσης." - -msgid "emails.reviewAck.description" -msgstr "Το συγκεκριμένο μήνυμα αποστέλλεται από τον Επιμελητή Σειράς στον Αξιολογητή για να επιβεβαιώσει τη λήψη της ολοκληρωμένης αξιολόγησης και να εκφράσει την ευχαριστία του στον αξιολογητή για τη συμβολή του στην συγκεκριμένη έκδοση." - -msgid "emails.reviewRemind.subject" -msgstr "Υπενθύμιση αξιολόγησης υποβολής" - -msgid "emails.reviewRemind.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"JΤο μήνυμα αυτό αποτελεί μια απλή υπενθύμιση σχετικά με την αξιολόγηση της υποβολής, "{$submissionTitle}," για τις εκδόσεις {$contextName} που έχετε αναλάβει. Ελπίζουμε ότι η αξιολόγηση να είναι έτοιμη μέχρι την σχετική προθεσμία {$reviewDueDate}, και θα είμαστε ευγνώμονες να τη λάβουμε το συντομότερο δυνατό.
    \n" -"
    \n" -"Εάν για οποιοδήποτε λόγο δεν διαθέτετε το όνομα χρήστη και κωδικό πρόσβασης σας για τον ιστότοπο των εκδόσων e-books, μπορείτε να χρησιμοποιήσετε τον παρακάτω σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασης σας (το οποίο θα σας αποσταλεί με email μαζί με το όνομα χρήστη). {$passwordResetUrl}
    \n" -"
    \n" -"URL Υποβολής: {$submissionReviewUrl}
    \n" -"
    \n" -"Username: {$reviewerUserName}
    \n" -"
    \n" -"Θα σας παρακαλούσαμε να μας επιβεβαιώσετε ότι είστε σε θέση να ολοκληρώσετε επιτυχώς την, τόσο σημαντική για τις εκδόσεις, εργασία της αξιολόγησης . Ελπίζουμε να λάβουμε σύντομα την απάντησή σας.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemind.description" -msgstr "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται από τον Επιμελητή Σειράς ως υπενθύμιση στον Αξιολογητή για την ολοκλήρωση της αξιολόγησης." - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Υπενθύμιση αξιολόγησης υποβολής" - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Το μήνυμα αυτό αποτελεί μια απλή υπενθύμιση σχετικά με την αξιολόγηση της υποβολής, "{$submissionTitle}," για τις εκδόσεις {$contextName} που έχετε αναλάβει. Ελπίζουμε ότι η αξιολόγηση να είναι έτοιμη μέχρι την σχετική προθεσμία {$reviewDueDate}, και θα είμαστε ευγνώμονες να τη λάβουμε το συντομότερο δυνατό.
    \n" -"
    \n" -"URL υποβολής: {$submissionReviewUrl}
    \n" -"
    \n" -"Θα σας παρακαλούσαμε να μας επιβεβαιώσετε ότι είστε σε θέση να ολοκληρώσετε επιτυχώς την, τόσο σημαντική για την έκδοση μας, εργασία της αξιολόγησης . Ελπίζουμε να λάβουμε σύντομα την απάντησή σας.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.description" -msgstr "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται από τον Επιμελητή Σειράς ως υπενθύμιση στον Αξιολογητή για την πραγματοποίηση της αξιολόγησης." - -msgid "emails.reviewRemindAuto.subject" -msgstr "Αυτοματοποιημένη υπενθύμιση αξιολόγησης υποβολής" - -msgid "emails.reviewRemindAuto.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Το μήνυμα αυτό αποτελεί μια απλή υπενθύμιση σχετικά με την αξιολόγηση της υποβολής, "{$submissionTitle}," για τις εκδόσεις {$contextName} που έχετε αναλάβει. Ελπίζουμε ότι η αξιολόγηση να είναι έτοιμη μέχρι την σχετική προθεσμία {$reviewDueDate}. Λάβετε υπόψη σας ότι το μήνυμα αυτό δημιουργήθηκε αυτόματα και αποστέλλεται μετά την πάροδο της ημερομηνίας αυτής. Παρόλα αυτά θα είμαστε ευγνώμονες να λάβουμε την αξιολόγησή σας το συντομότερο δυνατό.
    \n" -"
    \n" -"IΕάν για οποιοδήποτε λόγο δεν διαθέτετε το όνομα χρήστη και κωδικό πρόσβασης σας για τον ιστότοπο της Τιμαίας, μπορείτε να χρησιμοποιήσετε τον παρακάτω σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασης σας (το οποίο θα σας αποσταλλεί με email μαζί με το όνομα χρήστη). {$passwordResetUrl}
    \n" -"
    \n" -"URL Υποβολής: {$submissionReviewUrl}
    \n" -"
    \n" -"Θα σας παρακαλούσαμε να μας επιβεβαιώσετε ότι είστε σε θέση να ολοκληρώσετε επιτυχώς την, τόσο σημαντική για το περιοδικό, εργασία της αξιολόγησης . Ελπίζουμε να λάβουμε σύντομα την απάντησή σας.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.description" -msgstr "Το συγκεκριμένο μήνυμα αποστέλλεται αυτόματα όταν παρέλθει η ημερομηνία ολοκλήρωσης της αξιολόγησης (ανατρέξτε στις Επιλογές αξιολόγησης στο μενού Οργάνωση της έκδοσης, Βήμα 2) και, επίσης, απενεργοποιείται η δυνατότητα πρόσβασης του αξιολογητή με ένα μόνο κλικ. Οι προγραμματισμένες εργασίες πρέπει να ενεργοποιηθούν και να ρυθμιστούν (ανατρέξτε στο αρχείο ρυθμίσεων του ιστότοπου)." - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Αυτοματοποιημένη υπενθύμιση αξιολόγησης υποβολής" - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Το μήνυμα αυτό αποτελεί μια απλή υπενθύμιση σχετικά με την αξιολόγηση της υποβολής, "{$submissionTitle}," για τις εκδόσεις {$contextName} που έχετε αναλάβει.Ελπίζουμε ότι η αξιολόγηση να είναι έτοιμη μέχρι την σχετική προθεσμία {$reviewDueDate}. Λάβετε υπόψη σας ότι το μήνυμα αυτό δημιουργήθηκε αυτόματα και αποστέλλεται μετά την πάροδο της ημερομηνίας αυτής. Παρόλα αυτά θα είμαστε ευγνώμονες να λάβουμε την αξιολόγησή σας το συντομότερο δυνατό.
    \n" -"
    \n" -"URL Υποβολής: {$submissionReviewUrl}
    \n" -"
    \n" -"Θα σας παρακαλούσαμε να μας επιβεβαιώσετε ότι είστε σε θέση να ολοκληρώσετε επιτυχώς την, τόσο σημαντική για το περιοδικό, εργασία της αξιολόγησης . Ελπίζουμε να λάβουμε σύντομα την απάντησή σας.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται αυτόματα όταν παρέλθει η ημερομηνία ολοκλήρωσης της αξιολόγησης (ανατρέξτε στις Επιλογές αξιολόγησης στο μενού Οργάνωση της έκδοσης, Βήμα 2) και, επίσης, απενεργοποιείται η δυνατότητα πρόσβασης του αξιολογητή με ένα μόνο κλικ. Οι προγραμματισμένες εργασίες πρέπει να ενεργοποιηθούν και να ρυθμιστούν(ανατρέξτε στο αρχείο ρυθμίσεων του ιστότοπου)." - -msgid "emails.editorDecisionAccept.subject" -msgstr "Απόφαση Επιμελητή" - -msgid "emails.editorDecisionAccept.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"Σχετικά με την υποβολή σας στις εκδόσεις {$contextName}, με τίτλο "{$submissionTitle}" θα θέλαμε να σας ενημερώσουμε :
    \n" -"
    \n" -"
    \n" -"
    \n" -"URL Εργασίας: {$submissionUrl}
    \n" -"Username: {$authorUsername}" - -msgid "emails.editorDecisionAccept.description" -msgstr "Αυτό το email αποστέλλεται από τον Επιμελητή/Εκδότη ή Από τον Επιμελητή Σειράς σε έναν Συγγραφέα για να τον ενημερώσει για την τελική απόφαση σχετικά με την υποβολή του." - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Απόφαση Επιμελητή" - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"Σχετικά με την υποβολή σας στις εκδόσεις {$contextName},με τίτλο "{$submissionTitle}" θα θέλαμε να σας ενημερώσουμε :
    \n" -"
    \n" -"
    \n" -"
    \n" -"URL εργασίας: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them that their submission is being sent to an external review." - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Απόφαση Επιμελητή" - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"Η επιμέλεια της εργασίας σας με τίτλο, "{$submissionTitle}," έχει ολοκληρωθεί. Η εργασία σας έχει αποσταλεί ώστε να ξεκινήσει η διαδικασία παραγωγής, επεξεργασίας και δημοσίευσης του έργου σας.
    \n" -"
    \n" -"URL εργασίας: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them that their submission is being sent to production." - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Απόφαση Επιμελητή" - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"Σχετικά με την υποβολή σας στις εκδόσεις {$contextName}, με τίτλο "{$submissionTitle}", θα θέλαμε να σας ενημερώσουμε:
    \n" -"
    \n" -"
    \n" -"
    \n" -"URL εργασίας: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them of a final decision regarding their submission." - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Απόφαση Επιμελητή" - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"Σχετικά με την υποβολή σας στις εκδόσεις {$contextName}, με τίτλο "{$submissionTitle}", θα θέλαμε να σας ενημερώσουμε:
    \n" -"
    \n" -"
    \n" -"
    \n" -"URL εργασίας: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them of a final decision regarding their submission." - -msgid "emails.editorDecisionDecline.subject" -msgstr "Απόφαση Επιμελητή" - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"Σχετικά με την υποβολή σας στις εκδόσεις {$contextName}, με τίτλο "{$submissionTitle}", θα θέλαμε να σας ενημερώσουμε:
    \n" -"
    \n" -"
    \n" -"
    \n" -"URL εργασίας: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them of a final decision regarding their submission." - -msgid "emails.copyeditRequest.subject" -msgstr "Αίτημα Επιμέλειας Κειμένων" - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$participantName}:
    \n" -"
    \n" -"Θα ήθελα να σας ζητήσω να αναλάβετε την επιμέλεια του κειμένου της εργασίας "{$submissionTitle}" που υποβλήθηκε στις εκδόσεις {$contextName} ακολουθώντας τα παρακάτω βήματα:
    \n" -"1. Κάντε κλικ στο URL υποβολής που βρίσκεται παρακάτω.
    \n" -"2. Συνδεθείτε στις εκδόσεις και κάντε κλικ στην επιλογή Αρχείο που εμφανίζεται στο Βήμα 1.
    \n" -"3. Ανατρέξτε στις Οδηγίες διαμόρφωσης κειμένων που βρίσκονται στην ιστοσελίδα.
    \n" -"4. Ανοίξτε το αρχείο που κατέβηκε και πραγματοποιήστε διαμόρφωση κειμένου, ενώ προσθέτετε ερωτήματα προς τον συγγραφέα όπου χρειάζεται.
    \n" -"5. Αποθηκεύστε το αρχείο με το διαμορφωμένο κείμενο και μεταφορτώστε το στο Βήμα 1 της Επιμέλειας Κειμένων.
    \n" -"6. Αποστείλετε το σχετικό email ΟΛΟΚΛΗΡΩΣΗΣ στον επιμελητή.
    \n" -"
    \n" -"{$contextName} URL: {$contextUrl}
    \n" -"URL Υποβολής: {$submissionUrl}
    \n" -"Όνομα Χρήστη: {$participantUsername}" - -msgid "emails.copyeditRequest.description" -msgstr "Το συγκεκριμένο μήνυμα ηλεκτρονικού ταχυδρομείου αποστέλλεται από τον Επιμελητή μιας Σειράς σε κάποιον από τους υπεύθυνους επιμέλειας κειμένων της υποβολής για να ζητήσει την έναρξη της διαδικασίας επιμέλειας κειμένων (copyediting). Παρέχει πληροφορίες σχετικά με την επιμέλεια της υποβολής και τον τρόπο πρόσβασης σε αυτή." - -msgid "emails.layoutRequest.subject" -msgstr "Αίτημα σελιδοποίησης" - -msgid "emails.layoutRequest.body" -msgstr "" -"{$participantName}:
    \n" -"
    \n" -"Στο στάδιο αυτό θα πρέπει να δημιουργηθούν τα κατάλληλα τυπογραφικά δοκίμια για την υποβολή με τίτλο "{$submissionTitle}" των εκδόσεων {$contextName} ακολουθώντας τα παρακάτω βήματα:
    \n" -"
    \n" -"1. Κάντε κλικ στο URL της υποβολής που βρίσκεται παρακάτω.
    \n" -"2. Συνδεθείτε στις εκδόσεις και χρησιμοποιήστε το αρχείο της Έκδοσης Σελιδοποίησης για τη δημιουργία των εντύπων σύμφωνα με τα πρότυπα του περιοδικού.
    \n" -"3. Αποστείλατε το μήνυμα ΟΛΟΚΛΗΡΩΜΕΝΟ στον επιμελητή.
    \n" -"
    \n" -"{$contextName} URL: {$contextUrl}
    \n" -"Submission URL: {$submissionUrl}
    \n" -"Username: {$participantUsername}
    \n" -"
    \n" -"Εάν δεν μπορείτε να αναλάβετε τη συγκεκριμένη εργασία αυτή τη στιγμή ή έχετε απορίες, επικοινωνήστε μαζί μας. Ευχαριστούμε για την συμβολή σας σε αυτή την έκδοση." - -msgid "emails.layoutRequest.description" -msgstr "Το συγκεκριμένο μήνυμα στέλνεται από τον Επιμελητή Σειράς στον Επιμελητή Σελιδοποίησης και τον ενημερώνει ότι του ανατίθεται η επιμέλεια της σελιδοποίησης μιας υποβολής. Παρέχει πληροφορίες σχετικά με την υποβολή και τον τρόπο πρόσβασης σε αυτή." - -msgid "emails.layoutComplete.subject" -msgstr "Ολοκλήρωση δημιουργίας σελιδοποιημένων δοκιμίων" - -msgid "emails.layoutComplete.body" -msgstr "" -"{$editorialContactName}:
    \n" -"
    \n" -"Τα σελιδοποιημένα δοκίμια για την εργασία με τίτλο, "{$submissionTitle}," για τις εκδόσεις {$contextName} είναι έτοιμα για την προετοιμασία των τυπογραφικών δοκιμίων.
    \n" -"
    \n" -"Εάν έχετε απορίες, επικοινωνήστε μαζί μου.
    \n" -"
    \n" -"{$signatureFullName}" - -msgid "emails.layoutComplete.description" -msgstr "Το συγκεκριμένο μήνυμα στέλνεται από τον Επιμελητή Σελιδοποίησης προς τον Επιμελητή Σειράς και τον ενημερώνει για την ολοκλήρωση της διαδικασίας σελιδοποίησης." - -msgid "emails.indexRequest.subject" -msgstr "Αίτημα Ευρετηρίασης" - -msgid "emails.indexRequest.body" -msgstr "" -"{$participantName}:
    \n" -"
    \n" -"Στο στάδιο αυτό της υποβολής με τίτλο "{$submissionTitle}" για τις εκδόσεις {$contextName} θα πρέπει να γίνει η Ευρετηρίαση της ακολουθώντας τα παρακάτω βήματα:
    \n" -"1. Κάντε κλικ στο URL υποβολής που βρίσκεται παρακάτω.
    \n" -"2. 2. Συνδεθείτε στις εκδόσεις και χρησιμοποιήστε το αρχείο του Τυπογραφικού Δοκιμίου για τη δημιουργία εκτυπωμένων κειμένων σύμφωνα με τα πρότυπα των εκδόσεων.
    \n" -"3. Αποστείλατε το μήνυμα ΟΛΟΚΛΗΡΩΜΕΝΟ στον επιμελητή.
    \n" -"
    \n" -"{$contextName} URL: {$contextUrl}
    \n" -"URL Υποβολής: {$submissionUrl}
    \n" -"όνομα Χρήστη: {$participantUsername}
    \n" -"
    \n" -"Εάν δεν μπορείτε να αναλάβετε την συγκεκριμένη εργασία αυτή τη στιγμή ή έχετε απορίες, επικοινωνήστε μαζί μας. Ευχαριστούμε για την συμβολή σας στη συγκεκριμένη έκδοση.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.indexRequest.description" -msgstr "Το συγκεκριμένο μήνυμα στέλνεται από τον Επιμελητή Σειράς στον Ευρετηριαστή και τον ενημερώνει ότι του ανατίθεται η ευρετηρίαση μιας υποβολής. Παρέχει πληροφορίες σχετικά με την υποβολή και τον τρόπο πρόσβασης σε αυτή." - -msgid "emails.indexComplete.subject" -msgstr "Ολοκλήρωση Ευρετηρίασης" - -msgid "emails.indexComplete.body" -msgstr "" -"{$editorialContactName}:
    \n" -"
    \n" -"Η ευρετηρίαση της εργασίας με τίτλο , "{$submissionTitle}," για τις εκδόσεις {$contextName} έχει ολοκληρωθεί και είναι έτοιμη για την προετοιμασία των τυπογραφικών δοκιμίων.
    \n" -"
    \n" -"Εάν έχετε απορίες, επικοινωνήστε μαζί μου.
    \n" -"
    \n" -"{$signatureFullName}" - -msgid "emails.indexComplete.description" -msgstr "Το συγκεκριμένο μήνυμα στέλνεται από τον Υπεύθυνο Ευρετηρίασης προς τον Επιμελητή Σειράς και τον ενημερώνει για την ολοκλήρωση της διαδικασίας ευρετηρίασης της εργασίας." - -msgid "emails.emailLink.subject" -msgstr "E-book πιθανού ενδιαφέροντος" - -msgid "emails.emailLink.body" -msgstr "Ίσως να σας ενδιαφέρει το κείμενο με τίτλο "{$submissionTitle}" του/των {$authorName} που δημοσιεύτηκε στον Τομ. {$volume}, No {$number} ({$year}) των εκδόσεων {$contextName} στον σύνδεσμο "{$monographUrl}"." - -msgid "emails.emailLink.description" -msgstr "Το συγκεκριμένο πρότυπο μηνύματος email παρέχει σε εγγεγραμμένο αναγνώστη τη δυνατότητα αποστολής πληροφοριών σχετικά με μία έκδοση σε οποιονδήποτε μπορεί να έχει εκδηλώσει ενδιαφέρον. Είναι διαθέσιμο μέσω των Εργαλείων ανάγνωσης και πρέπει να ενεργοποιηθεί από Υπεύθυνο διαχείρισης των εκδόσεων στη σελίδα Διαχείρισης εργαλείων ανάγνωσης." - -msgid "emails.notifySubmission.subject" -msgstr "Ειδοποίηση Υποβολής" - -msgid "emails.notifySubmission.body" -msgstr "" -"Έχετε μια νέα ειδοποίηση από {$sender} σχετικά με την έκδοση "{$submissionTitle}" ({$monographDetailsUrl}):
    \n" -"
    \n" -"\t\t{$message}" - -msgid "emails.notifySubmission.description" -msgstr "A notification from a user sent from a submission information center modal." - -msgid "emails.notifyFile.subject" -msgstr "Ειδοποίηση Αρχείου Υποβολής" - -msgid "emails.notifyFile.body" -msgstr "" -"Έχετε ένα νέο μήνυμα {$sender} σχετικά με το αρχείο "{$fileName}" της έκδοσης "{$submissionTitle}" ({$monographDetailsUrl}):
    \n" -"
    \n" -"\t\t{$message}" - -msgid "emails.notifyFile.description" -msgstr "A notification from a user sent from a file information center modal" - -msgid "emails.notificationCenterDefault.subject" -msgstr "Ένα μήνυμα σχετικά με τις Εκδόσεις {$contextName}" - -msgid "emails.notificationCenterDefault.body" -msgstr "Παρακαλώ πληκτρολογείστε το μήνυμα σας" - -msgid "emails.notificationCenterDefault.description" -msgstr "The default (blank) message used in the Notification Center Message Listbuilder." diff --git a/locale/el_GR/locale.po b/locale/el_GR/locale.po deleted file mode 100644 index 49a3c04abc1..00000000000 --- a/locale/el_GR/locale.po +++ /dev/null @@ -1,1190 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" -"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" -"Language: \n" - -msgid "monograph.audience" -msgstr "Κοινό" - -msgid "monograph.coverImage" -msgstr "Εικόνα Εξωφύλλου" - -msgid "monograph.coverImage.uploadInstructions" -msgstr "Βεβαιωθείτε ότι το ύψος της εικόνας δεν είναι μεγαλύτερο από το 150% του πλάτους της, διαφορετικά η εικόνα του εξωφύλλου σας δεν θα εμφανίζεται στο carousel των εκδόσεων της συλλογής." - -msgid "monograph.audience.rangeQualifier" -msgstr "Προσδιορισμός Εύρος Κοινού" - -msgid "monograph.audience.rangeFrom" -msgstr "Εύρος Κοινού (από)" - -msgid "monograph.audience.rangeTo" -msgstr "Εύρος Κοινού (σε)" - -msgid "monograph.audience.rangeExact" -msgstr "Εύρος Κοινού (ακριβής)" - -msgid "monograph.languages" -msgstr "Γλώσσες (Αγγλικά, Γαλλικά, Ισπανικά)" - -msgid "monograph.publicationFormats" -msgstr "Μορφές Δημοσίευσης" - -msgid "monograph.carousel.publicationFormats" -msgstr "Μορφότυπα:" - -msgid "monograph.type" -msgstr "Τύπος Υποβολής" - -msgid "submission.pageProofs" -msgstr "Σελίδα Τυπογραφικών Δοκιμίων" - -msgid "monograph.proofReadingDescription" -msgstr "Ο επιμελητής σελιδοποίησης ανεβάζει τα αρχεία για το στάδιο-παραγωγής που έχουν ετοιμαστεί για δημοσίευση εδώ. Επιλέξτε +Ανάθεση για να ορίσετε συγγραφείς και άλλους να διορθώσουν και να ελέγξουν τα τυπογραφικά δοκίμια ώστε τα διορθωμένα αρχεία να μεταφορτωθούν για έγκριση πριν τη δημοσίευση." - -msgid "monograph.task.addNote" -msgstr "Προσθήκη Ανάθεσης" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Ανοικτή Πρόσβαση" - -msgid "monograph.publicationFormat.imprint" -msgstr "Αποτύπωμα (Λογότυπο)/ imprint" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Αριθμός Σελίδων" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Πρώτες Σελίδες" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Πίσω Σελίδες" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Σύνθεση Προϊόντος" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Λεπτομέρειες Προϊόντος (δεν απαιτείται)" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Κωδικός Προϊόντος" - -msgid "monograph.publicationFormat.price" -msgstr "Τιμή" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Μία τιμή απαιτείται" - -msgid "monograph.publicationFormat.priceType" -msgstr "Τύπος Τιμής" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Ποσοστό Έκπτωσης, κατα περίπτωση" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Διαθεσιμότητα Προϊόντος" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Δείκτης Επιστρεφόμενων" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Ψηφιακές Πληροφορίες" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Φυσικές Διαστάσεις" - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Μέγεθος Αρχείου σε Mbytes" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Εισαγωγή δικής σας τιμής για το μέγεθος του αρχείου?" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Ύψος" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Πάχος" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Βάρος" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Πλάτος" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Χώρα Κατασκευής" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Digital Technical Protection" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Περιοχή Διανομής Προϊόντος" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Φορολογικός Συντελεστής" - -msgid "monograph.publicationFormat.taxType" -msgstr "Τύπος Φορολογίας" - -msgid "monograph.publicationFormat.isApproved" -msgstr "Συμπεριλάβετε τα μεταδεδομένα του μορφότυπου της έκδοσης στην καταχώρηση του βιβλίου στον κατάλογο." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Λείπουν αγορές και τιμές" - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Λείπει ο κωδικός ταυτοπίοιησης (identification code)." - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Λείπουν ορισμένα πεδία μεταδεδομένων." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "

    Ο τύπος αρχείου της έκδοσης που έχετε επιλέξει δεν υπάρχει πλέον για αυτή τη μονογραφία.

    " - -msgid "monograph.publicationFormat.openTab" -msgstr "Ετικέτα Μορφότυπου ανοικτής δημοσίευσης." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Μορφότυπο Δημοσίευσης" - -msgid "grid.catalogEntry.nameRequired" -msgstr "Απαιτείται όνομα" - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Σας παρακαλούμε εισάγεται μια έγκυρη τιμή." - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Λεπτομέρειες Μορφότυπου" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Physical format" - -msgid "grid.catalogEntry.monographRequired" -msgstr "Απαιτείται ένα id της μονογραφίας." - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Ένα μορφότυπο της έκδοσης πρέπει να επιλεγεί." - -msgid "grid.catalogEntry.isAvailable" -msgstr "Διαθέσιμο" - -msgid "grid.catalogEntry.proof" -msgstr "Τυπογραφικό Δοκίμιο" - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Έγκριση Μορφότυπου" - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "

    Αυτό το μορφότυπο θα γίνει τώρα διαθέσιμο στους αναγνώστες, μέσω αρχείων διαθέσιμων για λήψη που θα εμφανίζονται με την καταχώρηση του βιβλίου στον κατάλογο και/ή μέσω περαιτέρω ενεργειών από τις εκδόσεις για τη διανομή του βιβλίου.

    " - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "

    Αυτό το μορφότυπο δεν διατίθεται πλεόν στους αναγνώστες, μέσω αρχείων διαθέσιμων για λήψη που προηγούμένως εμφανίζονταν με την καταχώρηση του βιβλίου στον κατάλογο και/ή μέσω περαιτέρω ενεργειών από τις εκδόσεις για τη διανομή του βιβλίου.

    " - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Η καταχώρηση στον κατάλογο δεν έγινε αποδεκτή" - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Το μορφότυπο δεν είναι καταχωρημένο στον κατάλογο" - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Το τυπογραφικό δοκίμιο δεν έγινε αποδεκτό" - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Απαιτείται μέγεθος αρχείου για τα ψηφιακά μορφότυπα." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Απαιτείται κωδικός διαθεσιμότητας για το προϊόν." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Απαιτείται να επιλέξετε έναν κωδικό σύνθεσης του προϊόντος." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Κωδικοποιημένες Τιμές (Code Value)" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "Τύπος Κωδικού ONIX" - -msgid "grid.catalogEntry.codeRequired" -msgstr "Απαιτείται ένας κωδικός." - -msgid "grid.catalogEntry.valueRequired" -msgstr "Απαιτείται μία τιμή." - -msgid "grid.catalogEntry.salesRights" -msgstr "Δικαιώματα Πώλησης" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Κωδικοποιημένες Τιμές (Code Value)" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Τύπος Δικαιωμάτων Πώλησης" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Υπόλοιπος κόσμος?" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "Επιλέξτε αυτό το κουτάκι για να καταχωρήσετε τα Δικαιώματα Πώλησης σε όλα τα μορφότυπα σας. Δεν χρειάζεται να επιλεγούν Χώρες και Περιοχές σε αυτή την περίπτωση." - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "Υπάρχει ήδη ένας τύπος πωλήσεων για τον υπόλοιπο κόσμο καθορισμένος για το μορφότυπο της έκδοσης." - -msgid "grid.catalogEntry.countries" -msgstr "Χώρες" - -msgid "grid.catalogEntry.regions" -msgstr "Περιοχές" - -msgid "grid.catalogEntry.included" -msgstr "Συμπεριλαμβάνεται" - -msgid "grid.catalogEntry.excluded" -msgstr "Εξαιρούνται" - -msgid "grid.catalogEntry.markets" -msgstr "Περιοχές Αγοράς" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Περιοχές" - -msgid "grid.catalogEntry.publicationDates" -msgstr "Ημερομηνίες Έκδοσης" - -msgid "grid.catalogEntry.roleRequired" -msgstr "Απαιτείται ένας ρόλος αντιπροσώπου." - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Απαιτείται Μορφή Ημερομηνίας." - -msgid "grid.catalogEntry.dateValue" -msgstr "Ημερομηνία" - -msgid "grid.catalogEntry.dateRole" -msgstr "Ρόλος" - -msgid "grid.catalogEntry.dateFormat" -msgstr "Μορφή Ημερομηνίας" - -msgid "grid.catalogEntry.dateRequired" -msgstr "Απαιτείται ημερομηνία και η τιμή της πρέπει να ταιριάζει με το επιλεγμένο μορφότυπο." - -msgid "grid.catalogEntry.representatives" -msgstr "Αντιπρόσωποι" - -msgid "grid.catalogEntry.representativeType" -msgstr "Τύπος αντιπροσώπου (Representative Type)" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Πράκτορες (Agents)" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Προμηθευτές" - -msgid "grid.catalogEntry.agent" -msgstr "Πράκτορας" - -msgid "grid.catalogEntry.agentTip" -msgstr "Μπορείτε να αναθέσετε σε έναν πράκτορα να σας αντιπροσωπεύσει σε αυτή την περιοχή. Δεν απαιτείται." - -msgid "grid.catalogEntry.supplier" -msgstr "Προμηθευτής" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Επιλέξτε έναν ρόλο:" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Ρόλος" - -msgid "grid.catalogEntry.representativeName" -msgstr "Όνομα" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Τηλέφωνο" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "Email" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Ιστότοπος" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Αναγνωριστικό Αντιπροσώπου" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Τύπος αναγνωριστικού Αντιπροσώπου (συστήνεται GLN)" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "Μπορείτε να αφήσετε την επόμενη ενότητα κενή εάν εσείς παρέχετε τις υπηρεσίες στους πελάτες σας." - -msgid "grid.action.addRepresentative" -msgstr "Προσθήκη Αντοπροσώπου" - -msgid "grid.action.editRepresentative" -msgstr "Επεξεργασία του Αντιπροσώπου" - -msgid "grid.action.deleteRepresentative" -msgstr "Διαγραφή του Αντιπροσώπου" - -msgid "spotlight.spotlights" -msgstr "Βιτρίνα" - -msgid "spotlight.noneExist" -msgstr "Δεν υπάρχουν τρέχουσες καταχωρήσεις στη Βιτρίνα." - -msgid "spotlight.title.homePage" -msgstr "Στη βιτρίνα" - -msgid "spotlight.author" -msgstr "Συγγραφέας," - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Spotlight Item" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Αρχική σελίδα" - -msgid "grid.content.spotlights.category.sidebar" -msgstr "Πλευρική μπάρα" - -msgid "grid.content.spotlights.form.location" -msgstr "Τοποθεσία Βιτρίνας" - -msgid "grid.content.spotlights.form.item" -msgstr "Εισαγωγή Τίτλου Βιτρίνας (autocomplete)" - -msgid "grid.content.spotlights.form.title" -msgstr "Τίτλος Βιτρίνας" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Βιβλίο" - -msgid "grid.content.spotlights.itemRequired" -msgstr "Απαιτείται ένα τεκμήριο." - -msgid "grid.content.spotlights.titleRequired" -msgstr "Απαιτείται τίτλος Βιτρίνας" - -msgid "grid.content.spotlights.locationRequired" -msgstr "Παρακαλούμε επιλέξτε μια τοποθεσία της Βιτρίνας" - -msgid "grid.action.editSpotlight" -msgstr "Επεξεργασία αυτής της Βιτρίνας" - -msgid "grid.action.deleteSpotlight" -msgstr "Διαγραφής αυτής της Βιτρίνας" - -msgid "grid.action.addSpotlight" -msgstr "Προσθήκη στη Βιτρίνα" - -msgid "manager.series.open" -msgstr "Ανοικτές Υποβολές" - -msgid "manager.series.indexed" -msgstr "Έχει ευρετηριαστεί" - -msgid "grid.libraryFiles.column.files" -msgstr "Αρχεία" - -msgid "grid.action.catalogEntry" -msgstr "Προβολή φόρμας καταχώρησης στον κατάλογο" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Μορφότυπο που εμφανίζεται στην κατχώρηση στον κατάλογο" - -msgid "grid.action.editFormat" -msgstr "Επεξεργασία αυτού του μορφότυπου" - -msgid "grid.action.deleteFormat" -msgstr "Διαγραφή αυτού του μορφότυπου" - -msgid "grid.action.addFormat" -msgstr "Προσθήκη μορφότυπου δημοσίευσης" - -msgid "grid.action.approveProof" -msgstr "Έγκριση του τυπογραφικού δοκιμίου για ευρετηρίαση και ένταξη του στον κατάλογο." - -msgid "grid.action.pageProofApproved" -msgstr "Το αρχείο με τις σελίδες τυπογραφικού δοκιμίου είναι έτοιμο για δημοσίευση" - -msgid "grid.action.addAnnouncement" -msgstr "Προσθήκη Ανακοίνωσης" - -msgid "grid.action.newCatalogEntry" -msgstr "Νέα Καταχώριση στον Κατάλογο" - -msgid "grid.action.publicCatalog" -msgstr "Προβολή αυτού του στοιχείου στον κατάλογο" - -msgid "grid.action.feature" -msgstr "Εναλλαγή εμφάνισης στα προτεινόμενα βιβλία" - -msgid "grid.action.featureMonograph" -msgstr "Εμφάνιση στο καρουσέλ του καταλόγου" - -msgid "grid.action.releaseMonograph" -msgstr "Επισήμανση της υποβολής στις \"νέες κυκλοφορίες\"" - -msgid "grid.action.manageCategories" -msgstr "Ρυθμίσεις κατηγοριών για αυτές τις εκδόσεις" - -msgid "grid.action.manageSeries" -msgstr "Ρυθμίσεις σειρών για αυτές τις εκδόσεις" - -msgid "grid.action.addCode" -msgstr "Προσθήκη Κωδικού" - -msgid "grid.action.editCode" -msgstr "Επεξεργασία Κωδικού" - -msgid "grid.action.deleteCode" -msgstr "Διαγραφή Κωδικού" - -msgid "grid.action.addRights" -msgstr "Προσθήκη Δικαιωμάτων Πώλησης" - -msgid "grid.action.editRights" -msgstr "Επεξεργασία των Διακαιωμάτων" - -msgid "grid.action.deleteRights" -msgstr "Διαγραφή των Δικαιωμάτων" - -msgid "grid.action.addMarket" -msgstr "Προσθήκη Αγοράς (Market)" - -msgid "grid.action.editMarket" -msgstr "Επεξεργασία Αγοράς" - -msgid "grid.action.deleteMarket" -msgstr "Διαγραφή Αγοράς" - -msgid "grid.action.addDate" -msgstr "Προσθήκη ημερομηνίας δημοσίευσης" - -msgid "grid.action.editDate" -msgstr "Επεξεργασία ημερομηνίας" - -msgid "grid.action.deleteDate" -msgstr "Διαγραφή της ημερομηνία" - -msgid "grid.action.publicationFormatTab" -msgstr "Προβολή ετικέτας του μορφότυπου δημοσίευσης" - -msgid "grid.action.moreAnnouncements" -msgstr "Πήγαινε στη σελίδα ανακοινώσεων των εκδόσεων" - -msgid "grid.action.submissionEmail" -msgstr "Επιλέξτε για να διαβάσετε αυτό το email" - -msgid "grid.action.approveProofs" -msgstr "Προβολή πλέγματος (grid) τυπογραφικών δοκιμίων" - -msgid "grid.action.proofApproved" -msgstr "Έχει γίνει το τυπογραφικό δοκίμιο αυτού του μορφότυπου." - -msgid "grid.action.availableRepresentation" -msgstr "Αποδοχή/απόριψη αυτού του μορφότυπου" - -msgid "grid.action.formatAvailable" -msgstr "Το μορφότυπο είναι διαθέσιμο και έχει δημοσιευθεί" - -msgid "grid.reviewAttachments.add" -msgstr "Προσθήκη Συνημμένου για Αξιολόγηση" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Διαθέσιμα Αρχεία" - -msgid "series.series" -msgstr "Σειρές" - -msgid "series.featured" -msgstr "Featured" - -msgid "series.featured.description" -msgstr "Αυτή η σειρά θα εμφανιστεί στο κύριο μενού πλοήγησής" - -msgid "series.path" -msgstr "Διαδρομή" - -msgid "grid.series.urlWillBe" -msgstr "Το URL της σειράς θα είναι {$sampleUrl}. Η 'διαδρομή' είναι μια σειρά χαρακτήρων μέσω της οποίας αναγνωρίζεται μοναδικά η σειρά." - -msgid "catalog.manage" -msgstr "Διαχείριση Καταλόγου" - -msgid "catalog.manage.homepage" -msgstr "Αρχική σελίδα" - -msgid "catalog.manage.newReleases" -msgstr "Νέες Κυκλοφορίες" - -msgid "catalog.manage.category" -msgstr "Κατηγορία" - -msgid "catalog.manage.series" -msgstr "Σειρές" - -msgid "catalog.manage.managementIntroduction" -msgstr "Καλως ήρθατε στη σελίδα διαχείρισης του Καταλόγου. Από αυτή τη σελίδα μπορείτε να δημοσιεύσετε νέες καταχωρήσεις βιβλίων στον Κατάλογο, να αναθεωρήσετε και να ρυθμίσετε τη λίστα με τα Προτεινόμενα Βιβλία, να αναθεωρήσετε και να ρυθμίσετε τη λίστα με τις Νέες Κυκλοφορίες, καθώς και να αναθεωρήσετε και να καταχωρήσετε τα βιβλία σας ανά Κατηγορία και Σειρά" - -msgid "catalog.selectSeries" -msgstr "Επιλέξτε Σειρά" - -msgid "catalog.selectCategory" -msgstr "Επιλέξτε Κατηγορία" - -msgid "catalog.manage.entryDescription" -msgstr "Για να εμφανιστεί ένα βιβλίο στον κατάλογο, επιλέξτε την καρτέλα Μονογραφία και συμπληρώστε τις απαραίτητες πληροφορίες. Πληροφορίες για κάθε μορφότυπο του βιβλίου μπορεί να συμπεριληφθούν στην συγκεκριμένη καταχώρηση του καταλόγου, επιλέγοντας την ετικέτα μορφότυπο (Format). Ο προσδιορισμός των μεταδεδομένων βασίζεται στο πρότυπο ONIX (για βιβλία), το οποίο αποτελεί ένα διεθνές πρότυπο μεταδεδομένων που χρησιμοποιείται από την βιομηχανία του βιβλίου για τη ψηφιακή ανταλλαγή πληροφοριών των προϊόντων της." - -msgid "catalog.manage.spotlightDescription" -msgstr "Το περιεχόμενο μιας στήλης της Βιτρίνας (πχ., Προτεινόμενα Βιβλία, Προτεινόμρνη Σειρά) εμφανίζεται στην αρχική σελίδα των εκδόσεων, με τον τίτλο, την εικόνα και το κείμενο για κάθε στήλη." - -msgid "catalog.manage.homepageDescription" -msgstr "Οι εικόνες με τα εξώφυλλα των επιλεγμένων βιβλίων εμφανίζεται στο πάνω μέρος της αρχικής σελίδας με τη δυνατότητα περιστροφής των εικόνων (carousel). Επιλέξτε 'Εμφάνιση', έπειτα επιλέξτε το αστέρι για τη προσθήκη του βιβλίου στο carousel, το εικονίδιο με το θαυμαστικό για την εμφάνιση του στις νέες κυκλοφορίες. Σύρετε και αφήστε την εικόνα για να αλλάξετε τη σειρά." - -msgid "catalog.manage.categoryDescription" -msgstr "Επιλέξτε 'Εμφάνιση', έπειτα το αστέρι για την επιλογή εμφάνισης του βιβλίου σε αυτή την κατηγορία. Σύρετε και αφήστε την εικόνα για να αλλάξετε τη σειρά." - -msgid "catalog.manage.seriesDescription" -msgstr "Επιλέξτε 'Εμφάνιση', έπειτα το αστέρι για την επιλογή εμφάνισης του βιβλίου σε αυτή τη Σειρά, σύρετε και αφήστε την εικόνα για να αλλάξετε τη σειρά εμφάνισης. Οι Σειρές αναγνωρίζονται από τον/ους επιμελητή/ες και έναν τίτλο σειράς, μέσα σε μια κατηγορία ή ανεξάρτητα." - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Carousel" - -msgid "catalog.manage.newRelease" -msgstr "Νέες Κυκλοφορίες" - -msgid "catalog.manage.manageSeries" -msgstr "Διαχείριση Σειρών" - -msgid "catalog.manage.manageCategories" -msgstr "Διαχείριση Κατηγοριών" - -msgid "catalog.manage.noMonographs" -msgstr "Δεν υπάρχουν ανατιθέμενες μονογραφίες." - -msgid "catalog.feature" -msgstr "Εμφάνιση" - -msgid "catalog.featuredBooks" -msgstr "Προτεινόμενα βιβλία" - -msgid "catalog.dateAdded" -msgstr "Προστέθηκε" - -msgid "catalog.publicationInfo" -msgstr "Πληροφορίες Έκδοσης" - -msgid "catalog.relatedCategories" -msgstr "Σχετιζόμενες κατηγορίες" - -msgid "common.prefix" -msgstr "Πρόθημα" - -msgid "common.preview" -msgstr "Προεπισκόπηση" - -msgid "common.feature" -msgstr "Προβολή" - -msgid "common.searchCatalog" -msgstr "Αναζήτηση στον κατάλογο" - -msgid "common.moreInfo" -msgstr "Περισσότερες Πληροφορίες" - -msgid "common.plusMore" -msgstr "+ Περισσότερα" - -msgid "common.listbuilder.completeForm" -msgstr "Παρακαλούμε συμπληρώστε όλα τα πεδία της φόρμας." - -msgid "common.listbuilder.selectValidOption" -msgstr "Παρακαλούμε κάνετε μια έγκυρη επιλογή από τη λίστα." - -msgid "common.listbuilder.itemExists" -msgstr "Δεν μπορείτε να προσθέσετε το ίδιο στοιχείο δύο φορές." - -msgid "common.catalogInformation" -msgstr "Οι πληροφορίες στον καταλόγου δεν είναι αναγκαίο να συμπληρωθούν κατά το αρχικό στάδιο της υποβολής του έργου, εκτός από τον Τίτλο και την Περίληψη." - -msgid "common.prefixAndTitle.tip" -msgstr "Αν ο τίτλος του βιβλίου ξεκινά από \"Ο\", \"Η\", ή \"Το\" (ή κάτι παρόμοιο σε αλφαβητική σειρα) εντάξετε τη λέξη στο Πρόθημα (Prefix)." - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.homePageHeader.altText" -msgstr "Κεφαλίδα Ιστοσελίδας" - -msgid "navigation.catalog" -msgstr "Κατάλογος" - -msgid "navigation.competingInterestPolicy" -msgstr "Πολιτική Συγκουόμενων Συμφερόντων" - -msgid "navigation.catalog.manage" -msgstr "Διαχείριση" - -msgid "navigation.catalog.administration.short" -msgstr "Διαχείριση" - -msgid "navigation.catalog.administration" -msgstr "Διαχείριση Καταλόγου" - -msgid "navigation.catalog.administration.categories" -msgstr "Κατηγορίες" - -msgid "navigation.catalog.administration.series" -msgstr "Σειρές" - -msgid "navigation.infoForAuthors" -msgstr "Για Συγγραφείς" - -msgid "navigation.infoForLibrarians" -msgstr "Για Βιβλιοθηκονόμους" - -msgid "navigation.infoForAuthors.long" -msgstr "Πληροφορίες για Συγγραφείς" - -msgid "navigation.infoForLibrarians.long" -msgstr "Πληροφορίες για Βιβλιοθηκονόμους" - -msgid "navigation.newReleases" -msgstr "Νέες Κυκλοφορίες" - -msgid "navigation.published" -msgstr "Δημοσιευμένα" - -msgid "navigation.wizard" -msgstr "Οδηγός" - -msgid "navigation.linksAndMedia" -msgstr "Σύνδεσμοι και Κοινωνικά Μέσα" - -msgid "context.contexts" -msgstr "Εκδόσεις" - -msgid "user.noRoles.submitMonograph" -msgstr "Υποβολή μιας πρότασης" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Υποβολή μιας Μονογραφίας: η εγγραφή Συγγραφέα είναο προς το παρόν απενεργοποιημένη." - -msgid "user.noRoles.regReviewer" -msgstr "Εγγραφείτε ως Αξιολογητής" - -msgid "user.noRoles.regReviewerClosed" -msgstr "Εγγραφείτε ως Αξιολογητής: Η εγγραφή αξιολογητών είναι προς το παρόν απενεργοποιημένη" - -msgid "user.role.manager" -msgstr "Διαχειριστής Εκδόσεων" - -msgid "user.role.pressEditor" -msgstr "Επιμελητής Εκδόσεων" - -msgid "user.role.copyeditor" -msgstr "Επιμελητής Κειμένων" - -msgid "user.role.subEditor" -msgstr "Επιμελητής Σειράς" - -msgid "user.role.subEditors" -msgstr "Επιμελητές Σειράς" - -msgid "user.role.proofreader" -msgstr "Επιμελητής Τυπογραφικών Δοκιμίων" - -msgid "user.role.productionEditor" -msgstr "Επιμελητής Παραγωγής" - -msgid "user.role.managers" -msgstr "Διαχειριστές Εκδόσεων" - -msgid "user.role.editors" -msgstr "Επιμελητές" - -msgid "user.role.copyeditors" -msgstr "Επιμελητές Κειμένων" - -msgid "user.role.proofreaders" -msgstr "Επιμελητές Τυπογραφικών Δοκιμίων" - -msgid "user.role.productionEditors" -msgstr "Επιμελητές Παραγωγής" - -msgid "user.register.completeForm" -msgstr "Συμπληρώστε τη φόρμα για να εγγραφείτε στις εκδόσεις." - -msgid "user.register.selectContext" -msgstr "Επιλέξτε μια έκδοση για να εγγραφείτε" - -msgid "user.register.noContexts" -msgstr "Δεν υπάρχουν εκδόσεις στις οποίες μπορείτε να εγγραφείτε στον ιστότοπο αυτό." - -msgid "user.register.privacyStatement" -msgstr "Πολιτική Προστασίας Προσωπικών Δεδομένων" - -msgid "user.register.alreadyRegisteredOtherContext" -msgstr "Πατήστε εδώ εάν είστε ήδη εγγεγραμμένος χρήστης σε αυτή ή άλλη έκδοση της συλλογής" - -msgid "user.register.notAlreadyRegisteredOtherContext" -msgstr "Πατήστε εδώ εάν δεν είστε ήδη εγγεγραμμένος σε αυτή ή άλλη έκδοση της συλλογής" - -msgid "user.register.loginToRegister" -msgstr "Εισάγετε το υπάρχον όνομα χρήστη και τον κωδικό πρόσβασής σας για να εγγραφείτε σε αυτή την έκδοση." - -msgid "user.register.registrationDisabled" -msgstr "Οι εκδόσεις αυτές προς το παρόν δεν αποδέχεται εγγραφές χρηστών." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Ο κωδικός πρόσβασης που εισάγατε περιέχει λιγότερους χαρακτήρες από τον ελάχιστο επιτρεπτό αριθμό χαρακτήρων." - -msgid "user.register.readerDescription" -msgstr "Θα ενημερώνεστε με μήνυμα ηλεκτρονικού ταχυδρομείου όταν μια μονογραφία δημοσιεύεται." - -msgid "user.register.authorDescription" -msgstr "Δυνατότητα υποβολής εργασιών στις εκδόσεις." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Επιθυμία για συμμετοχή στην αξιολόγηση υποβολών στις Εκδόσεις" - -msgid "user.register.reviewerDescription" -msgstr "Επιθυμία για συμμετοχή στην αξιολόγηση υποβολών στις Εκδόσεις." - -msgid "user.register.reviewerInterests" -msgstr "Προσδιορίστε τα ενδιαφέροντα αξιολόγησης (θεματικές περιοχές και ερευνητικές μέθοδοι)" - -msgid "user.register.form.userGroupRequired" -msgstr "Πρέπει να επιλέξετε τουλάχιστον ένα ρόλο" - -msgid "site.pressView" -msgstr "Προβολή ιστοσελίδας εκδόσεων" - -msgid "about.pressContact" -msgstr "Επικοινωνία" - -msgid "about.aboutThePress" -msgstr "Σχετικά με τις εκδόσεις" - -msgid "about.editorialTeam" -msgstr "Συντακτική ομάδα" - -msgid "about.editorialPolicies" -msgstr "Πολιτικές έκδοσης" - -msgid "about.focusAndScope" -msgstr "Επίκεντρο και Σκοπός" - -msgid "about.seriesPolicies" -msgstr "Πολιτικές σειρών και κατηγοριών" - -msgid "about.submissions" -msgstr "Υποβολές" - -msgid "about.sponsors" -msgstr "Χορηγοί" - -msgid "about.contributors" -msgstr "Πηγές υποστήριξης" - -msgid "about.onlineSubmissions" -msgstr "Online υποβολές" - -msgid "about.onlineSubmissions.haveAccount" -msgstr "Έχετε ήδη όνομα χρήστη/ κωδικό πρόσβασης για τις εκδόσεις {$pressTitle}?" - -msgid "about.onlineSubmissions.login" -msgstr "Συνδεθείτε" - -msgid "about.onlineSubmissions.needAccount" -msgstr "Χρειάζεστε ένα όνομα χρήστη / κωδικό πρόσβασης;" - -msgid "about.onlineSubmissions.registration" -msgstr "Εγγραφή χρήστη" - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "Η εγγραφή και η σύνδεση είναι απαραίτητες για την online υποβολή τεκμηρίων και για έλεγχο της κατάστασης των υποβολών σας." - -msgid "about.authorGuidelines" -msgstr "Οδηγίες προς συγγραφείς" - -msgid "about.submissionPreparationChecklist" -msgstr "Λίστα ελέγχου προετοιμασίας υποβολής" - -msgid "about.submissionPreparationChecklist.description" -msgstr "Ως μέρος της διαδικασίας υποβολής, είναι απαραίτητο οι συγγραφείας να ελέγχουν τη συμμόρφωση της υποβολής με όλα τα ακόλουθα τεκμήρια, ενώ οι υποβολές που δεν τηρούν τις Οδηγίες για τους συγγραφείς μπορεί να επιστραφούν στους συγγραφείς." - -msgid "about.copyrightNotice" -msgstr "Ενημέρωση για τα πνευματικά δικαιώματα" - -msgid "about.privacyStatement" -msgstr "Πολιτική Προστασίας Προσωπικών Δεδομένων" - -msgid "about.reviewPolicy" -msgstr "Διαδικασία αξιολόγησης από ομότιμους αξιολογητές" - -msgid "about.publicationFrequency" -msgstr "Συχνότητα δημοσίευσης" - -msgid "about.openAccessPolicy" -msgstr "Πολιτική Ανοικτής Πρόσβασης" - -msgid "about.pressSponsorship" -msgstr "Χορηγοί Εκδόσεων" - -msgid "about.aboutThisPublishingSystem" -msgstr "Σχετικά με το Open Publishing System" - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "OMP Διαδικασία Επιμέλειας και Δημοσίευσης" - -#, fuzzy -msgid "about.aboutOMPPress" -msgstr "Οι εκδόσεις αυτές χρησιμοποιούν το Open Monograph Press {$ompVersion}, το οποίο είναι ένα λογισμικό διαχείρισης και δημοσίευσης εκδόσεων (βιβλίων) ανοικτού κώδικα, που έχει αναπτυχθεί, υποστηρίζεται και διανέμεται ελεύθερα από το Public Knowledge Project κάτω από την αδειοδότηση GNU General Public License." - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "Ο ιστότοπος αυτός χρησιμοποιεί το Open Monograph Press {$ompVersion}, το οποίο είναι ένα λογισμικό διαχείρισης και δημοσίευσης εκδόσεων (βιβλίων) ανοικτού κώδικα, που έχει αναπτυχθεί, υποστηρίζεται και διανέμεται ελεύθερα από το Public Knowledge Project κάτω από την αδειοδότηση GNU General Public License." - -msgid "help.searchReturnResults" -msgstr "Επιστροφή στα αποτελέσματα της αναζήτησης" - -msgid "help.goToEditPage" -msgstr "Ανοίξτε μια νέα σελίδα για να επεξεργαστείτε αυτές τις πληροφορίες" - -msgid "installer.appInstallation" -msgstr "OMP Installation" - -msgid "installer.ompUpgrade" -msgstr "OMP Upgrade" - -msgid "installer.installApplication" -msgstr "Install Open Monograph Press" - -#, fuzzy -msgid "installer.installationInstructions" -msgstr "" -"

    Thank you for downloading the Public Knowledge Project's Open Monograph Press {$version}. Before proceeding, please read the README file included with this software. For more information about the Public Knowledge Project and its software projects, please visit the PKP web site. If you have bug reports or technical support inquiries about Open Monograph Press, see the support forum or visit PKP's online bug reporting system. Although the support forum is the preferred method of contact, you can also email the team at pkp.contact@gmail.com.

    \n" -"\n" -"

    Upgrade

    \n" -"\n" -"

    If you are upgrading an existing installation of OMP, click here to proceed.

    " - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Pre-Installation Steps" - -msgid "installer.preInstallationInstructions" -msgstr "" -"

    1. The following files and directories (and their contents) must be made writable:

    \n" -"
      \n" -"\t
    • config.inc.php is writable (optional): {$writable_config}
    • \n" -"\t
    • public/ is writable: {$writable_public}
    • \n" -"\t
    • cache/ is writable: {$writable_cache}
    • \n" -"\t
    • cache/t_cache/ is writable: {$writable_templates_cache}
    • \n" -"\t
    • cache/t_compile/ is writable: {$writable_templates_compile}
    • \n" -"\t
    • cache/_db is writable: {$writable_db_cache}
    • \n" -"
    \n" -"\n" -"

    2. A directory to store uploaded files must be created and made writable (see \"File Settings\" below).

    " - -msgid "installer.upgradeInstructions" -msgstr "" -"

    OMP Version {$version}

    \n" -"\n" -"

    Thank you for downloading the Public Knowledge Project's Open Monograph Press. Before proceeding, please read the README and UPGRADE files included with this software. For more information about the Public Knowledge Project and its software projects, please visit the PKP web site. If you have bug reports or technical support inquiries about Open Monograph Press, see the support forum or visit PKP's online bug reporting system. Although the support forum is the preferred method of contact, you can also email the team at pkp.contact@gmail.com.

    \n" -"

    It is strongly recommended that you back up your database, files directory, and OMP installation directory before proceeding.

    \n" -"

    If you are running in PHP Safe Mode, please ensure that the max_execution_time directive in your php.ini configuration file is set to a high limit. If this or any other time limit (e.g. Apache's \"Timeout\" directive) is reached and the upgrade process is interrupted, manual intervention will be required.

    " - -msgid "installer.localeSettingsInstructions" -msgstr "" -"For complete Unicode (UTF-8) support, select UTF-8 for all character set settings. Note that this support currently requires a MySQL >= 4.1.1 or PostgreSQL >= 7.1 database server. Please also note that full Unicode support requires the mbstring library (enabled by default in most recent PHP installations). You may experience problems using extended character sets if your server does not meet these requirements.\n" -"

    \n" -"Your server currently supports mbstring: {$supportsMBString}" - -msgid "installer.allowFileUploads" -msgstr "Your server currently allows file uploads: {$allowFileUploads}" - -msgid "installer.maxFileUploadSize" -msgstr "Your server currently allows a maximum file upload size of: {$maxFileUploadSize}" - -msgid "installer.localeInstructions" -msgstr "Η κύρια γλώσσα για χρήση από το συγκεκριμένο σύστημα. Ανατρέξτε στα έγγραφα τεκμηρίωσης του OMP, εάν επιθυμείτε να υποστηρίξετε γλώσσες που δεν περιλαμβάνονται εδώ." - -msgid "installer.additionalLocalesInstructions" -msgstr "Επιλογή άλλων πρόσθετων γλωσσών για υποστήριξη στο συγκεκριμένο σύστημα. Οι γλώσσες αυτές θα είναι διαθέσιμες για χρήση από εκδόσεις που φιλοξενούνται στον ιστότοπο. Πρόσθετες γλώσσες μπορούν να εγκαταστασθούν ανά πάσα στιγμή από τη διεπαφή διαχείρισης. Γλώσσες που μαρκάρονται με * ίσως να μην είναι ολοκληρωμένες." - -msgid "installer.filesDirInstructions" -msgstr "Enter full pathname to an existing directory where uploaded files are to be kept. This directory should not be directly web-accessible. Please ensure that this directory exists and is writable prior to installation. Windows path names should use forward slashes, e.g. \"C:/mypress/files\"." - -msgid "installer.databaseSettingsInstructions" -msgstr "OMP requires access to a SQL database to store its data. See the system requirements above for a list of supported databases. In the fields below, provide the settings to be used to connect to the database." - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

    IMPORTANT!

    \n" -"

    The installer could not automatically overwrite the configuration file. Before attempting to use the system, please open config.inc.php in a suitable text editor and replace its contents with the contents of the text field below.

    " - -msgid "installer.installationComplete" -msgstr "" -"

    Installation of OMP has completed successfully.

    \n" -"

    To begin using the system, login with the username and password entered on the previous page.

    \n" -"

    If you wish to receive news and updates, please register at http://pkp.sfu.ca/omp/register. If you have questions or comments, please visit the support forum.

    " - -msgid "installer.upgradeComplete" -msgstr "" -"

    Upgrade of OMP to version {$version} has completed successfully.

    \n" -"

    Don't forget to set the \"installed\" setting in your config.inc.php configuration file back to On.

    \n" -"

    If you haven't already registered and wish to receive news and updates, please register at http://pkp.sfu.ca/omp/register. If you have questions or comments, please visit the support forum.

    " - -msgid "log.review.reviewDueDateSet" -msgstr "Η ημερομηνία προθεσμίας για τον γύρο αξιολόγησης {$round} της υποβολής {$monographId} από τον/ην {$reviewerName} έχει οριστεί η {$dueDate}." - -msgid "log.review.reviewDeclined" -msgstr "Ο/Η {$reviewerName} έχει απορρίψει τον γύρο αξιολόγησης {$round} για την υποβολή {$monographId}." - -msgid "log.review.reviewAccepted" -msgstr "Ο/Η {$reviewerName} έχει αποδεχτεί τον γύρο αξιολόγησης {$round} για την υποβολή {$monographId}." - -msgid "log.review.reviewUnconsidered" -msgstr "Ο/Η {$editorName} έχει επισημάνει το αίτημα για το γύρο αξιολόγησης {$round} για την υποβολή {$monographId} ως ανεξέταστο." - -msgid "log.editor.decision" -msgstr "Μια απόφαση επιμελητή ({$decision}) για τη μονογραφία {$submissionId} καταγράφηκε από τον/ην {$editorName}." - -msgid "log.editor.archived" -msgstr "Η υποβολή {$monographId} αρχειοθετήθηκε." - -msgid "log.editor.restored" -msgstr "Η υποβολή {$monographId} επανατοποθετήθηκε στη σειρά αναμονής." - -msgid "log.editor.editorAssigned" -msgstr "Ο/Η {$editorName} έχει αναλάβει ως επιμελητής της υποβολής {$monographId}." - -msgid "log.editor.submissionExpedited" -msgstr "Ο/Η {$editorName} έχει επιταχύνει τη διαδικασία αξιολόγησης για τη μονογραφία {$monographId}." - -msgid "log.proofread.assign" -msgstr "Ο/Η{$assignerName} ανέθεσε στον/ην {$proofreaderName} την επιμέλεια του τυπογραφικού δοκιμίου της υποβολής {$monographId}." - -msgid "log.proofread.complete" -msgstr "Ο/Η {$proofreaderName} υπέβαλλε το {$monographId} για προγραμματισμό." - -msgid "log.imported" -msgstr "Ο/Η {$userName} έχει εισάγει τη μονογραφία {$monographId}." - -msgid "notification.addedIdentificationCode" -msgstr "Ο κωδικός ταυτοποίησης (Identification Code) έχει προστεθεί." - -msgid "notification.editedIdentificationCode" -msgstr "Ο κωδικός ταυτοποίησης (Identification Code) επεξεργάστηκε." - -msgid "notification.removedIdentificationCode" -msgstr "Ο κωδικός ταυτοποίησης (Identification Code) έχει αφαιρεθεί." - -msgid "notification.addedPublicationDate" -msgstr "Η ημερομηνία έκδοσης έχει προστεθεί." - -msgid "notification.editedPublicationDate" -msgstr "Η ημερομηνία έκδοσης έχει επεξεργαστεί." - -msgid "notification.removedPublicationDate" -msgstr "Η ημερομηνία έκδοσης έχει αφαιρεθεί." - -msgid "notification.addedPublicationFormat" -msgstr "Το μορφότυπο (Format) της έκδοσης έχει προστεθεί." - -msgid "notification.editedPublicationFormat" -msgstr "Το μορφότυπο (Format) της έκδοσης έχει επεξεργαστεί." - -msgid "notification.removedPublicationFormat" -msgstr "Το μορφότυπο (Format) της έκδοσης έχει αφαιρεθεί." - -msgid "notification.addedSalesRights" -msgstr "Τα Δικαιώματα Πώλησης έχουν προστεθεί." - -msgid "notification.editedSalesRights" -msgstr "Τα Δικαιώματα Πώλησης έχουν επεξεργαστεί." - -msgid "notification.removedSalesRights" -msgstr "Τα Δικαιώματα Πώλησης έχουν αφαιρεθεί." - -msgid "notification.addedRepresentative" -msgstr "Ο Αντιπρόσωπος έχει προστεθεί." - -msgid "notification.editedRepresentative" -msgstr "Ο Αντιπρόσωπος έχει επεξεργαστεί." - -msgid "notification.removedRepresentative" -msgstr "Ο Αντιπρόσωπος έχει αφαιρεθεί." - -msgid "notification.addedMarket" -msgstr "Η Αγορά έχει προστεθεί." - -msgid "notification.editedMarket" -msgstr "Τα στοιχεία της Αγοράς έχουν επεξεργαστεί." - -msgid "notification.removedMarket" -msgstr "Η Αγορά έχει αφαιρεθεί." - -msgid "notification.addedSpotlight" -msgstr "Η Βιτρίνα έχει προστεθεί." - -msgid "notification.editedSpotlight" -msgstr "Η Βιτρίνα έχει επεξεργαστεί." - -msgid "notification.removedSpotlight" -msgstr "Η Βιτρίνα έχει αφαιρεθεί." - -msgid "notification.savedCatalogMetadata" -msgstr "Τα μεταδεδομένα του Καταλόγου έχουν αποθηκευτεί." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Τα μεταδεδομένα του μορφότυπου της έκδοσης έχουν αποθηκευτεί." - -msgid "notification.proofsApproved" -msgstr "Το Τυπογραφικό δοκίμιο έχει εγκριθεί." - -msgid "notification.removedSubmission" -msgstr "Η Υποβολή έχει διαγραφεί." - -msgid "notification.type.submissionSubmitted" -msgstr "Μια νέα μονογραφία, \"{$title},\" έχει υποβληθεί." - -msgid "notification.type.editing" -msgstr "Διόρθωση Γεγονότων" - -msgid "notification.type.metadataModified" -msgstr "Τα μεταδεδομένα του \"{$title}\" έχουν μεταβληθεί." - -msgid "notification.type.reviewerComment" -msgstr "Ένας Αξιολογητής έχει σχολιάσει το \"{$title}\"." - -msgid "notification.type.reviewing" -msgstr "Γεγονότα Αξιολόγησης" - -msgid "notification.type.site" -msgstr "Γεγονότα Ιστοτόπου" - -msgid "notification.type.submissions" -msgstr "Γεγονότα Υποβολής" - -msgid "notification.type.userComment" -msgstr "Ένας αναγνώστης έχει κάνει ένα σχόλιο για το \"{$title}\"." - -msgid "notification.type.editorAssignmentTask" -msgstr "Μία νέα μονογραφία έχει υποβληθεί και έιναι απαραίτητο να ανατεθεί σε έναν επιμελητή." - -msgid "notification.type.copyeditorRequest" -msgstr "Έχετε κληθεί να θεωρήσετε την επιμέλεια κειμένων για το \"{$file}\"." - -msgid "notification.type.layouteditorRequest" -msgstr "Έχετε κληθεί να θεωρήσετε την επιμέλεια σελιδοποίησης για το \"{$title}\"." - -msgid "notification.type.indexRequest" -msgstr "Έχετε κληθεί να ευρετηριάσετε το \"{$title}\"." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Η διαδικασία εσωτερικής αξιολόγησης έχει ξεκινήσει." - -msgid "notification.type.approveSubmission" -msgstr "Αυτή η υποβολή αναμένει πρόσφατα για Καταχώριση στον Κατάλογο πριν αυτή εμφανιστεί δημόσια στον κατάλογο." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Εν αναμονή έγκρισης." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Καμία μέθοδος πληρωμής εισφορών δεν έχει ρυθμιστεί." - -msgid "notification.type.configurePaymentMethod" -msgstr "Μία διαμορφωμένη μέθοδος πληρωμής εισφορών απαιτείται πριν είστε σε θέση να καθορίσετε τις ρυθμίσεις για ηλεκτρονικό εμπόριο (e-commerce)." - -msgid "notification.type.visitCatalogTitle" -msgstr "Διαχείριση Καταλόγου" - -msgid "user.authorization.invalidReviewAssignment" -msgstr "Η πρόσβαση δεν είναι δυνατή επειδή δεν φαίνεται να είστε έγκυρος ως αναθεωρητής για αυτή τη μονογραφία." - -msgid "user.authorization.monographAuthor" -msgstr "Η πρόσβαση δεν είναι δυνατή επειδή δεν φαίνεται να είστε ο συγγραφέας για αυτή τη μονογραφία." - -msgid "user.authorization.monographReviewer" -msgstr "Η πρόσβαση δεν είναι δυνατή επειδή δεν φαίνεται να σας έχει ανατεθεί η αξιολόγηση για αυτή τη μονογραφία." - -msgid "user.authorization.monographFile" -msgstr "Έχετε απαγορεύσει την πρόσβαση στο συγκεκριμένο αρχείο της μονογραφίας." - -msgid "user.authorization.invalidMonograph" -msgstr "Μη έγκυρη μονογραφία ή δεν έχει ζητηθεί η μονογραφία!" - -msgid "user.authorization.seriesAssignment" -msgstr "Προσπαθείτε να αποκτήσετε πρόσβαση σε μια μονογραφία που δεν είναι μέρος της σειράς που επιμελείστε." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Η πρόσβαση δεν είναι δυνατή! Δεν έχετε ανάθεση σε αυτό το στάδιο της ροής εργασιών." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "Η πρόσβαση δεν είναι δυνατή! Η ομάδα χρηστών που πρόσφατα ενεργείτε μέσω αυτής δεν έχει ζητηθεί σε αυτό το στάδιο ροής εργασιών. Παρακαλούμε ελέγξτε τις ρυθμίσεις των εκδόσεων." - -msgid "payment.directSales" -msgstr "Λήψη αρχείου (Download) από τον Ιστότοπο των Εκδόσεων" - -msgid "payment.directSales.price" -msgstr "Τιμή" - -msgid "payment.directSales.availability" -msgstr "Διαθεσιμότητα" - -msgid "payment.directSales.catalog" -msgstr "Κατάλογος" - -msgid "payment.directSales.approved" -msgstr "Έχει εγκριθεί" - -msgid "payment.directSales.priceCurrency" -msgstr "Τιμή ({$currency})" - -msgid "payment.directSales.directSales" -msgstr "Άμεσες Πωλήσεις" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.notAvailable" -msgstr "Δεν είναι δυνατή η λήψη του αρχείου" - -msgid "payment.directSales.openAccess" -msgstr "Ανοικτή Πρόσβαση" - -msgid "payment.directSales.price.description" -msgstr "Τα μορφότυπα των αρχείων μπορεί να είναι διαθέσιμα για λήψη από τον ιστότοπο των εκδόσεων μέσω ανοικτής πρόσβασης χωρίς κόστος για τους αναγνώστες ή χωρίς άμεσες πωλήσεις (χρησιμοποιόντας μια online μέθοδο πληρωμής, όπως έχει ρυθμιστεί στη Διανομή). Για το αρχείο αυτό υποδείξτε την αρχή πρόσβασης." - -msgid "payment.directSales.validPriceRequired" -msgstr "Απαιτείται ένας έγκυρος αριθμός τιμής." - -msgid "payment.directSales.purchase" -msgstr "Αγορά ({$amount} {$currency})" - -msgid "payment.directSales.download" -msgstr "Κατέβασμα" - -msgid "payment.directSales.monograph.name" -msgstr "Αγορά Λήψης Αρχείου Μονογραφίας ή Κεφαλαίου" - -msgid "payment.directSales.monograph.description" -msgstr "Αυτή η συναλλαγή αφορά την αγορά άμεσης λήψης μιας μονογραφίας ή ενός κεφαλαίου μιας μονογραφίας." - -msgid "debug.notes.helpMappingLoad" -msgstr "Η επαναφόρτωση XML βοηθάει τη χαρτογράφηση του αρχείου {$filename} για την αναζήτηση {$id}." - -msgid "submission.round" -msgstr "Γύρος {$round}" diff --git a/locale/el_GR/manager.po b/locale/el_GR/manager.po deleted file mode 100644 index c18d9ecfc22..00000000000 --- a/locale/el_GR/manager.po +++ /dev/null @@ -1,921 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" -"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" -"Language: \n" - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "Αυτό θα αντικαταστήσει όλες τις παραμέτρους τοπικής ρύθμισης που είχατε ορίσει για την έκδοση σας" - -msgid "manager.languages.languageInstructions" -msgstr "Το OMP είναι διαθέσιμο στους χρήστες σε όλες τις υποστηριζόμενες γλώσσες. Επίσης το OMP μπορεί να λειτουργήσει ως ένα εν μέρει πολυγλωσσικό σύστημα, που παρέχει στους χρήστες τη δυνατότητα να αλλάζουν γλώσσες σε κάθε σελίδα και, επίσης, επιτρέπει τη δυνατότητα καταχώρισης ορισμένων δεδομένων σε δύο πρόσθετες γλώσσες.

    Εάν μια γλώσσα που υποστηρίζεται από το OMP δεν εμφανίζεται παρακάτω, απευθυνθείτε στον διαχειριστή του ιστοτόπου για να εγκαταστήσει τη γλώσσα από τη διεπαφή διαχείρισης του ιστοτόπου. Για οδηγίες σχετικά με την προσθήκη υποστήριξης για νέες γλώσσες, ανατρέξτε τα έγγραφα τεκμηρίωσης του OMP." - -msgid "manager.languages.noneAvailable" -msgstr "Συγνώμη, καμία πρόσθετη γλώσσα δεν είναι διαθέσιμη. Επικοινωνήστε με τον διαχειριστή του ιστοτόπου, σε περίπτωση που επιθυμείτε να χρησιμοποιήσετε πρόσθετες γλώσσες για την έκδοση αυτή." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Αυτή είναι η προεπιλεγμένη γλώσσα για τον ιστότοπο της έκδοσης." - -msgid "manager.series.form.mustAllowPermission" -msgstr "Παρακαλούμε σιγουρευτείτε ότι τουλάχιστον ένα checkbox έχει τσεκαριστεί για κάθε ανάθεση Επιμελητή Σειράς." - -msgid "manager.series.form.reviewFormId" -msgstr "Παρακαλούμε σιγουρευτείτε ότι έχετε επιλέξει μια έγκυρη φόρμα αξιολόγησης." - -msgid "manager.series.submissionIndexing" -msgstr "Δεν θα συμπεριληφθούν στην ευρετηρίαση του βιβλίου" - -msgid "manager.series.editorRestriction" -msgstr "Αντικείμενα (Items) μπορούν να υποβληθούν μόνο από τους Επιμελητές Έκδοσης (Editors) και τους Επιμελητές Σειράς." - -msgid "manager.series.confirmDelete" -msgstr "Είστε βέβαιοι ότι επιθυμείτε να διαγράψετε αυτή τη σειρά?" - -msgid "manager.series.indexed" -msgstr "Έχει ευρετηριατεί" - -msgid "manager.series.open" -msgstr "Ανοικτές υποβολές" - -msgid "manager.series.readingTools" -msgstr "Εργαλεία Ανάγνωσης" - -msgid "manager.series.submissionReview" -msgstr "Δεν πραγματοποιείται αξιολόγηση από ομότιμους αξιολογητές" - -msgid "manager.series.submissionsToThisSection" -msgstr "Υποβολές στη συγκεκριμένη σειρά" - -msgid "manager.series.abstractsNotRequired" -msgstr "Δεν απαιτείτε περιλείψεις" - -msgid "manager.series.disableComments" -msgstr "Απενεργοποιήστε τα σχόλεια αναγνωστών για αυτή τη σειρά." - -msgid "manager.series.book" -msgstr "Σειρά Βιβλίων" - -msgid "manager.series.create" -msgstr "Δημιουργία Σειράς" - -msgid "manager.series.policy" -msgstr "Περιγραφή Σειράς" - -msgid "manager.series.assigned" -msgstr "Επιμελητές γι' αυτή τη σειρά" - -msgid "manager.series.seriesEditorInstructions" -msgstr "Προσθέστε έναν Επιμελητή Σειράς για αυτή τη σειρά από τους διαθέσιμους Επιμελητές Σειράς. Μόλις προστεθεί, ορίσετε αν ο Επιμελεητής Σειράς θα επιβλέπει τη διαδικασία ΑΞΙΟΛΟΓΗΣΗΣ (peer review) και/ η τη διαδικασία ΣΥΝΤΑΞΗΣ (επιμέλεια κειμένων, σελιδοποίηση και τυπογραφικά δοκίμια) των υποβολών της συγκεκριμένης Σειράς. Οι Επιμελητές Σειρών δημιουργούνται επιλέγοντας Επιμελητές Σειράς κάτω από το Ρόλοι στην σελίδα του Διαχειριστή της Έκδοσης." - -msgid "manager.series.hideAbout" -msgstr "Απόκτυψη αυτής της σειράς από το μενού Σχετικά με την Έκδοση." - -msgid "manager.series.unassigned" -msgstr "Διαθέσιμοι Επιμελητές Σειράς" - -msgid "manager.series.form.abbrevRequired" -msgstr "Απαιτείται συντομογραφία τίτλου για τη Σειρά." - -msgid "manager.series.form.titleRequired" -msgstr "Ένας τίτλος απαιτείται για τη σειρά." - -msgid "manager.series.noneCreated" -msgstr "Καμία σειρά δεν έχει δημιουργηθεί." - -msgid "manager.series.existingUsers" -msgstr "Υπάρχοντες χρήστες" - -msgid "manager.series.seriesTitle" -msgstr "Τίλτος Σειράς" - -msgid "manager.series.noSeriesEditors" -msgstr "Δεν υπάρχουν επιμελητές σειράς ακόμη. Προσθέστε σε αυτό τον ρόλο τουλάχιστον ένα χρήστη από το Διαχείριση > Ρυθμίσεις > Χρήστες & Ρόλοι." - -msgid "manager.series.noCategories" -msgstr "Δεν έχουν οριστεί κατηγορίες ακόμη. Εάν επιθυμείτε να εντάξετε αυτή τη σειρά σε κατηγορίες, κλείστε αυτή τη λειτουργία και επιλέξτε την καρτέλα 'Κατηγορίες' και δημιουργείστε μία πρώτα." - -msgid "manager.settings" -msgstr "Ρυθμίσεις" - -msgid "manager.settings.pressSettings" -msgstr "Ρυθμίσεις Έκδοσης" - -msgid "manager.settings.press" -msgstr "Εκδόσεις" - -msgid "manager.settings.publisher.identity.description" -msgstr "Αυτά τα πεδία δεν είναι απαραίτητα για τη γενική χρήση του OMP, αλλά απαιτούνται για τη δημιουργία έγκυρων ONIX μεταδεδομένων. Παρακαλούμε να τα συμπεριλάβετε αν επιθυμείτε να επιτύχετε τη λειτουργικότητα των ΟΝΙΧ." - -msgid "manager.settings.publisher" -msgstr "Όνομα Εκδότη(Press Publisher Name)" - -msgid "manager.settings.location" -msgstr "Γεωγραφική Τοποθεσία" - -msgid "manager.settings.publisherCode" -msgstr "Κώδικας Εκδότη" - -msgid "manager.settings.distributionDescription" -msgstr "Όλες οι ρυθμίσεις σχετικά με τις διαδικασίες διανομής των εκδόσεων (κοινοποίηση, ευρετηρίαση, αρχειοθέτηση, πληρωμές, εργαλεία ανάγνωσης)." - -msgid "manager.tools" -msgstr "Εργαλεία" - -msgid "manager.tools.importExport" -msgstr "Όλα τα εργαλεία σχετικά με την εισαγωγή και εξαγωγή δεδομένων (εκδόσεις, μονογραφίες, χρήστες)" - -msgid "manager.users.availableRoles" -msgstr "Διαθέσιμοι Ρόλοι" - -msgid "manager.users.currentRoles" -msgstr "Τρέχον Ρόλοι" - -msgid "manager.users.selectRole" -msgstr "Επιλέξτε Ρόλο" - -msgid "manager.people.allPresses" -msgstr "Όλες οι εκδόσεις" - -msgid "manager.people.allSiteUsers" -msgstr "Ανάθεση ρόλου σε χρήστη του ιστοτόπου για αυτή την Έκδοση" - -msgid "manager.people.allUsers" -msgstr "Όλοι οι Χρήστες" - -msgid "manager.people.confirmRemove" -msgstr "Κατάργηση του χρήστη από την έκδοση αυτή; Η συγκεκριμένη ενέργεια θα καταργήσει όλες τις αναθέσεις ρόλων στον χρήστη στο πλαίσιο αυτής της Έκδοσης." - -msgid "manager.people.enrollExistingUser" -msgstr "Ανάθεση ρόλου σε υπάρχον χρήστη" - -msgid "manager.people.existingUserRequired" -msgstr "Ένας υπάρχον χρήστης πρέπει να εισαχθεί." - -msgid "manager.people.enrollSyncPress" -msgstr "Με τις Εκδόσεις" - -msgid "manager.people.mergeUsers.from.description" -msgstr "Επιλέξτε τον χρήστη για συγχώνευση σε λογαριασμό άλλου χρήστη (π.χ., σε περίπτωση όπου ένας χρήστης έχει δύο λογαριασμούς). Ο λογαριασμός που επιλέγεται πρώτος θα διαγραφεί καθώς και οι υποβολές, οι αναθέσεις, κτλ. που έχουν γίνει σε αυτόν και θα αποδοθούν στον δεύτερο λογαριασμό." - -msgid "manager.people.mergeUsers.into.description" -msgstr "Επιλέξτε χρήστη στον οποίο θα αποδοθούν οι προηγούμενες εργασίες συγγραφής, αναθέσεις επιμέλειας, κτλ. του χρήστη." - -msgid "manager.people.syncUserDescription" -msgstr "Ο συγχρονισμός ανάθεσης ρόλων πραγματοποιεί εγγραφή όλων των χρηστών με καθορισμένο ρόλο σε κάποια άλλη έκδοση με τον ίδιο ρόλο στην εν λόγω έκδοση.Η λειτουργία αυτή επιτρέπει σε κοινό σύνολο χρηστών (π.χ., Αξιολογητές) να είναι συγχρονισμένοι σε διάφορες εκδόσεις που φιλοξενούνται." - -msgid "manager.people.confirmDisable" -msgstr "Απενεργοποίηση αυτού του χρήστη? Αυτή η ενέργεια θα εμποδίσει τον χρήστη να εισαχθεί στο σύστημα. Μπορείτε προεραιτικά να παρέχετε στον χρήστη ένα λόγο για την απενεργοποίηση των λογαριασμών του." - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Συγνώμη, δεν έχετε δικαιώματα διαχείρισης σε αυτόν τον χρήστη. Αυτό μπορεί να συμβαίνει επειδή:\n" -"\t\t
      \n" -"\t\t\t
    • Ο χρήστης είναι ο διαχειριστής του ιστοτόπου
    • \n" -"\t\t\t
    • Ο χρήστης είναι ενεργός σε εκδόσεις που δεν διευθύνετε
    • \n" -"\t\t
    \n" -"\tΑυτή η εργασία εκτελείτε από έναν διαχειριστή του ιστοτόπου/υπηρεσίας." - -msgid "settings.roles.gridDescription" -msgstr "Οι Ρόλοι αποτελούν τις ομάδες χρηστών μιας έκδοσης που έχουν πρόσβαση σε διαφορετικά επίπεδα αδειών και σχετικών εργασιών κατά την εκδοτική διαδικασία. Υπάρχουν πέντε διαφορετικά επίπεδα αδειών: οι Διαχειριστές των Εκδόσεων έχουν πρόσβαση σε όλες τις λειτουργίες και εργασίες των εκδόσεων (περιεχόμενο και ρυθμίσεις), οι Επιμελητές Έκδοσης (Press Editors) έχουν πρόσβαση σε όλο το περιεχόμενο της σειράς που επιμελούνται, οι Βοηθοί Έκδοσης έχουν πρόσβαση σε όλες τις μονογραφίες που τους έχουν ανατεθεί από έναν επιμελητή, οι Αξιολογητές μπορούν να δούν και να πραγματοποιήσουν τις αξιολογήσεις που του έχουν ανατεθεί και οι Συγγραφείς μπορούν να δούν και να αλληλεπιδρούν με περιορισμένο αριθμό πληροφοριών σχετικά με την πορεία της υποβολή τους. Επιπρόσθετα, υπάρχουν πέντε διαφορετικά στάδια αναθέσεων στα οποία οι ρόλοι χρηστών μπορεί να έχουν πρόσβαση: Υποβολή, Εσωτερική Αξιολόγηση, Εξωτερική Αξιολόγηση, Σύνταξη και Παραγωγή." - -msgid "manager.system" -msgstr "Ρυθμίσεις Συστήματος" - -msgid "manager.system.archiving" -msgstr "Αρχειοθέτηση" - -msgid "manager.system.reviewForms" -msgstr "Φόρμες Αξιολόγησης" - -msgid "manager.system.readingTools" -msgstr "Εργαλεία Ανάγνωσης" - -msgid "manager.system.payments" -msgstr "Πληρωμές" - -msgid "manager.pressManagement" -msgstr "Διαχείριση Εκδόσεων" - -msgid "manager.setup" -msgstr "Οργάνωση" - -msgid "manager.setup.aboutItemContent" -msgstr "Περιεχόμενο" - -msgid "manager.setup.addAboutItem" -msgstr "Προσθήκη Κατηγορίας στο Σχετικά" - -msgid "manager.setup.addChecklistItem" -msgstr "Προσθήκη πεδίου στην Λίστα Ελέγχου" - -msgid "manager.setup.addContributor" -msgstr "Προσθήκη Συντελεστή" - -msgid "manager.setup.addItem" -msgstr "Προσθήκη πεδίου" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Προσθήκη κατηγορίας στο πεδίο \"Σχετικά με τις εκδόσεις\"" - -msgid "manager.setup.additionalContent" -msgstr "Πρόσθετο περιεχόμενο" - -msgid "manager.setup.additionalContentDescription" -msgstr "Εισάγετε στο παρακάτω πεδίο το κείμενο που επιθυμείτε με τη μορφή απλού κειμένου ή HTML κώδικα και το οποίο θα εμφανίζεται κάτω από την εικόνα της αρχικής σελίδας, σε περίπτωση που έχει ήδη φορτωθεί κάποια." - -msgid "manager.setup.addNavItem" -msgstr "Προσθήκη πεδίου" - -msgid "manager.setup.addSponsor" -msgstr "Προσθήκη οργανισμού χορηγίας" - -msgid "manager.setup.alternateHeader" -msgstr "Εναλλακτική κεφαλίδα" - -msgid "manager.setup.alternateHeaderDescription" -msgstr "Εναλλακτικά, αντί του τίτλου και του λογοτύπου, μια HTML έκδοση της κεφαλίδας μπορεί να τοποθετηθεί στο παρακάτω πλαίσιο κειμένου. Εάν δεν είναι απαραίτητο, αφήστε κενό το πλαίσιο κειμένου." - -msgid "manager.setup.announcements" -msgstr "Ανακοινώσεις" - -msgid "manager.setup.announcementsDescription" -msgstr "Οι ανακοινώσεις μπορούν να δημοσιεύονται για πληροφόρηση των αναγνωστών σχετικά με ειδήσεις και εκδηλώσεις των εκδόσεων. Οι δημοσιευμένες ανακοινώσεις εμφανίζονται στη σελίδα «Ανακοινώσεις»." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Πρόσθετες πληροφορίες" - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "Εισάγετε όλες τις πρόσθετες πληροφορίες που θέλετε να εμφανίζονται στους αναγνώστες στη σελίδα «Ανακοινώσεις»." - -msgid "manager.setup.appearInAboutPress" -msgstr "(Για να εμφανίζεται στο μενού «Σχετικά με τις εκδόσεις»)" - -msgid "manager.setup.authorCopyrightNotice" -msgstr "Δήλωση για τα πνευματικά δικαιώματα" - -msgid "manager.setup.authorCopyrightNoticeAgree" -msgstr "Απαιτείται η συμφωνία των συγγραφέων με τη Δήλωση για τα πνευματικά δικαιώματα, ως μέρος της διαδικασίας υποβολής." - -msgid "manager.setup.authorCopyrightNotice.description" -msgstr "Η συγκεκριμένη δήλωση για τα πνευματικά δικαιώματα εμφανίζεται στο μενού «Σχετικά με τις εκδόσεις» και σε κάθε δημοσιευμένο μεταδεδομένο του τεκμηρίου. Αν και εναπόκειται στις Εκδόσεις να καθορίσουν τη φύση της συμφωνίας περί πνευματικών δικαιωμάτων με τους συγγραφείς, το Public Knowledge Project συνιστά τη χρήση των Creative Commons αδειών. Για το σκοπό αυτό, παρέχει έναδείγμα σημιώματος Πνευματικών Δικαιωμάτων το οποίο μπορείτε να κάνετε αποκοπή και επικόλληση στο παρακάτω χώρο για τις εκδόσεις που α) παρέχουν ανοικτή πρόσβαση, β) παρέχουν καθυστερημένη πρόσβαση (delayed open access), ή γ) δεν παρέχουν ανοικτή πρόσβαση." - -msgid "manager.setup.authorGuidelines.description" -msgstr "Διατύπωση προτύπων βιλιογραφίας και μορφοποίησης για συγγραφείς, που χρησιμοποιούνται για τεκμήρια που υποβάλλονται στις εκδόσεις (π.χ., Εγχειρίδιο έκδοσης της Αμερικανικής Ένωσης Ψυχολόγων (American Psychological Association), 5η έκδοση, 2001). Ιδιαίτερα βοηθητική είναι η παροχή παραδειγμάτων κοινών μορφών αναφορών και μορφοποίησης για εκδόσεις και βιβλία που πρέπει να χρησιμοποιούνται στις υποβολές." - -msgid "manager.setup.contributor" -msgstr "Συντελεστής" - -msgid "manager.setup.contributors" -msgstr "Πηγές Υποστήριξης" - -msgid "manager.setup.contributors.description" -msgstr "Πρόσθετοι παράγοντες ή οργανισμοί που παρέχουν οικονομική ή παρεμφερή υποστήριξη για τις εκδόσεις εμφανίζονται στο πεδίο Σχετικά με τις Εκδόσεις και ενδέχεται να συνοδεύονται και από ευχαριστήριο σημείωμα." - -msgid "manager.setup.copyediting" -msgstr "Επιμελητές κειμένων" - -msgid "manager.setup.copyeditInstructions" -msgstr "Οδηγίες επιμέλειας κειμένων" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "Οι Οδηγίες επιμέλειας των κειμένων είναι διαθέσιμες για τους Επιμελητές κειμένων, τους Συγγραφείς και τους Επιμελητές ενοτήτων στο στάδιο της επιμέλειας της υποβολής. Παρακάτω θα βρείτε σε μορφή HTML σετ οδηγιών πο μπορούν να τροποποιηθούν ή να αντικατασταθούν από τον Διαχειριστή των Εκδόσεων ανά πάσα στιγμή (σε μορφή HTML ή απλού κειμένου)." - -msgid "manager.setup.copyrightNotice" -msgstr "Δήλωση Πνευματικών Δικαιωμάτων" - -msgid "manager.setup.coverage" -msgstr "Κάλυψη" - -msgid "manager.setup.customizingTheLook" -msgstr "Βήμα 5. Διαμόρφωση της όψης των εκδόσεων" - -msgid "manager.setup.customTags" -msgstr "Ειδικά προσαρμοσμένες ετικέτες" - -msgid "manager.setup.customTagsDescription" -msgstr "Ειδικά προσαρμοσμένες ετικέτες κεφαλίδας HTML που προορίζονται για προσθήκη στην κεφαλίδα κάθε σελίδας (π.χ., ετικέτες META)." - -msgid "manager.setup.details" -msgstr "Λεπτομέρειες" - -msgid "manager.setup.details.description" -msgstr "Όνομα εκδόσεων, υπεύθυνοι επικοινωνίας, χορηγοί, και μηχανές αναζήτησης." - -msgid "manager.setup.disableUserRegistration" -msgstr "Ο Διαχειριστής των Εκδόσεων εγγράφει όλους τους χρήστες, με τους Επιμελητές ή τους Επιμελητές Σειρών να εγγράφουν μόνο τους αξιολογητές." - -msgid "manager.setup.discipline" -msgstr "Επιστημονικά θεματικά πεδία και υπο-πεδία" - -msgid "manager.setup.disciplineDescription" -msgstr "Χρήσιμα όταν οι εκδόσεις δημοσιεύουν ή/και οι συγγραφείς υποβάλλουν τεκμήρια που καλύπτουν περισσότερα του ενός επιστομηνικά πεδία" - -msgid "manager.setup.disciplineExamples" -msgstr "(Π.χ., Ιστορία; Εκπαίδευση; Κοινωνιολογία; Ψυχολογία; Πολιτισμικές Σπουδές; Δίκαιο κτλ.)" - -msgid "manager.setup.disciplineProvideExamples" -msgstr "Παραθέστε μερικά παραδείγματα σχετικών επιστημονικών κλάδων για τη συγκεκριμένη έκδοση." - -msgid "manager.setup.displayCurrentMonograph" -msgstr "Προσθέστε πίνακα των περιεχομένων για την τρέχουσα μονογραφία (αν είναι διαθέσιμος)." - -msgid "manager.setup.doiPrefix" -msgstr "Πρόθημα DOI (DOI Prefix)" - -msgid "manager.setup.doiPrefixDescription" -msgstr "Το πρόθημα DOI (Αναγνωριστικό Ψηφιακού Αντικειμένου) ανατίθεται από CrossRef και βρίσκεται σε μορφή 10.xxxx (π.χ. 10.1234)." - -msgid "manager.setup.editorDecision" -msgstr "Απόφαση επιμελητή" - -msgid "manager.setup.emailBounceAddress" -msgstr "Διεύθυνση επιστροφής σε αποστολέα" - -msgid "manager.setup.emailBounceAddress.description" -msgstr "Όλα τα μηνύματα ηλεκτρονικού ταχυδρομείου που δεν παραδόθηκαν επιτυχώς θα έχουν ως αποτέλεσμα μήνυμα σφάλματος στη συγκεκριμένη διεύθυνση." - -msgid "manager.setup.emails" -msgstr "Αναγνώριση διεύθυνσης ηλεκτρονικού ταχυδρομείου" - -msgid "manager.setup.emailSignature" -msgstr "Υπογραφή" - -msgid "manager.setup.emailSignatureDescription" -msgstr "Τα έτοιμα μηνύματα ηλεκτρονικού ταχυδρομείου που αποστέλλονται μέσω του συστήματος για λογαριασμό των εκδόσεων θα φέρουν την ακόλουθη υπογραφή στο τέλος τους. Το κύριο σώμα των μηνυμάτων είναι διαθέσιμο για επεξεργασία παρακάτω." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Ενεργοποίηση δυνατότητας προσθήκης ανακοινώσεων από τους Διαχειριστές των εκδόσεων." - -msgid "manager.setup.enablePressInstructions" -msgstr "Ενεργοποίηση της εμφάνισης των Εκδόσεων στον ιστότοπο" - -msgid "manager.setup.enablePublicMonographId" -msgstr "Θα χρησιμοποιηθούν προσαρμοσμένα αναγνωριστικά για την αναγνώριση των δημοσιευμένων τεκμηρίων." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "Θα χρησιμοποιηθούν προσαρμοσμένα αναγνωριστικά για τις σελιδοποιημένες μορφές (πχ. αρχεία HTML η PDF) των δημοσιευμένων τεκμηρίων." - -msgid "manager.setup.focusAndScope" -msgstr "Πεδίο και περιεχόμενο" - -msgid "manager.setup.focusAndScope.description" -msgstr "Εισαγάγετε δήλωση παρακάτω, η οποία εμφανίζεται στο πεδίο Σχετικά με τις Εκδόσεις και αναφέρεται σε συγγραφείς, αναγνώστες και βιβλιοθηκονόμους σχετικά με το εύρος των μονογραφιών και των λοιπών τεκμηρίων που πρόκειται να δημοσιεύσουν οι εκδόσεις." - -msgid "manager.setup.focusScope" -msgstr "Πεδίο και περιεχόμενο" - -msgid "manager.setup.focusScopeDescription" -msgstr "ΠΑΡΑΔΕΙΓΜΑ ΔΕΔΟΜΕΝΩΝ ΣΕ ΜΟΡΦΗ HTML" - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "Οδηγίες προς τους συγγραφείς για την ευρετηρίαση του έργου τους" - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "Το OMP υλοποιεί το πρωτόκολλο Open Archives Initiative Protocol for Metadata Harvesting, που αποτελεί διεθνώς αποδεκτό πρότυπο για παροχή πρόσβασης μέσω ορθής ευρετηρίασης σε διεθνείς ηλεκτρονικές πηγές αναζήτησης. Οι συγγραφείς θα χρησιμοποιήσουν παρόμοιο πρότυπο για παροχή μεταδεδομένων για το έργο τους κατά την διάρκεια της υποβολή του. Ο Διαχειριστής των Εκδόσεων πρέπει να επιλέξει τις κατηγορίες για ευρετηρίαση και να παρουσιάσει στους συγγραφείς σχετικά παραδείγματα για να τους βοηθήσει στην ευρετηρίαση του έργου τους, διαχωρίζοντας τους όρους με ελληνικό ερωτηματικό (πχ., όρος1; όρος2;). Οι καταχωρίσεις πρέπει να εισάγονται ως παραδείγματα χρησιμοποιώντας \"πχ.,\" ή \"Για παράδειγμα,\"." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Απαιτείται η διεύθυνση ηλεκτρονικού ταχυδρομείου του κύριου υπεύθυνου επικοινωνίας." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Απαιτείται το όνομα του κύριου υπεύθυνου επικοινωνίας." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Απαιτείται ο αριθμός των αξιολογητών ανά υποβολή." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Απαιτείται η διεύθυνση ηλεκτρονικού ταχυδρομείου του υπεύθυνου τεχνικής υποστήριξης." - -msgid "manager.setup.form.supportNameRequired" -msgstr "Απαιτείται το κύριο όνομα του υπεύθυνου τεχνικής υποστήριξης." - -msgid "manager.setup.generalInformation" -msgstr "Γενικές Πληροφορίες" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Βήμα 1. Λεπτομέρειες" - -msgid "manager.setup.guidelines" -msgstr "Κατευθυντήριες γραμμές" - -msgid "manager.setup.preparingWorkflow" -msgstr "Βήμα 3. Προετοιμασία της ροής των εργασιών" - -msgid "manager.setup.homepageImage" -msgstr "Εικόνα αρχικής σελίδας" - -msgid "manager.setup.homepageImageDescription" -msgstr "Προσθήκη εικόνας ή αρχείου γραφικών στο μέσο της σελίδας. Εάν χρησιμοποιείτε το προεπιλεγμένο πρότυπο και css, το μέγιστο πλάτος της εικόνας θα είναι 750px για το πρώτο πλαίσιο και 540px για το δεύτερο. Εάν χρησιμοποιείτε ένα προσαρμοσμένο πρότυπο ή css, οι τιμές αυτές μπορεί να αλλάξουν." - -msgid "manager.setup.information.description" -msgstr "Σύντομες περιγραφές των εκδόσεων για τους βιβλιοθηκονόμους, τους πιθανούς συγγραφείς και τους αναγνώστες είναι διαθέσιμες στην ενότητα “Πληροφορίες” στην δεξιά πλαϊνή μπάρα της ιστοσελίδας." - -msgid "manager.setup.information.forAuthors" -msgstr "Για Συγγραφείς" - -msgid "manager.setup.information.forLibrarians" -msgstr "Για Βιβλιοθηκονόμους" - -msgid "manager.setup.information.forReaders" -msgstr "Για Αναγνώστες" - -msgid "manager.setup.institution" -msgstr "Ίδρυμα" - -msgid "manager.setup.labelName" -msgstr "Όνομα Πεδίου" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Επιμελητές Σελιδοποίησης" - -msgid "manager.setup.layoutInstructions" -msgstr "Οδηγίες Σελιδοποίησης" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "Οι οδηγίες σελιδοποίησης μπορούν να καθοριστούν για την κατάλληλη μορφοποίηση των τεκμηρίων των εκδόσεων και μπορούν να καταχωρηθούν παρακάτω σε μορφή HTML ή σε απλή μορφή κειμένου. Θα είναι διαθέσιμες στον Επιμελητή σελιδοποίησης και τον Επιμελητή ενότητας στη σελίδα «Επιμέλειας» κάθε υποβολής. (Εφόσον κάθε έκδοση μπορεί να έχει τις δικές της μορφές αρχείου, βιβλιογραφικά πρότυπα, φύλλα στυλ, κτλ., δεν παρέχεται προεπιλεγμένο σετ οδηγιών.)" - -msgid "manager.setup.layoutTemplates" -msgstr "Πρότυπα Σελιδοποίησης" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "Πρότυπα σελιδοποίησης μπορούν να φορτωθούν για να εμφανίζονται στη \"Σελιδοποίηση\" για καθεμία από τις πρότυπες μορφές που δημοσιεύονται στις εκδόσεις (π.χ., μονογραφία, αναθεώρηση βιβλίου, κλπ.) χρησιμοποιώντας οποιαδήποτε μορφή αρχείου (π.χ., pdf, doc, κτλ.) με πρόσθετους σχολιασμούς που καθορίζουν τη γραμματοσειρά, το μέγεθος, το περιθώριο, κτλ. για να χρησιμοποιηθούν ως οδηγός για τους Επιμελητές Σελιδοποίησης και τους Επιμελητές των Τυπογραφικών Δοκιμίων." - -msgid "manager.setup.layoutTemplates.file" -msgstr "Αρχείο προτύπου" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Τίτλος" - -msgid "manager.setup.lists" -msgstr "Λίστες" - -msgid "manager.setup.look" -msgstr "Όψη Εκδόσεων" - -msgid "manager.setup.look.description" -msgstr "Κεφαλίδα αρχικής σελίδας, περιεχόμενο, κεφαλίδα εκδόσεων, υποσέλιδο, μπάρα πλοήγησης και style sheet." - -msgid "manager.setup.mailingAddress.description" -msgstr "Φυσική τοποθεσία και ταχυδρομική διεύθυνση των εκδόσεων." - -msgid "manager.setup.settings" -msgstr "Ρυθμίσεις" - -msgid "manager.setup.management.description" -msgstr "Πρόσβαση και ασφάλεια, προγραμματισμός, ανακοινώσεις, και χρήση υπεύθυνων επιμελητών κειμένων, επιμελητών σελιδοποίησης και διορθωτών τυπογραφικών δοκιμίων." - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Διαχείριση βασικών βημάτων επιμέλειας της έκδοσης" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Ρυθμίσεις Διαχείρισης και Δημοσίευσης" - -msgid "manager.setup.managingThePress" -msgstr "Βήμα 4. Διαχείριση των Εκδόσεων" - -msgid "manager.setup.noImageFileUploaded" -msgstr "Δεν έχει φορτωθεί κάποιο αρχείο εικόνας." - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "Δεν έχει φορτωθεί style sheet." - -msgid "manager.setup.note" -msgstr "Σημείωση" - -msgid "manager.setup.notifications" -msgstr "Γνωστοποίηση συγγραφέων για την ολοκλήρωση της υποβολής" - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "Αποστολή αντιγράφου στον κύριο υπεύθυνο επικοινωνίας των εκδόσεων, που έχει ορισθεί στο βήμα 1 των ρυθμίσεων." - -msgid "manager.setup.notifications.copySpecifiedAddress" -msgstr "Αποστολή αντιγράφου σε αυτή τη διεύθυνση ηλεκτρονικού ταχυδρομείου:" - -msgid "manager.setup.notifications.description" -msgstr "Με την ολοκλήρωση της διαδικασίας υποβολής, οι συγγραφείς λαμβάνουν αυτόματα ένα ευχαριστήριο μήνυμα ηλεκτρονικού ταχυδρομείου (που μπορεί να προβληθεί και να πεξεργαστεί στα Έτοιμα Email). Επιπλέον, αντίγραφο του μηνύματος αυτού μπορεί να αποσταλεί ως εξής:" - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "Όταν χρησιμοποιείται το email Ενημέρωσης Συγγραφέα, συμπεριλάβετε τις διευθύνσεις ηλεκτρονικού ταχυδρομείου όλων των συγγραφέων του τεκμηρίου και όχι μόνο του συγγραφέα-χρήστη που υπέβαλε το τεκμήριο." - -msgid "manager.setup.noUseCopyeditors" -msgstr "Η επιμέλεια των κειμένων θα γίνει από τον Επιμελητή των εκδόσεων ή τους επιμελητές ενοτήτων της υποβολής." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "Ο Επιμελητής των εκδόσεων ή κάποιος από τους Επιμελητές Ενοτήτων θα προετοιμάσει τα κατάλληλα σελιδοποιημένα μορφότυπα (αρχεία HTML, PDF, κτλ.)." - -msgid "manager.setup.noUseProofreaders" -msgstr "Ο Επιμελητής των εκδόσεων ή ο Επιμελητής Ενότητας ελέγχουν τα τυπογραφικά δοκίμια." - -msgid "manager.setup.numPageLinks" -msgstr "Σύνδεσμοι σελίδας" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Διαχείριση πρόσβασης" - -msgid "manager.setup.onlineIssn" -msgstr "Online ISΒΝ" - -msgid "manager.setup.openAccess" -msgstr "Οι εκδόσεις παρέχουν ανοικτή πρόσβαση στο περιεχόμενο τους." - -msgid "manager.setup.openAccessPolicy" -msgstr "Πολιτική ανοικτής πρόσβασης" - -msgid "manager.setup.openAccessPolicy.description" -msgstr "Εάν οι εκδόσεις παρέχουν άμεσα ελεύθερη πρόσβαση στο σύνολο του περιεχομένου τους, εισαγάγετε δήλωση σχετικά με την πολιτική ανοικτής πρόσβασης που θα εμφανίζεται στο μενού «Σχετικά με τις εκδόσεις»." - -msgid "manager.setup.peerReview.description" -msgstr "Περιγράψτε τις πολιτικές και τις διαδικασίες των εκδόσεων σχετικά με την αξιολόγηση από ομότιμους αξιολογητές, για αναγνώστες και συγγραφείς, συμπεριλαμβανομένου του αριθμού των αξιολογητών που συνήθως χρησιμοποιούνται στην αναθεώρηση υποβολής, των κριτηρίων βάσει των οποίων οι αξιολογητές καλούνται να κρίνουν υποβολές, του τυπικού χρόνου που απαιτείται για τη διεξαγωγή αξιολογήσεων και των πολιτικών συνεργασίας με τους αξιολογητές. Αυτό εμφανίζεται στο πεδίο Σχετικά με τις εκδόσεις." - -msgid "manager.setup.policies" -msgstr "Πολιτικές" - -msgid "manager.setup.policies.description" -msgstr "Εστίαση (Focus), αξιολόγηση από ομότιμους αξιολογητές (peer review), τομείς, απόρρητα, ασφάλεια, και πρόσθετα στοιχεία σχετικά με τα τεκμήρια." - -msgid "manager.setup.pressDescription" -msgstr "Περιγραφή Εκδόσεων" - -msgid "manager.setup.pressDescription.description" -msgstr "Μια γενική περιγραφή των Εκδόσεων θα πρέπει να περιλαμβάνεται εδώ. Αυτή η περιγραφή θα είναι διαθέσιμη στην αρχική σελίδα των εκδόσεων." - -msgid "manager.setup.pressArchiving" -msgstr "Αρχειοθέτηση Εκδόσεων" - -msgid "manager.setup.pressHomepageContent" -msgstr "Περιεχόμενα Αρχικής Σελίδας Εκδόσεων" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "Εξ’ορισμού, η αρχική σελίδα των εκδόσεων αποτελείται από δεσμούς πλοήγησης. Η προσθήκη πρόσθετου περιεχομένου αρχικής σελίδας μπορεί να γίνει χρησιμοποιώντας κάποιες ή όλες τις ακόλουθες επιλογές, που θα εμφανιστούν με την σειρά αυτή." - -msgid "manager.setup.contextInitials" -msgstr "Αρχικά Εκδόσεων" - -msgid "manager.setup.pressPolicies" -msgstr "Βήμα 2. Πολιτικές" - -msgid "manager.setup.pressSetup" -msgstr "Οργάνωση Εκδόσεων" - -msgid "manager.setup.pressSetupUpdated" -msgstr "Οι ρυθμίσεις του περιοδικού ενημερώθηκαν." - -msgid "manager.setup.pressTheme" -msgstr "Θέμα Εκδόσεων" - -msgid "manager.setup.principalContact" -msgstr "Κύριος Υπεύθυνος Επικοινωνίας" - -msgid "manager.setup.principalContactDescription" -msgstr "Η εν λόγω θέση που μπορεί να θεωρηθεί θέση κύριας επιμέλειας, διαχείρισης επιμέλειας ή διοικητικού προσωπικού θα καταχωρηθεί στην αρχική σελίδα των εκδόσεων στο πεδίο Υπεύθυνος επικοινωνίας, μαζί με τον Υπεύθυνο για Τεχνική Υποστήριξη." - -msgid "manager.setup.printIssn" -msgstr "Print ISBN" - -msgid "manager.setup.privacyStatement" -msgstr "Δήλωση απορρήτου" - -msgid "manager.setup.privacyStatement2" -msgstr "Δήλωση απορρήτου" - -msgid "manager.setup.privacyStatement.description" -msgstr "Η συγκεκριμένη δήλωση εμφανίζεται στο πεδίο Σχετικά με τις Εκδόσεις καθώς και στις σελίδες εγγραφής συγγραφέα για Υποβολή και Ειδοποίησης. Παρακάτω υπάρχει συνιστώμενη πολιτική απορρήτου, η οποία μπορεί να αναθεωρηθεί ανά πάσα στιγμή." - -msgid "manager.setup.proofingInstructions" -msgstr "Οδηγίες επιμέλειας τυπογραφικών δοκιμίων" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "Οι Οδηγίες επιμέλειας των τυπογραφικών δοκιμίων θα είναι διαθέσιμες στους Επιμελητές τυπογραφικών δοκιμίων, τους Συγγραφείς, τους Επιμελητές Σελιδοποίησης και τους Επιμελητές ενοτήτων στο στάδιο της επιμέλειας/σύνταξης της υποβολής. Παρακάτω υπάρχει προεπιλεγμένο σετ οδηγιών σε μορφή HTML, το οποίο μπορεί να επεξεργαστεί ή να αντικατασταθεί από τον Διαχειριστή των Εκδόσεων ανά πάσα στιγμή (σε μορφή HTML ή απλού κειμένου)." - -msgid "manager.setup.proofreading" -msgstr "Επιμελητές Τυπογραφικών Δοκιμίων" - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Παροχή οδηγιών στους Επιμελητές Σελιδοποίησης." - -msgid "manager.setup.publicationScheduleDescription" -msgstr "Τα τεκμήρια μιας έκδοσης μπορούν να δημοσιευτούν συλλογικά, ως μέρος μιας μονογραφίας στο πλαίσιο του δικού της Πίνακα Περιεχομένου. Εναλλακτικά, μεμονωμένα τεκμήρια μπορούν να δημοσιευτούν μόλις είναι έτοιμα, προσθέτοντας στον \"τρέχοντα\" όγκο του Πίνακα Περιεχομένου. Στο μενού «Σχετικά με τις εκδόσεις, μπορείτε να παραθέσετε πληροφορίες σχετικά με το σύστημα που οι εκδόσεις θα χρησιμοποιήσουν και την αναμενόμενη συχνότητα δημοσίευσης." - -msgid "manager.setup.publisher" -msgstr "Εκδότης" - -msgid "manager.setup.publisherDescription" -msgstr "Το όνομα του οργανισμού/εκδότη εμφανίζεται στο πεδίο Σχετικά με τις εκδόσεις." - -msgid "manager.setup.referenceLinking" -msgstr "Σύνδεση Αναφορών" - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Οδηγίες Σελιδοποίησης για Σύνδεση Αναφορών" - -msgid "manager.setup.restrictMonographAccess" -msgstr "Οι χρήστες πρέπει να συνδεθούν για να δουν το περιεχόμενο ανοικτής πρόσβασης." - -msgid "manager.setup.restrictSiteAccess" -msgstr "Οι χρήστες πρέπει να συνδεθούν για να δουν τον ιστότοπο της έκδοσης." - -msgid "manager.setup.reviewGuidelines" -msgstr "Κατευθυντήριες γραμμές αξιολόγησης" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "Οι κατευθυντήριες γραμμές αξιολόγησης παρέχουν κριτήρια στους αξιολογητές για καθορισμό της καταλληλότητας δημοσίευσης των υποβληθέντων τεκμηρίων στις εκδόσεις, καθώς και ειδικές οδηγίες για την σύνταξη αποτελεσματικής και κατατοπιστικής αξιολόγησης. Κατά τη διεξαγωγή της αξιολόγησης, οι αξιολογητές παρουσιάζουν την αξιολόγηση τους σε δύο ανοικτά πλαίσια κειμένου, το πρώτο \"για συγγραφείς και εκδότες\" και το δεύτερο μόνο \"για εκδότες\". Εναλλακτικά, ο Διαχειριστής Εκδόσεων μπορεί να δημιουργήσει μια φόρμα αξιολόγησης από ομοτίμους κάτω από το Φόρμες Αξιολόγησης." - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Αυτοματοποιημένες υπενθυμίσεις μέσω ηλεκτρονικού ταχυδρομείου (διαθέσιμα στις προεπιλεγμένες διευθύνσεις ηλεκτρονικού ταχυδρομείου του OMP) μπορούν να αποσταλλούν σε αξιολογητές σε δύο σημεία (ενώ ο επιμελητής μπορεί ανά πάσα στιγμή να αποστείλει μήνυμα ηλεκτρονικού ταχυδρομείου στον αξιολογητή)." - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "Σημείωση: Για να ενεργοποίησετε τις συγκεκριμένες επιλογές, ο διαχειριστής του ιστοτόπου πρέπει να ενεργοποιήσει την επιλογή scheduled_tasks στο αρχείο ρυθμίσεων του OMP. Ενδέχεται να απαιτούνται πρόσθετες ρυθμίσεις διακομιστή για υποστήριξη της συγκεκριμένης λειτουργίας (που ενδέχεται να μην είναι διαθέσιμες σε όλους τους διακομιστές), όπως διευκρινίζεται στα τεκμηριωτικά έγγραφα του OMP." - -msgid "manager.setup.reviewOptions.noteOnModification" -msgstr "Μπορεί να τροποποιηθεί για κάθε υποβολή κατά την εκδοτική διαδικασία." - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "Οι επιμελητές των εκδόσεων θα βαθμολογούν κατατάξουν τους αξιολογητές σε κλίμακα ποιότητας 0-5 μετά από κάθε αξιολόγηση." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "Οι αξιολογητές θα έχουν πρόσβαση στο αρχείο υποβολής μόνο μετά από αποδοχή αξιολόγησής αυτού." - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Πρόσβαση αξιολογητή" - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Βαθμολόγηση αξιολογητή" - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Υπενθυμίσεις προς τους αξιολογητές" - -msgid "manager.setup.reviewOptions.reviewTime" -msgstr "Χρόνος αξιολόγησης" - -msgid "manager.setup.reviewPolicy" -msgstr "Πολιτική Αξιολόγησης" - -msgid "manager.setup.reviewProcess" -msgstr "Διαδικασία Αξιολόγησης" - -msgid "manager.setup.reviewProcessDescription" -msgstr "Το OMP υποστηρίζει δύο μοντέλα διαχείρισης της διαδικασίας αξιολόγησης. Συνιστάται η Πρότυπη Διαδικασία Αξιολόγησης γιατί καθοδηγεί με βήματα τους αξιολογητές στη διαδικασία, διασφαλίζει δημιουργία ολοκληρωμένου ιστορικού αξιολόγησης για κάθε υποβολή, και εκμεταλλεύεται την ειδοποίηση με αυτόματο μέσο υπενθύμισης και τις πρότυπες συστάσεις για υποβολές (Αποδοχή, Αποδοχή με αναθεώρηση, Υποβολή για αξιολόγηση, Υποβολή σε άλλο σημείο, Απόρριψη, Ανατρέξτε σε σχόλια).

    Επιλέξτε ένα από τα ακόλουθα:" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Διαδικασία αξιολόγησης μέσω email" - -msgid "manager.setup.reviewProcessStandard" -msgstr "Πρότυπη Διαδικασία Αξιολόγησης (online)" - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "Οι επιμελητές αποστέλλουν με μήνυμα ηλεκτρονικού ταχυδρομείου σε επιλεγμένους αξιολογητές τον τίτλο και το απόσπασμα της υποβολής, καθώς και πρόσκληση για σύνδεση στον ιστότοπο των εκδόσεων για ολοκλήρωση της αξιολόγησης. Οι αξιολογητές συνδέονται στον ιστότοπο των εκδόσεων για να αποδεχτούν την εκτέλεση της αξιολόγησης, για να κατεβάσουν τις υποβολές, και για να επιλέξουν συστάσεις." - -msgid "manager.setup.searchEngineIndexing" -msgstr "Ευρετηρίαση μηχανών αναζήτησης" - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "Για παροχή βοήθειας στους χρήστες μηχανών αναζήτησης στον εντοπισμό του περιοδικού, παρέχετε σύντομη περιγραφή του περιοδικού και σχετικές λέξεις-κλειδιά (που διαχωρίζονται από ελληνικό ερωτηματικό)." - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Ενότητες και Επιμελητές ενοτήτων" - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "(Εάν δεν επιλεγεί η χρήση ενοτήτων, τα τεκμήρια που υποβάλλονται καταχωρούνται εξ’ορισμού στην ενότητα Μονογραφίες.)" - -msgid "manager.setup.sectionsDescription" -msgstr "Για να δημιουργήσετε ή να τροποποιήσετε τις ενότητες των εκδόσεων (πχ., Μονογραφίες, Αξιολογήσεις Βιβλίων, κτλ.), μεταβείτε στη Διαχείριση Ενοτήτων.

    Οι συγγραφείς με την υποβολή των τεκμηρίων στις εκδόσεις καθορίζουν..." - -msgid "manager.setup.securitySettings" -msgstr "Ρυθμίσεις Ασφαλείας/Πρόσβασης" - -msgid "manager.setup.securitySettings.note" -msgstr "Διάφορες επιλογές σε σχέση με την ασφάλεια και την πρόσβαση μπορούν να ρυθμιστούν από τη σελίδα Πρόσβαση και Ασφάλεια." - -msgid "manager.setup.selectEditorDescription" -msgstr "Τον επιμελητή των εκδόσεων που θα επιβλέπει κατά τη εκδοτική διαδικασία" - -msgid "manager.setup.selectSectionDescription" -msgstr "Την ενότητα των εκδόσεων για την οποία θα ληφθεί υπόψη το τεκμήριο." - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "Προβάλετε πάντα τους συνδέσμους των Σελιδοποιημένων Δοκιμίων και με την υπόδειξη περιορισμένης πρόσβασης." - -msgid "manager.setup.sponsors.description" -msgstr "Τα ονόματα των χορηγών (π.χ., επιστημονικές ενώσεις, πανεπιστημιακά τμήματα, συνεργασίες, κτλ.) που αποτελούν τους χορηγούς των εκδόσεων εμφανίζονται στο πεδίο Σχετικά με τις Εκδόσεις και ενδέχεται να συνοδεύονται και από ευχαριστήριο σημείωμα." - -msgid "manager.setup.stepsToPressSite" -msgstr "Πέντε βήματα για την οργάνωση της ιστοσελίδας των Εκδόσεων" - -msgid "manager.setup.subjectExamples" -msgstr "(Πχ., Φωτοσύνθεση; Μαύρες τρύπες; Οικονομική θεωρία; Θεωρία Bayes, Ανεργία)" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Λέξεις-κλειδιά" - -msgid "manager.setup.subjectProvideExamples" -msgstr "Παραθέστε μερικά παραδείγματα λέξεων-κλειδιών ή θεμάτων για την καθοδήγηση των συγγραφέων" - -msgid "manager.setup.submissionGuidelines" -msgstr "Οδηγίες Υποβολής" - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Λίστα ελέγχου προετοιμασίας υποβολής" - -msgid "manager.setup.submissionPreparationChecklistDescription" -msgstr "Κατά τη διάρκεια της διαδικασίας μιας υποβολής στις εκδόσεις, αρχικά ζητείται από τους συγγραφείς να ελέγξουν κάθε πεδίο στη Λίστα Ελέγχου προετοιμασίας της υποβολής, πριν να προχωρήσουν σε επόμενο στάδιο. Η λίστα ελέγχου εμφανίζεται στις «Οδηγίες για τους Συγγραφείς» στο μενού «Σχετικά με τις εκδόσεις». Ο κατάλογος μπορεί να επεξεργασθεί παρακάτω, αλλά πρέπει να υπάρχει σήμανση ελέγχου για όλα τα στοιχεία που βρίσκονται στη λίστα πριν οι συγγραφείς να προχωρήσουν στην υποβολή." - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "Απαιτείται λίστα ελέγχου των τεκμηρίων" - -msgid "manager.setup.workflow" -msgstr "Ροή των εργασιών" - -msgid "manager.setup.submissions.description" -msgstr "Κατευθυντήριες γραμμές προς συγγραφέα, πνευματικά δικαιώματα, και καταχώριση σε ευρετήρια (συμπεριλαμβανομένης της εγγραφής)." - -msgid "manager.setup.technicalSupportContact" -msgstr "Υπεύθυνος Επικοινωνίας για Τεχνική Υποστήριξη" - -msgid "manager.setup.technicalSupportContactDescription" -msgstr "Το εν λόγω άτομο θα καταχωρηθεί στη σελίδα του Υπεύθυνου επικοινωνίας των εκδόσεων για χρήση από επιμελητές, συγγραφείς και αξιολογητές και πρέπει να διαθέτει την ανάλογη εργασιακή εμπειρία μέσω του συστήματος για όλες τις δυνατότητες του. Το συγκεκριμένο σύστημα περιοδικών απαιτεί τεχνική υποστήριξη σε μικρό βαθμό, θα πρέπει, συνεπώς, να θεώρηθεί ανάθεση μερικής απασχόλησης. Μπορεί να προκύψουν περιπτώσεις, για παράδειγμα, όταν οι συγγραφείς και οι αξιολογητές αντιμετωπίζουν δυσκολίες σχετικά με τις οδηγίες ή τις μορφές των αρχείων, ή προκύπτει η ανάγκη επιβεβαίωσης της συνεχούς εφεδρικής αποθήκευσης των εκδόσεων στον server." - -msgid "manager.setup.typeExamples" -msgstr "(Πχ., Ιστορική έρευνα; Εν μέρει πειραματικό; Λογοτεχνική ανάλυση; Έρευνα/συνέντευξη)" - -msgid "manager.setup.typeMethodApproach" -msgstr "Τύπος (Μέθοδος/Προσέγγιση)" - -msgid "manager.setup.typeProvideExamples" -msgstr "Παραθέστε μερικά παραδείγματα σχετικών τύπων έρευνας, μεθόδων, και προσεγγίσεων για το συγκεκριμένο πεδίο" - -msgid "manager.setup.useCopyeditors" -msgstr "Οι εκδόσεις θα καθορίσουν τους Επιμελητές κειμένων που θα εργαστούν για κάθε υποβολή." - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "Οι εκδόσεις θα χρησιμοποιούν Επιτροπή Σύνταξης / Αξιολόγησης." - -msgid "manager.setup.useImageLogo" -msgstr "Εικόνα Λογοτύπου" - -msgid "manager.setup.useImageLogoDescription" -msgstr "Ένα προαιρετικό λογότυπο θα μπορούσε να ανεβεί και ν αχρησιμοποιηθεί σε συνδυασμό με την εικόνα ή τον τίτλο που έχει ορισθεί παραπάνω." - -msgid "manager.setup.useImageTitle" -msgstr "Εικόνα Τίτλου" - -msgid "manager.setup.useLayoutEditors" -msgstr "Οι εκδόσεις ορίζουν τον Επιμελητή Σελιδοποίησης που θα προετοιμάσει τα σελιδοποιημένα αρχεία HTML, PDF, PS, κτλ., για την ηλεκτρονική έκδοση." - -msgid "manager.setup.useProofreaders" -msgstr "Οι εκδόσεις ορίζουν τους Επιμελητές Τυπογραφικών Δοκιμίων οι οποίοι (μαζί με τους συγγραφείς) ελέγχουν τα τυπογραφικά δοκίμια." - -msgid "manager.setup.userRegistration" -msgstr "Εγγραφή Χρήστη" - -msgid "manager.setup.useTextTitle" -msgstr "Κείμενο τίτλου" - -msgid "manager.setup.volumePerYear" -msgstr "Τόμοι ανά έτος" - -msgid "manager.setup.publicationFormat.code" -msgstr "Μορφότυπο (format)" - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "Απαιτείτε επιλογή Μορφότυπου (format)" - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "Απαιτείται ένα όνομα για αυτή το Μορφότυπο(format)." - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "Είναι αυτό ένα μη-ψηφιακό μορφότυπο?" - -msgid "manager.setup.publicationFormat.inUse" -msgstr "Λόγο ότι αυτό το μορφότυπο δημοσίευσης είναι προς το παρόν σε χρήση από μια μονογραφία των εκδόσεων σας, δεν είναι δυνατό να διαγραφεί." - -msgid "manager.setup.newPublicationFormat" -msgstr "Νέο Μορφότυπο Δημοσίευσης" - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "Για να δημιουργήσετε ένα νέο μορφότυπο δημοσίευσης, συμπληρώστε την παρακάτω φόρμα και κάντε κλικ στο κουμπί \"Δημιουργία\"." - -msgid "manager.setup.genresDescription" -msgstr "Τα Μέρη(Genre) του βιβλίου που χρησιμοποιούνται για την κατάταξη-ονομασία των αρχείων μιας έκδοσης, παρουσιάζονται σε ένα κυλιόμενο μενού για τη μεταφόρτωση αρχείων. Τα μέρη του βιβλίου που ορίζονται με το σύμβολο ## επιτρέπουν τον χρήστη να συνδέσει το αρχείο είτε με όλο το βιβλίο (99Ζ) ή με ένα συγκεκριμένο αριθμό κεφαλαίου του βιβλίου (πχ. 02)." - -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "Οι Eπιμελητές αποστέλλουν με μήνυμα ηλεκτρονικού ταχυδρομείου σε επιλεγμένους Aξιολογητές, πρόσκληση για αξιολόγηση του αρχείου της υποβολής που επισυνάπτεται στο μήνυμα. Οι Αξιολογητές αποστέλλουν email στους Επιμελητές για την αποδοχή (η απόρριψη) της αξιολόγησης, καθώς και για την ολοκλήρωση της αξιολόγησης και για την επιλογή συστάσεων. Ο Επιμελητής καταχωρεί την αποδοχή (η απόρριψη), καθώς και την αξιολόγηση και τις συστάσεις στην σελίδα Αξιολόγηση, για την καταγραφή όλης της διαδικασίας αξιολόγησης που ακολουθείθηκε." - -msgid "manager.setup.genres" -msgstr "Τύποι Βιβλίου (Genres)" - -msgid "manager.setup.newGenre" -msgstr "Δημιουργία Νέου τύπου Βιβλίου της Μονογραφίας" - -msgid "manager.setup.newGenreDescription" -msgstr "Για να δημιουργείσετε ένα νέο τύπο βιβλίου (genre), συμπληρώστε την παρακάτω φόρμα και επιλέξτε το κουμπί \"Δημιουργία\"." - -msgid "manager.setup.deleteSelected" -msgstr "Διαγραφή επιλεγμένων" - -msgid "manager.setup.restoreDefaults" -msgstr "Επαναφορά προεπιλεγμένων ρυθμίσεων" - -msgid "manager.setup.prospectus" -msgstr "Οδηγός Πρότασης Έκδοσης/Prospectus Guide" - -msgid "manager.setup.prospectusDescription" -msgstr "Ο οδηγός πρότασης μιας έκδοσης(prospectus guide) αποτελεί ένα κείμενο οδηγιών των εκδόσεων που βοηθά τους συγγραφείς να περιγράψουν το υποβαλλόμενο υλικό με τρόπο που βοηθά τη συντακτική επιτροπή να προσδιορίσει την αξία της υποβολής. Μία πρόταση μπορεί να περιλαμβάνει πολλά στοιχεία - από την δυναμική του έργου στην αγορά των επιστημονικών εκδόσεων ως την επιστημονική και θεωρητική του αξία. Σε κάθε περίπτωση, οι εκδόσεις πρέπει να δημιουργήσουν έναν οδηγό πρότασης που θα συμπληρώνει την αντζέντα των οδηγιών και των πολιτικών που ακολουθεί." - -msgid "manager.setup.submitToCategories" -msgstr "Ένταξη της υποβολής σε Κατηγορία" - -msgid "manager.setup.submitToSeries" -msgstr "Ένταξη της υποβολής σε Σειρά" - -msgid "manager.setup.issnDescription" -msgstr "Ο ISSN (διεθνής πρότυπος αριθμός περιοδικής έκδοσης) αποτελεί αριθμό με οκτώ ψηφία που προσδιορίζει περιοδικές εκδόσεις όπως η συγκεκριμένη, συμπεριλαμβανομένων των αριθμών περιοδικής έκδοσης σε ηλεκτρονική μορφή. Διαχειρίζεται από παγκόσμιο δίκτυο Εθνικών Κέντρων που συντονίζονται από Διεθνές Κέντρο με βάση το Παρίσι, υποστηριζόμενο από την Unesco και τη Γαλλική κυβέρνηση. Η λήψη του αριθμού αυτού μπορεί να γίνει από τον ιστότοπο του ISSN . Αυτό μπορεί να πραγματοποιηθεί σε οποιοδήποτε σημείο χειρισμού των εκδόσεων." - -msgid "manager.setup.currentFormats" -msgstr "Τρέχοντα Μορφότυπα" - -msgid "manager.setup.categoriesAndSeries" -msgstr "Κατηγορίες και Σειρές" - -msgid "manager.setup.categories.description" -msgstr "Μπορείτε να δημιουργήσετε μία λίστα με κατηγορίες που θα σα βοηθήσει να οργανώσετε τις δημοσιεύσεις σας. Οι κατηγορίες ομαδοποιούν τα βιβλία ανάλογα με το αντικείμενο, για παράδειγμα Οικονομικά, Λογοτεχνικά, Ποίηση, κλπ. Ορισμένες κατηγορίες μπορούν να ταξιθετηθούν σε \"γονικές\" κατηγορίες: για παράδειγμα, η γονική κατηγορία Οικονομικά μπορεί να περιλαμβάνει την Μικροοικονομία και Μακροοικονομία. Οι επισκέπτες μπορούν να ανζητήσουν και να περιηγηθούν στις εκδόσεις ανά κατηγορία" - -msgid "manager.setup.series.description" -msgstr "Μπορείτε να δημιουργήσετε οποιοδήποτε αριθμό σειρών για να οργανώσετε τις δημοσιεύσεις σας. Μία Σειρά αντιπροσωπεύει μια σειρά ιδιαίτερων εκδόσεων σχετικά με ένα θέμα ή επιστημονικό πεδίο. Μία Σειρά μπορεί να δημιουργηθεί μετά από πρόταση ενός ή δύο συντελεστών, συνήθως επιστημονικό προσωπικό ή ΔΕΠ, οι οποίοι μπορεί να αναλάβουν και την επιβλεψη ή επιμέλεια της. Οι επισκέπτες μπορούν να ανζητήσουν και να περιηγηθούν στις εκδόσεις ανά σειρά." - -msgid "manager.setup.reviewForms" -msgstr "Φόρμες Αξιολόγησης" - -msgid "manager.setup.roleType" -msgstr "Τύπος Ρόλου" - -msgid "manager.setup.authorRoles" -msgstr "Ρόλοι Συγγραφέων" - -msgid "manager.setup.managerialRoles" -msgstr "Ρόλοι Διαχείρισης" - -msgid "manager.setup.availableRoles" -msgstr "Διαθέσιμοι Ρόλοι" - -msgid "manager.setup.currentRoles" -msgstr "Τρέχον Ρόλοι" - -msgid "manager.setup.internalReviewRoles" -msgstr "Ρόλοι Εσωτερικής Αξιολόγησης" - -msgid "manager.setup.masthead" -msgstr "Ταυτότητα" - -msgid "manager.setup.editorialTeam" -msgstr "Συντακτική ομάδα" - -msgid "manager.setup.editorialTeam.description" -msgstr "Η Ταυτότητα πρέπει να περιέχει μια λίστα από επιμελητές, υπεύθυνους διαχείρισης, και άλλα πρόσωπα που συνδέονται με τις Εκδόσεις. Πληροφορίες που καταχωρούνται εδώ θα εμφανιστούν στη σελίδα \"Σχετικά\" των εκδόσεων" - -msgid "manager.setup.files" -msgstr "Αρχεία" - -msgid "manager.setup.productionTemplates" -msgstr "Πρότυπα Παραγωγής" - -msgid "manager.files.note" -msgstr "Σημείωση: To ευρετήριο αρχείων αποτελεί προηγμένη λειτουργία που παρέχει τη δυνατότητα σε αρχεία και καταλόγους που αφορούν τις εκδόσεις να προβάλλονται και να χειρίζονται άμεσα." - -msgid "manager.setup.copyrightNotice.sample" -msgstr "" -"

    Προτεινόμενες Δηλώσεις Προστασίας Πνευματικών Δικαιωμάτων Creative Commons

    \n" -"

    Προτεινόμενη πολιτική για Εκδόσεις που παρέχουν Ανοικτή Πρόσβαση (Offer Open Access)

    \n" -"Οι Συγγραφείς που δημοσιεύουν το έργο τους με αυτές τις εκδόσεις συμφωνούν με τους ακόλουθους όρους:\n" -"
      \n" -"\t
    1. Οι συγγραφείς διατηρούν τα πνευματικά διακιώματα και εκχωρούν το δικαίωμα της πρώτης δημοσίευσης στις εκδόσεις ενώ ταυτόχρονα τα πνευματικά δικαιώματα του έργου προστατεύονται σύμφωνα με την Creative Commons Attribution License που επιτρέπει σε τρίτους - αποδέκτες της άδειας να χρησιμοποιούν το έργο όπως θέλουν με την προϋπόθεση της διατήρησης των διατυπώσεων που προβλέπονται στην άδεια σχετικά με την αναφορά στον αρχικό δημιουργό και την αρχική δημοσίευση σε αυτές τις εκδόσεις.
    2. \n" -"\t
    3. Οι συγγραφείς μπορούν να συνάπτουν ξεχωριστές, και πρόσθετες συμβάσεις και συμφωνίες για την μη αποκλειστική διανομή του έργου όπως δημοσιεύτηκε στις εκδόσεις συτές (πχ. κατάθεση σε ένα ακαδημαϊκό καταθετήριο ή δημοσίευση σε ένα βιβλίο), με την προϋπόθεση της αναγνώρισης και της αναφοράς της πρώτης δημοσίευσης σε αυτές τις εκδόσεις.
    4. \n" -"\t
    5. Οι εκδόσεις επιτρέπουν και ενθαρρύνουν τους συγγραφείς να καταθέτουν τις εργασίες τους online (π.χ. σε ένα ακαδημαϊκό καταθετήριο ή στις προσωπικές τους ιστοσελίδες) πριν και μετά από τις διαδικασίες της δημοσίευσης, καθώς αυτό μπορεί να οδηγήσει σε παραγωγικές ανταλλαγές ιδεών και σκέψεων καθώς επίσης και σε γρηγορότερη και μεγαλύτερη χρήση και ευρετηρίαση της δημοσιευμένης εργασίας (Βλέπε The Effect of Open Access).
    6. \n" -"
    \n" -"\n" -"

    Προτεινόμενη πολιτική για Εκδόσεις που παρέχουν Καθυστερημένη Ανοικτή Πρόσβαση (Delayed Open Access)

    \n" -"Οι Συγγραφείς που δημοσιεύουν το έργο τους με αυτές τις εκδόσεις συμφωνούν με τους ακόλουθους όρους:\n" -"
      \n" -"\t
    1. Οι συγγραφείς διατηρούν τα πενευματικά δικαιώματα και εκχωρούν το δικαίωμα της πρώτης δημοσίευσης στις εκδόσεις, ενώ παράλληλα και [ΠΡΟΣΔΙΟΡΙΣΤΕ ΧΡΟΝΙΚΗ ΠΕΡΙΟΔΟ] μετά την δημοσίευση λαμβάνει άδεια προστασίας των πνευματικών δικαιωμάτων σύμφωνα με την Creative Commons Attribution License που επιτρέπει σε τρίτους - αποδέκτες της άδειας να χρησιμοποιούν την εργασία όπως θέλουν με την προϋπόθεση της διατήρησης των διατυπώσεων που προβλέπονται στην άδεια σχετικά με την αναφορά στον αρχικό δημιουργό και την αρχική δημοσίευση σε αυτές τις εκδόσεις.
    2. \n" -"\t
    3. Οι συγγραφείς μπορούν να συνάπτουν ξεχωριστές, και πρόσθετες συμβάσεις και συμφωνίες για την μη αποκλειστική διανομή της εργασίας όπως δημοσιεύτηκε στο περιοδικό αυτό (π.χ. κατάθεση σε ένα ακαδημαϊκό καταθετήριο ή δημοσίευση σε ένα βιβλίο), με την προϋπόθεση της αναγνώρισης και την αναφοράς της πρώτης δημοσίευσης σε αυτές τις εκδόσεις.
    4. \n" -"\t
    5. Οι εκδόσεις επιτρέπουν και ενθαρρύνουν τους συγγραφείς να καταθέτουν τις εργασίες τους online (π.χ. σε ένα ακαδημαϊκό καταθετήριο ή στις προσωπικές τους ιστοσελίδες) πριν και μετά από τις διαδικασίες της δημοσίευσης, καθώς αυτό μπορεί να οδηγήσει σε παραγωγικές ανταλλαγές ιδεών και σκέψεων καθώς επίσης και σε γρηγορότερη και μεγαλύτερη χρήση και ευρετηρίαση της δημοσιευμένης εργασίας (Βλέπε The Effect of Open Access).
    6. \n" -"
    " - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "" -"Βήματα: Σειρά αναμονής Υποβολής > Αξιολόγηση Υποβολής > Διαμόρφωση Υποβολής > Πίνακας Περιεχομένων.

    \n" -"Επιλέξτε ένα μοντέλο για χειρισμό των διαφόρων φάσεων της διαδικασίας επιμέλειας. (Για να καθορίζετε επιμελητή διαχείρισης και επιμελητές σειρών, μεταβείτε στους «Επιμελητές» στη «Διαχείριση Εκδόσεων».)" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "" -"

    Για να δίνεται η δυνατότητα στους αναγνώστες να εντοπίζουν online εκδόσεις των εργασιών που αναφέρονται από έναν συγγραφέα, οι παρακάτω επιλογές είναι διαθέσιμες.

    \n" -"\n" -"
      \n" -"\t
    1. Προσθήκη ενός Εργαλείου Ανάγνωσης

      Ο Διαχειριστής των Εκδόσεων μπορεί να προσθέσει την επιλογή \"Εύρεση Αναφορών\" στα Εργαλεία Ανάγνωσης που συνοδεύουν τα δημοσιευμένα τεκμήρια, που δίνουν την δυνατότητα στους αναγνώστες να επικολήσουν τον τίτλο της αναφοράς και να αναζητήσουν την αντίστοιχη εργασία σε προεπιλεγμένες επσιτημονικές βάσεις δεδομένων.

    2. \n" -"\t
    3. Ενσωμμάτωση Συνδέσμων στις Αναφορές

      Ο Επιμελητής Σελιδοποίησης μπορεί να προσθέσει έναν σύνδεσμο σε αναφορές που μπορούν να βρεθούν online σύμφωνα με τις παρακάτω οδηγίες (και οι οποίες μπορούν να διαμορφωθούν κατά περίπτωση ).

    4. \n" -"
    " diff --git a/locale/el_GR/submission.po b/locale/el_GR/submission.po deleted file mode 100644 index cde555bf486..00000000000 --- a/locale/el_GR/submission.po +++ /dev/null @@ -1,326 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-11-28T15:10:06-08:00\n" -"PO-Revision-Date: 2019-11-28T15:10:06-08:00\n" -"Language: \n" - -msgid "submission.select" -msgstr "Επιλογή Υποβολής" - -msgid "submission.synopsis" -msgstr "Σύνοψη" - -msgid "submission.workflowType" -msgstr "Τύπος Βιβλίου" - -msgid "submission.workflowType.description" -msgstr "Μια μονογραφία είναι ένα έργο που έχει συγγραφεί εξ' ολοκλήρου από έναν ή πολλούς συγγραφείς. Ένα έργο υπο επιμέλια έχει διαφορετικούς συγγραφείς για κάθε κεφάλαιο (λεπτομέρειες για το κάθε κεφάλαιο εισάγονται αργότερα κατα τη διάρκεια της διαδικασίας.)" - -msgid "submission.workflowType.editedVolume" -msgstr "Έργο υπο Επιμέλεια" - -msgid "submission.workflowType.authoredWork" -msgstr "Μονογραφία" - -msgid "submission.monograph" -msgstr "Μονογραφία" - -msgid "submission.published" -msgstr "Η Παραγωγή είναι έτοιμη" - -msgid "submission.fairCopy" -msgstr "Τελικό Αντιγραφο (Fair Copy)" - -msgid "submission.artwork.permissions" -msgstr "Άδειες (Permissions)" - -msgid "submission.chapter" -msgstr "Κεφάλαιο" - -msgid "submission.chapters" -msgstr "Κεφάλαια" - -msgid "submission.chaptersDescription" -msgstr "Εδώ μπορείτε να απαριθμείσετε τα κεφάλαια, τα οποία μπορείτε να ανθέσετε στους συντελεστές του έργου από την παραπάνω λίστα. Οι συντελεστές θα έχουν πρόσβαση στα συγκεκριμένα κεφάλαια σε διάφορες φάσεις της εκδοτικής διαδικασίας." - -msgid "submission.chapter.addChapter" -msgstr "Προσθήκη Κεφαλαίου" - -msgid "submission.chapter.editChapter" -msgstr "Επεξεργασία Κεφαλαίου" - -msgid "submission.copyedit" -msgstr "Επιμέλια Κειμένου" - -msgid "submission.publicationFormats" -msgstr "Μορφότυπα Δημοσίευσης" - -msgid "submission.proofs" -msgstr "Τυπογραφικά Δοκίμια" - -msgid "submission.download" -msgstr "Λήψη αρχείων" - -msgid "submission.sharing" -msgstr "Μοιραστείτε το" - -msgid "manuscript.submission" -msgstr "Υποβολή Χειρογράφου" - -msgid "submission.round" -msgstr "Γύρος {$round}" - -msgid "submissions.queuedReview" -msgstr "Σε αξιολόγηση (In Review)" - -msgid "manuscript.submissions" -msgstr "Χειρόγραφο Υποβολών" - -msgid "submission.confirmSubmit" -msgstr "Είστε σίγουροι ότι επιθυμείτε να υποβάλετε αυτό το χειρόγραφο στις Εκδόσεις μας;" - -msgid "submission.metadata" -msgstr "Μεταδεδομένα" - -msgid "submission.supportingAgencies" -msgstr "Οργανισμοί Υποστήριξης" - -msgid "grid.action.addChapter" -msgstr "Δημιουργία ενός νέου κεφαλαίου" - -msgid "grid.action.editChapter" -msgstr "Επεξεργασία κεφαλαίου" - -msgid "grid.action.deleteChapter" -msgstr "Διαγραφή αυτού του κεφαλαίου" - -msgid "submission.submit" -msgstr "Εισαγωγή Νέας Υποβολής Βιβλίου" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Ξεκινήστε μια νέα υποβολή στις Εκδόσεις" - -msgid "submission.submit.upload" -msgstr "Μεταφόρτωση" - -msgid "submission.submit.upload.description" -msgstr "Η μεταφόρτωση αρχείων που σχετίζεται με αυτή την υποβολή, συμπεριλαμβάνει χειρόγραφα, πρόταση για μια έκδοση, συνοδευτική επιστολή, καλλιτεχνικά έργα κλπ. Έαν είναι εφικτό, για τα έργα υπο επιμέλεια, καθώς και για τις μονογραφίες, ανεβάστε το κείμενο του έργου σε ξεχωριστό αρχείο." - -msgid "submission.submit.cancelSubmission" -msgstr "Μπορείτε να ολοκληρώσετε τη διαδικασία υποβολής μετέπειτα, επιλέγοντας Ενεργές Υποβολές από την Αρχική Σελίδα του Συγγραφέα." - -msgid "submission.submit.copyrightNoticeAgree" -msgstr "Συμφωνώ να τηρήσω και δεσμέυομαι από τους όρους της δήλωσης πνευματικών δικαιωμάτων." - -msgid "submission.submit.selectSeries" -msgstr "Επιλογή Σειράς..." - -msgid "submission.submit.seriesPosition" -msgstr "Θέση σε αυτή τη Σειρά (πχ. Βιβλίο 2, ή Τόμος 2)" - -msgid "submission.submit.form.localeRequired" -msgstr "Παρακαλώ επιλέξτε τη γλώσσα της υποβολής σας" - -msgid "submission.submit.submissionChecklist" -msgstr "Λίστα Υποβολών" - -msgid "submission.submit.submissionChecklistDescription" -msgstr "Ελέξτε εάν η συγκεκριμένη υποβολή είναι έτοιμη για εξέταση από αυτές τις εκδόσεις, ελέγχοντας και ολοκληρώνοντας τα ακόλουθα (προσθήκη σχολίων προς τον επιμελητή μπορούν να προστεθούν παρακάτω)." - -msgid "submission.submit.privacyStatement" -msgstr "Πολιτική Προστασίας Προσωπικών Δεδομένων" - -msgid "submission.submit.contributorRole" -msgstr "Ρόλος Συντελεστή" - -msgid "submission.submit.form.authorRequired" -msgstr "Απαιτείται τουλάχιστον ένας συγγραφέας." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Απαιτείται το όνομα, το επίθετο και η ηλεκτρονική διεύθυνση του/ων συγγραφέα/ων." - -msgid "submission.submit.form.titleRequired" -msgstr "Παρακαλούμε εισάγετε τον τίτλο της μονογραφίας." - -msgid "submission.submit.form.abstractRequired" -msgstr "Παρακαλούμε εισάγετε μια σύντομη περίληψη της μονογραφίας." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Παρακαλούμε επιλέξτε το ρόλο του συντελεστή." - -msgid "submission.submit.submissionFile" -msgstr "Αρχείο Υποβολής" - -msgid "submission.submit.prepare" -msgstr "Προετοιμασία" - -msgid "submission.submit.catalog" -msgstr "Κατάλογος" - -msgid "submission.submit.metadata" -msgstr "Μεταδεδομένα" - -msgid "submission.submit.finishingUp" -msgstr "Ολοκληρώνοντας" - -msgid "submission.submit.nextSteps" -msgstr "Επόμενα Βήματα" - -msgid "submission.submit.coverNote" -msgstr "Σημειώσεις Εξωφύλλου για τον επιμελητή έκδοσης" - -msgid "submission.submit.generalInformation" -msgstr "Γενικές Πληροφορίες" - -msgid "submission.submit.whatNext.description" -msgstr "Οι εκδόσεις έχουν ενημερωθεί για την υποβολή σας και θα λάβετε ένα email επιβεβαίωσης για το αρχείο σας. Μόλις η εργασία σας αξιολογηθεί από τους επιμελητές, θα επικοινωνήσουμε μαζί σας." - -msgid "submission.submit.checklistErrors" -msgstr "Παρακαλούμε διαβάστε και επισημάνετε τα στοιχεία στη λίστας ελέγχου της υποβολής σας. Το στοιχείο {$itemsRemaining} δεν έχει ελεγχθεί." - -msgid "submission.submit.placement" -msgstr "Τοποθέτηση υποβολής" - -msgid "submission.submit.placement.seriesDescription" -msgstr "Εάν το βιβλίο επίσης πρέπει να ενταχθεί σε μια σειρά..." - -msgid "submission.submit.placement.seriesPositionDescription" -msgstr "Τα βιβλία που ανήκουν σε μια σειρά διατηρούνται αντίστροφα από το χρόνο δημοσίευσης, ώστε να είναι ορατή η ανάπτυξή της σειράς και να εμφανίζεται η πιο πρόσφατη έκδοση." - -msgid "submission.submit.userGroup" -msgstr "Υποβολή με το ρόλο μου ως..." - -msgid "submission.submit.userGroupDescription" -msgstr "Εάν υποβάλλετε ένα 'Εργο υπο Επιμέλεια, τότε θα πρέπει να επιλέξετε το ρόλο του επιμελητή τόμου." - -msgid "submission.submit.titleAndSummary" -msgstr "Τίτλος και Περίληψη" - -msgid "submission.upload.selectBookElement" -msgstr "Επιλέξτε στοιχείο βιβλίου" - -msgid "grid.chapters.title" -msgstr "Κεφάλαια" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Διαγραφή αρχείου Επιμελητή Κειμένου" - -msgid "publication.catalogEntry" -msgstr "Κατάλογος" - -msgid "submission.editCatalogEntry" -msgstr "Καταχώριση" - -msgid "submission.catalogEntry.new" -msgstr "Νέα Καταχώριση στον καταλογο" - -msgid "submission.catalogEntry.confirm" -msgstr "Δημιουργείστε μια καταχώριση στον κατάλογο γι'αυτό το βιβλίο, βασιζόμενοι στα παρακάτω μεταδεδομένα." - -msgid "submission.catalogEntry.confirm.required" -msgstr "Παρακαλούμε επιβεβαιώστε ότι η υποβολή είναι έτοιμη να κατχωρηθεί στον καταλόγο." - -msgid "submission.catalogEntry.isAvailable" -msgstr "Η μονογραφία έιναι έτοιμη να συμπεριληφθεί και να δημοσιευθεί στον κατάλογο." - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Μονογραφία" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Κατάλογος" - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Μορφότυπο Έκδοσης" - -msgid "submission.event.metadataPublished" -msgstr "Τα μεταδεδομένα της μονογραφίας έχουν εγκριθεί για δημοσίευση." - -msgid "submission.event.metadataUnpublished" -msgstr "Τα μεταδεδομένα της μονογραφίας δεν είναι πλέον δημοσιευμένα." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Το μορφότυπο της δημοσίευσης \"{$publicationFormatName}\" είναι διαθέσιμο." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Το μορφότυπο της δημοσίευσης \"{$publicationFormatName}\" δεν είναι πλέον διαθέσιμο." - -msgid "submission.event.publicationFormatPublished" -msgstr "Το μορφότυπο της δημοσίευσης \"{$publicationFormatName}\" έχει εγκριθεί για δημοσίευση." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "Το μορφότυπο της δημοσίεσυης \"{$publicationFormatName}\" δεν είναι πλέον δημοσιευμένο." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Τα μεταδεδομένα του καταλόγου έχουν ενημερωθεί." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Τα μεταδεδομένα του μορφότυπου της δημοσίευσης για το \"{$formatName}\" έχουν ενημερωθεί." - -msgid "submission.event.publicationFormatCreated" -msgstr "Το μορφότυπο της δημοσίευσης \"{$formatName}\" έχει δημιουργηθεί." - -msgid "submission.event.publicationFormatRemoved" -msgstr "Το μορφότυπο της δημοσίευσης \"{$formatName}\" έχει αφαιρεθεί." - -msgid "submission.publication" -msgstr "Δημοσίευση" - -msgid "publication.status.published" -msgstr "Δημοσιευμένο" - -msgid "submission.status.scheduled" -msgstr "Προγραμματισμένο" - -msgid "submission.publications" -msgstr "Δημοσιεύσεις" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Το έτος πνευματικών δικαιωμάτων θα οριστεί αυτόματα όταν δημοσιευθεί σε ένα " -"τεύχος." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "" -"Το έτος πνευματικών δικαιωμάτων θα οριστεί αυτόματα με βάση την ημερομηνία " -"δημοσίευσης." - -msgid "publication.datePublished" -msgstr "Ημερομηνία Δημοσίευσης" - -msgid "publication.editDisabled" -msgstr "Αυτή η έκδοση έχει δημοσιευτεί και δεν είναι δυνατή η επεξεργασία της." - -msgid "publication.event.published" -msgstr "Η υποβολή δημοσιεύτηκε." - -msgid "publication.event.scheduled" -msgstr "Η υποβολή είχε προγραμματιστεί για δημοσίευση." - -msgid "publication.event.versionPublished" -msgstr "Δημοσιεύθηκε μια νέα έκδοση." - -msgid "publication.event.versionScheduled" -msgstr "Μια νέα έκδοση είχε προγραμματιστεί για δημοσίευση." - -msgid "publication.event.versionUnpublished" -msgstr "Μια έκδοση καταργήθηκε από τη δημοσίευση." - -msgid "publication.invalidSubmission" -msgstr "Δεν ήταν δυνατή η εύρεση της υποβολής αυτής της δημοσίευσης." - -msgid "publication.publish" -msgstr "Δημοσίευση" - -msgid "publication.publish.requirements" -msgstr "Πρέπει να πληρούνται οι ακόλουθες προϋποθέσεις για να δημοσιευτεί." - -msgid "submission.queries.production" -msgstr "Συζητήσεις Παραγωγής" - diff --git a/locale/en_US/ONIX_BookProduct_CodeLists.xsd b/locale/en/ONIX_BookProduct_CodeLists.xsd similarity index 100% rename from locale/en_US/ONIX_BookProduct_CodeLists.xsd rename to locale/en/ONIX_BookProduct_CodeLists.xsd diff --git a/locale/en/admin.po b/locale/en/admin.po new file mode 100644 index 00000000000..a31139f952b --- /dev/null +++ b/locale/en/admin.po @@ -0,0 +1,182 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "admin.hostedContexts" +msgstr "Hosted Presses" + +msgid "admin.settings.appearance.success" +msgstr "The site appearance settings have been successfully updated." + +msgid "admin.settings.config.success" +msgstr "The site configuration settings have been successfully updated." + +msgid "admin.settings.info.success" +msgstr "The site information has been successfully updated." + +msgid "admin.settings.redirect" +msgstr "Press redirect" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Requests to the main site will be redirected to this press. This may be " +"useful if the site is hosting only a single press, for example." + +msgid "admin.settings.noPressRedirect" +msgstr "Do not redirect" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "This will be the default language for the site and any hosted presses." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Select all locales to support on the site. The selected locales will be " +"available for use by all presses hosted on the site, and also appear in a " +"language select menu to appear on each site page (which can be overridden on " +"press-specific pages). If multiple locales are not selected, the language " +"toggle menu will not appear and extended language settings will not be " +"available to presses." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Marked locales may be incomplete." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Are you sure you want to uninstall this locale? This may affect any hosted " +"presses currently using the locale." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Select any additional locales to install support for in this system. Locales " +"must be installed before they can be used by hosted presses. See the OMP " +"documentation for information on adding support for new languages." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Are you sure you want to disable this locale? This may affect any hosted " +"presses currently using the locale." + +msgid "admin.systemVersion" +msgstr "OMP Version" + +msgid "admin.systemConfiguration" +msgstr "OMP Configuration" + +msgid "admin.presses.pressSettings" +msgstr "Press Settings" + +msgid "admin.presses.noneCreated" +msgstr "No presses have been created." + +msgid "admin.contexts.create" +msgstr "Create Press" + +msgid "admin.contexts.form.titleRequired" +msgstr "A title is required." + +msgid "admin.contexts.form.pathRequired" +msgstr "A path is required." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"The path can only include letters, numbers and the characters _ and -. It " +"must begin and end with a letter or number." + +msgid "admin.contexts.form.pathExists" +msgstr "The selected path is already in use by another press." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "The primary locale must be one of the press's supported locales." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} was created successfully." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} was edited successfully." + +msgid "admin.contexts.contextDescription" +msgstr "Press description" + +msgid "admin.presses.addPress" +msgstr "Add Press" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

    NOTE!\n" +"

    The system could not automatically overwrite the configuration file. To " +"apply your configuration changes you must open config.inc.php in a " +"suitable text editor and replace its contents with the contents of the text " +"field below.

    " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Select the hosted presses that should be allowed to send bulk emails. When " +"this feature is enabled, a press manager will be able to send an email to " +"all users registered with their press.

    Misuse of this feature to send " +"unsolicited email may violate anti-spam laws in some jurisdictions and may " +"result in your server's emails being blocked as spam. Seek technical advice " +"before enabling this feature and consider consulting with press managers to " +"ensure it is used appropriately.

    Further restrictions on this feature " +"can be enabled for each press by visiting its settings wizard in the list of " +"Hosted Presses." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"A press manager will be unable to send bulk emails to any of the roles " +"selected below. Use this setting to limit abuse of the email notification " +"feature. For example, it may be safer to disable bulk emails to readers, " +"authors, or other large user groups that have not consented to receive such " +"emails.

    The bulk email feature can be disabled completely for this " +"press in Admin > Site Settings." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"The bulk email feature has been disabled for this press. Enable this feature " +"in Admin > Site Settings." + +msgid "admin.siteManagement.description" +msgstr "" +"Add, edit or remove presses from this site and manage site-wide settings." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "Chapter ID is not an integer" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "Series ID is not an integer" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Select the type of geographical usage statistics that can be collected by " +"presses on this site. More detailed geographical statistics may increase " +"your database size considerably and, in some rare cases, may undermine the " +"anonymity of your visitors. Each press may configure this setting " +"differently, but a press can never collect more detailed records than what " +"is configured here. For example, if the site only supports country and " +"region, the press may select country and region or only country. The press " +"will not be able to track country, region and city." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Enable institutional statistics if you would like presses on this site to be " +"able to collect usage statistics by institution. Presses will need to add " +"the institution and its IP ranges in order to use this feature. Enabling " +"institutional statistics may increase your database size considerably." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Whether or not to make the SUSHI API endpoints publicly accessible for all " +"presses on this site. If you enable the public API, each press may override " +"this setting to make their statistics private. However, if you disable the " +"public API, presses can not make their own API public." + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Use the site as the platform for all presses." diff --git a/locale/en/api.po b/locale/en/api.po new file mode 100644 index 00000000000..6d6ba75439b --- /dev/null +++ b/locale/en/api.po @@ -0,0 +1,41 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"You must provide one or more submission ids to be added to the catalog." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "One or more of the submissions you specified could not be found." + +msgid "api.submissions.400.wrongContext" +msgstr "The submission you requested is not in this press." + +msgid "api.emails.403.disabled" +msgstr "The email notification feature has not been enabled for this press." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"You do not have permission to move this email template to another press." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "The publication that you requested is not part of this press." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "The publication that you requested is not part of this submission." + +msgid "api.submissions.403.cantChangeContext" +msgstr "You can not change the press of a submission." + +msgid "api.submission.400.inactiveSection" +msgstr "This section is no longer receiving submissions." diff --git a/locale/en/author.po b/locale/en/author.po new file mode 100644 index 00000000000..93d1404576a --- /dev/null +++ b/locale/en/author.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "author.submit.notAccepting" +msgstr "This press is not accepting submissions at this time." + +msgid "author.submit" +msgstr "New Submission" diff --git a/locale/en/default.po b/locale/en/default.po new file mode 100644 index 00000000000..0ffa01604ca --- /dev/null +++ b/locale/en/default.po @@ -0,0 +1,155 @@ +# Jonas Raoni Soares da Silva , 2022. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2022-07-03 13:31+0000\n" +"Last-Translator: Jonas Raoni Soares da Silva \n" +"Language-Team: English (United States) \n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "default.genres.appendix" +msgstr "Appendix" + +msgid "default.genres.bibliography" +msgstr "Bibliography" + +msgid "default.genres.manuscript" +msgstr "Book Manuscript" + +msgid "default.genres.chapter" +msgstr "Chapter Manuscript" + +msgid "default.genres.glossary" +msgstr "Glossary" + +msgid "default.genres.index" +msgstr "Index" + +msgid "default.genres.preface" +msgstr "Preface" + +msgid "default.genres.prospectus" +msgstr "Prospectus" + +msgid "default.genres.table" +msgstr "Table" + +msgid "default.genres.figure" +msgstr "Figure" + +msgid "default.genres.photo" +msgstr "Photo" + +msgid "default.genres.illustration" +msgstr "Illustration" + +msgid "default.genres.other" +msgstr "Other" + +msgid "default.groups.name.manager" +msgstr "Press manager" + +msgid "default.groups.plural.manager" +msgstr "Press managers" + +msgid "default.groups.abbrev.manager" +msgstr "PM" + +msgid "default.groups.name.editor" +msgstr "Press editor" + +msgid "default.groups.plural.editor" +msgstr "Press editors" + +msgid "default.groups.abbrev.editor" +msgstr "PE" + +msgid "default.groups.name.sectionEditor" +msgstr "Series editor" + +msgid "default.groups.plural.sectionEditor" +msgstr "Series editors" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "AcqE" + +msgid "default.groups.name.subscriptionManager" +msgstr "Subscription Manager" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Subscription Managers" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "SubM" + +msgid "default.groups.name.chapterAuthor" +msgstr "Chapter Author" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Chapter Authors" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "CA" + +msgid "default.groups.name.volumeEditor" +msgstr "Volume editor" + +msgid "default.groups.plural.volumeEditor" +msgstr "Volume editors" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "VE" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

    Authors are invited to make a submission to this press. Those submissions considered to be a good fit will be sent for peer review before determining whether they will be accepted or rejected.

    " +"

    Before making a submission, authors are responsible for obtaining permission to publish any material included with the submission, such as photos, documents and datasets. All authors identified on the submission must consent to be identified as an author. Where appropriate, research should be approved by an appropriate ethics committee in accordance with the legal requirements of the study's country.

    " +"

    An editor may desk reject a submission if it does not meet minimum standards of quality. Before submitting, please ensure that the scope and outline of the book are structured and articulated properly. The title should be concise and the abstract should be able to stand on its own. This will increase the likelihood of reviewers agreeing to review the book. When you're satisfied that your submission meets this standard, please follow the checklist below to prepare your submission.

    " + +msgid "default.contextSettings.checklist" +msgstr "" +"

    All submissions must meet the following requirements.

    " +"
      " +"
    • This submission meets the requirements outlined in the Author Guidelines.
    • " +"
    • This submission has not been previously published, nor is it before another press for consideration.
    • " +"
    • All references have been checked for accuracy and completeness.
    • " +"
    • All tables and figures have been numbered and labeled.
    • " +"
    • Permission has been obtained to publish all photos, datasets and other material provided with this submission.
    • " +"
    " + +msgid "default.contextSettings.privacyStatement" +msgstr "

    The names and email addresses entered in this press site will be used exclusively for the stated purposes of this press and will not be made available for any other purpose or to any other party.

    " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "This press provides immediate open access to its content on the principle that making research freely available to the public supports a greater global exchange of knowledge." + +msgid "default.contextSettings.forReaders" +msgstr "We encourage readers to sign up for the publishing notification service for this press. Use the Register link at the top of the homepage for the press. This registration will result in the reader receiving the Table of Contents by email for each new monograph of the press. This list also allows the press to claim a certain level of support or readership. See the press Privacy Statement which assures readers that their name and email address will not be used for other purposes." + +msgid "default.contextSettings.forAuthors" +msgstr "Interested in submitting to this press? We recommend that you review the About the Press page for the press' section policies and Author Guidelines. Authors need to register with the press prior to submitting, or if already registered can simply log in and begin the 5 step process." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"We encourage research librarians to list this press among their library's " +"electronic press holdings. As well, this open source publishing system is " +"suitable for libraries to host for their faculty members to use with presses " +"they are involved in editing (see Open " +"Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "External Reviewer" + +msgid "default.groups.plural.externalReviewer" +msgstr "External Reviewers" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "ER" diff --git a/locale/en/editor.po b/locale/en/editor.po new file mode 100644 index 00000000000..72ead9d6666 --- /dev/null +++ b/locale/en/editor.po @@ -0,0 +1,203 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "editor.submissionArchive" +msgstr "Submission Archive" + +msgid "editor.monograph.cancelReview" +msgstr "Cancel Request" + +msgid "editor.monograph.clearReview" +msgstr "Clear Reviewer" + +msgid "editor.monograph.enterRecommendation" +msgstr "Enter Recommendation" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Enter Reviewer Recommendation" + +msgid "editor.monograph.recommendation" +msgstr "Recommendation" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Select a reviewer above and press the 'Select Reviewer' button to continue." + +msgid "editor.monograph.replaceReviewer" +msgstr "Replace Reviewer" + +msgid "editor.monograph.editorToEnter" +msgstr "Editor to enter recommendation/comments for reviewer" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Upload review" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Peer Review Options" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Proofreading Files" + +msgid "editor.monograph.internalReview" +msgstr "Initiate Internal Review" + +msgid "editor.monograph.internalReviewDescription" +msgstr "Select files below to send them to the internal review stage." + +msgid "editor.monograph.externalReview" +msgstr "Initiate External Review" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Select Final Draft Files" + +msgid "editor.monograph.final.currentFiles" +msgstr "Current Final Draft Files" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Current Files" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Message to user" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Submission Actions" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Overall submission actions and options." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Section Actions" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Options particular to a given section, for example uploading files or adding " +"users." + +msgid "editor.monograph.legend.itemActions" +msgstr "Item Actions" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Actions and options particular to an individual file." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"View and manage the submission catalog entry, including metadata and " +"publishing formats" + +msgid "editor.monograph.legend.bookInfo" +msgstr "View and manage submission metadata, notes, notifications, and history" + +msgid "editor.monograph.legend.participants" +msgstr "" +"View and manage this submission's participants: authors, editors, designers, " +"and more" + +msgid "editor.monograph.legend.add" +msgstr "Upload a file to the section" + +msgid "editor.monograph.legend.add_user" +msgstr "Add a user to the section" + +msgid "editor.monograph.legend.settings" +msgstr "View and access item settings, such as information and delete options" + +msgid "editor.monograph.legend.more_info" +msgstr "More Information: file notes, notification options, and history" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"File information: notes, notification options, and history (No notes added " +"yet)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"File information: notes, notification options, and history (Notes are " +"available)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"File information: notes, notification options, and history (New notes added " +"since last visit)" + +msgid "editor.monograph.legend.edit" +msgstr "Edit item" + +msgid "editor.monograph.legend.delete" +msgstr "Delete item" + +msgid "editor.monograph.legend.in_progress" +msgstr "Action in progress or not yet complete" + +msgid "editor.monograph.legend.complete" +msgstr "Action complete" + +msgid "editor.monograph.legend.uploaded" +msgstr "File uploaded by the role in the grid column title" + +msgid "editor.submission.introduction" +msgstr "" +"In Submission, the editor, after the consulting the files submitted, selects " +"the appropriate action (which includes notifying the author): Send to " +"Internal Review (entails selecting files for Internal Review); Send to " +"External Review (entails selecting files for External Review); Accept " +"Submission (entails selecting files for Editorial stage); or Decline " +"Submission (archives submission)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Fair Copy" + +msgid "editor.monograph.proofs" +msgstr "Proofs" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Approval and Publishing" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Different publication formats, such as hardcover, softcover and digital, can " +"be uploaded in the Publication Formats section below. You can use the " +"publication formats grid below as a checklist for what still needs to be " +"done to publish a publication format." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Add publication formats (e.g., digital, paperback) for which the layout " +"editor prepares page proofs for proofreading. The Proofs need to be " +"checked as approved and the Catalog entry for the format needs to " +"be checked as posted in the book’s catalog entry, before a format can be " +"made Available (i.e., published)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Set Terms for Downloading" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Set Terms" + +msgid "editor.monograph.proof.addNote" +msgstr "Add response" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Any files that have already been uploaded to any submission stage can be " +"added to the Proof Files listing by checking the Include checkbox below and " +"clicking Search: all available files will be listed and can be chosen for " +"inclusion." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"The public identifier '{$publicIdentifier}' already exists for another " +"object of the same type. Please choose unique identifiers for the objects of " +"the same type within your press." + +msgid "editor.submissions.assignedTo" +msgstr "Assigned To Editor" diff --git a/locale/en/emails.po b/locale/en/emails.po new file mode 100644 index 00000000000..11297b7fe8c --- /dev/null +++ b/locale/en/emails.po @@ -0,0 +1,501 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" +"PO-Revision-Date: 2019-12-03T14:14:06-08:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Password Reset Confirmation" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"We have received a request to reset your password for the {$siteTitle} web " +"site.
    \n" +"
    \n" +"If you did not make this request, please ignore this email and your password " +"will not be changed. If you wish to reset your password, click on the below " +"URL.
    \n" +"
    \n" +"Reset my password: {$passwordResetUrl}
    \n" +"
    \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Press Registration" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"You have now been registered as a user with {$contextName}. We have included " +"your username and password in this email, which are needed for all work with " +"this press through its website. At any point, you can ask to be removed from " +"the list of users by contacting me.
    \n" +"
    \n" +"Username: {$recipientUsername}
    \n" +"Password: {$password}
    \n" +"
    \n" +"Thank you,
    \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Validate Your Account" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"You have created an account with {$contextName}, but before you can start " +"using it, you need to validate your email account. To do this, simply follow " +"the link below:
    \n" +"
    \n" +"{$activateUrl}
    \n" +"
    \n" +"Thank you,
    \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Validate Your Account" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"You have created an account with {$siteTitle}, but before you can start " +"using it, you need to validate your email account. To do this, simply follow " +"the link below:
    \n" +"
    \n" +"{$activateUrl}
    \n" +"
    \n" +"Thank you,
    \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Registration as Reviewer with {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"In light of your expertise, we have taken the liberty of registering your " +"name in the reviewer database for {$contextName}. This does not entail any " +"form of commitment on your part, but simply enables us to approach you with " +"a submission to possibly review. On being invited to review, you will have " +"an opportunity to see the title and abstract of the paper in question, and " +"you'll always be in a position to accept or decline the invitation. You can " +"also ask at any point to have your name removed from this reviewer list.
    \n" +"
    \n" +"We are providing you with a username and password, which is used in all " +"interactions with the press through its website. You may wish, for example, " +"to update your profile, including your reviewing interests.
    \n" +"
    \n" +"Username: {$recipientUsername}
    \n" +"Password: {$password}
    \n" +"
    \n" +"Thank you,
    \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "You have been assigned as an editor on a submission to {$contextName}" + +msgid "emails.editorAssign.body" +msgstr "" +"

    Dear {$recipientName},

    The following submission has been assigned " +"to you to see through the editorial process.

    {$submissionTitle}
    {$authors}

    Abstract

    {$submissionAbstract}

    If you find the submission " +"to be relevant for {$contextName}, please forward the submission to the " +"review stage by selecting \"Send to Internal Review\" and then assign " +"reviewers by clicking \"Add Reviewer\".

    If the submission is not " +"appropriate for this press, please decline the submission.

    Thank you " +"in advance.

    Kind regards,

    {$contextSignature}" + +msgid "emails.reviewRequest.subject" +msgstr "Manuscript Review Request" + +msgid "emails.reviewRequest.body" +msgstr "" +"

    Dear {$recipientName},

    " +"

    I believe that you would serve as an excellent reviewer for a submission to {$contextName}. The submission's title " +"and abstract are below, and I hope that you will consider undertaking this important task for us.

    " +"

    If you are able to review this submission, your review is due by {$reviewDueDate}. You can view the submission, " +"upload review files, and submit your review by logging into the press and following the steps at the link below.

    " +"

    {$submissionTitle}

    " +"

    Abstract

    " +"{$submissionAbstract}" +"

    Please accept or decline the review by {$responseDueDate}.

    " +"

    You may contact me with any questions about the submission or the review process.

    " +"

    Thank you for considering this request. Your help is much appreciated.

    " +"

    Kind regards,

    " +"{$signature}" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Request to review a revised submission" + +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

    Dear {$recipientName},

    " +"

    Thank you for your review of {$submissionTitle}. The authors have considered the " +"reviewers' feedback and have now submitted a revised version of their work. " +"I'm writing to ask if you would conduct a second round of peer review for this submission.

    " +"

    If you are able to review this submission, your review is due by {$reviewDueDate}. You can " +"follow the review steps to view the submission, upload review files, and submit " +"your review comments.

    " +"

    {$submissionTitle}

    " +"

    Abstract

    " +"{$submissionAbstract}" +"

    Please accept or decline the review by {$responseDueDate}.

    " +"

    Please feel free to contact me with any questions about the submission or the review process.

    " +"

    Thank you for considering this request. Your help is much appreciated.

    " +"

    Kind regards,

    " +"{$signature}" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Manuscript Review Request" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Dear {$recipientName},
    \n" +"Just a gentle reminder of our request for your review of the submission, " +""{$submissionTitle}," for {$contextName}. We were hoping to have " +"your response by {$responseDueDate}, and this email has been automatically " +"generated and sent with the passing of that date.\n" +"
    \n" +"{$messageToReviewer}
    \n" +"
    \n" +"Please log into the press web site to indicate whether you will undertake " +"the review or not, as well as to access the submission and to record your " +"review and recommendation.
    \n" +"
    \n" +"The review itself is due {$reviewDueDate}.
    \n" +"
    \n" +"Submission URL: {$reviewAssignmentUrl}
    \n" +"
    \n" +"Username: {$recipientUsername}
    \n" +"
    \n" +"Thank you for considering this request.
    \n" +"
    \n" +"
    \n" +"Sincerely,
    \n" +"{$contextSignature}
    \n" + +msgid "emails.reviewCancel.subject" +msgstr "Request for Review Cancelled" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"We have decided at this point to cancel our request for you to review the " +"submission, "{$submissionTitle}," for {$contextName}. We apologize " +"for any inconvenience this may cause you and hope that we will be able to " +"call on you to assist with this review process in the future.
    \n" +"
    \n" +"If you have any questions, please contact me." + +msgid "emails.reviewReinstate.subject" +msgstr "Can you still review something for {$contextName}?" + +msgid "emails.reviewReinstate.body" +msgstr "" +"

    Dear {$recipientName},

    " +"

    We recently cancelled our request for you to review a submission, {$submissionTitle}, for {$contextName}. " +"We've reversed that decision and we hope that you are still able to conduct the review.

    " +"

    If you are able to assist with this submission's review, you can login to the press to view the submission, " +"upload review files, and submit your review request.

    " +"

    If you have any questions, please contact me.

    " +"

    Kind regards,

    " +"{$signature}" + +msgid "emails.reviewDecline.subject" +msgstr "Unable to Review" + +msgid "emails.reviewDecline.body" +msgstr "" +"Editor(s):
    \n" +"
    \n" +"I am afraid that at this time I am unable to review the submission, "" +"{$submissionTitle}," for {$contextName}. Thank you for thinking of me, " +"and another time feel free to call on me.
    \n" +"
    \n" +"{$senderName}" + +msgid "emails.reviewRemind.subject" +msgstr "A reminder to please complete your review" + +msgid "emails.reviewRemind.body" +msgstr "" +"

    Dear {$recipientName},

    " +"

    Just a gentle reminder of our request for your review of the submission, \"{$submissionTitle},\" for {$contextName}. " +"We were expecting to have this review by {$reviewDueDate} and we would be pleased to receive it as soon as you are " +"able to prepare it.

    " +"

    You can login to the press and follow the review steps to view the submission, upload review files, and submit " +"your review comments.

    " +"

    If you need an extension of the deadline, please contact me. I look forward to hearing from you.

    " +"

    Thank you in advance and kind regards,

    " +"{$signature}" + +msgid "emails.reviewRemindAuto.body" +msgstr "" +"

    Dear {$recipientName}:

    " +"

    This email is an automated reminder from {$contextName} in regards to our request for your review of the submission, " +"\"{$submissionTitle}.\"

    " +"

    We were expecting to have this review by {$reviewDueDate} and we would be pleased to receive it as soon as you are " +"able to prepare it.

    " +"

    Please login to the press and follow the review steps to view the submission, upload review files, and submit " +"your review comments.

    " +"

    If you need an extension of the deadline, please contact me. I look forward to hearing from you.

    " +"

    Thank you in advance and kind regards,

    " +"{$contextSignature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "Your submission has been accepted to {$contextName}" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

    Dear {$recipientName},

    I am pleased to inform you that we have " +"decided to accept your submission without further revision. After careful " +"review, we found your submission, {$submissionTitle}, to meet or exceed our " +"expectations. We are excited to publish your piece in {$contextName} and we " +"thank you for choosing our press as a venue for your work.

    Your " +"submission will soon be published on the press site for {$contextName} and " +"you are welcome to include it in your list of publications. We recognize the " +"hard work that goes into every successful submission and we want to " +"congratulate you on reaching this stage.

    Your submission will now " +"undergo copy editing and formatting to prepare it for publication.

    You " +"will shortly receive further instructions.

    If you have any questions, " +"please contact me from your submission " +"dashboard.

    Kind regards,

    {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Your submission has been sent for internal review" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

    Dear {$recipientName},

    I am pleased to inform you that an editor " +"has reviewed your submission, {$submissionTitle}, and has decided to send it " +"for internal review. You will hear from us with feedback from the reviewers " +"and information about the next steps.

    Please note that sending the " +"submission for internal review does not guarantee that it will be published. " +"We will consider the reviewers' recommendations before deciding to accept " +"the submission for publication. You may be asked to make revisions and " +"respond to the reviewers' comments before a final decision is made.

    If " +"you have any questions, please contact me from your submission dashboard.

    {$signature}

    " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Your submission has been sent for copyediting" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

    Dear {$recipientName},

    \n" +"

    I am pleased to inform you that we have decided to accept your submission " +"without peer review. We found your submission, {$submissionTitle}, to meet " +"our expectations, and we do not require that work of this type undergo peer " +"review. We are excited to publish your piece in {$contextName} and we thank " +"you for choosing our press as a venue for your work.

    \n" +"

    Your submission will soon be published on the press site for " +"{$contextName} and you are welcome to include it in your list of " +"publications. We recognize the hard work that goes into every successful " +"submission and we want to congratulate you on your efforts.

    \n" +"

    Your submission will now undergo copy editing and formatting to prepare " +"it for publication.

    \n" +"

    You will shortly receive further instructions.

    \n" +"

    If you have any questions, please contact me from your submission dashboard.

    \n" +"

    Kind regards,

    \n" +"

    {$signature}

    \n" + +msgid "emails.layoutRequest.subject" +msgstr "" +"Submission {$submissionId} is ready for production at {$contextAcronym}" + +msgid "emails.layoutRequest.body" +msgstr "" +"

    Dear {$recipientName},

    A new submission is ready for layout editing:" +"

    {$submissionId} {$submissionTitle}
    {$contextName}

    1. Click on the Submission URL above.
    2. Download the Production Ready files and use them to create the " +"galleys according to the press's standards.
    3. Upload the galleys to " +"the Publication Formats section of the submission.
    4. Use the " +"Production Discussions to notify the editor that the galleys are ready.

    If you are unable to undertake this work at this time or have any " +"questions, please contact me. Thank you for your contribution to this press." +"

    Kind regards,

    {$signature}" + +msgid "emails.layoutComplete.subject" +msgstr "Galleys Complete" + +msgid "emails.layoutComplete.body" +msgstr "" +"

    Dear {$recipientName},

    " +"

    Galleys have now been prepared for the following submission and are ready for final review.

    " +"

    {$submissionTitle}
    " +"{$contextName}

    " +"

    If you have any questions, please contact me.

    " +"

    Kind regards,

    " +"

    {$senderName}

    " + +msgid "emails.indexRequest.subject" +msgstr "Request Index" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"The submission "{$submissionTitle}" to {$contextName} now needs " +"indexes created by following these steps.
    \n" +"1. Click on the Submission URL below.
    \n" +"2. Log into the press and use the Page Proofs file to create the galleys " +"according to press standards.
    \n" +"3. Send the COMPLETE email to the editor.
    \n" +"
    \n" +"{$contextName} URL: {$contextUrl}
    \n" +"Submission URL: {$submissionUrl}
    \n" +"Username: {$recipientUsername}
    \n" +"
    \n" +"If you are unable to undertake this work at this time or have any questions, " +"please contact me. Thank you for your contribution to this press.
    \n" +"
    \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Index Galleys Complete" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Indexes have now been prepared for the manuscript, "{$submissionTitle}," +"" for {$contextName} and are ready for proofreading.
    \n" +"
    \n" +"If you have any questions, please contact me.
    \n" +"
    \n" +"{$senderName}" + +msgid "emails.emailLink.subject" +msgstr "Manuscript of Possible Interest" + +msgid "emails.emailLink.body" +msgstr "" +"Thought you might be interested in seeing "{$submissionTitle}" by " +"{$authors} published in Vol {$volume}, No {$number} ({$year}) of " +"{$contextName} at "{$submissionUrl}"." + +msgid "emails.notifySubmission.subject" +msgstr "Submission Notification" + +msgid "emails.notifySubmission.body" +msgstr "" +"You have a message from {$sender} regarding "{$submissionTitle}" " +"({$monographDetailsUrl}):
    \n" +"
    \n" +"\t\t{$message}
    \n" +"
    \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"A notification from a user sent from a submission information center modal." + +msgid "emails.notifyFile.subject" +msgstr "Submission File Notification" + +msgid "emails.notifyFile.body" +msgstr "" +"You have a message from {$sender} regarding the file "{$fileName}" " +"in "{$submissionTitle}" ({$monographDetailsUrl}):
    \n" +"
    \n" +"\t\t{$message}
    \n" +"
    \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "A notification from a user sent from a file information center modal" + +msgid "emails.revisedVersionNotify.subject" +msgstr "Revised Version Uploaded" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

    Dear {$recipientName},

    " +"

    The author has uploaded revisions for the submission, {$authorsShort} — {$submissionTitle}. " +"

    As an assigned editor, we ask that you login and view the revisions and make a decision to accept, decline or send the submission for further review.

    " +"


    " +"This is an automated message from {$contextName}." + +msgid "emails.statisticsReportNotification.subject" +msgstr "Editorial activity for {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
    \n" +"
    \n" +"Your press health report for {$month}, {$year} is now available. Your key " +"stats for this month are below.
    \n" +"
      \n" +"\t
    • New submissions this month: {$newSubmissions}
    • \n" +"\t
    • Declined submissions this month: {$declinedSubmissions}
    • \n" +"\t
    • Accepted submissions this month: {$acceptedSubmissions}
    • \n" +"\t
    • Total submissions in the system: {$totalSubmissions}
    • \n" +"
    \n" +"Login to the the press to view more detailed editorial trends and published book stats. A full copy of this " +"month's editorial trends is attached.
    \n" +"
    \n" +"Sincerely,
    \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
    \n" +"
    \n" +"{$announcementSummary}
    \n" +"
    \n" +"Visit our website to read the full " +"announcement." + +msgid "emails.editorAssignReview.body" +msgstr "" +"

    Dear {$recipientName},

    " +"

    The following submission has been assigned to you to see through the review stage.

    " +"

    {$submissionTitle}
    " +"{$authors}

    " +"

    Abstract

    " +"{$submissionAbstract}" +"

    Please login to view the submission and assign qualified " +"reviewers. You can assign a reviewer by clicking \"Add Reviewer\".

    " +"

    Thank you in advance.

    " +"

    Kind regards,

    " +"{$signature}" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

    Dear {$recipientName},

    " +"

    The following submission has been assigned to you to see through the production stage.

    " +"

    {$submissionTitle}
    " +"{$authors}

    " +"

    Abstract

    " +"{$submissionAbstract}" +"

    Please login to view the submission. Once production-ready files " +"are available, upload them under the Publication > Publication Formats section.

    " +"

    Thank you in advance.

    " +"

    Kind regards,

    " +"{$signature}" diff --git a/locale/en/locale.po b/locale/en/locale.po new file mode 100644 index 00000000000..79bd52f509f --- /dev/null +++ b/locale/en/locale.po @@ -0,0 +1,1542 @@ +# Jonas Raoni Soares da Silva , 2022. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2022-07-03 13:31+0000\n" +"Last-Translator: Jonas Raoni Soares da Silva \n" +"Language-Team: English (United States) \n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "common.payments" +msgstr "Payments" + +msgid "monograph.audience" +msgstr "Audience" + +msgid "monograph.audience.success" +msgstr "The audience details have been updated." + +msgid "monograph.coverImage" +msgstr "Cover Image" + +msgid "monograph.audience.rangeQualifier" +msgstr "Audience Range Qualifier" + +msgid "monograph.audience.rangeFrom" +msgstr "Audience Range (from)" + +msgid "monograph.audience.rangeTo" +msgstr "Audience Range (to)" + +msgid "monograph.audience.rangeExact" +msgstr "Audience Range (exact)" + +msgid "monograph.languages" +msgstr "Languages (English, French, Spanish)" + +msgid "monograph.publicationFormats" +msgstr "Publication Formats" + +msgid "monograph.publicationFormat" +msgstr "Format" + +msgid "monograph.publicationFormatDetails" +msgstr "Details about the available publication format: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Details about this monograph" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formats:" + +msgid "monograph.type" +msgstr "Type of Submission" + +msgid "submission.pageProofs" +msgstr "Page Proofs" + +msgid "monograph.proofReadingDescription" +msgstr "The layout editor uploads the production-ready files that have been prepared for publication here. Use +Assign to designate authors and others to proofread the page proofs, with corrected files uploaded for approval prior to publication." + +msgid "monograph.task.addNote" +msgstr "Add to task" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Open Access" + +msgid "monograph.publicationFormat.imprint" +msgstr "Imprint (Brand Name)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Page Counts" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Front Matter" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Back Matter" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Product Composition" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Product Detail (not required)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Product Identification" + +msgid "monograph.publicationFormat.price" +msgstr "Price" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "A price is required." + +msgid "monograph.publicationFormat.priceType" +msgstr "Price Type" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Discount percentage, if applicable" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Product Availability" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Returnable Indicator" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Digital Information" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Physical Dimensions" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "File Size in Mbytes" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Enter your own file size value?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Height" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Thickness" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Weight" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Width" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Country of Manufacture" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Digital Technical Protection" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Product Distribution Region" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Taxation Rate" + +msgid "monograph.publicationFormat.taxType" +msgstr "Taxation Type" + +msgid "monograph.publicationFormat.isApproved" +msgstr "Include the metadata for this publication format in the catalog entry for this book." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Missing markets and prices." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Missing an identification code." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Missing some metadata fields." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "

    The publication format you have chosen no longer exists for this monograph.

    " + +msgid "monograph.publicationFormat.openTab" +msgstr "Open publication format tab." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Publication Format" + +msgid "grid.catalogEntry.nameRequired" +msgstr "A name is required." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "A valid price is required." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Format Details" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Physical format" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "This format will be available at a separate website" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL of remotely-hosted content" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "A 13-digit ISBN code, such as 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "A 10-digit ISBN code, such as 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "A monograph id is required." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "A publication format must be chosen." + +msgid "grid.catalogEntry.availability" +msgstr "Availability" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Available" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Not Available" + +msgid "grid.catalogEntry.proof" +msgstr "Proof" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Format Approval" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "

    Approve the metadata for this format. Metadata can be checked from the Edit panel for each format.

    " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

    Indicate that the metadata for this format has not been approved.

    " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Format Availability" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "

    Make this format available to readers. Downloadable files and any other distributions will appear in the book's catalog entry.

    " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "

    This format will unavailable to readers. Any downloadable files or other distributions will no longer appear in the book's catalog entry.

    " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Catalog entry not approved." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Format not in catalog entry." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Proof not approved." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Approved" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Awaiting Approval" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "A file size for digital formats required." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "A product availability code is required." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "A product composition code must be chosen." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Code Value" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "ONIX Code Type" + +msgid "grid.catalogEntry.codeRequired" +msgstr "An identification code is required." + +msgid "grid.catalogEntry.valueRequired" +msgstr "A value is required." + +msgid "grid.catalogEntry.salesRights" +msgstr "Sales Rights" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Code Value" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Sales Rights Type" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Rest of World?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "Check this box to use this Sales Rights entry as a catch-all for your format. Countries and regions need not be chosen in this case." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "There is already a ROW sales type defined for this publication format." + +msgid "grid.catalogEntry.countries" +msgstr "Countries" + +msgid "grid.catalogEntry.regions" +msgstr "Regions" + +msgid "grid.catalogEntry.included" +msgstr "Included" + +msgid "grid.catalogEntry.excluded" +msgstr "Excluded" + +msgid "grid.catalogEntry.markets" +msgstr "Market Territories" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Territory" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Publication Dates" + +msgid "grid.catalogEntry.roleRequired" +msgstr "A representative role is required." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "A date format is required." + +msgid "grid.catalogEntry.dateValue" +msgstr "Date" + +msgid "grid.catalogEntry.dateRole" +msgstr "Role" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Date Format" + +msgid "grid.catalogEntry.dateRequired" +msgstr "A date is required and the date value must match the chosen date format." + +msgid "grid.catalogEntry.representatives" +msgstr "Representatives" + +msgid "grid.catalogEntry.representativeType" +msgstr "Representative Type" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agents" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Suppliers" + +msgid "grid.catalogEntry.agent" +msgstr "Agent" + +msgid "grid.catalogEntry.agentTip" +msgstr "You may assign an agent to represent you in this defined territory. It is not required." + +msgid "grid.catalogEntry.supplier" +msgstr "Supplier" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Choose a role:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Role" + +msgid "grid.catalogEntry.representativeName" +msgstr "Name" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Phone" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Email Address" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Website" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Representative ID" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Representative ID Type (GLN is recommended)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "You may leave the following section empty if you provide your own services to your customers." + +msgid "grid.action.addRepresentative" +msgstr "Add Representative" + +msgid "grid.action.editRepresentative" +msgstr "Edit this Representative" + +msgid "grid.action.deleteRepresentative" +msgstr "Delete this Representative" + +msgid "spotlight" +msgstr "Spotlight" + +msgid "spotlight.spotlights" +msgstr "Spotlights" + +msgid "spotlight.noneExist" +msgstr "There are no current spotlights." + +msgid "spotlight.title.homePage" +msgstr "In the Spotlight" + +msgid "spotlight.author" +msgstr "Author, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Spotlight Item" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Homepage" + +msgid "grid.content.spotlights.form.location" +msgstr "Spotlight Location" + +msgid "grid.content.spotlights.form.item" +msgstr "Enter spotlighted title (autocomplete)" + +msgid "grid.content.spotlights.form.title" +msgstr "Spotlight title" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Book" + +msgid "grid.content.spotlights.itemRequired" +msgstr "An item is required." + +msgid "grid.content.spotlights.titleRequired" +msgstr "A spotlight title is required." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Please choose a location for this spotlight." + +msgid "grid.action.editSpotlight" +msgstr "Edit this spotlight" + +msgid "grid.action.deleteSpotlight" +msgstr "Delete this spotlight" + +msgid "grid.action.addSpotlight" +msgstr "Add Spotlight" + +msgid "manager.series.open" +msgstr "Open Submissions" + +msgid "manager.series.indexed" +msgstr "Indexed" + +msgid "grid.libraryFiles.column.files" +msgstr "Files" + +msgid "grid.action.catalogEntry" +msgstr "View the catalog entry form" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Format appears in catalog entry" + +msgid "grid.action.editFormat" +msgstr "Edit this format" + +msgid "grid.action.deleteFormat" +msgstr "Delete this format" + +msgid "grid.action.addFormat" +msgstr "Add publication format" + +msgid "grid.action.approveProof" +msgstr "Approve the proof for indexing and inclusion in the catalog" + +msgid "grid.action.pageProofApproved" +msgstr "Page proofs file is ready for publication" + +msgid "grid.action.newCatalogEntry" +msgstr "New Catalog Entry" + +msgid "grid.action.publicCatalog" +msgstr "View this item in the catalog" + +msgid "grid.action.feature" +msgstr "Toggle the feature display" + +msgid "grid.action.featureMonograph" +msgstr "Feature this in the catalog carousel" + +msgid "grid.action.releaseMonograph" +msgstr "Mark this submission as a 'new release'" + +msgid "grid.action.manageCategories" +msgstr "Configure categories for this press" + +msgid "grid.action.manageSeries" +msgstr "Configure series for this press" + +msgid "grid.action.addCode" +msgstr "Add Code" + +msgid "grid.action.editCode" +msgstr "Edit this Code" + +msgid "grid.action.deleteCode" +msgstr "Delete this Code" + +msgid "grid.action.addRights" +msgstr "Add Sales Rights" + +msgid "grid.action.editRights" +msgstr "Edit these rights" + +msgid "grid.action.deleteRights" +msgstr "Delete these rights" + +msgid "grid.action.addMarket" +msgstr "Add Market" + +msgid "grid.action.editMarket" +msgstr "Edit this Market" + +msgid "grid.action.deleteMarket" +msgstr "Delete this Market" + +msgid "grid.action.addDate" +msgstr "Add publication date" + +msgid "grid.action.editDate" +msgstr "Edit this Date" + +msgid "grid.action.deleteDate" +msgstr "Delete this Date" + +msgid "grid.action.createContext" +msgstr "Create a new Press" + +msgid "grid.action.publicationFormatTab" +msgstr "Show the publication format tab" + +msgid "grid.action.moreAnnouncements" +msgstr "Go to press announcements page" + +msgid "grid.action.submissionEmail" +msgstr "Click to read this email" + +msgid "grid.action.approveProofs" +msgstr "View the proofs grid" + +msgid "grid.action.proofApproved" +msgstr "Format has been proofed" + +msgid "grid.action.availableRepresentation" +msgstr "Approve/disapprove this format" + +msgid "grid.action.formatAvailable" +msgstr "Toggle the availability of this format on and off" + +msgid "grid.reviewAttachments.add" +msgstr "Add Attachment to Review" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Available Files" + +msgid "series.series" +msgstr "Series" + +msgid "series.featured.description" +msgstr "This series will appear on the main navigation" + +msgid "series.path" +msgstr "Path" + +msgid "catalog.manage" +msgstr "Catalog Management" + +msgid "catalog.manage.newReleases" +msgstr "New Releases" + +msgid "catalog.manage.category" +msgstr "Category" + +msgid "catalog.manage.series" +msgstr "Series" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Please enter a valid ISSN." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Online and print ISSN must not be the same." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Online ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "Print ISSN" + +msgid "catalog.selectSeries" +msgstr "Select Series" + +msgid "catalog.selectCategory" +msgstr "Select Category" + +msgid "catalog.manage.homepageDescription" +msgstr "The cover image of selected books appears toward the top of the homepage as a scrollable set. Click 'Feature', then the star to add a book to the carousel; click the exclamation point to feature as a new release; drag and drop to order." + +msgid "catalog.manage.categoryDescription" +msgstr "Click 'Feature', then the star to select a featured book for this category; drag and drop to order." + +msgid "catalog.manage.seriesDescription" +msgstr "Click 'Feature', then the star to select a featured book for this series; drag and drop to order. Series are identified with an editor(s) and a series title, within a category or independently." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Carousel" + +msgid "catalog.manage.newRelease" +msgstr "Release" + +msgid "catalog.manage.manageSeries" +msgstr "Manage Series" + +msgid "catalog.manage.manageCategories" +msgstr "Manage Categories" + +msgid "catalog.manage.noMonographs" +msgstr "There are no assigned monographs." + +msgid "catalog.manage.featured" +msgstr "Featured" + +msgid "catalog.manage.categoryFeatured" +msgstr "Featured in category" + +msgid "catalog.manage.seriesFeatured" +msgstr "Featured in series" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monograph is featured." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monograph is not featured." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Monograph is marked as a new release." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Monograph is unmarked as a new release." + +msgid "catalog.manage.feature.newRelease" +msgstr "New release" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "New release in category" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "New release in series" + +msgid "catalog.manage.nonOrderable" +msgstr "This monograph is not orderable until it's featured." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Search by title or author" + +msgid "catalog.manage.isFeatured" +msgstr "This monograph is featured. Make this monograph not featured." + +msgid "catalog.manage.isNotFeatured" +msgstr "This monograph is not featured. Make this monograph featured." + +msgid "catalog.manage.isNewRelease" +msgstr "This monograph is a new release. Make this monograph not a new release." + +msgid "catalog.manage.isNotNewRelease" +msgstr "This monograph is not a new release. Make this monograph a new release." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "No submissions were selected to be added to the catalog." + +msgid "catalog.manage.submissionsNotFound" +msgstr "One or more of the submissions could not be found." + +msgid "catalog.manage.findSubmissions" +msgstr "Find monographs to add to the catalog" + +msgid "catalog.noTitles" +msgstr "No titles have been published yet." + +msgid "catalog.noTitlesNew" +msgstr "No new releases are available at this time." + +msgid "catalog.noTitlesSearch" +msgstr "No titles were found which matched your search for \"{$searchQuery}\"." + +msgid "catalog.feature" +msgstr "Feature" + +msgid "catalog.featured" +msgstr "Featured" + +msgid "catalog.featuredBooks" +msgstr "Featured Books" + +msgid "catalog.foundTitleSearch" +msgstr "One title was found which matched your search for \"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "{$number} titles were found which matched your search for \"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "All Books" + +msgid "catalog.newReleases" +msgstr "New Releases" + +msgid "catalog.dateAdded" +msgstr "Added" + +msgid "catalog.publicationInfo" +msgstr "Publication Info" + +msgid "catalog.published" +msgstr "Published" + +msgid "catalog.forthcoming" +msgstr "Forthcoming" + +msgid "catalog.categories" +msgstr "Categories" + +msgid "catalog.parentCategory" +msgstr "Parent Category" + +msgid "catalog.category.subcategories" +msgstr "Subcategories" + +msgid "catalog.aboutTheAuthor" +msgstr "About the {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "Please note: In order to purchase items, you will need to log in first. Selecting an item to purchase will direct you to the login page. Any item marked with an Open Access icon may be downloaded free of charge, without logging in." + +msgid "catalog.sortBy" +msgstr "Order of monographs" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Choose how to order books in this series." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Choose how to order books in this category." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Choose how to order books in the catalog." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Series position (lowest first)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Series position (highest first)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} view of the file {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Return to view details about {$monographTitle}" + +msgid "submission.search" +msgstr "Book Search" + +msgid "common.publication" +msgstr "Monograph" + +msgid "common.publications" +msgstr "Monographs" + +msgid "common.prefix" +msgstr "Prefix" + +msgid "common.preview" +msgstr "Preview" + +msgid "common.feature" +msgstr "Feature" + +msgid "common.searchCatalog" +msgstr "Search Catalog" + +msgid "common.moreInfo" +msgstr "More Information" + +msgid "common.listbuilder.completeForm" +msgstr "Please fill out the form completely." + +msgid "common.listbuilder.selectValidOption" +msgstr "Please select a valid option from the list." + +msgid "common.listbuilder.itemExists" +msgstr "You cannot add the same item twice." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Homepage Header" + +msgid "navigation.catalog" +msgstr "Catalog" + +msgid "navigation.competingInterestPolicy" +msgstr "Competing Interest Policy" + +msgid "navigation.catalog.allMonographs" +msgstr "All Monographs" + +msgid "navigation.catalog.manage" +msgstr "Manage" + +msgid "navigation.catalog.administration.short" +msgstr "Administration" + +msgid "navigation.catalog.administration" +msgstr "Catalog Administration" + +msgid "navigation.catalog.administration.categories" +msgstr "Categories" + +msgid "navigation.catalog.administration.series" +msgstr "Series" + +msgid "navigation.infoForAuthors" +msgstr "For Authors" + +msgid "navigation.infoForLibrarians" +msgstr "For Librarians" + +msgid "navigation.infoForAuthors.long" +msgstr "Information For Authors" + +msgid "navigation.infoForLibrarians.long" +msgstr "Information For Librarians" + +msgid "navigation.newReleases" +msgstr "New Releases" + +msgid "navigation.published" +msgstr "Published" + +msgid "navigation.wizard" +msgstr "Wizard" + +msgid "navigation.linksAndMedia" +msgstr "Links and Social Media" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Link to your catalog." + +msgid "navigation.skip.spotlights" +msgstr "Skip to spotlights" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Series" + +msgid "navigation.navigationMenus.series.description" +msgstr "Link to a series." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Category" + +msgid "navigation.navigationMenus.category.description" +msgstr "Link to a category." + +msgid "navigation.navigationMenus.newRelease" +msgstr "New Releases" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Link to your New Releases." + +msgid "context.contexts" +msgstr "Presses" + +msgid "context.context" +msgstr "Press" + +msgid "context.current" +msgstr "Current Press:" + +msgid "context.select" +msgstr "Switch to another press:" + +msgid "user.authorization.representationNotFound" +msgstr "The requested publication format could not be found." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Include users with no roles in this press." + +msgid "user.noRoles.submitMonograph" +msgstr "Submit a Proposal" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "Submit an Monograph: Author registration is currently disabled." + +msgid "user.noRoles.regReviewer" +msgstr "Register as a Reviewer" + +msgid "user.noRoles.regReviewerClosed" +msgstr "Register as a Reviewer: Reviewer registration is currently disabled." + +msgid "user.reviewerPrompt" +msgstr "Would you be willing to review submissions to this press?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Yes, request the {$userGroup} role." + +msgid "user.reviewerPrompt.optin" +msgstr "Yes, I would like to be contacted with requests to review submissions to this press." + +msgid "user.register.contextsPrompt" +msgstr "Which presses on this site would you like to register with?" + +msgid "user.register.otherContextRoles" +msgstr "Request the following roles." + +msgid "user.register.noContextReviewerInterests" +msgstr "If you requested to be a reviewer for any press, please enter your subject interests." + +msgid "user.role.manager" +msgstr "Press Manager" + +msgid "user.role.pressEditor" +msgstr "Press Editor" + +msgid "user.role.subEditor" +msgstr "Series Editor" + +msgid "user.role.copyeditor" +msgstr "Copyeditor" + +msgid "user.role.proofreader" +msgstr "Proofreader" + +msgid "user.role.productionEditor" +msgstr "Production Editor" + +msgid "user.role.managers" +msgstr "Press Managers" + +msgid "user.role.subEditors" +msgstr "Series Editors" + +msgid "user.role.editors" +msgstr "Editors" + +msgid "user.role.copyeditors" +msgstr "Copyeditors" + +msgid "user.role.proofreaders" +msgstr "Proofreaders" + +msgid "user.role.productionEditors" +msgstr "Production Editors" + +msgid "user.register.selectContext" +msgstr "Select a press to register with:" + +msgid "user.register.noContexts" +msgstr "There are no presses you may register with on this site." + +msgid "user.register.privacyStatement" +msgstr "Privacy Statement" + +msgid "user.register.registrationDisabled" +msgstr "This press is currently not accepting user registrations." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "The password you entered is not long enough." + +msgid "user.register.readerDescription" +msgstr "Notified by email on publication of a monograph." + +msgid "user.register.authorDescription" +msgstr "Able to submit items to the press." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Willing to conduct peer review of submissions to the press." + +msgid "user.register.reviewerDescription" +msgstr "Willing to conduct peer review of submissions to the site." + +msgid "user.register.reviewerInterests" +msgstr "Identify reviewing interests (substantive areas and research methods):" + +msgid "user.register.form.userGroupRequired" +msgstr "You must select at least one role" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "Yes, I agree to have my data collected and stored according to this press's privacy statement." + +msgid "site.noPresses" +msgstr "There are no presses available." + +msgid "site.pressView" +msgstr "View Press Website" + +msgid "about.pressContact" +msgstr "Press Contact" + +msgid "about.aboutContext" +msgstr "About the Press" + +msgid "about.editorialTeam" +msgstr "Editorial Team" + +msgid "about.editorialPolicies" +msgstr "Editorial Policies" + +msgid "about.focusAndScope" +msgstr "Focus and Scope" + +msgid "about.seriesPolicies" +msgstr "Series and Category Policies" + +msgid "about.submissions" +msgstr "Submissions" + +msgid "about.onlineSubmissions" +msgstr "Online Submissions" + +msgid "about.onlineSubmissions.login" +msgstr "Login" + +msgid "about.onlineSubmissions.register" +msgstr "Register" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} or {$register} to make a submission." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} or {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Make a new submission" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "view your pending submissions" + +msgid "about.authorGuidelines" +msgstr "Author Guidelines" + +msgid "about.submissionPreparationChecklist" +msgstr "Submission Preparation Checklist" + +msgid "about.submissionPreparationChecklist.description" +msgstr "As part of the submission process, authors are required to check off their submission's compliance with all of the following items, and submissions may be returned to authors that do not adhere to these guidelines." + +msgid "about.copyrightNotice" +msgstr "Copyright Notice" + +msgid "about.privacyStatement" +msgstr "Privacy Statement" + +msgid "about.reviewPolicy" +msgstr "Peer Review Process" + +msgid "about.publicationFrequency" +msgstr "Publication Frequency" + +msgid "about.openAccessPolicy" +msgstr "Open Access Policy" + +msgid "about.pressSponsorship" +msgstr "Press Sponsorship" + +msgid "about.aboutThisPublishingSystem" +msgstr "More information about the publishing system, Platform and Workflow by OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "OMP Editorial and Publishing Process" + +msgid "about.aboutSoftware" +msgstr "About Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"This press uses Open Monograph Press {$ompVersion}, which is open source " +"press management and publishing software developed, supported, and freely " +"distributed by the Public Knowledge Project under the GNU General Public " +"License. Visit PKP's website to learn more " +"about the software. Please contact the " +"press directly with questions about the press and submissions to the " +"press." + +msgid "about.aboutOMPSite" +msgstr "" +"This press uses Open Monograph Press {$ompVersion}, which is open source " +"press management and publishing software developed, supported, and freely " +"distributed by the Public Knowledge Project under the GNU General Public " +"License. Visit PKP's website to learn more " +"about the software. Please contact the site directly with questions " +"about its presses and submissions to its presses." + +msgid "help.searchReturnResults" +msgstr "Return to Search Results" + +msgid "help.goToEditPage" +msgstr "Open a new page to edit this information" + +msgid "installer.appInstallation" +msgstr "OMP Installation" + +msgid "installer.ompUpgrade" +msgstr "OMP Upgrade" + +msgid "installer.installApplication" +msgstr "Install Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "If you are upgrading an existing installation of OMP, click here to proceed." + +msgid "installer.installationInstructions" +msgstr "" +"

    Thank you for downloading the Public Knowledge Project's Open " +"Monograph Press {$version}. Before proceeding, please read the README file included with this " +"software. For more information about the Public Knowledge Project and its " +"software projects, please visit the PKP web site. If you have bug reports or technical support " +"inquiries about Open Monograph Press, see the support forum or visit " +"PKP's online bug reporting system. Although the support forum is the " +"preferred method of contact, you can also email the team at pkp.contact@gmail.com.

    " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Pre-Installation Steps" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

    1. The following files and directories (and their contents) must be made writable:

    \n" +"
      \n" +"\t
    • config.inc.php is writable (optional): {$writable_config}
    • \n" +"\t
    • public/ is writable: {$writable_public}
    • \n" +"\t
    • cache/ is writable: {$writable_cache}
    • \n" +"\t
    • cache/t_cache/ is writable: {$writable_templates_cache}
    • \n" +"\t
    • cache/t_compile/ is writable: {$writable_templates_compile}
    • \n" +"\t
    • cache/_db is writable: {$writable_db_cache}
    • \n" +"
    \n" +"\n" +"

    2. A directory to store uploaded files must be created and made writable (see \"File Settings\" below).

    " + +msgid "installer.upgradeInstructions" +msgstr "" +"

    OMP Version {$version}

    \n" +"\n" +"

    Thank you for downloading the Public Knowledge Project's Open " +"Monograph Press. Before proceeding, please read the README and UPGRADE files included with this software. For more information " +"about the Public Knowledge Project and its software projects, please visit " +"the PKP web site. If " +"you have bug reports or technical support inquiries about Open Monograph " +"Press, see the " +"support forum or visit PKP's online bug reporting system. Although the " +"support forum is the preferred method of contact, you can also email the " +"team at pkp.contact@gmail.com.

    \n" +"

    It is strongly recommended that you back up your " +"database, files directory, and OMP installation directory before " +"proceeding.

    " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"For complete Unicode support PHP must be compiled with support for the mbstring library " +"(enabled by default in most recent PHP installations). You may experience " +"problems using extended character sets if your server does not meet these " +"requirements.\n" +"

    \n" +"Your server currently supports mbstring: {$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "Your server currently allows file uploads: {$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "Your server currently allows a maximum file upload size of: {$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "The primary language to use for this system. Please consult the OMP documentation if you are interested in support for languages not listed here." + +msgid "installer.additionalLocalesInstructions" +msgstr "Select any additional languages to support in this system. These languages will be available for use by presses hosted on the site. Additional languages can also be installed at any time from the site administration interface. Locales marked * may be incomplete." + +msgid "installer.filesDirInstructions" +msgstr "Enter full pathname to an existing directory where uploaded files are to be kept. This directory should not be directly web-accessible. Please ensure that this directory exists and is writable prior to installation. Windows path names should use forward slashes, e.g. \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "OMP requires access to a SQL database to store its data. See the system requirements above for a list of supported databases. In the fields below, provide the settings to be used to connect to the database." + +msgid "installer.upgradeApplication" +msgstr "Upgrade Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

    IMPORTANT!

    \n" +"

    The installer could not automatically overwrite the configuration file. Before attempting to use the system, please open config.inc.php in a suitable text editor and replace its contents with the contents of the text field below.

    " + +msgid "installer.installationComplete" +msgstr "" +"

    Installation of OMP has completed successfully.

    \n" +"

    To begin using the system, login with the " +"username and password entered on the previous page.

    \n" +"

    Visit our community forum or " +"sign up to our developer newsletter " +"to receive security notices, and updates on upcoming releases, new plugins, and planned features.

    " + +msgid "installer.upgradeComplete" +msgstr "" +"

    Upgrade of OMP to version {$version} has completed successfully.

    \n" +"

    Don't forget to set the \"installed\" setting in your " +"config.inc.php configuration file back to On.

    \n" +"

    Visit our community forum or " +"sign up to our developer newsletter " +"to receive security notices, and updates on upcoming releases, new plugins, and planned features.

    " + +msgid "log.review.reviewDueDateSet" +msgstr "The due date for the round {$round} review of submission {$submissionId} by {$reviewerName} has been set to {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "{$reviewerName} has declined the round {$round} review for submission {$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "{$reviewerName} has accepted the round {$round} review for submission {$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "{$editorName} has marked the round {$round} review for submission {$submissionId} as unconsidered." + +msgid "log.editor.decision" +msgstr "An editor decision ({$decision}) for monograph {$submissionId} was recorded by {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"An editor recommendation ({$decision}) for monograph {$submissionId} was " +"recorded by {$editorName}." + +msgid "log.editor.archived" +msgstr "The submission {$submissionId} has been archived." + +msgid "log.editor.restored" +msgstr "The submission {$submissionId} has been restored to the queue." + +msgid "log.editor.editorAssigned" +msgstr "{$editorName} has been assigned as editor to submission {$submissionId}." + +msgid "log.proofread.assign" +msgstr "{$assignerName} has assigned {$proofreaderName} to proofread submission {$submissionId}." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} has submitted {$submissionId} for scheduling." + +msgid "log.imported" +msgstr "{$userName} has imported monograph {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Identification Code added." + +msgid "notification.editedIdentificationCode" +msgstr "Identification Code edited." + +msgid "notification.removedIdentificationCode" +msgstr "Identification Code removed." + +msgid "notification.addedPublicationDate" +msgstr "Publication Date added." + +msgid "notification.editedPublicationDate" +msgstr "Publication Date edited." + +msgid "notification.removedPublicationDate" +msgstr "Publication Date removed." + +msgid "notification.addedPublicationFormat" +msgstr "Publication Format added." + +msgid "notification.editedPublicationFormat" +msgstr "Publication Format edited." + +msgid "notification.removedPublicationFormat" +msgstr "Publication Format removed." + +msgid "notification.addedSalesRights" +msgstr "Sales Rights added." + +msgid "notification.editedSalesRights" +msgstr "Sales Rights edited." + +msgid "notification.removedSalesRights" +msgstr "Sales Rights removed." + +msgid "notification.addedRepresentative" +msgstr "Representative added." + +msgid "notification.editedRepresentative" +msgstr "Representative edited." + +msgid "notification.removedRepresentative" +msgstr "Representative removed." + +msgid "notification.addedMarket" +msgstr "Market added." + +msgid "notification.editedMarket" +msgstr "Market edited." + +msgid "notification.removedMarket" +msgstr "Market removed." + +msgid "notification.addedSpotlight" +msgstr "Spotlight added." + +msgid "notification.editedSpotlight" +msgstr "Spotlight edited." + +msgid "notification.removedSpotlight" +msgstr "Spotlight removed." + +msgid "notification.savedCatalogMetadata" +msgstr "Catalog metadata saved." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Publication format metadata saved." + +msgid "notification.proofsApproved" +msgstr "Proofs approved." + +msgid "notification.removedSubmission" +msgstr "Submission deleted." + +msgid "notification.type.submissionSubmitted" +msgstr "A new monograph, \"{$title},\" has been submitted." + +msgid "notification.type.editing" +msgstr "Editing Events" + +msgid "notification.type.reviewing" +msgstr "Reviewing Events" + +msgid "notification.type.site" +msgstr "Site Events" + +msgid "notification.type.submissions" +msgstr "Submission Events" + +msgid "notification.type.userComment" +msgstr "A reader has made a comment on \"{$title}\"." + +msgid "notification.type.public" +msgstr "Public Announcements" + +msgid "notification.type.editorAssignmentTask" +msgstr "A new monograph has been submitted to which an editor needs to be assigned." + +msgid "notification.type.copyeditorRequest" +msgstr "You have been asked to review copyedits for \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "You have been asked to review layouts for \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "You have been asked to create an index for \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Internal review process started." + +msgid "notification.type.approveSubmission" +msgstr "This submission is currently awaiting approval in the Catalog Entry tool before it will appear in the public catalog." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Awaiting approval." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "The monograph will not be listed in the catalog until it has been published. To add this book to the catalog, click on the Publication tab." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "No payment method configured." + +msgid "notification.type.configurePaymentMethod" +msgstr "A configured payment method is required before you can define e-commerce settings." + +msgid "notification.type.visitCatalogTitle" +msgstr "Catalog Management" + +msgid "notification.type.visitCatalog" +msgstr "The monograph has been approved. Please visit Marketing and Publication to manage its catalog details, using the links just above." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "You have been denied access because you do not seem to be a valid reviewer for this monograph." + +msgid "user.authorization.monographAuthor" +msgstr "You have been denied access because you do not seem to be the author of this monograph." + +msgid "user.authorization.monographReviewer" +msgstr "You have been denied access because you do not seem to be an assigned reviewer of this monograph." + +msgid "user.authorization.monographFile" +msgstr "You have been denied access to the specified monograph file." + +msgid "user.authorization.invalidMonograph" +msgstr "Invalid monograph or no monograph requested!" + +msgid "user.authorization.noContext" +msgstr "No press was found that matched your request." + +msgid "user.authorization.seriesAssignment" +msgstr "You are trying to access a monograph that is not part of your series." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Access denied! You have not been assigned to this workflow stage." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "Access denied! The user group you are currently acting under has not been assigned to this workflow stage. Please check your press settings." + +msgid "payment.directSales" +msgstr "Download From Press Website" + +msgid "payment.directSales.price" +msgstr "Price" + +msgid "payment.directSales.availability" +msgstr "Availability" + +msgid "payment.directSales.catalog" +msgstr "Catalog" + +msgid "payment.directSales.approved" +msgstr "Approved" + +msgid "payment.directSales.priceCurrency" +msgstr "Price ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Prices should be numeric only. Do not include currency symbols." + +msgid "payment.directSales.directSales" +msgstr "Direct Sales" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Not Available" + +msgid "payment.directSales.notSet" +msgstr "Not Set" + +msgid "payment.directSales.openAccess" +msgstr "Open Access" + +msgid "payment.directSales.price.description" +msgstr "File formats can be made available for downloading from the press website through open access at no cost to readers or direct sales (using an online payment processor, as configured in Distribution). For this file indicate the basis of access." + +msgid "payment.directSales.validPriceRequired" +msgstr "A valid numeric price is required." + +msgid "payment.directSales.purchase" +msgstr "Purchase {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Download {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Purchase Monograph or Chapter Download" + +msgid "payment.directSales.monograph.description" +msgstr "This transaction is for the purchase of a direct download of a single monograph or monograph chapter." + +msgid "debug.notes.helpMappingLoad" +msgstr "Reloaded XML help mapping file {$filename} in search of {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Book" + +msgid "submission.pdf.download" +msgstr "Download this PDF file" + +msgid "user.profile.form.showOtherContexts" +msgstr "Register with other presses" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Hide other presses" + +msgid "submission.round" +msgstr "Round {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "An invalid published submission was specified." + +msgid "catalog.coverImageTitle" +msgstr "Cover Image" + +msgid "grid.catalogEntry.chapters" +msgstr "Chapters" + +msgid "search.results.orderBy.article" +msgstr "Article Title" + +msgid "search.results.orderBy.author" +msgstr "Author" + +msgid "search.results.orderBy.date" +msgstr "Publication Date" + +msgid "search.results.orderBy.monograph" +msgstr "Monograph Title" + +msgid "search.results.orderBy.press" +msgstr "Press Title" + +msgid "search.results.orderBy.popularityAll" +msgstr "Popularity (All Time)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Popularity (Last Month)" + +msgid "search.results.orderBy.relevance" +msgstr "Relevance" + +msgid "search.results.orderDir.asc" +msgstr "Ascending" + +msgid "search.results.orderDir.desc" +msgstr "Descending" + +msgid "section.section" +msgstr "Series" + +msgid "search.cli.rebuildIndex.indexing" +msgstr "Indexing \"{$pressName}\"" + +msgid "search.cli.rebuildIndex.indexingByPressNotSupported" +msgstr "This search implementation does not allow per-press re-indexing." + +msgid "search.cli.rebuildIndex.unknownPress" +msgstr "The given press path \"{$pressPath}\" could not be resolved to a press." diff --git a/locale/en/manager.po b/locale/en/manager.po new file mode 100644 index 00000000000..83300b3f6c6 --- /dev/null +++ b/locale/en/manager.po @@ -0,0 +1,1434 @@ +# cicilia conceiçao de maria , 2021. +# Petro Bilous , 2022. +# Jonas Raoni Soares da Silva , 2022. +# Marc Bria , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2023-04-26 17:49+0000\n" +"Last-Translator: Marc Bria \n" +"Language-Team: English " +"\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "This will replace any locale-specific press settings you had for this locale" + +msgid "manager.languages.noneAvailable" +msgstr "Sorry, no additional languages are available. Contact your site administrator if you wish to use additional languages with this press." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "This will be the default language for the press site." + +msgid "manager.series.form.mustAllowPermission" +msgstr "Please ensure that at least one checkbox is checked for each Series Editor assignment." + +msgid "manager.series.form.reviewFormId" +msgstr "Please ensure that you have chosen a valid review form." + +msgid "manager.series.submissionIndexing" +msgstr "Will not be included in the indexing of the press" + +msgid "manager.series.editorRestriction" +msgstr "Items can only be submitted by Editors and Series Editors." + +msgid "manager.series.confirmDelete" +msgstr "Are you sure you want to permanently delete this series?" + +msgid "manager.series.indexed" +msgstr "Indexed" + +msgid "manager.series.open" +msgstr "Open Submissions" + +msgid "manager.series.readingTools" +msgstr "Reading Tools" + +msgid "manager.series.submissionReview" +msgstr "Will not be peer-reviewed" + +msgid "manager.series.submissionsToThisSection" +msgstr "Submissions made to this series" + +msgid "manager.series.abstractsNotRequired" +msgstr "Do not require abstracts" + +msgid "manager.series.disableComments" +msgstr "Disable reader comments for this series." + +msgid "manager.series.book" +msgstr "Book Series" + +msgid "manager.series.create" +msgstr "Create Series" + +msgid "manager.series.policy" +msgstr "Series description" + +msgid "manager.series.assigned" +msgstr "Editors for this Series" + +msgid "manager.series.seriesEditorInstructions" +msgstr "Add a Series Editor to this series from the available Series Editors. Once added, designate whether the Series Editor will oversee the REVIEW (peer review) and/or the EDITING (copyediting, layout and proofreading) of submissions to this series. Series Editors are created by clicking Series Editors under Roles in Press Management." + +msgid "manager.series.hideAbout" +msgstr "Omit this series from About the Press." + +msgid "manager.series.unassigned" +msgstr "Available Series Editors" + +msgid "manager.series.form.abbrevRequired" +msgstr "An abbreviated title is required for the series." + +msgid "manager.series.form.titleRequired" +msgstr "A title is required for the series." + +msgid "manager.series.noneCreated" +msgstr "No series have been created." + +msgid "manager.series.existingUsers" +msgstr "Existing users" + +msgid "manager.series.seriesTitle" +msgstr "Series Title" + +msgid "manager.series.restricted" +msgstr "Don't allow authors to submit directly to this series." + +msgid "manager.sections.alertDelete" +msgstr "Before this series can be deleted, you must move associated submissions with this series to other series." + +msgid "manager.payment.generalOptions" +msgstr "General Options" + +msgid "manager.payment.options.enablePayments" +msgstr "Payments will be enabled for this press. Note that users will be required to log in to make payments." + +msgid "manager.payment.success" +msgstr "The payment settings have been updated." + +msgid "manager.settings" +msgstr "Settings" + +msgid "manager.settings.pressSettings" +msgstr "Press Settings" + +msgid "manager.settings.press" +msgstr "Press" + +msgid "manager.settings.publisher.identity" +msgstr "Publisher Identity" + +msgid "manager.settings.publisher.identity.description" +msgstr "These fields are required to publish valid ONIX metadata." + +msgid "manager.settings.publisher" +msgstr "Press Publisher Name" + +msgid "manager.settings.location" +msgstr "Geographical Location" + +msgid "manager.settings.publisherCode" +msgstr "Publisher Code" + +msgid "manager.settings.publisherCodeType" +msgstr "Publisher Code Type" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "This is not a valid Publisher Code Type." + +msgid "manager.settings.distributionDescription" +msgstr "All settings specific to the distribution process (notification, indexing, archiving, payment, reading tools)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Monograph file downloads" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Monograph abstract page views" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Monograph abstract and downloads" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Series main page views" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Press main page views" + +msgid "manager.tools" +msgstr "Tools" + +msgid "manager.tools.importExport" +msgstr "All tools specific to importing and exporting data (presses, monographs, users)" + +msgid "manager.tools.statistics" +msgstr "Tools to generate reports related to usage statistics (catalog index page view, monograph abstract page views, monograph file downloads)" + +msgid "manager.users.availableRoles" +msgstr "Available Roles" + +msgid "manager.users.currentRoles" +msgstr "Current Roles" + +msgid "manager.users.selectRole" +msgstr "Select Role" + +msgid "manager.people.allEnrolledUsers" +msgstr "Users Enrolled in this Press" + +msgid "manager.people.allPresses" +msgstr "All Presses" + +msgid "manager.people.allSiteUsers" +msgstr "Enroll a User from this Site in this Press" + +msgid "manager.people.allUsers" +msgstr "All Enrolled Users" + +msgid "manager.people.confirmRemove" +msgstr "Remove this user from this press? This action will unenroll the user from all roles within this press." + +msgid "manager.people.enrollExistingUser" +msgstr "Enroll an Existing User" + +msgid "manager.people.enrollSyncPress" +msgstr "With press" + +msgid "manager.people.mergeUsers.from.description" +msgstr "Select a user to merge into another user account (e.g., when someone has two user accounts). The account selected first will be deleted and its submissions, assignments, etc. will be attributed to the second account." + +msgid "manager.people.mergeUsers.into.description" +msgstr "Select a user to whom to attribute the previous user's authorships, editing assignments, etc." + +msgid "manager.people.syncUserDescription" +msgstr "Enrollment synchronization will enroll all users enrolled in the specified role in the specified press into the same role in this press. This function allows a common set of users (e.g., Reviewers) to be synchronized between presses." + +msgid "manager.people.confirmDisable" +msgstr "" +"Disable this user? This will prevent the user from logging into the system.\n" +"\n" +"You may optionally provide the user with a reason for disabling their account." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Sorry, you do not have administrative rights over this user. This may be because:\n" +"\t\t
      \n" +"\t\t\t
    • The user is a site administrator
    • \n" +"\t\t\t
    • The user is active in presses you do not manage
    • \n" +"\t\t
    \n" +"\tThis task must be performed by a site administrator.\n" +"\t" + +msgid "manager.system" +msgstr "System Settings" + +msgid "manager.system.archiving" +msgstr "Archiving" + +msgid "manager.system.reviewForms" +msgstr "Review Forms" + +msgid "manager.system.readingTools" +msgstr "Reading Tools" + +msgid "manager.system.payments" +msgstr "Payments" + +msgid "user.authorization.pluginLevel" +msgstr "You do not have sufficient privileges to manage this plugin." + +msgid "manager.pressManagement" +msgstr "Press Management" + +msgid "manager.setup" +msgstr "Setup" + +msgid "manager.setup.aboutItemContent" +msgstr "Content" + +msgid "manager.setup.addAboutItem" +msgstr "Add About Item" + +msgid "manager.setup.addChecklistItem" +msgstr "Add Checklist Item" + +msgid "manager.setup.addItem" +msgstr "Add Item" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Add Item to Appear in \"About the Press\"" + +msgid "manager.setup.addNavItem" +msgstr "Add Item" + +msgid "manager.setup.addSponsor" +msgstr "Add Sponsoring Organization" + +msgid "manager.setup.announcements" +msgstr "Announcements" + +msgid "manager.setup.announcements.success" +msgstr "The announcements settings have been updated." + +msgid "manager.setup.announcementsDescription" +msgstr "Announcements may be published to inform readers of press news and events. Published announcements will appear on the Announcements page." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Additional Information" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "Enter any additional information that should be displayed to readers on the Announcements page." + +msgid "manager.setup.appearInAboutPress" +msgstr "(To appear in About the Press) " + +msgid "manager.setup.contextAbout" +msgstr "About the Press" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Include any information about your press which may be of interest to " +"readers, authors or reviewers. This could include your open access policy, " +"the focus and scope of the press, sponsorship disclosure, and the history of " +"the press." + +msgid "manager.setup.contextSummary" +msgstr "Press Summary" + +msgid "manager.setup.copyediting" +msgstr "Copyeditors" + +msgid "manager.setup.copyeditInstructions" +msgstr "Copyedit Instructions" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "The Copyedit Instructions will be made available to Copyeditors, Authors, and Section Editors in the Submission Editing stage. Below is a default set of instructions in HTML, which can be modified or replaced by the Press Manager at any point (in HTML or plain text)." + +msgid "manager.setup.copyrightNotice" +msgstr "Copyright notice" + +msgid "manager.setup.coverage" +msgstr "Coverage" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Cover Image Max Height" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Cover Image Max Width" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "Images will be reduced when larger than this size but will never be blown up or stretched to fit these dimensions." + +msgid "manager.setup.customizingTheLook" +msgstr "Step 5. Customizing the Look & Feel" + +msgid "manager.setup.customTags" +msgstr "Custom tags" + +msgid "manager.setup.customTagsDescription" +msgstr "Custom HTML header tags to be inserted in the header of every page (e.g., META tags)." + +msgid "manager.setup.details" +msgstr "Details" + +msgid "manager.setup.details.description" +msgstr "Name of press, contacts, sponsors, and search engines." + +msgid "manager.setup.disableUserRegistration" +msgstr "The Press Manager will register all user accounts. Editors or Section Editors may register user accounts for reviewers." + +msgid "manager.setup.discipline" +msgstr "Academic Discipline and Sub-Disciplines" + +msgid "manager.setup.disciplineDescription" +msgstr "Useful when press crosses disciplinary boundaries and/or authors submit multidisciplinary items." + +msgid "manager.setup.disciplineExamples" +msgstr "(E.g., History; Education; Sociology; Psychology; Cultural Studies; Law)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "Provide examples of relevant academic disciplines for this press" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Add the table of contents for the current monograph (if available)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Homepage Content" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Display featured books on the home page" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Featured Books" + +msgid "manager.setup.displayInSpotlight" +msgstr "Display books in the spotlight on the home page" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Spotlight" + +msgid "manager.setup.displayNewReleases" +msgstr "Display new releases on the home page" + +msgid "manager.setup.displayNewReleases.label" +msgstr "New Releases" + +msgid "manager.setup.enableDois.description" +msgstr "Allow Digital Object Identifiers (DOIs) to be assigned to work published by this press." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "Select the types of work published by this press that should be assigned DOIs. Most presses assign DOIs to monographs/chapters, but you may wish to assign DOIs to all of the published items." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "Use default patterns.
    %p.%m for monographs
    %p.%m.c%c for chapters
    %p.%m.%f for publication formats
    %p.%m.%f.%s for files." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "Upon reaching the copyediting stage" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Format / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Editor Decision" + +msgid "manager.setup.emailBounceAddress" +msgstr "Bounce Address" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "Any undeliverable emails will result in an error message to this address." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "In order to send undeliverable emails to a bounce address, the site administrator must enable the allow_envelope_sender option in the site configuration file. Server configuration may be required, as indicated in the OMP documentation." + +msgid "manager.setup.emails" +msgstr "Email Identification" + +msgid "manager.setup.emailSignature" +msgstr "Signature" + +msgid "manager.setup.emailSignature.description" +msgstr "Emails sent automatically on behalf of the press will have the following signature added." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Enable announcements" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "Announcements may be published to inform readers of news and events. Published announcements will appear on the Announcements page." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Display on Homepage" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "How many announcements to display on the homepage. Leave this empty to display none." + +msgid "manager.setup.enablePressInstructions" +msgstr "Enable this press to appear publicly on the site" + +msgid "manager.setup.enablePublicMonographId" +msgstr "Custom identifiers will be used to identify published items." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "Custom identifiers will be used to identify galleys (e.g. HTML or PDF files) for published items." + +msgid "manager.setup.enableUserRegistration" +msgstr "Visitors can register a user account with the press." + +msgid "manager.setup.focusAndScope" +msgstr "Focus and Scope of Press" + +msgid "manager.setup.focusAndScope.description" +msgstr "Describe to authors, readers, and librarians the range of monographs and other items the press will publish." + +msgid "manager.setup.focusScope" +msgstr "Focus and Scope" + +msgid "manager.setup.focusScopeDescription" +msgstr "EXAMPLE HTML DATA" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "For Authors to Index Their Work" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP adheres to the Open Archives Initiative Protocol for Metadata Harvesting, which is the " +"emerging standard for providing well-indexed access to electronic research " +"resources on a global scale. The authors will use a similar template to " +"provide metadata for their submission. The Press Manager should select the " +"categories for indexing and present authors with relevant examples to assist " +"them in indexing their work, separating terms with a semi-colon (e.g., term1;" +" term2). The entries should be introduced as examples by using \"E.g.,\" or " +"\"For example,\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "The primary contact email is required." + +msgid "manager.setup.form.contactNameRequired" +msgstr "The primary contact name is required." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "The number of reviewers per submission is required." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "The support email is required." + +msgid "manager.setup.form.supportNameRequired" +msgstr "The support name is required." + +msgid "manager.setup.generalInformation" +msgstr "General Information" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Step 1. Getting Down the Details" + +msgid "manager.setup.guidelines" +msgstr "Guidelines" + +msgid "manager.setup.preparingWorkflow" +msgstr "Step 3. Preparing the workflow" + +msgid "manager.setup.identity" +msgstr "Press Identity" + +msgid "manager.setup.information" +msgstr "Information" + +msgid "manager.setup.information.description" +msgstr "Brief descriptions of the press for librarians and prospective authors and readers. These are made available in the site's sidebar when the Information block has been added." + +msgid "manager.setup.information.forAuthors" +msgstr "For Authors" + +msgid "manager.setup.information.forLibrarians" +msgstr "For Librarians" + +msgid "manager.setup.information.forReaders" +msgstr "For Readers" + +msgid "manager.setup.information.success" +msgstr "The information for this press was updated." + +msgid "manager.setup.institution" +msgstr "Institution" + +msgid "manager.setup.itemsPerPage" +msgstr "Items per page" + +msgid "manager.setup.itemsPerPage.description" +msgstr "Limit the number of items (for example, submissions, users, or editing assignments) to show in a list before showing subsequent items in another page." + +msgid "manager.setup.keyInfo" +msgstr "Key Information" + +msgid "manager.setup.keyInfo.description" +msgstr "Provide a short description of your press and identify editors, managing directors and other members of your editorial team." + +msgid "manager.setup.labelName" +msgstr "Label Name" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Layout Editors" + +msgid "manager.setup.layoutInstructions" +msgstr "Layout Instructions" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "Layout Instructions can be prepared for the formatting of publishing items in the press and be entered below in HTML or plain text. They will be made available to the Layout Editor and Section Editor on the Editing page of each submission. (As each press may employ its own file formats, bibliographic standards, style sheets, etc., a default set of instructions is not provided.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Layout Templates" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "Templates can be uploaded to appear in Layout for each of the standard formats published in the press (e.g., monograph, book review, etc.) using any file format (e.g., pdf, doc, etc.) with annotations added specifying font, size, margins, etc. to serve as a guide for Layout Editors and Proofreaders." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Template File" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Title" + +msgid "manager.setup.lists" +msgstr "Lists" + +msgid "manager.setup.lists.success" +msgstr "The list settings have been updated." + +msgid "manager.setup.look" +msgstr "Look & Feel" + +msgid "manager.setup.look.description" +msgstr "Homepage header, content, press header, footer, navigation bar, and style sheet." + +msgid "manager.setup.settings" +msgstr "Settings" + +msgid "manager.setup.management.description" +msgstr "Access and security, scheduling, announcements, copyediting, layout, and proofreading." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Management of Basic Editorial Steps" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Management and Publishing Setup" + +msgid "manager.setup.managingThePress" +msgstr "Step 4. Managing the Settings" + +msgid "manager.setup.masthead.success" +msgstr "The masthead details for this press have been updated." + +msgid "manager.setup.noImageFileUploaded" +msgstr "No image file uploaded." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "No style sheet uploaded." + +msgid "manager.setup.note" +msgstr "Note" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "When using the Notify Author email, include the email addresses of all co-authors for multiple-author submissions, and not just the submitting user." + +msgid "manager.setup.noUseCopyeditors" +msgstr "Copyediting will be undertaken by an Editor or Section Editor assigned to the submission." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "An Editor or Section Editor assigned to the submission will prepare the HTML, PDF, etc., files." + +msgid "manager.setup.noUseProofreaders" +msgstr "An Editor or Section Editor assigned to the submission will check the galleys." + +msgid "manager.setup.numPageLinks" +msgstr "Page links" + +msgid "manager.setup.numPageLinks.description" +msgstr "Limit the number of links to display to subsequent pages in a list." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Access to Press Content" + +msgid "manager.setup.onlineIssn" +msgstr "Online ISSN" + +msgid "manager.setup.policies" +msgstr "Policies" + +msgid "manager.setup.policies.description" +msgstr "Focus, peer review, sections, privacy, security, and additional about items." + +msgid "manager.setup.privacyStatement.success" +msgstr "The privacy statement has been updated." + +msgid "manager.setup.appearanceDescription" +msgstr "Various components of the press appearance can be configured from this page, including header and footer elements, the press style and theme, and how lists of information are presented to users." + +msgid "manager.setup.pressDescription" +msgstr "Press Summary" + +msgid "manager.setup.pressDescription.description" +msgstr "A brief description of your press." + +msgid "manager.setup.aboutPress" +msgstr "About the Press" + +msgid "manager.setup.aboutPress.description" +msgstr "Include any information about your press which may be of interest to readers, authors or reviewers. This could include your open access policy, the focus and scope of the press, copyright notice, sponsorship disclosure, history of the press, and a privacy statement." + +msgid "manager.setup.pressArchiving" +msgstr "Press Archiving" + +msgid "manager.setup.homepageContent" +msgstr "Press Homepage Content" + +msgid "manager.setup.homepageContentDescription" +msgstr "The press homepage consists of navigation links by default. Additional homepage content can be appended by using one or all of the following options, which will appear in the order shown." + +msgid "manager.setup.pressHomepageContent" +msgstr "Press Homepage Content" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "The press homepage consists of navigation links by default. Additional homepage content can be appended by using one or all of the following options, which will appear in the order shown." + +msgid "manager.setup.contextInitials" +msgstr "Press Initials" + +msgid "manager.setup.selectCountry" +msgstr "Select the country where this press is located, or the country of the mailing address for the press or publisher." + +msgid "manager.setup.layout" +msgstr "Press Layout" + +msgid "manager.setup.pageHeader" +msgstr "Press Page Header" + +#, fuzzy +msgid "manager.setup.pageHeaderDescription" +msgstr "Page Header Description" + +msgid "manager.setup.pressPolicies" +msgstr "Step 2. Press Policies" + +msgid "manager.setup.pressSetup" +msgstr "Press Setup" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Your press setup has been updated." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Invalid style sheet format. Accepted format is .css." + +msgid "manager.setup.pressTheme" +msgstr "Press Theme" + +msgid "manager.setup.pressThumbnail" +msgstr "Press thumbnail" + +msgid "manager.setup.pressThumbnail.description" +msgstr "A small logo or representation of the press that can be used in lists of presses." + +msgid "manager.setup.contextTitle" +msgstr "Press Name" + +msgid "manager.setup.printIssn" +msgstr "Print ISSN" + +msgid "manager.setup.proofingInstructions" +msgstr "Proofing Instructions" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "The Proofreading Instructions will be made available to Proofreaders, Authors, Layout Editors, and Section Editors in the Submission Editing stage. Below is a default set of instructions in HTML, which can be edited or replaced by the Press Manager at any point (in HTML or plain text)." + +msgid "manager.setup.proofreading" +msgstr "Proofreaders" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Provide Layout Editors with instructions." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "Press items can be published collectively, as part of a monograph with its own Table of Contents. Alternatively, individual items can be published as soon as they are ready, by adding them to the \"current\" volume's Table of Contents. Provide readers, in About the Press, with a statement about the system this press will use and its expected frequency of publication." + +msgid "manager.setup.publisher" +msgstr "Publisher" + +msgid "manager.setup.publisherDescription" +msgstr "The name of the organization publishing the press will appear in About the Press." + +msgid "manager.setup.referenceLinking" +msgstr "Reference Linking" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Layout Instructions for Reference Linking" + +msgid "manager.setup.restrictMonographAccess" +msgstr "Users must be registered and log in to view open access content." + +msgid "manager.setup.restrictSiteAccess" +msgstr "Users must be registered and log in to view the press site." + +msgid "manager.setup.reviewGuidelines" +msgstr "External Review Guidelines" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "Provide external reviewers with criteria for judging a submission's suitability for publication in the press, which may include instructions for preparing an effective and helpful review. Reviewers will have an opportunity to provide comments intended for the author and editor, as well as separate comments only for the editor." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Internal Review Guidelines" + +msgid "manager.setup.reviewOptions" +msgstr "Review Options" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Automated Email Reminders" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "To activate these options, the site administrator must enable the scheduled_tasks option in the OMP configuration file. Additional server configuration may be required to support this functionality (which may not be possible on all servers), as indicated in the OMP documentation." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "Editors will rate reviewers on a five-point quality scale after each review." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Restrict File Access" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "Reviewers will have access to the submission file only after agreeing to review it." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Reviewer Access" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "One-click Reviewer Access" + +#, fuzzy +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "Reviewers can be sent a secure link in the email invitation, which will log them in automatically when they click the link." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Include a secure link in the email invitation to reviewers." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Reviewer Ratings" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Reviewer Reminders" + +msgid "manager.setup.reviewPolicy" +msgstr "Review Policy" + +msgid "manager.setup.searchDescription.description" +msgstr "Provide a brief description (50-300 characters) of the press which search engines can display when listing the press in search results." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Search Indexing" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "Help search engines like Google discover and display your site. You are encouraged to submit your sitemap." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "The search engine index settings have been updated." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Sections and Section Editors" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "(If sections are not added, then items are submitted to the Monographs section by default.)" + +#, fuzzy +msgid "manager.setup.sectionsDescription" +msgstr "" +"To create or modify sections for the press (e.g., Monographs, Book Reviews, " +"etc.), go to Section Management.

    Authors on submitting items to " +"the press will designate…" + +msgid "manager.setup.securitySettings" +msgstr "Access and Security Settings" + +msgid "manager.setup.securitySettings.note" +msgstr "Other security- and access-related options can be configured from the Access and Security page." + +msgid "manager.setup.selectEditorDescription" +msgstr "The press editor who will see it through the editorial process." + +msgid "manager.setup.selectSectionDescription" +msgstr "The press series for which the item will be considered." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "Always show galley links and indicate restricted access." + +msgid "manager.setup.siteAccess.view" +msgstr "Site Access" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "View Monograph Content" + +msgid "manager.setup.stepsToPressSite" +msgstr "Five Steps to a Press Web Site" + +msgid "manager.setup.subjectExamples" +msgstr "(E.g., Photosynthesis; Black Holes; Four-Color Map Problem; Bayesian Theory)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Keywords" + +msgid "manager.setup.subjectProvideExamples" +msgstr "Provide examples of keywords or topics as a guide for authors" + +msgid "manager.setup.submissionGuidelines" +msgstr "Submission guidelines" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Checklist item is required." + +msgid "manager.setup.workflow" +msgstr "Workflow" + +msgid "manager.setup.submissions.description" +msgstr "Author guidelines, copyright, and indexing (including registration)." + +msgid "manager.setup.typeExamples" +msgstr "(E.g., Historical Inquiry; Quasi-Experimental; Literary Analysis; Survey/Interview)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Type (Method/Approach)" + +msgid "manager.setup.typeProvideExamples" +msgstr "Provide examples of relevant research types, methods, and approaches for this field" + +msgid "manager.setup.useCopyeditors" +msgstr "A Copyeditor will be assigned to work with each submission." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "An editorial/review board will be used by the press." + +msgid "manager.setup.useImageTitle" +msgstr "Title Image" + +msgid "manager.setup.useStyleSheet" +msgstr "Press style sheet" + +msgid "manager.setup.useLayoutEditors" +msgstr "A Layout Editor will be assigned to prepare the HTML, PDF, etc., files for electronic publication." + +msgid "manager.setup.useProofreaders" +msgstr "A Proofreader will be assigned to check (along with the authors) the galleys prior to publication." + +msgid "manager.setup.userRegistration" +msgstr "User Registration" + +msgid "manager.setup.useTextTitle" +msgstr "Title text" + +msgid "manager.setup.volumePerYear" +msgstr "Volumes per year" + +msgid "manager.setup.publicationFormat.code" +msgstr "Format" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "A format must be chosen." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "You must assign a name to this format." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Is this a physical (non-digital) format?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "Because this publication format is currently in use by a monograph in your press, it cannot be deleted." + +msgid "manager.setup.newPublicationFormat" +msgstr "New Publication Format" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "To create a new publication format, fill out the form below and click the 'Create' button." + +msgid "manager.setup.genresDescription" +msgstr "These genres are used for file-naming purposes and are presented in a pull-down menu on uploading files. The genres designated ## allow the user to associate the file with either the whole book 99Z or a particular chapter by number (e.g., 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "This press is not accepting submissions at this time. Visit the workflow settings to allow submissions." + +msgid "manager.setup.disableSubmissions.description" +msgstr "Prevent users from submitting new articles to the press. Submissions can be disabled for individual press series on the press series settings page." + +msgid "manager.setup.genres" +msgstr "Genres" + +msgid "manager.setup.newGenre" +msgstr "New Monograph Genre" + +msgid "manager.setup.newGenreDescription" +msgstr "To create a new genre, fill out the form below and click the 'Create' button." + +msgid "manager.setup.deleteSelected" +msgstr "Delete Selected" + +msgid "manager.setup.restoreDefaults" +msgstr "Restore Default Settings" + +msgid "manager.setup.prospectus" +msgstr "Prospectus Guide" + +msgid "manager.setup.prospectusDescription" +msgstr "The prospectus guide is a press prepared document that helps the author describe the submitted materials in a way that allows a press to determine the value of the submission. A prospectus can include a lot of items- from marketing potential to theoretical value; in any case, a press should create a prospectus guide that complements their publishing agenda." + +msgid "manager.setup.submitToCategories" +msgstr "Allow category submissions" + +msgid "manager.setup.submitToSeries" +msgstr "Allow series submissions" + +msgid "manager.setup.issnDescription" +msgstr "" +"The ISSN (International Standard Serial Number) is an eight-digit number " +"which identifying periodical publications including electronic serials. A " +"number can be obtained from the ISSN International Centre." + +msgid "manager.setup.currentFormats" +msgstr "Current Formats" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Categories and Series" + +msgid "manager.setup.categories.description" +msgstr "You may create a list of categories to help organize your publications. Categories are groupings of books according to subject matter, for example Economics; Literature; Poetry; and so on. Categories may be nested within \"parent\" categories: for example, an Economics parent category may include individual Microeconomics and Macroeconomics categories. Visitors will be able to search and browse the press by category." + +msgid "manager.setup.series.description" +msgstr "You may create any number of series to help organize your publications. A series represents a special set of books devoted to a theme or topics that someone has proposed, usually a faculty member or two, and then oversees. Visitors will be able to search and browse the press by series." + +msgid "manager.setup.reviewForms" +msgstr "Review Forms" + +msgid "manager.setup.roleType" +msgstr "Role Type" + +msgid "manager.setup.authorRoles" +msgstr "Author Roles" + +msgid "manager.setup.managerialRoles" +msgstr "Managerial Roles" + +msgid "manager.setup.availableRoles" +msgstr "Available Roles" + +msgid "manager.setup.currentRoles" +msgstr "Current Roles" + +msgid "manager.setup.internalReviewRoles" +msgstr "Internal Review Roles" + +msgid "manager.setup.masthead" +msgstr "Masthead" + +msgid "manager.setup.editorialTeam" +msgstr "Editorial Team" + +msgid "manager.setup.editorialTeam.description" +msgstr "List of editors, managing directors, and other individuals associated with the press." + +msgid "manager.setup.files" +msgstr "Files" + +msgid "manager.setup.productionTemplates" +msgstr "Production Templates" + +msgid "manager.files.note" +msgstr "Note: The Files Browser is an advanced feature that allows the files and directories associated with a press to be viewed and manipulated directly." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

    Proposed Creative Commons Copyright Notices

    \n" +"

    Proposed Policy for Presses That Offer Open Access

    \n" +"Authors who publish with this press agree to the following terms:\n" +"
      \n" +"\t
    1. Authors retain copyright and grant the press right of first " +"publication with the work simultaneously licensed under a Creative " +"Commons Attribution License that allows others to share the work with an " +"acknowledgement of the work's authorship and initial publication in this " +"press.
    2. \n" +"\t
    3. Authors are able to enter into separate, additional contractual series " +"for the non-exclusive distribution of the version of the work published by " +"the press (e.g., post it to an institutional repository or publish it in a " +"book), with an acknowledgement of its initial publication in this press.
    4. " +"\n" +"\t
    5. Authors are permitted and encouraged to post their work online (e.g., " +"in institutional repositories or on their website) prior to and during the " +"submission process, as it can lead to productive exchanges, as well as " +"earlier and greater citation of published work (See The Effect of Open Access).
    6. \n" +"
    \n" +"\n" +"

    Proposed Policy for Presses That Offer Delayed Open Access

    \n" +"Authors who publish with this press agree to the following terms:\n" +"
      \n" +"\t
    1. Authors retain copyright and grant the press right of first " +"publication, with the work [SPECIFY PERIOD OF TIME] after publication " +"simultaneously licensed under a Creative Commons Attribution " +"License that allows others to share the work with an acknowledgement of " +"the work's authorship and initial publication in this press.
    2. \n" +"\t
    3. Authors are able to enter into separate, additional contractual " +"series for the non-exclusive distribution of the version of the work " +"published by the press (e.g., post it to an institutional repository or " +"publish it in a book), with an acknowledgement of its initial publication in " +"this press.
    4. \n" +"\t
    5. Authors are permitted and encouraged to post their work online (e.g., " +"in institutional repositories or on their website) prior to and during the " +"submission process, as it can lead to productive exchanges, as well as " +"earlier and greater citation of published work (See The Effect of Open Access).
    6. \n" +"
    " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Steps: Submission Queue > Submission Review > Submission Editing > Table of Contents.

    \n" +"Select a model for handling these aspects of the editorial process. (To designate a Managing Editor and Series Editors, go to Editors in Press Management.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

    To enable readers to locate online versions of the work cited by an author, the following options are available.

    \n" +"\n" +"
      \n" +"\t
    1. Add a Reading Tool

      The Press Manager can add \"Find References\" to the Reading Tools that accompany published items, which enables readers to paste a reference's title and then search pre-selected scholarly databases for the cited work.

    2. \n" +"\t
    3. Embed Links in the References

      The Layout Editor can add a link to references that can be found online by using the following instructions (which can be edited).

    4. \n" +"
    " + +msgid "manager.publication.library" +msgstr "Press Library" + +msgid "manager.setup.resetPermissions" +msgstr "Reset Monograph Permissions" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "Are you sure you wish to reset permissions data already attached to monographs?" + +msgid "manager.setup.resetPermissions.description" +msgstr "Copyright statement and license information will be permanently attached to published content, ensuring that this data will not change in the case of a press changing policies for new submissions. To reset stored permissions information already attached to published content, use the button below." + +msgid "manager.setup.resetPermissions.success" +msgstr "Monograph permissions were successfully reset." + +msgid "grid.genres.title.short" +msgstr "Components" + +msgid "grid.genres.title" +msgstr "Monograph Components" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "Send a copy to the primary contact, identified in the Press Settings." + +msgid "grid.series.pathAlphaNumeric" +msgstr "The series path must consist of only letters and numbers." + +msgid "grid.series.pathExists" +msgstr "The series path already exists. Please enter a unique path." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Select Series" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Please select the series to which you would like this menu item to link." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Select Category" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "Please select the category to which you would like this menu item to link." + +msgid "grid.series.urlWillBe" +msgstr "The series's URL will be: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "Press Stats" + +msgid "stats.context.tooltip.text" +msgstr "Number of visitors viewing the press's and catalog's index page." + +msgid "stats.context.tooltip.label" +msgstr "About press statistics" + +msgid "stats.context.downloadReport.description" +msgstr "Download a CSV/Excel spreadsheet with usage statistics for this press matching the following parameters." + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "The number of press's and catalog's index page views." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Download Press" + +msgid "stats.publications.downloadReport.description" +msgstr "Download a CSV/Excel spreadsheet with usage statistics for monographs matching the following parameters." + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Download Monographs" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "The number of abstract views and file downloads for each monograph." + +msgid "stats.publicationStats" +msgstr "Monograph Stats" + +msgid "stats.publications.details" +msgstr "Monograph Details" + +msgid "stats.publications.none" +msgstr "No monographs were found with usage statistics matching these parameters." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Total catalog views by date" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Total file views by date" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} of {$total} monographs" + +msgid "stats.publications.abstracts" +msgstr "Catalog Entries" + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "A sales right record has been skipped because it has no country nor region assigned." + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "No objects selected." + +msgid "plugins.importexport.common.error.validation" +msgstr "Could not convert selected objects." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Invalid XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Export Submissions" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "Send a copy of the submission acknowledgement email to this press's primary contact." + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.disabled.description" +msgstr "No primary contact has been defined for this press. You can enter a primary contact in the press settings." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "The specified objects could not be found." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "The specified user, \"{$userName}\", does not exist." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Process failed to parse publicationformats" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Process failed to parse chapters" + +msgid "emailTemplate.variable.context.contextName" +msgstr "The press's name" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "The URL to the press's homepage" + +msgid "emailTemplate.variable.context.contactName" +msgstr "The name of the press's primary contact" + +msgid "emailTemplate.variable.context.contextAcronym" +msgstr "The press's initials" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "The press's email signature for automated emails" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "The email address of the press's primary contact" + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "The mailing address of the press" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "The name of the type of payment" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "The payment amount" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "The currency of the payment amount, such as USD" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Name of the website when more than one press is hosted" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "The link to the books statistics page" + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"This email is automatically sent monthly to editors and press managers to " +"provide them a system health overview." + +msgid "mailable.validateEmailContext.name" +msgstr "Validate Email (Press Registration)" + +msgid "mailable.validateEmailContext.description" +msgstr "This email is automatically sent to a new user when they register with the press when the settings require the email address to be validated." + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "DOIs" + +msgid "doi.description" +msgstr "This plugin enables the assignment of the Digital Object Identifiers to monographs, chapters, publication formats and files in OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "Please configure the DOI plug-in to be able to manage and use DOIs in OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "Please select the publishing objects that will have Digital Object Identifiers (DOI) assigned:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monographs" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Chapters" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Publication Formats" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Files" + +msgid "doi.manager.settings.doiPrefix" +msgstr "DOI Prefix" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "The DOI prefix is mandatory and must be in the form 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "Enter a custom suffix pattern for each publication type. The custom suffix pattern may use the following symbols to generate the suffix:

    " +"%p Press Initials
    " +"%m Monograph ID
    " +"%c Chapter ID
    " +"%f Publication Format ID
    " +"%s File ID
    " +"%x Custom Identifier

    " +"Beware that custom suffix patterns often lead to problems generating and depositing DOIs. When using a custom suffix pattern, carefully test that editors can generate DOIs and deposit them to a registration agency like Crossref. " + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "For example, press%ppub%r could create a DOI such as 10.1234/pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "for monographs" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "for chapters" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "for publication formats" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "for files" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Please enter the DOI suffix pattern for monographs." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Please enter the DOI suffix pattern for chapters." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Please enter the DOI suffix pattern for publication formats." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Please enter the DOI suffix pattern for files." + +msgid "doi.manager.settings.doiReassign" +msgstr "Reassign DOIs" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "If you change your DOI configuration, DOIs that have already been assigned will not be affected. Once the DOI configuration is saved, use this button to clear all existing DOIs so that the new settings will take effect with all existing objects." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Are you sure you wish to delete all existing DOIs?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "The DOI must begin with {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Assign" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "monograph" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "chapter" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "publication format" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "file" + +msgid "doi.editor.customSuffixMissing" +msgstr "The DOI cannot be assigned because the custom suffix is missing." + +msgid "doi.editor.missingParts" +msgstr "You can not generate a DOI because one or more parts of the DOI pattern are missing data." + +msgid "doi.editor.patternNotResolved" +msgstr "The DOI cannot be assigned because it contains an unresolved pattern." + +msgid "doi.editor.canBeAssigned" +msgstr "What you see is a preview of the DOI. Select the checkbox and save the form to assign the DOI." + +msgid "doi.editor.assigned" +msgstr "The DOI is assigned to this {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "The given DOI suffix is already in use for another published item. Please enter a unique DOI suffix for each item." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Clear" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Are you sure you wish to delete the existing DOI?" + +msgid "doi.editor.assignDoi" +msgstr "Assign the DOI {$pubId} to this {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "The DOI cannot be assigned because the custom suffix is missing." + +msgid "doi.editor.assignDoi.pattern" +msgstr "The DOI {$pubId} cannot be assigned because it contains an unresolved pattern." + +msgid "doi.editor.assignDoi.assigned" +msgstr "The DOI {$pubId} has been assigned." + +msgid "doi.editor.missingPrefix" +msgstr "The DOI must begin with {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "The DOI for this publication will be {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "A DOI has not been assigned to this publication." + +msgid "doi.editor.preview.chapters" +msgstr "Chapter: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Publication Format: {$title}" + +msgid "doi.editor.preview.files" +msgstr "File: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Item" + +msgid "doi.manager.submissionDois" +msgstr "Monograph DOIs" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "This email notifies the author that their submission is being sent to the internal review stage." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "This email notifies the author that their submission is being declined, before being sent for review, because the submission does not meet the requirements for publication with the press." + +msgid "manager.institutions.noContext" +msgstr "This institution's press could not be found." + +msgid "manager.manageEmails.description" +msgstr "Edit the messages sent in emails from this press." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Sent to Internal Review" + +msgid "mailable.indexRequest.name" +msgstr "Index Requested" + +msgid "mailable.indexComplete.name" +msgstr "Index Completed" + +msgid "mailable.layoutComplete.name" +msgstr "Galleys Complete" + +msgid "mailable.publicationVersionNotify.name" +msgstr "New Version Created" + +msgid "mailable.publicationVersionNotify.description" +msgstr "This email automatically notifies the assigned editors when a new version of the submission has been created." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"This email is sent to press managers when a new submission is made and no editors are assigned." diff --git a/locale/en/submission.po b/locale/en/submission.po new file mode 100644 index 00000000000..7f766239f40 --- /dev/null +++ b/locale/en/submission.po @@ -0,0 +1,618 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" +"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "submission.upload.selectComponent" +msgstr "Select component" + +msgid "submission.title" +msgstr "Book Title" + +msgid "submission.select" +msgstr "Select Submission" + +msgid "submission.synopsis" +msgstr "Synopsis" + +msgid "submission.workflowType" +msgstr "Submission Type" + +msgid "submission.workflowType.description" +msgstr "" +"A monograph is a work authored wholly by one or more authors. An edited " +"volume has different authors for each chapter (with the chapter details " +"entered later in this process.)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Edited Volume" + +msgid "submission.workflowType.editedVolume" +msgstr "Edited Volume: Authors are associated with their own chapter." + +msgid "submission.workflowType.authoredWork" +msgstr "Monograph: Authors are associated with the book as a whole." + +msgid "submission.workflowType.change" +msgstr "Change" + +msgid "submission.editorName" +msgstr "{$editorName} (ed)" + +msgid "submission.monograph" +msgstr "Monograph" + +msgid "submission.published" +msgstr "Production Ready" + +msgid "submission.fairCopy" +msgstr "Fair Copy" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Permissions" + +msgid "submission.chapter" +msgstr "Chapter" + +msgid "submission.chapters" +msgstr "Chapters" + +msgid "submission.chapter.addChapter" +msgstr "Add Chapter" + +msgid "submission.chapter.editChapter" +msgstr "Edit Chapter" + +msgid "submission.chapter.pages" +msgstr "Pages" + +msgid "submission.copyedit" +msgstr "Copyedit" + +msgid "submission.publicationFormats" +msgstr "Publication Formats" + +msgid "submission.proofs" +msgstr "Proofs" + +msgid "submission.download" +msgstr "Download" + +msgid "submission.sharing" +msgstr "Share This" + +msgid "manuscript.submission" +msgstr "Manuscript Submission" + +msgid "submission.round" +msgstr "Round {$round}" + +msgid "submissions.queuedReview" +msgstr "In Review" + +msgid "manuscript.submissions" +msgstr "Manuscript Submissions" + +msgid "submission.metadata" +msgstr "Metadata" + +msgid "submission.supportingAgencies" +msgstr "Supporting Agencies" + +msgid "grid.action.addChapter" +msgstr "Create a new chapter" + +msgid "grid.action.editChapter" +msgstr "Edit this chapter" + +msgid "grid.action.deleteChapter" +msgstr "Delete this chapter" + +msgid "submission.submit" +msgstr "Start New Book Submission" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Start a New Submission in" + +msgid "submission.submit.newSubmissionSingle" +msgstr "New Submission" + +msgid "submission.submit.upload" +msgstr "Upload Submission" + +msgid "author.volumeEditor" +msgstr "Volume Editor" + +msgid "author.isVolumeEditor" +msgstr "Identify this contributor as the editor of this volume." + +msgid "submission.submit.seriesPosition" +msgstr "Series Position" + +msgid "submission.submit.seriesPosition.description" +msgstr "Examples: Book 2, Volume 2" + +msgid "submission.submit.privacyStatement" +msgstr "Privacy Statement" + +msgid "submission.submit.contributorRole" +msgstr "Contributor's role" + +msgid "submission.submit.submissionFile" +msgstr "Submission File" + +msgid "submission.submit.prepare" +msgstr "Prepare" + +msgid "submission.submit.catalog" +msgstr "Catalog" + +msgid "submission.submit.metadata" +msgstr "Metadata" + +msgid "submission.submit.finishingUp" +msgstr "Finishing Up" + +msgid "submission.submit.confirmation" +msgstr "Confirmation" + +msgid "submission.submit.nextSteps" +msgstr "Next Steps" + +msgid "submission.submit.coverNote" +msgstr "Cover Note to Editor" + +msgid "submission.submit.generalInformation" +msgstr "General Information" + +msgid "submission.submit.whatNext.description" +msgstr "" +"The press has been notified of your submission, and you've been emailed a " +"confirmation for your records. Once the editor has reviewed the submission, " +"they will contact you." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Please read and check off the items in the submission checklist. There are " +"{$itemsRemaining} items left unchecked." + +msgid "submission.submit.placement" +msgstr "Submission Placement" + +msgid "submission.submit.userGroup" +msgstr "Submit in my role as..." + +msgid "submission.submit.noContext" +msgstr "This submission's press could not be found." + +msgid "grid.chapters.title" +msgstr "Chapters" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Delete Copyeditor Upload" + +msgid "submission.complete" +msgstr "Approved" + +msgid "submission.incomplete" +msgstr "Awaiting Approval" + +msgid "submission.editCatalogEntry" +msgstr "Entry" + +msgid "submission.catalogEntry.new" +msgstr "Add Entry" + +msgid "submission.catalogEntry.add" +msgstr "Add Selected to Catalog" + +msgid "submission.catalogEntry.select" +msgstr "Select monographs to add to the catalog" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "You must select at least one monograph to add to the catalog." + +msgid "submission.catalogEntry.confirm" +msgstr "Add this book to the public catalog" + +msgid "submission.catalogEntry.confirm.required" +msgstr "" +"Please confirm that the submission is ready to be placed in the catalog." + +msgid "submission.catalogEntry.isAvailable" +msgstr "This monograph is ready to be included in the public catalog." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "View Submission" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Publication Dates" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "All chapters will use the publication date of the monograph." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Each chapter may have its own publication date." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monograph" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Catalog" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Publication Format" + +msgid "submission.event.metadataPublished" +msgstr "The monograph's metadata is approved for publication." + +msgid "submission.event.metadataUnpublished" +msgstr "The monograph's metadata is no longer published." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "The publication format \"{$publicationFormatName}\" is made available." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" +"The publication format \"{$publicationFormatName}\" is no longer available." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"The publication format \"{$publicationFormatName}\" is approved for " +"publication." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"The publication format \"{$publicationFormatName}\" is no longer published." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "The catalog metadata was updated." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "The publication format metadata for \"{$formatName}\" was updated." + +msgid "submission.event.publicationFormatCreated" +msgstr "The publication format \"{$formatName}\" was created." + +msgid "submission.event.publicationFormatRemoved" +msgstr "The publication format \"{$formatName}\" was removed." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Send to External Review" + +msgid "workflow.review.externalReview" +msgstr "External Review" + +msgid "submission.upload.fileContents" +msgstr "Submission Component" + +msgid "submission.dependentFiles" +msgstr "Dependent Files" + +msgid "submission.metadataDescription" +msgstr "" +"These specifications are based on the Dublin Core metadata set, an " +"international standard used to describe press content." + +msgid "section.any" +msgstr "Any Series" + +msgid "submission.list.monographs" +msgstr "Monographs" + +msgid "submission.list.countMonographs" +msgstr "{$count} monographs" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} of {$total} monographs" + +msgid "submission.list.orderFeatures" +msgstr "Order Features" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Drag-and-drop or tap the up and down buttons to change the order of features " +"on the homepage." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Drag-and-drop or tap the up and down buttons to change the order of features " +"in {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Save Order" + +msgid "submission.list.viewEntry" +msgstr "View Entry" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Titles" + +msgid "publication.catalogEntry" +msgstr "Catalog Entry" + +msgid "publication.catalogEntry.success" +msgstr "The catalog entry details have been updated." + +msgid "publication.invalidSeries" +msgstr "The series for this publication could not be found." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Inactive)" + +msgid "publication.required.issue" +msgstr "" +"The publication must be assigned to an issue before it can be published." + +msgid "publication.publishedIn" +msgstr "Published in {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"All publication requirements have been met. Are you sure you want to make " +"this catalog entry public?" + +msgid "publication.scheduledIn" +msgstr "Scheduled for publication in {$issueName}." + +msgid "submission.publication" +msgstr "Publication" + +msgid "publication.status.published" +msgstr "Published" + +msgid "submission.status.scheduled" +msgstr "Scheduled" + +msgid "publication.status.unscheduled" +msgstr "Unscheduled" + +msgid "submission.publications" +msgstr "Publications" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"The copyright year will be set automatically when this is published in an " +"issue." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"The copyright year will be set automatically based on the publication date." + +msgid "publication.datePublished" +msgstr "Date Published" + +msgid "publication.editDisabled" +msgstr "This version has been published and can not be edited." + +msgid "publication.event.published" +msgstr "The submission was published." + +msgid "publication.event.scheduled" +msgstr "The submission was scheduled for publication." + +msgid "publication.event.unpublished" +msgstr "The submission was unpublished." + +msgid "publication.event.versionPublished" +msgstr "A new version was published." + +msgid "publication.event.versionScheduled" +msgstr "A new version was scheduled for publication." + +msgid "publication.event.versionUnpublished" +msgstr "A version was removed from publication." + +msgid "publication.invalidSubmission" +msgstr "The submission for this publication could not be found." + +msgid "publication.publish" +msgstr "Publish" + +msgid "publication.publish.requirements" +msgstr "The following requirements must be met before this can be published." + +msgid "publication.required.declined" +msgstr "A declined submission can not be published." + +msgid "publication.required.reviewStage" +msgstr "" +"The submission must be in the Copyediting or Production stages before it can " +"be published." + +msgid "submission.license.description" +msgstr "" +"The license will be set automatically to {$licenseName} when this is published." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Copyright will be assigned automatically to {$copyright} when this is " +"published." + +msgid "submission.copyrightOther.description" +msgstr "Assign copyright for published submissions to the following party." + +msgid "publication.unpublish" +msgstr "Unpublish" + +msgid "publication.unpublish.confirm" +msgstr "Are you sure you don't want this to be published?" + +msgid "publication.unschedule.confirm" +msgstr "Are you sure you don't want this scheduled for publication?" + +msgid "publication.version.details" +msgstr "Publication details for version {$version}" + +msgid "submission.queries.production" +msgstr "Production Discussions" + +msgid "publication.chapter.landingPage" +msgstr "Chapter Page" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Show this chapter on its own page and link to that page from the book's " +"table of contents." + +msgid "publication.publish.success" +msgstr "Publication status successfully changed." + +msgid "chapter.volume" +msgstr "Volume" + +msgid "submission.withoutChapter" +msgstr "{$name} — Without this chapter" + +msgid "submission.chapterCreated" +msgstr " — Chapter created" + +msgid "chapter.pages" +msgstr "Pages" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Send to Internal Review" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "This submission is ready to be sent for internal review." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} sent this submission to the internal review stage." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Sent for Internal Review" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"The submission, {$title}, has been sent to the internal review stage. The " +"author has been notified, unless you chose to skip that email." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Send an email to the authors to let them know that this submission will be " +"sent for internal review. If possible, give the authors some indication of " +"how long the internal review process might take and when they should expect " +"to hear from the editors again." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "Select files that should be sent to the internal review stage." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "{$editorName} sent this submission to the external review stage." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Sent for External Review" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "The submission, {$title}, has been sent to the external review stage." + +msgid "editor.submission.decision.backToReview" +msgstr "Back to Review" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Revert the decision to accept this submission and send it back to the review " +"stage." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} reverted the decision to accept this submission and sent it " +"back to the review stage." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Sent Back to Review" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "The submission, {$title}, was sent back to the review stage." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Send an email to the authors to let them know that their submission is being " +"sent back to the review stage. Explain why this decision was made and inform " +"the author of what further review will be undertaken." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Send an email to the authors to let them know that this submission will be " +"sent for peer review. If possible, give the authors some indication of how " +"long the peer review process might take and when they should expect to hear " +"from the editors again." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Select files that should be sent to the review stage." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Recommend Send to External Review" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "Recommend that this submission be sent to the external review stage." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} recommended that this submission be sent to the external " +"review stage." + +msgid "doi.submission.incorrectContext" +msgstr "" +"Could not create a DOI for the following submission: {$pubObjectTitle}. It " +"does not exist in the current press context." + +msgid "publication.chapter.licenseUrl" +msgstr "License URL" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "Default Chapter License URL" + +msgid "submission.copyright.description" +msgstr "" +"Please read and understand the copyright terms for submissions to this press." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"You are not allowed to submit to this press because authors must be " +"registered by the editorial staff. If you believe this is an error, please " +"contact {$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} is not accepting submissions to the {$section} series. If you " +"need help recovering your submission, please contact {$name}." + +msgid "submission.sectionNotFound" +msgstr "The series for this submission could not be found." + +msgid "submission.sectionRestrictedToEditors" +msgstr "Only editorial staff are allowed to submit to this series." + +msgid "submission.wizard.submitting.monograph" +msgstr "Submitting a Monograph." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" +"Submitting a Monograph in {$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Submitting an Edited Volume." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Submitting an Edited Volume in {$language}." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Please provide all of the chapters of this submission. If you are submitting " +"an edited volume, please make sure that each chapter indicates the " +"contributors for that chapter." diff --git a/locale/en/sushi.po b/locale/en/sushi.po new file mode 100644 index 00000000000..2a50127932e --- /dev/null +++ b/locale/en/sushi.po @@ -0,0 +1,26 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-12-01T09:54:38-07:00\n" +"PO-Revision-Date: 2021-12-01T09:54:38-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "sushi.reports.pr.description" +msgstr "Activities summarized accross the press." + +msgid "sushi.reports.pr_p1.description" +msgstr "Press-level usage summarized by Metric_Type." + +msgid "sushi.reports.tr.description" +msgstr "Activities at the book level." + +msgid "sushi.reports.tr_b3.description" +msgstr "" +"Reports on book usage showing all applicable Metric_Types broken down by " +"Access_Type." diff --git a/locale/en_US/admin.po b/locale/en_US/admin.po deleted file mode 100644 index 72d3317d2e1..00000000000 --- a/locale/en_US/admin.po +++ /dev/null @@ -1,119 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" -"Language: \n" - -msgid "admin.hostedContexts" -msgstr "Hosted Presses" - -msgid "admin.settings.appearance.success" -msgstr "The site appearance settings have been successfully updated." - -msgid "admin.settings.config.success" -msgstr "The site configuration settings have been successfully updated." - -msgid "admin.settings.info.success" -msgstr "The site information has been successfully updated." - -msgid "admin.settings.redirect" -msgstr "Press redirect" - -msgid "admin.settings.redirectInstructions" -msgstr "Requests to the main site will be redirected to this press. This may be useful if the site is hosting only a single press, for example." - -msgid "admin.settings.noPressRedirect" -msgstr "Do not redirect" - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "This will be the default language for the site and any hosted presses." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "Select all locales to support on the site. The selected locales will be available for use by all presses hosted on the site, and also appear in a language select menu to appear on each site page (which can be overridden on press-specific pages). If multiple locales are not selected, the language toggle menu will not appear and extended language settings will not be available to presses." - -msgid "admin.locale.maybeIncomplete" -msgstr "* Marked locales may be incomplete." - -msgid "admin.languages.confirmUninstall" -msgstr "Are you sure you want to uninstall this locale? This may affect any hosted presses currently using the locale." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "Select any additional locales to install support for in this system. Locales must be installed before they can be used by hosted presses. See the OMP documentation for information on adding support for new languages." - -msgid "admin.languages.confirmDisable" -msgstr "Are you sure you want to disable this locale? This may affect any hosted presses currently using the locale." - -msgid "admin.systemVersion" -msgstr "OMP Version" - -msgid "admin.systemConfiguration" -msgstr "OMP Configuration" - -msgid "admin.presses.pressSettings" -msgstr "Press Settings" - -msgid "admin.presses.noneCreated" -msgstr "No presses have been created." - -msgid "admin.contexts.create" -msgstr "Create Press" - -msgid "admin.contexts.form.titleRequired" -msgstr "A title is required." - -msgid "admin.contexts.form.pathRequired" -msgstr "A path is required." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "The path can only include letters, numbers and the characters _ and -. It must begin and end with a letter or number." - -msgid "admin.contexts.form.pathExists" -msgstr "The selected path is already in use by another press." - -msgid "admin.contexts.form.primaryLocaleNotSupported" -msgstr "The primary locale must be one of the press's supported locales." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} was created successfully." - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} was edited successfully." - -msgid "admin.contexts.contextDescription" -msgstr "Press description" - -msgid "admin.presses.addPress" -msgstr "Add Press" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

    NOTE!\n" -"

    The system could not automatically overwrite the configuration file. To apply your configuration changes you must open config.inc.php in a suitable text editor and replace its contents with the contents of the text field below.

    " - -msgid "admin.settings.enableBulkEmails.description" -msgstr "" -"Select the hosted presses that should be allowed to send bulk emails. When this feature is enabled, " -"a press manager will be able to send an email to all users registered with their press." -"

    " -"Misuse of this feature to send unsolicited email may violate anti-spam laws in some jurisdictions and " -"may result in your server's emails being blocked as spam. Seek technical advice before " -"enabling this feature and consider consulting with press managers to ensure it is used appropriately." -"

    " -"Further restrictions on this feature can be enabled for each press by visiting its settings wizard in " -"the list of Hosted Presses." - -msgid "admin.settings.disableBulkEmailRoles.description" -msgstr "" -"A press manager will be unable to send bulk emails to any of the roles selected below. Use this setting to limit abuse of the email notification feature. For example, it may be safer to disable bulk emails to readers, authors, or other large user groups that have not consented to receive such emails." -"

    " -"The bulk email feature can be disabled completely for this press in Admin > Site Settings." - -msgid "admin.settings.disableBulkEmailRoles.contextDisabled" -msgstr "The bulk email feature has been disabled for this press. Enable this feature in Admin > Site Settings." diff --git a/locale/en_US/api.po b/locale/en_US/api.po deleted file mode 100644 index f614ca9029c..00000000000 --- a/locale/en_US/api.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" -"Language: \n" - -msgid "api.submissions.400.submissionIdsRequired" -msgstr "You must provide one or more submission ids to be added to the catalog." - -msgid "api.submissions.400.submissionsNotFound" -msgstr "One or more of the submissions you specified could not be found." - -msgid "api.emails.403.disabled" -msgstr "The email notification feature has not been enabled for this press." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "You do not have permission to move this email template to another press." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "The publication that you requested is not part of this press." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "The publication that you requested is not part of this submission." - -msgid "api.submissions.403.cantChangeContext" -msgstr "You can not change the press of a submission." - -msgid "api.submissions.403.contextRequired" -msgstr "To make or edit a submission you must make a request to the press's API endpoint." \ No newline at end of file diff --git a/locale/en_US/author.po b/locale/en_US/author.po deleted file mode 100644 index 8ce135c83f1..00000000000 --- a/locale/en_US/author.po +++ /dev/null @@ -1,15 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" -"Language: \n" - -msgid "author.submit.notAccepting" -msgstr "This press is not accepting submissions at this time." diff --git a/locale/en_US/author.xml b/locale/en_US/author.xml deleted file mode 100644 index fd3191bcf72..00000000000 --- a/locale/en_US/author.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - This press is not accepting submissions at this time. - diff --git a/locale/en_US/default.po b/locale/en_US/default.po deleted file mode 100644 index af87699044a..00000000000 --- a/locale/en_US/default.po +++ /dev/null @@ -1,141 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" -"Language: \n" - -msgid "default.genres.appendix" -msgstr "Appendix" - -msgid "default.genres.bibliography" -msgstr "Bibliography" - -msgid "default.genres.manuscript" -msgstr "Book Manuscript" - -msgid "default.genres.chapter" -msgstr "Chapter Manuscript" - -msgid "default.genres.glossary" -msgstr "Glossary" - -msgid "default.genres.index" -msgstr "Index" - -msgid "default.genres.preface" -msgstr "Preface" - -msgid "default.genres.prospectus" -msgstr "Prospectus" - -msgid "default.genres.table" -msgstr "Table" - -msgid "default.genres.figure" -msgstr "Figure" - -msgid "default.genres.photo" -msgstr "Photo" - -msgid "default.genres.illustration" -msgstr "Illustration" - -msgid "default.genres.other" -msgstr "Other" - -msgid "default.groups.name.manager" -msgstr "Press manager" - -msgid "default.groups.plural.manager" -msgstr "Press managers" - -msgid "default.groups.abbrev.manager" -msgstr "PM" - -msgid "default.groups.name.editor" -msgstr "Press editor" - -msgid "default.groups.plural.editor" -msgstr "Press editors" - -msgid "default.groups.abbrev.editor" -msgstr "PE" - -msgid "default.groups.name.sectionEditor" -msgstr "Series editor" - -msgid "default.groups.plural.sectionEditor" -msgstr "Series editors" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "AcqE" - -msgid "default.groups.name.chapterAuthor" -msgstr "Chapter Author" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Chapter Authors" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "CA" - -msgid "default.groups.name.volumeEditor" -msgstr "Volume editor" - -msgid "default.groups.plural.volumeEditor" -msgstr "Volume editors" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "VE" - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "The submission has not been previously published, nor is it before another press for consideration (or an explanation has been provided in Comments to the Editor)." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "The submission file is in the Microsoft Word, RTF, or OpenDocument file format." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Where available, URLs for the references have been provided." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "The text is single-spaced; uses a 12-point font; employs italics, rather than underlining (except with URL addresses); and all illustrations, figures, and tables are placed within the text at the appropriate points, rather than at the end." - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "The text adheres to the stylistic and bibliographic requirements outlined in the Author Guidelines, which is found in About the Press." - -msgid "default.contextSettings.privacyStatement" -msgstr "

    The names and email addresses entered in this press site will be used exclusively for the stated purposes of this press and will not be made available for any other purpose or to any other party.

    " - -msgid "default.contextSettings.openAccessPolicy" -msgstr "This press provides immediate open access to its content on the principle that making research freely available to the public supports a greater global exchange of knowledge." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
    \n" -"________________________________________________________________________
    \n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.contextSettings.forReaders" -msgstr "We encourage readers to sign up for the publishing notification service for this press. Use the Register link at the top of the homepage for the press. This registration will result in the reader receiving the Table of Contents by email for each new monograph of the press. This list also allows the press to claim a certain level of support or readership. See the press Privacy Statement which assures readers that their name and email address will not be used for other purposes." - -msgid "default.contextSettings.forAuthors" -msgstr "Interested in submitting to this press? We recommend that you review the About the Press page for the press' section policies and Author Guidelines. Authors need to register with the press prior to submitting, or if already registered can simply log in and begin the 5 step process." - -msgid "default.contextSettings.forLibrarians" -msgstr "We encourage research librarians to list this press among their library's electronic press holdings. As well, this open source publishing system is suitable for libraries to host for their faculty members to use with presses they are involved in editing (see Open Monograph Press)." - -msgid "default.groups.name.externalReviewer" -msgstr "External Reviewer" - -msgid "default.groups.plural.externalReviewer" -msgstr "External Reviewers" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "ER" diff --git a/locale/en_US/editor.po b/locale/en_US/editor.po deleted file mode 100644 index 12e6fc51d5a..00000000000 --- a/locale/en_US/editor.po +++ /dev/null @@ -1,168 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" -"Language: \n" - -msgid "editor.submissionArchive" -msgstr "Submission Archive" - -msgid "editor.monograph.cancelReview" -msgstr "Cancel Request" - -msgid "editor.monograph.clearReview" -msgstr "Clear Reviewer" - -msgid "editor.monograph.enterRecommendation" -msgstr "Enter Recommendation" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Enter Reviewer Recommendation" - -msgid "editor.monograph.recommendation" -msgstr "Recommendation" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "Select a reviewer above and press the 'Select Reviewer' button to continue." - -msgid "editor.monograph.replaceReviewer" -msgstr "Replace Reviewer" - -msgid "editor.monograph.editorToEnter" -msgstr "Editor to enter recommendation/comments for reviewer" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Upload review" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Peer Review Options" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Proofreading Files" - -msgid "editor.monograph.internalReview" -msgstr "Initiate Internal Review" - -msgid "editor.monograph.internalReviewDescription" -msgstr "Select files below to send them to the internal review stage." - -msgid "editor.monograph.externalReview" -msgstr "Initiate External Review" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Select Final Draft Files" - -msgid "editor.monograph.final.currentFiles" -msgstr "Current Final Draft Files" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Current Files" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Message to user" - -msgid "editor.monograph.legend.submissionActions" -msgstr "Submission Actions" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Overall submission actions and options." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Section Actions" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "Options particular to a given section, for example uploading files or adding users." - -msgid "editor.monograph.legend.itemActions" -msgstr "Item Actions" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Actions and options particular to an individual file." - -msgid "editor.monograph.legend.catalogEntry" -msgstr "View and manage the submission catalog entry, including metadata and publishing formats" - -msgid "editor.monograph.legend.bookInfo" -msgstr "View and manage submission metadata, notes, notifications, and history" - -msgid "editor.monograph.legend.participants" -msgstr "View and manage this submission's participants: authors, editors, designers, and more" - -msgid "editor.monograph.legend.add" -msgstr "Upload a file to the section" - -msgid "editor.monograph.legend.add_user" -msgstr "Add a user to the section" - -msgid "editor.monograph.legend.settings" -msgstr "View and access item settings, such as information and delete options" - -msgid "editor.monograph.legend.more_info" -msgstr "More Information: file notes, notification options, and history" - -msgid "editor.monograph.legend.notes_none" -msgstr "File information: notes, notification options, and history (No notes added yet)" - -msgid "editor.monograph.legend.notes" -msgstr "File information: notes, notification options, and history (Notes are available)" - -msgid "editor.monograph.legend.notes_new" -msgstr "File information: notes, notification options, and history (New notes added since last visit)" - -msgid "editor.monograph.legend.edit" -msgstr "Edit item" - -msgid "editor.monograph.legend.delete" -msgstr "Delete item" - -msgid "editor.monograph.legend.in_progress" -msgstr "Action in progress or not yet complete" - -msgid "editor.monograph.legend.complete" -msgstr "Action complete" - -msgid "editor.monograph.legend.uploaded" -msgstr "File uploaded by the role in the grid column title" - -msgid "editor.submission.introduction" -msgstr "In Submission, the editor, after the consulting the files submitted, selects the appropriate action (which includes notifying the author): Send to Internal Review (entails selecting files for Internal Review); Send to External Review (entails selecting files for External Review); Accept Submission (entails selecting files for Editorial stage); or Decline Submission (archives submission)." - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Fair Copy" - -msgid "editor.monograph.proofs" -msgstr "Proofs" - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Approval and Publishing" - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "Different publication formats, such as hardcover, softcover and digital, can be uploaded in the Publication Formats section below. You can use the publication formats grid below as a checklist for what still needs to be done to publish a publication format." - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "Add publication formats (e.g., digital, paperback) for which the layout editor prepares page proofs for proofreading. The Proofs need to be checked as approved and the Catalog entry for the format needs to be checked as posted in the book’s catalog entry, before a format can be made Available (i.e., published)." - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Set Terms for Downloading" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Set Terms" - -msgid "editor.monograph.proof.addNote" -msgstr "Add response" - -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "Any files that have already been uploaded to any submission stage can be added to the Proof Files listing by checking the Include checkbox below and clicking Search: all available files will be listed and can be chosen for inclusion." - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "The public identifier '{$publicIdentifier}' already exists for another object of the same type. Please choose unique identifiers for the objects of the same type within your press." - -msgid "editor.submissions.assignedTo" -msgstr "Assigned To Editor" diff --git a/locale/en_US/emails.po b/locale/en_US/emails.po deleted file mode 100644 index 5063942afbf..00000000000 --- a/locale/en_US/emails.po +++ /dev/null @@ -1,771 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" -"PO-Revision-Date: 2019-12-03T14:14:06-08:00\n" -"Language: \n" - -msgid "emails.notification.subject" -msgstr "New notification from {$siteTitle}" - -msgid "emails.notification.body" -msgstr "" -"You have a new notification from {$siteTitle}:
    \n" -"
    \n" -"{$notificationContents}
    \n" -"
    \n" -"Link: {$url}
    \n" -"
    \n" -"This is an automatically generated email; please do not reply to this message.
    \n" -"{$principalContactSignature}" - -msgid "emails.notification.description" -msgstr "The email is sent to registered users that have selected to have this type of notification emailed to them." - -msgid "emails.passwordResetConfirm.subject" -msgstr "Password Reset Confirmation" - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"We have received a request to reset your password for the {$siteTitle} web site.
    \n" -"
    \n" -"If you did not make this request, please ignore this email and your password will not be changed. If you wish to reset your password, click on the below URL.
    \n" -"
    \n" -"Reset my password: {$url}
    \n" -"
    \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.description" -msgstr "This email is sent to a registered user when they indicate that they have forgotten their password or are unable to login. It provides a URL they can follow to reset their password." - -msgid "emails.passwordReset.subject" -msgstr "Password Reset" - -msgid "emails.passwordReset.body" -msgstr "" -"Your password has been successfully reset for use with the {$siteTitle} web site.
    \n" -"
    \n" -"Your username: {$username}
    \n" -"Your new password: {$password}
    \n" -"
    \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.description" -msgstr "This email is sent to a registered user when they have successfully reset their password following the process described in the PASSWORD_RESET_CONFIRM email." - -msgid "emails.userRegister.subject" -msgstr "Press Registration" - -msgid "emails.userRegister.body" -msgstr "" -"{$userFullName}
    \n" -"
    \n" -"You have now been registered as a user with {$contextName}. We have included your username and password in this email, which are needed for all work with this press through its website. At any point, you can ask to be removed from the list of users by contacting me.
    \n" -"
    \n" -"Username: {$username}
    \n" -"Password: {$password}
    \n" -"
    \n" -"Thank you,
    \n" -"{$principalContactSignature}" - -msgid "emails.userRegister.description" -msgstr "This email is sent to a newly registered user to welcome them to the system and provide them with a record of their username and password." - -msgid "emails.userValidate.subject" -msgstr "Validate Your Account" - -msgid "emails.userValidate.body" -msgstr "" -"{$userFullName}
    \n" -"
    \n" -"You have created an account with {$contextName}, but before you can start using it, you need to validate your email account. To do this, simply follow the link below:
    \n" -"
    \n" -"{$activateUrl}
    \n" -"
    \n" -"Thank you,
    \n" -"{$principalContactSignature}" - -msgid "emails.userValidate.description" -msgstr "This email is sent to a newly registered user to welcome them to the system and provide them with a record of their username and password." - -msgid "emails.reviewerRegister.subject" -msgstr "Registration as Reviewer with {$contextName}" - -msgid "emails.reviewerRegister.body" -msgstr "" -"In light of your expertise, we have taken the liberty of registering your name in the reviewer database for {$contextName}. This does not entail any form of commitment on your part, but simply enables us to approach you with a submission to possibly review. On being invited to review, you will have an opportunity to see the title and abstract of the paper in question, and you'll always be in a position to accept or decline the invitation. You can also ask at any point to have your name removed from this reviewer list.
    \n" -"
    \n" -"We are providing you with a username and password, which is used in all interactions with the press through its website. You may wish, for example, to update your profile, including your reviewing interests.
    \n" -"
    \n" -"Username: {$username}
    \n" -"Password: {$password}
    \n" -"
    \n" -"Thank you,
    \n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.description" -msgstr "This email is sent to a newly registered reviewer to welcome them to the system and provide them with a record of their username and password." - -msgid "emails.publishNotify.subject" -msgstr "New Book Published" - -msgid "emails.publishNotify.body" -msgstr "" -"Readers:
    \n" -"
    \n" -"{$contextName} has just published its latest book at {$contextUrl}. We invite you to review the Table of Contents here and then visit our web site to review monographs and items of interest.
    \n" -"
    \n" -"Thanks for the continuing interest in our work,
    \n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.description" -msgstr "This email is sent to registered readers via the \"Notify Users\" link in the Editor's User Home. It notifies readers of a new book and invites them to visit the press at a supplied URL." - -msgid "emails.submissionAck.subject" -msgstr "Submission Acknowledgement" - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"Thank you for submitting the manuscript, "{$submissionTitle}" to {$contextName}. With the online press management system that we are using, you will be able to track its progress through the editorial process by logging in to the press web site:
    \n" -"
    \n" -"Manuscript URL: {$submissionUrl}
    \n" -"Username: {$authorUsername}
    \n" -"
    \n" -"If you have any questions, please contact me. Thank you for considering this press as a venue for your work.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.description" -msgstr "This email, when enabled, is automatically sent to an author when he or she completes the process of submitting a manuscript to the press. It provides information about tracking the submission through the process and thanks the author for the submission." - -msgid "emails.submissionAckNotUser.subject" -msgstr "Submission Acknowledgement" - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Hello,
    \n" -"
    \n" -"{$submitterName} has submitted the manuscript, "{$submissionTitle}" to {$contextName}.
    \n" -"
    \n" -"If you have any questions, please contact me. Thank you for considering this press as a venue for your work.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.description" -msgstr "This email, when enabled, is automatically sent to the other authors who are not users within OMP specified during the submission process." - -msgid "emails.editorAssign.subject" -msgstr "Editorial Assignment" - -msgid "emails.editorAssign.body" -msgstr "" -"{$editorialContactName}:
    \n" -"
    \n" -"The submission, "{$submissionTitle}," to {$contextName} has been assigned to you to see through the editorial process in your role as an Editor.
    \n" -"
    \n" -"Submission URL: {$submissionUrl}
    \n" -"Username: {$editorUsername}
    \n" -"
    \n" -"Thank you," - -msgid "emails.editorAssign.description" -msgstr "This email notifies a Series Editor that the Editor has assigned them the task of overseeing a submission through the editing process. It provides information about the submission and how to access the press site." - -msgid "emails.reviewRequest.subject" -msgstr "Manuscript Review Request" - -msgid "emails.reviewRequest.body" -msgstr "" -"Dear {$reviewerName},
    \n" -"
    \n" -"{$messageToReviewer}
    \n" -"
    \n" -"Please log into the press web site by {$responseDueDate} to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.
    \n" -"
    \n" -"The review itself is due {$reviewDueDate}.
    \n" -"
    \n" -"Submission URL: {$submissionReviewUrl}
    \n" -"
    \n" -"Username: {$reviewerUserName}
    \n" -"
    \n" -"Thank you for considering this request.
    \n" -"
    \n" -"
    \n" -"Sincerely,
    \n" -"{$editorialContactSignature}
    \n" -"" - -msgid "emails.reviewRequest.description" -msgstr "This email from the Series Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Management > Settings > Workflow > Review. (Otherwise see REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Manuscript Review Request" - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"I believe that you would serve as an excellent reviewer of the manuscript, "{$submissionTitle}," which has been submitted to {$contextName}. The submission's abstract is inserted below, and I hope that you will consider undertaking this important task for us.
    \n" -"
    \n" -"Please log into the press web site by {$weekLaterDate} to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.
    \n" -"
    \n" -"The review itself is due {$reviewDueDate}.
    \n" -"
    \n" -"Submission URL: {$submissionReviewUrl}
    \n" -"
    \n" -"Thank you for considering this request.
    \n" -"
    \n" -"{$editorialContactSignature}
    \n" -"
    \n" -"
    \n" -"
    \n" -""{$submissionTitle}"
    \n" -"
    \n" -"{$abstractTermIfEnabled}
    \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.description" -msgstr "This email from the Series Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Management > Settings > Workflow > Review, and one-click reviewer access is enabled." - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Manuscript Review Request" - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Dear {$reviewerName},
    \n" -"Just a gentle reminder of our request for your review of the submission, "{$submissionTitle}," for {$contextName}. We were hoping to have your response by {$responseDueDate}, and this email has been automatically generated and sent with the passing of that date.\n" -"
    \n" -"{$messageToReviewer}
    \n" -"
    \n" -"Please log into the press web site to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.
    \n" -"
    \n" -"The review itself is due {$reviewDueDate}.
    \n" -"
    \n" -"Submission URL: {$submissionReviewUrl}
    \n" -"
    \n" -"Username: {$reviewerUserName}
    \n" -"
    \n" -"Thank you for considering this request.
    \n" -"
    \n" -"
    \n" -"Sincerely,
    \n" -"{$editorialContactSignature}
    \n" -"" - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "This email is automatically sent when a reviewer's confirmation due date elapses (see Review Options under Settings > Workflow > Review) and one-click reviewer access is disabled. Scheduled tasks must be enabled and configured (see the site configuration file)." - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Manuscript Review Request" - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
    \n" -"Just a gentle reminder of our request for your review of the submission, "{$submissionTitle}," for {$contextName}. We were hoping to have your response by {$responseDueDate}, and this email has been automatically generated and sent with the passing of that date.\n" -"
    \n" -"I believe that you would serve as an excellent reviewer of the manuscript. The submission's abstract is inserted below, and I hope that you will consider undertaking this important task for us.
    \n" -"
    \n" -"Please log into the press web site to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.
    \n" -"
    \n" -"The review itself is due {$reviewDueDate}.
    \n" -"
    \n" -"Submission URL: {$submissionReviewUrl}
    \n" -"
    \n" -"Thank you for considering this request.
    \n" -"
    \n" -"{$editorialContactSignature}
    \n" -"
    \n" -"
    \n" -"
    \n" -""{$submissionTitle}"
    \n" -"
    \n" -"{$abstractTermIfEnabled}
    \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "This email is automatically sent when a reviewer's confirmation due date elapses (see Review Options under Settings > Workflow > Review) and one-click reviewer access is enabled. Scheduled tasks must be enabled and configured (see the site configuration file)." - -msgid "emails.reviewRequestAttached.subject" -msgstr "Manuscript Review Request" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"I believe that you would serve as an excellent reviewer of the manuscript, "{$submissionTitle}," and I am asking that you consider undertaking this important task for us. The Review Guidelines for this press are appended below, and the submission is attached to this email. Your review of the submission, along with your recommendation, should be emailed to me by {$reviewDueDate}.
    \n" -"
    \n" -"Please indicate in a return email by {$weekLaterDate} whether you are able and willing to do the review.
    \n" -"
    \n" -"Thank you for considering this request.
    \n" -"
    \n" -"{$editorialContactSignature}
    \n" -"
    \n" -"
    \n" -"Review Guidelines
    \n" -"
    \n" -"{$reviewGuidelines}
    \n" -"" - -msgid "emails.reviewRequestAttached.description" -msgstr "This email is sent by the Series Editor to a Reviewer to request that they accept or decline the task of reviewing a submission. It includes the submission as an attachment. This message is used when the Email-Attachment Review Process is selected in Management > Settings > Workflow > Review. (Otherwise see REVIEW_REQUEST.)" - -msgid "emails.reviewCancel.subject" -msgstr "Request for Review Cancelled" - -msgid "emails.reviewCancel.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"We have decided at this point to cancel our request for you to review the submission, "{$submissionTitle}," for {$contextName}. We apologize for any inconvenience this may cause you and hope that we will be able to call on you to assist with this review process in the future.
    \n" -"
    \n" -"If you have any questions, please contact me." - -msgid "emails.reviewCancel.description" -msgstr "This email is sent by the Series Editor to a Reviewer who has a submission review in progress to notify them that the review has been cancelled." - -msgid "emails.reviewReinstate.subject" -msgstr "Request for Review Reinstated" - -msgid "emails.reviewReinstate.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"We would like to reinstate our request for you to review the submission, "{$submissionTitle}," for {$contextName}. We hope that you will be able to assist with this journal's review process.
    \n" -"
    \n" -"If you have any questions, please contact me." - -msgid "emails.reviewReinstate.description" -msgstr "This email is sent by the Section Editor to a Reviewer who has a submission review in progress to notify them that the review has been cancelled." - -msgid "emails.reviewConfirm.subject" -msgstr "Able to Review" - -msgid "emails.reviewConfirm.body" -msgstr "" -"Editor(s):
    \n" -"
    \n" -"I am able and willing to review the submission, "{$submissionTitle}," for {$contextName}. Thank you for thinking of me, and I plan to have the review completed by its due date, {$reviewDueDate}, if not before.
    \n" -"
    \n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.description" -msgstr "This email is sent by a Reviewer to the Series Editor in response to a review request to notify the Series Editor that the review request has been accepted and will be completed by the specified date." - -msgid "emails.reviewDecline.subject" -msgstr "Unable to Review" - -msgid "emails.reviewDecline.body" -msgstr "" -"Editor(s):
    \n" -"
    \n" -"I am afraid that at this time I am unable to review the submission, "{$submissionTitle}," for {$contextName}. Thank you for thinking of me, and another time feel free to call on me.
    \n" -"
    \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.description" -msgstr "This email is sent by a Reviewer to the Series Editor in response to a review request to notify the Series Editor that the review request has been declined." - -msgid "emails.reviewAck.subject" -msgstr "Manuscript Review Acknowledgement" - -msgid "emails.reviewAck.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Thank you for completing the review of the submission, "{$submissionTitle}," for {$contextName}. We appreciate your contribution to the quality of the work that we publish." - -msgid "emails.reviewAck.description" -msgstr "This email is sent by a Series Editor to confirm receipt of a completed review and thank the reviewer for their contributions." - -msgid "emails.reviewRemind.subject" -msgstr "Submission Review Reminder" - -msgid "emails.reviewRemind.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Just a gentle reminder of our request for your review of the submission, "{$submissionTitle}," for {$contextName}. We were hoping to have this review by {$reviewDueDate}, and would be pleased to receive it as soon as you are able to prepare it.
    \n" -"
    \n" -"If you do not have your username and password for the web site, you can use this link to reset your password (which will then be emailed to you along with your username). {$passwordResetUrl}
    \n" -"
    \n" -"Submission URL: {$submissionReviewUrl}
    \n" -"
    \n" -"Username: {$reviewerUserName}
    \n" -"
    \n" -"Please confirm your ability to complete this vital contribution to the work of the press. I look forward to hearing from you.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemind.description" -msgstr "This email is sent by a Series Editor to remind a reviewer that their review is due." - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Submission Review Reminder" - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Just a gentle reminder of our request for your review of the submission, "{$submissionTitle}," for {$contextName}. We were hoping to have this review by {$reviewDueDate}, and would be pleased to receive it as soon as you are able to prepare it.
    \n" -"
    \n" -"Submission URL: {$submissionReviewUrl}
    \n" -"
    \n" -"Please confirm your ability to complete this vital contribution to the work of the press. I look forward to hearing from you.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.description" -msgstr "This email is sent by a Series Editor to remind a reviewer that their review is due." - -msgid "emails.reviewRemindAuto.subject" -msgstr "Automated Submission Review Reminder" - -msgid "emails.reviewRemindAuto.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Just a gentle reminder of our request for your review of the submission, "{$submissionTitle}," for {$contextName}. We were hoping to have this review by {$reviewDueDate}, and this email has been automatically generated and sent with the passing of that date. We would still be pleased to receive it as soon as you are able to prepare it.
    \n" -"
    \n" -"If you do not have your username and password for the web site, you can use this link to reset your password (which will then be emailed to you along with your username). {$passwordResetUrl}
    \n" -"
    \n" -"Submission URL: {$submissionReviewUrl}
    \n" -"
    \n" -"Username: {$reviewerUserName}
    \n" -"
    \n" -"Please confirm your ability to complete this vital contribution to the work of the press. I look forward to hearing from you.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.description" -msgstr "This email is automatically sent when a reviewer's due date elapses (see Review Options under Settings > Workflow > Review) and one-click reviewer access is disabled. Scheduled tasks must be enabled and configured (see the site configuration file)." - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Automated Submission Review Reminder" - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
    \n" -"
    \n" -"Just a gentle reminder of our request for your review of the submission, "{$submissionTitle}," for {$contextName}. We were hoping to have this review by {$reviewDueDate}, and this email has been automatically generated and sent with the passing of that date. We would still be pleased to receive it as soon as you are able to prepare it.
    \n" -"
    \n" -"Submission URL: {$submissionReviewUrl}
    \n" -"
    \n" -"Please confirm your ability to complete this vital contribution to the work of the press. I look forward to hearing from you.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "This email is automatically sent when a reviewer's due date elapses (see Review Options under Settings > Workflow > Review) and one-click reviewer access is enabled. Scheduled tasks must be enabled and configured (see the site configuration file)." - -msgid "emails.editorDecisionAccept.subject" -msgstr "Editor Decision" - -msgid "emails.editorDecisionAccept.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"We have reached a decision regarding your submission to {$contextName}, "{$submissionTitle}".
    \n" -"
    \n" -"Our decision is to:
    \n" -"
    \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionAccept.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them of a final decision regarding their submission." - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Editor Decision" - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"We have reached a decision regarding your submission to {$contextName}, "{$submissionTitle}".
    \n" -"
    \n" -"Our decision is to:
    \n" -"
    \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them that their submission is being sent to an external review." - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Editor Decision" - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"The editing of your manuscript, "{$submissionTitle}," is complete. We are now sending it to production.
    \n" -"
    \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them that their submission is being sent to production." - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Editor Decision" - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"We have reached a decision regarding your submission to {$contextName}, "{$submissionTitle}".
    \n" -"
    \n" -"Our decision is to:
    \n" -"
    \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them of a final decision regarding their submission." - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Editor Decision" - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"We have reached a decision regarding your submission to {$contextName}, "{$submissionTitle}".
    \n" -"
    \n" -"Our decision is to:
    \n" -"
    \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them of a final decision regarding their submission." - -msgid "emails.editorDecisionDecline.subject" -msgstr "Editor Decision" - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"{$authorName}:
    \n" -"
    \n" -"We have reached a decision regarding your submission to {$contextName}, "{$submissionTitle}".
    \n" -"
    \n" -"Our decision is to:
    \n" -"
    \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.description" -msgstr "This email from the Editor or Series Editor to an Author notifies them of a final decision regarding their submission." - -msgid "emails.editorRecommendation.subject" -msgstr "Editor Recommendation" - -msgid "emails.editorRecommendation.body" -msgstr "" -"{$editors}:
    \n" -"
    \n" -"The recommendation regarding the submission to {$contextName}, "{$submissionTitle}" is: {$recommendation}" - -msgid "emails.editorRecommendation.description" -msgstr "This email from the recommending Editor or Section Editor to the decision making Editors or Section Editors notifies them of a final recommendation regarding the submission." - -msgid "emails.copyeditRequest.subject" -msgstr "Copyediting Request" - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$participantName}:
    \n" -"
    \n" -"I would ask that you undertake the copyediting of "{$submissionTitle}" for {$contextName} by following these steps.
    \n" -"1. Click on the Submission URL below.
    \n" -"2. Log into the press and click on the File that appears in Step 1.
    \n" -"3. Consult Copyediting Instructions posted on webpage.
    \n" -"4. Open the downloaded file and copyedit, while adding Author Queries as needed.
    \n" -"5. Save copyedited file, and upload to Step 1 of Copyediting.
    \n" -"6. Send the COMPLETE email to the editor.
    \n" -"
    \n" -"{$contextName} URL: {$contextUrl}
    \n" -"Submission URL: {$submissionUrl}
    \n" -"Username: {$participantUsername}" - -msgid "emails.copyeditRequest.description" -msgstr "This email is sent by a Series Editor to a submission's Copyeditor to request that they begin the copyediting process. It provides information about the submission and how to access it." - -msgid "emails.layoutRequest.subject" -msgstr "Request Galleys" - -msgid "emails.layoutRequest.body" -msgstr "" -"{$participantName}:
    \n" -"
    \n" -"The submission "{$submissionTitle}" to {$contextName} now needs galleys laid out by following these steps.
    \n" -"1. Click on the Submission URL below.
    \n" -"2. Log into the press and use the Layout Version file to create the galleys according to press standards.
    \n" -"3. Send the COMPLETE email to the editor.
    \n" -"
    \n" -"{$contextName} URL: {$contextUrl}
    \n" -"Submission URL: {$submissionUrl}
    \n" -"Username: {$participantUsername}
    \n" -"
    \n" -"If you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this press." - -msgid "emails.layoutRequest.description" -msgstr "This email from the Series Editor to the Layout Editor notifies them that they have been assigned the task of performing layout editing on a submission. It provides information about the submission and how to access it." - -msgid "emails.layoutComplete.subject" -msgstr "Layout Galleys Complete" - -msgid "emails.layoutComplete.body" -msgstr "" -"{$editorialContactName}:
    \n" -"
    \n" -"Galleys have now been prepared for the manuscript, "{$submissionTitle}," for {$contextName} and are ready for proofreading.
    \n" -"
    \n" -"If you have any questions, please contact me.
    \n" -"
    \n" -"{$signatureFullName}" - -msgid "emails.layoutComplete.description" -msgstr "This email from the Layout Editor to the Series Editor notifies them that the layout process has been completed." - -msgid "emails.indexRequest.subject" -msgstr "Request Index" - -msgid "emails.indexRequest.body" -msgstr "" -"{$participantName}:
    \n" -"
    \n" -"The submission "{$submissionTitle}" to {$contextName} now needs indexes created by following these steps.
    \n" -"1. Click on the Submission URL below.
    \n" -"2. Log into the press and use the Page Proofs file to create the galleys according to press standards.
    \n" -"3. Send the COMPLETE email to the editor.
    \n" -"
    \n" -"{$contextName} URL: {$contextUrl}
    \n" -"Submission URL: {$submissionUrl}
    \n" -"Username: {$participantUsername}
    \n" -"
    \n" -"If you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this press.
    \n" -"
    \n" -"{$editorialContactSignature}" - -msgid "emails.indexRequest.description" -msgstr "This email from the Series Editor to the Indexer notifies them that they have been assigned the task of creating indexes for a submission. It provides information about the submission and how to access it." - -msgid "emails.indexComplete.subject" -msgstr "Index Galleys Complete" - -msgid "emails.indexComplete.body" -msgstr "" -"{$editorialContactName}:
    \n" -"
    \n" -"Indexes have now been prepared for the manuscript, "{$submissionTitle}," for {$contextName} and are ready for proofreading.
    \n" -"
    \n" -"If you have any questions, please contact me.
    \n" -"
    \n" -"{$signatureFullName}" - -msgid "emails.indexComplete.description" -msgstr "This email from the Indexer to the Series Editor notifies them that the index creation process has been completed." - -msgid "emails.emailLink.subject" -msgstr "Manuscript of Possible Interest" - -msgid "emails.emailLink.body" -msgstr "Thought you might be interested in seeing "{$submissionTitle}" by {$authorName} published in Vol {$volume}, No {$number} ({$year}) of {$contextName} at "{$monographUrl}"." - -msgid "emails.emailLink.description" -msgstr "This email template provides a registered reader with the opportunity to send information about a monograph to somebody who may be interested. It is available via the Reading Tools and must be enabled by the Press Manager in the Reading Tools Administration page." - -msgid "emails.notifySubmission.subject" -msgstr "Submission Notification" - -msgid "emails.notifySubmission.body" -msgstr "" -"You have a message from {$sender} regarding "{$submissionTitle}" ({$monographDetailsUrl}):
    \n" -"
    \n" -"\t\t{$message}
    \n" -"
    \n" -"\t\t" - -msgid "emails.notifySubmission.description" -msgstr "A notification from a user sent from a submission information center modal." - -msgid "emails.notifyFile.subject" -msgstr "Submission File Notification" - -msgid "emails.notifyFile.body" -msgstr "" -"You have a message from {$sender} regarding the file "{$fileName}" in "{$submissionTitle}" ({$monographDetailsUrl}):
    \n" -"
    \n" -"\t\t{$message}
    \n" -"
    \n" -"\t\t" - -msgid "emails.notifyFile.description" -msgstr "A notification from a user sent from a file information center modal" - -msgid "emails.notificationCenterDefault.subject" -msgstr "A message regarding {$contextName}" - -msgid "emails.notificationCenterDefault.body" -msgstr "Please enter your message." - -msgid "emails.notificationCenterDefault.description" -msgstr "The default (blank) message used in the Notification Center Message Listbuilder." - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Editor Decision" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\t{$authorName}:
    \n" -"
    \n" -"We have reached a decision regarding your submission to {$contextName}, "{$submissionTitle}".
    \n" -"
    \n" -"Our decision is to: Decline Submission
    \n" -"
    \n" -"Manuscript URL: {$submissionUrl}\n" -"\t\t" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "This email is send to the author if the editor declines his submission initially, before the review stage" - -msgid "emails.statisticsReportNotification.subject" -msgstr "Editorial activity for {$month}, {$year}" - -msgid "emails.statisticsReportNotification.body" -msgstr "" -"\n" -"{$name},
    \n" -"
    \n" -"Your press health report for {$month}, {$year} is now available. Your key stats for this month are below.
    \n" -"
      \n" -"\t
    • New submissions this month: {$newSubmissions}
    • \n" -"\t
    • Declined submissions this month: {$declinedSubmissions}
    • \n" -"\t
    • Accepted submissions this month: {$acceptedSubmissions}
    • \n" -"\t
    • Total submissions in the system: {$totalSubmissions}
    • \n" -"
    \n" -"Login to the the press to view more detailed editorial trends and published article stats. A full copy of this month's editorial trends is attached.
    \n" -"
    \n" -"Sincerely,
    \n" -"{$principalContactSignature}" - -msgid "emails.statisticsReportNotification.description" -msgstr "This email is automatically sent monthly to editors and journal managers to provide them a system health overview." - -msgid "emails.announcement.subject" -msgstr "{$title}" - -msgid "emails.announcement.body" -msgstr "" -"{$title}
    \n" -"
    \n" -"{$summary}
    \n" -"
    \n" -"Visit our website to read the full announcement." - -msgid "emails.announcement.description" -msgstr "This email is sent when a new announcement is created." \ No newline at end of file diff --git a/locale/en_US/locale.po b/locale/en_US/locale.po deleted file mode 100644 index 6398d06646e..00000000000 --- a/locale/en_US/locale.po +++ /dev/null @@ -1,1447 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2020-11-13 14:49+0000\n" -"Last-Translator: Gabriele Höfler \n" -"Language-Team: English (United States) \n" -"Language: en_US\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "common.payments" -msgstr "Payments" - -msgid "monograph.audience" -msgstr "Audience" - -msgid "monograph.audience.success" -msgstr "The audience details have been updated." - -msgid "monograph.coverImage" -msgstr "Cover Image" - -msgid "monograph.audience.rangeQualifier" -msgstr "Audience Range Qualifier" - -msgid "monograph.audience.rangeFrom" -msgstr "Audience Range (from)" - -msgid "monograph.audience.rangeTo" -msgstr "Audience Range (to)" - -msgid "monograph.audience.rangeExact" -msgstr "Audience Range (exact)" - -msgid "monograph.languages" -msgstr "Languages (English, French, Spanish)" - -msgid "monograph.publicationFormats" -msgstr "Publication Formats" - -msgid "monograph.publicationFormat" -msgstr "Format" - -msgid "monograph.publicationFormatDetails" -msgstr "Details about the available publication format: {$format}" - -msgid "monograph.miscellaneousDetails" -msgstr "Details about this monograph" - -msgid "monograph.carousel.publicationFormats" -msgstr "Formats:" - -msgid "monograph.type" -msgstr "Type of Submission" - -msgid "submission.pageProofs" -msgstr "Page Proofs" - -msgid "monograph.proofReadingDescription" -msgstr "The layout editor uploads the production-ready files that have been prepared for publication here. Use +Assign to designate authors and others to proofread the page proofs, with corrected files uploaded for approval prior to publication." - -msgid "monograph.task.addNote" -msgstr "Add to task" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Open Access" - -msgid "monograph.publicationFormat.imprint" -msgstr "Imprint (Brand Name)" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Page Counts" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Front Matter" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Back Matter" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Product Composition" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Product Detail (not required)" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Product Identification" - -msgid "monograph.publicationFormat.price" -msgstr "Price" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "A price is required." - -msgid "monograph.publicationFormat.priceType" -msgstr "Price Type" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Discount percentage, if applicable" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Product Availability" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Returnable Indicator" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Digital Information" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Physical Dimensions" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productFileSize" -msgstr "File Size in Mbytes" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Enter your own file size value?" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Height" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Thickness" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Weight" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Width" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Country of Manufacture" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Digital Technical Protection" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Product Distribution Region" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Taxation Rate" - -msgid "monograph.publicationFormat.taxType" -msgstr "Taxation Type" - -msgid "monograph.publicationFormat.isApproved" -msgstr "Include the metadata for this publication format in the catalog entry for this book." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Missing markets and prices." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Missing an identification code." - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Missing some metadata fields." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "

    The publication format you have chosen no longer exists for this monograph.

    " - -msgid "monograph.publicationFormat.openTab" -msgstr "Open publication format tab." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Publication Format" - -msgid "grid.catalogEntry.nameRequired" -msgstr "A name is required." - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "A valid price is required." - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Format Details" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Physical format" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "This format will be available at a separate website" - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL of remotely-hosted content" - -msgid "grid.catalogEntry.monographRequired" -msgstr "A monograph id is required." - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "A publication format must be chosen." - -msgid "grid.catalogEntry.availability" -msgstr "Availability" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Available" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Not Available" - -msgid "grid.catalogEntry.proof" -msgstr "Proof" - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Format Approval" - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "

    Approve the metadata for this format. Metadata can be checked from the Edit panel for each format.

    " - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

    Indicate that the metadata for this format has not been approved.

    " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Format Availability" - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "

    Make this format available to readers. Downloadable files and any other distributions will appear in the book's catalog entry.

    " - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "

    This format will unavailable to readers. Any downloadable files or other distributions will no longer appear in the book's catalog entry.

    " - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Catalog entry not approved." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Format not in catalog entry." - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Proof not approved." - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Approved" - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Awaiting Approval" - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "A file size for digital formats required." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "A product availability code is required." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "A product composition code must be chosen." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Code Value" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "ONIX Code Type" - -msgid "grid.catalogEntry.codeRequired" -msgstr "An identification code is required." - -msgid "grid.catalogEntry.valueRequired" -msgstr "A value is required." - -msgid "grid.catalogEntry.salesRights" -msgstr "Sales Rights" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Code Value" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Sales Rights Type" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Rest of World?" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "Check this box to use this Sales Rights entry as a catch-all for your format. Countries and regions need not be chosen in this case." - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "There is already a ROW sales type defined for this publication format." - -msgid "grid.catalogEntry.countries" -msgstr "Countries" - -msgid "grid.catalogEntry.regions" -msgstr "Regions" - -msgid "grid.catalogEntry.included" -msgstr "Included" - -msgid "grid.catalogEntry.excluded" -msgstr "Excluded" - -msgid "grid.catalogEntry.markets" -msgstr "Market Territories" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Territory" - -msgid "grid.catalogEntry.publicationDates" -msgstr "Publication Dates" - -msgid "grid.catalogEntry.roleRequired" -msgstr "A representative role is required." - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "A date format is required." - -msgid "grid.catalogEntry.dateValue" -msgstr "Date" - -msgid "grid.catalogEntry.dateRole" -msgstr "Role" - -msgid "grid.catalogEntry.dateFormat" -msgstr "Date Format" - -msgid "grid.catalogEntry.dateRequired" -msgstr "A date is required and the date value must match the chosen date format." - -msgid "grid.catalogEntry.representatives" -msgstr "Representatives" - -msgid "grid.catalogEntry.representativeType" -msgstr "Representative Type" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agents" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Suppliers" - -msgid "grid.catalogEntry.agent" -msgstr "Agent" - -msgid "grid.catalogEntry.agentTip" -msgstr "You may assign an agent to represent you in this defined territory. It is not required." - -msgid "grid.catalogEntry.supplier" -msgstr "Supplier" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Choose a role:" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Role" - -msgid "grid.catalogEntry.representativeName" -msgstr "Name" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Phone" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "Email Address" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Website" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Representative ID" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Representative ID Type (GLN is recommended)" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "You may leave the following section empty if you provide your own services to your customers." - -msgid "grid.action.addRepresentative" -msgstr "Add Representative" - -msgid "grid.action.editRepresentative" -msgstr "Edit this Representative" - -msgid "grid.action.deleteRepresentative" -msgstr "Delete this Representative" - -msgid "spotlight" -msgstr "Spotlight" - -msgid "spotlight.spotlights" -msgstr "Spotlights" - -msgid "spotlight.noneExist" -msgstr "There are no current spotlights." - -msgid "spotlight.title.homePage" -msgstr "In the Spotlight" - -msgid "spotlight.author" -msgstr "Author, " - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Spotlight Item" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Homepage" - -msgid "grid.content.spotlights.form.location" -msgstr "Spotlight Location" - -msgid "grid.content.spotlights.form.item" -msgstr "Enter spotlighted title (autocomplete)" - -msgid "grid.content.spotlights.form.title" -msgstr "Spotlight title" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Book" - -msgid "grid.content.spotlights.itemRequired" -msgstr "An item is required." - -msgid "grid.content.spotlights.titleRequired" -msgstr "A spotlight title is required." - -msgid "grid.content.spotlights.locationRequired" -msgstr "Please choose a location for this spotlight." - -msgid "grid.action.editSpotlight" -msgstr "Edit this spotlight" - -msgid "grid.action.deleteSpotlight" -msgstr "Delete this spotlight" - -msgid "grid.action.addSpotlight" -msgstr "Add Spotlight" - -msgid "manager.series.open" -msgstr "Open Submissions" - -msgid "manager.series.indexed" -msgstr "Indexed" - -msgid "grid.libraryFiles.column.files" -msgstr "Files" - -msgid "grid.action.catalogEntry" -msgstr "View the catalog entry form" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Format appears in catalog entry" - -msgid "grid.action.editFormat" -msgstr "Edit this format" - -msgid "grid.action.deleteFormat" -msgstr "Delete this format" - -msgid "grid.action.addFormat" -msgstr "Add publication format" - -msgid "grid.action.approveProof" -msgstr "Approve the proof for indexing and inclusion in the catalog" - -msgid "grid.action.pageProofApproved" -msgstr "Page proofs file is ready for publication" - -msgid "grid.action.addAnnouncement" -msgstr "Add an Announcement" - -msgid "grid.action.newCatalogEntry" -msgstr "New Catalog Entry" - -msgid "grid.action.publicCatalog" -msgstr "View this item in the catalog" - -msgid "grid.action.feature" -msgstr "Toggle the feature display" - -msgid "grid.action.featureMonograph" -msgstr "Feature this in the catalog carousel" - -msgid "grid.action.releaseMonograph" -msgstr "Mark this submission as a 'new release'" - -msgid "grid.action.manageCategories" -msgstr "Configure categories for this press" - -msgid "grid.action.manageSeries" -msgstr "Configure series for this press" - -msgid "grid.action.addCode" -msgstr "Add Code" - -msgid "grid.action.editCode" -msgstr "Edit this Code" - -msgid "grid.action.deleteCode" -msgstr "Delete this Code" - -msgid "grid.action.addRights" -msgstr "Add Sales Rights" - -msgid "grid.action.editRights" -msgstr "Edit these rights" - -msgid "grid.action.deleteRights" -msgstr "Delete these rights" - -msgid "grid.action.addMarket" -msgstr "Add Market" - -msgid "grid.action.editMarket" -msgstr "Edit this Market" - -msgid "grid.action.deleteMarket" -msgstr "Delete this Market" - -msgid "grid.action.addDate" -msgstr "Add publication date" - -msgid "grid.action.editDate" -msgstr "Edit this Date" - -msgid "grid.action.deleteDate" -msgstr "Delete this Date" - -msgid "grid.action.createContext" -msgstr "Create a new Press" - -msgid "grid.action.publicationFormatTab" -msgstr "Show the publication format tab" - -msgid "grid.action.moreAnnouncements" -msgstr "Go to press announcements page" - -msgid "grid.action.submissionEmail" -msgstr "Click to read this email" - -msgid "grid.action.approveProofs" -msgstr "View the proofs grid" - -msgid "grid.action.proofApproved" -msgstr "Format has been proofed" - -msgid "grid.action.availableRepresentation" -msgstr "Approve/disapprove this format" - -msgid "grid.action.formatAvailable" -msgstr "Toggle the availability of this format on and off" - -msgid "grid.reviewAttachments.add" -msgstr "Add Attachment to Review" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Available Files" - -msgid "submissionGroup.assignedSubEditors" -msgstr "Assigned editors" - -msgid "series.series" -msgstr "Series" - -msgid "series.featured.description" -msgstr "This series will appear on the main navigation" - -msgid "series.path" -msgstr "Path" - -msgid "catalog.manage" -msgstr "Catalog Management" - -msgid "catalog.manage.newReleases" -msgstr "New Releases" - -msgid "catalog.manage.category" -msgstr "Category" - -msgid "catalog.manage.series" -msgstr "Series" - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series.issn.validation" -msgstr "Please enter a valid ISSN." - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "Online and print ISSN must not be the same." - -msgid "catalog.manage.series.onlineIssn" -msgstr "Online ISSN" - -msgid "catalog.manage.series.printIssn" -msgstr "Print ISSN" - -msgid "catalog.selectSeries" -msgstr "Select Series" - -msgid "catalog.selectCategory" -msgstr "Select Category" - -msgid "catalog.manage.homepageDescription" -msgstr "The cover image of selected books appears toward the top of the homepage as a scrollable set. Click 'Feature', then the star to add a book to the carousel; click the exclamation point to feature as a new release; drag and drop to order." - -msgid "catalog.manage.categoryDescription" -msgstr "Click 'Feature', then the star to select a featured book for this category; drag and drop to order." - -msgid "catalog.manage.seriesDescription" -msgstr "Click 'Feature', then the star to select a featured book for this series; drag and drop to order. Series are identified with an editor(s) and a series title, within a category or independently." - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Carousel" - -msgid "catalog.manage.newRelease" -msgstr "Release" - -msgid "catalog.manage.manageSeries" -msgstr "Manage Series" - -msgid "catalog.manage.manageCategories" -msgstr "Manage Categories" - -msgid "catalog.manage.noMonographs" -msgstr "There are no assigned monographs." - -msgid "catalog.manage.featured" -msgstr "Featured" - -msgid "catalog.manage.categoryFeatured" -msgstr "Featured in category" - -msgid "catalog.manage.seriesFeatured" -msgstr "Featured in series" - -msgid "catalog.manage.featuredSuccess" -msgstr "Monograph is featured." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Monograph is not featured." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Monograph is marked as a new release." - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Monograph is unmarked as a new release." - -msgid "catalog.manage.feature.newRelease" -msgstr "New release" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "New release in category" - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "New release in series" - -msgid "catalog.manage.nonOrderable" -msgstr "This monograph is not orderable until it's featured." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Search by title or author" - -msgid "catalog.manage.isFeatured" -msgstr "This monograph is featured. Make this monograph not featured." - -msgid "catalog.manage.isNotFeatured" -msgstr "This monograph is not featured. Make this monograph featured." - -msgid "catalog.manage.isNewRelease" -msgstr "This monograph is a new release. Make this monograph not a new release." - -msgid "catalog.manage.isNotNewRelease" -msgstr "This monograph is not a new release. Make this monograph a new release." - -msgid "catalog.manage.noSubmissionsSelected" -msgstr "No submissions were selected to be added to the catalog." - -msgid "catalog.manage.submissionsNotFound" -msgstr "One or more of the submissions could not be found." - -msgid "catalog.manage.findSubmissions" -msgstr "Find monographs to add to the catalog" - -msgid "catalog.noTitles" -msgstr "No titles have been published yet." - -msgid "catalog.noTitlesNew" -msgstr "No new releases are available at this time." - -msgid "catalog.noTitlesSearch" -msgstr "No titles were found which matched your search for \"{$searchQuery}\"." - -msgid "catalog.feature" -msgstr "Feature" - -msgid "catalog.featured" -msgstr "Featured" - -msgid "catalog.featuredBooks" -msgstr "Featured Books" - -msgid "catalog.foundTitleSearch" -msgstr "One title was found which matched your search for \"{$searchQuery}\"." - -msgid "catalog.foundTitlesSearch" -msgstr "{$number} titles were found which matched your search for \"{$searchQuery}\"." - -msgid "catalog.category.heading" -msgstr "All Books" - -msgid "catalog.newReleases" -msgstr "New Releases" - -msgid "catalog.dateAdded" -msgstr "Added" - -msgid "catalog.publicationInfo" -msgstr "Publication Info" - -msgid "catalog.published" -msgstr "Published" - -msgid "catalog.forthcoming" -msgstr "Forthcoming" - -msgid "catalog.categories" -msgstr "Categories" - -msgid "catalog.parentCategory" -msgstr "Parent Category" - -msgid "catalog.category.subcategories" -msgstr "Subcategories" - -msgid "catalog.aboutTheAuthor" -msgstr "About the {$roleName}" - -msgid "catalog.loginRequiredForPayment" -msgstr "Please note: In order to purchase items, you will need to log in first. Selecting an item to purchase will direct you to the login page. Any item marked with an Open Access icon may be downloaded free of charge, without logging in." - -msgid "catalog.sortBy" -msgstr "Order of monographs" - -msgid "catalog.sortBy.seriesDescription" -msgstr "Choose how to order books in this series." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Choose how to order books in this category." - -msgid "catalog.sortBy.catalogDescription" -msgstr "Choose how to order books in the catalog." - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Series position (lowest first)" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Series position (highest first)" - -msgid "catalog.viewableFile.title" -msgstr "{$type} view of the file {$title}" - -msgid "catalog.viewableFile.return" -msgstr "Return to view details about {$monographTitle}" - -msgid "submission.search" -msgstr "Book Search" - -msgid "common.publication" -msgstr "Monograph" - -msgid "common.publications" -msgstr "Monographs" - -msgid "common.prefix" -msgstr "Prefix" - -msgid "common.preview" -msgstr "Preview" - -msgid "common.feature" -msgstr "Feature" - -msgid "common.searchCatalog" -msgstr "Search Catalog" - -msgid "common.moreInfo" -msgstr "More Information" - -msgid "common.listbuilder.completeForm" -msgstr "Please fill out the form completely." - -msgid "common.listbuilder.selectValidOption" -msgstr "Please select a valid option from the list." - -msgid "common.listbuilder.itemExists" -msgstr "You cannot add the same item twice." - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.homePageHeader.altText" -msgstr "Homepage Header" - -msgid "navigation.catalog" -msgstr "Catalog" - -msgid "navigation.competingInterestPolicy" -msgstr "Competing Interest Policy" - -msgid "navigation.catalog.allMonographs" -msgstr "All Monographs" - -msgid "navigation.catalog.manage" -msgstr "Manage" - -msgid "navigation.catalog.administration.short" -msgstr "Administration" - -msgid "navigation.catalog.administration" -msgstr "Catalog Administration" - -msgid "navigation.catalog.administration.categories" -msgstr "Categories" - -msgid "navigation.catalog.administration.series" -msgstr "Series" - -msgid "navigation.infoForAuthors" -msgstr "For Authors" - -msgid "navigation.infoForLibrarians" -msgstr "For Librarians" - -msgid "navigation.infoForAuthors.long" -msgstr "Information For Authors" - -msgid "navigation.infoForLibrarians.long" -msgstr "Information For Librarians" - -msgid "navigation.newReleases" -msgstr "New Releases" - -msgid "navigation.published" -msgstr "Published" - -msgid "navigation.wizard" -msgstr "Wizard" - -msgid "navigation.linksAndMedia" -msgstr "Links and Social Media" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Link to your catalog." - -msgid "navigation.skip.spotlights" -msgstr "Skip to spotlights" - -msgid "navigation.navigationMenus.series.generic" -msgstr "Series" - -msgid "navigation.navigationMenus.series.description" -msgstr "Link to a series." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Category" - -msgid "navigation.navigationMenus.category.description" -msgstr "Link to a category." - -msgid "navigation.navigationMenus.newRelease" -msgstr "New Releases" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Link to your New Releases." - -msgid "context.contexts" -msgstr "Presses" - -msgid "context.context" -msgstr "Press" - -msgid "context.current" -msgstr "Current Press:" - -msgid "context.select" -msgstr "Switch to another press:" - -msgid "user.authorization.representationNotFound" -msgstr "The requested publication format could not be found." - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Include users with no roles in this press." - -msgid "user.noRoles.submitMonograph" -msgstr "Submit a Proposal" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Submit an Monograph: Author registration is currently disabled." - -msgid "user.noRoles.regReviewer" -msgstr "Register as a Reviewer" - -msgid "user.noRoles.regReviewerClosed" -msgstr "Register as a Reviewer: Reviewer registration is currently disabled." - -msgid "user.reviewerPrompt" -msgstr "Would you be willing to review submissions to this press?" - -msgid "user.reviewerPrompt.userGroup" -msgstr "Yes, request the {$userGroup} role." - -msgid "user.reviewerPrompt.optin" -msgstr "Yes, I would like to be contacted with requests to review submissions to this press." - -msgid "user.register.contextsPrompt" -msgstr "Which presses on this site would you like to register with?" - -msgid "user.register.otherContextRoles" -msgstr "Request the following roles." - -msgid "user.register.noContextReviewerInterests" -msgstr "If you requested to be a reviewer for any press, please enter your subject interests." - -msgid "user.role.manager" -msgstr "Press Manager" - -msgid "user.role.pressEditor" -msgstr "Press Editor" - -msgid "user.role.subEditor" -msgstr "Series Editor" - -msgid "user.role.copyeditor" -msgstr "Copyeditor" - -msgid "user.role.proofreader" -msgstr "Proofreader" - -msgid "user.role.productionEditor" -msgstr "Production Editor" - -msgid "user.role.managers" -msgstr "Press Managers" - -msgid "user.role.subEditors" -msgstr "Series Editors" - -msgid "user.role.editors" -msgstr "Editors" - -msgid "user.role.copyeditors" -msgstr "Copyeditors" - -msgid "user.role.proofreaders" -msgstr "Proofreaders" - -msgid "user.role.productionEditors" -msgstr "Production Editors" - -msgid "user.register.selectContext" -msgstr "Select a press to register with:" - -msgid "user.register.noContexts" -msgstr "There are no presses you may register with on this site." - -msgid "user.register.privacyStatement" -msgstr "Privacy Statement" - -msgid "user.register.registrationDisabled" -msgstr "This press is currently not accepting user registrations." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "The password you entered is not long enough." - -msgid "user.register.readerDescription" -msgstr "Notified by email on publication of a monograph." - -msgid "user.register.authorDescription" -msgstr "Able to submit items to the press." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Willing to conduct peer review of submissions to the press." - -msgid "user.register.reviewerDescription" -msgstr "Willing to conduct peer review of submissions to the site." - -msgid "user.register.reviewerInterests" -msgstr "Identify reviewing interests (substantive areas and research methods):" - -msgid "user.register.form.userGroupRequired" -msgstr "You must select at least one role" - -msgid "user.register.form.privacyConsentThisContext" -msgstr "Yes, I agree to have my data collected and stored according to this press's privacy statement." - -msgid "site.noPresses" -msgstr "There are no presses available." - -msgid "site.pressView" -msgstr "View Press Website" - -msgid "about.pressContact" -msgstr "Press Contact" - -msgid "about.aboutContext" -msgstr "About the Press" - -msgid "about.editorialTeam" -msgstr "Editorial Team" - -msgid "about.editorialPolicies" -msgstr "Editorial Policies" - -msgid "about.focusAndScope" -msgstr "Focus and Scope" - -msgid "about.seriesPolicies" -msgstr "Series and Category Policies" - -msgid "about.submissions" -msgstr "Submissions" - -msgid "about.onlineSubmissions" -msgstr "Online Submissions" - -msgid "about.onlineSubmissions.login" -msgstr "Login" - -msgid "about.onlineSubmissions.register" -msgstr "Register" - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} or {$register} to make a submission." - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} or {$viewSubmissions}." - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Make a new submission" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "view your pending submissions" - -msgid "about.authorGuidelines" -msgstr "Author Guidelines" - -msgid "about.submissionPreparationChecklist" -msgstr "Submission Preparation Checklist" - -msgid "about.submissionPreparationChecklist.description" -msgstr "As part of the submission process, authors are required to check off their submission's compliance with all of the following items, and submissions may be returned to authors that do not adhere to these guidelines." - -msgid "about.copyrightNotice" -msgstr "Copyright Notice" - -msgid "about.privacyStatement" -msgstr "Privacy Statement" - -msgid "about.reviewPolicy" -msgstr "Peer Review Process" - -msgid "about.publicationFrequency" -msgstr "Publication Frequency" - -msgid "about.openAccessPolicy" -msgstr "Open Access Policy" - -msgid "about.pressSponsorship" -msgstr "Press Sponsorship" - -msgid "about.aboutThisPublishingSystem" -msgstr "More information about the publishing system, Platform and Workflow by OMP/PKP." - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "OMP Editorial and Publishing Process" - -msgid "about.aboutSoftware" -msgstr "About Open Monograph Press" - -msgid "about.aboutOMPPress" -msgstr "This press uses Open Monograph Press {$ompVersion}, which is open source press management and publishing software developed, supported, and freely distributed by the Public Knowledge Project under the GNU General Public License. Visit PKP's website to learn more about the software. Please contact the press directly with questions about the press and submissions to the press." - -msgid "about.aboutOMPSite" -msgstr "This site uses Open Monograph Press {$ompVersion}, which is open source press management and publishing software developed, supported, and freely distributed by the Public Knowledge Project under the GNU General Public License. Visit PKP's website to learn more about the software. Please contact the site directly with questions about its presses and submissions to its presses." - -msgid "help.searchReturnResults" -msgstr "Return to Search Results" - -msgid "help.goToEditPage" -msgstr "Open a new page to edit this information" - -msgid "installer.appInstallation" -msgstr "OMP Installation" - -msgid "installer.ompUpgrade" -msgstr "OMP Upgrade" - -msgid "installer.installApplication" -msgstr "Install Open Monograph Press" - -msgid "installer.updatingInstructions" -msgstr "If you are upgrading an existing installation of OMP, click here to proceed." - -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

    Thank you for downloading the Public Knowledge Project's Open Monograph Press {$version}. Before proceeding, please read the README file included with this software. For more information about the Public Knowledge Project and its software projects, please visit the PKP web site. If you have bug reports or technical support inquiries about Open Monograph Press, see the support forum or visit PKP's online bug reporting system. Although the support forum is the preferred method of contact, you can also email the team at pkp.contact@gmail.com.

    \n" - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Pre-Installation Steps" - -msgid "installer.preInstallationInstructions" -msgstr "" -"

    1. The following files and directories (and their contents) must be made writable:

    \n" -"
      \n" -"\t
    • config.inc.php is writable (optional): {$writable_config}
    • \n" -"\t
    • public/ is writable: {$writable_public}
    • \n" -"\t
    • cache/ is writable: {$writable_cache}
    • \n" -"\t
    • cache/t_cache/ is writable: {$writable_templates_cache}
    • \n" -"\t
    • cache/t_compile/ is writable: {$writable_templates_compile}
    • \n" -"\t
    • cache/_db is writable: {$writable_db_cache}
    • \n" -"
    \n" -"\n" -"

    2. A directory to store uploaded files must be created and made writable (see \"File Settings\" below).

    " - -msgid "installer.upgradeInstructions" -msgstr "" -"

    OMP Version {$version}

    \n" -"\n" -"

    Thank you for downloading the Public Knowledge Project's Open Monograph Press. Before proceeding, please read the README and UPGRADE files included with this software. For more information about the Public Knowledge Project and its software projects, please visit the PKP web site. If you have bug reports or technical support inquiries about Open Monograph Press, see the support forum or visit PKP's online bug reporting system. Although the support forum is the preferred method of contact, you can also email the team at pkp.contact@gmail.com.

    \n" -"

    It is strongly recommended that you back up your database, files directory, and OMP installation directory before proceeding.

    \n" -"

    If you are running in PHP Safe Mode, please ensure that the max_execution_time directive in your php.ini configuration file is set to a high limit. If this or any other time limit (e.g. Apache's \"Timeout\" directive) is reached and the upgrade process is interrupted, manual intervention will be required.

    " - -msgid "installer.localeSettingsInstructions" -msgstr "" -"For complete Unicode (UTF-8) support, select UTF-8 for all character set settings. Note that this support currently requires a MySQL >= 4.1.1 or PostgreSQL >= 9.1.5 database server. Please also note that full Unicode support requires the mbstring library (enabled by default in most recent PHP installations). You may experience problems using extended character sets if your server does not meet these requirements.\n" -"

    \n" -"Your server currently supports mbstring: {$supportsMBString}" - -msgid "installer.allowFileUploads" -msgstr "Your server currently allows file uploads: {$allowFileUploads}" - -msgid "installer.maxFileUploadSize" -msgstr "Your server currently allows a maximum file upload size of: {$maxFileUploadSize}" - -msgid "installer.localeInstructions" -msgstr "The primary language to use for this system. Please consult the OMP documentation if you are interested in support for languages not listed here." - -msgid "installer.additionalLocalesInstructions" -msgstr "Select any additional languages to support in this system. These languages will be available for use by presses hosted on the site. Additional languages can also be installed at any time from the site administration interface. Locales marked * may be incomplete." - -msgid "installer.filesDirInstructions" -msgstr "Enter full pathname to an existing directory where uploaded files are to be kept. This directory should not be directly web-accessible. Please ensure that this directory exists and is writable prior to installation. Windows path names should use forward slashes, e.g. \"C:/mypress/files\"." - -msgid "installer.databaseSettingsInstructions" -msgstr "OMP requires access to a SQL database to store its data. See the system requirements above for a list of supported databases. In the fields below, provide the settings to be used to connect to the database." - -msgid "installer.upgradeApplication" -msgstr "Upgrade Open Monograph Press" - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

    IMPORTANT!

    \n" -"

    The installer could not automatically overwrite the configuration file. Before attempting to use the system, please open config.inc.php in a suitable text editor and replace its contents with the contents of the text field below.

    " - -msgid "installer.installationComplete" -msgstr "" -"

    Installation of OMP has completed successfully.

    \n" -"

    To begin using the system, login with the username and password entered on the previous page.

    \n" -"

    If you wish to receive news and updates, please register at http://pkp.sfu.ca/omp/register. If you have questions or comments, please visit the support forum.

    " - -msgid "installer.upgradeComplete" -msgstr "" -"

    Upgrade of OMP to version {$version} has completed successfully.

    \n" -"

    Don't forget to set the \"installed\" setting in your config.inc.php configuration file back to On.

    \n" -"

    If you haven't already registered and wish to receive news and updates, please register at http://pkp.sfu.ca/omp/register. If you have questions or comments, please visit the support forum.

    " - -msgid "log.review.reviewDueDateSet" -msgstr "The due date for the round {$round} review of submission {$submissionId} by {$reviewerName} has been set to {$dueDate}." - -msgid "log.review.reviewDeclined" -msgstr "{$reviewerName} has declined the round {$round} review for submission {$submissionId}." - -msgid "log.review.reviewAccepted" -msgstr "{$reviewerName} has accepted the round {$round} review for submission {$submissionId}." - -msgid "log.review.reviewUnconsidered" -msgstr "{$editorName} has marked the round {$round} review for submission {$submissionId} as unconsidered." - -msgid "log.editor.decision" -msgstr "An editor decision ({$decision}) for monograph {$submissionId} was recorded by {$editorName}." - -msgid "log.editor.recommendation" -msgstr "" -"An editor recommendation ({$decision}) for monograph {$submissionId} was " -"recorded by {$editorName}." - -msgid "log.editor.archived" -msgstr "The submission {$submissionId} has been archived." - -msgid "log.editor.restored" -msgstr "The submission {$submissionId} has been restored to the queue." - -msgid "log.editor.editorAssigned" -msgstr "{$editorName} has been assigned as editor to submission {$submissionId}." - -msgid "log.proofread.assign" -msgstr "{$assignerName} has assigned {$proofreaderName} to proofread submission {$submissionId}." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} has submitted {$submissionId} for scheduling." - -msgid "log.imported" -msgstr "{$userName} has imported monograph {$submissionId}." - -msgid "notification.addedIdentificationCode" -msgstr "Identification Code added." - -msgid "notification.editedIdentificationCode" -msgstr "Identification Code edited." - -msgid "notification.removedIdentificationCode" -msgstr "Identification Code removed." - -msgid "notification.addedPublicationDate" -msgstr "Publication Date added." - -msgid "notification.editedPublicationDate" -msgstr "Publication Date edited." - -msgid "notification.removedPublicationDate" -msgstr "Publication Date removed." - -msgid "notification.addedPublicationFormat" -msgstr "Publication Format added." - -msgid "notification.editedPublicationFormat" -msgstr "Publication Format edited." - -msgid "notification.removedPublicationFormat" -msgstr "Publication Format removed." - -msgid "notification.addedSalesRights" -msgstr "Sales Rights added." - -msgid "notification.editedSalesRights" -msgstr "Sales Rights edited." - -msgid "notification.removedSalesRights" -msgstr "Sales Rights removed." - -msgid "notification.addedRepresentative" -msgstr "Representative added." - -msgid "notification.editedRepresentative" -msgstr "Representative edited." - -msgid "notification.removedRepresentative" -msgstr "Representative removed." - -msgid "notification.addedMarket" -msgstr "Market added." - -msgid "notification.editedMarket" -msgstr "Market edited." - -msgid "notification.removedMarket" -msgstr "Market removed." - -msgid "notification.addedSpotlight" -msgstr "Spotlight added." - -msgid "notification.editedSpotlight" -msgstr "Spotlight edited." - -msgid "notification.removedSpotlight" -msgstr "Spotlight removed." - -msgid "notification.savedCatalogMetadata" -msgstr "Catalog metadata saved." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Publication format metadata saved." - -msgid "notification.proofsApproved" -msgstr "Proofs approved." - -msgid "notification.removedSubmission" -msgstr "Submission deleted." - -msgid "notification.type.submissionSubmitted" -msgstr "A new monograph, \"{$title},\" has been submitted." - -msgid "notification.type.editing" -msgstr "Editing Events" - -msgid "notification.type.reviewing" -msgstr "Reviewing Events" - -msgid "notification.type.site" -msgstr "Site Events" - -msgid "notification.type.submissions" -msgstr "Submission Events" - -msgid "notification.type.userComment" -msgstr "A reader has made a comment on \"{$title}\"." - -msgid "notification.type.public" -msgstr "Public Announcements" - -msgid "notification.type.editorAssignmentTask" -msgstr "A new monograph has been submitted to which an editor needs to be assigned." - -msgid "notification.type.copyeditorRequest" -msgstr "You have been asked to review copyedits for \"{$file}\"." - -msgid "notification.type.layouteditorRequest" -msgstr "You have been asked to review layouts for \"{$title}\"." - -msgid "notification.type.indexRequest" -msgstr "You have been asked to create an index for \"{$title}\"." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Internal review process started." - -msgid "notification.type.approveSubmission" -msgstr "This submission is currently awaiting approval in the Catalog Entry tool before it will appear in the public catalog." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Awaiting approval." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "The monograph will not be listed in the catalog until it has been published. To add this book to the catalog, click on the Publication tab." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "No payment method configured." - -msgid "notification.type.configurePaymentMethod" -msgstr "A configured payment method is required before you can define e-commerce settings." - -msgid "notification.type.visitCatalogTitle" -msgstr "Catalog Management" - -msgid "notification.type.visitCatalog" -msgstr "The monograph has been approved. Please visit Marketing and Publication to manage its catalog details, using the links just above." - -msgid "user.authorization.invalidReviewAssignment" -msgstr "You have been denied access because you do not seem to be a valid reviewer for this monograph." - -msgid "user.authorization.monographAuthor" -msgstr "You have been denied access because you do not seem to be the author of this monograph." - -msgid "user.authorization.monographReviewer" -msgstr "You have been denied access because you do not seem to be an assigned reviewer of this monograph." - -msgid "user.authorization.monographFile" -msgstr "You have been denied access to the specified monograph file." - -msgid "user.authorization.invalidMonograph" -msgstr "Invalid monograph or no monograph requested!" - -msgid "user.authorization.noContext" -msgstr "No press in context!" - -msgid "user.authorization.seriesAssignment" -msgstr "You are trying to access a monograph that is not part of your series." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Access denied! You have not been assigned to this workflow stage." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "Access denied! The user group you are currently acting under has not been assigned to this workflow stage. Please check your press settings." - -msgid "payment.directSales" -msgstr "Download From Press Website" - -msgid "payment.directSales.price" -msgstr "Price" - -msgid "payment.directSales.availability" -msgstr "Availability" - -msgid "payment.directSales.catalog" -msgstr "Catalog" - -msgid "payment.directSales.approved" -msgstr "Approved" - -msgid "payment.directSales.priceCurrency" -msgstr "Price ({$currency})" - -msgid "payment.directSales.numericOnly" -msgstr "Prices should be numeric only. Do not include currency symbols." - -msgid "payment.directSales.directSales" -msgstr "Direct Sales" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.notAvailable" -msgstr "Not Available" - -msgid "payment.directSales.notSet" -msgstr "Not Set" - -msgid "payment.directSales.openAccess" -msgstr "Open Access" - -msgid "payment.directSales.price.description" -msgstr "File formats can be made available for downloading from the press website through open access at no cost to readers or direct sales (using an online payment processor, as configured in Distribution). For this file indicate the basis of access." - -msgid "payment.directSales.validPriceRequired" -msgstr "A valid numeric price is required." - -msgid "payment.directSales.purchase" -msgstr "Purchase {$format} ({$amount} {$currency})" - -msgid "payment.directSales.download" -msgstr "Download {$format}" - -msgid "payment.directSales.monograph.name" -msgstr "Purchase Monograph or Chapter Download" - -msgid "payment.directSales.monograph.description" -msgstr "This transaction is for the purchase of a direct download of a single monograph or monograph chapter." - -msgid "debug.notes.helpMappingLoad" -msgstr "Reloaded XML help mapping file {$filename} in search of {$id}." - -msgid "rt.metadata.pkp.dctype" -msgstr "Book" - -msgid "submission.pdf.download" -msgstr "Download this PDF file" - -msgid "user.profile.form.showOtherContexts" -msgstr "Register with other presses" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Hide other presses" - -msgid "submission.round" -msgstr "Round {$round}" - -msgid "user.authorization.invalidPublishedSubmission" -msgstr "An invalid published submission was specified." - -msgid "catalog.coverImageTitle" -msgstr "Cover Image" diff --git a/locale/en_US/manager.po b/locale/en_US/manager.po deleted file mode 100644 index a53ab1a9edd..00000000000 --- a/locale/en_US/manager.po +++ /dev/null @@ -1,1107 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2020-12-11 20:34+0000\n" -"Last-Translator: Weblate Admin \n" -"Language-Team: English (United States) \n" -"Language: en_US\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "This will replace any locale-specific press settings you had for this locale" - -msgid "manager.languages.noneAvailable" -msgstr "Sorry, no additional languages are available. Contact your site administrator if you wish to use additional languages with this press." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "This will be the default language for the press site." - -msgid "manager.series.form.mustAllowPermission" -msgstr "Please ensure that at least one checkbox is checked for each Series Editor assignment." - -msgid "manager.series.form.reviewFormId" -msgstr "Please ensure that you have chosen a valid review form." - -msgid "manager.series.submissionIndexing" -msgstr "Will not be included in the indexing of the press" - -msgid "manager.series.editorRestriction" -msgstr "Items can only be submitted by Editors and Series Editors." - -msgid "manager.series.confirmDelete" -msgstr "Are you sure you want to permanently delete this series?" - -msgid "manager.series.indexed" -msgstr "Indexed" - -msgid "manager.series.open" -msgstr "Open Submissions" - -msgid "manager.series.readingTools" -msgstr "Reading Tools" - -msgid "manager.series.submissionReview" -msgstr "Will not be peer-reviewed" - -msgid "manager.series.submissionsToThisSection" -msgstr "Submissions made to this series" - -msgid "manager.series.abstractsNotRequired" -msgstr "Do not require abstracts" - -msgid "manager.series.disableComments" -msgstr "Disable reader comments for this series." - -msgid "manager.series.book" -msgstr "Book Series" - -msgid "manager.series.create" -msgstr "Create Series" - -msgid "manager.series.policy" -msgstr "Series description" - -msgid "manager.series.assigned" -msgstr "Editors for this Series" - -msgid "manager.series.seriesEditorInstructions" -msgstr "Add a Series Editor to this series from the available Series Editors. Once added, designate whether the Series Editor will oversee the REVIEW (peer review) and/or the EDITING (copyediting, layout and proofreading) of submissions to this series. Series Editors are created by clicking Series Editors under Roles in Press Management." - -msgid "manager.series.hideAbout" -msgstr "Omit this series from About the Press." - -msgid "manager.series.unassigned" -msgstr "Available Series Editors" - -msgid "manager.series.form.abbrevRequired" -msgstr "An abbreviated title is required for the series." - -msgid "manager.series.form.titleRequired" -msgstr "A title is required for the series." - -msgid "manager.series.noneCreated" -msgstr "No series have been created." - -msgid "manager.series.existingUsers" -msgstr "Existing users" - -msgid "manager.series.seriesTitle" -msgstr "Series Title" - -msgid "manager.series.restricted" -msgstr "Don't allow authors to submit directly to this series." - -msgid "manager.series.confirmDeactivateSeries.error" -msgstr "At least one series must be active. Visit the workflow settings to disable all submissions to this press." - -msgid "manager.payment.generalOptions" -msgstr "General Options" - -msgid "manager.payment.options.enablePayments" -msgstr "Payments will be enabled for this press. Note that users will be required to log in to make payments." - -msgid "manager.payment.success" -msgstr "The payment settings have been updated." - -msgid "manager.settings" -msgstr "Settings" - -msgid "manager.settings.pressSettings" -msgstr "Press Settings" - -msgid "manager.settings.press" -msgstr "Press" - -msgid "manager.settings.publisher.identity" -msgstr "Publisher Identity" - -msgid "manager.settings.publisher.identity.description" -msgstr "These fields are required to publish valid ONIX metadata." - -msgid "manager.settings.publisher" -msgstr "Press Publisher Name" - -msgid "manager.settings.location" -msgstr "Geographical Location" - -msgid "manager.settings.publisherCode" -msgstr "Publisher Code" - -msgid "manager.settings.publisherCodeType" -msgstr "Publisher Code Type" - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "This is not a valid Publisher Code Type." - -msgid "manager.settings.distributionDescription" -msgstr "All settings specific to the distribution process (notification, indexing, archiving, payment, reading tools)." - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Monograph file downloads" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Monograph abstract page views" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Monograph abstract and downloads" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Series main page views" - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Press main page views" - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Narrow results by context (series and/or monograph)." - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "Narrow results by object type (press, series, monograph, file types) and/or by one or more object id(s)." - -msgid "manager.tools" -msgstr "Tools" - -msgid "manager.tools.importExport" -msgstr "All tools specific to importing and exporting data (presses, monographs, users)" - -msgid "manager.tools.statistics" -msgstr "Tools to generate reports related to usage statistics (catalog index page view, monograph abstract page views, monograph file downloads)" - -msgid "manager.users.availableRoles" -msgstr "Available Roles" - -msgid "manager.users.currentRoles" -msgstr "Current Roles" - -msgid "manager.users.selectRole" -msgstr "Select Role" - -msgid "manager.people.allEnrolledUsers" -msgstr "Users Enrolled in this Press" - -msgid "manager.people.allPresses" -msgstr "All Presses" - -msgid "manager.people.allSiteUsers" -msgstr "Enroll a User from this Site in this Press" - -msgid "manager.people.allUsers" -msgstr "All Enrolled Users" - -msgid "manager.people.confirmRemove" -msgstr "Remove this user from this press? This action will unenroll the user from all roles within this press." - -msgid "manager.people.enrollExistingUser" -msgstr "Enroll an Existing User" - -msgid "manager.people.enrollSyncPress" -msgstr "With press" - -msgid "manager.people.mergeUsers.from.description" -msgstr "Select a user to merge into another user account (e.g., when someone has two user accounts). The account selected first will be deleted and its submissions, assignments, etc. will be attributed to the second account." - -msgid "manager.people.mergeUsers.into.description" -msgstr "Select a user to whom to attribute the previous user's authorships, editing assignments, etc." - -msgid "manager.people.syncUserDescription" -msgstr "Enrollment synchronization will enroll all users enrolled in the specified role in the specified press into the same role in this press. This function allows a common set of users (e.g., Reviewers) to be synchronized between presses." - -msgid "manager.people.confirmDisable" -msgstr "" -"Disable this user? This will prevent the user from logging into the system.\n" -"\n" -"You may optionally provide the user with a reason for disabling their account." - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Sorry, you do not have administrative rights over this user. This may be because:\n" -"\t\t
      \n" -"\t\t\t
    • The user is a site administrator
    • \n" -"\t\t\t
    • The user is active in presses you do not manage
    • \n" -"\t\t
    \n" -"\tThis task must be performed by a site administrator.\n" -"\t" - -msgid "manager.system" -msgstr "System Settings" - -msgid "manager.system.archiving" -msgstr "Archiving" - -msgid "manager.system.reviewForms" -msgstr "Review Forms" - -msgid "manager.system.readingTools" -msgstr "Reading Tools" - -msgid "manager.system.payments" -msgstr "Payments" - -msgid "user.authorization.pluginLevel" -msgstr "You do not have sufficient privileges to manage this plugin." - -msgid "manager.pressManagement" -msgstr "Press Management" - -msgid "manager.setup" -msgstr "Setup" - -msgid "manager.setup.aboutItemContent" -msgstr "Content" - -msgid "manager.setup.addAboutItem" -msgstr "Add About Item" - -msgid "manager.setup.addChecklistItem" -msgstr "Add Checklist Item" - -msgid "manager.setup.addItem" -msgstr "Add Item" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Add Item to Appear in \"About the Press\"" - -msgid "manager.setup.addNavItem" -msgstr "Add Item" - -msgid "manager.setup.addSponsor" -msgstr "Add Sponsoring Organization" - -msgid "manager.setup.announcements" -msgstr "Announcements" - -msgid "manager.setup.announcements.success" -msgstr "The announcements settings have been updated." - -msgid "manager.setup.announcementsDescription" -msgstr "Announcements may be published to inform readers of press news and events. Published announcements will appear on the Announcements page." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Additional Information" - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "Enter any additional information that should be displayed to readers on the Announcements page." - -msgid "manager.setup.appearInAboutPress" -msgstr "(To appear in About the Press) " - -msgid "manager.setup.contextAbout" -msgstr "About the Press" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Include any information about your press which may be of interest to " -"readers, authors or reviewers. This could include your open access policy, " -"the focus and scope of the press, sponsorship disclosure, and the history of " -"the press." - -msgid "manager.setup.contextSummary" -msgstr "Press Summary" - -msgid "manager.setup.copyediting" -msgstr "Copyeditors" - -msgid "manager.setup.copyeditInstructions" -msgstr "Copyedit Instructions" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "The Copyedit Instructions will be made available to Copyeditors, Authors, and Section Editors in the Submission Editing stage. Below is a default set of instructions in HTML, which can be modified or replaced by the Press Manager at any point (in HTML or plain text)." - -msgid "manager.setup.copyrightNotice" -msgstr "Copyright notice" - -msgid "manager.setup.coverage" -msgstr "Coverage" - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Cover Image Max Height" - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Cover Image Max Width" - -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" -msgstr "Images will be reduced when larger than this size but will never be blown up or stretched to fit these dimensions." - -msgid "manager.setup.customizingTheLook" -msgstr "Step 5. Customizing the Look & Feel" - -msgid "manager.setup.customTags" -msgstr "Custom tags" - -msgid "manager.setup.customTagsDescription" -msgstr "Custom HTML header tags to be inserted in the header of every page (e.g., META tags)." - -msgid "manager.setup.details" -msgstr "Details" - -msgid "manager.setup.details.description" -msgstr "Name of press, contacts, sponsors, and search engines." - -msgid "manager.setup.disableUserRegistration" -msgstr "The Press Manager will register all user accounts. Editors or Section Editors may register user accounts for reviewers." - -msgid "manager.setup.discipline" -msgstr "Academic Discipline and Sub-Disciplines" - -msgid "manager.setup.disciplineDescription" -msgstr "Useful when press crosses disciplinary boundaries and/or authors submit multidisciplinary items." - -msgid "manager.setup.disciplineExamples" -msgstr "(E.g., History; Education; Sociology; Psychology; Cultural Studies; Law)" - -msgid "manager.setup.disciplineProvideExamples" -msgstr "Provide examples of relevant academic disciplines for this press" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "Add the table of contents for the current monograph (if available)." - -msgid "manager.setup.displayOnHomepage" -msgstr "Homepage Content" - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Display featured books on the home page" - -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Featured Books" - -msgid "manager.setup.displayInSpotlight" -msgstr "Display books in the spotlight on the home page" - -msgid "manager.setup.displayInSpotlight.label" -msgstr "Spotlight" - -msgid "manager.setup.displayNewReleases" -msgstr "Display new releases on the home page" - -msgid "manager.setup.displayNewReleases.label" -msgstr "New Releases" - -msgid "manager.setup.doiPrefix" -msgstr "DOI Prefix" - -msgid "manager.setup.doiPrefixDescription" -msgstr "The DOI (Digital Object Identifier) Prefix is assigned by CrossRef and is in the format 10.xxxx (e.g. 10.1234)." - -msgid "manager.setup.editorDecision" -msgstr "Editor Decision" - -msgid "manager.setup.emailBounceAddress" -msgstr "Bounce Address" - -msgid "manager.setup.emailBounceAddress.description" -msgstr "Any undeliverable emails will result in an error message to this address." - -msgid "manager.setup.emailBounceAddress.disabled" -msgstr "In order to send undeliverable emails to a bounce address, the site administrator must enable the allow_envelope_sender option in the site configuration file. Server configuration may be required, as indicated in the OMP documentation." - -msgid "manager.setup.emails" -msgstr "Email Identification" - -msgid "manager.setup.emailSignature" -msgstr "Signature" - -msgid "manager.setup.emailSignature.description" -msgstr "The prepared emails that are sent by the system on behalf of the press will have the following signature added to the end." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Enable announcements" - -msgid "manager.setup.enableAnnouncements.description" -msgstr "Announcements may be published to inform readers of news and events. Published announcements will appear on the Announcements page." - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Display on Homepage" - -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "How many announcements to display on the homepage. Leave this empty to display none." - -msgid "manager.setup.enablePressInstructions" -msgstr "Enable this press to appear publicly on the site" - -msgid "manager.setup.enablePublicMonographId" -msgstr "Custom identifiers will be used to identify published items." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "Custom identifiers will be used to identify galleys (e.g. HTML or PDF files) for published items." - -msgid "manager.setup.enableUserRegistration" -msgstr "Visitors can register a user account with the press." - -msgid "manager.setup.focusAndScope" -msgstr "Focus and Scope of Press" - -msgid "manager.setup.focusAndScope.description" -msgstr "Describe to authors, readers, and librarians the range of monographs and other items the press will publish." - -msgid "manager.setup.focusScope" -msgstr "Focus and Scope" - -msgid "manager.setup.focusScopeDescription" -msgstr "EXAMPLE HTML DATA" - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "For Authors to Index Their Work" - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "OMP adheres to the Open Archives Initiative Protocol for Metadata Harvesting, which is the emerging standard for providing well-indexed access to electronic research resources on a global scale. The authors will use a similar template to provide metadata for their submission. The Press Manager should select the categories for indexing and present authors with relevant examples to assist them in indexing their work, separating terms with a semi-colon (e.g., term1; term2). The entries should be introduced as examples by using \"E.g.,\" or \"For example,\"." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "The primary contact email is required." - -msgid "manager.setup.form.contactNameRequired" -msgstr "The primary contact name is required." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "The number of reviewers per submission is required." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "The support email is required." - -msgid "manager.setup.form.supportNameRequired" -msgstr "The support name is required." - -msgid "manager.setup.generalInformation" -msgstr "General Information" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Step 1. Getting Down the Details" - -msgid "manager.setup.guidelines" -msgstr "Guidelines" - -msgid "manager.setup.preparingWorkflow" -msgstr "Step 3. Preparing the workflow" - -msgid "manager.setup.identity" -msgstr "Press Identity" - -msgid "manager.setup.information" -msgstr "Information" - -msgid "manager.setup.information.description" -msgstr "Brief descriptions of the press for librarians and prospective authors and readers. These are made available in the site's sidebar when the Information block has been added." - -msgid "manager.setup.information.forAuthors" -msgstr "For Authors" - -msgid "manager.setup.information.forLibrarians" -msgstr "For Librarians" - -msgid "manager.setup.information.forReaders" -msgstr "For Readers" - -msgid "manager.setup.information.success" -msgstr "The information for this press was updated." - -msgid "manager.setup.institution" -msgstr "Institution" - -msgid "manager.setup.itemsPerPage" -msgstr "Items per page" - -msgid "manager.setup.itemsPerPage.description" -msgstr "Limit the number of items (for example, submissions, users, or editing assignments) to show in a list before showing subsequent items in another page." - -msgid "manager.setup.keyInfo" -msgstr "Key Information" - -msgid "manager.setup.keyInfo.description" -msgstr "Provide a short description of your press and identify editors, managing directors and other members of your editorial team." - -msgid "manager.setup.labelName" -msgstr "Label Name" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Layout Editors" - -msgid "manager.setup.layoutInstructions" -msgstr "Layout Instructions" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "Layout Instructions can be prepared for the formatting of publishing items in the press and be entered below in HTML or plain text. They will be made available to the Layout Editor and Section Editor on the Editing page of each submission. (As each press may employ its own file formats, bibliographic standards, style sheets, etc., a default set of instructions is not provided.)" - -msgid "manager.setup.layoutTemplates" -msgstr "Layout Templates" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "Templates can be uploaded to appear in Layout for each of the standard formats published in the press (e.g., monograph, book review, etc.) using any file format (e.g., pdf, doc, etc.) with annotations added specifying font, size, margins, etc. to serve as a guide for Layout Editors and Proofreaders." - -msgid "manager.setup.layoutTemplates.file" -msgstr "Template File" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Title" - -msgid "manager.setup.lists" -msgstr "Lists" - -msgid "manager.setup.lists.success" -msgstr "The list settings have been updated." - -msgid "manager.setup.look" -msgstr "Look & Feel" - -msgid "manager.setup.look.description" -msgstr "Homepage header, content, press header, footer, navigation bar, and style sheet." - -msgid "manager.setup.settings" -msgstr "Settings" - -msgid "manager.setup.management.description" -msgstr "Access and security, scheduling, announcements, copyediting, layout, and proofreading." - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Management of Basic Editorial Steps" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Management and Publishing Setup" - -msgid "manager.setup.managingThePress" -msgstr "Step 4. Managing the Settings" - -msgid "manager.setup.masthead.success" -msgstr "The masthead details for this press have been updated." - -msgid "manager.setup.noImageFileUploaded" -msgstr "No image file uploaded." - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "No style sheet uploaded." - -msgid "manager.setup.note" -msgstr "Note" - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "When using the Notify Author email, include the email addresses of all co-authors for multiple-author submissions, and not just the submitting user." - -msgid "manager.setup.noUseCopyeditors" -msgstr "Copyediting will be undertaken by an Editor or Section Editor assigned to the submission." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "An Editor or Section Editor assigned to the submission will prepare the HTML, PDF, etc., files." - -msgid "manager.setup.noUseProofreaders" -msgstr "An Editor or Section Editor assigned to the submission will check the galleys." - -msgid "manager.setup.numPageLinks" -msgstr "Page links" - -msgid "manager.setup.numPageLinks.description" -msgstr "Limit the number of links to display to subsequent pages in a list." - -msgid "manager.setup.onlineAccessManagement" -msgstr "Access to Press Content" - -msgid "manager.setup.onlineIssn" -msgstr "Online ISSN" - -msgid "manager.setup.policies" -msgstr "Policies" - -msgid "manager.setup.policies.description" -msgstr "Focus, peer review, sections, privacy, security, and additional about items." - -msgid "manager.setup.privacyStatement.success" -msgstr "The privacy statement has been updated." - -msgid "manager.setup.appearanceDescription" -msgstr "Various components of the press appearance can be configured from this page, including header and footer elements, the press style and theme, and how lists of information are presented to users." - -msgid "manager.setup.pressDescription" -msgstr "Press Summary" - -msgid "manager.setup.pressDescription.description" -msgstr "A brief description of your press." - -msgid "manager.setup.aboutPress" -msgstr "About the Press" - -msgid "manager.setup.aboutPress.description" -msgstr "Include any information about your press which may be of interest to readers, authors or reviewers. This could include your open access policy, the focus and scope of the press, copyright notice, sponsorship disclosure, history of the press, and a privacy statement." - -msgid "manager.setup.pressArchiving" -msgstr "Press Archiving" - -msgid "manager.setup.homepageContent" -msgstr "Press Homepage Content" - -msgid "manager.setup.homepageContentDescription" -msgstr "The press homepage consists of navigation links by default. Additional homepage content can be appended by using one or all of the following options, which will appear in the order shown." - -msgid "manager.setup.pressHomepageContent" -msgstr "Press Homepage Content" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "The press homepage consists of navigation links by default. Additional homepage content can be appended by using one or all of the following options, which will appear in the order shown." - -msgid "manager.setup.contextInitials" -msgstr "Press Initials" - -msgid "manager.setup.layout" -msgstr "Press Layout" - -msgid "manager.setup.pageHeader" -msgstr "Press Page Header" - -msgid "manager.setup.pageHeaderDescription" -msgstr "" - -msgid "manager.setup.pressPolicies" -msgstr "Step 2. Press Policies" - -msgid "manager.setup.pressSetup" -msgstr "Press Setup" - -msgid "manager.setup.pressSetupUpdated" -msgstr "Your press setup has been updated." - -msgid "manager.setup.styleSheetInvalid" -msgstr "Invalid style sheet format. Accepted format is .css." - -msgid "manager.setup.pressTheme" -msgstr "Press Theme" - -msgid "manager.setup.pressThumbnail" -msgstr "Press thumbnail" - -msgid "manager.setup.pressThumbnail.description" -msgstr "A small logo or representation of the press that can be used in lists of presses." - -msgid "manager.setup.contextTitle" -msgstr "Press Name" - -msgid "manager.setup.printIssn" -msgstr "Print ISSN" - -msgid "manager.setup.proofingInstructions" -msgstr "Proofing Instructions" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "The Proofreading Instructions will be made available to Proofreaders, Authors, Layout Editors, and Section Editors in the Submission Editing stage. Below is a default set of instructions in HTML, which can be edited or replaced by the Press Manager at any point (in HTML or plain text)." - -msgid "manager.setup.proofreading" -msgstr "Proofreaders" - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Provide Layout Editors with instructions." - -msgid "manager.setup.publicationScheduleDescription" -msgstr "Press items can be published collectively, as part of a monograph with its own Table of Contents. Alternatively, individual items can be published as soon as they are ready, by adding them to the \"current\" volume's Table of Contents. Provide readers, in About the Press, with a statement about the system this press will use and its expected frequency of publication." - -msgid "manager.setup.publisher" -msgstr "Publisher" - -msgid "manager.setup.publisherDescription" -msgstr "The name of the organization publishing the press will appear in About the Press." - -msgid "manager.setup.referenceLinking" -msgstr "Reference Linking" - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Layout Instructions for Reference Linking" - -msgid "manager.setup.restrictMonographAccess" -msgstr "Users must be registered and log in to view open access content." - -msgid "manager.setup.restrictSiteAccess" -msgstr "Users must be registered and log in to view the press site." - -msgid "manager.setup.reviewGuidelines" -msgstr "External Review Guidelines" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "Provide external reviewers with criteria for judging a submission's suitability for publication in the press, which may include instructions for preparing an effective and helpful review. Reviewers will have an opportunity to provide comments intended for the author and editor, as well as separate comments only for the editor." - -msgid "manager.setup.internalReviewGuidelines" -msgstr "Internal Review Guidelines" - -msgid "manager.setup.reviewOptions" -msgstr "Review Options" - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Automated Email Reminders" - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "To activate these options, the site administrator must enable the scheduled_tasks option in the OMP configuration file. Additional server configuration may be required to support this functionality (which may not be possible on all servers), as indicated in the OMP documentation." - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "Editors will rate reviewers on a five-point quality scale after each review." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" -msgstr "Restrict File Access" - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "Reviewers will have access to the submission file only after agreeing to review it." - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Reviewer Access" - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" -msgstr "One-click Reviewer Access" - -#, fuzzy -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" -msgstr "Reviewers can be sent a secure link in the email invitation, which will log them in automatically when they click the link." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" -msgstr "Include a secure link in the email invitation to reviewers." - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Reviewer Ratings" - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Reviewer Reminders" - -msgid "manager.setup.reviewPolicy" -msgstr "Review Policy" - -msgid "manager.setup.reviewProcess" -msgstr "Review Process" - -msgid "manager.setup.reviewProcessDescription" -msgstr "OMP supports two models for managing the review process. The Standard Review Process is recommended because it steps reviewers through the process, ensures a complete review history for each submission, and takes advantage of automatic reminder notification, and standard recommendations for submissions (Accept; Accept with revisions; Submit for review; Submit elsewhere; Decline; See comments).

    Select one of the following:" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Email-Attachment Review Process" - -msgid "manager.setup.reviewProcessStandard" -msgstr "Standard Review Process" - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "Editors will email selected Reviewers the title and abstract of the submission, as well as an invitation to log into the press web site to complete the review. Reviewers enter the press web site to agree to do the review, to download submissions, submit their comments, and select a recommendation." - -msgid "manager.setup.searchDescription.description" -msgstr "Provide a brief description (50-300 characters) of the press which search engines can display when listing the press in search results." - -msgid "manager.setup.searchEngineIndexing" -msgstr "Search Indexing" - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "Help search engines like Google discover and display your site. You are encouraged to submit your sitemap." - -msgid "manager.setup.searchEngineIndexing.success" -msgstr "The search engine index settings have been updated." - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Sections and Section Editors" - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "(If sections are not added, then items are submitted to the Monographs section by default.)" - -msgid "manager.setup.sectionsDescription" -msgstr "To create or modify sections for the press (e.g., Monographs, Book Reviews, etc.), go to Section Management.

    Authors on submitting items to the press will designate..." - -msgid "manager.setup.securitySettings" -msgstr "Access and Security Settings" - -msgid "manager.setup.securitySettings.note" -msgstr "Other security- and access-related options can be configured from the Access and Security page." - -msgid "manager.setup.selectEditorDescription" -msgstr "The press editor who will see it through the editorial process." - -msgid "manager.setup.selectSectionDescription" -msgstr "The press section for which the item will be considered." - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "Always show galley links and indicate restricted access." - -msgid "manager.setup.siteAccess.view" -msgstr "Site Access" - -msgid "manager.setup.siteAccess.viewContent" -msgstr "View Monograph Content" - -msgid "manager.setup.stepsToPressSite" -msgstr "Five Steps to a Press Web Site" - -msgid "manager.setup.subjectExamples" -msgstr "(E.g., Photosynthesis; Black Holes; Four-Color Map Problem; Bayesian Theory)" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Keywords" - -msgid "manager.setup.subjectProvideExamples" -msgstr "Provide examples of keywords or topics as a guide for authors" - -msgid "manager.setup.submissionGuidelines" -msgstr "Submission guidelines" - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Submission Preparation Checklist" - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "Checklist item is required." - -msgid "manager.setup.workflow" -msgstr "Workflow" - -msgid "manager.setup.submissions.description" -msgstr "Author guidelines, copyright, and indexing (including registration)." - -msgid "manager.setup.typeExamples" -msgstr "(E.g., Historical Inquiry; Quasi-Experimental; Literary Analysis; Survey/Interview)" - -msgid "manager.setup.typeMethodApproach" -msgstr "Type (Method/Approach)" - -msgid "manager.setup.typeProvideExamples" -msgstr "Provide examples of relevant research types, methods, and approaches for this field" - -msgid "manager.setup.useCopyeditors" -msgstr "A Copyeditor will be assigned to work with each submission." - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "An editorial/review board will be used by the press." - -msgid "manager.setup.useImageTitle" -msgstr "Title Image" - -msgid "manager.setup.useStyleSheet" -msgstr "Press style sheet" - -msgid "manager.setup.useLayoutEditors" -msgstr "A Layout Editor will be assigned to prepare the HTML, PDF, etc., files for electronic publication." - -msgid "manager.setup.useProofreaders" -msgstr "A Proofreader will be assigned to check (along with the authors) the galleys prior to publication." - -msgid "manager.setup.userRegistration" -msgstr "User Registration" - -msgid "manager.setup.useTextTitle" -msgstr "Title text" - -msgid "manager.setup.volumePerYear" -msgstr "Volumes per year" - -msgid "manager.setup.publicationFormat.code" -msgstr "Format" - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "A format must be chosen." - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "You must assign a name to this format." - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "Is this a physical (non-digital) format?" - -msgid "manager.setup.publicationFormat.inUse" -msgstr "Because this publication format is currently in use by a monograph in your press, it cannot be deleted." - -msgid "manager.setup.newPublicationFormat" -msgstr "New Publication Format" - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "To create a new publication format, fill out the form below and click the 'Create' button." - -msgid "manager.setup.genresDescription" -msgstr "These genres are used for file-naming purposes and are presented in a pull-down menu on uploading files. The genres designated ## allow the user to associate the file with either the whole book 99Z or a particular chapter by number (e.g., 02)." - -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "Editors send\tReviewers the request to review with the submission attached to the email. Reviewers email editors their assent (or regrets), as well as the review and recommendation. Editors enter Reviewers' assent (or regrets), as well as the review and recommendation on the submission's Review page, to record the review process." - -msgid "manager.setup.disableSubmissions.notAccepting" -msgstr "This press is not accepting submissions at this time. Visit the workflow settings to allow submissions." - -msgid "manager.setup.disableSubmissions.description" -msgstr "Prevent users from submitting new articles to the press. Submissions can be disabled for individual press series on the press series settings page." - -msgid "manager.setup.genres" -msgstr "Genres" - -msgid "manager.setup.newGenre" -msgstr "New Monograph Genre" - -msgid "manager.setup.newGenreDescription" -msgstr "To create a new genre, fill out the form below and click the 'Create' button." - -msgid "manager.setup.deleteSelected" -msgstr "Delete Selected" - -msgid "manager.setup.restoreDefaults" -msgstr "Restore Default Settings" - -msgid "manager.setup.prospectus" -msgstr "Prospectus Guide" - -msgid "manager.setup.prospectusDescription" -msgstr "The prospectus guide is a press prepared document that helps the author describe the submitted materials in a way that allows a press to determine the value of the submission. A prospectus can include a lot of items- from marketing potential to theoretical value; in any case, a press should create a prospectus guide that complements their publishing agenda." - -msgid "manager.setup.submitToCategories" -msgstr "Allow category submissions" - -msgid "manager.setup.submitToSeries" -msgstr "Allow series submissions" - -msgid "manager.setup.issnDescription" -msgstr "The ISSN (International Standard Serial Number) is an eight-digit number which identifying periodical publications including electronic serials. A number can be obtained from the ISSN International Centre." - -msgid "manager.setup.currentFormats" -msgstr "Current Formats" - -msgid "manager.setup.categoriesAndSeries" -msgstr "Categories and Series" - -msgid "manager.setup.categories.description" -msgstr "You may create a list of categories to help organize your publications. Categories are groupings of books according to subject matter, for example Economics; Literature; Poetry; and so on. Categories may be nested within \"parent\" categories: for example, an Economics parent category may include individual Microeconomics and Macroeconomics categories. Visitors will be able to search and browse the press by category." - -msgid "manager.setup.series.description" -msgstr "You may create any number of series to help organize your publications. A series represents a special set of books devoted to a theme or topics that someone has proposed, usually a faculty member or two, and then oversees. Visitors will be able to search and browse the press by series." - -msgid "manager.setup.reviewForms" -msgstr "Review Forms" - -msgid "manager.setup.roleType" -msgstr "Role Type" - -msgid "manager.setup.authorRoles" -msgstr "Author Roles" - -msgid "manager.setup.managerialRoles" -msgstr "Managerial Roles" - -msgid "manager.setup.availableRoles" -msgstr "Available Roles" - -msgid "manager.setup.currentRoles" -msgstr "Current Roles" - -msgid "manager.setup.internalReviewRoles" -msgstr "Internal Review Roles" - -msgid "manager.setup.masthead" -msgstr "Masthead" - -msgid "manager.setup.editorialTeam" -msgstr "Editorial Team" - -msgid "manager.setup.editorialTeam.description" -msgstr "List of editors, managing directors, and other individuals associated with the press." - -msgid "manager.setup.files" -msgstr "Files" - -msgid "manager.setup.productionTemplates" -msgstr "Production Templates" - -msgid "manager.files.note" -msgstr "Note: The Files Browser is an advanced feature that allows the files and directories associated with a press to be viewed and manipulated directly." - -msgid "manager.setup.copyrightNotice.sample" -msgstr "" -"

    Proposed Creative Commons Copyright Notices

    \n" -"

    Proposed Policy for Presses That Offer Open Access

    \n" -"Authors who publish with this press agree to the following terms:\n" -"
      \n" -"\t
    1. Authors retain copyright and grant the press right of first publication with the work simultaneously licensed under a Creative Commons Attribution License that allows others to share the work with an acknowledgement of the work's authorship and initial publication in this press.
    2. \n" -"\t
    3. Authors are able to enter into separate, additional contractual series for the non-exclusive distribution of the version of the work published by the press (e.g., post it to an institutional repository or publish it in a book), with an acknowledgement of its initial publication in this press.
    4. \n" -"\t
    5. Authors are permitted and encouraged to post their work online (e.g., in institutional repositories or on their website) prior to and during the submission process, as it can lead to productive exchanges, as well as earlier and greater citation of published work (See The Effect of Open Access).
    6. \n" -"
    \n" -"\n" -"

    Proposed Policy for Presses That Offer Delayed Open Access

    \n" -"Authors who publish with this press agree to the following terms:\n" -"
      \n" -"\t
    1. Authors retain copyright and grant the press right of first publication, with the work [SPECIFY PERIOD OF TIME] after publication simultaneously licensed under a Creative Commons Attribution License that allows others to share the work with an acknowledgement of the work's authorship and initial publication in this press.
    2. \n" -"\t
    3. Authors are able to enter into separate, additional contractual series for the non-exclusive distribution of the version of the work published by the press (e.g., post it to an institutional repository or publish it in a book), with an acknowledgement of its initial publication in this press.
    4. \n" -"\t
    5. Authors are permitted and encouraged to post their work online (e.g., in institutional repositories or on their website) prior to and during the submission process, as it can lead to productive exchanges, as well as earlier and greater citation of published work (See The Effect of Open Access).
    6. \n" -"
    " - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "" -"Steps: Submission Queue > Submission Review > Submission Editing > Table of Contents.

    \n" -"Select a model for handling these aspects of the editorial process. (To designate a Managing Editor and Series Editors, go to Editors in Press Management.)" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "" -"

    To enable readers to locate online versions of the work cited by an author, the following options are available.

    \n" -"\n" -"
      \n" -"\t
    1. Add a Reading Tool

      The Press Manager can add \"Find References\" to the Reading Tools that accompany published items, which enables readers to paste a reference's title and then search pre-selected scholarly databases for the cited work.

    2. \n" -"\t
    3. Embed Links in the References

      The Layout Editor can add a link to references that can be found online by using the following instructions (which can be edited).

    4. \n" -"
    " - -msgid "manager.publication.library" -msgstr "Press Library" - -msgid "manager.setup.resetPermissions" -msgstr "Reset Monograph Permissions" - -msgid "manager.setup.resetPermissions.confirm" -msgstr "Are you sure you wish to reset permissions data already attached to monographs?" - -msgid "manager.setup.resetPermissions.description" -msgstr "Copyright statement and license information will be permanently attached to published content, ensuring that this data will not change in the case of a press changing policies for new submissions. To reset stored permissions information already attached to published content, use the button below." - -msgid "manager.setup.resetPermissions.success" -msgstr "Monograph permissions were successfully reset." - -msgid "grid.genres.title.short" -msgstr "Components" - -msgid "grid.genres.title" -msgstr "Monograph Components" - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "Send a copy to the primary contact, identified in the Press Settings." - -msgid "grid.series.pathAlphaNumeric" -msgstr "The series path must consist of only letters and numbers." - -msgid "grid.series.pathExists" -msgstr "The series path already exists. Please enter a unique path." - -msgid "manager.navigationMenus.form.navigationMenuItem.series" -msgstr "Select Series" - -msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" -msgstr "Please select the series to which you would like this menu item to link." - -msgid "manager.navigationMenus.form.navigationMenuItem.category" -msgstr "Select Category" - -msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" -msgstr "Please select the category to which you would like this menu item to link." - -msgid "grid.series.urlWillBe" -msgstr "The series's URL will be: {$sampleUrl}" - -msgid "stats.publicationStats" -msgstr "Monograph Stats" - -msgid "stats.publications.details" -msgstr "Monograph Details" - -msgid "stats.publications.none" -msgstr "No monographs were found with usage statistics matching these parameters." - -msgid "stats.publications.totalAbstractViews.timelineInterval" -msgstr "Total catalog views by date" - -msgid "stats.publications.totalGalleyViews.timelineInterval" -msgstr "Total file views by date" - -msgid "stats.publications.countOfTotal" -msgstr "{$count} of {$total} monographs" - -msgid "stats.publications.abstracts" -msgstr "Catalog Entries" - -msgid "plugins.importexport.common.error.noObjectsSelected" -msgstr "No objects selected." - -msgid "plugins.importexport.common.error.validation" -msgstr "Could not convert selected objects." - -msgid "plugins.importexport.common.invalidXML" -msgstr "Invalid XML:" - -msgid "plugins.importexport.native.exportSubmissions" -msgstr "Export Submissions" diff --git a/locale/en_US/submission.po b/locale/en_US/submission.po deleted file mode 100644 index 8b76255bc21..00000000000 --- a/locale/en_US/submission.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T06:23:43-07:00\n" -"PO-Revision-Date: 2019-09-30T06:23:43-07:00\n" -"Language: \n" - -msgid "submission.submit.title" -msgstr "Submit a Monograph" - -msgid "submission.upload.selectComponent" -msgstr "Select component" - -msgid "submission.title" -msgstr "Book Title" - -msgid "submission.select" -msgstr "Select Submission" - -msgid "submission.synopsis" -msgstr "Synopsis" - -msgid "submission.workflowType" -msgstr "Submission Type" - -msgid "submission.workflowType.description" -msgstr "A monograph is a work authored wholly by one or more authors. An edited volume has different authors for each chapter (with the chapter details entered later in this process.)" - -msgid "submission.workflowType.editedVolume.label" -msgstr "Edited Volume" - -msgid "submission.workflowType.editedVolume" -msgstr "Edited Volume: Authors are associated with their own chapter." - -msgid "submission.workflowType.authoredWork" -msgstr "Monograph: Authors are associated with the book as a whole." - -msgid "submission.workflowType.change" -msgstr "Change" - -msgid "submission.editorName" -msgstr "{$editorName} (ed)" - -msgid "submission.monograph" -msgstr "Monograph" - -msgid "submission.published" -msgstr "Production Ready" - -msgid "submission.fairCopy" -msgstr "Fair Copy" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.artwork.permissions" -msgstr "Permissions" - -msgid "submission.chapter" -msgstr "Chapter" - -msgid "submission.chapters" -msgstr "Chapters" - -msgid "submission.chaptersDescription" -msgstr "You may list the chapters here, and assign contributors from the list of contributors, above. These contributors will be able to access the chapter during various stages of the publication process." - -msgid "submission.chapter.addChapter" -msgstr "Add Chapter" - -msgid "submission.chapter.editChapter" -msgstr "Edit Chapter" - -msgid "submission.chapter.pages" -msgstr "Pages" - -msgid "submission.copyedit" -msgstr "Copyedit" - -msgid "submission.publicationFormats" -msgstr "Publication Formats" - -msgid "submission.proofs" -msgstr "Proofs" - -msgid "submission.download" -msgstr "Download" - -msgid "submission.sharing" -msgstr "Share This" - -msgid "manuscript.submission" -msgstr "Manuscript Submission" - -msgid "submission.round" -msgstr "Round {$round}" - -msgid "submissions.queuedReview" -msgstr "In Review" - -msgid "manuscript.submissions" -msgstr "Manuscript Submissions" - -msgid "submission.confirmSubmit" -msgstr "Are you sure you wish to submit this manuscript to the press?" - -msgid "submission.metadata" -msgstr "Metadata" - -msgid "submission.supportingAgencies" -msgstr "Supporting Agencies" - -msgid "grid.action.addChapter" -msgstr "Create a new chapter" - -msgid "grid.action.editChapter" -msgstr "Edit this chapter" - -msgid "grid.action.deleteChapter" -msgstr "Delete this chapter" - -msgid "submission.submit" -msgstr "Start New Book Submission" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Start a New Submission in" - -msgid "submission.submit.newSubmissionSingle" -msgstr "New Submission" - -msgid "submission.submit.upload" -msgstr "Upload Submission" - -msgid "submission.submit.cancelSubmission" -msgstr "You can complete this submission at a later date by selecting Active Submissions from the Author home." - -msgid "submission.submit.selectSeries" -msgstr "Select series (optional)" - -msgid "author.isVolumeEditor" -msgstr "Identify this contributor as the editor of this volume." - -msgid "author.submit.seriesRequired" -msgstr "A valid series is required." - -msgid "submission.submit.seriesPosition" -msgstr "Series Position" - -msgid "submission.submit.seriesPosition.description" -msgstr "Examples: Book 2, Volume 2" - -msgid "submission.submit.form.localeRequired" -msgstr "Please select a submission language." - -msgid "submission.submit.privacyStatement" -msgstr "Privacy Statement" - -msgid "submission.submit.contributorRole" -msgstr "Contributor's role" - -msgid "submission.submit.form.authorRequired" -msgstr "At least one author is required." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "The first name, last name, and email address of each author is required." - -msgid "submission.submit.form.titleRequired" -msgstr "Please enter the title of your monograph." - -msgid "submission.submit.form.abstractRequired" -msgstr "Please enter a brief summary of your monograph." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Please select the contributor's role." - -msgid "submission.submit.submissionFile" -msgstr "Submission File" - -msgid "submission.submit.prepare" -msgstr "Prepare" - -msgid "submission.submit.catalog" -msgstr "Catalog" - -msgid "submission.submit.metadata" -msgstr "Metadata" - -msgid "submission.submit.finishingUp" -msgstr "Finishing Up" - -msgid "submission.submit.confirmation" -msgstr "Confirmation" - -msgid "submission.submit.nextSteps" -msgstr "Next Steps" - -msgid "submission.submit.coverNote" -msgstr "Cover Note to Editor" - -msgid "submission.submit.generalInformation" -msgstr "General Information" - -msgid "submission.submit.whatNext.description" -msgstr "The press has been notified of your submission, and you've been emailed a confirmation for your records. Once the editor has reviewed the submission, they will contact you." - -msgid "submission.submit.checklistErrors" -msgstr "Please read and check off the items in the submission checklist. There are {$itemsRemaining} items left unchecked." - -msgid "submission.submit.placement" -msgstr "Submission Placement" - -msgid "submission.submit.userGroup" -msgstr "Submit in my role as..." - -msgid "submission.submit.userGroupDescription" -msgstr "If you are submitting an Edited Volume, you should choose the volume editor role." - -msgid "submission.submit.noContext" -msgstr "This submission's press could not be found." - -msgid "grid.chapters.title" -msgstr "Chapters" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Delete Copyeditor Upload" - -msgid "submission.complete" -msgstr "Approved" - -msgid "submission.incomplete" -msgstr "Awaiting Approval" - -msgid "submission.editCatalogEntry" -msgstr "Entry" - -msgid "submission.catalogEntry.new" -msgstr "Add Entry" - -msgid "submission.catalogEntry.add" -msgstr "Add Selected to Catalog" - -msgid "submission.catalogEntry.select" -msgstr "Select monographs to add to the catalog" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "You must select at least one monograph to add to the catalog." - -msgid "submission.catalogEntry.confirm" -msgstr "Add this book to the public catalog" - -msgid "submission.catalogEntry.confirm.required" -msgstr "Please confirm that the submission is ready to be placed in the catalog." - -msgid "submission.catalogEntry.isAvailable" -msgstr "This monograph is ready to be included in the public catalog." - -msgid "submission.catalogEntry.viewSubmission" -msgstr "View Submission" - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Publication Dates" - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "All chapters will use the publication date of the monograph." - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Each chapter may have its own publication date." - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monograph" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Catalog" - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Publication Format" - -msgid "submission.event.metadataPublished" -msgstr "The monograph's metadata is approved for publication." - -msgid "submission.event.metadataUnpublished" -msgstr "The monograph's metadata is no longer published." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "The publication format \"{$publicationFormatName}\" is made available." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "The publication format \"{$publicationFormatName}\" is no longer available." - -msgid "submission.event.publicationFormatPublished" -msgstr "The publication format \"{$publicationFormatName}\" is approved for publication." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "The publication format \"{$publicationFormatName}\" is no longer published." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "The catalog metadata was updated." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "The publication format metadata for \"{$formatName}\" was updated." - -msgid "submission.event.publicationFormatCreated" -msgstr "The publication format \"{$formatName}\" was created." - -msgid "submission.event.publicationFormatRemoved" -msgstr "The publication format \"{$formatName}\" was removed." - -msgid "submission.submit.titleAndSummary" -msgstr "Title and Summary" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Send to External Review" - -msgid "workflow.review.externalReview" -msgstr "External Review" - -msgid "submission.upload.fileContents" -msgstr "Submission Component" - -msgid "submission.dependentFiles" -msgstr "Dependent Files" - -msgid "submission.metadataDescription" -msgstr "These specifications are based on the Dublin Core metadata set, an international standard used to describe press content." - -msgid "section.any" -msgstr "Any Series" - -msgid "submission.list.monographs" -msgstr "Monographs" - -msgid "submission.list.countMonographs" -msgstr "{$count} monographs" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} of {$total} monographs" - -msgid "submission.list.orderFeatures" -msgstr "Order Features" - -msgid "submission.list.orderingFeatures" -msgstr "Drag-and-drop or tap the up and down buttons to change the order of features on the homepage." - -msgid "submission.list.orderingFeaturesSection" -msgstr "Drag-and-drop or tap the up and down buttons to change the order of features in {$title}." - -msgid "submission.list.saveFeatureOrder" -msgstr "Save Order" - -msgid "submission.list.viewEntry" -msgstr "View Entry" - -msgid "catalog.browseTitles" -msgstr "{$numTitles} Titles" - -msgid "publication.catalogEntry" -msgstr "Catalog Entry" - -msgid "publication.catalogEntry.success" -msgstr "The catalog entry details have been updated." - -msgid "publication.invalidSeries" -msgstr "The series for this publication could not be found." - -msgid "publication.inactiveSeries" -msgstr "{$series} (Inactive)" - -msgid "publication.required.issue" -msgstr "The publication must be assigned to an issue before it can be published." - -msgid "publication.publishedIn" -msgstr "Published in {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "All publication requirements have been met. Are you sure you want to make this catalog entry public?" - -msgid "publication.scheduledIn" -msgstr "Scheduled for publication in {$issueName}." - -msgid "submission.publication" -msgstr "Publication" - -msgid "publication.status.published" -msgstr "Published" - -msgid "submission.status.scheduled" -msgstr "Scheduled" - -msgid "publication.status.unscheduled" -msgstr "Unscheduled" - -msgid "submission.publications" -msgstr "Publications" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "The copyright year will be set automatically when this is published in an issue." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "The copyright year will be set automatically based on the publication date." - -msgid "publication.datePublished" -msgstr "Date Published" - -msgid "publication.editDisabled" -msgstr "This version has been published and can not be edited." - -msgid "publication.event.published" -msgstr "The submission was published." - -msgid "publication.event.scheduled" -msgstr "The submission was scheduled for publication." - -msgid "publication.event.unpublished" -msgstr "The submission was unpublished." - -msgid "publication.event.versionPublished" -msgstr "A new version was published." - -msgid "publication.event.versionScheduled" -msgstr "A new version was scheduled for publication." - -msgid "publication.event.versionUnpublished" -msgstr "A version was removed from publication." - -msgid "publication.invalidSubmission" -msgstr "The submission for this publication could not be found." - -msgid "publication.publish" -msgstr "Publish" - -msgid "publication.publish.requirements" -msgstr "The following requirements must be met before this can be published." - -msgid "publication.required.declined" -msgstr "A declined submission can not be published." - -msgid "publication.required.reviewStage" -msgstr "The submission must be in the Copyediting or Production stages before it can be published." - -msgid "submission.license.description" -msgstr "The license will be set automatically to {$licenseName} when this is published." - -msgid "submission.copyrightHolder.description" -msgstr "Copyright will be assigned automatically to {$copyright} when this is published." - -msgid "submission.copyrightOther.description" -msgstr "Assign copyright for published submissions to the following party." - -msgid "publication.unpublish" -msgstr "Unpublish" - -msgid "publication.unpublish.confirm" -msgstr "Are you sure you don't want this to be published?" - -msgid "publication.unschedule.confirm" -msgstr "Are you sure you don't want this scheduled for publication?" - -msgid "publication.version.details" -msgstr "Publication details for version {$version}" - -msgid "submission.queries.production" -msgstr "Production Discussions" - diff --git a/locale/es_ES/ONIX_BookProduct_CodeLists.xsd b/locale/es/ONIX_BookProduct_CodeLists.xsd similarity index 100% rename from locale/es_ES/ONIX_BookProduct_CodeLists.xsd rename to locale/es/ONIX_BookProduct_CodeLists.xsd diff --git a/locale/es/admin.po b/locale/es/admin.po new file mode 100644 index 00000000000..e41bb6ee696 --- /dev/null +++ b/locale/es/admin.po @@ -0,0 +1,199 @@ +# Marc Bria , 2023. +# Jordi LC , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-03-02 04:53+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "admin.hostedContexts" +msgstr "Editoriales alojadas" + +msgid "admin.settings.appearance.success" +msgstr "Los ajustes de apariencia del sitio se han actualizado con éxito." + +msgid "admin.settings.info.success" +msgstr "Los información del sitio se ha actualizado con éxito." + +msgid "admin.settings.redirect" +msgstr "Redirección a la editorial" + +msgid "admin.settings.noPressRedirect" +msgstr "No redireccionar" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Este será el idioma predeterminado del sitio y de todas las editoriales " +"alojadas." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Las configuraciones regionales señaladas podrían estar incompletas." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"¿Seguro que quiere desinstalar esta configuración regional? Esto podría " +"afectar a todas las editoriales alojadas que la utilicen en este momento." + +msgid "admin.systemVersion" +msgstr "Versión de OMP" + +msgid "admin.systemConfiguration" +msgstr "Configuración de OMP" + +msgid "admin.presses.pressSettings" +msgstr "Ajustes de la editorial" + +msgid "admin.presses.noneCreated" +msgstr "No se ha creado ninguna editorial." + +msgid "admin.contexts.create" +msgstr "Crear editorial" + +msgid "admin.contexts.form.titleRequired" +msgstr "El título es obligatorio." + +msgid "admin.contexts.form.pathRequired" +msgstr "La ruta es obligatoria." + +msgid "admin.settings.config.success" +msgstr "Los ajustes de configuración del sitio se han actualizado con éxito." + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Las solicitudes al sitio web principal serán redirigidas a esta editorial. " +"Esto puede ser útil si el sitio web solo aloja una editorial, por ejemplo." + +msgid "admin.languages.confirmDisable" +msgstr "" +"¿Seguro que quiere desactivar esta configuración regional? Esto podría " +"afectar a todas las editoriales alojadas que la utilicen en este momento." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Seleccionar cualquier configuración regional adicional que desee este " +"sistema. Las configuraciones regionales deben instalarse antes de ser usadas " +"por las editoriales alojadas. Consulte la documentación de OMP para obtener " +"información sobre cómo añadir soporte para nuevos idiomas." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"La ruta solo puede incluir letras, números, los caracteres de guión bajo o " +"guión medio y debe empezar y terminar con una letra o un número." + +msgid "admin.contexts.form.pathExists" +msgstr "Existe otra editorial que ya está usando la ruta seleccionada." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"La configuración regional principal debe ser compatible con las " +"configuraciones soportadas por la editorial." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} se ha creado correctamente." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} se ha editado correctamente." + +msgid "admin.contexts.contextDescription" +msgstr "Descripción de la publicación" + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Seleccionar las editoriales alojadas que podrán enviar correos electrónicos " +"masivos. Cuando se habilita esta función, un administrador/a de la editorial " +"podrá enviar un correo electrónico a todos los usuarios/as registrados con " +"su editorial.

    El mal uso de esta función podría violar las leyes " +"contra el correo basura en algunas jurisdicciones y podría provocar que los " +"correos electrónicos de su servidor sean bloqueados al considerarse spam. " +"Busque asesoramiento técnico antes de habilitar esta función y considere " +"consultar con los administradores/as de la editorial para asegurarse de que " +"se use adecuadamente.

    Se pueden habilitar más restricciones en esta " +"función para cada editorial visitando su asistente de configuración en la " +"lista de Editoriales alojadas." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Se ha desactivado la función de correo electrónico masivo en esta editorial. " +"Puede habilitar esta función en Admin > " +"Configuración del sitio." + +msgid "admin.siteManagement.description" +msgstr "" +"Añadir, editar o eliminar editoriales a este sitio y gestionar la " +"configuración de todo el sitio." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "El ID del capítulo (Chapter ID) no es un número entero" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "El ID de la serie (Series ID) no es un número entero" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Seleccionar el tipo de estadísticas de uso geográfico que pueden recopilar " +"las editoriales de este sitio. Las estadísticas geográficas más detalladas " +"pueden aumentar considerablemente el tamaño de su base de datos y, en " +"algunos casos, pueden socavar el anonimato de sus visitantes. Cada editorial " +"puede configurar este ajuste de forma diferente, pero una editorial nunca " +"podrá recopilar registros más detallados que los definidos en este apartado. " +"Por ejemplo, si el sitio solo admite país y región, la editorial puede " +"seleccionar país y región o solo país, pero la editorial no podrá hacer un " +"seguimiento del país, la región y la ciudad." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Activar las estadísticas institucionales si desea que las editoriales de " +"este sitio puedan recopilar estadísticas de uso por institución. Para poder " +"utilizar esta función, los medios de comunicación deberán añadir la " +"institución y sus rangos de IP. Activar estas estadísticas puede aumentar " +"considerablemente el tamaño de su base de datos." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Si desea que los puntos finales (endpoints) de la API SUSHI sean accesibles " +"públicamente para todas las editoriales de este sitio. Si activa la API " +"pública, cada editorial podrá anular esta configuración para que sus " +"estadísticas sean privadas. Sin embargo, si desactiva la API pública, las " +"editoriales no podrán hacer pública su propia API." + +msgid "admin.presses.addPress" +msgstr "Añadir una publicación" + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Seleccionar todas las configuraciones regionales del sitio. Las " +"configuraciones regionales seleccionadas estarán disponibles para todas las " +"editoriales alojadas en el sitio, y también aparecerán en un menú de idioma " +"que aparecerá en cada página del sitio (aunque pueden anularse en páginas " +"específicas de la editorial). Si solo selecciona una configuración regional, " +"el menú de selección de idioma no se mostrará y las editoriales no tendrán " +"una configuración de idioma ampliada." + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

    ¡NOTA!

    \n" +"

    El sistema no pudo sobrescribir automáticamente el archivo de " +"configuración. Para aplicar los cambios de configuración, debe abrir " +"config.inc.php en un editor de texto adecuado y reemplazar su " +"contenido con el contenido del campo de texto a continuación.

    " + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"El administrador/a de la editorial no podrá enviar correos electrónicos " +"masivos a ninguno de los siguientes roles seleccionados. Use esta " +"configuración para limitar el abuso de la función de notificación por correo " +"electrónico. Por ejemplo, podría ser más seguro deshabilitar los correos " +"electrónicos masivos a lectores/as, autores/as u otros grupos de usuarios/as " +"que no hayan dado su consentimiento para recibir tales correos " +"electrónicos.

    La función de correo electrónico masivo se puede " +"deshabilitar por completo para esta editorial en Admin > Configuración del sitio." + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Usar este sitio como plataforma para todas las publicaciones." diff --git a/locale/es/api.po b/locale/es/api.po new file mode 100644 index 00000000000..fc501a183ce --- /dev/null +++ b/locale/es/api.po @@ -0,0 +1,46 @@ +# Marc Bria , 2023. +# Jordi LC , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-29 14:49+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Debe proporcionar uno o más identificadores de envío para añadirlos al " +"catálogo." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "No se han podido encontrar uno o más de los envíos que ha especificado." + +msgid "api.submissions.400.wrongContext" +msgstr "El envío que ha solicitado no está en esta editorial." + +msgid "api.emails.403.disabled" +msgstr "" +"No se ha activado la funcionalidad de notificación por correo electrónico en " +"esta editorial." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "La publicación que ha solicitado no forma parte de esta editorial." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "La publicación que ha solicitado no forma parte de este envío." + +msgid "api.submissions.403.cantChangeContext" +msgstr "No puede cambiar la editorial de un envío." + +msgid "api.submission.400.inactiveSection" +msgstr "Esta sección ya no recibe más envíos." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"No tiene permiso para mover esta plantilla de correo electrónico a otra " +"editorial." diff --git a/locale/es/author.po b/locale/es/author.po new file mode 100644 index 00000000000..d0be7c21fd2 --- /dev/null +++ b/locale/es/author.po @@ -0,0 +1,19 @@ +# Jordi LC , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-22 12:49+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish " +"\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "author.submit.notAccepting" +msgstr "Esta editorial no acepta envíos en este momento." + +msgid "author.submit" +msgstr "Nuevo envío" diff --git a/locale/es/default.po b/locale/es/default.po new file mode 100644 index 00000000000..2f6490b41ad --- /dev/null +++ b/locale/es/default.po @@ -0,0 +1,223 @@ +# Jordi LC , 2023, 2024. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" +"PO-Revision-Date: 2024-04-26 12:34+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish " +"\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "default.genres.appendix" +msgstr "Apéndice" + +msgid "default.genres.bibliography" +msgstr "Bibliografía" + +msgid "default.genres.manuscript" +msgstr "Manuscrito de libro" + +msgid "default.genres.chapter" +msgstr "Manuscrito de capítulo" + +msgid "default.genres.glossary" +msgstr "Glosario" + +msgid "default.genres.index" +msgstr "Índice" + +msgid "default.genres.preface" +msgstr "Prefacio" + +msgid "default.genres.prospectus" +msgstr "Documento de proyecto" + +msgid "default.genres.table" +msgstr "Tabla" + +msgid "default.genres.figure" +msgstr "Figura" + +msgid "default.genres.photo" +msgstr "Foto" + +msgid "default.genres.illustration" +msgstr "Ilustración" + +msgid "default.genres.other" +msgstr "Otros" + +msgid "default.groups.name.manager" +msgstr "Jefe/a editorial" + +msgid "default.groups.plural.manager" +msgstr "Jefes/as editoriales" + +msgid "default.groups.abbrev.manager" +msgstr "JE" + +msgid "default.groups.name.editor" +msgstr "Coordinador editorial" + +msgid "default.groups.plural.editor" +msgstr "Coordinadores editoriales" + +msgid "default.groups.abbrev.editor" +msgstr "CE" + +msgid "default.groups.name.sectionEditor" +msgstr "Coordinador de obra" + +msgid "default.groups.plural.sectionEditor" +msgstr "Editores/as de las colecciones" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "CO" + +msgid "default.groups.name.subscriptionManager" +msgstr "Gestor/a de la suscripción" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Gestores/as de la suscripción" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "SubM" + +msgid "default.groups.name.chapterAuthor" +msgstr "Autor de capítulo" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Autores de capítulo" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "AC" + +msgid "default.groups.name.volumeEditor" +msgstr "Coordinador de obra" + +msgid "default.groups.plural.volumeEditor" +msgstr "Editores/as del volumen" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "CO" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

    Se invita a los autores/as a realizar un envío a esta editorial. Los que " +"se consideren adecuados se enviarán a una revisión por pares antes de " +"determinar si serán aceptados o rechazados.

    Antes de remitir un envío, " +"los autores/as son responsables de obtener el permiso para publicar " +"cualquier material incluido en él, como fotografías, documentos y conjuntos " +"de datos. Todos los autores/as identificados en el envío deben dar su " +"consentimiento para ser identificados como autores/as. Cuando corresponda, " +"la investigación debe ser aprobada por un comité de ética apropiado de " +"acuerdo con los requisitos legales del país del estudio.

    Un editor/a " +"puede rechazar un envío si no cumple con los estándares mínimos de calidad. " +"Antes de hacer el envío, asegúrese de que el diseño del estudio y el " +"argumento de la investigación estén estructurados y articulados " +"correctamente. El título debe ser conciso y el resumen debe poder sostenerse " +"por sí solo. Esto aumentará la probabilidad de que los revisores/as acepten " +"revisar el artículo. Cuando tenga la certeza de que su envío cumple con este " +"estándar, continúe a la lista de verificación que hay a continuación para " +"preparar su envío.

    " + +msgid "default.contextSettings.checklist" +msgstr "" +"

    Todos los envíos deben cumplir con los siguientes requisitos.

    • Este envío cumple con los requisitos descritos en las Directrices para autores/as.
    • Este " +"envío no ha sido publicado previamente, ni se ha presentado ante otra " +"editorial para su consideración.
    • Todas las referencias han sido " +"verificadas para ver si son precisas y completas.
    • Todas las tablas y " +"figuras han sido numeradas y etiquetadas.
    • Se ha obtenido permiso " +"para publicar todas las imágenes, conjuntos de datos y cualquier otro " +"material proporcionado con este envío.
    " + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

    Los nombres y direcciones de correo electrónico introducidos en esta " +"editorial se utilizarán exclusivamente para los fines declarados por la " +"misma y no estarán disponibles para ningún otro propósito ni lugar.

    " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Esta editorial proporciona acceso abierto inmediato a su contenido bajo el " +"principio de que hacer disponible la investigación, abiertamente al público, " +"fomenta un mayor intercambio de conocimiento global." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Los lectores pueden darse de alta en el servicio de notificación de " +"novedades. Para ello, utiliza el enlace de Crear cuenta en la parte superior de la " +"página. Este registro permitirá al lector recibir por correo electrónico la " +"Tabla de Contenidos de cada novedad. Consulta la Declaración de " +"Privacidad de la editorial que asegura a los lectores que su nombre y " +"dirección de correo electrónico no será utilizada para otros fines." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"¿Le interesa hacer un envío a esta publicación? Le recomendamos que revise " +"los apartados Acerca de la " +"publicación, para obtener información sobre las políticas de sección, y " +"Directrices para autores/as. Los autores/as deben registrarse en la " +"publicación antes realizar un envío o, si ya están registrados, simplemente " +"iniciar sesión y empezar con el " +"proceso de 5 pasos." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Animamos a los bibliotecarios/as a listar esta publicación en sus fondos de " +"publicaciones electrónicas. Además, este sistema de publicación de código " +"abierto es apropiado para que las bibliotecas lo ofrezcan a sus miembros " +"involucrados en la edición de publicaciones (ver Open Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Revisor/a externo" + +msgid "default.groups.plural.externalReviewer" +msgstr "Revisores/as externos" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "RE" + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "La propuesta no ha sido publicada previamente, ni está bajo consideración " +#~ "de ninguna otra editorial (o se proporciona una explicación en " +#~ "\"Comentarios para la editorial\")." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "El fichero de la propuesta está en formato Microsoft Word, RTF o " +#~ "OpenDocument." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Se proporcionan las direcciones URLs de las referencias si están " +#~ "disponibles." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "El texto tiene interlineado simple, se utiliza una fuente de 12 puntos, " +#~ "cursiva en lugar de subrayado (exceptuando las direcciones URL), y todas " +#~ "las ilustraciones, figuras y tablas están dentro del texto en los lugares " +#~ "apropiados en lugar de al final." + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "El texto se adhiere a los requisitos bibliográficos y de estilo indicados " +#~ "en las Directrices para " +#~ "autores, que se encuentran en Acerca de la editorial." diff --git a/locale/es/editor.po b/locale/es/editor.po new file mode 100644 index 00000000000..cf7fd19db2d --- /dev/null +++ b/locale/es/editor.po @@ -0,0 +1,276 @@ +# Marc Bria , 2023. +# Jordi LC , 2024. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" +"PO-Revision-Date: 2024-04-26 12:34+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish " +"\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "editor.submissionArchive" +msgstr "Archivo de envíos" + +msgid "editor.monograph.cancelReview" +msgstr "Cancelar solicitud" + +msgid "editor.monograph.clearReview" +msgstr "Eliminar revisor/a" + +msgid "editor.monograph.enterRecommendation" +msgstr "Introducir recomendación" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Introducir recomendación del revisor/a" + +msgid "editor.monograph.recommendation" +msgstr "Recomendación" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Seleccione un revisor/a y pulse el botón \"Seleccionar revisor/a\" para " +"continuar." + +msgid "editor.monograph.replaceReviewer" +msgstr "Reemplazar revisor/a" + +msgid "editor.monograph.editorToEnter" +msgstr "Recomendaciones/comentarios del editor/a para el revisor/a" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Cargar revisión" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Opciones de evaluación por pares" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Corrección de archivos" + +msgid "editor.monograph.internalReview" +msgstr "Iniciar revisión interna" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Seleccione los archivos a continuación para enviarlos a la fase de revisión " +"interna." + +msgid "editor.monograph.externalReview" +msgstr "Iniciar revisión externa" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Seleccionar los archivos del borrador final" + +msgid "editor.monograph.final.currentFiles" +msgstr "Archivos actuales del borrador final" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Archivos actuales" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Mensaje al usuario" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Acciones de envío" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Opciones y acciones generales de envío." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Acciones de sección" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Opciones específicas de una sección determinada, por ejemplo, cargar " +"archivos o añadir usuarios." + +msgid "editor.monograph.legend.itemActions" +msgstr "Acciones de elemento" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Acciones y opciones específicas de un archivo individual." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Ver y gestionar la entrada de catálogo del envío, incluso formatos de " +"metadatos y publicación" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Ver y gestionar metadatos, notas, notificaciones y el historial del envío" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Ver y gestionar los participantes en este envío: autores/as, editores/as, " +"diseñadores/as, etc." + +msgid "editor.monograph.legend.add" +msgstr "Cargar un archivo a la sección" + +msgid "editor.monograph.legend.add_user" +msgstr "Añadir un usuario/a a la sección" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Ver y acceder a la configuración de elemento, como información y opciones de " +"eliminación" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"Más información: notas de archivo, opciones de notificación e historial" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Información de archivo: notas, opciones de notificación e historial (sin " +"notas todavía)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Información de archivo: notas, opciones de notificación e historial (con " +"notas)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Información de archivo: notas, opciones de notificación e historial (nuevas " +"notas añadidas desde la última visita)" + +msgid "editor.monograph.legend.edit" +msgstr "Editar elemento" + +msgid "editor.monograph.legend.delete" +msgstr "Eliminar elemento" + +msgid "editor.monograph.legend.in_progress" +msgstr "Acción en curso o incompleta" + +msgid "editor.monograph.legend.complete" +msgstr "Acción completa" + +msgid "editor.monograph.legend.uploaded" +msgstr "Archivo cargado por el rol en el título de la columna de cuadrícula" + +msgid "editor.submission.introduction" +msgstr "" +"Durante el envío, el editor/a, después de consultar los archivos enviados, " +"selecciona la acción adecuada (la cual incluye notificar al autor/a): enviar " +"a revisión interna (implica seleccionar los archivos para la revisión " +"interna), enviar a revisión externa (implica seleccionar los archivos para " +"la revisión externa), aceptar el envío (implica seleccionar los archivos " +"para la fase editorial), o rechazar el envío (envío de archivos)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Copia en limpio" + +msgid "editor.monograph.proofs" +msgstr "Pruebas" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Aprobación y publicaciones" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Los diferentes formatos de publicación, como tapa dura, tapa blanda y " +"digital, pueden cargarse a la sección Formatos de publicación que se ve a " +"continuación. Se puede usar la cuadrícula de formatos de publicación " +"mostrada a continuación, como una lista de comprobación de lo que todavía " +"queda por hacer para publicar un formato de publicación." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Añadir formatos de publicación (p.ej., digital, en rústica) para los cuales " +"el/la maquetista prepara pruebas de página para su corrección. Las " +"Pruebas deben marcarse como aprobadas y la entrada de Catálogo para el formato debe marcarse como publicada en la entrada de catálogo " +"del libro, antes de que un formato se pueda hacer Disponible (i.e., " +"publicado)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Establecer condiciones para la descarga" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Establecer condiciones" + +msgid "editor.monograph.proof.addNote" +msgstr "Añadir respuesta" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Cualquier fichero que ya haya sido subido en cualquier fase del envío puede " +"añadirse al listado \"Ficheros de prueba\" marcando la siguiente casilla " +"\"Añadir\" y pulsando \"Buscar\": todos los ficheros disponibles se listarán " +"y podrán incluirse." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"El identificador público '{$publicIdentifier}' ya existe para otro objeto " +"del mismo tipo. Elija identificadores únicos para los objetos del mismo tipo." + +msgid "editor.submissions.assignedTo" +msgstr "Asignado a un editor/a" + +#~ msgid "editor.pressSignoff" +#~ msgstr "Pulse Cerrar sesión" + +#~ msgid "editor.submission.selectedReviewer" +#~ msgstr "Revisor/a seleccionado" + +#~ msgid "editor.submission.editorial.finalDraftDescription" +#~ msgstr "" +#~ "Para volúmenes editados con diferentes autores/as por capítulo, el " +#~ "archivo de envío puede dividirse en varios archivos de tamaño de un " +#~ "capítulo cada uno. Éstos se revisan por el autor/a de cada capítulo " +#~ "después de que los archivos corregidos se suban a Corrección de originales." + +#~ msgid "editor.monograph.editorial.fairCopyDescription" +#~ msgstr "" +#~ "El corrector/a sube una copia original o en limpio del envío para su " +#~ "revisión por el editor/a, antes de enviarla a producción." + +#~ msgid "editor.submission.production.introduction" +#~ msgstr "" +#~ "Durante la producción, el editor/a selecciona formatos del libro (por " +#~ "ejemplo digital, en rústica, etc) en Formatos de publicación, para los cuales el/la maquetista " +#~ "prepara archivos de calidad de publicación basándose en los archivos " +#~ "listos para producción. Los archivos de calidad de publicación se suben " +#~ "para cada formato en Pruebas de página, dónde se revisan. El libro se hace Disponible (i.e., " +#~ "publicado) para cada formato en Formatos " +#~ "de publicación, tras marcar la opción Pruebas como " +#~ "aprobada, y la entrada de Catálogo como incluida en la entrada de " +#~ "catálogo del libro." + +#~ msgid "editor.submission.production.productionReadyFilesDescription" +#~ msgstr "" +#~ "El/la maquetista prepara estos archivos para cada formato de publicación " +#~ "y después los sube a las Pruebas de " +#~ "página correspondientes para su corrección." + +#~ msgid "editor.internalReview.introduction" +#~ msgstr "" +#~ "Durante la revisión interna, el editor/a asigna revisores/as internos a " +#~ "los archivos de envío y verifica los resultados de la revisión, antes de " +#~ "seleccionar la acción apropiada (la cual incluye notificar al autor/a): " +#~ "solicitar revisiones (revisiones hechas sólo por el editor/a), reenviar " +#~ "para revisión (se inicia otra ronda de revisiones), enviar para revisión " +#~ "externa (implica seleccionar los archivos para la revisión externa), " +#~ "aceptar el envío (implica seleccionar los archivos para la fase " +#~ "editorial), o rechazar el envío (archiva el envío)." + +#~ msgid "editor.externalReview.introduction" +#~ msgstr "" +#~ "Durante la revisión externa, el editor/a asigna revisores/as externos a " +#~ "los archivos de envío y verifica los resultados de la revisión, antes de " +#~ "seleccionar la acción apropiada (la cual incluye notificar al autor/a): " +#~ "solicitar revisiones (revisiones hechas sólo por el editor), reenviar a " +#~ "revisión (se inicia otra ronda de revisiones), aceptar el envío (implica " +#~ "seleccionar los archivos para la fase editorial), o rechazar el envío (el " +#~ "editor/a archiva el envío)." diff --git a/locale/es/emails.po b/locale/es/emails.po new file mode 100644 index 00000000000..32cd8434f38 --- /dev/null +++ b/locale/es/emails.po @@ -0,0 +1,564 @@ +# Jordi LC , 2021, 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" +"PO-Revision-Date: 2023-06-16 11:49+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish " +"\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Confirmación para restablecer la contraseña" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Se recibió una solicitud para restablecer su contraseña en la página web " +"{$siteTitle}.
    \n" +"
    \n" +"Si no realizó esta solicitud, ignore este correo electrónico y su contraseña " +"no se cambiará. Si desea restablecer su contraseña, haga clic en la " +"dirección URL que aparece debajo.
    \n" +"
    \n" +"Restablecer contraseña: {$passwordResetUrl}
    \n" +"
    \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Registro en la publicación" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"Se registró como usuario/a con {$contextName}. En este correo electrónico " +"hemos incluido el nombre de usuario/a y contraseña que necesitará para " +"trabajar con esta publicación a través de su página web. En cualquier " +"momento puede contactarse conmigo para pedir que se le elimine de la lista " +"de usuarios/as.
    \n" +"
    \n" +"Nombre de usuario/a: {$recipientUsername}
    \n" +"Contraseña: {$password}
    \n" +"
    \n" +"Gracias,
    \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Valide su cuenta" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"Ha creado una cuenta en {$contextName}, pero es necesario que valide su " +"cuenta de correo electrónico antes de poder utilizarla. Para ello, " +"simplemente haga clic en el enlace siguiente:
    \n" +"
    \n" +"{$activateUrl}
    \n" +"
    \n" +"Gracias,
    \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Valide su cuenta" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
    \n" +"
    \n" +"Ha creado una cuenta en {$siteTitle}, pero es necesario que valide su cuenta " +"de correo electrónico antes de poder utilizarla. Para ello, simplemente haga " +"clic en el enlace siguiente:
    \n" +"
    \n" +"{$activateUrl}
    \n" +"
    \n" +"Gracias,
    \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Registro como revisor/a con {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Dada su experiencia, nos hemos tomado la libertad de registrar su nombre en " +"la base de datos de revisores/as para {$contextName}. Esto no implica ningún " +"tipo de compromiso por su parte, simplemente permite que nos pongamos en " +"contacto con usted si tenemos un envío que quizás pueda revisar. Si se le " +"invita a realizar una revisión, tendrá la oportunidad de ver el título y el " +"resumen de dicho trabajo y en todo momento podrá aceptar o rechazar la " +"invitación. Asimismo, puede pedir que se elimine su nombre de la lista de " +"revisores/as.
    \n" +"
    \n" +"Le proporcionamos un nombre de usuario/a y una contraseña que se utilizan " +"para trabajar con la publicación a través de su página web. Si lo desea " +"puede, por ejemplo, actualizar su perfil y sus preferencias de revisión.
    \n" +"
    \n" +"Nombre de usuario/a: {$recipientUsername}
    \n" +"Contraseña: {$password}
    \n" +"
    \n" +"Gracias,
    \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Tarea editorial" + +msgid "emails.editorAssign.body" +msgstr "" +"

    Estimado/a {$recipientName},

    Se le ha asignado el envío siguiente " +"para supervisarlo durante el proceso editorial.

    {$submissionTitle}
    {$authors}

    Resumen

    {$submissionAbstract}

    Si considera " +"que el envío es relevante para {$contextName}, remítalo a la fase de " +"revisión seleccionando \"Enviar a revisión interna\" y, a continuación, " +"asigne revisores/as haciendo clic en \"Añadir revisor/a\".

    Si el envío " +"no es adecuado para esta publicación, rechácelo.

    Gracias por " +"adelantado.

    Saludos cordiales,

    {$contextSignature}" + +msgid "emails.reviewRequest.subject" +msgstr "Solicitud de revisión de manuscrito" + +msgid "emails.reviewRequest.body" +msgstr "" +"

    Estimado/a {$recipientName},

    Consideramos que sería un revisor/a " +"excelente para este envío a {$contextName}. Encontrará el título y el " +"resumen del envío más abajo. Esperamos que considere llevar a cabo esta " +"tarea tan importante para nosotros.

    Si está disponible para revisar el " +"envío, la fecha límite para completar la revisión sería el {$reviewDueDate}. " +"Puede consultar el envío, cargar los archivos de revisión y enviar su " +"revisión iniciando sesión en la publicación y siguiendo los pasos desde el " +"enlace que hay más abajo.

    {$submissionTitle}

    Resumen

    {$submissionAbstract}

    Por " +"favor, acepte o rechace la revisión " +"antes del {$responseDueDate}.

    Si tiene cualquier pregunta sobre " +"el envío o el proceso de revisión no dude en contactarnos.

    Gracias por " +"tener en cuenta esta petición, apreciamos mucho su ayuda.

    Saludos " +"cordiales,

    {$signature}" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Solicitud para revisar un envío ya revisado" + +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

    Estimado/a {$recipientName},

    Gracias por la revisión de {$submissionTitle}. Los autores/as han tenido " +"en cuenta los comentarios de los revisores/as y han enviado una versión " +"revisada de su obra. Le escribo para pedirle si podría llevar a cabo una " +"segunda ronda de revisión por pares de este envío.

    Si está disponible " +"para revisar el envío, la fecha límite para completar la revisión sería el " +"{$reviewDueDate}. Puede seguir los pasos " +"de revisión para consultar el envío, cargar los archivos de revisión y " +"enviar sus comentarios de revisión.

    {$submissionTitle}

    {$submissionAbstract}

    Por " +"favor, acepte o rechace la revisión " +"antes del {$responseDueDate}.

    Si tiene cualquier pregunta sobre " +"el envío o el proceso de revisión no dude en contactarnos.

    Gracias por " +"tener en cuenta esta petición, apreciamos mucho su ayuda.

    Saludos " +"cordiales,

    {$signature}" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Solicitud de revisión del manuscrito" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Estimado/a {$recipientName},
    \n" +"Esto es un breve recordatorio de nuestra solicitud de revisión del envío, " +""{$submissionTitle}," para {$contextName}. Esperábamos recibir su " +"respuesta el {$responseDueDate}, así que este correo electrónico se ha " +"generado y enviado automáticamente al excederse dicha fecha.\n" +"
    \n" +"{$messageToReviewer}
    \n" +"
    \n" +"Inicie la sesión en el sitio web de la publicación para indicar si realizará " +"la revisión o no, así como para acceder al envío y registrar su revisión y " +"recomendación..
    \n" +"
    \n" +"La revisión está prevista para el día {$reviewDueDate}.
    \n" +"
    \n" +"URL del envío: {$reviewAssignmentUrl}
    \n" +"
    \n" +"Nombre de usuario/a: {$recipientUsername}
    \n" +"
    \n" +"Gracias por considerar esta solicitud.
    \n" +"
    \n" +"
    \n" +"Sinceramente,
    \n" +"{$contextSignature}
    \n" + +msgid "emails.reviewCancel.subject" +msgstr "Solicitud de revisión cancelada" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Hemos decidido cancelar nuestra solicitud de que usted revise el envío "" +"{$submissionTitle}" para {$contextName}. Pedimos disculpas por " +"cualquier inconveniente que esta decisión pueda causar y esperamos poder " +"contar con usted para participar en este proceso de revisión en el futuro." +"
    \n" +"
    \n" +"Si tiene alguna duda, puede ponerse en contacto conmigo." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Solicitud de revisión restablecida" + +msgid "emails.reviewReinstate.body" +msgstr "" +"

    Estimado/a {$recipientName},

    Recientemente cancelamos nuestra " +"solicitud para que revisara el envío, {$submissionTitle}, para {$contextName}" +". Sin embargo, hemos revertido dicha decisión y tenemos la esperanza de que " +"aún pueda llevar a cabo la revisión.

    Si está disponible para ayudarnos " +"con la revisión de este envío puede iniciar sesión en la publicación para ver el envío, cargar archivos de " +"revisión y enviar su revisión.

    Si tiene cualquier pregunta póngase en " +"contacto con nosotros.

    Saludos cordiales,

    {$signature}" + +msgid "emails.reviewDecline.subject" +msgstr "No disponible para revisar" + +msgid "emails.reviewDecline.body" +msgstr "" +"{$recipientName}:
    \n" +"
    \n" +"Me temo que en este momento no puedo revisar el envío "" +"{$submissionTitle}" para {$contextName}. Gracias por pensar en mí, " +"pueden contar conmigo en futuras ocasiones.
    \n" +"
    \n" +"{$senderName}" + +msgid "emails.reviewRemind.subject" +msgstr "Recordatorio para completar la revisión" + +msgid "emails.reviewRemind.body" +msgstr "" +"

    Estimado/a {$recipientName},

    Esto es un breve recordatorio sobre " +"nuestra solicitud de revisión del envío \"{$submissionTitle}\" para " +"{$contextName}. Esperábamos recibir la revisión el {$reviewDueDate}, así que " +"le agradeceríamos que nos la enviara tan pronto como la tenga preparada.

    Puede iniciar sesión en la " +"publicación y seguir los pasos de revisión para consultar el envío, " +"cargar los archivos de revisión y enviar sus comentarios de revisión.

    Si necesita ampliar la fecha límite póngase en contacto con nosotros. " +"Esperamos recibir noticias suyas bien pronto.

    Gracias por adelantado y " +"saludos cordiales,

    {$signature}" + +msgid "emails.reviewRemindAuto.body" +msgstr "" +"

    Estimado/a {$recipientName},

    Este correo electrónico es un " +"recordatorio automático de {$contextName} acerca de nuestra solicitud de " +"revisión del envío \"{$submissionTitle}\"

    . Esperábamos recibir la " +"revisión el {$reviewDueDate}, así que le agradeceríamos que nos la enviara " +"tan pronto como la tenga preparada.

    Por favor, inicie sesión en la publicación y siga los " +"pasos de revisión para consultar el envío, cargar los archivos de revisión y " +"enviar sus comentarios de revisión.

    Si necesita ampliar la fecha " +"límite póngase en contacto con nosotros. Esperamos recibir noticias suyas " +"bien pronto.

    Gracias por adelantado y saludos " +"cordiales,

    {$signature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "Se ha aceptado su envío para {$contextName}" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

    Estimado/a {$recipientName},

    Nos complace informarle de que hemos " +"decidido aceptar su envío sin más revisiones. Tras una cuidadosa revisión, " +"hemos comprobado que su envío, {$submissionTitle}, cumple o supera nuestras " +"expectativas. Estamos emocionados por publicar su trabajo en {$contextName} " +"y le agradecemos que haya elegido nuestra publicación para publicar su " +"obra.

    Su envío se publicará próximamente en el sitio web de " +"{$contextName} y le invitamos a que lo incluya en su listado de " +"publicaciones. Reconocemos el duro trabajo que conlleva cada envío exitoso y " +"queremos felicitarle por haber llegado a esta fase.

    Su envío se " +"someterá ahora a un proceso de corrección y formateo para prepararlo para su " +"publicación.

    En breve recibirá más instrucciones.

    Si tiene " +"cualquier pregunta no dude en contactarnos desde su panel de envíos.

    Saludos " +"cordiales,

    {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Su envío se ha remitido a revisión interna" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

    Estimado/a {$recipientName},

    Nos complace informarle de que un " +"editor/a ha revisado su envío, {$submissionTitle}, y ha decidido remitirlo a " +"una revisión interna. Le enviaremos los comentarios de los revisores/as y la " +"información sobre los próximos pasos.

    Tenga en cuenta que el hecho de " +"remitir el envío a revisión interna no garantiza que este será publicado. " +"Antes de aceptar el envío para su publicación consideraremos las " +"recomendaciones de los revisores/as. Es posible que se le pida que haga " +"revisiones y responda a los comentarios de los revisores/as antes de tomar " +"una decisión definitiva.

    Si tiene cualquier pregunta no dude en " +"contactarnos a través de su panel de envíos.

    {$signature}

    " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Su envío se ha remitido a edición" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

    Estimado/a {$recipientName},

    \n" +"

    Nos complace informarle de que hemos decidido aceptar su envío sin " +"revisión por pares. Consideramos que su envío, {$submissionTitle}, cumple " +"nuestras expectativas, y no exigimos que trabajos de este tipo se sometan a " +"revisión por pares. Estamos emocionados por publicar su trabajo en " +"{$contextName} y le agradecemos que haya elegido nuestra publicación para " +"publicar su obra.

    \n" +"

    Su envío se publicará próximamente en el sitio web de {$contextName} y le " +"invitamos a que lo incluya en su listado de publicaciones. Reconocemos el " +"duro trabajo que conlleva cada envío exitoso y queremos felicitarle por su " +"esfuerzo.

    \n" +"

    Su envío se someterá ahora a un proceso de corrección y formateo para " +"prepararlo para su publicación.

    \n" +"

    En breve recibirá más instrucciones.

    \n" +"

    Si tiene cualquier pregunta no dude en contactarnos desde su panel de envíos.

    \n" +"

    Saludos cordiales,

    \n" +"

    {$signature}

    \n" + +msgid "emails.layoutRequest.subject" +msgstr "" +"El envío {$submissionId} está listo para la producción en {$contextAcronym}" + +msgid "emails.layoutRequest.body" +msgstr "" +"

    Estimado/a {$recipientName},

    Un envío nuevo está listo para su " +"maquetación:

    {$submissionId} " +"{$submissionTitle}
    {$contextName}

    1. Haga clic en la URL " +"del envío que aparece encima.
    2. Descargue los archivos listos para la " +"producción y utilícelos para crear las galeradas según los estándares de " +"estilo de la publicación.
    3. Cargue las galeradas en la sección de " +"\"Formatos de publicación\" del envío.
    4. Inicie una discusión de " +"producción para notificar al editor/a que la galerada está lista.
    5. Si en este momento no puede llevar a cabo esta tarea o tiene alguna " +"pregunta no dude en contactar con nosotros. Gracias por su contribución a " +"esta publicación.

      Saludos cordiales,

      {$signature}" + +msgid "emails.layoutComplete.subject" +msgstr "Galeradas completadas" + +msgid "emails.layoutComplete.body" +msgstr "" +"

      Estimado/a {$recipientName},

      Ya se han preparado las galeradas del " +"envío siguiente y están listas para su revisión final.

      {$submissionTitle}
      {$contextName}

      Si tiene " +"cualquier pregunta póngase en contacte con nosotros.

      Saludos " +"cordiales,

      {$senderName}

      " + +msgid "emails.indexRequest.subject" +msgstr "Solicitud de índice" + +msgid "emails.indexRequest.body" +msgstr "" +"{$indexerName}:
      \n" +"
      \n" +"Es necesario crear índices al envío "{$submissionTitle}" a " +"{$contextName} siguiendo los siguientes pasos.
      \n" +"1. Haga clic en la URL del envío que aparece debajo.
      \n" +"2. Inicie sesión en la publicación y use el fichero Galeradas de la página " +"para crear galeradas según los estándares de publicación.
      \n" +"3. Envíe el correo electrónico COMPLETO al editor/a.
      \n" +"
      \n" +"{$contextName} URL: {$contextUrl}
      \n" +"URL del envío: {$submissionUrl}
      \n" +"Nombre de usuario/a: {$indexerUsername}
      \n" +"
      \n" +"Si no puede realizar esta tarea en este momento o tiene alguna duda, póngase " +"en contacto conmigo. Gracias por su contribución a la publicación.
      \n" +"
      \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Galeradas de índice completadas" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Los índices para el manuscrito "{$submissionTitle}" para " +"{$contextName} están preparados y listos para la corrección de pruebas.
      \n" +"
      \n" +"Si tiene alguna duda, puede ponerse en contacto conmigo.
      \n" +"
      \n" +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "Manuscrito de posible interés" + +msgid "emails.emailLink.body" +msgstr "" +"Quizá le interese consultar "{$submissionTitle}" de {$authors} " +"publicado en el vol. {$volume}, n.º {$number} ({$year}) de {$contextName} en " +""{$submissionUrl}"." + +msgid "emails.emailLink.description" +msgstr "" +"Esta plantilla de correo electrónico da al lector/a registrado la " +"oportunidad de enviar información sobre una monografía a alguien que pueda " +"estar interesado. Está disponible en las Herramientas de lectura y debe ser " +"habilitada por el jefe/a editorial en la página de Administración de " +"herramientas de lectura." + +msgid "emails.notifySubmission.subject" +msgstr "Notificación de envío" + +msgid "emails.notifySubmission.body" +msgstr "" +"Tiene un mensaje de {$sender} en relación con "{$submissionTitle}" " +"({$monographDetailsUrl}):
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Notificación de un usuario/a enviada desde un centro de información sobre " +"envíos." + +msgid "emails.notifyFile.subject" +msgstr "Notificación de envío de fichero" + +msgid "emails.notifyFile.body" +msgstr "" +"Tiene un mensaje de {$sender} en relación con el fichero "{$fileName}" +"" en "{$submissionTitle}" ({$monographDetailsUrl}):
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"Notificación de un usuario/a enviada desde un centro de información sobre " +"archivos" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Actividad editorial del {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
      \n" +"
      \n" +"El informe editorial de {$month}, {$year} ya está disponible. Las " +"estadísticas fundamentales del mes son las siguientes.
      \n" +"
        \n" +"\t
      • Nuevas contribuciones este mes: {$newSubmissions}
      • \n" +"\t
      • Contribuciones rechazadas este mes: {$declinedSubmissions}
      • \n" +"\t
      • Contribuciones aceptadas este mes: {$acceptedSubmissions}
      • \n" +"\t
      • Contribuciones totales al sistema: {$totalSubmissions}
      • \n" +"
      \n" +"Inicie sesión para obtener más detalles de sus tendencias editoriales y estadísticas de libros publicados. Se adjunta " +"una copia completa de este informe correspondiente a este mes.
      \n" +"
      \n" +"Sinceramente,
      \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
      \n" +"
      \n" +"{$announcementSummary}
      \n" +"
      \n" +"Visite nuestra página web para leer el aviso " +"completo." + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Validar la cuenta" + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName}
      \n" +#~ "
      \n" +#~ "Creó una cuenta con {$contextName}, pero antes de empezar a utilizarla es " +#~ "necesario que valide su cuenta de correo electrónico. Para hacerlo, haga " +#~ "clic en el enlace que aparece debajo:
      \n" +#~ "
      \n" +#~ "{$activateUrl}
      \n" +#~ "
      \n" +#~ "Gracias,
      \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Este correo electrónico se envía a un nuevo usuario/a registrado para " +#~ "darle la bienvenida al sistema y proporcionarle un documento con su " +#~ "nombre de usuario/a y contraseña." + +#~ msgid "emails.reviewComplete.subject" +#~ msgstr "Revisión del manuscrito completada" + +#~ msgid "emails.reviewComplete.body" +#~ msgstr "" +#~ "{$recipientName}:
      \n" +#~ "
      \n" +#~ "He completado la revisión de "{$submissionTitle}" para " +#~ "{$contextName} y enviado la recomendación "{$recommendation}"." +#~ "
      \n" +#~ "
      \n" +#~ "{$recipientName}" + +#~ msgid "emails.reviewComplete.description" +#~ msgstr "" +#~ "El revisor/a envía este correo electrónico al editor/a de la serie para " +#~ "notificarle que la revisión se completó y que los comentarios y " +#~ "recomendaciones se registraron en la página web de la publicación." + +msgid "emails.reviewReinstate.subject" +msgstr "Aún está disponible para revisar textos para {$contextName}?" + +msgid "emails.revisedVersionNotify.subject" +msgstr "Versión revisada cargada" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

      Estimado/a {$recipientName},

      Se le ha asignado el siguiente envío " +"para que lo supervise durante la fase de producción.

      {$submissionTitle}
      {$authors}

      Resumen

      {$submissionAbstract}

      Inicie la " +"sesión para ver el envío. Cuando los " +"archivos listos para la producción estén disponibles, cárguelos en la " +"sección Publicación > Formatos de publicación.

      Gracias por adelantado.

      Saludos cordiales,

      {$signature}" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

      Estimado/a {$recipientName},

      El autor/a ha cargado revisiones para " +"el envío, {$authorsShort} — {$submissionTitle}.

      Como editor/a " +"responsable, le pedimos que inicie la sesión, compruebe las revisiones y tome la decisión de aceptar, rechazar o " +"remitir el envío a más revisiones.




      Este es un mensaje " +"automático desde {$contextName}." + +msgid "emails.editorAssignReview.body" +msgstr "" +"

      Estimado/a {$recipientName},

      Se le ha asignado el envío siguiente " +"para supervisarlo durante la fase de revisión.

      {$submissionTitle}
      {$authors}

      Resumen

      {$submissionAbstract}

      Inicie la " +"sesión para ver el envío y para asignar " +"revisores/as cualificados. Puede asignar un revisor/a haciendo clic en " +"\"Asignar revisor/a\".

      Gracias por adelantado.

      Saludos " +"cordiales,

      {$signature}" diff --git a/locale/es/locale.po b/locale/es/locale.po new file mode 100644 index 00000000000..4a804226fce --- /dev/null +++ b/locale/es/locale.po @@ -0,0 +1,1864 @@ +# Jordi LC , 2021, 2023, 2024. +# Ruxandra Berescu , 2024. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" +"PO-Revision-Date: 2024-04-26 19:05+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish " +"\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "common.payments" +msgstr "Pagos" + +msgid "monograph.audience" +msgstr "Tipo de lector" + +msgid "monograph.audience.success" +msgstr "Los detalles de audiencia han sido actualizados." + +msgid "monograph.coverImage" +msgstr "Imagen de portada" + +msgid "monograph.audience.rangeQualifier" +msgstr "Calificador de la variedad de lector" + +msgid "monograph.audience.rangeFrom" +msgstr "Variedad de lector (de)" + +msgid "monograph.audience.rangeTo" +msgstr "Variedad de lector (a)" + +msgid "monograph.audience.rangeExact" +msgstr "Variedad de lector (exacto)" + +msgid "monograph.languages" +msgstr "Idiomas (español, inglés, francés)" + +msgid "monograph.publicationFormats" +msgstr "Formatos de publicaciones" + +msgid "monograph.publicationFormat" +msgstr "Formato" + +msgid "monograph.publicationFormatDetails" +msgstr "Detalles sobre el formato de publicación disponible: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Detalles sobre esta monografía" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formatos:" + +msgid "monograph.type" +msgstr "Tipo de propuesta" + +msgid "submission.pageProofs" +msgstr "Galeradas" + +msgid "monograph.proofReadingDescription" +msgstr "" +"El maquetador/a sube aquí los archivos listos para producción que se " +"prepararon para publicar. Utilice +Asignar para designar a los " +"autores/as y a otras personas que harán la corrección de pruebas de las " +"galeradas con los archivos corregidos y subidos para su aprobación antes de " +"publicarse." + +msgid "monograph.task.addNote" +msgstr "Añadir a tarea" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Acceso abierto" + +msgid "monograph.publicationFormat.imprint" +msgstr "Imprimir (nombre de marca)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Número de páginas" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Prólogo" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Epílogo" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Composición del producto" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Detalle del producto (opcional)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identificación del producto" + +msgid "monograph.publicationFormat.price" +msgstr "Precio" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Se necesita un precio." + +msgid "monograph.publicationFormat.priceType" +msgstr "Tipo de precio" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Porcentaje de descuento, si es aplicable" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Disponibilidad del producto" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Indicador de devoluciones" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Información digital" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Dimensiones físicas" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Tamaño del fichero en MB" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "¿Deseas introducir un valor personalizado para el tamaño del fichero?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Altura" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Grosor" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Peso" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Anchura" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "País de fabricación" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Protección técnica digital" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Región de distribución del producto" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Tipo impositivo" + +msgid "monograph.publicationFormat.taxType" +msgstr "Tipo de impuesto" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Incluir los metadatos de este formato de publicación en la entrada de " +"catálogo de este libro." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Ausencia de mercados y precios." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Ausencia de código de identificación." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Ausencia de varios campos de metadatos." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

      El formato de publicación escogido para la monografía ya no existe.

      " + +msgid "monograph.publicationFormat.openTab" +msgstr "Pestaña de formato de publicación abierta." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Formato de publicación" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Se necesita un nombre." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Se requiere un precio válido." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Detalles de formato" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Formato físico" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Este formato estará disponible en un sitio web independiente" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL de contenido alojado remotamente" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "Un código ISBN de 13 dígitos, como por ejemplo 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "Un código ISBN de 10 dígitos, como por ejemplo 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Se requiere una identificación de la monografía." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Debe elegirse un formato de publicación." + +msgid "grid.catalogEntry.availability" +msgstr "Disponibilidad" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Disponible" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "No disponible" + +msgid "grid.catalogEntry.proof" +msgstr "Prueba" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Aceptación de formato" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

      Aprobar los metadatos para este formato. Los metadatos pueden comprobarse " +"desde el panel de edición para cada formato.

      " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "" +"

      Indicar que los metadatos para este formato no han sido aprobados.

      " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Disponibilidad de formato" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

      Haz que este formato esté disponible para los lectores/as. Los " +"archivos descargables y cualquier otra distribución aparecerán en la entrada " +"del catálogo de libros.

      " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

      Este formato no estará disponible para los lectores/as. Todos " +"los archivos descargables o las otras distribuciones ya no aparecerán en la " +"entrada del catálogo de libros.

      " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Entrada de catálogo no aceptada." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Formato no disponible en la entrada del catálogo." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Prueba no aceptada." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Aceptado" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Esperando aceptación" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Se requiere un tamaño de archivo para formatos digitales." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Se requiere un código de disponibilidad del producto." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Se debe elegir un código de composición del producto." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Valor de código" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Tipo de código ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Especifique un código." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Se requiere un valor." + +msgid "grid.catalogEntry.salesRights" +msgstr "Derechos de venta" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Valor de código" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Tipo de derechos de venta" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "¿Resto del mundo?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Marque la casilla para utilizar la entrada de Derechos de venta como filtro " +"para formato. En este caso no es necesario elegir países ni regiones." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Ya existe un tipo de ventas RDM definido para este formato de publicación." + +msgid "grid.catalogEntry.countries" +msgstr "Países" + +msgid "grid.catalogEntry.regions" +msgstr "Regiones" + +msgid "grid.catalogEntry.included" +msgstr "Incluidos" + +msgid "grid.catalogEntry.excluded" +msgstr "Excluidos" + +msgid "grid.catalogEntry.markets" +msgstr "Territorios de mercado" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Territorio" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Fechas de publicación" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Especifique un rol del representante." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Se requiere formato de fecha." + +msgid "grid.catalogEntry.dateValue" +msgstr "Fecha" + +msgid "grid.catalogEntry.dateRole" +msgstr "Rol" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Formato de fecha" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Se requiere fecha y el valor de la fecha debe corresponder con el formato de " +"fecha elegido." + +msgid "grid.catalogEntry.representatives" +msgstr "Representantes" + +msgid "grid.catalogEntry.representativeType" +msgstr "Tipo de representante" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agentes" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Proveedores" + +msgid "grid.catalogEntry.agent" +msgstr "Agente" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Puede asignar a un agente para que le represente en el territorio definido. " +"No se necesita." + +msgid "grid.catalogEntry.supplier" +msgstr "Proveedor" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Elegir una función:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Rol" + +msgid "grid.catalogEntry.representativeName" +msgstr "Nombre" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Teléfono" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Dirección de correo electrónico" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Página web" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Identificación del representante" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Tipo de identificación del representante ( GLN recomendado)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Puedes dejar vacía la siguiente sección si proporcionas tus propios " +"servicios a tus clientes." + +msgid "grid.action.addRepresentative" +msgstr "Añadir representante" + +msgid "grid.action.editRepresentative" +msgstr "Editar este representante" + +msgid "grid.action.deleteRepresentative" +msgstr "Borrar este representante" + +msgid "spotlight" +msgstr "Destacado" + +msgid "spotlight.spotlights" +msgstr "Destacados" + +msgid "spotlight.noneExist" +msgstr "No existen destacados actualmente." + +msgid "spotlight.title.homePage" +msgstr "En primer plano" + +msgid "spotlight.author" +msgstr "Autor, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Elemento destacado" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Página de inicio" + +msgid "grid.content.spotlights.form.location" +msgstr "Localización destacada" + +msgid "grid.content.spotlights.form.item" +msgstr "Introducir título destacado (autocompletar)" + +msgid "grid.content.spotlights.form.title" +msgstr "Título destacado" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Libro" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Se necesita un elemento." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Se necesita un título destacado." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Elige una localización para este destacado." + +msgid "grid.action.editSpotlight" +msgstr "Editar este destacado" + +msgid "grid.action.deleteSpotlight" +msgstr "Borrar este destacado" + +msgid "grid.action.addSpotlight" +msgstr "Añadir destacado" + +msgid "manager.series.open" +msgstr "Propuestas abiertas" + +msgid "manager.series.indexed" +msgstr "Indizado" + +msgid "grid.libraryFiles.column.files" +msgstr "Archivos" + +msgid "grid.action.catalogEntry" +msgstr "Ver registro en el catálogo" + +msgid "grid.action.formatInCatalogEntry" +msgstr "El formato aparece en el catálogo" + +msgid "grid.action.editFormat" +msgstr "Editar este formato" + +msgid "grid.action.deleteFormat" +msgstr "Borrar este formato" + +msgid "grid.action.addFormat" +msgstr "Añadir formato de publicación" + +msgid "grid.action.approveProof" +msgstr "Aprobar la prueba para la indexación e inclusión en el catálogo" + +msgid "grid.action.pageProofApproved" +msgstr "La página prueba que el fichero está listo para su publicación" + +msgid "grid.action.newCatalogEntry" +msgstr "Nueva entrada de catálogo" + +msgid "grid.action.publicCatalog" +msgstr "Ver elemento en el catálogo" + +msgid "grid.action.feature" +msgstr "Cambiar visualización de características" + +msgid "grid.action.featureMonograph" +msgstr "Destacar en el carrusel" + +msgid "grid.action.releaseMonograph" +msgstr "Marcar la propuesta como \"novedad\"" + +msgid "grid.action.manageCategories" +msgstr "Configurar categorías para la edición" + +msgid "grid.action.manageSeries" +msgstr "Configurar series para la edición" + +msgid "grid.action.addCode" +msgstr "Añadir código" + +msgid "grid.action.editCode" +msgstr "Editar código" + +msgid "grid.action.deleteCode" +msgstr "Borrar código" + +msgid "grid.action.addRights" +msgstr "Añadir derechos de venta" + +msgid "grid.action.editRights" +msgstr "Edit derechos" + +msgid "grid.action.deleteRights" +msgstr "Borrar estos derechos" + +msgid "grid.action.addMarket" +msgstr "Añadir mercado" + +msgid "grid.action.editMarket" +msgstr "Editar este mercado" + +msgid "grid.action.deleteMarket" +msgstr "Borrar este mercado" + +msgid "grid.action.addDate" +msgstr "Añadir fecha de publicación" + +msgid "grid.action.editDate" +msgstr "Editar esta fecha" + +msgid "grid.action.deleteDate" +msgstr "Borrar esta fecha" + +msgid "grid.action.createContext" +msgstr "Crear nueva publicación" + +msgid "grid.action.publicationFormatTab" +msgstr "Mostrar la pestaña de formato de publicación" + +msgid "grid.action.moreAnnouncements" +msgstr "Ir a página de comunicados de prensa" + +msgid "grid.action.submissionEmail" +msgstr "Hacer clic para leer el correo electrónico" + +msgid "grid.action.approveProofs" +msgstr "Ver cuadrícula de las pruebas" + +msgid "grid.action.proofApproved" +msgstr "Se ha comprobado el formato" + +msgid "grid.action.availableRepresentation" +msgstr "Acepta/rechaza este formato" + +msgid "grid.action.formatAvailable" +msgstr "El formato está disponible y publicado" + +msgid "grid.reviewAttachments.add" +msgstr "Añadir archivo a la revisión" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Ficheros disponibles" + +msgid "series.series" +msgstr "Colección" + +msgid "series.featured.description" +msgstr "Esta colección aparecerá en la navegación principal" + +msgid "series.path" +msgstr "Ruta" + +msgid "catalog.manage" +msgstr "Gestión del catálogo" + +msgid "catalog.manage.newReleases" +msgstr "Novedades" + +msgid "catalog.manage.category" +msgstr "Categoría" + +msgid "catalog.manage.series" +msgstr "Colección" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Introduzca un ISSN válido." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "El ISSN en línea y el de la versión impresa no pueden ser iguales." + +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN en línea" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN impreso" + +msgid "catalog.selectSeries" +msgstr "Seleccionar colección" + +msgid "catalog.selectCategory" +msgstr "Seleccionar categoría" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"La imagen de portada de los libros seleccionados aparece en la parte " +"superior de la página de inicio como un conjunto desplazable. Haga clic en " +"\"Destacar\" y después en la estrella para añadir el libro al visor. Haga " +"clic en el signo de exclamación para marcarlo como novedad y arrastre y " +"suelte para ordenarlo." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Haz clic en \"destacar\"; después haz clic en la estrella para seleccionar " +"un libro destacado para esta categoría; arrastra y y suelta para ordenar." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Haga clic en \"Destacar\" y después en la estrella para seleccionar un libro " +"destacado de la colección; arrastre y suelte para ordenarlo. La colección se " +"identifica con un título de editor/as y de serie, dentro de una categoría o " +"independientemente." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Carrusel" + +msgid "catalog.manage.newRelease" +msgstr "Publicación" + +msgid "catalog.manage.manageSeries" +msgstr "Gestionar colecciones" + +msgid "catalog.manage.manageCategories" +msgstr "Gestionar categorías" + +msgid "catalog.manage.noMonographs" +msgstr "No existen monografías asignadas." + +msgid "catalog.manage.featured" +msgstr "Destacado" + +msgid "catalog.manage.categoryFeatured" +msgstr "Destacado en categoría" + +msgid "catalog.manage.seriesFeatured" +msgstr "Destacado en series" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monografía destacada." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monografía no destacada." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Monografía marcada como nuevo lanzamiento." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Monografía desmarcada como nueva publicación." + +msgid "catalog.manage.feature.newRelease" +msgstr "Nueva publicación" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Nueva publicación en categoría" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Nueva publicación en series" + +msgid "catalog.manage.nonOrderable" +msgstr "Esta monografía no se puede solicitar hasta que se publique." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Buscar por título o autor" + +msgid "catalog.manage.isFeatured" +msgstr "Esta monografía está destacada. Hacer la monografía no destacada." + +msgid "catalog.manage.isNotFeatured" +msgstr "Esta monografía no está destacada. Hacer la monografía destacada." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Esta monografía es un nuevo lanzamiento. Hacer que la monografía no sea un " +"nuevo lanzamiento." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Esta monografía no es un nuevo lanzamiento. Hacer que la monografía sea un " +"nuevo lanzamiento." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "No se ha seleccionado ningún envío para añadirse al catálogo." + +msgid "catalog.manage.submissionsNotFound" +msgstr "No se ha podido encontrar uno o más envíos." + +msgid "catalog.manage.findSubmissions" +msgstr "Encontrar monografías para añadirlas al catálogo" + +msgid "catalog.noTitles" +msgstr "No se ha publicado aún ningún título." + +msgid "catalog.noTitlesNew" +msgstr "No está disponible ninguna nueva publicación en este momento." + +msgid "catalog.noTitlesSearch" +msgstr "" +"No se ha encontrado ningún resultado que coincida con su búsqueda " +"\"{$searchQuery}\"." + +msgid "catalog.feature" +msgstr "Destacar" + +msgid "catalog.featured" +msgstr "Destacado" + +msgid "catalog.featuredBooks" +msgstr "Libros destacados" + +msgid "catalog.foundTitleSearch" +msgstr "" +"Se ha encontrado un resultado que coincide con su búsqueda " +"\"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"Se han encontrado {$number} resultados que coinciden con su búsqueda " +"\"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Todos los libros" + +msgid "catalog.newReleases" +msgstr "Novedades" + +msgid "catalog.dateAdded" +msgstr "Añadido" + +msgid "catalog.publicationInfo" +msgstr "Información de publicación" + +msgid "catalog.published" +msgstr "Publicado" + +msgid "catalog.forthcoming" +msgstr "Próximamente" + +msgid "catalog.categories" +msgstr "Categorías" + +msgid "catalog.parentCategory" +msgstr "Categoría matriz" + +msgid "catalog.category.subcategories" +msgstr "Subcategorías" + +msgid "catalog.aboutTheAuthor" +msgstr "Acerca de {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Nota: Para comprar elementos, es necesario iniciar sesión. Al seleccionar un " +"elemento para comprarlo, será redirigido a la página de inicio de sesión. Se " +"pueden descargar gratis todos los elementos marcados con el icono Acceso " +"abierto sin necesidad de iniciar sesión." + +msgid "catalog.sortBy" +msgstr "Orden de las monografías" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Elija la forma de ordenar los libros en estas colecciones." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Elija la forma de ordenar los libros en esta categoría." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Elija la forma de ordenar los libros en este catálogo." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Posición de las colecciones (inferiores primero)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Posición de las colecciones (superiores primero)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} visualización del fichero {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Vuelva para ver los detalles sobre {$monographTitle}" + +msgid "submission.search" +msgstr "Búsqueda de libros" + +msgid "common.publication" +msgstr "Monografía" + +msgid "common.publications" +msgstr "Monografías" + +msgid "common.prefix" +msgstr "Prefijo" + +msgid "common.preview" +msgstr "Previsualizar" + +msgid "common.feature" +msgstr "Destacar" + +msgid "common.searchCatalog" +msgstr "Buscar aquí" + +msgid "common.moreInfo" +msgstr "Más información" + +msgid "common.listbuilder.completeForm" +msgstr "Rellene todo el formulario." + +msgid "common.listbuilder.selectValidOption" +msgstr "Seleccione una opción válida de la lista." + +msgid "common.listbuilder.itemExists" +msgstr "No puede añadir el mismo elemento dos veces." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Cabecera de inicio" + +msgid "navigation.catalog" +msgstr "Catálogo" + +msgid "navigation.competingInterestPolicy" +msgstr "Política de conflicto de intereses" + +msgid "navigation.catalog.allMonographs" +msgstr "Todas las monografías" + +msgid "navigation.catalog.manage" +msgstr "Administrar" + +msgid "navigation.catalog.administration.short" +msgstr "Administración" + +msgid "navigation.catalog.administration" +msgstr "Administración del catálogo" + +msgid "navigation.catalog.administration.categories" +msgstr "Categorías" + +msgid "navigation.catalog.administration.series" +msgstr "Colección" + +msgid "navigation.infoForAuthors" +msgstr "Para autores" + +msgid "navigation.infoForLibrarians" +msgstr "Para bibliotecarios" + +msgid "navigation.infoForAuthors.long" +msgstr "Información para autores" + +msgid "navigation.infoForLibrarians.long" +msgstr "Información para bibliotecas" + +msgid "navigation.newReleases" +msgstr "Novedades" + +msgid "navigation.published" +msgstr "Publicado" + +msgid "navigation.wizard" +msgstr "Asistente" + +msgid "navigation.linksAndMedia" +msgstr "Enlaces y redes sociales" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Enlace a su catálogo." + +msgid "navigation.skip.spotlights" +msgstr "Pasar a destacados" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Series" + +msgid "navigation.navigationMenus.series.description" +msgstr "Enlace a series." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Categoría" + +msgid "navigation.navigationMenus.category.description" +msgstr "Enlace a una categoría." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Nuevos lanzamientos" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Enlace a sus nuevos lanzamientos." + +msgid "context.contexts" +msgstr "Editoriales" + +msgid "context.context" +msgstr "Editorial" + +msgid "context.current" +msgstr "Editorial actual:" + +msgid "context.select" +msgstr "Cambiar a otra editorial:" + +msgid "user.authorization.representationNotFound" +msgstr "No se ha podido encontrar el formato de publicación solicitado." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Incluir usuarios/as sin roles en la publicación." + +msgid "user.noRoles.submitMonograph" +msgstr "Enviar una propuesta" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Enviar una monografía: el registro de autor/a se encuentra actualmente " +"deshabilitado." + +msgid "user.noRoles.regReviewer" +msgstr "Registrarse como corrector" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Registrarse como corrector: El registro del corrector se encuentra " +"actualmente deshabilitado." + +msgid "user.reviewerPrompt" +msgstr "¿Estaría dispuesto a revisar los envíos a esta editorial?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Sí, solicitar el rol de {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Sí, me gustaría que me contacten para revisar los envíos de esta editorial." + +msgid "user.register.contextsPrompt" +msgstr "¿En qué editoriales de este sitio le gustaría registrarse?" + +msgid "user.register.otherContextRoles" +msgstr "Solicita los siguientes roles." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Si solicitó ser revisor de alguna editorial debe introcir sus temas de " +"interés." + +msgid "user.role.manager" +msgstr "Gestor editorial" + +msgid "user.role.pressEditor" +msgstr "Editor editorial" + +msgid "user.role.subEditor" +msgstr "Editor/a de la sèrie" + +msgid "user.role.copyeditor" +msgstr "Corrector/a de originales" + +msgid "user.role.proofreader" +msgstr "Corrector/a de pruebas" + +msgid "user.role.productionEditor" +msgstr "Editor/a de producción" + +msgid "user.role.managers" +msgstr "Gestores/as editoriales" + +msgid "user.role.subEditors" +msgstr "Editor/a de la serie" + +msgid "user.role.editors" +msgstr "Editores/as" + +msgid "user.role.copyeditors" +msgstr "Correctores/as de originales" + +msgid "user.role.proofreaders" +msgstr "Correctores/as de pruebas" + +msgid "user.role.productionEditors" +msgstr "Editores/as de producción" + +msgid "user.register.selectContext" +msgstr "Seleccione una editorial en la que registrarse:" + +msgid "user.register.noContexts" +msgstr "No hay editoriales en las que registrarse en este sitio." + +msgid "user.register.privacyStatement" +msgstr "Declaración de privacidad" + +msgid "user.register.registrationDisabled" +msgstr "Esta editorial no acepta cuentas de usuarios actualmente." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "La contraseña que has introducido no es lo suficientemente larga." + +msgid "user.register.readerDescription" +msgstr "Publicación de una monografía notificada por correo electrónico." + +msgid "user.register.authorDescription" +msgstr "Es posible enviar elementos a la editorial." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "" +"Dispuesto a llevar a cabo una revisión por pares de las propuestas a la " +"editorial." + +msgid "user.register.reviewerDescription" +msgstr "" +"Dispuesto a presentar una revisión por pares de las propuestas a la página." + +msgid "user.register.reviewerInterests" +msgstr "" +"Identificar los intereses de la revisión (áreas sustantivas y métodos de " +"investigación):" + +msgid "user.register.form.userGroupRequired" +msgstr "Debe seleccionar por lo menos un rol" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Sí, acepto que mis datos sean recopilados y almacenados según la declaración de privacidad de esta " +"editorial." + +msgid "site.noPresses" +msgstr "No hay editoriales disponibles." + +msgid "site.pressView" +msgstr "Ver página web de la editorial" + +msgid "about.pressContact" +msgstr "Contacto de la editorial" + +msgid "about.aboutContext" +msgstr "Sobre la editorial" + +msgid "about.editorialTeam" +msgstr "Equipo editorial" + +msgid "about.editorialPolicies" +msgstr "Políticas editoriales" + +msgid "about.focusAndScope" +msgstr "Orientación y ámbito de actividad" + +msgid "about.seriesPolicies" +msgstr "Políticas de categorías y series" + +msgid "about.submissions" +msgstr "Propuestas" + +msgid "about.onlineSubmissions" +msgstr "Envío electrónico de propuestas" + +msgid "about.onlineSubmissions.login" +msgstr "Ir a Autenticación" + +msgid "about.onlineSubmissions.register" +msgstr "Registra" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "" +"Debe estar registrado y haber iniciado la sesión para enviar elementos y " +"hacer el seguimiento de los envíos actuales. {$login} en una cuenta " +"existente o {$register} una nueva." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} o {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Crear un nuevo envío" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "Ver sus envíos pendientes" + +msgid "about.authorGuidelines" +msgstr "Directrices para autores" + +msgid "about.submissionPreparationChecklist" +msgstr "Lista de comprobación de preparación de propuestas" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Como parte del proceso de entrega de propuestas, se exige a los autores que " +"comprueben que la propuesta está de acuerdo con todos los siguientes " +"elementos, y las propuestas que no se acojan a estas directrices pueden ser " +"devueltas a los autores." + +msgid "about.copyrightNotice" +msgstr "Aviso de derechos de autor" + +msgid "about.privacyStatement" +msgstr "Declaración de privacidad" + +msgid "about.reviewPolicy" +msgstr "Proceso de revisión por pares" + +msgid "about.publicationFrequency" +msgstr "Periodicidad de la publicación" + +msgid "about.openAccessPolicy" +msgstr "Política de acceso abierto" + +msgid "about.pressSponsorship" +msgstr "Patrocinio de la editorial" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Más información acerca del sistema de publicación, de la plataforma y del " +"flujo de trabajo de OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "OMP Proceso editorial y publicitario" + +msgid "about.aboutSoftware" +msgstr "Acerca de Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"Esta publicación utiliza Open Monograph Press {$ompVersion}, que es un " +"software de publicación y gestión editorial de código abierto desarrollado, " +"impulsado y distribuido de forma gratuita por Public Knowledge Project bajo " +"una licencia pública general GNU. Visite la página web de PKP para saber más acerca del software. Por favor, contacte con la editorial directamente si tiene " +"preguntas sobre la editorial o acerca de los envíos a la editorial." + +msgid "about.aboutOMPSite" +msgstr "" +"Esta publicación utiliza Open Monograph Press {$ompVersion}, que es un " +"software de código abierto de gestión editorial de publicaciones " +"desarrollado, respaldado y distribuido gratuitamente por Public Knowledge " +"Project bajo la Licencia Pública General (GNU). Visite la página web de PKP " +"para obtener más información del software. Para cuestiones relacionadas con las publicaciones, contacte " +"directamente con el sitio web." + +msgid "help.searchReturnResults" +msgstr "Volver a Búsqueda de resultados" + +msgid "help.goToEditPage" +msgstr "Abrir una nueva página para editar esta información" + +msgid "installer.appInstallation" +msgstr "Instalación OMP" + +msgid "installer.ompUpgrade" +msgstr "Actualización OMP" + +msgid "installer.installApplication" +msgstr "Instalar Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Si está actualizando una instalación existente de OMP, haga clic aquí para continuar." + +msgid "installer.installationInstructions" +msgstr "" +"

      Gracias por descargar Open Monograph Press {$version} de " +"Public Knowledge Project. Antes de continuar lea el archivo README incluido con el software. Para obtener " +"más información sobre Public Knowledge Project y sus proyectos de software " +"visite la página web de " +"PKP. Si tiene dudas sobre los informes de errores o soporte técnico de " +"Open Monograph Press visite el foro de ayuda o el sistema de informes de errores en línea de PKP. Aunque " +"el foro de ayuda es el mejor método de contacto también puede mandar un " +"correo electrónico al equipo a pkp." +"contact@gmail.com.

      " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Pasos para preinstalación" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

      1. Los siguientes archivos y directorios (junto con sus contenidos) " +"tienen que cambiarse a modo editable:

      \n" +"
        \n" +"\t
      • config.inc.php es editable (opcional): {$writable_config}\n" +"\t
      • public/ es editable: {$writable_public}
      • \n" +"\t
      • cache/ es editable: {$writable_cache}
      • \n" +"\t
      • cache/t_cache/ es editable: {$writable_templates_cache}
      • \n" +"\t
      • cache/t_compile/ es editable: {$writable_templates_compile}\n" +"\t
      • cache/_db es editable: {$writable_db_cache}
      • \n" +"
      \n" +"\n" +"

      2. Es necesario crear un directorio para guardar los archivos subidos y " +"que sea editable (ver \"Configuración de archivo\" a continuación).

      " + +msgid "installer.upgradeInstructions" +msgstr "" +"

      Versión de OMP {$version}

      \n" +"\n" +"

      Gracias por descargar Open Monograph Press de Public " +"Knowledge Project. Antes de continuar lea los archivos README y UPGRADE " +"incluidos con el software. Para obtener más información sobre Public " +"Knowledge Project y sus proyectos de software visite la página web de PKP. Si tiene dudas sobre los " +"informes de errores o soporte técnico de Open Monograph Press visite el foro de ayuda " +"o el sistema de " +"informes de errores en línea de PKP. Aunque el foro de ayuda es el mejor " +"método de contacto también puede mandar un correo electrónico al equipo a pkp.contact@gmail.com.

      \n" +"

      Es muy recomendable que haga una copia de su base de " +"datos, directorio de archivos y directorio de instalación de OMP antes de " +"continuar.

      \n" +"

      Si está ejecutando el modo seguro de PHP asegúrese de que la directiva " +"max_execution_time en su archivo de configuración php.ini tiene un límite " +"elevado. Si se alcanza este o cualquier otro límite de tiempo (por ejemplo, " +"la directiva de Apache \"Timeout\") y el proceso de actualización se ve " +"interrumpido, se necesitará ayuda manual.

      " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Para obtener una compatibilidad completa con Unicode, PHP debe compilarse " +"con compatibilidad para la biblioteca mbstring (activada por defecto en la " +"mayoría de las instalaciones recientes de PHP). Podría experimentar " +"problemas al utilizar grupos extendidos de caracteres si su servidor no " +"cumple estos requisitos.\n" +"

      \n" +"Su servidor actualmente es compatible con: " +"{$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Su servidor actualmente permite la subida de archivos: " +"{$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Su servidor actualmente permite un tamaño máximo de archivos subidos de: " +"{$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"El idioma principal para usar en el sistema. Consulte la documentación de " +"OMP si tiene interés en ayuda para idiomas que no se encuentran en la lista." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Seleccione cualquier otro idioma adicional para que lo reconozca el sistema. " +"Los idiomas estarán disponibles para que las publicaciones del sitio los " +"puedan utilizar. También se pueden instalar otros idiomas en cualquier " +"momento desde la interfaz de administración del sitio. Las ubicaciones " +"marcadas con * pueden estar incompletas." + +msgid "installer.filesDirInstructions" +msgstr "" +"Introduzca la ruta completa de un directorio donde se guardarán los archivos " +"subidos. El directorio no debe ser directamente accesible desde la web. " +"Asegúrese de que el directorio existe y es editable antes de la " +"instalación. Los nombres de ruta de Windows deben contener " +"barras /, por ejemplo \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP necesita acceso a la base de datos SQL para guardar los datos. Compruebe " +"los requisitos del sistema anteriores en la lista de bases de datos " +"soportadas. Establezca la configuración que se utilizará para conectarse a " +"la base de datos en los siguientes campos." + +msgid "installer.upgradeApplication" +msgstr "Actualizar Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

      ¡IMPORTANTE!

      \n" +"

      No se pudo sobrescribir automáticamente el archivo de configuración con " +"el instalador. Antes de usar el sistema abra config.inc.php en un " +"editor/a de textos adecuado y reemplace el contenido con el contenido de los " +"campos de texto siguientes.

      " + +msgid "installer.installationComplete" +msgstr "" +"

      La instalación de OMP se ha completado correctamente.

      \n" +"

      Para empezar a utilizar el sistema, inicie " +"sesión con el nombre de usuario/a y la contraseña introducidos en la " +"página anterior.

      \n" +"

      Visite nuestro foro " +"de la comunidad o dese de alta en nuestro boletín de desarrolladores para " +"recibir avisos de seguridad y novedades acerca de lanzamientos futuros, " +"nuevos módulos y funcionalidades planificadas.

      " + +msgid "installer.upgradeComplete" +msgstr "" +"

      La actualización de OMP a la versión {$version} se ha completado con " +"éxito.

      \n" +"

      No se olvide de establecer el ajuste \"installed\" en su archivo de " +"configuración config.inc.php de nuevo a On.

      \n" +"

      Visite nuestro foro " +"de la comunidad o dese de alta en nuestro boletín de desarrolladores para " +"recibir avisos de seguridad y novedades acerca de lanzamientos futuros, " +"nuevos módulos y funcionalidades planificadas.

      " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"{$reviewerName} cambió a {$dueDate} la fecha de entrega de la revisión para " +"envío {$submissionId} de la ronda {$round}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} rechazó la revisión para envío {$submissionId} de la ronda " +"{$round}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} aceptó la revisión para envío {$submissionId} de la ronda " +"{$round}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} marcó la revisión para envío {$submissionId} de la ronda " +"{$round}." + +msgid "log.editor.decision" +msgstr "" +"{$editorName} grabó la decisión del editor/a ({$decision}) en la monografía " +"{$submissionId}." + +msgid "log.editor.recommendation" +msgstr "" +"{$editorName} ha registrado una recomendación editorial ({$decision}) para " +"la monografía {$submissionId}." + +msgid "log.editor.archived" +msgstr "El envío {$submissionId} fue archivado." + +msgid "log.editor.restored" +msgstr "Se restauró el envío {$submissionId} a la lista." + +msgid "log.editor.editorAssigned" +msgstr "Se asignó a envío {$submissionId} a {$editorName} como editor/a." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} asignó a {$proofreaderName} para corregir el envío " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} envió {$submissionId} para su programación." + +msgid "log.imported" +msgstr "{$userName}importó la monografía {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Código de identificación añadido." + +msgid "notification.editedIdentificationCode" +msgstr "Código de intensificación editado." + +msgid "notification.removedIdentificationCode" +msgstr "Código de identificación eliminado." + +msgid "notification.addedPublicationDate" +msgstr "Fecha de publicación añadida." + +msgid "notification.editedPublicationDate" +msgstr "Fecha de publicación editada." + +msgid "notification.removedPublicationDate" +msgstr "Fecha de publicación eliminada." + +msgid "notification.addedPublicationFormat" +msgstr "Formato de publicación añadido." + +msgid "notification.editedPublicationFormat" +msgstr "Formato de publicación editado." + +msgid "notification.removedPublicationFormat" +msgstr "Formato de publicación eliminado." + +msgid "notification.addedSalesRights" +msgstr "Derechos de venta añadidos." + +msgid "notification.editedSalesRights" +msgstr "Derechos de venta editados." + +msgid "notification.removedSalesRights" +msgstr "Derechos de venta eliminados." + +msgid "notification.addedRepresentative" +msgstr "Representante añadido." + +msgid "notification.editedRepresentative" +msgstr "Representante editado." + +msgid "notification.removedRepresentative" +msgstr "Representante eliminado." + +msgid "notification.addedMarket" +msgstr "Mercado añadido." + +msgid "notification.editedMarket" +msgstr "Mercado editado." + +msgid "notification.removedMarket" +msgstr "Mercado eliminado." + +msgid "notification.addedSpotlight" +msgstr "Destacado añadido." + +msgid "notification.editedSpotlight" +msgstr "Destacado editado." + +msgid "notification.removedSpotlight" +msgstr "Destacado eliminado." + +msgid "notification.savedCatalogMetadata" +msgstr "Catálogo de metadatos guardado." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Formato de publicación de los metadatos guardado." + +msgid "notification.proofsApproved" +msgstr "Revisiones aprobadas." + +msgid "notification.removedSubmission" +msgstr "Propuesta eliminada." + +msgid "notification.type.submissionSubmitted" +msgstr "Se envió una nueva monografía \"{$title}\"." + +msgid "notification.type.editing" +msgstr "Editar eventos" + +msgid "notification.type.reviewing" +msgstr "Revisar eventos" + +msgid "notification.type.site" +msgstr "Eventos del sitio Web" + +msgid "notification.type.submissions" +msgstr "Eventos de propuesta" + +msgid "notification.type.userComment" +msgstr "Un lector/a hizo un comentario sobre \"{$title}\"." + +msgid "notification.type.public" +msgstr "Anuncios públicos" + +msgid "notification.type.editorAssignmentTask" +msgstr "" +"Se ha realizado una propuesta de una monografía para la cuál es necesario " +"asignar un Editor." + +msgid "notification.type.copyeditorRequest" +msgstr "Le pedimos que revise las correcciones para \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "Le pedimos que revise la maquetación para \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "Le pedimos que cree un índice para \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Proceso de revisión interna comenzado." + +msgid "notification.type.approveSubmission" +msgstr "" +"Esta propuesta está actualmente pendiente de aprobación en la herramienta de " +"Entrada de Catálogo antes de que pueda aparecer en el catálogo público." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Pendiente de aprobación." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"La monografía no aparecerá listada en el catálogo hasta que no esté " +"publicada. Para añadir este libro al catálogo haga clic en la pestaña " +"\"Publicación\"." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "No se ha configurado ningún método de pago." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Se requiere un método de pago configurado antes de poder definir ajustes de " +"e-commerce." + +msgid "notification.type.visitCatalogTitle" +msgstr "Gestión del catálogo" + +msgid "notification.type.visitCatalog" +msgstr "" +"Se ha aceptado la monografía. Visite Marketing y Publicación para gestionar " +"los detalles del catálogo mediante los enlaces que aparecen justo encima." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Se te ha denegado el acceso porque parece que no eres un revisor válido para " +"esta monografía." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Se te ha denegado el acceso porque parece que no eres el autor de esta " +"monografía." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Se te ha denegado el acceso porque parece que no eres el revisor asignado de " +"esta monografía." + +msgid "user.authorization.monographFile" +msgstr "Se te ha denegado el acceso al fichero de la monografía especificado." + +msgid "user.authorization.invalidMonograph" +msgstr "¡No se ha solicitado monografía o esta no es válida!" + +msgid "user.authorization.noContext" +msgstr "No se encontró ninguna editorial que coincida con su solicitud." + +msgid "user.authorization.seriesAssignment" +msgstr "Estás intentando acceder a una monografía que no es parte de tu serie." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" +"¡Acceso denegado! No se le asignó para esta etapa del flujo de trabajo." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"¡Acceso denegado! No se asignó al grupo de trabajo en el que se encuentra " +"para esta etapa del flujo de trabajo. Compruebe la configuración de la " +"publicación." + +msgid "payment.directSales" +msgstr "Descarga del sitio web de la editorial" + +msgid "payment.directSales.price" +msgstr "Precio" + +msgid "payment.directSales.availability" +msgstr "Disponibilidad" + +msgid "payment.directSales.catalog" +msgstr "Catálogo" + +msgid "payment.directSales.approved" +msgstr "Aprobado" + +msgid "payment.directSales.priceCurrency" +msgstr "Precio ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Los precios deben ser solo numéricos, no incluya símbolos de moneda." + +msgid "payment.directSales.directSales" +msgstr "Ventas directas" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "No disponible" + +msgid "payment.directSales.notSet" +msgstr "No configurado" + +msgid "payment.directSales.openAccess" +msgstr "Acceso abierto" + +msgid "payment.directSales.price.description" +msgstr "" +"Los formatos del archivo pueden estar disponibles para descargarse desde la " +"página web de la publicación, bien mediante una política de acceso abierto " +"sin coste para los lectores/as, o bien mediante ventas directas (utilizando " +"un proceso de pago en línea, tal y como está configurado en Distribución). " +"Indicar base de acceso a este archivo." + +msgid "payment.directSales.validPriceRequired" +msgstr "Se necesita un precio numérico válido." + +msgid "payment.directSales.purchase" +msgstr "Compra {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Descarga {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Comprar monografía o descargar capítulo" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Esta transacción es relativa a la compra de una descarga directa de una " +"monografía sola o un capítulo de una monografía." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"El archivo {$filename} de asignación de ayuda XML se volvió a cargar en " +"busca de {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Libro" + +msgid "submission.pdf.download" +msgstr "Descargar el archivo PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Registro con otras editoriales" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Oculta otras editoriales" + +msgid "submission.round" +msgstr "Ronda {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Se ha especificado un envío publicado no válido." + +msgid "catalog.coverImageTitle" +msgstr "Imagen de cubierta" + +msgid "grid.catalogEntry.chapters" +msgstr "Capítulos" + +msgid "search.results.orderBy.article" +msgstr "Título del artículo" + +msgid "search.results.orderBy.author" +msgstr "Autor/a" + +msgid "search.results.orderBy.date" +msgstr "Fecha de publicación" + +msgid "search.results.orderBy.monograph" +msgstr "Título de la monografía" + +msgid "search.results.orderBy.press" +msgstr "Nombre de la editorial" + +msgid "search.results.orderBy.popularityAll" +msgstr "Popularidad (histórica)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Popularidad (último mes)" + +msgid "search.results.orderBy.relevance" +msgstr "Relevancia" + +msgid "search.results.orderDir.asc" +msgstr "Ascendente" + +msgid "search.results.orderDir.desc" +msgstr "Descendente" + +#~ msgid "monograph.coverImage.uploadInstructions" +#~ msgstr "" +#~ "Asegúrate de que la altura de la imagen no sea más grande que el 150% de " +#~ "su anchura. De lo contrario el carrusel no mostrará toda la portada." + +#~ msgid "grid.catalogEntry.availablePublicationFormat.title" +#~ msgstr "Aprobación de formato" + +#~ msgid "grid.catalogEntry.availablePublicationFormat.message" +#~ msgstr "" +#~ "

      El formato estará disponible para los lectores/as mediante " +#~ "archivos descargables que se encontrarán junto a la entrada de catálogo " +#~ "del libro y mediante otras opciones que la editorial ofrezca para " +#~ "distribuir el libro.

      " + +#~ msgid "grid.catalogEntry.availablePublicationFormat.removeMessage" +#~ msgstr "" +#~ "

      El formato ya no estará disponible para los lectores/as " +#~ "mediante archivos descargables que antes se encontraban junto a la " +#~ "entrada de catálogo del libro ni mediante otras opciones que la editorial " +#~ "ofrezca para distribuir el libro.

      " + +#~ msgid "" +#~ "grid.catalogEntry.availablePublicationFormat.catalogNotApprovedWarning" +#~ msgstr "Entrada de catálogo no aprobada." + +#~ msgid "grid.catalogEntry.availablePublicationFormat.notApprovedWarning" +#~ msgstr "Formato no en entrada de catálogo" + +#~ msgid "grid.catalogEntry.availablePublicationFormat.proofNotApproved" +#~ msgstr "Prueba no aprobada." + +#~ msgid "grid.catalogEntry.representativeFax" +#~ msgstr "Fax" + +#~ msgid "grid.content.spotlights.category.sidebar" +#~ msgstr "Barra lateral" + +#~ msgid "grid.action.editApprovedProof" +#~ msgstr "Editar esta prueba aprobada" + +#~ msgid "grid.action.availablePublicationFormat" +#~ msgstr "Aprobar / no aprobar este formato" + +#~ msgid "series.featured" +#~ msgstr "Presentados" + +#~ msgid "catalog.manage.homepage" +#~ msgstr "Página de inicio" + +#~ msgid "catalog.manage.managementIntroduction" +#~ msgstr "" +#~ "Bienvenido/a a la gestión del catálogo. Desde esta página puede publicar " +#~ "nuevas entradas de catálogo; revisar y configurar la lista de libros " +#~ "destacados, la lista de novedades y los libros por categoría y colección." + +#~ msgid "catalog.manage.entryDescription" +#~ msgstr "" +#~ "Para citar un libro en el catálogo, seleccione la pestaña Monografía y " +#~ "complete la información necesaria. La información sobre todos los " +#~ "formatos del libro se puede incluir en la entrada del catálogo " +#~ "seleccionando la pestaña de formato. Las especificaciones de los " +#~ "metadatos se basan en ONIX for Books, un estándar internacional que " +#~ "utilizan las editoriales para publicar la información del producto." + +#~ msgid "catalog.manage.spotlightDescription" +#~ msgstr "" +#~ "Tres destacados (por ejemplo, como Libro Destacado) pueden aparecer en la " +#~ "página de inicio, con título, imagen, y texto." + +#~ msgid "catalog.relatedCategories" +#~ msgstr "Categorías relacionadas" + +#~ msgid "catalog.noBioInfo" +#~ msgstr "Ninguna biografía disponible actualmente." + +#~ msgid "common.plusMore" +#~ msgstr "+ Más" + +#~ msgid "common.catalogInformation" +#~ msgstr "" +#~ "La información de catálogo no necesita completarse en una propuesta " +#~ "inicial de la obra, a excepción de Título y Resumen." + +#~ msgid "common.prefixAndTitle.tip" +#~ msgstr "" +#~ "Si el título del libro comienza con \"Un/a\" o \"El/La/Los/Las\" (o algo " +#~ "similar que no deba incluirse por orden alfabético) añade la palabra como " +#~ "prefijo." + +#~ msgid "user.role.seriesEditor" +#~ msgstr "Editor/a de la colección" + +#~ msgid "user.role.seriesEditors" +#~ msgstr "Editores de la colección" + +#~ msgid "user.register.completeForm" +#~ msgstr "Complete el formulario para registrarse en la publicación." + +#~ msgid "user.register.alreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Haga clic aquí si ya está registrado en el " +#~ "sitio con esta o con otra publicación." + +#~ msgid "user.register.notAlreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Haga clic aquí si todavía no está registrado en el sitio con esta o con otra publicación." + +#~ msgid "user.register.loginToRegister" +#~ msgstr "" +#~ "Introduce tu nombre de usuario actual y contraseña para registrarte con " +#~ "esta editorial." + +#~ msgid "about.aboutThePress" +#~ msgstr "Sobre la editorial" + +#~ msgid "about.sponsors" +#~ msgstr "Patrocinadores" + +#~ msgid "about.contributors" +#~ msgstr "Fuentes de apoyo" + +#~ msgid "about.onlineSubmissions.haveAccount" +#~ msgstr "¿Ya tengo nombre de usuario/a y contraseña para {$pressTitle}?" + +#~ msgid "about.onlineSubmissions.needAccount" +#~ msgstr "¿Necesitas un Nombre de usuario/Contraseña?" + +#~ msgid "about.onlineSubmissions.registration" +#~ msgstr "Ir a Crear cuenta" + +#~ msgid "log.editor.submissionExpedited" +#~ msgstr "" +#~ "{$editorName} envió el proceso de edición de la monografía " +#~ "{$submissionId}." + +#~ msgid "notification.removedFooterLink" +#~ msgstr "Vínculo a pie de página eliminado." + +#~ msgid "notification.type.metadataModified" +#~ msgstr "Se modificaron los metadatos de \"{$title}\"" + +#~ msgid "notification.type.reviewerComment" +#~ msgstr "Un revisor/a comentó \"{$title}\"." + +#~ msgid "user.authorization.invalidSeriesEditorSubmission" +#~ msgstr "" +#~ "¡No se ha solicitado propuesta de editor de colección o esta no es válida!" + +#~ msgid "payment.directSales.readRemotely" +#~ msgstr "Vaya a {$format}" + +#~ msgid "grid.series.urlWillBe" +#~ msgstr "" +#~ "La URL de la colección es {$sampleUrl}. La ruta es una cadena de " +#~ "caracteres que sirven para identificar una serie." + +msgid "section.section" +msgstr "Colección" + +msgid "search.cli.rebuildIndex.indexing" +msgstr "Indexando \"{$pressName}\"" + +msgid "search.cli.rebuildIndex.indexingByPressNotSupported" +msgstr "" +"Esta implementación de búsqueda no permite la reindexación por publicación." + +msgid "search.cli.rebuildIndex.unknownPress" +msgstr "" +"La ruta de publicación proporcionada \"{$pressPath}\" no pudo resolverse en " +"una publicación." diff --git a/locale/es/manager.po b/locale/es/manager.po new file mode 100644 index 00000000000..0addc724ed8 --- /dev/null +++ b/locale/es/manager.po @@ -0,0 +1,2270 @@ +# Jordi LC , 2021, 2023, 2024. +# Marc Bria , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" +"PO-Revision-Date: 2024-04-26 12:34+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish " +"\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Esto sustituirá cualquier ajuste de publicación específico que hubiera " +"establecido para esta configuración regional" + +msgid "manager.languages.noneAvailable" +msgstr "" +"No hay más idiomas disponibles. Póngase en contacto con el administrador/a " +"del sitio si desea utilizar más idiomas con la publicación." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Este será el idioma predeterminado para el sitio de la editorial." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Por favor, asegúrate de que se ha marcado al menos una casilla para cada " +"tarea del coordinador de colección." + +msgid "manager.series.form.reviewFormId" +msgstr "" +"Por favor, asegúrate de que has elegido un formulario de revisión válido." + +msgid "manager.series.submissionIndexing" +msgstr "No se incluirá en la indexación de la publicación" + +msgid "manager.series.editorRestriction" +msgstr "" +"Solo los coordinadores y coordinadores de colección pueden presentar " +"elementos." + +msgid "manager.series.confirmDelete" +msgstr "¿Estás seguro de que deseas eliminar esta serie de forma permanente?" + +msgid "manager.series.indexed" +msgstr "Indizado" + +msgid "manager.series.open" +msgstr "Propuestas abiertas" + +msgid "manager.series.readingTools" +msgstr "Herramientas de lectura" + +msgid "manager.series.submissionReview" +msgstr "No se revisará por pares" + +msgid "manager.series.submissionsToThisSection" +msgstr "Propuesta realizada para esta colección" + +msgid "manager.series.abstractsNotRequired" +msgstr "No se necesitan resúmenes" + +msgid "manager.series.disableComments" +msgstr "Desactivar comentarios de los lectores para esta colección." + +msgid "manager.series.book" +msgstr "Colección de libros" + +msgid "manager.series.create" +msgstr "Crear colección" + +msgid "manager.series.policy" +msgstr "Descripción de la colección" + +msgid "manager.series.assigned" +msgstr "Coordinadores de esta colección" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Añadir un editor/a de la serie a la serie desde Editores/as de la serie. Una " +"vez añadido, designe si el editor/a de la serie supervisará la REVISIÓN " +"(evaluación por pares) o la EDICIÓN (corrección, maquetación y corrección de " +"pruebas) de los envíos a la serie. Los editores/as de la serie se crean " +"haciendo clic en Editores/as de la serie " +"en Roles en la gestión de la publicación." + +msgid "manager.series.hideAbout" +msgstr "Omitir esta colección de Sobre la editorial." + +msgid "manager.series.unassigned" +msgstr "Coordinadores de colección disponibles" + +msgid "manager.series.form.abbrevRequired" +msgstr "Se necesita un título abreviado para esta colección." + +msgid "manager.series.form.titleRequired" +msgstr "Se necesita un título para esta colección." + +msgid "manager.series.noneCreated" +msgstr "No se ha creado ninguna colección." + +msgid "manager.series.existingUsers" +msgstr "Usuarios existentes" + +msgid "manager.series.seriesTitle" +msgstr "Título de la colección" + +msgid "manager.series.restricted" +msgstr "No permitir que los autores/as envíen directamente a esta serie." + +msgid "manager.payment.generalOptions" +msgstr "Opciones generales" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Se han habilitado los pagos para esta publicación. Tenga en cuenta que los " +"usuarios/as deberán iniciar la sesión para hacer los pagos." + +msgid "manager.payment.success" +msgstr "La configuración de pago ha sido actualizada." + +msgid "manager.settings" +msgstr "Preferéncias" + +msgid "manager.settings.pressSettings" +msgstr "Ajustes editorial" + +msgid "manager.settings.press" +msgstr "Editorial" + +msgid "manager.settings.publisher.identity" +msgstr "Identidad de la editorial" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Estos campos son obligatorios para publicar metadatos ONIX válidos." + +msgid "manager.settings.publisher" +msgstr "Nombre sello editorial" + +msgid "manager.settings.location" +msgstr "Localización geográfica" + +msgid "manager.settings.publisherCode" +msgstr "Código sello editorial" + +msgid "manager.settings.publisherCodeType" +msgstr "Tipo de código de la editorial" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Este no es un tipo de código de editorial válido." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Todos los ajustes específicos del proceso de distribución (notificación, " +"indización, archivado, pago, herramientas de lectura)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Descargas del archivo de la monografía" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Vista preliminar del resumen de la monografía" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Resumen y descargas de la monografía" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Principales vistas preliminares de la serie" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Principales vistas preliminares de la publicación" + +msgid "manager.tools" +msgstr "Herramientas" + +msgid "manager.tools.importExport" +msgstr "" +"Todas las herramientas específicas para importar y exportar datos " +"(publicaciones, monografías, usuarios/as)" + +msgid "manager.tools.statistics" +msgstr "" +"Herramientas para generar informes relacionados con estadísticas de uso " +"(visualización de páginas de índice de catálogo, visualización de páginas de " +"resumen de monografías, descargas de archivos de monografías)" + +msgid "manager.users.availableRoles" +msgstr "Funciones disponibles" + +msgid "manager.users.currentRoles" +msgstr "Funciones actuales" + +msgid "manager.users.selectRole" +msgstr "Seleccionar función" + +msgid "manager.people.allEnrolledUsers" +msgstr "Usuarios/as inscritos en esta publicación" + +msgid "manager.people.allPresses" +msgstr "Todas las editoriales" + +msgid "manager.people.allSiteUsers" +msgstr "Inscribir a un usuario de este sitio en esta editorial" + +msgid "manager.people.allUsers" +msgstr "Todos los usuarios inscritos" + +msgid "manager.people.confirmRemove" +msgstr "" +"¿Desea eliminar al usuario/a de la publicación? Esta acción eliminará al " +"usuario/a de todos los roles dentro de la publicación." + +msgid "manager.people.enrollExistingUser" +msgstr "Inscribir a un usuario existente" + +msgid "manager.people.enrollSyncPress" +msgstr "Con editorial" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Seleccione un usuario/a para incorporarlo a otra cuenta de usuario/a (p.ej., " +"cuando alguien tiene dos cuentas de usuario/a). La primera cuenta " +"seleccionada se borrará y sus envíos, encargos, etc. serán atribuidos a la " +"segunda cuenta." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Selecciona a un usuario al que atribuirle la autoría, encargos de edición y " +"demás del usuario anterior." + +msgid "manager.people.syncUserDescription" +msgstr "" +"La sincronización de la inscripción registrará a todos los usuarios/as " +"inscritos previamente en un rol específico de dicha publicación en el mismo " +"rol de esta publicación. La función permite la sincronización entre " +"publicaciones de un grupo común de usuarios/as (por ejemplo revisores/as)." + +msgid "manager.people.confirmDisable" +msgstr "" +"¿Deshabilitar al usuario/a? Esto evitará que el usuario/a se registre en el " +"sistema.\n" +"\n" +"Podrá ofrecer una razón al usuario/a para deshabilitar su cuenta." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"No tiene derechos administrativos sobre este usuario/a. Esto puede deberse " +"a:\n" +"\t\t
        \n" +"\t\t\t
      • El usuario/a es el administrador/a del sitio
      • \n" +"\t\t\t
      • El usuario/a está activo en publicaciones que usted no gestiona\n" +"\t\t
      \n" +"\t\tEsta tarea la debe llevar a cabo el administrador/a del sitio.\n" +"\t" + +msgid "manager.system" +msgstr "Ajustes del sistema" + +msgid "manager.system.archiving" +msgstr "Archivado" + +msgid "manager.system.reviewForms" +msgstr "Formularios de revisión" + +msgid "manager.system.readingTools" +msgstr "Herramientas de lectura" + +msgid "manager.system.payments" +msgstr "Pagos" + +msgid "user.authorization.pluginLevel" +msgstr "No tiene suficientes privilegios para gestionar este módulo." + +msgid "manager.pressManagement" +msgstr "Gestión editorial" + +msgid "manager.setup" +msgstr "Configuración" + +msgid "manager.setup.aboutItemContent" +msgstr "Contenido" + +msgid "manager.setup.addAboutItem" +msgstr "Añadir Acerca del elemento" + +msgid "manager.setup.addChecklistItem" +msgstr "Añadir elemento de la lista de comprobación" + +msgid "manager.setup.addItem" +msgstr "Agregar ítem" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Añadir un elemento a \"Acerca de la editorial\"" + +msgid "manager.setup.addNavItem" +msgstr "Agregar ítem" + +msgid "manager.setup.addSponsor" +msgstr "Añadir organización patrocinadora" + +msgid "manager.setup.announcements" +msgstr "Anuncios" + +msgid "manager.setup.announcements.success" +msgstr "La configuración de los avisos ha sido actualizada." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Los avisos se publican para informar a los lectores/as de las noticias y los " +"eventos de la publicación. Los avisos publicados aparecerán en la Página de " +"avisos." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Información adicional" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Introduce la información adicional que quieres que se muestre a los lectores " +"en la Página de anuncios." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Aparecerá en Acerca de la editorial) " + +msgid "manager.setup.contextAbout" +msgstr "Acerca de la publicación" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Incluya toda la información sobre su editorial que pueda ser de interés para " +"lectores/as, autores/as o revisores/as. Esto podría incluir su política de " +"acceso abierto, el enfoque y el alcance del mismo, la divulgación del " +"patrocinio y la historia de la editorial." + +msgid "manager.setup.contextSummary" +msgstr "Resumen de la publicación" + +msgid "manager.setup.copyediting" +msgstr "Correctores/as de originales" + +msgid "manager.setup.copyeditInstructions" +msgstr "Instrucciones para la corrección de originales" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Las instrucciones de corrección estarán disponibles para correctores/as, " +"autores/as y editores/as de sección en la fase Edición del envío. A " +"continuación se detallan unas instrucciones por defecto para HTML, que el " +"jefe/a editorial puede modificar o reemplazar en cualquier momento (en HTML " +"o en texto plano)." + +msgid "manager.setup.copyrightNotice" +msgstr "Aviso derechos de autor" + +msgid "manager.setup.coverage" +msgstr "Cobertura" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Altura máxima de la imagen de portada" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Ancho máximo de la imagen de portada" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Las imágenes se reducirán cuando sean más grandes que este tamaño, pero " +"nunca se inflarán ni se estirarán para ajustarse a estas dimensiones." + +msgid "manager.setup.customizingTheLook" +msgstr "Paso 5. Personalizar Vista y Estilo" + +msgid "manager.setup.customTags" +msgstr "Etiquetas personalizadas" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Las etiquetas HTML personalizadas de la cabecera pueden insertarse en la " +"cabecera de cada página (p.ej. etiquetas META)." + +msgid "manager.setup.details" +msgstr "Detalles" + +msgid "manager.setup.details.description" +msgstr "" +"Nombre de la editorial, contactos, patrocinadores y motores de búsqueda." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"El gestor editorial registra a todos los usuarios, aunque solo los " +"coordinadores o coordinadores de sección pueden registrar a los revisores." + +msgid "manager.setup.discipline" +msgstr "Disciplinas y subdisciplinas académicas" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"De utilidad cuando la editorial traspasa las fronteras entre disciplinas y/o " +"los autores presentan elementos multidisciplinarios." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(P.ej., historia; educación; sociología; psicología; estudios culutrales; " +"derecho)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Proporciona ejemplos de disciplinas académicas relevantes para esta editorial" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "" +"Añade la tabla de contenidos para la monografía actual (si disponible)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Contenido de la página de inicio" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Mostrar los libros destacados en la página de inicio" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Libros destacados" + +msgid "manager.setup.displayInSpotlight" +msgstr "Mostrar los libros como destacados en la página de inicio" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Foco" + +msgid "manager.setup.displayNewReleases" +msgstr "Mostrar novedades en la página de inicio" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Nuevos lanzamientos" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Permita que se asignen identificadores de objetos digitales (DOI) al trabajo " +"publicado por esta editorial." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Seleccionar los tipos de trabajos publicados a los que se les deben asignar " +"DOIs en esta editorial. La mayoría de las editoriales asignan DOIs a " +"monografías/capítulos, pero podría querer asignarlos a todos los elementos " +"publicados." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Usar los patrones predeterminados:
      %p.%m para monografías
      %p.%m.c%c para capítulos
      %p.%m.%f para formatos de publicación
      %p.%m.%f.%s para archivos." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "Al alcanzar la fase de corrección de estilo" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Formato / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Decisión del coordinador" + +msgid "manager.setup.emailBounceAddress" +msgstr "Remitente" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Cualquier correo electrónico que no pueda entregarse generará un mensaje de " +"error a esta dirección." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Para enviar correos electrónicos que no se pueden entregar a una dirección " +"rechazada, el administrador del sitio debe habilitar la opción " +"allow_envelope_sender en el archivo de configuración del sitio. " +"Puede ser necesaria la configuración del servidor, como se indica en la " +"documentación de OMP." + +msgid "manager.setup.emails" +msgstr "Identificación de correo electrónico" + +msgid "manager.setup.emailSignature" +msgstr "Firma" + +msgid "manager.setup.emailSignature.description" +msgstr "" +"Los correos electrónicos enviados automáticamente por el sistema en nombre " +"de la editorial, incluirán la siguiente firma." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Habilitar avisos" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Se pueden publicar avisos para informar a los lectores sobre noticias y " +"eventos. Los avisos publicados aparecerán en la página de avisos." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Mostrar en la página principal" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Número de avisos que mostrar en la página de inicio. Dejelo vacío para no " +"mostrar ninguno." + +msgid "manager.setup.enablePressInstructions" +msgstr "Habilitar que esta editorial aparezca públicamente en el sitio" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Los identificadores personalizados se usarán para identificar los elementos " +"publicados." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Los identificadores personalizados se usarán para identificar galeradas (p." +"ej. ficheros HTML o PDF) para elementos publicados." + +msgid "manager.setup.enableUserRegistration" +msgstr "Los visitantes pueden crear una cuenta de usuario/a en la editorial." + +msgid "manager.setup.focusAndScope" +msgstr "Enfoque y alcance de la editorial" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Informe a los autores/as, lectores/as y bibliotecarios/as de la temática de " +"las monografías y de otros elementos que publicará la editorial." + +msgid "manager.setup.focusScope" +msgstr "Enfoque y alcance" + +msgid "manager.setup.focusScopeDescription" +msgstr "EJEMPLO DE DATOS HTML" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Para que los autores indicen su obra" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP cumple el protocolo sobre recopilación de metadatos Iniciativa de archivos abiertos, " +"que es un estándar emergente que proporciona acceso bien indexado a los " +"recursos electrónicos de investigación a escala global. Los autores/as " +"usarán una plantilla similar para proporcionar metadatos a su envío. El jefe/" +"a editorial deberá seleccionar las categorías para indexar y presentar a los " +"autores/as ejemplos relevantes para ayudarles a indexar su trabajo, " +"separando términos con punto y coma (p. ej. término1; término2). Las " +"entradas deben introducirse como ejemplos utilizando \"P. ej.\" o \"Por " +"ejemplo\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Se necesita el correo electrónico del contacto principal." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Se necesita el nombre del contacto principal." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Se necesita el número de revisores por propuesta." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Se necesita una dirección de correo alternativa." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Se necesita un nombre alternativo." + +msgid "manager.setup.generalInformation" +msgstr "Información general" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Paso 1. Detalles" + +msgid "manager.setup.guidelines" +msgstr "Directrices" + +msgid "manager.setup.preparingWorkflow" +msgstr "Paso 3. Preparando el flujo de trabajo" + +msgid "manager.setup.identity" +msgstr "Identidad del medio" + +msgid "manager.setup.information" +msgstr "Información" + +msgid "manager.setup.information.description" +msgstr "" +"En la sección \"Información\" de la barra lateral se encuentran disponibles " +"unas breves descripciones de la editorial para bibliotecarios y posibles " +"autores y lectores." + +msgid "manager.setup.information.forAuthors" +msgstr "Para autores" + +msgid "manager.setup.information.forLibrarians" +msgstr "Para bibliotecarios" + +msgid "manager.setup.information.forReaders" +msgstr "Para lectoras/es" + +msgid "manager.setup.information.success" +msgstr "La información de este medio fue actualizado." + +msgid "manager.setup.institution" +msgstr "Institución" + +msgid "manager.setup.itemsPerPage" +msgstr "Elementos por página" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Limite el número de elementos (por ejemplo, envíos, usuarios o tareas de " +"edición) a mostrar en una lista antes de mostrar elementos sucesivos en otra " +"página." + +msgid "manager.setup.keyInfo" +msgstr "Información clave" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Proporcione una breve descripción de su medio e identifique a los editores, " +"directores generales y otros miembros de su equipo editorial." + +msgid "manager.setup.labelName" +msgstr "Nombre de la etiqueta" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Maquetadores" + +msgid "manager.setup.layoutInstructions" +msgstr "Instrucciones de maquetación" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Puede prepara las instrucciones de maquetación para dar formato a los " +"elementos que la editorial publica e introducirlos a continuación en HTML o " +"en texto plano. Estas instrucciones estarán disponibles para el maquetador/a " +"y para el editor/a de sección en la página de edición de cada envío. (Tenga " +"en cuenta que no se proporcionan instrucciones predefinidas porque cada " +"publicación puede utilizar sus propios formatos de archivo, estándares " +"bibliográficos, hojas de estilo, etc.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Plantillas de maquetació" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Se pueden subir las plantillas para que aparezcan en Maquetación para cada " +"uno de los formatos estándares publicados en la publicación (p. ej. " +"monografía, reseña de libro, etc.) usando cualquier formato de archivo (p. " +"ej. pdf., doc., etc.) con anotaciones que especifiquen la fuente, el tamaño, " +"los márgenes, etc. que sirvan como guía para los maquetadores/as y los " +"correctores/as de pruebas." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Fichero de plantilla" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Título" + +msgid "manager.setup.lists" +msgstr "Listas" + +msgid "manager.setup.lists.success" +msgstr "Los ajustes de lista se han actualizado." + +msgid "manager.setup.look" +msgstr "Vista y estilo" + +msgid "manager.setup.look.description" +msgstr "" +"Cabecera de la página principal, contenido, cabecera de la editorial, pie de " +"página, barra de navegación y hoja de estilos." + +msgid "manager.setup.settings" +msgstr "Preferéncias" + +msgid "manager.setup.management.description" +msgstr "" +"Acceso y seguridad, planificación, avisos, corrección de originales, " +"maquetación y revisión." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Gestión de los pasos básicos de la editorial" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Gestión y configuración de la publicación" + +msgid "manager.setup.managingThePress" +msgstr "Paso 4. Gestionar la configuración" + +msgid "manager.setup.masthead.success" +msgstr "Los detalles de la cabecera de este medio se han actualizado." + +msgid "manager.setup.noImageFileUploaded" +msgstr "No se cargó ningún archivo de imagen." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "No se cargó ninguna hoja de estilo." + +msgid "manager.setup.note" +msgstr "Nota" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Cuando se quiera enviar un correo electrónico de notificación para el autor/" +"a, incluya las direcciones de correo de todos los coautores/as, en casos en " +"los que participan varios autores/as, en lugar de añadir únicamente la del " +"usuario/a que realiza el envío." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"El editor/a o editor/a de sección responsable del envío asumirá la tarea de " +"corrección de originales." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"El editor/a o editor/a de sección responsable del envío se encargará de la " +"preparación de los archivos en formato HTML, PDF, etc." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"El editor/a o editor/a de sección responsable del envío se encargará de la " +"inspección de las galeradas." + +msgid "manager.setup.numPageLinks" +msgstr "Enlaces de la página" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Limitar el número de enlaces que se muestran en las páginas sucesivas en una " +"lista." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Acceder al contenido de la editorial" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN en línea" + +msgid "manager.setup.policies" +msgstr "Políticas" + +msgid "manager.setup.policies.description" +msgstr "" +"Objeto de la revista, proceso de evaluación por pares, secciones, " +"privacidad, seguridad y otros." + +msgid "manager.setup.privacyStatement.success" +msgstr "La declaración de privacidad ha sido actualizada." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Desde esta página se pueden configurar varios componentes del aspecto de la " +"publicación, incluyendo elementos del encabezado y pie de página, el estilo " +"y tema de la publicación y cómo se presentan las listas de información a los " +"usuarios/as." + +msgid "manager.setup.pressDescription" +msgstr "Descripción de la editorial" + +msgid "manager.setup.pressDescription.description" +msgstr "" +"Incluya aquí una descripción general de la publicación. La descripción " +"estará disponible en la página de inicio de la publicación." + +msgid "manager.setup.aboutPress" +msgstr "Sobre la editorial" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Incluya cualquier información sobre su editorial, la cual pueda ser de " +"interés para lectores, autores y revisores. Esto podría incluir su política " +"de acceso abierto, el enfoque y el alcance de la editorial, el aviso de " +"copyright, la divulgación de patrocinio, el historial de la editorial y una " +"declaración de privacidad." + +msgid "manager.setup.pressArchiving" +msgstr "Archivos de la publicación" + +msgid "manager.setup.homepageContent" +msgstr "Contenido de la página de inicio de la publicación" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"La página de inicio de la publicación consta de enlaces de navegación por " +"defecto. Se pueden añadir más contenidos a la página de inicio utilizando " +"una de las siguientes opciones, que aparecen en el orden descrito." + +msgid "manager.setup.pressHomepageContent" +msgstr "Contenido de la página de inicio de la publicación" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"La página de inicio de la publicación consta de enlaces de navegación por " +"defecto. Se pueden añadir más contenidos a la página de inicio utilizando " +"una de las siguientes opciones, que aparecen en el orden descrito." + +msgid "manager.setup.contextInitials" +msgstr "Iniciales de la editorial" + +msgid "manager.setup.selectCountry" +msgstr "" +"Seleccione el país donde se ubica la editorial, o el país de la dirección " +"postal de la editorial o del editor/a." + +msgid "manager.setup.layout" +msgstr "Maquetación de la publicación" + +msgid "manager.setup.pageHeader" +msgstr "Encabezado de la página de la publicación" + +msgid "manager.setup.pageHeaderDescription" +msgstr "Configuración de la cabecera de la página" + +msgid "manager.setup.pressPolicies" +msgstr "Paso 2. Políticas de la publicación" + +msgid "manager.setup.pressSetup" +msgstr "Configuración de la publicación" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Se actualizó la configuración de la publicación." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Formato de hoja de estilo no válido. El formato aceptado es .css." + +msgid "manager.setup.pressTheme" +msgstr "Tema de la publicación" + +msgid "manager.setup.pressThumbnail" +msgstr "Miniatura de la editorial" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Un pequeño logotipo o representación de la editorial que pueda utilizarse en " +"listados de editoriales." + +msgid "manager.setup.contextTitle" +msgstr "Nombre de la publicación" + +msgid "manager.setup.printIssn" +msgstr "Imprimir ISSN" + +msgid "manager.setup.proofingInstructions" +msgstr "Instrucciones de corrección de pruebas" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Las instrucciones de correcciones de pruebas estarán disponibles en la fase " +"de edición del envío para correctores/as de pruebas, autores/as y editores/" +"as de sección A continuación se detallan unas instrucciones por defecto en " +"HTML que el jefe/a editorial puede editar o reemplazar en cualquier momento " +"(en HTML o texto plano)." + +msgid "manager.setup.proofreading" +msgstr "Correctores de pruebas" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Proporcione instrucciones a los maquetadores/as." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Los elementos de la publicación se pueden publicar de forma colectiva, como " +"parte de una monografía con su propia tabla de contenidos. Además, los " +"elementos individuales pueden publicarse en cuanto estén preparados, " +"añadiéndolos a la tabla de contenidos \"actual\". En Acerca de la " +"publicación proporcione a los lectores/as información sobre el sistema que " +"la editorial usará y su frecuencia estimada de publicación." + +msgid "manager.setup.publisher" +msgstr "Editor" + +msgid "manager.setup.publisherDescription" +msgstr "" +"El nombre de la organización que publica la publicación aparecerá en Acerca " +"de la publicación." + +msgid "manager.setup.referenceLinking" +msgstr "Enlaces de referencia" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Instrucciones de maquetación para los enlaces de referencia" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Los usuarios/as deben registrarse e iniciar sesión para ver el contenido de " +"acceso abierto." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Los usuarios/as deben registrarse e iniciar sesión para ver el sitio de la " +"publicación." + +msgid "manager.setup.reviewGuidelines" +msgstr "Review Guidelines" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Las directrices de revisión externa proporcionarán a los revisores/as " +"externos criterios para juzgar la adecuación de un envío para su publicación " +"en la editorial y podrán incluir instrucciones especiales para conseguir una " +"revisión eficaz y útil. Cuando se lleva a cabo la revisión, se les entrega a " +"los revisores/as externos dos cuadros de texto abiertos, el primero \"para " +"autor/a y editor/a\" y el segundo \"para editor/a\". Además el jefe/a " +"editorial puede crear una evaluación por pares en Formularios de revisión. " +"En todos los casos los editores/as podrán incluir las revisiones " +"correspondientes a cada autor/a." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Directrices de revisión interna" + +msgid "manager.setup.reviewOptions" +msgstr "Opciones de revisión" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Recordatorios de correo electrónico automáticos" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Para activar estas opciones, el administrador/a del sitio debe habilitar la " +"opción scheduled_tasks en el archivo de configuración de OMP. Será " +"necesario modificar la configuración del servidor para que sea compatible " +"con esta funcionalidad (que puede no estar disponible en todos los " +"servidores), como se indica en la documentación de OMP." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Los editores/as pueden calificar a los revisores/as en una escala de cinco " +"puntos después de cada revisión." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Restringir el acceso al archivo" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Permitir que los revisores/as tengan acceso a los archivos de envío sólo " +"después de que éstos/as hayan aceptado la revisión." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Acceso para los revisores/as" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Acceso del revisor/a con un clic" + +#, fuzzy +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"A los revisores se les puede enviar un enlace seguro en la invitación por " +"correo electrónico, que les permitirá acceder a la revisión sin iniciar " +"sesión. El acceso a otras páginas requiere que inicien sesión." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" +"Incluir un enlace seguro en la invitación por correo electrónico a los " +"revisores." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Calificación de los revisores/as" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Recordatorios para los revisores/as" + +msgid "manager.setup.reviewPolicy" +msgstr "Política de evaluación" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Proporcione una breve descripción (50-300 caracteres) de la publicación que " +"los motores de búsqueda puedan mostrar cuando listen la publicación en los " +"resultados de búsqueda." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Indización en buscadores" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Ayude a motores de búsqueda como Google a descubrir y mostrar su sitio. Por " +"ello le animamos a enviar su mapa del sitio." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Los ajustes de indexación del motor de búsqueda se han actualizado." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Secciones y editores/as de secciones" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Si no se han añadido secciones, los elementos se envían por defecto a la " +"sección Monografías.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Para crear o modificar secciones de la publicación (p. ej. monografías, " +"reseñas de libros, etc.) vaya a la sección Gestión.

      Los autores/" +"as que envíen elementos a la publicación designarán..." + +msgid "manager.setup.securitySettings" +msgstr "Configuración de acceso y seguridad" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Otras opciones relacionadas con la seguridad y el acceso se pueden " +"configurar desde la página de Acceso y seguridad." + +msgid "manager.setup.selectEditorDescription" +msgstr "El editor/a lo verá durante el proceso editorial." + +msgid "manager.setup.selectSectionDescription" +msgstr "La serie para la cual se considerará el elemento." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Mostrar siempre los enlaces de galeradas e indicar que el acceso es " +"restringido." + +msgid "manager.setup.siteAccess.view" +msgstr "Acceso al sitio" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Ver contenido de la monografía" + +msgid "manager.setup.stepsToPressSite" +msgstr "Cinco pasos para configurar el sitio web de una publicación" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(p. ej., fotosíntesis; agujeros negros; Teorema de los cuatro colores; " +"Teoría de Bayes)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Palabras clave" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Proporcione ejemplos de palabras clave y temas que sirvan de guía para los " +"autores/as" + +msgid "manager.setup.submissionGuidelines" +msgstr "Indicaciones para el envío" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "La lista de comprobación de elementos es obligatoria." + +msgid "manager.setup.workflow" +msgstr "Flujo de trabajo" + +msgid "manager.setup.submissions.description" +msgstr "" +"Indicaciones para los autores/as, derechos de autor/a e indexación (incluido " +"el registro)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(p. ej., investigación histórica; casi experimental; análisis literario; " +"encuesta/entrevista)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Tipo (método/enfoque)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Proporcione ejemplos de tipos de investigación, métodos y enfoques para este " +"campo" + +msgid "manager.setup.useCopyeditors" +msgstr "Asignar un corrector/a de originales para cada envío." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "La editorial utilizará un consejo editorial/de revisión." + +msgid "manager.setup.useImageTitle" +msgstr "Imagen del título" + +msgid "manager.setup.useStyleSheet" +msgstr "Hoja de estilo de la publicación" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Asignar al maquetista la preparación de los archivos en formato HTML, PDF, " +"etc., para su posterior publicación en la red." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Se asignará a un corrector/a de pruebas la inspección (junto con los autores/" +"as) de las galeradas antes de la publicación." + +msgid "manager.setup.userRegistration" +msgstr "Registro de usuarios/as" + +msgid "manager.setup.useTextTitle" +msgstr "Título en formato de texto" + +msgid "manager.setup.volumePerYear" +msgstr "Volúmenes por año" + +msgid "manager.setup.publicationFormat.code" +msgstr "Formato" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Especifique un formato." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Especifique un nombre para el formato." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "¿Es un formato físico (no digital)?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"No se puede eliminar el formato de publicación porque se está utilizando en " +"una monografía de su publicación." + +msgid "manager.setup.newPublicationFormat" +msgstr "Nuevo formato de publicación" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Para crear un formato de publicación nuevo, rellene el formulario siguiente " +"y haga clic en el botón \"Crear\"." + +msgid "manager.setup.genresDescription" +msgstr "" +"Los géneros se utilizan para nombrar archivos y se presentan en un menú " +"desplegable en el momento de subir los archivos. Los géneros designados como " +"## permiten que el usuario/a asocie el archivo con el libro entero 99Z o con " +"un capítulo concreto por número (p. ej., 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"La editorial no acepta envíos en este momento. Visite los ajustes del flujo " +"editorial para habilitar los envíos." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Impedir que los usuarios/as envíen nuevos artículos a la editorial. Los " +"envíos se pueden deshabilitar individualmente para cada serie editorial en " +"la página de ajustes de series editoriales." + +msgid "manager.setup.genres" +msgstr "Géneros" + +msgid "manager.setup.newGenre" +msgstr "Nuevo género de monografía" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Para crear un género nuevo, rellene el formulario siguiente y haga clic en " +"el botón \"Crear\"." + +msgid "manager.setup.deleteSelected" +msgstr "Eliminar selección" + +msgid "manager.setup.restoreDefaults" +msgstr "Restaurar la configuración por defecto" + +msgid "manager.setup.prospectus" +msgstr "Guía del prospecto" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"La guía del prospecto es un documento preparado por la editorial que ayuda " +"al autor/a a describir los materiales enviados de forma que permita a una " +"editorial determinar el valor del envío. Un prospecto puede incluir muchos " +"elementos, desde potencial de mercado hasta valor teórico; en cualquier " +"caso, una editorial debe crear una guía de prospecto que complemente su " +"agenda de publicación." + +msgid "manager.setup.submitToCategories" +msgstr "Permitir envíos de categorías" + +msgid "manager.setup.submitToSeries" +msgstr "Permitir envíos de series" + +msgid "manager.setup.issnDescription" +msgstr "" +"El ISSN (número de serie estándar internacional) es un número de ocho " +"dígitos que identifica las publicaciones periódicas, incluyendo las series " +"electrónicas. Lo gestiona una red internacional de centros nacionales " +"coordinada por un centro internacional cuya sede se encuentra en París y " +"está respaldada por la Unesco y el Gobierno francés. El número se puede " +"obtener desde la página " +"web del ISSN. Esto puede hacerse en cualquier momento de la ejecución de " +"la publicación." + +msgid "manager.setup.currentFormats" +msgstr "Formatos actuales" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Categorías y series" + +msgid "manager.setup.categories.description" +msgstr "" +"Puede crear una lista de categorías para organizar sus publicaciones. Las " +"categorías son grupos de libros de la misma materia, por ejemplo, economía, " +"literatura, poesía, etc. Las categorías pueden contener subcategorías: por " +"ejemplo, la categoría Economía puede incluir las subcategorías Microeconomía " +"y Macroeconomía. Los visitantes podrán buscar y explorar la publicación por " +"categorías." + +msgid "manager.setup.series.description" +msgstr "" +"Puede crear un número indefinido de series para organizar sus publicaciones. " +"Una serie representa un conjunto de libros dedicado a un tema propuesto, " +"normalmente por uno o varios miembros de la facultad. Los visitantes podrán " +"buscar y explorar la publicación por series." + +msgid "manager.setup.reviewForms" +msgstr "Formularios de revisión" + +msgid "manager.setup.roleType" +msgstr "Tipo de rol" + +msgid "manager.setup.authorRoles" +msgstr "Roles del autor/a" + +msgid "manager.setup.managerialRoles" +msgstr "Roles de gestión" + +msgid "manager.setup.availableRoles" +msgstr "Funciones disponibles" + +msgid "manager.setup.currentRoles" +msgstr "Funciones actuales" + +msgid "manager.setup.internalReviewRoles" +msgstr "Roles de revisión interna" + +msgid "manager.setup.masthead" +msgstr "Equipo editorial" + +msgid "manager.setup.editorialTeam" +msgstr "Equipo editorial" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"El equipo editorial debe contener una lista de editores/as, directores/as de " +"gestión y otros cargos asociados a la editorial. La información que " +"introduzca aquí aparecerá en Acerca de la publicación." + +msgid "manager.setup.files" +msgstr "Archivos" + +msgid "manager.setup.productionTemplates" +msgstr "Plantillas de producción" + +msgid "manager.files.note" +msgstr "" +"Nota: El explorador de archivos es una función avanzada que permite " +"visualizar y manipular directamente archivos y directorios asociados a una " +"publicación." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

      Notificaciones sobre derechos de autor/a de Creative Commons

      \n" +"

      Política para publicaciones que ofrecen acceso abierto

      Los autores/" +"as que publiquen en la editorial aceptan los siguientes términos:
        \n" +"\t
      1. Los autores/as poseen derechos de autor/a y conceden a la editorial el " +"derecho de la primera publicación junto con la obra autorizada conforme a " +"una Licencia de reconocimiento de Creative Commons que permite a terceras " +"personas publicar la obra con una nota de reconocimiento en la publicación " +"sobre la autoría de la obra y la publicación inicial.
      2. \n" +"\t
      3. Los autores/as pueden acordar otra serie contractual independiente " +"para una distribución no exclusiva de la versión de la obra publicada por la " +"editorial (p. ej. subirla a un repositorio internacional o publicarla en un " +"libro), con una nota de reconocimientos de la publicación inicial en la " +"editorial.
      4. \n" +"\t
      5. Los autores/as pueden publicar su obra en la red (p. ej. en " +"repositorios institucionales o en su página web) antes de y durante el " +"proceso de envío, ya que puede facilitar intercambios productivos, así como " +"una citación más rápida y más amplia de la obra publicada (Véase El " +"efecto del acceso abierto).
      6. \n" +"
      \n" +"\n" +"

      Política para publicaciones que ofrecen acceso abierto

      Los autores/" +"as que publiquen en la editorial aceptan los siguientes términos:
        \n" +"\t
      1. Los autores/as poseen derechos de autor/a y conceden a la editorial el " +"derecho de la primera publicación junto con la obra [ESPECIFIQUE PERIODO DE " +"TIEMPO] tras haberse publicado debidamente autorizada conforme a una Licencia de reconocimiento de Creative Commons que permite a terceras " +"personas publicar la obra con una nota de reconocimiento en la publicación " +"sobre la autoría de la obra y la publicación inicial.<segmento 1562>\n" +"\t
      2. Los autores/as pueden acordar otra serie contractual independiente " +"para una distribución no exclusiva de la versión de la obra publicada por la " +"editorial (p. ej. subirla a un repositorio internacional o publicarla en un " +"libro), con una nota de reconocimientos de la publicación inicial en la " +"editorial.
      3. \n" +"\t
      4. Los autores/as pueden publicar su obra en la red (p. ej. en " +"repositorios institucionales o en su página web) antes de y durante el " +"proceso de envío, ya que puede facilitar intercambios productivos, así como " +"una citación más rápida y más amplia de la obra publicada (Véase El " +"efecto del acceso abierto).
      5. \n" +"
      " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Pasos: Cola de envíos > Revisión de envíos > Edición de envíos > " +"Tabla de contenidos.

      \n" +"Seleccione un modelo para manejar estos aspectos del proceso editorial. " +"(Para designar a un editor/a de gestión y a un editor/a de serie, vaya al " +"apartado Editores/as en Gestión de la publicación.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

      Para permitir a los lectores/as buscar versiones en línea de la obra " +"citada por un autor/a, dispone de las siguientes opciones.

      \n" +"\n" +"
        \n" +"\t
      1. Añadir una herramienta de lectura

        El jefe/a " +"editorial puede añadir \"Buscar referencias\" a las herramientas de lectura " +"que acompañan a los elementos publicados, lo que permite a los lectores/as " +"pegar el título de una referencia y buscarlo en las bases de datos " +"académicas preseleccionadas para dicha obra.

      2. \n" +"\t
      3. Enlaces incorporados en las referencias

        El " +"maquetador/a puede añadir un enlace a las referencias que pueden consultarse " +"en línea usando las siguiente instrucciones (que se pueden editar).

        \n" +"
      " + +msgid "manager.publication.library" +msgstr "Biblioteca de la publicación" + +msgid "manager.setup.resetPermissions" +msgstr "Reinicia los permisos de monografía" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"¿Seguro que desea reiniciar los datos de permisos ya asociados a las " +"monografías?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"La declaración de derechos de autor y la información de licencia estarán " +"ligadas permanentemente al contenido publicado, lo que garantiza que estos " +"datos no cambiarán en el caso de producirse un cambio en las políticas de la " +"editorial para nuevos envíos. Para reiniciar la información sobre permisos " +"almacenada y todavía ligada al contenido publicado, utilice el botón " +"siguiente." + +msgid "manager.setup.resetPermissions.success" +msgstr "Los permisos de la monografía se restablecieron correctamente." + +msgid "grid.genres.title.short" +msgstr "Componentes" + +msgid "grid.genres.title" +msgstr "Componentes de la monografía" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Enviar una copia al contacto principal, identificado en el paso 1 de la " +"configuración." + +msgid "grid.series.pathAlphaNumeric" +msgstr "La ruta de las series solo admite letras y números." + +msgid "grid.series.pathExists" +msgstr "La ruta de la serie ya existe. Introduzca una ruta única." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Seleccionar Series" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Seleccione la serie a la que desea vincular este elemento del menú." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Seleccionar categoría" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" +"Seleccione la categoría a la que desea vincular este elemento del menú." + +msgid "grid.series.urlWillBe" +msgstr "La URL de las series, será: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "Estadísticas de la editorial" + +msgid "stats.context.tooltip.text" +msgstr "" +"Número de visitantes que han visto la página de índice de la editorial y el " +"catálogo." + +msgid "stats.context.tooltip.label" +msgstr "Acerca de las estadísticas de la editorial" + +msgid "stats.context.downloadReport.description" +msgstr "" +"Descargar una hoja de cálculo en formato CSV/Excel con estadísticas de uso " +"de esta editorial que coincidan con los siguientes parámetros." + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" +"El número de vistas de la página de índice de la editorial y el catálogo." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Descargas en la editorial" + +msgid "stats.publications.downloadReport.description" +msgstr "" +"Descargar una hoja de cálculo en formato CSV/Excel con estadísticas de uso " +"de las monografías que coincidan con los siguientes parámetros." + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Descargas de monografías" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" +"El número de vistas de resumen y descargas de archivos para cada monografía." + +msgid "stats.publicationStats" +msgstr "Estadísticas de la monografía" + +msgid "stats.publications.details" +msgstr "Detalles de la monografía" + +msgid "stats.publications.none" +msgstr "" +"No se encontraron monografías con estadísticas de uso que coincidan con " +"estos parámetros." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Vistas totales del catálogo por fecha" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Vistas totales de archivos por fecha" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} de {$total} monografías" + +msgid "stats.publications.abstracts" +msgstr "Registros del catálogo" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "No se ha seleccionado ningún objeto." + +msgid "plugins.importexport.common.error.validation" +msgstr "No se han podido convertir los objetos seleccionados." + +msgid "plugins.importexport.common.invalidXML" +msgstr "XML inválido:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Exportar envíos" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Enviar una copia del correo electrónico de agradecimiento por el envío al " +"contacto principal de la editorial." + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"No se ha definido el contacto principal de esta editorial. Puede " +"introducirlo en los ajustes de la editorial." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Los objetos especificados no se pueden encontrar." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "El usuario/a especificado, \"{$userName}\", no existe." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "El proceso ha fallado al analizar los formatos de publicación" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "El proceso ha fallado al analizar los capítulos" + +msgid "emailTemplate.variable.context.contextName" +msgstr "El nombre de la editorial" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "La URL a la página de inicio de la publicación" + +msgid "emailTemplate.variable.context.contactName" +msgstr "El nombre de contacto principal de la publicación" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "La firma para los correos electrónicos automatizados de la publicación" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "" +"La dirección de correo electrónico del contacto principal de la publicación" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "El nombre del tipo de pago" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "El monto del pago" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "La moneda del importe del pago, por ejemplo USD" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Nombre del sitio web cuando se aloja más de una publicación" + +msgid "mailable.validateEmailContext.name" +msgstr "Validar correo electrónico (registro en la editorial)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Este correo electrónico se envía automáticamente a un nuevo usuario/a cuando " +"se registra en la editorial y la configuración requiere que se valide la " +"dirección de correo electrónico." + +msgid "doi.displayName" +msgstr "Identificador de objeto digital (DOI)" + +msgid "doi.manager.displayName" +msgstr "DOI" + +msgid "doi.description" +msgstr "" +"Este módulo permite la asignación de identificadores de objetos digitales " +"(DOI) a monografías, capítulos, formatos de publicación y archivos en OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Configure el módulo DOI para poder gestionar y usar los elementos DOI en OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Seleccione los objetos publicados a los que desea asignar el Identificador " +"de objetos digitales (DOI):" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monografías" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Capítulos" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Formatos de publicación" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Archivos" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Prefijo DOI" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "El prefijo del DOI es obligatorio y debe respetar la forma 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Utilice el patrón introducido a continuación para generar sufijos DOI. " +"Utilice %p para las iniciales de la publicación, %m para el ID de " +"monografía, %c para el ID de capítulo, %f para el ID de formato de " +"publicación, %s para el ID de archivo y %x para \"identificador " +"personalizado\". " + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Por ejemplo, press%ppub%f puede crear un DOI como 10.1234/pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "para monografías" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "para capítulos" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "para formatos de publicación" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "para archivos" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Ingrese el patrón de sufijo DOI para monografías." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Ingrese el patrón de sufijo DOI para los capítulos." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "" +"Introduzca el modelo de sufijo del DOI para los formatos de publicación." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Ingrese el patrón de sufijo DOI para los archivos." + +msgid "doi.manager.settings.doiReassign" +msgstr "Asignar los DOI de nuevo" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Si cambia la configuración del DOI, los DOI que ya se han asignado no se " +"verán afectados. Una vez guardada la configuración del DOI, utilice este " +"botón para borrar todos los DOI existentes de modo que la nueva " +"configuración surta efecto con todos los objetos existentes." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "¿Seguro que desea eliminar todos los DOI existentes?" + +msgid "doi.editor.doi" +msgstr "Identificador de objeto digital (DOI)" + +msgid "doi.editor.doi.description" +msgstr "El DOI debe empezar con {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Asignar" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "monografía" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "capítulo" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "formato de publicación" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "archivo" + +msgid "doi.editor.customSuffixMissing" +msgstr "El DOI no se puede asignar porque falta el sufijo personalizado." + +msgid "doi.editor.missingParts" +msgstr "" +"No puede generar un DOI porque faltan datos en una o más partes del patrón " +"DOI." + +msgid "doi.editor.patternNotResolved" +msgstr "El DOI no se puede asignar porque contiene un patrón no resuelto." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Lo que ve es una vista previa del DOI. Seleccione la casilla de verificación " +"y guarde el formulario para asignar el DOI." + +msgid "doi.editor.assigned" +msgstr "El DOI es asignado a este {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"El sufijo del DOI suministrado ya se encuentra en uso en otro elemento " +"publicado. Introduzca un sufjo DOI único para cada elemento." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Limpiar" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "¿Seguro que desea eliminar este DOI?" + +msgid "doi.editor.assignDoi" +msgstr "Asignar el DOI {$pubId} a este {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "El DOI no se puede asignar porque falta el sufijo personalizado." + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"El DOI {$pubId} no puede ser asignado porque contiene un patrón no resuelto." + +msgid "doi.editor.assignDoi.assigned" +msgstr "El DOI {$pubId} ha sido asignado." + +msgid "doi.editor.missingPrefix" +msgstr "El DOI debe empezar con {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "El DOI para esta publicación será {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "No se ha asignado un DOI para esta publicación." + +msgid "doi.editor.preview.chapters" +msgstr "Capítulo: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Formato de publicación: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Archivo: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Elemento" + +msgid "doi.manager.submissionDois" +msgstr "DOI de monografías" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Este correo electrónico notifica al autor/a que su envío se está remitiendo " +"a la fase de revisión interna." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Este correo electrónico notifica al autor/a que su envío está siendo " +"rechazado antes de ser enviado a revisión, porque no cumple con los " +"requisitos de publicación de la editorial." + +msgid "manager.institutions.noContext" +msgstr "No se pudo encontrar la editorial de esta institución." + +msgid "manager.manageEmails.description" +msgstr "" +"Editar los mensajes enviados en correos electrónicos desde esta editorial." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Enviar a revisión interna" + +msgid "mailable.indexRequest.name" +msgstr "Índice requerido" + +msgid "mailable.indexComplete.name" +msgstr "Índice completado" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Nueva versión creada" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" +"Este correo electrónico notifica automáticamente a los editores/as asignados " +"cuando se ha creado una nueva versión del envío." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"Este correo electrónico se envía a los jefes/as editoriales cuando se " +"realiza un nuevo envío y no se han asignado cordinadores/as editoriales." + +#~ msgid "manager.languages.languageInstructions" +#~ msgstr "" +#~ "OMP estará disponible para los usuarios/as en cualquiera de los idiomas " +#~ "compatibles. Asímismo, OMP puede ejecutarse como un sistema multilingüe, " +#~ "permitiendo a los usuarios/as cambiar entre idiomas en cada página, e " +#~ "introducir algunos datos en otros idiomas.

      Si un idioma " +#~ "compatible con OMP no está en la siguiente lista, pida al administrador/a " +#~ "del sitio que instale el idioma desde la interfaz del administrador/a del " +#~ "sitio. Si desea más instrucciones sobre cómo añadir compatibilidad para " +#~ "nuevos idiomas, consulte la documentación de OMP." + +#~ msgid "manager.reviewForms" +#~ msgstr "Formularios de revisión" + +#~ msgid "manager.reviewForms.completed" +#~ msgstr "Completado" + +#~ msgid "manager.reviewForms.confirmDeletePublished" +#~ msgstr "Confirmar la eliminación del formulario de revisión publicado..." + +#~ msgid "manager.reviewForms.confirmDeleteUnpublished" +#~ msgstr "Confirmar la eliminación del formulario de revisión no publicado..." + +#~ msgid "manager.reviewForms.create" +#~ msgstr "Crear formulario de revisión" + +#~ msgid "manager.reviewForms.description" +#~ msgstr "Descripción e indicaciones" + +#~ msgid "manager.reviewForms.edit" +#~ msgstr "Formulario de revisión" + +#~ msgid "manager.reviewForms.form.titleRequired" +#~ msgstr "Se necesita un título para el formulario de revisión." + +#~ msgid "manager.reviewForms.inReview" +#~ msgstr "En revisión" + +#~ msgid "manager.reviewForms.list.description" +#~ msgstr "" +#~ "Los formularios de evaluación por pares creados aquí se presentarán a los " +#~ "revisores/as para que los completen, en lugar del formulario por defecto, " +#~ "que contiene dos cuadros de texto abiertos, el primero \"para el autor/a " +#~ "y el editor/a\", y el segundo \"para el editor/a\". Los formularios de " +#~ "revisión pueden designarse para una sección específica de la publicación, " +#~ "y los editores/as tendrán la opción de elegir qué formulario usar para " +#~ "asignar la revisión. En todos los casos los editores/as podrán incluir " +#~ "las revisiones correspondientes a cada autor/a." + +#~ msgid "manager.reviewForms.noneChosen" +#~ msgstr "Ninguno / Revisión de formulario libre" + +#~ msgid "manager.reviewForms.noneCreated" +#~ msgstr "No se ha creado ningún formulario de revisión." + +#~ msgid "manager.reviewForms.noneUsed" +#~ msgstr "No se ha utilizado ningún formulario de revisión." + +#~ msgid "manager.reviewForms.preview" +#~ msgstr "Previsualizar formulario" + +#~ msgid "manager.reviewForms.reviewFormData" +#~ msgstr "Información del formulario de revisión" + +#~ msgid "manager.reviewForms.title" +#~ msgstr "Título" + +#~ msgid "manager.reviewFormElement.changeType" +#~ msgstr "Cambiando el tipo de elementos del formulario..." + +#~ msgid "manager.reviewFormElements" +#~ msgstr "Elementos del formulario" + +#~ msgid "manager.reviewFormElements.addResponseItem" +#~ msgstr "Añadir selección" + +#~ msgid "manager.reviewFormElements.checkboxes" +#~ msgstr "Casillas (puedes elegir más de una)" + +#~ msgid "manager.reviewFormElements.chooseType" +#~ msgstr "Elegir tipo de elemento" + +#~ msgid "manager.reviewFormElements.confirmDelete" +#~ msgstr "Confirmar la eliminación del elemento del formulario publicado..." + +#~ msgid "manager.reviewFormElements.copyTo" +#~ msgstr "Copiar a:" + +#~ msgid "manager.reviewFormElements.create" +#~ msgstr "Crear un nuevo elemento" + +#~ msgid "manager.reviewFormElements.dropdownbox" +#~ msgstr "Menú desplegable" + +#~ msgid "manager.reviewFormElements.edit" +#~ msgstr "Editar elemento del formulario" + +#~ msgid "manager.reviewFormElements.elementType" +#~ msgstr "Tipo de elemento" + +#~ msgid "manager.reviewFormElements.form.elementTypeRequired" +#~ msgstr "Se necesita un tipo de elemento para el elemento del formulario." + +#~ msgid "manager.reviewFormElements.form.questionRequired" +#~ msgstr "Se necesita una pregunta para el elemento del formulario." + +#~ msgid "manager.reviewFormElements.noneCreated" +#~ msgstr "No se ha creado ningún elemento del formulario." + +#~ msgid "manager.reviewFormElements.possibleResponse" +#~ msgstr "Selección" + +#~ msgid "manager.reviewFormElements.question" +#~ msgstr "Elemento" + +#~ msgid "manager.reviewFormElements.radiobuttons" +#~ msgstr "Botones de selección (solo puedes elegir uno)" + +#~ msgid "manager.reviewFormElements.required" +#~ msgstr "Es necesario que los revisores completen el elemento" + +#~ msgid "manager.reviewFormElements.smalltextfield" +#~ msgstr "Cuadro de texto de una sola palabra" + +#~ msgid "manager.reviewFormElements.textarea" +#~ msgstr "Cuadro de texto ampliado" + +#~ msgid "manager.reviewFormElements.textfield" +#~ msgstr "Cuadro de texto de una sola línea" + +#~ msgid "manager.reviewFormElements.viewable" +#~ msgstr "Visible (para autores)" + +#~ msgid "manager.series.noSeriesEditors" +#~ msgstr "" +#~ "Todavía no hay editores/as de la serie. Añadir antes el rol a al menos un " +#~ "usuario/a a través de Gestión > Configuración > Usuarios/as y Roles." + +#~ msgid "manager.series.noCategories" +#~ msgstr "" +#~ "Todavía no hay categorías. Si desea asignar categorías a la serie, cierre " +#~ "antes este menú, haga clic en la pestaña \"Categorías\" y cree una." + +#~ msgid "manager.setup.addContributor" +#~ msgstr "Añadir colaborador" + +#~ msgid "manager.setup.additionalContent" +#~ msgstr "Contenido adicional" + +#~ msgid "manager.setup.additionalContentDescription" +#~ msgstr "" +#~ "Añade el contenido siguiente utilizando texto/HTML, que aparecerá a " +#~ "debajo de la imagen de la página principal, en caso de que se haya subido " +#~ "alguna." + +#~ msgid "manager.setup.alternateHeader" +#~ msgstr "Cabecera alternativa" + +#~ msgid "manager.setup.alternateHeaderDescription" +#~ msgstr "" +#~ "En el siguiente cuadro de texto puede insertar una versión HTML del " +#~ "encabezado, en lugar del título y logotipo. Dejar el cuadro de texto en " +#~ "blanco si no se necesita." + +#~ msgid "manager.setup.authorCopyrightNotice" +#~ msgstr "Aviso de derechos de autor" + +#~ msgid "manager.setup.authorCopyrightNoticeAgree" +#~ msgstr "" +#~ "Es necesario que los autores acepten el Aviso de derechos de autor como " +#~ "parte del proceso de propuesta." + +#~ msgid "manager.setup.authorCopyrightNotice.description" +#~ msgstr "" +#~ "El aviso de derechos de autor/a que introduzca a continuación aparecerá " +#~ "en Acerca de la publicación y en los metadatos de todos los elementos " +#~ "publicados. Aunque la publicación determina la naturaleza del acuerdo con " +#~ "los autores/as sobre los derechos de autor/a, el Public Knowledge Project " +#~ "recomienda el uso de la licencia Creative Commons. Para ese fin, se " +#~ "proporciona una prueba de aviso de derechos de autor/a que puede " +#~ "cortarse y pegarse en el espacio que hay a continuación para " +#~ "publicaciones que (a) ofrecen acceso abierto, (b) ofrecen acceso abierto " +#~ "diferido, o (c) no ofrecen acceso abierto." + +#~ msgid "manager.setup.authorGuidelines.description" +#~ msgstr "" +#~ "Exponga a los autores/as los estándares bibliográficos y de formato " +#~ "utilizados para los elementos subidos a la publicación (por ejemplo el " +#~ "Manual de publicaciones de la American Psychological Association, 5ª edición, 2001). Es útil proporcionar ejemplos de los formatos " +#~ "comunes de citación para publicaciones y libros que se usarán en los " +#~ "envíos." + +#~ msgid "manager.setup.contributor" +#~ msgstr "Colaborador" + +#~ msgid "manager.setup.contributors" +#~ msgstr "Fuentes de apoyo" + +#~ msgid "manager.setup.contributors.description" +#~ msgstr "" +#~ "Las agencias u organizaciones adicionales que proporcionan ayuda " +#~ "financiera y en especie a la editorial, aparecerán en Acerca de la " +#~ "editorial y podrán ir acompañadas de una nota de reconocimiento." + +#~ msgid "manager.setup.coverageChronExamples" +#~ msgstr "" +#~ "(P.ej. renacimiento europeo; periodo jurásico; tercer trimestre; etc.)" + +#~ msgid "manager.setup.coverageChronProvideExamples" +#~ msgstr "" +#~ "Da ejemplos de términos cronológicos e históricos relevantes para este " +#~ "campo" + +#~ msgid "manager.setup.coverageDescription" +#~ msgstr "" +#~ "Se refiere a la localización geoespacial, cobertura cronológica o " +#~ "histórica, y/o características de la investigación." + +#~ msgid "manager.setup.coverageGeoExamples" +#~ msgstr "(P.ej. península ibérica; estratosfera; bosques boreales; etc.)" + +#~ msgid "manager.setup.coverageGeoProvideExamples" +#~ msgstr "Da ejemplos de términos geoespaciales o geográficos para este campo" + +#~ msgid "manager.setup.coverageResearchSampleExamples" +#~ msgstr "(P.ej. edad; sexo; etnia; etc.)" + +#~ msgid "manager.setup.coverageResearchSampleProvideExamples" +#~ msgstr "" +#~ "Da ejemplos de características de la muestras de investigación para este " +#~ "campo." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Prefijo DOI" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "El prefijo DOI (Identificador Digital del Objeto) se asigna mediante Referencia cruzada " +#~ "y tiene el formato 10.xxxx (p. ej. 10.1234)." + +#~ msgid "manager.setup.editorialMembers" +#~ msgstr "" +#~ "Ir a Miembros del consejo de redacción y añadir miembros del Consejo " +#~ "editorial y/o del Consejo de revisión. Esto puede hacerse en cualquier " +#~ "momento de la ejecución de la publicación." + +#~ msgid "manager.setup.editorialProcess1" +#~ msgstr "" +#~ "Uno o más coordinadores se encargan de los pasos básicos sin ninguna " +#~ "función designada." + +#~ msgid "manager.setup.editorialProcess2" +#~ msgstr "" +#~ "El coordinador jefe se encarga de la lista de la propuesta y la tabla de " +#~ "contenidos, mientras que los coordinadores de sección se encargan de la " +#~ "revisión y edición de la propuesta." + +#~ msgid "manager.setup.editorialProcess3" +#~ msgstr "" +#~ "El coordinador jefe se encarga de la lista de la propuesta, edición de la " +#~ "propuesta y tabla de contenidos, mientras que los coordinadores de " +#~ "sección se encargan de la revisión de la propuesta." + +#~ msgid "manager.setup.editorialReviewBoard" +#~ msgstr "Comité de Redacción/ Revisión" + +#~ msgid "manager.setup.editorialReviewBoardDescription" +#~ msgstr "" +#~ "Las publicaciones disponen de Consejos editoriales que supervisan la " +#~ "dirección editorial de la publicación, participan en el nombramiento de " +#~ "editores/as y, gracias a la reputación de los miembros del consejo de " +#~ "redacción, dan a la publicación prestigio en el campo. Los Consejos de " +#~ "revisión desempeñan un rol similar pero además, dirigen el proceso de " +#~ "evaluación por pares. Los miembros del consejo de revisión no tendrán " +#~ "acceso al sistema administrativo de la página web pero se añadirán a la " +#~ "lista de participantes en el proceso de evaluación por pares." + +#~ msgid "manager.setup.emailSignatureDescription" +#~ msgstr "" +#~ "Las plantillas de correo que el sistema envía en nombre de la publicación " +#~ "tendrán la siguiente firma al final. El cuerpo de las plantillas de " +#~ "correo podrá editarse a continuación." + +#~ msgid "manager.setup.enableUserRegistration.author" +#~ msgstr "Autores (pueden presentar material a la editorial)" + +#~ msgid "manager.setup.enableUserRegistration.reader" +#~ msgstr "" +#~ "Lectores (recibirán notificaciones y se considerarán equivalentes a los " +#~ "suscriptores)" + +#~ msgid "manager.setup.enableUserRegistration.reviewer" +#~ msgstr "Revisores (pueden revisar propuestas)" + +#~ msgid "manager.setup.featuredBooks" +#~ msgstr "Libros destacados" + +#~ msgid "manager.setup.inSpotlight" +#~ msgstr "En primer plano" + +#~ msgid "manager.setup.homepageImage" +#~ msgstr "Imagen página principal" + +#~ msgid "manager.setup.homepageImageDescription" +#~ msgstr "" +#~ "Añada una imagen o un gráfico en el centro de la página. Si usa la " +#~ "plantilla y la css por defecto, la anchura máxima de la imagen será de " +#~ "750 px para la configuración de una barra lateral y de 540 px para la de " +#~ "dos barras laterales. Si usa una plantilla o una css personalizada, los " +#~ "valores pueden cambiar." + +#~ msgid "manager.setup.mailingAddress.description" +#~ msgstr "La localización física y la dirección de envío de la editorial." + +#~ msgid "manager.setup.newReleases" +#~ msgstr "Novedades" + +#~ msgid "manager.setup.notifications" +#~ msgstr "Notificación de envío del autor/a" + +#~ msgid "manager.setup.notifications.copySpecifiedAddress" +#~ msgstr "Enviar una copia a esta dirección de correo electrónico:" + +#~ msgid "manager.setup.notifications.description" +#~ msgstr "" +#~ "Al completar el proceso de envío, se envía automáticamente a los autores/" +#~ "as un correo electrónico de confirmación (que se puede ver y editar en " +#~ "Plantillas de correo electrónico). Además se puede enviar una copia del " +#~ "correo de confirmación como se indica a continuación:" + +#~ msgid "manager.setup.openAccess" +#~ msgstr "La publicación proporcionará acceso abierto al contenido." + +#~ msgid "manager.setup.openAccessPolicy" +#~ msgstr "Política de acceso abierto" + +#~ msgid "manager.setup.openAccessPolicy.description" +#~ msgstr "" +#~ "Si la editorial proporciona a los lectores/as acceso libre a todo el " +#~ "contenido publicado, introduzca una política de acceso abierto que " +#~ "aparecerá en Políticas > Acerca de la publicación." + +#~ msgid "manager.setup.peerReview.description" +#~ msgstr "" +#~ "Describa la política de evaluación por pares y los procesos para lectores/" +#~ "as y autores/as, incluyendo el número de revisores/as utilizados " +#~ "normalmente para revisar los envíos, los criterios que los revisores/as " +#~ "deben seguir para juzgar los envíos, el tiempo habitual que conllevan las " +#~ "revisiones y los principios que se siguen a la hora de contratar " +#~ "revisores/as. Esto aparecerá en Acerca de la publicación." + +#~ msgid "manager.setup.pressHomepageHeader" +#~ msgstr "Encabezado de la página de inicio de la publicación" + +#~ msgid "manager.setup.pressHomepageHeader.altText" +#~ msgstr "Encabezado de la página de inicio de la publicación" + +#~ msgid "manager.setup.pressHomepageHeaderDescription" +#~ msgstr "" +#~ "Escoja entre un fragmento de texto del nombre de la publicación, o una " +#~ "versión gráfica del título de la publicación (se aceptan archivos .gif, ." +#~ "jpg o .png) El encabezado y el logo opcional que lo acompañe solo " +#~ "aparecerán en la página de inicio de la publicación. El encabezado por " +#~ "defecto tiene un tamaño de 180 px x 90 px." + +#~ msgid "manager.setup.logo" +#~ msgstr "Logo de la publicación" + +#~ msgid "manager.setup.logo.altText" +#~ msgstr "Logo de la publicación" + +#~ msgid "manager.setup.pageFooter" +#~ msgstr "Pie de página de la publicación" + +#~ msgid "manager.setup.pageFooterDescription" +#~ msgstr "" +#~ "Este es el pie de página de la publicación. Para cambiar o actualizar el " +#~ "pie de página, pegue el código HTML en el siguiente cuadro de texto. " +#~ "Algunos ejemplos pueden ser otra barra de navegación, un contador, etc. " +#~ "El pie de página aparecerá en todas las páginas." + +#~ msgid "manager.setup.principalContact" +#~ msgstr "Contacto principal" + +#~ msgid "manager.setup.principalContactDescription" +#~ msgstr "" +#~ "Este cargo, que puede ser tratado como el editor principal, el gestor " +#~ "editorial, o personal administrativo, se mostrará en la página de inicio " +#~ "de la editorial bajo Contacto, junto con el contacto de soporte técnico." + +#~ msgid "manager.setup.privacyStatement" +#~ msgstr "Declaración de privacidad" + +#~ msgid "manager.setup.privacyStatement2" +#~ msgstr "Declaración de privacidad" + +#~ msgid "manager.setup.privacyStatement.description" +#~ msgstr "" +#~ "Esta declaración aparecerá en Acerca de la publicación, así como en las " +#~ "páginas de Envío y Notificación del autor/a A continuación se incluye una " +#~ "política de privacidad, que puede revisarse en cualquier momento." + +#~ msgid "manager.setup.internalReviewGuidelinesDescription" +#~ msgstr "" +#~ "Al igual que las directrices de revisión externa, estas instrucciones " +#~ "proporcionarán a los revisores/as información sobre la evaluación del " +#~ "envío. Estas instrucciones son para los revisores/as internos, que " +#~ "normalmente hacen un proceso de revisión usando revisores/as internos de " +#~ "la editorial." + +#~ msgid "manager.setup.reviewOptions.noteOnModification" +#~ msgstr "" +#~ "Los valores por defectos se pueden modificar en cualquier envío durante " +#~ "el proceso editorial." + +#~ msgid "manager.setup.reviewOptions.reviewTime" +#~ msgstr "Plazo para la revisión" + +#~ msgid "manager.setup.sponsors.description" +#~ msgstr "" +#~ "El nombre de las organizaciones (p. ej. asociaciones académicas, " +#~ "departamentos de universidades, cooperativas, etc.) que patrocinan a la " +#~ "publicación aparecerán en Acerca de la publicación y se acompañarán de " +#~ "una nota de agradecimiento." + +#~ msgid "manager.setup.subjectClassification" +#~ msgstr "Clasificación por materias" + +#~ msgid "manager.setup.subjectClassificationExamples" +#~ msgstr "" +#~ "p. ej., MSC (Mathematics Subject Classification, Clasificación de las " +#~ "matemáticas); LCC (Library of Congress Classification, Clasificación " +#~ "desarrollada por la Biblioteca del Congreso de EEUU)" + +#~ msgid "manager.setup.technicalSupportContact" +#~ msgstr "Contacto de soporte técnico" + +#~ msgid "manager.setup.technicalSupportContactDescription" +#~ msgstr "" +#~ "Esta persona aparecerá en la lista de la página de contacto de la " +#~ "publicación para el uso de editores/as, autores/as y revisores/as, y " +#~ "deberá estar familiarizado con el sistema desde la perspectiva de todos " +#~ "los roles. Como el sistema de publicación necesita muy poca asistencia " +#~ "técnica, esta será considerada como una tarea a tiempo parcial. Se pueden " +#~ "dar casos como, por ejemplo, cuando los autores/as y revisores/as tienen " +#~ "dificultades con las instrucciones o formatos de los archivos, o cuando " +#~ "es necesario asegurar que se realiza regularmente una copia de seguridad " +#~ "de la publicación en el servidor." + +#~ msgid "manager.setup.useImageLogo" +#~ msgstr "Logo de la publicación" + +#~ msgid "manager.setup.useImageLogoDescription" +#~ msgstr "" +#~ "Es posible subir un logo de la publicación y usarlo junto al título en " +#~ "imagen o texto configurado anteriormente." + +#~ msgid "manager.setup.registerForIndexing" +#~ msgstr "" +#~ "Registrar la publicación para su indexación (recopilación de metadatos)" + +#~ msgid "manager.setup.subjectClassificationDescription" +#~ msgstr "" +#~ "[La publicación usará un sistema de clasificación de materias disponible " +#~ "en la web.
      Título del sistema de clasificación" + +#~ msgid "manager.setup.registerForIndexingDescription" +#~ msgstr "" +#~ "Para indexar los contenidos de la publicación dentro de un sistema global " +#~ "de bases de datos de investigación, registre la URL de su publicación con el " +#~ "recopilador de metadatos de Public Knowledge Project. La herramienta recoge los " +#~ "metadatos de cada elemento indexado en la publicación, permitiendo " +#~ "búsquedas colectivas y adecuadas entre las páginas de investigación que " +#~ "se acojan al Protocolo de " +#~ "iniciativa de archivos abiertos para recopilación de metadatos.

      Tenga en cuenta que si el administrador/a del sitio ya ha " +#~ "registrado el sitio con la recopilación PKP, su publicación se indexará " +#~ "automáticamente y no tendrá que registrar su publicación.

      Haga clic " +#~ "aquí e introduzca {$siteUrl} en " +#~ "la URL del sitio, y {$oaiUrl} en el archivo de la base URL para OAI.." + +#~ msgid "settings.roles.gridDescription" +#~ msgstr "" +#~ "Los roles son grupos de usuarios/as de la publicación que tienen acceso a " +#~ "diferentes niveles de permiso y a flujos de trabajo relacionados en la " +#~ "publicación. Hay cinco niveles de permiso diferentes: los jefes/as " +#~ "editoriales tienen acceso a la publicación completa (todo el contenido y " +#~ "la configuración); los editores/as tienen acceso a todo el contenido " +#~ "dentro de sus series; los ayudantes de producción tienen acceso a todas " +#~ "las monografías que un editor/a les ha asignado explícitamente; los " +#~ "revisores/as pueden ver y realizar las revisiones que se les ha asignado; " +#~ "y los autores/as pueden ver e interactuar con una cantidad limitada de " +#~ "información en sus propios envíos. Además, hay cinco fases de tareas " +#~ "diferentes a las que podrán dar acceso los roles: envío, revisión " +#~ "interna, revisión externa, edición y producción." + +msgid "mailable.layoutComplete.name" +msgstr "Galeradas completadas" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "El enlace a la página de estadísticas de libros" + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Este correo electrónico se envía automáticamente cada mes a editores y " +"gerentes de la editorial para proporcionarles una visión general de la salud " +"del sistema." + +msgid "manager.sections.alertDelete" +msgstr "" +"Antes de eliminar esta serie, debe mover los envíos asociados a esta serie a " +"otras series." + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "" +"Se ha omitido un registro de derechos de venta porque no tiene asignado " +"ningún país ni región." + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "La dirección postal de la editorial" + +msgid "emailTemplate.variable.context.contextAcronym" +msgstr "Las iniciales de la editorial" diff --git a/locale/es/submission.po b/locale/es/submission.po new file mode 100644 index 00000000000..ec8c5e21b45 --- /dev/null +++ b/locale/es/submission.po @@ -0,0 +1,635 @@ +# pep sanso , 2023. +# Jordi LC , 2023, 2024. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" +"PO-Revision-Date: 2024-04-26 12:34+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "submission.upload.selectComponent" +msgstr "Seleccionar componente" + +msgid "submission.title" +msgstr "Título de libro" + +msgid "submission.select" +msgstr "Seleccionar propuesta" + +msgid "submission.synopsis" +msgstr "Sinopsis" + +msgid "submission.workflowType" +msgstr "Tipo de libro" + +msgid "submission.workflowType.description" +msgstr "" +"Una monografía es una obra escrita totalmente por uno o más autores/as. Un " +"volumen editado tiene diferentes autores/as para cada capítulo (los detalles " +"de capítulo se introducirán posteriormente durante el proceso)." + +msgid "submission.workflowType.editedVolume.label" +msgstr "Obra colectiva" + +msgid "submission.workflowType.editedVolume" +msgstr "Obra colectiva: los autores/as se asocian con sus propios capítulos." + +msgid "submission.workflowType.authoredWork" +msgstr "Monografía: los autores/as se asocian con el libro completo." + +msgid "submission.workflowType.change" +msgstr "Cambiar" + +msgid "submission.editorName" +msgstr "{$editorName} (ed.)" + +msgid "submission.monograph" +msgstr "Monografía" + +msgid "submission.published" +msgstr "Producción lista" + +msgid "submission.fairCopy" +msgstr "Copia en limpio" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Permisos" + +msgid "submission.chapter" +msgstr "Capítulo" + +msgid "submission.chapters" +msgstr "Capítulos" + +msgid "submission.chapter.addChapter" +msgstr "Añadir capítulo" + +msgid "submission.chapter.editChapter" +msgstr "Editar capítulo" + +msgid "submission.chapter.pages" +msgstr "Páginas" + +msgid "submission.copyedit" +msgstr "Corregir el estilo" + +msgid "submission.publicationFormats" +msgstr "Formatos de publicación" + +msgid "submission.proofs" +msgstr "Pruebas" + +msgid "submission.download" +msgstr "Descargar" + +msgid "submission.sharing" +msgstr "Compartir" + +msgid "manuscript.submission" +msgstr "Propuesta de manuscrito" + +msgid "submission.round" +msgstr "Ronda {$round}" + +msgid "submissions.queuedReview" +msgstr "En revisión" + +msgid "manuscript.submissions" +msgstr "Propuestas de manuscritos" + +msgid "submission.metadata" +msgstr "Metadatos" + +msgid "submission.supportingAgencies" +msgstr "Agencias de apoyo" + +msgid "grid.action.addChapter" +msgstr "Crear un nuevo capítulo" + +msgid "grid.action.editChapter" +msgstr "Editar este capítulo" + +msgid "grid.action.deleteChapter" +msgstr "Eliminar este capítulo" + +msgid "submission.submit" +msgstr "Comenzar nueva propuesta" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Comenzar una nueva propuesta para" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Nuevo Envío" + +msgid "submission.submit.upload" +msgstr "Cargar envío" + +msgid "author.volumeEditor" +msgstr "Editor/a del volumen" + +msgid "author.isVolumeEditor" +msgstr "Identificar a este contribuidor/a como editor/a de este volumen." + +msgid "submission.submit.seriesPosition" +msgstr "" +"Lugar que ocupa dentro de esta serie, colección, ... (por ejemplo, Libro 2, " +"o Volumen 2)" + +msgid "submission.submit.seriesPosition.description" +msgstr "Ejemplos: libro 2, volumen 2" + +msgid "submission.submit.privacyStatement" +msgstr "Declaración de privacidad" + +msgid "submission.submit.contributorRole" +msgstr "Rol del colaborador" + +msgid "submission.submit.submissionFile" +msgstr "Fichero de la propuesta" + +msgid "submission.submit.prepare" +msgstr "Preparar" + +msgid "submission.submit.catalog" +msgstr "Catálogo" + +msgid "submission.submit.metadata" +msgstr "Metadatos" + +msgid "submission.submit.finishingUp" +msgstr "Finalizar" + +msgid "submission.submit.confirmation" +msgstr "Confirmación" + +msgid "submission.submit.nextSteps" +msgstr "Pasos siguientes" + +msgid "submission.submit.coverNote" +msgstr "Nota para el Editor" + +msgid "submission.submit.generalInformation" +msgstr "Información general" + +msgid "submission.submit.whatNext.description" +msgstr "" +"El envío se notificó a la editorial y usted recibió un correo electrónico de " +"confirmación por sus registros. Una vez revisado el envío por el editor/a, " +"este contactará con usted." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Lea y marque los elementos en la lista de comprobación del envío. No se " +"marcaron {$itemsRemaining} elementos." + +msgid "submission.submit.placement" +msgstr "Disposición de la propuesta" + +msgid "submission.submit.userGroup" +msgstr "Realizar propuesta como..." + +msgid "submission.submit.noContext" +msgstr "La publicación del envío no pudo encontrarse." + +msgid "grid.chapters.title" +msgstr "Capítulos" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Borrar archivo subido del corrector" + +msgid "submission.complete" +msgstr "Aceptado" + +msgid "submission.incomplete" +msgstr "Esperando aceptación" + +msgid "submission.editCatalogEntry" +msgstr "Registro" + +msgid "submission.catalogEntry.new" +msgstr "Nueva entrada de catálogo" + +msgid "submission.catalogEntry.add" +msgstr "Añadir los seleccionados al catálogo" + +msgid "submission.catalogEntry.select" +msgstr "Seleccione monografías a añadir al catálogo" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Debe seleccionar al menos una monografía para añadir al catálogo." + +msgid "submission.catalogEntry.confirm" +msgstr "Añadir este libro al catálogo público" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Confirma que la propuesta está lista para situarse en el catálogo." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Esta monografía está lista para incluirse en un catalogo público." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Ver envío" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Fechas de publicación" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "" +"Todos los capítulos utilizarán la fecha de publicación del monográfico." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Cada capítulo puede tener su propia fecha de publicación." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografía" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Catálogo" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Formato de publicación" + +msgid "submission.event.metadataPublished" +msgstr "Los metadatos de la monografía se han aprobado para su publicación." + +msgid "submission.event.metadataUnpublished" +msgstr "Los metadatos de la monografía no están ya publicados." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "" +"El formato de publicación \"{$publicationFormatName}\" está disponible." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" +"El formato de publicación \"{$publicationFormatName}\" ya no está disponible." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"El formato de publicación \"{$publicationFormatName}\" está aprobado para su " +"publicación." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"El formato de publicación \"{$publicationFormatName}\" ya no se publica." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Se han subido los metadatos del catálogo." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"Se actualizaron los metadatos del formato de publicación \"{$formatName}\"." + +msgid "submission.event.publicationFormatCreated" +msgstr "Se creó el formato de publicación \"{$formatName}\"." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Se eliminó el formato de publicación \"{$formatName}\"." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Enviar para una revisión externa" + +msgid "workflow.review.externalReview" +msgstr "Revisión externa" + +msgid "submission.upload.fileContents" +msgstr "Componente de envío" + +msgid "submission.dependentFiles" +msgstr "Archivos dependientes" + +msgid "submission.metadataDescription" +msgstr "" +"Estas especificaciones se basan en el conjunto de metadatos Dublin Core, un " +"estándar internacional usado para describir contenido editorial." + +msgid "section.any" +msgstr "Cualquier serie" + +msgid "submission.list.monographs" +msgstr "Monografías" + +msgid "submission.list.countMonographs" +msgstr "{$count} monografías" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} de {$total} monografías" + +msgid "submission.list.orderFeatures" +msgstr "Ordenar elementos" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Arrastre y suelte o pulse los botones de arriba y abajo para cambiar el " +"orden de los elementos en la página principal." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Arrastre y suelte o pulse los botones de arriba y abajo para cambiar el " +"orden de los elementos en {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Guardar orden" + +msgid "submission.list.viewEntry" +msgstr "Ver entrada" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} títulos" + +msgid "publication.catalogEntry" +msgstr "Catálogo" + +msgid "publication.catalogEntry.success" +msgstr "Los detalles de entrada del catálogo han sido actualizados." + +msgid "publication.invalidSeries" +msgstr "Las series para esta publicación no pudieron encontrarse." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Inactivo)" + +msgid "publication.required.issue" +msgstr "" +"La publicación debe asignarse a un número antes de poder ser publicada." + +msgid "publication.publishedIn" +msgstr "Publicado en {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Todos los requisitos de publicación se cumplen. ¿Seguro que desea hacer " +"pública esta entrada del catálogo?" + +msgid "publication.scheduledIn" +msgstr "" +"Programado para publicarse en {$issueName}." + +msgid "submission.publication" +msgstr "Publicación" + +msgid "publication.status.published" +msgstr "Publicado" + +msgid "submission.status.scheduled" +msgstr "Programado" + +msgid "publication.status.unscheduled" +msgstr "Desprogramado" + +msgid "submission.publications" +msgstr "Publicaciones" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"El año de los derechos de autor se ajustará automáticamente cuando se " +"publique en un número." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"El año de los derechos de autor se ajustará automáticamente en función de la " +"fecha de publicación." + +msgid "publication.datePublished" +msgstr "Fecha de publicación" + +msgid "publication.editDisabled" +msgstr "Esta versión ya ha sido publicada y no puede editarse." + +msgid "publication.event.published" +msgstr "El envío fue publicado." + +msgid "publication.event.scheduled" +msgstr "El envío se programó para su publicación." + +msgid "publication.event.unpublished" +msgstr "El envío fue retirado de publicación." + +msgid "publication.event.versionPublished" +msgstr "Se publicó una versión nueva." + +msgid "publication.event.versionScheduled" +msgstr "Se programó una versión nueva para su publicación." + +msgid "publication.event.versionUnpublished" +msgstr "Se eliminó una versión de publicación." + +msgid "publication.invalidSubmission" +msgstr "No se pudo encontrar el envío para esta publicación." + +msgid "publication.publish" +msgstr "Publicar" + +msgid "publication.publish.requirements" +msgstr "" +"Se deben cumplir los siguientes requisitos antes de que esto pueda ser " +"publicado." + +msgid "publication.required.declined" +msgstr "Un envío rechazado no puede ser publicado." + +msgid "publication.required.reviewStage" +msgstr "" +"El envío debe estar en las fases de \"corrección\" o de \"producción\" antes " +"de poder ser publicado." + +msgid "submission.license.description" +msgstr "" +"La licencia se ajustará automáticamente a {$licenseName} cuando se publique." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Los derechos de autor se asignarán automáticamente a {$copyright} cuando se " +"publique." + +msgid "submission.copyrightOther.description" +msgstr "" +"Asignar derechos de autor para los envíos publicados en la parte siguiente." + +msgid "publication.unpublish" +msgstr "Retirar de publicación" + +msgid "publication.unpublish.confirm" +msgstr "¿Seguro que no quiere que esto sea publicado?" + +msgid "publication.unschedule.confirm" +msgstr "¿Seguro que no quiere que esto se programe para su publicación?" + +msgid "publication.version.details" +msgstr "Detalles de publicación de la versión {$version}" + +msgid "submission.queries.production" +msgstr "Discusiones de producción" + +msgid "publication.chapter.landingPage" +msgstr "Página del capítulo" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Mostrar este capítulo en su propia página y enlazar a esa página desde el " +"índice del libro." + +msgid "publication.publish.success" +msgstr "El estado de la publicación se modificó con éxito." + +msgid "chapter.volume" +msgstr "Volumen" + +msgid "submission.withoutChapter" +msgstr "{$name} — Sin este capítulo" + +msgid "submission.chapterCreated" +msgstr " — Capítulo creado" + +msgid "chapter.pages" +msgstr "Páginas" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Enviar a revisión interna" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "Este envío está listo para remitirse a revisión interna." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} ha remitido este envío a la fase de revisión interna." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Enviado a revisión interna" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"El envío, {$title}, se ha remitido a la fase de revisión interna. Se ha " +"notificado al autor/a, a menos que haya decidido omitir el correo " +"electrónico." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Enviar un correo electrónico a los autores/as para informarlos de que este " +"envío se remitirá a revisión interna. Si es posible, indique a los autores/" +"as cuánto tiempo puede durar el proceso de revisión interna y cuándo está " +"previsto que vuelvan a tener noticias de los editores/as." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" +"Seleccionar los archivos que deben enviarse a la fase de revisión interna." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "{$editorName} remitió este envío a la fase de revisión externa." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Enviado a revisión externa" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "El envío, {$title}, se ha remitido a la fase de revisión externa." + +msgid "editor.submission.decision.backToReview" +msgstr "Volver a revisión" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Revertir la decisión de aceptar este envío y devolverlo a la fase de " +"revisión." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} ha revertido la decisión de aceptar este envío y lo ha " +"devuelto a la fase de revisión." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Devuelto a revisión" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "El envío, {$title}, se ha devuelto a la fase de revisión." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Enviar un correo electrónico a los autores/as para informarles de que su " +"envío ha sido devuelto a la fase de revisión. Explique por qué se ha tomado " +"esta decisión e informe al autor/a de qué otras revisiones se llevarán a " +"cabo." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Enviar un correo electrónico a los autores/as para informarles de que este " +"trabajo se remitirá a la fase de revisión por pares. Si es posible, dé a los " +"autores/as alguna indicación sobre el tiempo que puede durar el proceso de " +"revisión por pares y cuándo está previsto que vuelvan a tener noticias de " +"los editores/as." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Seleccionar los archivos que deberían enviarse a la fase de revisión." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Recomendar el envío a revisión externa" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "Recomendar que este envío pase a la fase de revisión externa." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} recomendó que este envío pasara a la fase de revisión externa." + +msgid "doi.submission.incorrectContext" +msgstr "" +"No se pudo crear un DOI para el siguiente envío: {$pubObjectTitle}. No " +"existe en el contexto editorial actual." + +msgid "publication.chapter.licenseUrl" +msgstr "URL de la licencia" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "URL predeterminada de la licencia del capítulo" + +msgid "submission.copyright.description" +msgstr "" +"Lea y acepte los términos de derechos de autoría para los envíos a esta " +"editorial." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"No puede enviar artículos a esta editorial porque los autores/as deben haber " +"sido registrados por el equipo editorial. Si cree que se trata de un error, " +"póngase en contacto con {$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} no acepta envíos a la colección {$section}. Si necesita ayuda " +"para recuperar su envío, póngase en contacto con {$name}." + +msgid "submission.sectionNotFound" +msgstr "No se ha podido encontrar la colección de este envío." + +msgid "submission.sectionRestrictedToEditors" +msgstr "Solo el equipo editorial puede hacer envíos a esta colección." + +msgid "submission.wizard.submitting.monograph" +msgstr "Enviando una monografía." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" +"Enviando una monografía en {$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Enviando un volumen editado." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Enviando un volumen editado en {$language}." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Proporcione todos los capítulos de este envío. Si está enviando un volumen " +"editado, asegúrese de que en cada capítulo se indican sus colaboradores/as." diff --git a/locale/es_ES/admin.po b/locale/es_ES/admin.po deleted file mode 100644 index 0c6676ee4d6..00000000000 --- a/locale/es_ES/admin.po +++ /dev/null @@ -1,101 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2020-03-05 10:36+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.hostedContexts" -msgstr "Editoriales alojadas" - -msgid "admin.settings.redirect" -msgstr "Redirección de editoriales" - -msgid "admin.settings.redirectInstructions" -msgstr "Las solicitudes de la página principal se redirigirán a esta editorial. Esto puede ser útil si el sitio solo aloja una editorial, por ejemplo." - -msgid "admin.settings.noPressRedirect" -msgstr "No redirigir" - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "Este será el idioma por defecto de la página y de cualquier editorial alojada." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "Seleccione todas las configuraciones regionales para que sean compatibles con el sitio. Las configuraciones locales seleccionadas estarán disponibles para su uso por todas las editoriales alojadas en el sitio, y también aparecerán en el menú de selección de idioma que figura en cada página del sitio (que puede invalidarse en páginas de editoriales específicas). Si no se seleccionan varias configuraciones locales, el menú de cambio de idioma no aparecerá y la configuración de idioma ampliada no estará disponible para las editoriales." - -msgid "admin.locale.maybeIncomplete" -msgstr "* Los locales marcados están incompletos." - -msgid "admin.languages.confirmUninstall" -msgstr "¿Está seguro/a de que desea desinstalar esta configuración regional? Esto puede afectar a cualquier editorial alojada que esté utilizando actualmente la configuración regional." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "Seleccione cualquier configuración regional adicional para instalar soporte en este sistema. Las configuraciones regionales deben instalarse antes de que las editoriales alojadas puedan usarlas. Véase la documentación de OMP para obtener información acerca de cómo añadir soporte para nuevos idiomas." - -msgid "admin.languages.confirmDisable" -msgstr "¿Está seguro/a de que desea desactivar esta configuración regional? Esto puede afectar a cualquier editorial alojada que esté utilizando actualmente la configuración regional." - -msgid "admin.systemVersion" -msgstr "Versión OMP" - -msgid "admin.systemConfiguration" -msgstr "Configuración OMP" - -msgid "admin.presses.pressSettings" -msgstr "Ajustes editorial" - -msgid "admin.presses.noneCreated" -msgstr "No se han creado editoriales." - -msgid "admin.contexts.confirmDelete" -msgstr "¿Está seguro/a de que desea eliminar de forma permanente esta editorial y todo su contenido?" - -msgid "admin.contexts.create" -msgstr "Crear editorial" - -msgid "admin.contexts.form.titleRequired" -msgstr "Es necesario introducir el título." - -msgid "admin.contexts.form.pathRequired" -msgstr "Inserte una ruta." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "La ruta sólo puede contener caracteres alfanuméricos, guiones y guiones bajos, y debe empezar y terminar con un carácter alfanumérico." - -msgid "admin.contexts.form.pathExists" -msgstr "La ruta seleccionada ya está siendo utilizada por otra editorial." - -msgid "admin.contexts.contextDescription" -msgstr "Detalles de la editorial" - -msgid "admin.presses.addPress" -msgstr "Añadir editorial" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

      Aviso

      \n" -"

      El sistema no puede sobrescribir automáticamente el archivo de configuración. Para aplicar los cambios de la configuración es necesario abrir config.inc.php en un editor de texto adecuado y reemplazar su contenido por los del campo de texto que figuran a continuación.

      " - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} fue modificado correctamente." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} fue creado correctamente." - -msgid "admin.settings.info.success" -msgstr "La información del sitio se ha actualizado correctamente." - -msgid "admin.settings.config.success" -msgstr "La configuración del sitio se ha actualizado correctamente." - -msgid "admin.settings.appearance.success" -msgstr "" -"La configuración de apariencia del sitio se ha actualizado correctamente." diff --git a/locale/es_ES/api.po b/locale/es_ES/api.po deleted file mode 100644 index 79fb40b6f52..00000000000 --- a/locale/es_ES/api.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-30 18:48+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish " -"\n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "api.submissions.403.contextRequired" -msgstr "" -"Para hacer o editar un envío debe hacer una solicitud al terminal API de la " -"editorial." - -msgid "api.submissions.403.cantChangeContext" -msgstr "No puede cambiar la editorial de un envío." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "La publicación que ha solicitado no forma parte de este envío." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "La publicación que ha solicitado no forma parte de esta editorial." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "" -"No tiene permiso para mover esta plantilla de correo electrónico a otra " -"editorial." - -msgid "api.submissions.400.submissionsNotFound" -msgstr "No se ha podido encontrar uno o más envíos de los que ha especificado." - -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Debe proporcionar uno o más identificadores de envío para añadirlos al " -"catálogo." diff --git a/locale/es_ES/author.po b/locale/es_ES/author.po deleted file mode 100644 index d0b472310a3..00000000000 --- a/locale/es_ES/author.po +++ /dev/null @@ -1,15 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-29 11:38+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "author.submit.notAccepting" -msgstr "Esta editorial no acepta envíos en este momento." diff --git a/locale/es_ES/default.po b/locale/es_ES/default.po deleted file mode 100644 index 2e02da07735..00000000000 --- a/locale/es_ES/default.po +++ /dev/null @@ -1,162 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish " -"\n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.genres.appendix" -msgstr "Apéndice" - -msgid "default.genres.bibliography" -msgstr "Bibliografía" - -msgid "default.genres.manuscript" -msgstr "Manuscrito de libro" - -msgid "default.genres.chapter" -msgstr "Manuscrito de capítulo" - -msgid "default.genres.glossary" -msgstr "Glosario" - -msgid "default.genres.index" -msgstr "Índice" - -msgid "default.genres.preface" -msgstr "Prefacio" - -msgid "default.genres.prospectus" -msgstr "Documento de proyecto" - -msgid "default.genres.table" -msgstr "Tabla" - -msgid "default.genres.figure" -msgstr "Figura" - -msgid "default.genres.photo" -msgstr "Foto" - -msgid "default.genres.illustration" -msgstr "Ilustración" - -msgid "default.genres.other" -msgstr "Otros" - -msgid "default.groups.name.editor" -msgstr "Coordinador editorial" - -msgid "default.groups.plural.editor" -msgstr "Coordinadores editoriales" - -msgid "default.groups.abbrev.editor" -msgstr "CE" - -msgid "default.groups.name.sectionEditor" -msgstr "Coordinador de obra" - -msgid "default.groups.plural.sectionEditor" -msgstr "Coordinadores de obra" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "CO" - -msgid "default.groups.name.chapterAuthor" -msgstr "Autor de capítulo" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Autores de capítulo" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "AC" - -msgid "default.groups.name.volumeEditor" -msgstr "Coordinador de obra" - -msgid "default.groups.plural.volumeEditor" -msgstr "Coordinadores de obra" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "CO" - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "La propuesta no ha sido publicada previamente, ni está bajo consideración de ninguna otra editorial (o se proporciona una explicación en \"Comentarios para la editorial\")." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "El fichero de la propuesta está en formato Microsoft Word, RTF o OpenDocument." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Se proporcionan las direcciones URLs de las referencias si están disponibles." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"El texto tiene interlineado simple, se utiliza una fuente de 12 puntos, " -"cursiva en lugar de subrayado (exceptuando las direcciones URL), y todas las " -"ilustraciones, figuras y tablas están dentro del texto en los lugares " -"apropiados en lugar de al final." - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "El texto se adhiere a los requisitos bibliográficos y de estilo indicados en las Directrices para autores, que se encuentran en Acerca de la editorial." - -msgid "default.contextSettings.privacyStatement" -msgstr "

      Los nombres y direcciones de correo electrónico introducidos en esta editorial se utilizarán exclusivamente para los fines declarados por la misma y no estarán disponibles para ningún otro propósito ni lugar.

      " - -msgid "default.contextSettings.openAccessPolicy" -msgstr "Esta editorial proporciona acceso abierto inmediato a su contenido bajo el principio de que hacer disponible la investigación, abiertamente al público, fomenta un mayor intercambio de conocimiento global." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
      \n" -"________________________________________________________________________
      \n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.contextSettings.forReaders" -msgstr "Los lectores pueden darse de alta en el servicio de notificación de novedades. Para ello, utiliza el enlace de Crear cuenta en la parte superior de la página. Este registro permitirá al lector recibir por correo electrónico la Tabla de Contenidos de cada novedad. Consulta la Declaración de Privacidad de la editorial que asegura a los lectores que su nombre y dirección de correo electrónico no será utilizada para otros fines." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"¿Le interesa hacer un envío a esta publicación? Le recomendamos que revise " -"los apartados Acerca de la " -"publicación, para obtener información sobre las políticas de sección, y <" -"a href=\"{$indexUrl}/{$contextPath}/about/submissions#authorGuidelines\">" -"Directrices para autores/as. Los autores/as deben registrarse en la publicación " -"antes realizar un envío o, si ya están registrados, simplemente iniciar sesión y empezar con el proceso de 5 " -"pasos." - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Animamos a los bibliotecarios/as a listar esta publicación en sus fondos de " -"publicaciones electrónicas. Además, este sistema de publicación de código " -"abierto es apropiado para que las bibliotecas lo ofrezcan a sus miembros " -"involucrados en la edición de publicaciones (ver Open Monograph Press)." - -msgid "default.groups.name.manager" -msgstr "Jefe/a editorial" - -msgid "default.groups.plural.manager" -msgstr "Jefes/as editoriales" - -msgid "default.groups.abbrev.manager" -msgstr "JE" - -msgid "default.groups.name.externalReviewer" -msgstr "Revisor/a externo" - -msgid "default.groups.plural.externalReviewer" -msgstr "Revisores/as externos" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "RE" diff --git a/locale/es_ES/editor.po b/locale/es_ES/editor.po deleted file mode 100644 index 6c65370a40c..00000000000 --- a/locale/es_ES/editor.po +++ /dev/null @@ -1,197 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2020-11-30 18:48+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.pressSignoff" -msgstr "Pulse Cerrar sesión" - -msgid "editor.submissionArchive" -msgstr "Archivo de envíos" - -msgid "editor.monograph.cancelReview" -msgstr "Cancelar solicitud" - -msgid "editor.monograph.clearReview" -msgstr "Eliminar revisor/a" - -msgid "editor.monograph.enterRecommendation" -msgstr "Introducir recomendación" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Introducir recomendación del revisor/a" - -msgid "editor.monograph.recommendation" -msgstr "Recomendación" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "Seleccione un revisor/a y pulse el botón \"Seleccionar revisor/a\" para continuar." - -msgid "editor.submission.selectedReviewer" -msgstr "Revisor/a seleccionado" - -msgid "editor.monograph.replaceReviewer" -msgstr "Reemplazar revisor/a" - -msgid "editor.monograph.editorToEnter" -msgstr "Recomendaciones/comentarios del editor/a para el revisor/a" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Cargar revisión" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Opciones de evaluación por pares" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Corrección de archivos" - -msgid "editor.monograph.internalReview" -msgstr "Iniciar revisión interna" - -msgid "editor.monograph.internalReviewDescription" -msgstr "Está a punto de iniciar una revisión interna para este envío. Los archivos que formen parte de este envío se enumeran abajo y se pueden seleccionar para su revisión." - -msgid "editor.monograph.externalReview" -msgstr "Iniciar revisión externa" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Seleccionar los archivos del borrador final" - -msgid "editor.monograph.final.currentFiles" -msgstr "Archivos actuales del borrador final" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Archivos actuales" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Mensaje al usuario" - -msgid "editor.monograph.legend.submissionActions" -msgstr "Acciones de envío" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Opciones y acciones generales de envío." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Acciones de sección" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "Opciones específicas de una sección determinada, por ejemplo, cargar archivos o añadir usuarios." - -msgid "editor.monograph.legend.itemActions" -msgstr "Acciones de elemento" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Acciones y opciones específicas de un archivo individual." - -msgid "editor.monograph.legend.catalogEntry" -msgstr "Ver y gestionar la entrada de catálogo del envío, incluso formatos de metadatos y publicación" - -msgid "editor.monograph.legend.bookInfo" -msgstr "Ver y gestionar metadatos, notas, notificaciones y el historial del envío" - -msgid "editor.monograph.legend.participants" -msgstr "Ver y gestionar los participantes de este envío: autores/as, editores/as, diseñadores/as, etc." - -msgid "editor.monograph.legend.add" -msgstr "Cargar un archivo a la sección" - -msgid "editor.monograph.legend.add_user" -msgstr "Añadir un usuario/a a la sección" - -msgid "editor.monograph.legend.settings" -msgstr "Ver y acceder a la configuración de elemento, como información y opciones de eliminación" - -msgid "editor.monograph.legend.more_info" -msgstr "Más información: notas de archivo, opciones de notificación e historial" - -msgid "editor.monograph.legend.notes_none" -msgstr "Información de archivo: notas, opciones de notificación e historial (sin notas todavía)" - -msgid "editor.monograph.legend.notes" -msgstr "Información de archivo: notas, opciones de notificación e historial (con notas)" - -msgid "editor.monograph.legend.notes_new" -msgstr "Información de archivo: notas, opciones de notificación e historial (nuevas notas añadidas desde la última visita)" - -msgid "editor.monograph.legend.edit" -msgstr "Editar elemento" - -msgid "editor.monograph.legend.delete" -msgstr "Eliminar elemento" - -msgid "editor.monograph.legend.in_progress" -msgstr "Acción en curso o incompleta" - -msgid "editor.monograph.legend.complete" -msgstr "Acción completa" - -msgid "editor.monograph.legend.uploaded" -msgstr "Archivo cargado por el rol en el título de la columna de cuadrícula" - -msgid "editor.submission.introduction" -msgstr "Durante el envío, el editor/a, después de consultar los archivos enviados, selecciona la acción adecuada (la cual incluye notificar al autor/a): enviar a revisión interna (implica seleccionar los archivos para la revisión interna), enviar a revisión externa (implica seleccionar los archivos para la revisión externa), aceptar el envío (implica seleccionar los archivos para la fase editorial), o rechazar el envío (envío de archivos)." - -msgid "editor.submission.editorial.finalDraftDescription" -msgstr "Para volúmenes editados con diferentes autores/as por capítulo, el archivo de envío puede dividirse en varios archivos de tamaño de un capítulo cada uno. Éstos se revisan por el autor/a de cada capítulo después de que los archivos corregidos se suban a Corrección de originales." - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Copia en limpio" - -msgid "editor.monograph.editorial.fairCopyDescription" -msgstr "El corrector/a sube una copia original o en limpio del envío para su revisión por el editor/a, antes de enviarla a producción." - -msgid "editor.submission.production.introduction" -msgstr "Durante la producción, el editor/a selecciona formatos del libro (por ejemplo digital, en rústica, etc) en Formatos de publicación, para los cuales el/la maquetista prepara archivos de calidad de publicación basándose en los archivos listos para producción. Los archivos de calidad de publicación se suben para cada formato en Pruebas de página, dónde se revisan. El libro se hace Disponible (i.e., publicado) para cada formato en Formatos de publicación, tras marcar la opción Pruebas como aprobada, y la entrada de Catálogo como incluida en la entrada de catálogo del libro." - -msgid "editor.submission.production.productionReadyFilesDescription" -msgstr "El/la maquetista prepara estos archivos para cada formato de publicación y después los sube a las Pruebas de página correspondientes para su corrección." - -msgid "editor.monograph.proofs" -msgstr "Pruebas" - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Aprobación y publicaciones" - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "Los diferentes formatos de publicación, como tapa dura, tapa blanda y digital, pueden cargarse a la sección Formatos de publicación que se ve a continuación. Se puede usar la cuadrícula de formatos de publicación mostrada a continuación, como una lista de comprobación de lo que todavía queda por hacer para publicar un formato de publicación." - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "Añadir formatos de publicación (p.ej., digital, en rústica) para los cuales el/la maquetista prepara pruebas de página para su corrección. Las Pruebas deben marcarse como aprobadas y la entrada de Catálogo para el formato debe marcarse como publicada en la entrada de catálogo del libro, antes de que un formato se pueda hacer Disponible (i.e., publicado)." - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Establecer condiciones para la descarga" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Establecer condiciones" - -msgid "editor.monograph.proof.addNote" -msgstr "Añadir respuesta" - -msgid "editor.internalReview.introduction" -msgstr "Durante la revisión interna, el editor/a asigna revisores/as internos a los archivos de envío y verifica los resultados de la revisión, antes de seleccionar la acción apropiada (la cual incluye notificar al autor/a): solicitar revisiones (revisiones hechas sólo por el editor/a), reenviar para revisión (se inicia otra ronda de revisiones), enviar para revisión externa (implica seleccionar los archivos para la revisión externa), aceptar el envío (implica seleccionar los archivos para la fase editorial), o rechazar el envío (archiva el envío)." - -msgid "editor.externalReview.introduction" -msgstr "Durante la revisión externa, el editor/a asigna revisores/as externos a los archivos de envío y verifica los resultados de la revisión, antes de seleccionar la acción apropiada (la cual incluye notificar al autor/a): solicitar revisiones (revisiones hechas sólo por el editor), reenviar a revisión (se inicia otra ronda de revisiones), aceptar el envío (implica seleccionar los archivos para la fase editorial), o rechazar el envío (el editor/a archiva el envío)." - -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "Cualquier fichero que ya haya sido subido en cualquier fase del envío puede añadirse al listado \"Ficheros de prueba\" marcando la siguiente casilla \"Añadir\" y pulsando \"Buscar\": todos los ficheros disponibles se listarán y podrán incluirse." - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "" -"El identificador público '{$publicIdentifier}' ya existe para otro objeto " -"del mismo tipo. Elija identificadores únicos para los objetos del mismo tipo." - -msgid "editor.submissions.assignedTo" -msgstr "Asignado a un editor/a" diff --git a/locale/es_ES/emails.po b/locale/es_ES/emails.po deleted file mode 100644 index bb27e3c53be..00000000000 --- a/locale/es_ES/emails.po +++ /dev/null @@ -1,862 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" -"PO-Revision-Date: 2020-06-20 09:39+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "emails.notification.subject" -msgstr "Nueva notificación de {$siteTitle}" - -msgid "emails.notification.body" -msgstr "" -"Tiene una notificación nueva de {$siteTitle}:
      \n" -"
      \n" -"{$notificationContents}
      \n" -"
      \n" -"Enlace: {$url}
      \n" -"
      \n" -"Esto es un correo electrónico generado automáticamente; no responda a este " -"mensaje.
      \n" -"{$principalContactSignature}" - -msgid "emails.notification.description" -msgstr "El correo electrónico se envía a los usuarios/as registrados que seleccionaron este tipo de notificación." - -msgid "emails.passwordResetConfirm.subject" -msgstr "Confirmación para restablecer la contraseña" - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"Se recibió una solicitud para restablecer su contraseña en la página web {$siteTitle}.
      \n" -"
      \n" -"Si no realizó esta solicitud, ignore este correo electrónico y su contraseña no se cambiará. Si desea restablecer su contraseña, haga clic en la dirección URL que aparece debajo.
      \n" -"
      \n" -"Restablecer contraseña: {$url}
      \n" -"
      \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.description" -msgstr "Este correo electrónico se envía a un usuario/a registrado cuando indica que olvidó su contraseña o cuando no puede iniciar sesión. Proporciona una dirección URL con la que se puede restablecer la contraseña." - -msgid "emails.passwordReset.subject" -msgstr "Restablecer contraseña" - -msgid "emails.passwordReset.body" -msgstr "" -"La contraseña se restableció con éxito en la página web {$siteTitle}. Recuerde el nombre de usuario/a y contraseña, son necesarios para trabajar en la publicación.
      \n" -"
      \n" -"Nombre de usuario/a: {$username}
      \n" -"Nueva contraseña: {$password}
      \n" -"
      \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.description" -msgstr "Este correo electrónico se envía a un usuario/a registrado cuando se restablece su contraseña con éxito tras seguir el proceso descrito en el correo RESTABLECER_CONTRASEÑA_CONFIRMACIÓN." - -msgid "emails.userRegister.subject" -msgstr "Registro en la publicación" - -msgid "emails.userRegister.body" -msgstr "" -"{$userFullName}
      \n" -"
      \n" -"Se registró como usuario/a con {$contextName}. En este correo electrónico hemos incluido el nombre de usuario/a y contraseña que necesitará para trabajar con esta publicación a través de su página web. En cualquier momento puede contactarse conmigo para pedir que se le elimine de la lista de usuarios/as.
      \n" -"
      \n" -"Nombre de usuario/a: {$username}
      \n" -"Contraseña: {$password}
      \n" -"
      \n" -"Gracias,
      \n" -"{$principalContactSignature}" - -msgid "emails.userRegister.description" -msgstr "Este correo electrónico se envía a un nuevo usuario/a registrado para darle la bienvenida al sistema y proporcionarle un documento con su nombre de usuario/a y contraseña." - -msgid "emails.userValidate.subject" -msgstr "Validar la cuenta" - -msgid "emails.userValidate.body" -msgstr "" -"{$userFullName}
      \n" -"
      \n" -"Creó una cuenta con {$contextName}, pero antes de empezar a utilizarla es necesario que valide su cuenta de correo electrónico. Para hacerlo, haga clic en el enlace que aparece debajo:
      \n" -"
      \n" -"{$activateUrl}
      \n" -"
      \n" -"Gracias,
      \n" -"{$principalContactSignature}" - -msgid "emails.userValidate.description" -msgstr "Este correo electrónico se envía a un nuevo usuario/a registrado para darle la bienvenida al sistema y proporcionarle un documento con su nombre de usuario/a y contraseña." - -msgid "emails.reviewerRegister.subject" -msgstr "Registro como revisor/a con {$contextName}" - -msgid "emails.reviewerRegister.body" -msgstr "" -"Dada su experiencia, nos hemos tomado la libertad de registrar su nombre en la base de datos de revisores/as para {$contextName}. Esto no implica ningún tipo de compromiso por su parte, simplemente permite que nos pongamos en contacto con usted si tenemos un envío que quizás pueda revisar. Si se le invita a realizar una revisión, tendrá la oportunidad de ver el título y el resumen de dicho trabajo y en todo momento podrá aceptar o rechazar la invitación. Asimismo, puede pedir que se elimine su nombre de la lista de revisores/as.
      \n" -"
      \n" -"Le proporcionamos un nombre de usuario/a y una contraseña que se utilizan para trabajar con la publicación a través de su página web. Si lo desea puede, por ejemplo, actualizar su perfil y sus preferencias de revisión.
      \n" -"
      \n" -"Nombre de usuario/a: {$username}
      \n" -"Contraseña: {$password}
      \n" -"
      \n" -"Gracias,
      \n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.description" -msgstr "Este correo electrónico se envía a un nuevo revisor/a registrado para darle la bienvenida al sistema y proporcionarle un documento con su nombre de usuario/a y contraseña." - -msgid "emails.publishNotify.subject" -msgstr "Nuevo libro publicado" - -msgid "emails.publishNotify.body" -msgstr "" -"Lectores/as:
      \n" -"
      \n" -"{$contextName} acaba de publicar su último libro en {$contextUrl}. Les invitamos a revisar la tabla de contenidos que les proporcionamos y a visitar nuestra página web para ver monografías y elementos de interés.
      \n" -"
      \n" -"Gracias por el interés mostrado en nuestro trabajo,
      \n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.description" -msgstr "Este correo electrónico se envía a los lectores/as registrados a través del enlace \"Notificar a los usuarios/as\" en el área personal del editor/a. Notifica a los lectores/as que se publicó un nuevo libro y les invita a visitar la publicación mediante la URL proporcionada." - -msgid "emails.submissionAck.subject" -msgstr "Acuse de recibo del envío" - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Gracias por enviar el manuscrito "{$submissionTitle}" a {$contextName}. Con el sistema de gestión de publicaciones en línea que utilizamos podrá seguir el progreso a través del proceso editorial tras iniciar sesión en el sitio web de la publicación:
      \n" -"
      \n" -"URL del manuscrito: {$submissionUrl}
      \n" -"Nombre de usuario/a: {$authorUsername}
      \n" -"
      \n" -"Si tiene alguna duda puede ponerse en contacto conmigo. Gracias por elegir esta editorial para mostrar su trabajo.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.description" -msgstr "Este correo electrónico, si está activado, se envía automáticamente a un autor/a cuando completa el proceso de envío de un manuscrito a la editorial. Proporciona información sobre el seguimiento del envío en el proceso y agradece al autor/a el envío." - -msgid "emails.submissionAckNotUser.subject" -msgstr "Acuse de recibo del envío" - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Hola:
      \n" -"
      \n" -"{$submitterName} envió el manuscrito "{$submissionTitle}" a {$contextName}.
      \n" -"
      \n" -"Si tiene alguna duda, puede ponerse en contacto conmigo. Gracias por elegir esta editorial para mostrar su trabajo.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.description" -msgstr "Este correo electrónico, si está activado, se envía automáticamente a otros autores/as que no son usuarios/as de OMP según lo especificado en el proceso de envío." - -msgid "emails.editorAssign.subject" -msgstr "Tarea editorial" - -msgid "emails.editorAssign.body" -msgstr "" -"{$editorialContactName}:
      \n" -"
      \n" -"El envío "{$submissionTitle}" a {$contextName} se le asignó para llevar a cabo el proceso editorial en calidad de editor/a.
      \n" -"
      \n" -"URL de envío: {$submissionUrl}
      \n" -"Nombre de usuario/a: {$editorUsername}
      \n" -"
      \n" -"Gracias," - -msgid "emails.editorAssign.description" -msgstr "Este correo electrónico notifica al editor/a de la serie que el editor/a le asignó la tarea de supervisar un envío a lo largo del proceso de edición. Proporciona información sobre el envío y sobre cómo acceder al sitio de la publicación." - -msgid "emails.reviewRequest.subject" -msgstr "Solicitud de revisión de manuscrito" - -msgid "emails.reviewRequest.body" -msgstr "" -"Estimado/a {$reviewerName}:
      \n" -"
      \n" -"{$messageToReviewer}
      \n" -"
      \n" -"Inicie sesión en el sitio web de la publicación antes del {$responseDueDate} para indicar si llevará o no a cabo la revisión, así como para acceder al envío y registrar su revisión y recomendación.
      \n" -"
      \n" -"La revisión debe estar preparada antes del {$reviewDueDate}.
      \n" -"
      \n" -"Dirección URL de envío: {$submissionReviewUrl}
      \n" -"
      \n" -"Nombre de usuario/a: {$reviewerUserName}
      \n" -"
      \n" -"Gracias por considerar esta solicitud.
      \n" -"
      \n" -"
      \n" -"Un saludo cordial,
      \n" -"{$editorialContactSignature}
      \n" -"" - -msgid "emails.reviewRequest.description" -msgstr "" -"Este correo electrónico del editor/a de la serie para el revisor/a solicita " -"que el revisor/a acepte o rechace la tarea de revisión de un envío. " -"Proporciona información sobre el envío, como el título y el resumen, una " -"fecha límite de revisión y cómo acceder al propio envío. Este mensaje se " -"utiliza cuando se selecciona el proceso de revisión estándar en Gestión > " -"Ajustes > Flujo de trabajo > Revisión. (Si no consulte " -"REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Solicitud de revisión de manuscrito" - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Creo que puede ser un excelente revisor/a para el manuscrito "{$submissionTitle}" que se envió a {$contextName}. El resumen del envío se incluye debajo. Espero que considere llevar a cabo esta importante tarea para nosotros.
      \n" -"
      \n" -"Inicie sesión en la página web de la publicación antes del {$weekLaterDate} para indicar si podrá o no realizar la revisión, así como para acceder al envío y registrar su revisión y recomendación.
      \n" -"
      \n" -"La revisión debe estar preparada antes del {$reviewDueDate}.
      \n" -"
      \n" -"Dirección URL del envío: {$submissionReviewUrl}
      \n" -"
      \n" -"Gracias por considerar esta solicitud.
      \n" -"
      \n" -"{$editorialContactSignature}
      \n" -"
      \n" -"
      \n" -"
      \n" -""{$submissionTitle}"
      \n" -"
      \n" -"{$abstractTermIfEnabled}
      \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.description" -msgstr "El editor/a de la serie envía este correo electrónico al revisor/a para solicitar a este último que acepte o rechace la tarea de revisión de un envío. Proporciona información sobre el envío, como el título y el resumen, una fecha límite para la revisión y cómo acceder al propio envío. Este mensaje se emplea cuando se selecciona el proceso de revisión estándar en Gestión > Configuración > Circuito de publicación > Revisión y el acceso al revisor/a con un solo clic está habilitado." - -msgid "emails.reviewRequestAttached.subject" -msgstr "Solicitud de revisión de manuscrito" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Creo que puede ser un excelente revisor/a para el manuscrito "{$submissionTitle}" , por ese motivo le pido que considere llevar a cabo esta importante tarea para nosotros. Las indicaciones para la revisión de la publicación se incluyen más abajo y el envío se adjunta al presente correo electrónico. Debe mandarme por correo electrónico la revisión que haga del envío, junto con su recomendación, antes del {$reviewDueDate}.
      \n" -"
      \n" -"Indique mediante un correo electrónico antes del {$weekLaterDate} si puede y desea realizar la revisión.
      \n" -"
      \n" -"Gracias por considerar la solicitud.
      \n" -"
      \n" -"{$editorialContactSignature}
      \n" -"
      \n" -"
      \n" -"Directrices para la revisión
      \n" -"
      \n" -"{$reviewGuidelines}
      \n" -"" - -msgid "emails.reviewRequestAttached.description" -msgstr "" -"El editor/a de la serie envía este correo electrónico al revisor/a para " -"solicitarle que acepte o rechace la tarea de revisión de un envío. Incluye " -"el envío como archivo adjunto. Este mensaje se utiliza cuando se selecciona " -"el proceso de revisión mediante archivos adjuntos a los correos electrónicos " -"en Gestión > Ajustes > Flujo de trabajo > Revisión. (Si no consulte " -"REVIEW_REQUEST.)" - -msgid "emails.reviewCancel.subject" -msgstr "Solicitud de revisión cancelada" - -msgid "emails.reviewCancel.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Hemos decidido cancelar nuestra solicitud de que usted revise el envío "{$submissionTitle}" para {$contextName}. Pedimos disculpas por cualquier inconveniente que esta decisión pueda causar y esperamos poder contar con usted para participar en este proceso de revisión en el futuro.
      \n" -"
      \n" -"Si tiene alguna duda, puede ponerse en contacto conmigo." - -msgid "emails.reviewCancel.description" -msgstr "El editor/a de la serie envía este correo al revisor/a que inició el proceso de revisión de un envío para notificarle que el mismo se canceló." - -msgid "emails.reviewConfirm.subject" -msgstr "Disponible para revisar" - -msgid "emails.reviewConfirm.body" -msgstr "" -"{$editorialContactName}:
      \n" -"
      \n" -"Estoy disponible y puedo revisar el envío "{$submissionTitle}" para {$contextName}. Gracias por pensar en mí. Tengo previsto completar la revisión en la fecha establecida, el {$reviewDueDate}, o antes.
      \n" -"
      \n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.description" -msgstr "El revisor/a envía este correo electrónico al editor/a de la serie como respuesta a la solicitud de revisión para notificar al editor/a de la serie que la solicitud se aceptó y que la revisión estará terminada en el plazo especificado." - -msgid "emails.reviewDecline.subject" -msgstr "No disponible para revisar" - -msgid "emails.reviewDecline.body" -msgstr "" -"{$editorialContactName}:
      \n" -"
      \n" -"Me temo que en este momento no puedo revisar el envío "{$submissionTitle}" para {$contextName}. Gracias por pensar en mí, pueden contar conmigo en futuras ocasiones.
      \n" -"
      \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.description" -msgstr "El revisor/a envía este correo electrónico al editor/a de la serie como respuesta a una solicitud de revisión para notificar al editor/a de la serie que la petición se rechazó." - -msgid "emails.reviewComplete.subject" -msgstr "Revisión del manuscrito completada" - -msgid "emails.reviewComplete.body" -msgstr "" -"{$editorialContactName}:
      \n" -"
      \n" -"He completado la revisión de "{$submissionTitle}" para {$contextName} y enviado la recomendación "{$recommendation}".
      \n" -"
      \n" -"{$reviewerName}" - -msgid "emails.reviewComplete.description" -msgstr "El revisor/a envía este correo electrónico al editor/a de la serie para notificarle que la revisión se completó y que los comentarios y recomendaciones se registraron en la página web de la publicación." - -msgid "emails.reviewAck.subject" -msgstr "Acuse de recibo de la revisión del manuscrito" - -msgid "emails.reviewAck.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Gracias por completar la revisión del envío "{$submissionTitle}" para {$contextName}. Agradecemos su aportación a la calidad de los trabajos que publicamos." - -msgid "emails.reviewAck.description" -msgstr "El editor/a de la serie envía este correo electrónico para confirmar la recepción de una revisión completada y dar las gracias al revisor/a por su contribución." - -msgid "emails.reviewRemind.subject" -msgstr "Recordatorio de revisión del envío" - -msgid "emails.reviewRemind.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Este es un pequeño recordatorio de que realizamos una solicitud para que revisara el envío "{$submissionTitle}" para {$contextName}. Esperábamos que la revisión estuviera lista para el {$reviewDueDate} y nos complacería recibirla tan pronto como la tenga preparada.
      \n" -"
      \n" -"En caso de no tener nombre de usuario/a y contraseña para la página web, puede usar este enlace para restablecer su contraseña (posteriormente se le enviará por correo electrónico junto con el nombre de usuario/a). {$passwordResetUrl}
      \n" -"
      \n" -"URL del envío: {$submissionReviewUrl}
      \n" -"
      \n" -"Nombre de usuario/a: {$reviewerUserName}
      \n" -"
      \n" -"Confirme que puede completar esta fundamental contribución al trabajo de la editorial. Espero tener noticias suyas.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemind.description" -msgstr "El editor/a de la serie envía este correo electrónico para recordar al revisor/a que finaliza el plazo de revisión." - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Recordatorio de revisión del envío" - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Este es un pequeño recordatorio de que realizamos una solicitud para que revisara el envío "{$submissionTitle}" para {$contextName}. Esperábamos que la revisión estuviera lista para el {$reviewDueDate} y nos complacería recibirla tan pronto como la tenga preparada.
      \n" -"
      \n" -"URL del envío: {$submissionReviewUrl}
      \n" -"
      \n" -"Confirme que puede completar esta contribución fundamental al trabajo de la editorial. Espero tener noticias suyas.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.description" -msgstr "El editor/a de la serie envía este correo electrónico para recordar al revisor/a que finaliza el plazo de revisión." - -msgid "emails.reviewRemindAuto.subject" -msgstr "Recordatorio automatizado de revisión del envío" - -msgid "emails.reviewRemindAuto.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Esto es un amable recordatorio de la solicitud de revisión que le hicimos " -"del envío "{$submissionTitle}," para {$contextName}. Esperábamos " -"que la revisión estuviera lista el {$reviewDueDate}. Este correo electrónico " -"se ha generado y enviado automáticamente porque se ha sobrepasado dicha " -"fecha. Aun así, todavía nos complacería recibirla tan pronto como pueda " -"tenerla lista.
      \n" -"
      \n" -"En caso de no tener nombre de usuario/a y contraseña para la página web, " -"puede usar este enlace para restablecer su contraseña (posteriormente se le " -"enviará por correo electrónico junto con su nombre de usuario/a). " -"{$passwordResetUrl}
      \n" -"
      \n" -"URL del envío: {$submissionReviewUrl}
      \n" -"
      \n" -"Nombre de usuario/a: {$reviewerUserName}
      \n" -"
      \n" -"Por favor, confírmenos su disponibilidad para completar esta fundamental " -"contribución para el trabajo de la publicación. Esperamos tener noticias " -"suyas.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.description" -msgstr "Este correo electrónico se envía automáticamente cuando se supera el plazo indicado al revisor/a (véase Opciones de revisión en Gestión > Configuración > Circuito de publicación > Revisión) y el acceso al revisor/a con un solo clic está deshabilitado. Las tareas programadas se deben habilitar y configurar (véase el archivo de configuración del sitio)." - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Recordatorio automatizado de revisión del envío" - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Este es un pequeño recordatorio de que realizamos una solicitud para que revisara el envío "{$submissionTitle}" para {$contextName}. Esperábamos que la revisión estuviera lista para el {$reviewDueDate}. Este correo electrónico se genera y envía automáticamente cuando se supera el plazo establecido. Aun así, nos complacería recibirla tan pronto como la tenga preparada.
      \n" -"
      \n" -"URL del envío: {$submissionReviewUrl}
      \n" -"
      \n" -"Confirme que puede completar esta contribución fundamental al trabajo de la editorial. Espero tener noticias suyas.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "Este correo se envía automáticamente cuando se supera el plazo indicado al revisor/a (véase Opciones de revisión en Gestión > Configuración > Circuito de publicación > Revisión) y el acceso al revisor/a con un solo clic está habilitado. Las tareas programadas se deben habilitar y configurar (véase el archivo de configuración del sitio)." - -msgid "emails.editorDecisionAccept.subject" -msgstr "Decisión del coordinador" - -msgid "emails.editorDecisionAccept.body" -msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Hemos tomado una decisión con respecto al envío que realizó a {$contextName}" -", "{$submissionTitle}".
      \n" -"
      \n" -"Nuestra decisión es:
      \n" -"
      \n" -"URL del manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionAccept.description" -msgstr "El editor/a o el editor/a de la serie envía este correo electrónico a un autor/a para notificar la decisión final con respecto a su envío." - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Decisión del coordinador" - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Hemos tomado una decisión con respecto al envío que realizó a {$contextName}" -", "{$submissionTitle}".
      \n" -"
      \n" -"Nuestra decisión es:
      \n" -"
      \n" -"URL del manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "El editor/a o el editor/a de la serie envía este correo electrónico a un autor/a para notificar la remisión de su envío a una revisión externa." - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Decisión del coordinador" - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"{$authorName}:
      \n" -"
      \n" -"La edición de su manuscrito, "{$submissionTitle}," se ha " -"completado. Procedemos ahora a enviarlo a producción.
      \n" -"
      \n" -"URL del manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "El editor/a o el editor/a de la serie envía este correo electrónico a un autor/a para notificar la remisión de su envío para producción." - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Decisión del coordinador" - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Hemos tomado una decisión con respecto al envío que realizó a {$contextName}" -", "{$submissionTitle}".
      \n" -"
      \n" -"Nuestra decisión es:
      \n" -"
      \n" -"URL del manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.description" -msgstr "El editor/a o el editor/a de la serie envía este correo electrónico a un autor/a para notificar la decisión final con respecto a su envío." - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Decisión del coordinador" - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Hemos tomado una decisión con respecto al envío que realizó a {$contextName}" -", "{$submissionTitle}".
      \n" -"
      \n" -"Nuestra decisión es:
      \n" -"
      \n" -"URL del manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.description" -msgstr "El editor/a o el editor/a de la serie envía este correo electrónico a un autor/a para notificar la decisión final con respecto a su envío." - -msgid "emails.editorDecisionDecline.subject" -msgstr "Decisión del coordinador" - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Hemos tomado una decisión con respecto al envío que realizó a {$contextName}" -", "{$submissionTitle}".
      \n" -"
      \n" -"Nuestra decisión es:
      \n" -"
      \n" -"URL del manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.description" -msgstr "El editor/a o el editor/a de la serie envía este correo electrónico a un autor/a para notificar la decisión final con respecto a su envío." - -msgid "emails.copyeditRequest.subject" -msgstr "Solicitud de corrección de originales" - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$copyeditorName}:
      \n" -"
      \n" -"Solicito que realice la corrección del original "{$submissionTitle}" para {$contextName} siguiendo los siguientes pasos.
      \n" -"1. Haga clic en la URL del envío que aparece debajo.
      \n" -"2. Inicie sesión en la publicación y haga clic en el archivo que aparece en el paso 1.
      \n" -"3. Consulte las Instrucciones de corrección publicadas en la página web.
      \n" -"4. Abra el archivo descargado, corríjalo y añada consultas al autor/a si es necesario.
      \n" -"5. Guarde el archivo corregido y súbalo al paso 1 de corrección.
      \n" -"6. Envíe el correo electrónico COMPLETO al editor/a.
      \n" -"
      \n" -"{$contextName} URL: {$contextUrl}
      \n" -"URL del envío: {$submissionCopyeditingUrl}
      \n" -"Nombre de usuario/a: {$copyeditorUsername}" - -msgid "emails.copyeditRequest.description" -msgstr "El editor/a de la serie envía este correo electrónico al corrector/a del envío para solicitar que se inicie el proceso de corrección. Proporciona información sobre el envío y cómo acceder al mismo." - -msgid "emails.layoutRequest.subject" -msgstr "Solicitud de galeradas" - -msgid "emails.layoutRequest.body" -msgstr "" -"{$layoutEditorName}:
      \n" -"
      \n" -"Es necesario extraer galeradas del envío "{$submissionTitle}" a {$contextName} siguiendo los siguientes pasos.
      \n" -"1. Haga clic en la URL del envío que aparece debajo.
      \n" -"2. Inicie sesión en la publicación y use el archivo Versión para maquetar para crear las galeradas según los estándares de publicación.
      \n" -"3. Envíe el correo electrónico COMPLETO al editor/a.
      \n" -"
      \n" -"{$contextName} URL: {$contextUrl}
      \n" -"URL del envío: {$submissionUrl}
      \n" -"Nombre de usuario/a: {$layoutEditorUsername}
      \n" -"
      \n" -"Si no puede realizar esta tarea en este momento o tiene alguna duda, póngase en contacto conmigo. Gracias por su contribución a la publicación." - -msgid "emails.layoutRequest.description" -msgstr "El editor/a de la serie envía este correo electrónico al maquetador/a para notificar que se les asignó la tarea de llevar a cabo la maquetación de un envío. Proporciona información sobre el envío y cómo acceder al mismo." - -msgid "emails.layoutComplete.subject" -msgstr "Galeradas de maquetación completadas" - -msgid "emails.layoutComplete.body" -msgstr "" -"{$editorialContactName}:
      \n" -"
      \n" -"Las galeradas para el manuscrito "{$submissionTitle}" para {$contextName} están preparadas y listas para la corrección de pruebas.
      \n" -"
      \n" -"Si tiene alguna duda, puede ponerse en contacto conmigo.
      \n" -"
      \n" -"{$signatureFullName}" - -msgid "emails.layoutComplete.description" -msgstr "El maquetador/a envía este correo electrónico al editor/a de la serie para notificar que el proceso de maquetación se completó." - -msgid "emails.indexRequest.subject" -msgstr "Solicitud de índice" - -msgid "emails.indexRequest.body" -msgstr "" -"{$indexerName}:
      \n" -"
      \n" -"Es necesario crear índices al envío "{$submissionTitle}" a {$contextName} siguiendo los siguientes pasos.
      \n" -"1. Haga clic en la URL del envío que aparece debajo.
      \n" -"2. Inicie sesión en la publicación y use el fichero Galeradas de la página para crear galeradas según los estándares de publicación.
      \n" -"3. Envíe el correo electrónico COMPLETO al editor/a.
      \n" -"
      \n" -"{$contextName} URL: {$contextUrl}
      \n" -"URL del envío: {$submissionUrl}
      \n" -"Nombre de usuario/a: {$indexerUsername}
      \n" -"
      \n" -"Si no puede realizar esta tarea en este momento o tiene alguna duda, póngase en contacto conmigo. Gracias por su contribución a la publicación.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.indexRequest.description" -msgstr "El editor/a de la serie envía este correo electrónico al indexador/a para notificar que se les asignó la tarea de creación de índices para un envío. Proporciona información sobre el envío y cómo acceder al mismo." - -msgid "emails.indexComplete.subject" -msgstr "Galeradas de índice completadas" - -msgid "emails.indexComplete.body" -msgstr "" -"{$editorialContactName}:
      \n" -"
      \n" -"Los índices para el manuscrito "{$submissionTitle}" para {$contextName} están preparados y listos para la corrección de pruebas.
      \n" -"
      \n" -"Si tiene alguna duda, puede ponerse en contacto conmigo.
      \n" -"
      \n" -"{$signatureFullName}" - -msgid "emails.indexComplete.description" -msgstr "El indexador/a envía este correo electrónico al editor/a de la serie para notificar que el proceso de creación de índices se completó." - -msgid "emails.emailLink.subject" -msgstr "Manuscrito de posible interés" - -msgid "emails.emailLink.body" -msgstr "Quizá le interese consultar "{$submissionTitle}" de {$authorName} publicado en el vol. {$volume}, n.º {$number} ({$year}) de {$contextName} en "{$monographUrl}"." - -msgid "emails.emailLink.description" -msgstr "Esta plantilla de correo electrónico da al lector/a registrado la oportunidad de enviar información sobre una monografía a alguien que pueda estar interesado. Está disponible en las Herramientas de lectura y debe ser habilitada por el jefe/a editorial en la página de Administración de herramientas de lectura." - -msgid "emails.notifySubmission.subject" -msgstr "Notificación de envío" - -msgid "emails.notifySubmission.body" -msgstr "" -"Tiene un mensaje de {$sender} en relación con "{$submissionTitle}" ({$monographDetailsUrl}):
      \n" -"
      \n" -"\t\t{$message}
      \n" -"
      \n" -"\t\t" - -msgid "emails.notifySubmission.description" -msgstr "Notificación de un usuario/a enviada desde un centro de información sobre envíos." - -msgid "emails.notifyFile.subject" -msgstr "Notificación de envío de fichero" - -msgid "emails.notifyFile.body" -msgstr "" -"Tiene un mensaje de {$sender} en relación con el fichero "{$fileName}" en "{$submissionTitle}" ({$monographDetailsUrl}):
      \n" -"
      \n" -"\t\t{$message}
      \n" -"
      \n" -"\t\t" - -msgid "emails.notifyFile.description" -msgstr "Notificación de un usuario/a enviada desde un centro de información sobre archivos" - -msgid "emails.notificationCenterDefault.subject" -msgstr "Mensaje sobre {$contextName}" - -msgid "emails.notificationCenterDefault.body" -msgstr "Introduzca su mensaje." - -msgid "emails.notificationCenterDefault.description" -msgstr "El mensaje por defecto (en blanco) usado en el Creador de listas de mensajes del Centro de notificación." - -msgid "emails.statisticsReportNotification.description" -msgstr "" -"Este correo electrónico se envía automáticamente cada mes a los editores/as " -"y gestores/as de revistas para proporcionarles una visión general del estado " -"de salud del sistema." - -msgid "emails.statisticsReportNotification.subject" -msgstr "Actividad editorial del {$month}, {$year}" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "" -"Este correo electrónico se envía al autor si el editor rechaza inicialmente " -"su presentación, antes de la etapa de revisión" - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Decisión del editor/a" - -msgid "emails.editorRecommendation.subject" -msgstr "Recomendación del editor/a" - -msgid "emails.reviewReinstate.subject" -msgstr "Solicitud de revisión restablecida" - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Solicitud de revisión del manuscrito" - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Solicitud de revisión del manuscrito" - -msgid "emails.editorRecommendation.description" -msgstr "" -"Este correo electrónico del Editor o Editor de Sección recomendando a los " -"Editores o Editores de Sección a quienes se les notifica una recomendación " -"final con respecto a la presentación." - -msgid "emails.reviewReinstate.description" -msgstr "" -"Este correo electrónico es enviado por el Editor de Sección a un Revisor que " -"tiene una revisión en curso para notificarle que la revisión ha sido " -"cancelada." - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "" -"Este correo electrónico se envía automáticamente cuando transcurre la fecha " -"de vencimiento de la confirmación de un revisor (consulte Opciones de " -"revisión en Configuración > Flujo de trabajo > Revisión) y se habilita el " -"acceso de revisor con un solo clic. Las tareas programadas deben estar " -"habilitadas y configuradas (consulte el archivo de configuración del sitio)." - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "" -"Este correo electrónico se envía automáticamente cuando transcurre la fecha " -"de vencimiento de la confirmación de un revisor (consulte Opciones de " -"revisión en Configuración > Flujo de trabajo > Revisar) y el acceso del " -"revisor con un solo clic está deshabilitado. Las tareas programadas deben " -"estar habilitadas y configuradas (consulte el archivo de configuración del " -"sitio)." - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Estimado/a {$reviewerName},
      \n" -"Sólo un sutil recordatorio de nuestra solicitud de la revisión de su " -"presentación, "{$submissionTitle}," para {$contextName}. Esperamos " -"tener una respuesta para el {$responseDueDate}, y este correo electrónico " -"ha sido generado y enviado automáticamente en tanto dicha fecha ya ha " -"transcurrido.\n" -"
      \n" -"{$messageToReviewer}
      \n" -"
      \n" -"Inicie sesión en el sitio web de la editorial para indicar si realizará la " -"revisión o no, así como para acceder a la presentación y registrar su " -"revisión y recomendación..
      \n" -"
      \n" -"La revisión en sí misma está prevista para el día {$reviewDueDate}.
      \n" -"
      \n" -"URL del envío: {$submissionReviewUrl}
      \n" -"
      \n" -"Nombre de usuario: {$reviewerUserName}
      \n" -"
      \n" -"Gracias por considerar esta solicitud.
      \n" -"
      \n" -"
      \n" -"Sinceramente,
      \n" -"{$editorialContactSignature}
      \n" - -msgid "emails.editorRecommendation.body" -msgstr "" -"{$editors}:
      \n" -"
      \n" -"La recomendación respecto a la presentación {$contextName}, " -""{$submissionTitle}" es: {$recommendation}" - -msgid "emails.reviewReinstate.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Nos gustaría restablecer la solicitud que le hicimos para revisar la " -"presentación, "{$submissionTitle}," para {$contextName}. Esperamos " -"que nos pueda ayudar en este proceso de revisión de la publicación.
      \n" -"
      \n" -"Si tiene cualquier pregunta no dude en contactarme." - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
      \n" -"Le recordamos nuestra petición acerca de la revisión del envío " -""{$submissionTitle}," para {$contextName}. Esperamos tener esta " -"revisión como muy tarde para el {$responseDueDate}, por lo cual este correo " -"electrónico se ha generado automáticamente y se ha enviado una vez pasada " -"dicha fecha.\n" -"
      \n" -"El resumen del envío se ha insertado a continuación. Creemos que sería un " -"excelente revisor para este artículo, por lo que esperamos que reconsidere " -"llevar a cabo esta importante tarea para nosotros.
      \n" -"
      \n" -"Por favor, ingrese en la página web de la publicación para indicar si " -"realizará o no la revisión; y en caso afirmativo, para acceder al envío y " -"registrar su revisión y su recomendación.
      \n" -"
      \n" -"La fecha límite para la revisión es el {$reviewDueDate}.
      \n" -"
      \n" -"URL de la propuesta: {$submissionReviewUrl}
      \n" -"
      \n" -"Gracias por considerar esta propuesta.
      \n" -"
      \n" -"{$editorialContactSignature}
      \n" -"
      \n" -"
      \n" -"
      \n" -""{$submissionTitle}"
      \n" -"
      \n" -"{$abstractTermIfEnabled}
      \n" -"{$submissionAbstract}" - -msgid "emails.statisticsReportNotification.body" -msgstr "" -"\n" -"{$name},
      \n" -"
      \n" -"El informe editorial al {$month}, {$year} ya está disponible. Las " -"estadísticas fundamentales del mes son las siguientes.
      \n" -"
        \n" -"\t
      • Nuevas contribuciones del mes: {$newSubmissions}
      • \n" -"\t
      • Contribuciones rechazadas del mes: {$declinedSubmissions}
      • \n" -"\t
      • Contribuciones aceptadas del mes: {$acceptedSubmissions}
      • \n" -"\t
      • Contribuciones totales al sistema: {$totalSubmissions}
      • \n" -"
      \n" -"Inicie sesión para obtener mayores detalles de sus tendencias editoriales y estadísticas de artículos publicados. Se " -"adjunta una copia completa de este informe correspondiente a este mes.
      " -"\n" -"
      \n" -"Sinceramente,
      \n" -"{$principalContactSignature}" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\t{$authorName}:
      \n" -"
      \n" -"Hemos llegado a una decisión respecto de su presentación {$contextName}, " -""{$submissionTitle}".
      \n" -"
      \n" -"Nuestra decisión es: rechazar la presentación
      \n" -"
      \n" -"URL del manuscripto: {$submissionUrl}\n" -"\t\t" - -msgid "emails.announcement.description" -msgstr "Este correo electrónico se envía cuando se crea un aviso nuevo." - -msgid "emails.announcement.body" -msgstr "" -"{$title}
      \n" -"
      \n" -"{$summary}
      \n" -"
      \n" -"Visite nuestra página web para leer el aviso completo." - -msgid "emails.announcement.subject" -msgstr "{$title}" diff --git a/locale/es_ES/locale.po b/locale/es_ES/locale.po deleted file mode 100644 index 3e14ff59be5..00000000000 --- a/locale/es_ES/locale.po +++ /dev/null @@ -1,1599 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2020-11-30 18:48+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "monograph.audience" -msgstr "Tipo de lector" - -msgid "monograph.coverImage" -msgstr "Imagen de portada" - -msgid "monograph.coverImage.uploadInstructions" -msgstr "Asegúrate de que la altura de la imagen no sea más grande que el 150% de su anchura. De lo contrario el carrusel no mostrará toda la portada." - -msgid "monograph.audience.rangeQualifier" -msgstr "Calificador de la variedad de lector" - -msgid "monograph.audience.rangeFrom" -msgstr "Variedad de lector (de)" - -msgid "monograph.audience.rangeTo" -msgstr "Variedad de lector (a)" - -msgid "monograph.audience.rangeExact" -msgstr "Variedad de lector (exacto)" - -msgid "monograph.languages" -msgstr "Idiomas (español, inglés, francés)" - -msgid "monograph.publicationFormats" -msgstr "Formatos de publicación" - -msgid "monograph.carousel.publicationFormats" -msgstr "Formatos:" - -msgid "monograph.type" -msgstr "Tipo de propuesta" - -msgid "submission.pageProofs" -msgstr "Galeradas" - -msgid "monograph.proofReadingDescription" -msgstr "El maquetador/a sube aquí los archivos listos para producción que se prepararon para publicar. Utilice +Asignar para designar a los autores/as y a otras personas que harán la corrección de pruebas de las galeradas con los archivos corregidos y subidos para su aprobación antes de publicarse." - -msgid "monograph.task.addNote" -msgstr "Añadir a tarea" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Acceso abierto" - -msgid "monograph.publicationFormat.imprint" -msgstr "Imprimir (nombre de marca)" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Número de páginas" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Prólogo" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Epílogo" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Composición del producto" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Detalle del producto (opcional)" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Identificación del producto" - -msgid "monograph.publicationFormat.price" -msgstr "Precio" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Se necesita un precio." - -msgid "monograph.publicationFormat.priceType" -msgstr "Tipo de precio" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Porcentaje de descuento, si es aplicable" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Disponibilidad del producto" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Indicador de devoluciones" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Información digital" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Dimensiones físicas" - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Tamaño del fichero en MB" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "¿Deseas introducir un valor personalizado para el tamaño del fichero?" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Altura" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Grosor" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Peso" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Anchura" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "País de fabricación" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Protección técnica digital" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Región de distribución del producto" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Tipo impositivo" - -msgid "monograph.publicationFormat.taxType" -msgstr "Tipo de impuesto" - -msgid "monograph.publicationFormat.isApproved" -msgstr "Incluir los metadatos de este formato de publicación en la entrada de catálogo de este libro." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Ausencia de mercados y precios." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Ausencia de código de identificación." - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Ausencia de varios campos de metadatos." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "

      El formato de publicación escogido para la monografía ya no existe.

      " - -msgid "monograph.publicationFormat.openTab" -msgstr "Pestaña de formato de publicación abierta." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Formato de publicación" - -msgid "grid.catalogEntry.nameRequired" -msgstr "Se necesita un nombre." - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Se requiere un precio válido." - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Detalles de formato" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Formato físico" - -msgid "grid.catalogEntry.monographRequired" -msgstr "Se requiere una identificación de la monografía." - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Debe elegirse un formato de publicación." - -msgid "grid.catalogEntry.isAvailable" -msgstr "Disponible" - -msgid "grid.catalogEntry.proof" -msgstr "Prueba" - -msgid "grid.catalogEntry.availablePublicationFormat.title" -msgstr "Aprobación de formato" - -msgid "grid.catalogEntry.availablePublicationFormat.message" -msgstr "

      El formato estará disponible para los lectores/as mediante archivos descargables que se encontrarán junto a la entrada de catálogo del libro y mediante otras opciones que la editorial ofrezca para distribuir el libro.

      " - -msgid "grid.catalogEntry.availablePublicationFormat.removeMessage" -msgstr "

      El formato ya no estará disponible para los lectores/as mediante archivos descargables que antes se encontraban junto a la entrada de catálogo del libro ni mediante otras opciones que la editorial ofrezca para distribuir el libro.

      " - -msgid "grid.catalogEntry.availablePublicationFormat.catalogNotApprovedWarning" -msgstr "Entrada de catálogo no aprobada." - -msgid "grid.catalogEntry.availablePublicationFormat.notApprovedWarning" -msgstr "Formato no en entrada de catálogo" - -msgid "grid.catalogEntry.availablePublicationFormat.proofNotApproved" -msgstr "Prueba no aprobada." - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Se requiere un tamaño de archivo para formatos digitales." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Se requiere un código de disponibilidad del producto." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Se debe elegir un código de composición del producto." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Valor de código" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "Tipo de código ONIX" - -msgid "grid.catalogEntry.codeRequired" -msgstr "Especifique un código." - -msgid "grid.catalogEntry.valueRequired" -msgstr "Se requiere un valor." - -msgid "grid.catalogEntry.salesRights" -msgstr "Derechos de venta" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Valor de código" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Tipo de derechos de venta" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "¿Resto del mundo?" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "Marque la casilla para utilizar la entrada de Derechos de venta como filtro para formato. En este caso no es necesario elegir países ni regiones." - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "Ya existe un tipo de ventas RDM definido para este formato de publicación." - -msgid "grid.catalogEntry.countries" -msgstr "Países" - -msgid "grid.catalogEntry.regions" -msgstr "Regiones" - -msgid "grid.catalogEntry.included" -msgstr "Incluidos" - -msgid "grid.catalogEntry.excluded" -msgstr "Excluidos" - -msgid "grid.catalogEntry.markets" -msgstr "Territorios de mercado" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Territorio" - -msgid "grid.catalogEntry.publicationDates" -msgstr "Fechas de publicación" - -msgid "grid.catalogEntry.roleRequired" -msgstr "Especifique un rol del representante." - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Se requiere formato de fecha." - -msgid "grid.catalogEntry.dateValue" -msgstr "Fecha" - -msgid "grid.catalogEntry.dateRole" -msgstr "Rol" - -msgid "grid.catalogEntry.dateFormat" -msgstr "Formato de fecha" - -msgid "grid.catalogEntry.dateRequired" -msgstr "Se requiere fecha y el valor de la fecha debe corresponder con el formato de fecha elegido." - -msgid "grid.catalogEntry.representatives" -msgstr "Representantes" - -msgid "grid.catalogEntry.representativeType" -msgstr "Tipo de representante" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agentes" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Proveedores" - -msgid "grid.catalogEntry.agent" -msgstr "Agente" - -msgid "grid.catalogEntry.agentTip" -msgstr "Puede asignar a un agente para que le represente en el territorio definido. No se necesita." - -msgid "grid.catalogEntry.supplier" -msgstr "Proveedor" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Elegir una función:" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Rol" - -msgid "grid.catalogEntry.representativeName" -msgstr "Nombre" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Teléfono" - -msgid "grid.catalogEntry.representativeFax" -msgstr "Fax" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "Dirección de correo electrónico" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Página web" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Identificación del representante" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Tipo de identificación del representante ( GLN recomendado)" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "Puedes dejar vacía la siguiente sección si proporcionas tus propios servicios a tus clientes." - -msgid "grid.action.addRepresentative" -msgstr "Añadir representante" - -msgid "grid.action.editRepresentative" -msgstr "Editar este representante" - -msgid "grid.action.deleteRepresentative" -msgstr "Borrar este representante" - -msgid "spotlight.spotlights" -msgstr "Destacados" - -msgid "spotlight.noneExist" -msgstr "No existen destacados actualmente." - -msgid "spotlight.title.homePage" -msgstr "En primer plano" - -msgid "spotlight.author" -msgstr "Autor, " - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Elemento destacado" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Página de inicio" - -msgid "grid.content.spotlights.category.sidebar" -msgstr "Barra lateral" - -msgid "grid.content.spotlights.form.location" -msgstr "Localización destacada" - -msgid "grid.content.spotlights.form.item" -msgstr "Introducir título destacado (autocompletar)" - -msgid "grid.content.spotlights.form.title" -msgstr "Título destacado" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Libro" - -msgid "grid.content.spotlights.itemRequired" -msgstr "Se necesita un elemento." - -msgid "grid.content.spotlights.titleRequired" -msgstr "Se necesita un título destacado." - -msgid "grid.content.spotlights.locationRequired" -msgstr "Elige una localización para este destacado." - -msgid "grid.action.editSpotlight" -msgstr "Editar este destacado" - -msgid "grid.action.deleteSpotlight" -msgstr "Borrar este destacado" - -msgid "grid.action.addSpotlight" -msgstr "Añadir destacado" - -msgid "manager.series.open" -msgstr "Propuestas abiertas" - -msgid "manager.series.indexed" -msgstr "Indizado" - -msgid "grid.libraryFiles.column.files" -msgstr "Archivos" - -msgid "grid.action.catalogEntry" -msgstr "Ver registro en el catálogo" - -msgid "grid.action.formatInCatalogEntry" -msgstr "El formato aparece en el catálogo" - -msgid "grid.action.editFormat" -msgstr "Editar este formato" - -msgid "grid.action.deleteFormat" -msgstr "Borrar este formato" - -msgid "grid.action.addFormat" -msgstr "Añadir formato de publicación" - -msgid "grid.action.approveProof" -msgstr "Aprobar la prueba para la indexación e inclusión en el catálogo" - -msgid "grid.action.pageProofApproved" -msgstr "La página prueba que el fichero está listo para su publicación" - -msgid "grid.action.addAnnouncement" -msgstr "Añadir aviso" - -msgid "grid.action.newCatalogEntry" -msgstr "Nueva entrada de catálogo" - -msgid "grid.action.publicCatalog" -msgstr "Ver elemento en el catálogo" - -msgid "grid.action.feature" -msgstr "Cambiar visualización de características" - -msgid "grid.action.featureMonograph" -msgstr "Destacar en el carrusel" - -msgid "grid.action.releaseMonograph" -msgstr "Marcar la propuesta como \"novedad\"" - -msgid "grid.action.manageCategories" -msgstr "Configurar categorías para la edición" - -msgid "grid.action.manageSeries" -msgstr "Configurar series para la edición" - -msgid "grid.action.editApprovedProof" -msgstr "Editar esta prueba aprobada" - -msgid "grid.action.addCode" -msgstr "Añadir código" - -msgid "grid.action.editCode" -msgstr "Editar código" - -msgid "grid.action.deleteCode" -msgstr "Borrar código" - -msgid "grid.action.addRights" -msgstr "Añadir derechos de venta" - -msgid "grid.action.editRights" -msgstr "Edit derechos" - -msgid "grid.action.deleteRights" -msgstr "Borrar estos derechos" - -msgid "grid.action.addMarket" -msgstr "Añadir mercado" - -msgid "grid.action.editMarket" -msgstr "Editar este mercado" - -msgid "grid.action.deleteMarket" -msgstr "Borrar este mercado" - -msgid "grid.action.addDate" -msgstr "Añadir fecha de publicación" - -msgid "grid.action.editDate" -msgstr "Editar esta fecha" - -msgid "grid.action.deleteDate" -msgstr "Borrar esta fecha" - -msgid "grid.action.createContext" -msgstr "Crear nueva publicación" - -msgid "grid.action.publicationFormatTab" -msgstr "Mostrar la pestaña de formato de publicación" - -msgid "grid.action.moreAnnouncements" -msgstr "Ir a página de comunicados de prensa" - -msgid "grid.action.submissionEmail" -msgstr "Hacer clic para leer el correo electrónico" - -msgid "grid.action.approveProofs" -msgstr "Ver cuadrícula de las pruebas" - -msgid "grid.action.proofApproved" -msgstr "Se ha comprobado el formato" - -msgid "grid.action.availablePublicationFormat" -msgstr "Aprobar / no aprobar este formato" - -msgid "grid.action.formatAvailable" -msgstr "El formato está disponible y publicado" - -msgid "grid.reviewAttachments.add" -msgstr "Añadir archivo a la revisión" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Ficheros disponibles" - -msgid "series.series" -msgstr "Colección" - -msgid "series.featured" -msgstr "Presentados" - -msgid "series.featured.description" -msgstr "Esta colección aparecerá en la navegación principal" - -msgid "series.path" -msgstr "Ruta" - -msgid "catalog.manage" -msgstr "Gestión del catálogo" - -msgid "catalog.manage.homepage" -msgstr "Página de inicio" - -msgid "catalog.manage.newReleases" -msgstr "Novedades" - -msgid "catalog.manage.category" -msgstr "Categorías" - -msgid "catalog.manage.series" -msgstr "Colección" - -msgid "catalog.manage.managementIntroduction" -msgstr "Bienvenido/a a la gestión del catálogo. Desde esta página puede publicar nuevas entradas de catálogo; revisar y configurar la lista de libros destacados, la lista de novedades y los libros por categoría y colección." - -msgid "catalog.selectSeries" -msgstr "Seleccionar colección" - -msgid "catalog.selectCategory" -msgstr "Seleccionar categoría" - -msgid "catalog.manage.entryDescription" -msgstr "Para citar un libro en el catálogo, seleccione la pestaña Monografía y complete la información necesaria. La información sobre todos los formatos del libro se puede incluir en la entrada del catálogo seleccionando la pestaña de formato. Las especificaciones de los metadatos se basan en ONIX for Books, un estándar internacional que utilizan las editoriales para publicar la información del producto." - -msgid "catalog.manage.spotlightDescription" -msgstr "Tres destacados (por ejemplo, como Libro Destacado) pueden aparecer en la página de inicio, con título, imagen, y texto." - -msgid "catalog.manage.homepageDescription" -msgstr "La imagen de portada de los libros seleccionados aparece en la parte superior de la página de inicio como un conjunto desplazable. Haga clic en \"Destacar\" y después en la estrella para añadir el libro al visor. Haga clic en el signo de exclamación para marcarlo como novedad y arrastre y suelte para ordenarlo." - -msgid "catalog.manage.categoryDescription" -msgstr "Haz clic en \"destacar\"; después haz clic en la estrella para seleccionar un libro destacado para esta categoría; arrastra y y suelta para ordenar." - -msgid "catalog.manage.seriesDescription" -msgstr "Haga clic en \"Destacar\" y después en la estrella para seleccionar un libro destacado de la colección; arrastre y suelte para ordenarlo. La colección se identifica con un título de editor/as y de serie, dentro de una categoría o independientemente." - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Carrusel" - -msgid "catalog.manage.newRelease" -msgstr "Publicación" - -msgid "catalog.manage.manageSeries" -msgstr "Gestionar colecciones" - -msgid "catalog.manage.manageCategories" -msgstr "Gestionar categorías" - -msgid "catalog.manage.noMonographs" -msgstr "No existen monografías asignadas." - -msgid "catalog.feature" -msgstr "Destacar" - -msgid "catalog.featuredBooks" -msgstr "Libros destacados" - -msgid "catalog.dateAdded" -msgstr "Añadido" - -msgid "catalog.publicationInfo" -msgstr "Información de publicación" - -msgid "catalog.relatedCategories" -msgstr "Categorías relacionadas" - -msgid "catalog.aboutTheAuthor" -msgstr "Acerca de {$roleName}" - -msgid "catalog.noBioInfo" -msgstr "Ninguna biografía disponible actualmente." - -msgid "catalog.loginRequiredForPayment" -msgstr "Nota: Para comprar elementos, es necesario iniciar sesión. Al seleccionar un elemento para comprarlo, será redirigido a la página de inicio de sesión. Se pueden descargar gratis todos los elementos marcados con el icono Acceso abierto sin necesidad de iniciar sesión." - -msgid "common.prefix" -msgstr "Prefijo" - -msgid "common.preview" -msgstr "Previsualizar" - -msgid "common.feature" -msgstr "Destacar" - -msgid "common.searchCatalog" -msgstr "Buscar aquí" - -msgid "common.moreInfo" -msgstr "Más información" - -msgid "common.plusMore" -msgstr "+ Más" - -msgid "common.listbuilder.completeForm" -msgstr "Rellene todo el formulario." - -msgid "common.listbuilder.selectValidOption" -msgstr "Seleccione una opción válida de la lista." - -msgid "common.listbuilder.itemExists" -msgstr "No puede añadir el mismo elemento dos veces." - -msgid "common.catalogInformation" -msgstr "La información de catálogo no necesita completarse en una propuesta inicial de la obra, a excepción de Título y Resumen." - -msgid "common.prefixAndTitle.tip" -msgstr "Si el título del libro comienza con \"Un/a\" o \"El/La/Los/Las\" (o algo similar que no deba incluirse por orden alfabético) añade la palabra como prefijo." - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.homePageHeader.altText" -msgstr "Cabecera de inicio" - -msgid "navigation.catalog" -msgstr "Catálogo" - -msgid "navigation.competingInterestPolicy" -msgstr "Política de conflicto de intereses" - -msgid "navigation.catalog.manage" -msgstr "Administrar" - -msgid "navigation.catalog.administration.short" -msgstr "Administración" - -msgid "navigation.catalog.administration" -msgstr "Administración del catálogo" - -msgid "navigation.catalog.administration.categories" -msgstr "Categorías" - -msgid "navigation.catalog.administration.series" -msgstr "Colección" - -msgid "navigation.infoForAuthors" -msgstr "Para autores" - -msgid "navigation.infoForLibrarians" -msgstr "Para bibliotecarios" - -msgid "navigation.infoForAuthors.long" -msgstr "Información para autores" - -msgid "navigation.infoForLibrarians.long" -msgstr "Información para bibliotecas" - -msgid "navigation.newReleases" -msgstr "Novedades" - -msgid "navigation.published" -msgstr "Publicado" - -msgid "navigation.wizard" -msgstr "Asistente" - -msgid "navigation.linksAndMedia" -msgstr "Enlaces y redes sociales" - -msgid "context.contexts" -msgstr "Editoriales" - -msgid "context.context" -msgstr "Editorial" - -msgid "context.select" -msgstr "Cambiar a otra editorial:" - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Incluir usuarios/as sin roles en la publicación." - -msgid "user.noRoles.submitMonograph" -msgstr "Presentar una propuesta" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "" -"Enviar una monografía: el registro de autor/a se encuentra actualmente " -"deshabilitado." - -msgid "user.noRoles.regReviewer" -msgstr "Registrarse como corrector" - -msgid "user.noRoles.regReviewerClosed" -msgstr "Registrarse como corrector: El registro del corrector se encuentra actualmente deshabilitado." - -msgid "user.role.manager" -msgstr "Gestor editorial" - -msgid "user.role.pressEditor" -msgstr "Editor editorial" - -msgid "user.role.seriesEditor" -msgstr "Editor/a de la colección" - -msgid "user.role.copyeditor" -msgstr "Corrector/a de originales" - -msgid "user.role.proofreader" -msgstr "Corrector/a de pruebas" - -msgid "user.role.productionEditor" -msgstr "Editor/a de producción" - -msgid "user.role.managers" -msgstr "Gestores/as editoriales" - -msgid "user.role.seriesEditors" -msgstr "Editores de la colección" - -msgid "user.role.editors" -msgstr "Editores/as" - -msgid "user.role.copyeditors" -msgstr "Correctores/as de originales" - -msgid "user.role.proofreaders" -msgstr "Correctores/as de pruebas" - -msgid "user.role.productionEditors" -msgstr "Editores/as de producción" - -msgid "user.register.completeForm" -msgstr "Complete el formulario para registrarse en la publicación." - -msgid "user.register.selectContext" -msgstr "Seleccione una editorial en la que registrarse:" - -msgid "user.register.noContexts" -msgstr "No hay editoriales en las que registrarse en este sitio." - -msgid "user.register.privacyStatement" -msgstr "Declaración de privacidad" - -msgid "user.register.alreadyRegisteredOtherContext" -msgstr "Haga clic aquí si ya está registrado en el sitio con esta o con otra publicación." - -msgid "user.register.notAlreadyRegisteredOtherContext" -msgstr "Haga clic aquí si todavía no está registrado en el sitio con esta o con otra publicación." - -msgid "user.register.loginToRegister" -msgstr "Introduce tu nombre de usuario actual y contraseña para registrarte con esta editorial." - -msgid "user.register.registrationDisabled" -msgstr "Esta editorial no acepta cuentas de usuarios actualmente." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "La contraseña que has introducido no es lo suficientemente larga." - -msgid "user.register.readerDescription" -msgstr "Publicación de una monografía notificada por correo electrónico." - -msgid "user.register.authorDescription" -msgstr "Es posible presentar elementos a la editorial." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Dispuesto a presentar una revisión por pares de las propuestas a la editorial." - -msgid "user.register.reviewerDescription" -msgstr "Dispuesto a presentar una revisión por pares de las propuestas a la página." - -msgid "user.register.reviewerInterests" -msgstr "Identificar los intereses de la revisión (áreas sustantivas y métodos de investigación):" - -msgid "user.register.form.userGroupRequired" -msgstr "Debe seleccionar por lo menos un rol" - -msgid "user.register.form.privacyConsentThisContext" -msgstr "" -"Sí, acepto que mis datos sean recopilados y almacenados según la declaración de privacidad de esta " -"editorial." - -msgid "site.noPresses" -msgstr "No hay editoriales disponibles." - -msgid "site.pressView" -msgstr "Ver página web de la editorial" - -msgid "about.pressContact" -msgstr "Contacto de la editorial" - -msgid "about.aboutThePress" -msgstr "Sobre la editorial" - -msgid "about.editorialTeam" -msgstr "Equipo editorial" - -msgid "about.editorialPolicies" -msgstr "Políticas editoriales" - -msgid "about.focusAndScope" -msgstr "Orientación y ámbito de actividad" - -msgid "about.seriesPolicies" -msgstr "Políticas de categorías y series" - -msgid "about.submissions" -msgstr "Propuestas" - -msgid "about.sponsors" -msgstr "Patrocinadores" - -msgid "about.contributors" -msgstr "Fuentes de apoyo" - -msgid "about.onlineSubmissions" -msgstr "Envío electrónico de propuestas" - -msgid "about.onlineSubmissions.haveAccount" -msgstr "¿Ya tengo nombre de usuario/a y contraseña para {$pressTitle}?" - -msgid "about.onlineSubmissions.login" -msgstr "Ir a Autenticación" - -msgid "about.onlineSubmissions.needAccount" -msgstr "¿Necesitas un Nombre de usuario/Contraseña?" - -msgid "about.onlineSubmissions.registration" -msgstr "Ir a Crear cuenta" - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "Debe estar registrado y haber iniciado la sesión para enviar elementos y hacer el seguimiento de los envíos actuales. {$login} en una cuenta existente o {$register} una nueva." - -msgid "about.authorGuidelines" -msgstr "Directrices para autores" - -msgid "about.submissionPreparationChecklist" -msgstr "Lista de comprobación de preparación de propuestas" - -msgid "about.submissionPreparationChecklist.description" -msgstr "Como parte del proceso de entrega de propuestas, se exige a los autores que comprueben que la propuesta está de acuerdo con todos los siguientes elementos, y las propuestas que no se acojan a estas directrices pueden ser devueltas a los autores." - -msgid "about.copyrightNotice" -msgstr "Aviso de derechos de autor" - -msgid "about.privacyStatement" -msgstr "Declaración de privacidad" - -msgid "about.reviewPolicy" -msgstr "Proceso de revisión por pares" - -msgid "about.publicationFrequency" -msgstr "Periodicidad de la publicación" - -msgid "about.openAccessPolicy" -msgstr "Política de acceso abierto" - -msgid "about.pressSponsorship" -msgstr "Patrocinio de la editorial" - -msgid "about.aboutThisPublishingSystem" -msgstr "" -"Más información acerca del sistema de publicación, de la plataforma y del " -"flujo de trabajo de OMP/PKP." - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "OMP Proceso editorial y publicitario" - -msgid "about.aboutOMPPress" -msgstr "" -"Esta publicación utiliza Open Monograph Press {$ompVersion}, que es un " -"software de publicación y gestión editorial de código abierto desarrollado, " -"impulsado y distribuido de forma gratuita por Public Knowledge Project bajo " -"una licencia pública general GNU. Visite la página web de PKP para saber más acerca del software. Por favor, contacte con la editorial directamente si tiene " -"preguntas sobre la editorial o acerca de los envíos a la editorial." - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "Esta publicación utiliza Open Monograph Press {$ompVersion}, un software de gestión y publicación de publicaciones de código abierto desarrollado, patrocinado y distribuido gratuitamente por Public Knowledge Project de conformidad con la Licencia Pública General (GNU)." - -msgid "help.searchReturnResults" -msgstr "Volver a Búsqueda de resultados" - -msgid "help.goToEditPage" -msgstr "Abrir una nueva página para editar esta información" - -msgid "installer.appInstallation" -msgstr "Instalación OMP" - -msgid "installer.ompUpgrade" -msgstr "Actualización OMP" - -msgid "installer.installApplication" -msgstr "Instalar Open Monograph Press" - -#, fuzzy -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

      Gracias por descargar Open Monograph Press {$version} de Public Knowledge Project. Antes de continuar lea el archivo README incluido con el software. Para obtener más información sobre Public Knowledge Project y sus proyectos de software visite la página web de PKP. Si tiene dudas sobre los informes de errores o soporte técnico de Open Monograph Press visite el foro de ayuda o el sistema de informes de errores en línea de PKP. Aunque el foro de ayuda es el mejor método de contacto también puede mandar un correo electrónico al equipo a pkp.contact@gmail.com.

      \n" -"\n" -"

      Actualizar

      \n" -"\n" -"

      Si está actualizando una instalación de OMP haga clic aquí para continuar.

      " - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Pasos para preinstalación" - -msgid "installer.preInstallationInstructions" -msgstr "" -"

      1. Los siguientes archivos y directorios (junto con sus contenidos) tienen que cambiarse a modo editable:

      \n" -"
        \n" -"\t
      • config.inc.php es editable (opcional): {$writable_config}
      • \n" -"\t
      • public/ es editable: {$writable_public}
      • \n" -"\t
      • cache/ es editable: {$writable_cache}
      • \n" -"\t
      • cache/t_cache/ es editable: {$writable_templates_cache}
      • \n" -"\t
      • cache/t_compile/ es editable: {$writable_templates_compile}
      • \n" -"\t
      • cache/_db es editable: {$writable_db_cache}
      • \n" -"
      \n" -"\n" -"

      2. Es necesario crear un directorio para guardar los archivos subidos y que sea editable (ver \"Configuración de archivo\" a continuación).

      " - -msgid "installer.upgradeInstructions" -msgstr "" -"

      Versión de OMP {$version}

      \n" -"\n" -"

      Gracias por descargar Open Monograph Press de Public Knowledge Project. Antes de continuar lea los archivos README y UPGRADE incluidos con el software. Para obtener más información sobre Public Knowledge Project y sus proyectos de software visite la página web de PKP. Si tiene dudas sobre los informes de errores o soporte técnico de Open Monograph Press visite el foro de ayuda o el sistema de informes de errores en línea de PKP. Aunque el foro de ayuda es el mejor método de contacto también puede mandar un correo electrónico al equipo a pkp.contact@gmail.com.

      \n" -"

      Es muy recomendable que haga una copia de su base de datos, directorio de archivos y directorio de instalación de OMP antes de continuar.

      \n" -"

      Si está ejecutando el modo seguro de PHP asegúrese de que la directiva max_execution_time en su archivo de configuración php.ini tiene un límite elevado. Si se alcanza este o cualquier otro límite de tiempo (por ejemplo, la directiva de Apache \"Timeout\") y el proceso de actualización se ve interrumpido, se necesitará ayuda manual.

      " - -msgid "installer.localeSettingsInstructions" -msgstr "Para obtener la ayuda completa de Unicode (UTF-8) seleccione UTF-8 para la configuración de todos los grupos de caracteres. Tenga en cuenta que esta ayuda actualmente necesita un servidor de bases de datos MySQL >= 4.1.1 or PostgreSQL >= 9.1.5. Tenga también en cuenta que la ayuda completa de Unicode necesita la biblioteca mbstring (habilitada por defecto en la mayoría de actualizaciones recientes de PHP). Puede tener problemas al utilizar grupos extendidos de caracteres si su servidor no cumple los requisitos.

      Su servidor actualmente es compatible con mbstring: {$supportsMBString}" - -msgid "installer.allowFileUploads" -msgstr "Su servidor actualmente permite la subida de archivos: {$allowFileUploads}" - -msgid "installer.maxFileUploadSize" -msgstr "Su servidor actualmente permite un tamaño máximo de archivos subidos de: {$maxFileUploadSize}" - -msgid "installer.localeInstructions" -msgstr "El idioma principal para usar en el sistema. Consulte la documentación de OMP si tiene interés en ayuda para idiomas que no se encuentran en la lista." - -msgid "installer.additionalLocalesInstructions" -msgstr "Seleccione cualquier otro idioma adicional para que lo reconozca el sistema. Los idiomas estarán disponibles para que las publicaciones del sitio los puedan utilizar. También se pueden instalar otros idiomas en cualquier momento desde la interfaz de administración del sitio. Las ubicaciones marcadas con * pueden estar incompletas." - -msgid "installer.filesDirInstructions" -msgstr "Introduzca la ruta completa de un directorio donde se guardarán los archivos subidos. El directorio no debe ser directamente accesible desde la web. Asegúrese de que el directorio existe y es editable antes de la instalación. Los nombres de ruta de Windows deben contener barras /, por ejemplo \"C:/mypress/files\"." - -msgid "installer.databaseSettingsInstructions" -msgstr "OMP necesita acceso a la base de datos SQL para guardar los datos. Compruebe los requisitos del sistema anteriores en la lista de bases de datos soportadas. Establezca la configuración que se utilizará para conectarse a la base de datos en los siguientes campos." - -msgid "installer.upgradeApplication" -msgstr "Actualizar Open Monograph Press" - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

      ¡IMPORTANTE!

      \n" -"

      No se pudo sobrescribir automáticamente el archivo de configuración con el instalador. Antes de usar el sistema abra config.inc.php en un editor/a de textos adecuado y reemplace el contenido con el contenido de los campos de texto siguientes.

      " - -msgid "installer.installationComplete" -msgstr "" -"

      La instalación de OMP se completó correctamente.

      \n" -"

      Para empezar a utilizar el sistema inicie sesión con el nombre de usuario/a y la contraseña introducidos en la página anterior.

      \n" -"

      Si desea recibir noticias y actualizaciones regístrese en http://pkp.sfu.ca/omp/register. Si tiene dudas o comentarios visite el foro de ayuda.

      " - -msgid "installer.upgradeComplete" -msgstr "" -"

      La actualización de OMP a versión {$version} se completó con éxito.

      \n" -"

      No olvide volver a cambiar a Activadala configuración \"instalada\" en el archivo de configuración config.inc.php

      \n" -"

      Si todavía no se registró y desea recibir noticias y actualizaciones regístrese en http://pkp.sfu.ca/omp/register. Si tiene dudas o comentarios visite el foro de ayuda.

      " - -msgid "log.review.reviewDueDateSet" -msgstr "{$reviewerName} cambió a {$dueDate} la fecha de entrega de la revisión para envío {$submissionId} de la ronda {$round}." - -msgid "log.review.reviewDeclined" -msgstr "{$reviewerName} rechazó la revisión para envío {$submissionId} de la ronda {$round}." - -msgid "log.review.reviewAccepted" -msgstr "{$reviewerName} aceptó la revisión para envío {$submissionId} de la ronda {$round}." - -msgid "log.review.reviewUnconsidered" -msgstr "{$editorName} marcó la revisión para envío {$submissionId} de la ronda {$round}." - -msgid "log.editor.decision" -msgstr "{$editorName} grabó la decisión del editor/a ({$decision}) en la monografía {$submissionId}." - -msgid "log.editor.archived" -msgstr "El envío {$submissionId} fue archivado." - -msgid "log.editor.restored" -msgstr "Se restauró el envío {$submissionId} a la lista." - -msgid "log.editor.editorAssigned" -msgstr "Se asignó a envío {$submissionId} a {$editorName} como editor/a." - -msgid "log.editor.submissionExpedited" -msgstr "{$editorName} envió el proceso de edición de la monografía {$submissionId}." - -msgid "log.proofread.assign" -msgstr "{$assignerName} asignó a {$proofreaderName} para corregir el envío {$submissionId}." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} envió {$submissionId} para su programación." - -msgid "log.imported" -msgstr "{$userName}importó la monografía {$submissionId}." - -msgid "notification.addedIdentificationCode" -msgstr "Código de identificación añadido." - -msgid "notification.editedIdentificationCode" -msgstr "Código de intensificación editado." - -msgid "notification.removedIdentificationCode" -msgstr "Código de identificación eliminado." - -msgid "notification.addedPublicationDate" -msgstr "Fecha de publicación añadida." - -msgid "notification.editedPublicationDate" -msgstr "Fecha de publicación editada." - -msgid "notification.removedPublicationDate" -msgstr "Fecha de publicación eliminada." - -msgid "notification.addedPublicationFormat" -msgstr "Formato de publicación añadido." - -msgid "notification.editedPublicationFormat" -msgstr "Formato de publicación editado." - -msgid "notification.removedPublicationFormat" -msgstr "Formato de publicación eliminado." - -msgid "notification.addedSalesRights" -msgstr "Derechos de venta añadidos." - -msgid "notification.editedSalesRights" -msgstr "Derechos de venta editados." - -msgid "notification.removedSalesRights" -msgstr "Derechos de venta eliminados." - -msgid "notification.addedRepresentative" -msgstr "Representante añadido." - -msgid "notification.editedRepresentative" -msgstr "Representante editado." - -msgid "notification.removedRepresentative" -msgstr "Representante eliminado." - -msgid "notification.addedMarket" -msgstr "Mercado añadido." - -msgid "notification.editedMarket" -msgstr "Mercado editado." - -msgid "notification.removedMarket" -msgstr "Mercado eliminado." - -msgid "notification.addedSpotlight" -msgstr "Destacado añadido." - -msgid "notification.editedSpotlight" -msgstr "Destacado editado." - -msgid "notification.removedSpotlight" -msgstr "Destacado eliminado." - -msgid "notification.removedFooterLink" -msgstr "Vínculo a pie de página eliminado." - -msgid "notification.savedCatalogMetadata" -msgstr "Catálogo de metadatos guardado." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Formato de publicación de los metadatos guardado." - -msgid "notification.proofsApproved" -msgstr "Revisiones aprobadas." - -msgid "notification.removedSubmission" -msgstr "Propuesta eliminada." - -msgid "notification.type.submissionSubmitted" -msgstr "Se envió una nueva monografía \"{$title}\"." - -msgid "notification.type.editing" -msgstr "Editar eventos" - -msgid "notification.type.metadataModified" -msgstr "Se modificaron los metadatos de \"{$title}\"" - -msgid "notification.type.reviewerComment" -msgstr "Un revisor/a comentó \"{$title}\"." - -msgid "notification.type.reviewing" -msgstr "Revisar eventos" - -msgid "notification.type.site" -msgstr "Eventos del sitio Web" - -msgid "notification.type.submissions" -msgstr "Eventos de propuesta" - -msgid "notification.type.userComment" -msgstr "Un lector/a hizo un comentario sobre \"{$title}\"." - -msgid "notification.type.editorAssignmentTask" -msgstr "Se ha realizado una propuesta de una monografía para la cuál es necesario asignar un Editor." - -msgid "notification.type.copyeditorRequest" -msgstr "Le pedimos que revise las correcciones para \"{$file}\"." - -msgid "notification.type.layouteditorRequest" -msgstr "Le pedimos que revise la maquetación para \"{$title}\"." - -msgid "notification.type.indexRequest" -msgstr "Le pedimos que cree un índice para \"{$title}\"." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Proceso de revisión interna comenzado." - -msgid "notification.type.approveSubmission" -msgstr "Esta propuesta está actualmente pendiente de aprobación en la herramienta de Entrada de Catálogo antes de que pueda aparecer en el catálogo público." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Pendiente de aprobación." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "No se ha configurado ningún método de pago." - -msgid "notification.type.configurePaymentMethod" -msgstr "Se requiere un método de pago configurado antes de poder definir ajustes de e-commerce." - -msgid "notification.type.visitCatalogTitle" -msgstr "Gestión del catálogo" - -msgid "user.authorization.invalidReviewAssignment" -msgstr "Se te ha denegado el acceso porque parece que no eres un revisor válido para esta monografía." - -msgid "user.authorization.monographAuthor" -msgstr "Se te ha denegado el acceso porque parece que no eres el autor de esta monografía." - -msgid "user.authorization.monographReviewer" -msgstr "Se te ha denegado el acceso porque parece que no eres el revisor asignado de esta monografía." - -msgid "user.authorization.monographFile" -msgstr "Se te ha denegado el acceso al fichero de la monografía especificado." - -msgid "user.authorization.invalidMonograph" -msgstr "¡No se ha solicitado monografía o esta no es válida!" - -msgid "user.authorization.invalidSeriesEditorSubmission" -msgstr "¡No se ha solicitado propuesta de editor de colección o esta no es válida!" - -msgid "user.authorization.noContext" -msgstr "¡Ninguna editorial dentro del contexto!" - -msgid "user.authorization.seriesAssignment" -msgstr "Estás intentando acceder a una monografía que no es parte de tu serie." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "¡Acceso denegado! No se le asignó para esta etapa del flujo de trabajo." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "¡Acceso denegado! No se asignó al grupo de trabajo en el que se encuentra para esta etapa del flujo de trabajo. Compruebe la configuración de la publicación." - -msgid "payment.directSales" -msgstr "Descarga del sitio web de la editorial" - -msgid "payment.directSales.price" -msgstr "Precio" - -msgid "payment.directSales.availability" -msgstr "Disponibilidad" - -msgid "payment.directSales.catalog" -msgstr "Catálogo" - -msgid "payment.directSales.approved" -msgstr "Aprobado" - -msgid "payment.directSales.priceCurrency" -msgstr "Precio ({$currency})" - -msgid "payment.directSales.directSales" -msgstr "Ventas directas" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.notAvailable" -msgstr "No disponible" - -msgid "payment.directSales.notSet" -msgstr "No configurado" - -msgid "payment.directSales.openAccess" -msgstr "Acceso abierto" - -msgid "payment.directSales.price.description" -msgstr "Los formatos del archivo pueden estar disponibles para descargarse desde la página web de la publicación, bien mediante una política de acceso abierto sin coste para los lectores/as, o bien mediante ventas directas (utilizando un proceso de pago en línea, tal y como está configurado en Distribución). Indicar base de acceso a este archivo." - -msgid "payment.directSales.validPriceRequired" -msgstr "Se necesita un precio numérico válido." - -msgid "payment.directSales.purchase" -msgstr "Compra {$format} ({$amount} {$currency})" - -msgid "payment.directSales.download" -msgstr "Descarga {$format}" - -msgid "payment.directSales.monograph.name" -msgstr "Comprar monografía o descargar capítulo" - -msgid "payment.directSales.monograph.description" -msgstr "Esta transacción es relativa a la compra de una descarga directa de una monografía sola o un capítulo de una monografía." - -msgid "debug.notes.helpMappingLoad" -msgstr "El archivo {$filename} de asignación de ayuda XML se volvió a cargar en busca de {$id}." - -msgid "rt.metadata.pkp.dctype" -msgstr "Libro" - -msgid "submission.pdf.download" -msgstr "Descargar el archivo PDF" - -msgid "monograph.publicationFormat" -msgstr "Formato" - -msgid "monograph.publicationFormatDetails" -msgstr "Detalles sobre el formato de publicación disponible: {$format}" - -msgid "monograph.miscellaneousDetails" -msgstr "Detalles sobre esta monografía" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Este formato estará disponible en un sitio web independiente" - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL de contenido alojado remotamente" - -msgid "grid.catalogEntry.availability" -msgstr "Disponibilidad" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "No disponible" - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Aceptación de formato" - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "" -"

      Indicar que los metadatos para este formato no han sido aprobados.

      " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Disponibilidad de formato" - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "" -"

      Haz que este formato esté disponible para los lectores/as. Los " -"archivos descargables y cualquier otra distribución aparecerán en la entrada " -"del catálogo de libros.

      " - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

      Este formato no estará disponible para los lectores/as. Todos " -"los archivos descargables o las otras distribuciones ya no aparecerán en la " -"entrada del catálogo de libros.

      " - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Entrada de catálogo no aceptada." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Formato no disponible en la entrada del catálogo." - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Prueba no aceptada." - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Aceptado" - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Esperando aceptación" - -msgid "spotlight" -msgstr "Destacado" - -msgid "grid.action.availableRepresentation" -msgstr "Acepta/rechaza este formato" - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series.issn.validation" -msgstr "Introduzca un ISSN válido." - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "El ISSN en línea y el de la versión impresa no pueden ser iguales." - -msgid "catalog.manage.series.onlineIssn" -msgstr "ISSN en línea" - -msgid "catalog.manage.series.printIssn" -msgstr "ISSN impreso" - -msgid "catalog.noTitles" -msgstr "No se ha publicado aún ningún título." - -msgid "catalog.noTitlesNew" -msgstr "No está disponible ninguna nueva publicación en este momento." - -msgid "catalog.noTitlesSearch" -msgstr "No se ha encontrado ningún resultado que coincida con su búsqueda \"{$searchQuery}\"." - -msgid "catalog.featured" -msgstr "Destacado" - -msgid "catalog.foundTitleSearch" -msgstr "Se ha encontrado un resultado que coincide con su búsqueda \"{$searchQuery}\"." - -msgid "catalog.foundTitlesSearch" -msgstr "Se han encontrado {$number} resultados que coinciden con su búsqueda \"{$searchQuery}\"." - -msgid "catalog.category.heading" -msgstr "Todos los libros" - -msgid "catalog.newReleases" -msgstr "Novedades" - -msgid "catalog.published" -msgstr "Publicado" - -msgid "catalog.categories" -msgstr "Categorías" - -msgid "catalog.parentCategory" -msgstr "Categoría matriz" - -msgid "catalog.category.subcategories" -msgstr "Subcategorías" - -msgid "catalog.sortBy" -msgstr "Orden de las monografías" - -msgid "catalog.sortBy.seriesDescription" -msgstr "Elija la forma de ordenar los libros en estas colecciones." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Elija la forma de ordenar los libros en esta categoría." - -msgid "catalog.sortBy.catalogDescription" -msgstr "Elija la forma de ordenar los libros en este catálogo." - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Posición de las colecciones (inferiores primero)" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Posición de las colecciones (superiores primero)" - -msgid "catalog.viewableFile.title" -msgstr "{$type} visualización del fichero {$title}" - -msgid "catalog.viewableFile.return" -msgstr "Vuelva para ver los detalles sobre {$monographTitle}" - -msgid "context.current" -msgstr "Editorial actual:" - -msgid "about.onlineSubmissions.register" -msgstr "Registra" - -msgid "payment.directSales.numericOnly" -msgstr "Los precios deben ser solo numéricos, no incluya símbolos de moneda." - -msgid "payment.directSales.readRemotely" -msgstr "Vaya a {$format}" - -msgid "user.profile.form.showOtherContexts" -msgstr "Registro con otras editoriales" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Oculta otras editoriales" - -msgid "user.role.subEditor" -msgstr "Editor/a de la sèrie" - -msgid "user.role.subEditors" -msgstr "Editor/a de la serie" - -msgid "about.aboutContext" -msgstr "Sobre la editorial" - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} o {$viewSubmissions}." - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Crear un nuevo envío" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "Ver sus envíos pendientes" - -msgid "log.editor.recommendation" -msgstr "" -"{$editorName} ha registrado una recomendación editorial ({$decision}) para " -"la monografía {$submissionId}." - -msgid "notification.type.public" -msgstr "Anuncios públicos" - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Monografía desmarcada como nueva publicación." - -msgid "catalog.manage.feature.newRelease" -msgstr "Nueva publicación" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Nueva publicación en categoría" - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Nueva publicación en series" - -msgid "catalog.manage.nonOrderable" -msgstr "Esta monografía no se puede solicitar hasta que se publique." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Buscar por título o autor" - -msgid "catalog.forthcoming" -msgstr "Próximamente" - -msgid "navigation.catalog.allMonographs" -msgstr "Todas las monografías" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Enlace a su catálogo." - -msgid "user.reviewerPrompt" -msgstr "¿Estaría dispuesto a revisar los envíos a esta editorial?" - -msgid "user.reviewerPrompt.userGroup" -msgstr "Sí, solicitar el rol de {$userGroup}." - -msgid "user.reviewerPrompt.optin" -msgstr "Sí, me gustaría que me contacten para revisar los envíos de esta editorial." - -msgid "user.register.contextsPrompt" -msgstr "¿En qué editoriales de este sitio le gustaría registrarse?" - -msgid "user.register.otherContextRoles" -msgstr "Solicita los siguientes roles." - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Si solicitó ser revisor de alguna editorial debe introcir sus temas de " -"interés." - -msgid "catalog.manage.featured" -msgstr "Destacado" - -msgid "catalog.manage.categoryFeatured" -msgstr "Destacado en categoría" - -msgid "catalog.manage.seriesFeatured" -msgstr "Destacado en series" - -msgid "catalog.manage.featuredSuccess" -msgstr "Monografía destacada." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Monografía no destacada." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Monografía marcada como nuevo lanzamiento." - -msgid "grid.series.urlWillBe" -msgstr "La URL de la colección es {$sampleUrl}. La ruta es una cadena de caracteres que sirven para identificar una serie." - -msgid "submission.round" -msgstr "Ronda {$round}" - -msgid "catalog.coverImageTitle" -msgstr "Imagen de cubierta" - -msgid "user.authorization.invalidPublishedSubmission" -msgstr "Se ha especificado un envío publicado no válido." - -#, fuzzy -msgid "notification.type.visitCatalog" -msgstr "" -"La monografía ha sido aceptada. Visite el catálogo para gestionar sus " -"detalles de catálogo mediante el enlace que aparece justo encima." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "" -"La monografía no aparecerá listada en el catálogo hasta que no esté " -"publicada. Para añadir este libro al catálogo haga clic en la pestaña \"" -"Publicación\"." - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Enlace a sus nuevos lanzamientos." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Nuevos lanzamientos" - -msgid "navigation.navigationMenus.category.description" -msgstr "Enlace a una categoría." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Categoría" - -msgid "navigation.navigationMenus.series.description" -msgstr "Enlace a series." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Series" - -msgid "navigation.skip.spotlights" -msgstr "Pasar a destacados" - -msgid "common.publications" -msgstr "Monografías" - -msgid "common.publication" -msgstr "Monografía" - -msgid "submission.search" -msgstr "Búsqueda de libros" - -msgid "catalog.manage.isNotNewRelease" -msgstr "" -"Esta monografía no es un nuevo lanzamiento. Hacer que la monografía sea un " -"nuevo lanzamiento." - -msgid "catalog.manage.isNewRelease" -msgstr "" -"Esta monografía es un nuevo lanzamiento. Hacer que la monografía no sea un " -"nuevo lanzamiento." - -msgid "catalog.manage.isNotFeatured" -msgstr "Esta monografía no está destacada. Hacer la monografía destacada." - -msgid "catalog.manage.isFeatured" -msgstr "Esta monografía está destacada. Hacer la monografía no destacada." - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" -"

      Aprobar los metadatos para este formato. Los metadatos pueden comprobarse " -"desde el panel de edición para cada formato.

      " - -msgid "monograph.audience.success" -msgstr "Los detalles de audiencia han sido actualizados." - -msgid "submissionGroup.assignedSubEditors" -msgstr "Editores/as asignados" - -msgid "about.aboutSoftware" -msgstr "Acerca de Open Monograph Press" - -msgid "user.authorization.representationNotFound" -msgstr "No se ha podido encontrar el formato de publicación solicitado." - -msgid "catalog.manage.findSubmissions" -msgstr "Encontrar monografías para añadirlas al catálogo" - -msgid "catalog.manage.submissionsNotFound" -msgstr "No se ha podido encontrar uno o más envíos." - -msgid "catalog.manage.noSubmissionsSelected" -msgstr "No se ha seleccionado ningún envío para añadirse al catálogo." diff --git a/locale/es_ES/manager.po b/locale/es_ES/manager.po deleted file mode 100644 index 30325cd0af8..00000000000 --- a/locale/es_ES/manager.po +++ /dev/null @@ -1,1501 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2020-11-30 18:48+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "" -"Esto sustituirá cualquier ajuste de publicación específico que hubiera " -"establecido para esta configuración regional" - -msgid "manager.languages.languageInstructions" -msgstr "OMP estará disponible para los usuarios/as en cualquiera de los idiomas compatibles. Asímismo, OMP puede ejecutarse como un sistema multilingüe, permitiendo a los usuarios/as cambiar entre idiomas en cada página, e introducir algunos datos en otros idiomas.

      Si un idioma compatible con OMP no está en la siguiente lista, pida al administrador/a del sitio que instale el idioma desde la interfaz del administrador/a del sitio. Si desea más instrucciones sobre cómo añadir compatibilidad para nuevos idiomas, consulte la documentación de OMP." - -msgid "manager.languages.noneAvailable" -msgstr "No hay más idiomas disponibles. Póngase en contacto con el administrador/a del sitio si desea utilizar más idiomas con la publicación." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Este será el idioma predeterminado para el sitio de la editorial." - -msgid "manager.reviewForms" -msgstr "Formularios de revisión" - -msgid "manager.reviewForms.completed" -msgstr "Completado" - -msgid "manager.reviewForms.confirmDeletePublished" -msgstr "Confirmar la eliminación del formulario de revisión publicado..." - -msgid "manager.reviewForms.confirmDeleteUnpublished" -msgstr "Confirmar la eliminación del formulario de revisión no publicado..." - -msgid "manager.reviewForms.create" -msgstr "Crear formulario de revisión" - -msgid "manager.reviewForms.description" -msgstr "Descripción e indicaciones" - -msgid "manager.reviewForms.edit" -msgstr "Formulario de revisión" - -msgid "manager.reviewForms.form.titleRequired" -msgstr "Se necesita un título para el formulario de revisión." - -msgid "manager.reviewForms.inReview" -msgstr "En revisión" - -msgid "manager.reviewForms.list.description" -msgstr "Los formularios de evaluación por pares creados aquí se presentarán a los revisores/as para que los completen, en lugar del formulario por defecto, que contiene dos cuadros de texto abiertos, el primero \"para el autor/a y el editor/a\", y el segundo \"para el editor/a\". Los formularios de revisión pueden designarse para una sección específica de la publicación, y los editores/as tendrán la opción de elegir qué formulario usar para asignar la revisión. En todos los casos los editores/as podrán incluir las revisiones correspondientes a cada autor/a." - -msgid "manager.reviewForms.noneChosen" -msgstr "Ninguno / Revisión de formulario libre" - -msgid "manager.reviewForms.noneCreated" -msgstr "No se ha creado ningún formulario de revisión." - -msgid "manager.reviewForms.noneUsed" -msgstr "No se ha utilizado ningún formulario de revisión." - -msgid "manager.reviewForms.preview" -msgstr "Previsualizar formulario" - -msgid "manager.reviewForms.reviewFormData" -msgstr "Información del formulario de revisión" - -msgid "manager.reviewForms.title" -msgstr "Título" - -msgid "manager.reviewFormElement.changeType" -msgstr "Cambiando el tipo de elementos del formulario..." - -msgid "manager.reviewFormElements" -msgstr "Elementos del formulario" - -msgid "manager.reviewFormElements.addResponseItem" -msgstr "Añadir selección" - -msgid "manager.reviewFormElements.checkboxes" -msgstr "Casillas (puedes elegir más de una)" - -msgid "manager.reviewFormElements.chooseType" -msgstr "Elegir tipo de elemento" - -msgid "manager.reviewFormElements.confirmDelete" -msgstr "Confirmar la eliminación del elemento del formulario publicado..." - -msgid "manager.reviewFormElements.copyTo" -msgstr "Copiar a:" - -msgid "manager.reviewFormElements.create" -msgstr "Crear un nuevo elemento" - -msgid "manager.reviewFormElements.dropdownbox" -msgstr "Menú desplegable" - -msgid "manager.reviewFormElements.edit" -msgstr "Editar elemento del formulario" - -msgid "manager.reviewFormElements.elementType" -msgstr "Tipo de elemento" - -msgid "manager.reviewFormElements.form.elementTypeRequired" -msgstr "Se necesita un tipo de elemento para el elemento del formulario." - -msgid "manager.reviewFormElements.form.questionRequired" -msgstr "Se necesita una pregunta para el elemento del formulario." - -msgid "manager.reviewFormElements.noneCreated" -msgstr "No se ha creado ningún elemento del formulario." - -msgid "manager.reviewFormElements.possibleResponse" -msgstr "Selección" - -msgid "manager.reviewFormElements.question" -msgstr "Elemento" - -msgid "manager.reviewFormElements.radiobuttons" -msgstr "Botones de selección (solo puedes elegir uno)" - -msgid "manager.reviewFormElements.required" -msgstr "Es necesario que los revisores completen el elemento" - -msgid "manager.reviewFormElements.smalltextfield" -msgstr "Cuadro de texto de una sola palabra" - -msgid "manager.reviewFormElements.textarea" -msgstr "Cuadro de texto ampliado" - -msgid "manager.reviewFormElements.textfield" -msgstr "Cuadro de texto de una sola línea" - -msgid "manager.reviewFormElements.viewable" -msgstr "Visible (para autores)" - -msgid "manager.series.form.mustAllowPermission" -msgstr "Por favor, asegúrate de que se ha marcado al menos una casilla para cada tarea del coordinador de colección." - -msgid "manager.series.form.reviewFormId" -msgstr "Por favor, asegúrate de que has elegido un formulario de revisión válido." - -msgid "manager.series.submissionIndexing" -msgstr "No se incluirá en la indexación de la publicación" - -msgid "manager.series.editorRestriction" -msgstr "Solo los coordinadores y coordinadores de colección pueden presentar elementos." - -msgid "manager.series.confirmDelete" -msgstr "¿Estás seguro de que deseas eliminar esta serie de forma permanente?" - -msgid "manager.series.indexed" -msgstr "Indizado" - -msgid "manager.series.open" -msgstr "Propuestas abiertas" - -msgid "manager.series.readingTools" -msgstr "Herramientas de lectura" - -msgid "manager.series.submissionReview" -msgstr "No se revisará por pares" - -msgid "manager.series.submissionsToThisSection" -msgstr "Propuesta realizada para esta colección" - -msgid "manager.series.abstractsNotRequired" -msgstr "No se necesitan resúmenes" - -msgid "manager.series.disableComments" -msgstr "Desactivar comentarios de los lectores para esta colección." - -msgid "manager.series.book" -msgstr "Colección de libros" - -msgid "manager.series.create" -msgstr "Crear colección" - -msgid "manager.series.policy" -msgstr "Descripción de la colección" - -msgid "manager.series.assigned" -msgstr "Coordinadores de esta colección" - -msgid "manager.series.seriesEditorInstructions" -msgstr "Añadir un editor/a de la serie a la serie desde Editores/as de la serie. Una vez añadido, designe si el editor/a de la serie supervisará la REVISIÓN (evaluación por pares) o la EDICIÓN (corrección, maquetación y corrección de pruebas) de los envíos a la serie. Los editores/as de la serie se crean haciendo clic en Editores/as de la serie en Roles en la gestión de la publicación." - -msgid "manager.series.hideAbout" -msgstr "Omitir esta colección de Sobre la editorial." - -msgid "manager.series.unassigned" -msgstr "Coordinadores de colección disponibles" - -msgid "manager.series.form.abbrevRequired" -msgstr "Se necesita un título abreviado para esta colección." - -msgid "manager.series.form.titleRequired" -msgstr "Se necesita un título para esta colección." - -msgid "manager.series.noneCreated" -msgstr "No se ha creado ninguna colección." - -msgid "manager.series.existingUsers" -msgstr "Usuarios existentes" - -msgid "manager.series.seriesTitle" -msgstr "Título de la colección" - -msgid "manager.series.noSeriesEditors" -msgstr "Todavía no hay editores/as de la serie. Añadir antes el rol a al menos un usuario/a a través de Gestión > Configuración > Usuarios/as y Roles." - -msgid "manager.series.noCategories" -msgstr "Todavía no hay categorías. Si desea asignar categorías a la serie, cierre antes este menú, haga clic en la pestaña \"Categorías\" y cree una." - -msgid "manager.series.restricted" -msgstr "No permitir que los autores/as envíen directamente a esta serie." - -msgid "manager.settings" -msgstr "Preferéncias" - -msgid "manager.settings.pressSettings" -msgstr "Ajustes editorial" - -msgid "manager.settings.press" -msgstr "Editorial" - -msgid "manager.settings.publisher.identity.description" -msgstr "" -"Estos campos son obligatorios para publicar metadatos ONIX válidos." - -msgid "manager.settings.publisher" -msgstr "Nombre sello editorial" - -msgid "manager.settings.location" -msgstr "Localización geográfica" - -msgid "manager.settings.publisherCode" -msgstr "Código sello editorial" - -msgid "manager.settings.distributionDescription" -msgstr "Todos los ajustes específicos del proceso de distribución (notificación, indización, archivado, pago, herramientas de lectura)." - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Descargas del archivo de la monografía" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Vista preliminar del resumen de la monografía" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Resumen y descargas de la monografía" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Principales vistas preliminares de la serie" - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Principales vistas preliminares de la publicación" - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Resultados reducidos por contexto (serie y/o monografía)." - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "Resultados reducidos por tipo de objeto (publicación, serie, monografía, tipos de archivo) o por uno o varios identificadores de objeto." - -msgid "manager.tools" -msgstr "Herramientas" - -msgid "manager.tools.importExport" -msgstr "Todas las herramientas específicas para importar y exportar datos (publicaciones, monografías, usuarios/as)" - -msgid "manager.users.availableRoles" -msgstr "Funciones disponibles" - -msgid "manager.users.currentRoles" -msgstr "Funciones actuales" - -msgid "manager.users.selectRole" -msgstr "Seleccionar función" - -msgid "manager.people.allEnrolledUsers" -msgstr "Usuarios/as inscritos en esta publicación" - -msgid "manager.people.allPresses" -msgstr "Todas las editoriales" - -msgid "manager.people.allSiteUsers" -msgstr "Inscribir a un usuario de este sitio en esta editorial" - -msgid "manager.people.allUsers" -msgstr "Todos los usuarios inscritos" - -msgid "manager.people.confirmRemove" -msgstr "¿Desea eliminar al usuario/a de la publicación? Esta acción eliminará al usuario/a de todos los roles dentro de la publicación." - -msgid "manager.people.enrollExistingUser" -msgstr "Inscribir a un usuario existente" - -msgid "manager.people.enrollSyncPress" -msgstr "Con editorial" - -msgid "manager.people.mergeUsers.from.description" -msgstr "Seleccione un usuario/a para incorporarlo a otra cuenta de usuario/a (p.ej., cuando alguien tiene dos cuentas de usuario/a). La primera cuenta seleccionada se borrará y sus envíos, encargos, etc. serán atribuidos a la segunda cuenta." - -msgid "manager.people.mergeUsers.into.description" -msgstr "Selecciona a un usuario al que atribuirle la autoría, encargos de edición y demás del usuario anterior." - -msgid "manager.people.syncUserDescription" -msgstr "La sincronización de la inscripción registrará a todos los usuarios/as inscritos previamente en un rol específico de dicha publicación en el mismo rol de esta publicación. La función permite la sincronización entre publicaciones de un grupo común de usuarios/as (por ejemplo revisores/as)." - -msgid "manager.people.confirmDisable" -msgstr "" -"¿Deshabilitar al usuario/a? Esto evitará que el usuario/a se registre en el sistema.\n" -"\n" -"Podrá ofrecer una razón al usuario/a para deshabilitar su cuenta." - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"No tiene derechos administrativos sobre este usuario/a. Esto puede deberse a:" -"\n" -"\t\t
        \n" -"\t\t\t
      • El usuario/a es el administrador/a del sitio
      • \n" -"\t\t\t
      • El usuario/a está activo en publicaciones que usted no " -"gestiona
      • \n" -"\t\t
      \n" -"\t\tEsta tarea la debe llevar a cabo el administrador/a del sitio.\n" -"\t" - -msgid "manager.system" -msgstr "Ajustes del sistema" - -msgid "manager.system.archiving" -msgstr "Archivado" - -msgid "manager.system.reviewForms" -msgstr "Formularios de revisión" - -msgid "manager.system.readingTools" -msgstr "Herramientas de lectura" - -msgid "manager.system.payments" -msgstr "Pagos" - -msgid "manager.pressManagement" -msgstr "Gestión editorial" - -msgid "manager.setup" -msgstr "Configuración" - -msgid "manager.setup.aboutItemContent" -msgstr "Contenido" - -msgid "manager.setup.addAboutItem" -msgstr "Añadir Acerca del elemento" - -msgid "manager.setup.addChecklistItem" -msgstr "Añadir elemento de la lista de comprobación" - -msgid "manager.setup.addContributor" -msgstr "Añadir colaborador" - -msgid "manager.setup.addItem" -msgstr "Agregar ítem" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Añadir un elemento a \"Acerca de la editorial\"" - -msgid "manager.setup.additionalContent" -msgstr "Contenido adicional" - -msgid "manager.setup.additionalContentDescription" -msgstr "Añade el contenido siguiente utilizando texto/HTML, que aparecerá a debajo de la imagen de la página principal, en caso de que se haya subido alguna." - -msgid "manager.setup.addNavItem" -msgstr "Agregar ítem" - -msgid "manager.setup.addSponsor" -msgstr "Añadir organización patrocinadora" - -msgid "manager.setup.alternateHeader" -msgstr "Cabecera alternativa" - -msgid "manager.setup.alternateHeaderDescription" -msgstr "En el siguiente cuadro de texto puede insertar una versión HTML del encabezado, en lugar del título y logotipo. Dejar el cuadro de texto en blanco si no se necesita." - -msgid "manager.setup.announcements" -msgstr "Anuncios" - -msgid "manager.setup.announcementsDescription" -msgstr "Los avisos se publican para informar a los lectores/as de las noticias y los eventos de la publicación. Los avisos publicados aparecerán en la Página de avisos." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Información adicional" - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "Introduce la información adicional que quieres que se muestre a los lectores en la Página de anuncios." - -msgid "manager.setup.appearInAboutPress" -msgstr "(Aparecerá en Acerca de la editorial) " - -msgid "manager.setup.authorCopyrightNotice" -msgstr "Aviso de derechos de autor" - -msgid "manager.setup.authorCopyrightNoticeAgree" -msgstr "Es necesario que los autores acepten el Aviso de derechos de autor como parte del proceso de propuesta." - -msgid "manager.setup.authorCopyrightNotice.description" -msgstr "El aviso de derechos de autor/a que introduzca a continuación aparecerá en Acerca de la publicación y en los metadatos de todos los elementos publicados. Aunque la publicación determina la naturaleza del acuerdo con los autores/as sobre los derechos de autor/a, el Public Knowledge Project recomienda el uso de la licencia Creative Commons. Para ese fin, se proporciona una prueba de aviso de derechos de autor/a que puede cortarse y pegarse en el espacio que hay a continuación para publicaciones que (a) ofrecen acceso abierto, (b) ofrecen acceso abierto diferido, o (c) no ofrecen acceso abierto." - -msgid "manager.setup.authorGuidelines.description" -msgstr "Exponga a los autores/as los estándares bibliográficos y de formato utilizados para los elementos subidos a la publicación (por ejemplo el Manual de publicaciones de la American Psychological Association, 5ª edición, 2001). Es útil proporcionar ejemplos de los formatos comunes de citación para publicaciones y libros que se usarán en los envíos." - -msgid "manager.setup.contributor" -msgstr "Colaborador" - -msgid "manager.setup.contributors" -msgstr "Fuentes de apoyo" - -msgid "manager.setup.contributors.description" -msgstr "Las agencias u organizaciones adicionales que proporcionan ayuda financiera y en especie a la editorial, aparecerán en Acerca de la editorial y podrán ir acompañadas de una nota de reconocimiento." - -msgid "manager.setup.copyediting" -msgstr "Correctores/as de originales" - -msgid "manager.setup.copyeditInstructions" -msgstr "Instrucciones para la corrección de originales" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "Las instrucciones de corrección estarán disponibles para correctores/as, autores/as y editores/as de sección en la fase Edición del envío. A continuación se detallan unas instrucciones por defecto para HTML, que el jefe/a editorial puede modificar o reemplazar en cualquier momento (en HTML o en texto plano)." - -msgid "manager.setup.copyrightNotice" -msgstr "Aviso derechos de autor" - -msgid "manager.setup.coverage" -msgstr "Cobertura" - -msgid "manager.setup.coverageChronExamples" -msgstr "(P.ej. renacimiento europeo; periodo jurásico; tercer trimestre; etc.)" - -msgid "manager.setup.coverageChronProvideExamples" -msgstr "Da ejemplos de términos cronológicos e históricos relevantes para este campo" - -msgid "manager.setup.coverageDescription" -msgstr "Se refiere a la localización geoespacial, cobertura cronológica o histórica, y/o características de la investigación." - -msgid "manager.setup.coverageGeoExamples" -msgstr "(P.ej. península ibérica; estratosfera; bosques boreales; etc.)" - -msgid "manager.setup.coverageGeoProvideExamples" -msgstr "Da ejemplos de términos geoespaciales o geográficos para este campo" - -msgid "manager.setup.coverageResearchSampleExamples" -msgstr "(P.ej. edad; sexo; etnia; etc.)" - -msgid "manager.setup.coverageResearchSampleProvideExamples" -msgstr "Da ejemplos de características de la muestras de investigación para este campo." - -msgid "manager.setup.customizingTheLook" -msgstr "Paso 5. Personalizar Vista y Estilo" - -msgid "manager.setup.customTags" -msgstr "Etiquetas personalizadas" - -msgid "manager.setup.customTagsDescription" -msgstr "Las etiquetas HTML personalizadas de la cabecera pueden insertarse en la cabecera de cada página (p.ej. etiquetas META)." - -msgid "manager.setup.details" -msgstr "Detalles" - -msgid "manager.setup.details.description" -msgstr "Nombre de la editorial, contactos, patrocinadores y motores de búsqueda." - -msgid "manager.setup.disableUserRegistration" -msgstr "El gestor editorial registra a todos los usuarios, aunque solo los coordinadores o coordinadores de sección pueden registrar a los revisores." - -msgid "manager.setup.discipline" -msgstr "Disciplinas y subdisciplinas académicas" - -msgid "manager.setup.disciplineDescription" -msgstr "De utilidad cuando la editorial traspasa las fronteras entre disciplinas y/o los autores presentan elementos multidisciplinarios." - -msgid "manager.setup.disciplineExamples" -msgstr "(P.ej., historia; educación; sociología; psicología; estudios culutrales; derecho)" - -msgid "manager.setup.disciplineProvideExamples" -msgstr "Proporciona ejemplos de disciplinas académicas relevantes para esta editorial" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "Añade la tabla de contenidos para la monografía actual (si disponible)." - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Mostrar los libros destacados en la página de inicio" - -msgid "manager.setup.displayInSpotlight" -msgstr "Mostrar los libros como destacados en la página de inicio" - -msgid "manager.setup.displayNewReleases" -msgstr "Mostrar novedades en la página de inicio" - -msgid "manager.setup.doiPrefix" -msgstr "Prefijo DOI" - -msgid "manager.setup.doiPrefixDescription" -msgstr "El prefijo DOI (Identificador Digital del Objeto) se asigna mediante Referencia cruzada y tiene el formato 10.xxxx (p. ej. 10.1234)." - -msgid "manager.setup.editorDecision" -msgstr "Decisión del coordinador" - -msgid "manager.setup.editorialMembers" -msgstr "Ir a Miembros del consejo de redacción y añadir miembros del Consejo editorial y/o del Consejo de revisión. Esto puede hacerse en cualquier momento de la ejecución de la publicación." - -msgid "manager.setup.editorialProcess1" -msgstr "Uno o más coordinadores se encargan de los pasos básicos sin ninguna función designada." - -msgid "manager.setup.editorialProcess2" -msgstr "El coordinador jefe se encarga de la lista de la propuesta y la tabla de contenidos, mientras que los coordinadores de sección se encargan de la revisión y edición de la propuesta." - -msgid "manager.setup.editorialProcess3" -msgstr "El coordinador jefe se encarga de la lista de la propuesta, edición de la propuesta y tabla de contenidos, mientras que los coordinadores de sección se encargan de la revisión de la propuesta." - -msgid "manager.setup.editorialReviewBoard" -msgstr "Comité de Redacción/ Revisión" - -msgid "manager.setup.editorialReviewBoardDescription" -msgstr "Las publicaciones disponen de Consejos editoriales que supervisan la dirección editorial de la publicación, participan en el nombramiento de editores/as y, gracias a la reputación de los miembros del consejo de redacción, dan a la publicación prestigio en el campo. Los Consejos de revisión desempeñan un rol similar pero además, dirigen el proceso de evaluación por pares. Los miembros del consejo de revisión no tendrán acceso al sistema administrativo de la página web pero se añadirán a la lista de participantes en el proceso de evaluación por pares." - -msgid "manager.setup.emailBounceAddress" -msgstr "Remitente" - -msgid "manager.setup.emailBounceAddress.description" -msgstr "Cualquier correo electrónico que no pueda entregarse generará un mensaje de error a esta dirección." - -msgid "manager.setup.emails" -msgstr "Identificación de correo electrónico" - -msgid "manager.setup.emailSignature" -msgstr "Firma" - -msgid "manager.setup.emailSignatureDescription" -msgstr "Las plantillas de correo que el sistema envía en nombre de la publicación tendrán la siguiente firma al final. El cuerpo de las plantillas de correo podrá editarse a continuación." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Habilitar avisos" - -msgid "manager.setup.enablePressInstructions" -msgstr "Habilitar que esta editorial aparezca públicamente en el sitio" - -msgid "manager.setup.enablePublicMonographId" -msgstr "Los identificadores personalizados se usarán para identificar los elementos publicados." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "Los identificadores personalizados se usarán para identificar galeradas (p.ej. ficheros HTML o PDF) para elementos publicados." - -msgid "manager.setup.enableUserRegistration" -msgstr "Los visitantes pueden crear una cuenta de usuario/a en la editorial." - -msgid "manager.setup.enableUserRegistration.author" -msgstr "Autores (pueden presentar material a la editorial)" - -msgid "manager.setup.enableUserRegistration.reader" -msgstr "Lectores (recibirán notificaciones y se considerarán equivalentes a los suscriptores)" - -msgid "manager.setup.enableUserRegistration.reviewer" -msgstr "Revisores (pueden revisar propuestas)" - -msgid "manager.setup.featuredBooks" -msgstr "Libros destacados" - -msgid "manager.setup.focusAndScope" -msgstr "Enfoque y alcance de la editorial" - -msgid "manager.setup.focusAndScope.description" -msgstr "" -"Informe a los autores/as, lectores/as y bibliotecarios/as de la temática de " -"las monografías y de otros elementos que publicará la editorial." - -msgid "manager.setup.focusScope" -msgstr "Enfoque y alcance" - -msgid "manager.setup.focusScopeDescription" -msgstr "EJEMPLO DE DATOS HTML" - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "Para que los autores indicen su obra" - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "OMP cumple el protocolo sobre recopilación de metadatos Iniciativa de archivos abiertos, que es un estándar emergente que proporciona acceso bien indexado a los recursos electrónicos de investigación a escala global. Los autores/as usarán una plantilla similar para proporcionar metadatos a su envío. El jefe/a editorial deberá seleccionar las categorías para indexar y presentar a los autores/as ejemplos relevantes para ayudarles a indexar su trabajo, separando términos con punto y coma (p. ej. término1; término2). Las entradas deben introducirse como ejemplos utilizando \"P. ej.\" o \"Por ejemplo\"." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Se necesita el correo electrónico del contacto principal." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Se necesita el nombre del contacto principal." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Se necesita el número de revisores por propuesta." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Se necesita una dirección de correo alternativa." - -msgid "manager.setup.form.supportNameRequired" -msgstr "Se necesita un nombre alternativo." - -msgid "manager.setup.generalInformation" -msgstr "Información general" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Paso 1. Detalles" - -msgid "manager.setup.guidelines" -msgstr "Directrices" - -msgid "manager.setup.inSpotlight" -msgstr "En primer plano" - -msgid "manager.setup.preparingWorkflow" -msgstr "Paso 3. Preparando el flujo de trabajo" - -msgid "manager.setup.homepageImage" -msgstr "Imagen página principal" - -msgid "manager.setup.homepageImageDescription" -msgstr "Añada una imagen o un gráfico en el centro de la página. Si usa la plantilla y la css por defecto, la anchura máxima de la imagen será de 750 px para la configuración de una barra lateral y de 540 px para la de dos barras laterales. Si usa una plantilla o una css personalizada, los valores pueden cambiar." - -msgid "manager.setup.information.description" -msgstr "En la sección \"Información\" de la barra lateral se encuentran disponibles unas breves descripciones de la editorial para bibliotecarios y posibles autores y lectores." - -msgid "manager.setup.information.forAuthors" -msgstr "Para autores" - -msgid "manager.setup.information.forLibrarians" -msgstr "Para bibliotecarios" - -msgid "manager.setup.information.forReaders" -msgstr "Para lectoras/es" - -msgid "manager.setup.institution" -msgstr "Institución" - -msgid "manager.setup.labelName" -msgstr "Nombre de la etiqueta" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Maquetadores" - -msgid "manager.setup.layoutInstructions" -msgstr "Instrucciones de maquetación" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "" -"Puede prepara las instrucciones de maquetación para dar formato a los " -"elementos que la editorial publica e introducirlos a continuación en HTML o " -"en texto plano. Estas instrucciones estarán disponibles para el maquetador/a " -"y para el editor/a de sección en la página de edición de cada envío. (Tenga " -"en cuenta que no se proporcionan instrucciones predefinidas porque cada " -"publicación puede utilizar sus propios formatos de archivo, estándares " -"bibliográficos, hojas de estilo, etc.)" - -msgid "manager.setup.layoutTemplates" -msgstr "Plantillas de maquetació" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "Se pueden subir las plantillas para que aparezcan en Maquetación para cada uno de los formatos estándares publicados en la publicación (p. ej. monografía, reseña de libro, etc.) usando cualquier formato de archivo (p. ej. pdf., doc., etc.) con anotaciones que especifiquen la fuente, el tamaño, los márgenes, etc. que sirvan como guía para los maquetadores/as y los correctores/as de pruebas." - -msgid "manager.setup.layoutTemplates.file" -msgstr "Fichero de plantilla" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Título" - -msgid "manager.setup.lists" -msgstr "Listas" - -msgid "manager.setup.look" -msgstr "Vista y estilo" - -msgid "manager.setup.look.description" -msgstr "Cabecera de la página principal, contenido, cabecera de la editorial, pie de página, barra de navegación y hoja de estilos." - -msgid "manager.setup.mailingAddress.description" -msgstr "La localización física y la dirección de envío de la editorial." - -msgid "manager.setup.settings" -msgstr "Preferéncias" - -msgid "manager.setup.management.description" -msgstr "Acceso y seguridad, planificación, avisos, corrección de originales, maquetación y revisión." - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Gestión de los pasos básicos de la editorial" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Gestión y configuración de la publicación" - -msgid "manager.setup.managingThePress" -msgstr "Paso 4. Gestionar la configuración" - -msgid "manager.setup.newReleases" -msgstr "Novedades" - -msgid "manager.setup.noImageFileUploaded" -msgstr "No se cargó ningún archivo de imagen." - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "No se cargó ninguna hoja de estilo." - -msgid "manager.setup.note" -msgstr "Nota" - -msgid "manager.setup.notifications" -msgstr "Notificación de envío del autor/a" - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "Enviar una copia al contacto principal, identificado en el paso 1 de la configuración." - -msgid "manager.setup.notifications.copySpecifiedAddress" -msgstr "Enviar una copia a esta dirección de correo electrónico:" - -msgid "manager.setup.notifications.description" -msgstr "Al completar el proceso de envío, se envía automáticamente a los autores/as un correo electrónico de confirmación (que se puede ver y editar en Plantillas de correo electrónico). Además se puede enviar una copia del correo de confirmación como se indica a continuación:" - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "Cuando se quiera enviar un correo electrónico de notificación para el autor/a, incluya las direcciones de correo de todos los coautores/as, en casos en los que participan varios autores/as, en lugar de añadir únicamente la del usuario/a que realiza el envío." - -msgid "manager.setup.noUseCopyeditors" -msgstr "El editor/a o editor/a de sección responsable del envío asumirá la tarea de corrección de originales." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "El editor/a o editor/a de sección responsable del envío se encargará de la preparación de los archivos en formato HTML, PDF, etc." - -msgid "manager.setup.noUseProofreaders" -msgstr "El editor/a o editor/a de sección responsable del envío se encargará de la inspección de las galeradas." - -msgid "manager.setup.numPageLinks" -msgstr "Enlaces de la página" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Acceder al contenido de la editorial" - -msgid "manager.setup.onlineIssn" -msgstr "ISSN en línea" - -msgid "manager.setup.openAccess" -msgstr "La publicación proporcionará acceso abierto al contenido." - -msgid "manager.setup.openAccessPolicy" -msgstr "Política de acceso abierto" - -msgid "manager.setup.openAccessPolicy.description" -msgstr "Si la editorial proporciona a los lectores/as acceso libre a todo el contenido publicado, introduzca una política de acceso abierto que aparecerá en Políticas > Acerca de la publicación." - -msgid "manager.setup.peerReview.description" -msgstr "Describa la política de evaluación por pares y los procesos para lectores/as y autores/as, incluyendo el número de revisores/as utilizados normalmente para revisar los envíos, los criterios que los revisores/as deben seguir para juzgar los envíos, el tiempo habitual que conllevan las revisiones y los principios que se siguen a la hora de contratar revisores/as. Esto aparecerá en Acerca de la publicación." - -msgid "manager.setup.policies" -msgstr "Políticas" - -msgid "manager.setup.policies.description" -msgstr "Objeto de la revista, proceso de evaluación por pares, secciones, privacidad, seguridad y otros." - -msgid "manager.setup.appearanceDescription" -msgstr "Desde esta página se pueden configurar varios componentes del aspecto de la publicación, incluyendo elementos del encabezado y pie de página, el estilo y tema de la publicación y cómo se presentan las listas de información a los usuarios/as." - -msgid "manager.setup.pressDescription" -msgstr "Descripción de la editorial" - -msgid "manager.setup.pressDescription.description" -msgstr "Incluya aquí una descripción general de la publicación. La descripción estará disponible en la página de inicio de la publicación." - -msgid "manager.setup.pressArchiving" -msgstr "Archivos de la publicación" - -msgid "manager.setup.homepageContent" -msgstr "Contenido de la página de inicio de la publicación" - -msgid "manager.setup.homepageContentDescription" -msgstr "La página de inicio de la publicación consta de enlaces de navegación por defecto. Se pueden añadir más contenidos a la página de inicio utilizando una de las siguientes opciones, que aparecen en el orden descrito." - -msgid "manager.setup.pressHomepageContent" -msgstr "Contenido de la página de inicio de la publicación" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "La página de inicio de la publicación consta de enlaces de navegación por defecto. Se pueden añadir más contenidos a la página de inicio utilizando una de las siguientes opciones, que aparecen en el orden descrito." - -msgid "manager.setup.pressHomepageHeader" -msgstr "Encabezado de la página de inicio de la publicación" - -msgid "manager.setup.pressHomepageHeader.altText" -msgstr "Encabezado de la página de inicio de la publicación" - -msgid "manager.setup.pressHomepageHeaderDescription" -msgstr "Escoja entre un fragmento de texto del nombre de la publicación, o una versión gráfica del título de la publicación (se aceptan archivos .gif, .jpg o .png) El encabezado y el logo opcional que lo acompañe solo aparecerán en la página de inicio de la publicación. El encabezado por defecto tiene un tamaño de 180 px x 90 px." - -msgid "manager.setup.contextInitials" -msgstr "Iniciales de la editorial" - -msgid "manager.setup.layout" -msgstr "Maquetación de la publicación" - -msgid "manager.setup.logo" -msgstr "Logo de la publicación" - -msgid "manager.setup.logo.altText" -msgstr "Logo de la publicación" - -msgid "manager.setup.pageFooter" -msgstr "Pie de página de la publicación" - -msgid "manager.setup.pageFooterDescription" -msgstr "Este es el pie de página de la publicación. Para cambiar o actualizar el pie de página, pegue el código HTML en el siguiente cuadro de texto. Algunos ejemplos pueden ser otra barra de navegación, un contador, etc. El pie de página aparecerá en todas las páginas." - -msgid "manager.setup.pageHeader" -msgstr "Encabezado de la página de la publicación" - -msgid "manager.setup.pageHeaderDescription" -msgstr "Se puede subir una versión gráfica del título y logo de la publicación (archivo .gif, .jpg o .png), si es posible una versión más pequeña que la usada en la página de inicio, para que aparezca como un encabezado en las páginas de la publicación y que reemplazará la versión textual." - -msgid "manager.setup.pressPolicies" -msgstr "Paso 2. Políticas de la publicación" - -msgid "manager.setup.pressSetup" -msgstr "Configuración de la publicación" - -msgid "manager.setup.pressSetupUpdated" -msgstr "Se actualizó la configuración de la publicación." - -msgid "manager.setup.styleSheetInvalid" -msgstr "Formato de hoja de estilo no válido. El formato aceptado es .css." - -msgid "manager.setup.pressTheme" -msgstr "Tema de la publicación" - -msgid "manager.setup.contextTitle" -msgstr "Nombre de la publicación" - -msgid "manager.setup.principalContact" -msgstr "Contacto principal" - -msgid "manager.setup.principalContactDescription" -msgstr "Este cargo, que puede ser tratado como el editor principal, el gestor editorial, o personal administrativo, se mostrará en la página de inicio de la editorial bajo Contacto, junto con el contacto de soporte técnico." - -msgid "manager.setup.printIssn" -msgstr "Imprimir ISSN" - -msgid "manager.setup.privacyStatement" -msgstr "Declaración de privacidad" - -msgid "manager.setup.privacyStatement2" -msgstr "Declaración de privacidad" - -msgid "manager.setup.privacyStatement.description" -msgstr "Esta declaración aparecerá en Acerca de la publicación, así como en las páginas de Envío y Notificación del autor/a A continuación se incluye una política de privacidad, que puede revisarse en cualquier momento." - -msgid "manager.setup.proofingInstructions" -msgstr "Instrucciones de corrección de pruebas" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "Las instrucciones de correcciones de pruebas estarán disponibles en la fase de edición del envío para correctores/as de pruebas, autores/as y editores/as de sección A continuación se detallan unas instrucciones por defecto en HTML que el jefe/a editorial puede editar o reemplazar en cualquier momento (en HTML o texto plano)." - -msgid "manager.setup.proofreading" -msgstr "Correctores de pruebas" - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Proporcione instrucciones a los maquetadores/as." - -msgid "manager.setup.publicationScheduleDescription" -msgstr "Los elementos de la publicación se pueden publicar de forma colectiva, como parte de una monografía con su propia tabla de contenidos. Además, los elementos individuales pueden publicarse en cuanto estén preparados, añadiéndolos a la tabla de contenidos \"actual\". En Acerca de la publicación proporcione a los lectores/as información sobre el sistema que la editorial usará y su frecuencia estimada de publicación." - -msgid "manager.setup.publisher" -msgstr "Editor" - -msgid "manager.setup.publisherDescription" -msgstr "El nombre de la organización que publica la publicación aparecerá en Acerca de la publicación." - -msgid "manager.setup.referenceLinking" -msgstr "Enlaces de referencia" - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Instrucciones de maquetación para los enlaces de referencia" - -msgid "manager.setup.restrictMonographAccess" -msgstr "Los usuarios/as deben registrarse e iniciar sesión para ver el contenido de acceso abierto." - -msgid "manager.setup.restrictSiteAccess" -msgstr "Los usuarios/as deben registrarse e iniciar sesión para ver el sitio de la publicación." - -msgid "manager.setup.reviewGuidelines" -msgstr "Review Guidelines" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "Las directrices de revisión externa proporcionarán a los revisores/as externos criterios para juzgar la adecuación de un envío para su publicación en la editorial y podrán incluir instrucciones especiales para conseguir una revisión eficaz y útil. Cuando se lleva a cabo la revisión, se les entrega a los revisores/as externos dos cuadros de texto abiertos, el primero \"para autor/a y editor/a\" y el segundo \"para editor/a\". Además el jefe/a editorial puede crear una evaluación por pares en Formularios de revisión. En todos los casos los editores/as podrán incluir las revisiones correspondientes a cada autor/a." - -msgid "manager.setup.internalReviewGuidelines" -msgstr "Directrices de revisión interna" - -msgid "manager.setup.internalReviewGuidelinesDescription" -msgstr "Al igual que las directrices de revisión externa, estas instrucciones proporcionarán a los revisores/as información sobre la evaluación del envío. Estas instrucciones son para los revisores/as internos, que normalmente hacen un proceso de revisión usando revisores/as internos de la editorial." - -msgid "manager.setup.reviewOptions" -msgstr "Opciones de revisión" - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Recordatorios de correo electrónico automáticos" - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "" -"Para activar estas opciones, el administrador/a del sitio debe habilitar la " -"opción scheduled_tasks en el archivo de configuración de OMP. Será " -"necesario modificar la configuración del servidor para que sea compatible " -"con esta funcionalidad (que puede no estar disponible en todos los " -"servidores), como se indica en la documentación de OMP." - -msgid "manager.setup.reviewOptions.noteOnModification" -msgstr "Los valores por defectos se pueden modificar en cualquier envío durante el proceso editorial." - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "Los editores/as pueden calificar a los revisores/as en una escala de de cinco puntos después de cada revisión." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "Permitir que los revisores/as tengan acceso a los archivos de envío sólo después de que éstos/as hayan aceptado la revisión." - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Acceso para los revisores/as" - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Calificación de los revisores/as" - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Recordatorios para los revisores/as" - -msgid "manager.setup.reviewOptions.reviewTime" -msgstr "Plazo para la revisión" - -msgid "manager.setup.reviewPolicy" -msgstr "Política de evaluación" - -msgid "manager.setup.reviewProcess" -msgstr "Proceso de revisión" - -msgid "manager.setup.reviewProcessDescription" -msgstr "OMP es compatible con dos modelos para gestionar el proceso de revisión. Se recomienda el proceso de revisión estándar porque guía a los revisores/as a través del proceso, asegura un historial completo de revisión para cada envío y saca provecho de las notificaciones de recordatorio automático y de las recomendaciones estándares para envíos (Aceptar, Aceptar con revisiones, Enviar para revisión, Enviar a otro lugar, Rechazar, Ver comentarios).

      Seleccione una de las siguientes:" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Proceso de revisión de los archivos adjuntos a correos electrónicos" - -msgid "manager.setup.reviewProcessStandard" -msgstr "Proceso de revisión estándar" - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "Los editores/as mandarán por correo electrónico a los revisores/as seleccionados el título y el resumen del envío, así como una invitación para iniciar sesión en la página web de la publicación para completar la revisión. Los revisores/as entrarán en la página web de la publicación para aceptar el encargo de revisión, descargar los envíos, enviar comentarios y seleccionar una recomendación." - -msgid "manager.setup.searchEngineIndexing" -msgstr "Indización en buscadores" - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "" -"Ayude a motores de búsqueda como Google a descubrir y mostrar su sitio. Por " -"ello le animamos a enviar su " -"mapa del sitio." - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Secciones y editores/as de secciones" - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "" -"(Si no se han añadido secciones, los elementos se envían por defecto a la " -"sección Monografías.)" - -msgid "manager.setup.sectionsDescription" -msgstr "Para crear o modificar secciones de la publicación (p. ej. Monografías, Reseñas de libros, etc.) vaya a la sección Gestión.

      Cuando los autores/as envíen elementos a la publicación designarán..." - -msgid "manager.setup.securitySettings" -msgstr "Configuración de acceso y seguridad" - -msgid "manager.setup.securitySettings.note" -msgstr "Otras opciones relacionadas con la seguridad y el acceso se pueden configurar desde la página de Acceso y seguridad." - -msgid "manager.setup.selectEditorDescription" -msgstr "El editor/a lo verá durante el proceso editorial." - -msgid "manager.setup.selectSectionDescription" -msgstr "La sección de la publicación para la que se considerará el elemento." - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "Mostrar siempre los enlaces de galeradas e indicar que el acceso es restringido." - -msgid "manager.setup.sponsors.description" -msgstr "El nombre de las organizaciones (p. ej. asociaciones académicas, departamentos de universidades, cooperativas, etc.) que patrocinan a la publicación aparecerán en Acerca de la publicación y se acompañarán de una nota de agradecimiento." - -msgid "manager.setup.stepsToPressSite" -msgstr "Cinco pasos para configurar el sitio web de una publicación" - -msgid "manager.setup.subjectClassification" -msgstr "Clasificación por materias" - -msgid "manager.setup.subjectClassificationExamples" -msgstr "p. ej., MSC (Mathematics Subject Classification, Clasificación de las matemáticas); LCC (Library of Congress Classification, Clasificación desarrollada por la Biblioteca del Congreso de EEUU)" - -msgid "manager.setup.subjectExamples" -msgstr "(p. ej., fotosíntesis; agujeros negros; Teorema de los cuatro colores; Teoría de Bayes)" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Palabras clave" - -msgid "manager.setup.subjectProvideExamples" -msgstr "Proporcione ejemplos de palabras clave y temas que sirvan de guía para los autores/as" - -msgid "manager.setup.submissionGuidelines" -msgstr "Indicaciones para el envío" - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Lista de comprobación de preparación de propuestas" - -msgid "manager.setup.submissionPreparationChecklistDescription" -msgstr "Cuando se realiza un envío a la publicación, se pide a los autores/as que comprueben que se ha completado cada elemento de la lista de comprobación de preparación de envíos antes de continuar. La lista de comprobación también aparece en las indicaciones para el autor/a, en Acerca de la publicación. Se puede editar la lista a continuación, pero todos los elementos de la lista necesitarán haberse comprobado para que los autores/as puedan continuar con el envío. " - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "La lista de comprobación de elementos es obligatoria." - -msgid "manager.setup.workflow" -msgstr "Flujo de trabajo" - -msgid "manager.setup.submissions.description" -msgstr "Indicaciones para los autores/as, derechos de autor/a e indexación (incluido el registro)." - -msgid "manager.setup.technicalSupportContact" -msgstr "Contacto de soporte técnico" - -msgid "manager.setup.technicalSupportContactDescription" -msgstr "Esta persona aparecerá en la lista de la página de contacto de la publicación para el uso de editores/as, autores/as y revisores/as, y deberá estar familiarizado con el sistema desde la perspectiva de todos los roles. Como el sistema de publicación necesita muy poca asistencia técnica, esta será considerada como una tarea a tiempo parcial. Se pueden dar casos como, por ejemplo, cuando los autores/as y revisores/as tienen dificultades con las instrucciones o formatos de los archivos, o cuando es necesario asegurar que se realiza regularmente una copia de seguridad de la publicación en el servidor." - -msgid "manager.setup.typeExamples" -msgstr "(p. ej., investigación histórica; casi experimental; análisis literario; encuesta/entrevista)" - -msgid "manager.setup.typeMethodApproach" -msgstr "Tipo (método/enfoque)" - -msgid "manager.setup.typeProvideExamples" -msgstr "Proporcione ejemplos de tipos de investigación, métodos y enfoques para este campo" - -msgid "manager.setup.useCopyeditors" -msgstr "Asignar un corrector/a de originales para cada envío." - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "La editorial utilizará un consejo editorial/de revisión." - -msgid "manager.setup.useImageLogo" -msgstr "Logo de la publicación" - -msgid "manager.setup.useImageLogoDescription" -msgstr "Es posible subir un logo de la publicación y usarlo junto al título en imagen o texto configurado anteriormente." - -msgid "manager.setup.useImageTitle" -msgstr "Imagen del título" - -msgid "manager.setup.useStyleSheet" -msgstr "Hoja de estilo de la publicación" - -msgid "manager.setup.useLayoutEditors" -msgstr "Asignar al maquetista la preparación de los archivos en formato HTML, PDF, etc., para su posterior publicación en la red." - -msgid "manager.setup.useProofreaders" -msgstr "Se asignará a un corrector/a de pruebas la inspección (junto con los autores/as) de las galeradas antes de la publicación." - -msgid "manager.setup.userRegistration" -msgstr "Registro de usuarios/as" - -msgid "manager.setup.useTextTitle" -msgstr "Título en formato de texto" - -msgid "manager.setup.volumePerYear" -msgstr "Volúmenes por año" - -msgid "manager.setup.registerForIndexing" -msgstr "Registrar la publicación para su indexación (recopilación de metadatos)" - -msgid "manager.setup.publicationFormat.code" -msgstr "Formato" - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "Especifique un formato." - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "Especifique un nombre para el formato." - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "¿Es un formato físico (no digital)?" - -msgid "manager.setup.publicationFormat.inUse" -msgstr "No se puede eliminar el formato de publicación porque se está utilizando en una monografía de su publicación." - -msgid "manager.setup.newPublicationFormat" -msgstr "Nuevo formato de publicación" - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "Para crear un formato de publicación nuevo, rellene el formulario siguiente y haga clic en el botón \"Crear\"." - -msgid "manager.setup.genresDescription" -msgstr "Los géneros se utilizan para nombrar archivos y se presentan en un menú desplegable en el momento de subir los archivos. Los géneros designados como ## permiten que el usuario/a asocie el archivo con el libro entero 99Z o con un capítulo concreto por número (p. ej., 02)." - -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "Los editores/as mandan a los revisores/as la solicitud para que revisen el envío adjunto al correo electrónico. Los revisores/as mandan un correo electrónico a los editores/as con su aceptación (o rechazo), así como la revisión y la recomendación. Los editores/as abren la aceptación (o rechazo) de los revisores/as, así como la revisión y la recomendación en la página de revisión del envío para grabar el proceso de revisión." - -msgid "manager.setup.genres" -msgstr "Géneros" - -msgid "manager.setup.newGenre" -msgstr "Nuevo género de monografía" - -msgid "manager.setup.newGenreDescription" -msgstr "Para crear un género nuevo, rellene el formulario siguiente y haga clic en el botón \"Crear\"." - -msgid "manager.setup.deleteSelected" -msgstr "Eliminar selección" - -msgid "manager.setup.restoreDefaults" -msgstr "Restaurar la configuración por defecto" - -msgid "manager.setup.prospectus" -msgstr "Guía del prospecto" - -msgid "manager.setup.prospectusDescription" -msgstr "La guía del prospecto es un documento preparado por la editorial que ayuda al autor/a a describir los materiales enviados de forma que permita a una editorial determinar el valor del envío. Un prospecto puede incluir muchos elementos, desde potencial de mercado hasta valor teórico; en cualquier caso, una editorial debe crear una guía de prospecto que complemente su agenda de publicación." - -msgid "manager.setup.submitToCategories" -msgstr "Permitir envíos de categorías" - -msgid "manager.setup.submitToSeries" -msgstr "Permitir envíos de series" - -msgid "manager.setup.issnDescription" -msgstr "El ISSN (número de serie estándar internacional) es un número de ocho dígitos que identifica las publicaciones periódicas, incluyendo las series electrónicas. Lo gestiona una red internacional de centros nacionales coordinada por un centro internacional cuya sede se encuentra en París y está respaldada por la Unesco y el Gobierno francés. El número se puede obtener desde la página web del ISSN. Esto puede hacerse en cualquier momento de la ejecución de la publicación." - -msgid "manager.setup.currentFormats" -msgstr "Formatos actuales" - -msgid "manager.setup.categoriesAndSeries" -msgstr "Categorías y series" - -msgid "manager.setup.categories.description" -msgstr "Puede crear una lista de categorías para organizar sus publicaciones. Las categorías son grupos de libros de la misma materia, por ejemplo, economía, literatura, poesía, etc. Las categorías pueden contener subcategorías: por ejemplo, la categoría Economía puede incluir las subcategorías Microeconomía y Macroeconomía. Los visitantes podrán buscar y explorar la publicación por categorías." - -msgid "manager.setup.series.description" -msgstr "Puede crear un número indefinido de series para organizar sus publicaciones. Una serie representa un conjunto de libros dedicado a un tema propuesto, normalmente por uno o varios miembros de la facultad. Los visitantes podrán buscar y explorar la publicación por series." - -msgid "manager.setup.reviewForms" -msgstr "Formularios de revisión" - -msgid "manager.setup.roleType" -msgstr "Tipo de rol" - -msgid "manager.setup.authorRoles" -msgstr "Roles del autor/a" - -msgid "manager.setup.managerialRoles" -msgstr "Roles de gestión" - -msgid "manager.setup.availableRoles" -msgstr "Funciones disponibles" - -msgid "manager.setup.currentRoles" -msgstr "Funciones actuales" - -msgid "manager.setup.internalReviewRoles" -msgstr "Roles de revisión interna" - -msgid "manager.setup.masthead" -msgstr "Equipo editorial" - -msgid "manager.setup.editorialTeam" -msgstr "Equipo editorial" - -msgid "manager.setup.editorialTeam.description" -msgstr "El equipo editorial debe contener una lista de editores/as, directores/as de gestión y otros cargos asociados a la editorial. La información que introduzca aquí aparecerá en Acerca de la publicación." - -msgid "manager.setup.files" -msgstr "Archivos" - -msgid "manager.setup.productionTemplates" -msgstr "Plantillas de producción" - -msgid "manager.files.note" -msgstr "Nota: El explorador de archivos es una función avanzada que permite visualizar y manipular directamente archivos y directorios asociados a una publicación." - -msgid "manager.setup.copyrightNotice.sample" -msgstr "" -"

      Notificaciones sobre derechos de autor/a de Creative Commons

      \n" -"

      Política para publicaciones que ofrecen acceso abierto

      Los autores/as que publiquen en la editorial aceptan los siguientes términos:
        \n" -"\t
      1. Los autores/as poseen derechos de autor/a y conceden a la editorial el derecho de la primera publicación junto con la obra autorizada conforme a una Licencia de reconocimiento de Creative Commons que permite a terceras personas publicar la obra con una nota de reconocimiento en la publicación sobre la autoría de la obra y la publicación inicial.
      2. \n" -"\t
      3. Los autores/as pueden acordar otra serie contractual independiente para una distribución no exclusiva de la versión de la obra publicada por la editorial (p. ej. subirla a un repositorio internacional o publicarla en un libro), con una nota de reconocimientos de la publicación inicial en la editorial.
      4. \n" -"\t
      5. Los autores/as pueden publicar su obra en la red (p. ej. en repositorios institucionales o en su página web) antes de y durante el proceso de envío, ya que puede facilitar intercambios productivos, así como una citación más rápida y más amplia de la obra publicada (Véase El efecto del acceso abierto).
      6. \n" -"
      \n" -"\n" -"

      Política para publicaciones que ofrecen acceso abierto

      Los autores/as que publiquen en la editorial aceptan los siguientes términos:
        \n" -"\t
      1. Los autores/as poseen derechos de autor/a y conceden a la editorial el derecho de la primera publicación junto con la obra [ESPECIFIQUE PERIODO DE TIEMPO] tras haberse publicado debidamente autorizada conforme a una Licencia de reconocimiento de Creative Commons que permite a terceras personas publicar la obra con una nota de reconocimiento en la publicación sobre la autoría de la obra y la publicación inicial.<segmento 1562>
      2. \n" -"\t
      3. Los autores/as pueden acordar otra serie contractual independiente para una distribución no exclusiva de la versión de la obra publicada por la editorial (p. ej. subirla a un repositorio internacional o publicarla en un libro), con una nota de reconocimientos de la publicación inicial en la editorial.
      4. \n" -"\t
      5. Los autores/as pueden publicar su obra en la red (p. ej. en repositorios institucionales o en su página web) antes de y durante el proceso de envío, ya que puede facilitar intercambios productivos, así como una citación más rápida y más amplia de la obra publicada (Véase El efecto del acceso abierto).
      6. \n" -"
      " - -msgid "manager.setup.subjectClassificationDescription" -msgstr "[La publicación usará un sistema de clasificación de materias disponible en la web.
      Título del sistema de clasificación" - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "" -"Pasos: Cola de envíos > Revisión de envíos > Edición de envíos > " -"Tabla de contenidos.

      \n" -"Seleccione un modelo para manejar estos aspectos del proceso editorial. (" -"Para designar a un editor/a de gestión y a un editor/a de serie, vaya al " -"apartado Editores/as en Gestión de la publicación.)" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "" -"

      Para permitir a los lectores/as buscar versiones en línea de la obra citada por un autor/a, dispone de las siguientes opciones.

      \n" -"\n" -"
        \n" -"\t
      1. Añadir una herramienta de lectura

        El jefe/a editorial puede añadir \"Buscar referencias\" a las herramientas de lectura que acompañan a los elementos publicados, lo que permite a los lectores/as pegar el título de una referencia y buscarlo en las bases de datos académicas preseleccionadas para dicha obra.

      2. \n" -"\t
      3. Enlaces incorporados en las referencias

        El maquetador/a puede añadir un enlace a las referencias que pueden consultarse en línea usando las siguiente instrucciones (que se pueden editar).

      4. \n" -"
      " - -msgid "manager.setup.registerForIndexingDescription" -msgstr "Para indexar los contenidos de la publicación dentro de un sistema global de bases de datos de investigación, registre la URL de su publicación con el recopilador de metadatos de Public Knowledge Project. La herramienta recoge los metadatos de cada elemento indexado en la publicación, permitiendo búsquedas colectivas y adecuadas entre las páginas de investigación que se acojan al Protocolo de iniciativa de archivos abiertos para recopilación de metadatos.

      Tenga en cuenta que si el administrador/a del sitio ya ha registrado el sitio con la recopilación PKP, su publicación se indexará automáticamente y no tendrá que registrar su publicación.

      Haga clic aquí e introduzca {$siteUrl} en la URL del sitio, y {$oaiUrl} en el archivo de la base URL para OAI.." - -msgid "settings.roles.gridDescription" -msgstr "Los roles son grupos de usuarios/as de la publicación que tienen acceso a diferentes niveles de permiso y a flujos de trabajo relacionados en la publicación. Hay cinco niveles de permiso diferentes: los jefes/as editoriales tienen acceso a la publicación completa (todo el contenido y la configuración); los editores/as tienen acceso a todo el contenido dentro de sus series; los ayudantes de producción tienen acceso a todas las monografías que un editor/a les ha asignado explícitamente; los revisores/as pueden ver y realizar las revisiones que se les ha asignado; y los autores/as pueden ver e interactuar con una cantidad limitada de información en sus propios envíos. Además, hay cinco fases de tareas diferentes a las que podrán dar acceso los roles: envío, revisión interna, revisión externa, edición y producción." - -msgid "manager.publication.library" -msgstr "Biblioteca de la publicación" - -msgid "manager.settings.publisherCodeType" -msgstr "Tipo de código de la editorial" - -msgid "user.authorization.pluginLevel" -msgstr "No tiene suficientes privilegios para gestionar este módulo." - -msgid "manager.setup.displayOnHomepage" -msgstr "Contenido de la página de inicio" - -msgid "manager.setup.resetPermissions" -msgstr "Reinicia los permisos de monografía" - -msgid "manager.setup.resetPermissions.confirm" -msgstr "" -"¿Seguro que desea reiniciar los datos de permisos ya asociados a las " -"monografías?" - -msgid "manager.setup.resetPermissions.description" -msgstr "" -"La declaración de derechos de autor y la información de licencia estarán " -"ligadas permanentemente al contenido publicado, lo que garantiza que estos " -"datos no cambiarán en el caso de producirse un cambio en las políticas de la " -"editorial para nuevos envíos. Para reiniciar la información sobre permisos " -"almacenada y todavía ligada al contenido publicado, utilice el botón " -"siguiente." - -msgid "grid.genres.title.short" -msgstr "Componentes" - -msgid "grid.genres.title" -msgstr "Componentes de la monografía" - -msgid "manager.payment.generalOptions" -msgstr "Opciones generales" - -msgid "manager.payment.options.enablePayments" -msgstr "" -"Se han habilitado los pagos para esta publicación. Tenga en cuenta que los " -"usuarios/as deberán iniciar la sesión para hacer los pagos." - -msgid "manager.tools.statistics" -msgstr "" -"Herramientas para generar informes relacionados con estadísticas de uso (" -"visualización de páginas de índice de catálogo, visualización de páginas de " -"resumen de monografías, descargas de archivos de monografías)" - -msgid "manager.setup.aboutPress" -msgstr "Sobre la editorial" - -msgid "manager.setup.aboutPress.description" -msgstr "Incluya cualquier información sobre su editorial, la cual pueda ser de interés para lectores, autores y revisores. Esto podría incluir su política de acceso abierto, el enfoque y el alcance de la editorial, el aviso de copyright, la divulgación de patrocinio, el historial de la editorial y una declaración de privacidad." - -msgid "grid.series.pathAlphaNumeric" -msgstr "La ruta de las series solo admite letras y números." - -msgid "grid.series.pathExists" -msgstr "La ruta de la serie ya existe. Introduzca una ruta única." - -msgid "grid.series.urlWillBe" -msgstr "La URL de las series, será: {$sampleUrl}" - -msgid "stats.publications.abstracts" -msgstr "Registros del catálogo" - -msgid "stats.publications.countOfTotal" -msgstr "{$count} de {$total} monografías" - -msgid "stats.publications.totalGalleyViews.timelineInterval" -msgstr "Vistas totales de archivos por fecha" - -msgid "stats.publications.totalAbstractViews.timelineInterval" -msgstr "Vistas totales del catálogo por fecha" - -msgid "stats.publications.none" -msgstr "" -"No se encontraron monografías con estadísticas de uso que coincidan con " -"estos parámetros." - -msgid "stats.publications.details" -msgstr "Detalles de la monografía" - -msgid "stats.publicationStats" -msgstr "Estadísticas de la monografía" - -msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" -msgstr "Seleccione la categoría a la que desea vincular este elemento del menú." - -msgid "manager.navigationMenus.form.navigationMenuItem.category" -msgstr "Seleccionar categoría" - -msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" -msgstr "Seleccione la serie a la que desea vincular este elemento del menú." - -msgid "manager.navigationMenus.form.navigationMenuItem.series" -msgstr "Seleccionar Series" - -msgid "manager.setup.resetPermissions.success" -msgstr "Los permisos de la monografía se restablecieron correctamente." - -msgid "manager.setup.siteAccess.viewContent" -msgstr "Ver contenido de la monografía" - -msgid "manager.setup.siteAccess.view" -msgstr "Acceso al sitio" - -msgid "manager.setup.searchEngineIndexing.success" -msgstr "Los ajustes de indexación del motor de búsqueda se han actualizado." - -msgid "manager.setup.searchDescription.description" -msgstr "" -"Proporcione una breve descripción (50-300 caracteres) de la publicación que " -"los motores de búsqueda puedan mostrar cuando listen la publicación en los " -"resultados de búsqueda." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" -msgstr "" -"Incluir un enlace seguro en la invitación por correo electrónico a los " -"revisores." - -#, fuzzy -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" -msgstr "" -"A los revisores se les puede enviar un enlace seguro en la invitación por " -"correo electrónico, que les permitirá acceder a la revisión sin iniciar " -"sesión. El acceso a otras páginas requiere que inicien sesión." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" -msgstr "Acceso del revisor/a con un clic" - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" -msgstr "Restringir el acceso al archivo" - -msgid "manager.setup.privacyStatement.success" -msgstr "La declaración de privacidad ha sido actualizada." - -msgid "manager.setup.numPageLinks.description" -msgstr "" -"Limitar el número de enlaces que se muestran en las páginas sucesivas en una " -"lista." - -msgid "manager.setup.masthead.success" -msgstr "Los detalles de la cabecera de este medio se han actualizado." - -msgid "manager.setup.lists.success" -msgstr "La configuración de la lista para esta publicación se ha actualizado." - -msgid "manager.setup.keyInfo.description" -msgstr "" -"Proporcione una breve descripción de su medio e identifique a los editores, " -"directores generales y otros miembros de su equipo editorial." - -msgid "manager.setup.keyInfo" -msgstr "Información clave" - -msgid "manager.setup.itemsPerPage.description" -msgstr "" -"Limite el número de elementos (por ejemplo, envíos, usuarios o tareas de " -"edición) a mostrar en una lista antes de mostrar elementos sucesivos en otra " -"página." - -msgid "manager.setup.itemsPerPage" -msgstr "Elementos por página" - -msgid "manager.setup.information.success" -msgstr "La información de este medio fue actualizado." - -msgid "manager.setup.information" -msgstr "Información" - -msgid "manager.setup.identity" -msgstr "Identidad del medio" - -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "" -"Número de avisos que mostrar en la página de inicio. Dejelo vacío para no " -"mostrar ninguno." - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Mostrar en la página principal" - -msgid "manager.setup.enableAnnouncements.description" -msgstr "" -"Se pueden publicar avisos para informar a los lectores sobre noticias y " -"eventos. Los avisos publicados aparecerán en la página de avisos." - -msgid "manager.setup.emailSignature.description" -msgstr "" -"Los correos electrónicos predefinidos que envía el sistema en nombre de la " -"editorial tendrán la siguiente firma al final." - -msgid "manager.setup.emailBounceAddress.disabled" -msgstr "" -"Para enviar correos electrónicos que no se pueden entregar a una dirección " -"rechazada, el administrador del sitio debe habilitar la opción " -"allow_envelope_sender en el archivo de configuración del sitio. " -"Puede ser necesaria la configuración del servidor, como se indica en la " -"documentación de OMP." - -msgid "manager.setup.displayNewReleases.label" -msgstr "Nuevos lanzamientos" - -msgid "manager.setup.displayInSpotlight.label" -msgstr "Foco" - -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Libros destacados" - -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" -msgstr "" -"Las imágenes se reducirán cuando sean más grandes que este tamaño, pero " -"nunca se inflarán ni se estirarán para ajustarse a estas dimensiones." - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Ancho máximo de la imagen de portada" - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Altura máxima de la imagen de portada" - -msgid "manager.setup.contextSummary" -msgstr "Resumen de la publicación" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Incluya toda la información sobre su editorial que pueda ser de interés para " -"lectores/as, autores/as o revisores/as. Esto podría incluir su política de " -"acceso abierto, el enfoque y el alcance del mismo, la divulgación del " -"patrocinio y la historia de la editorial." - -msgid "manager.setup.contextAbout" -msgstr "Acerca de la publicación" - -msgid "manager.setup.announcements.success" -msgstr "La configuración de los avisos ha sido actualizada." - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "Este no es un tipo de código de editorial válido." - -msgid "manager.settings.publisher.identity" -msgstr "Identidad de la editorial" - -msgid "manager.payment.success" -msgstr "La configuración de pago ha sido actualizada." - -msgid "manager.setup.pressThumbnail.description" -msgstr "" -"Un pequeño logotipo o representación de la editorial que pueda utilizarse en " -"listados de editoriales." - -msgid "manager.setup.pressThumbnail" -msgstr "Miniatura de la editorial" - -msgid "manager.setup.disableSubmissions.description" -msgstr "" -"Impedir que los usuarios/as envíen nuevos artículos a la editorial. Los " -"envíos se pueden deshabilitar individualmente para cada serie editorial en " -"la página de ajustes de series editoriales." - -msgid "manager.setup.disableSubmissions.notAccepting" -msgstr "" -"La editorial no acepta envíos en este momento. Visite los ajustes del flujo " -"editorial para habilitar los envíos." - -msgid "manager.series.confirmDeactivateSeries.error" -msgstr "" -"Debe estar activa como mínimo una serie. Visite los ajustes del flujo de " -"trabajo para deshabilitar todos los envíos a la editorial." diff --git a/locale/es_ES/submission.po b/locale/es_ES/submission.po deleted file mode 100644 index aaffd769c8c..00000000000 --- a/locale/es_ES/submission.po +++ /dev/null @@ -1,488 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2020-11-30 18:48+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.submit.title" -msgstr "Enviar una monografía" - -msgid "submission.title" -msgstr "Título de libro" - -msgid "submission.select" -msgstr "Seleccionar propuesta" - -msgid "submission.synopsis" -msgstr "Sinopsis" - -msgid "submission.workflowType" -msgstr "Tipo de libro" - -msgid "submission.workflowType.description" -msgstr "Una monografía es una obra escrita totalmente por uno o más autores/as. Una obra colectiva tiene diferentes autores/as para cada capítulo (los detalles de capítulo se introducen posteriormente durante el proceso)." - -msgid "submission.workflowType.editedVolume" -msgstr "Obra colectiva: los autores/as se asocian con sus propios capítulos." - -msgid "submission.workflowType.authoredWork" -msgstr "Monografía: los autores/as se asocian con el libro completo." - -msgid "submission.monograph" -msgstr "Monografía" - -msgid "submission.published" -msgstr "Producción lista" - -msgid "submission.fairCopy" -msgstr "Copia en limpio" - -msgid "submission.artwork.permissions" -msgstr "Permisos" - -msgid "submission.chapter" -msgstr "Capítulo" - -msgid "submission.chapters" -msgstr "Capítulos" - -msgid "submission.chaptersDescription" -msgstr "Puede hacer una lista de los capítulos aquí y asignarlos a los colaboradores que figuran en la lista de colaboradores más arriba. Los colaboradores/as podrán acceder al capítulo durante varias fases del proceso de publicación." - -msgid "submission.chapter.addChapter" -msgstr "Añadir capítulo" - -msgid "submission.chapter.editChapter" -msgstr "Editar capítulo" - -msgid "submission.copyedit" -msgstr "Corregir el estilo" - -msgid "submission.publicationFormats" -msgstr "Formatos de publicación" - -msgid "submission.proofs" -msgstr "Pruebas" - -msgid "submission.download" -msgstr "Descargar" - -msgid "submission.sharing" -msgstr "Compartir" - -msgid "manuscript.submission" -msgstr "Propuesta de manuscrito" - -msgid "submission.round" -msgstr "Ronda {$round}" - -msgid "submissions.queuedReview" -msgstr "En revisión" - -msgid "manuscript.submissions" -msgstr "Propuestas de manuscritos" - -msgid "submission.confirmSubmit" -msgstr "¿Seguro que deseas proponer este manuscrito a la editorial?" - -msgid "submission.metadata" -msgstr "Metadatos" - -msgid "submission.supportingAgencies" -msgstr "Agencias de apoyo" - -msgid "grid.action.addChapter" -msgstr "Crear un nuevo capítulo" - -msgid "grid.action.editChapter" -msgstr "Editar este capítulo" - -msgid "grid.action.deleteChapter" -msgstr "Eliminar este capítulo" - -msgid "submission.submit" -msgstr "Comenzar nueva propuesta" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Comenzar una nueva propuesta para" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Nuevo Envío" - -msgid "submission.submit.upload" -msgstr "Subir" - -msgid "submission.submit.cancelSubmission" -msgstr "Puedes completar esta propuesta más tarde seleccionando Propuestas Activas desde la página de inicio del autor." - -msgid "submission.submit.selectSeries" -msgstr "Seleccionar serie (opcional)" - -msgid "submission.submit.seriesPosition" -msgstr "Lugar que ocupa dentro de esta serie, colección, ... (por ejemplo, Libro 2, o Volumen 2)" - -msgid "submission.submit.form.localeRequired" -msgstr "Selecciona una lengua para la propuesta." - -msgid "submission.submit.privacyStatement" -msgstr "Declaración de privacidad" - -msgid "submission.submit.contributorRole" -msgstr "Rol del colaborador" - -msgid "submission.submit.form.authorRequired" -msgstr "Se necesita al menos un autor." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Tienen que añadirse el nombre, apellido(s) y dirección de correo electrónico de cada autor." - -msgid "submission.submit.form.titleRequired" -msgstr "Introduce el texto de tu monografía." - -msgid "submission.submit.form.abstractRequired" -msgstr "Introduce un breve resumen de tu monografía." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Selecciona el rol del colaborador." - -msgid "submission.submit.submissionFile" -msgstr "Fichero de la propuesta" - -msgid "submission.submit.prepare" -msgstr "Preparar" - -msgid "submission.submit.catalog" -msgstr "Catálogo" - -msgid "submission.submit.metadata" -msgstr "Metadatos" - -msgid "submission.submit.finishingUp" -msgstr "Finalizar" - -msgid "submission.submit.nextSteps" -msgstr "Pasos siguientes" - -msgid "submission.submit.coverNote" -msgstr "Nota para el Editor" - -msgid "submission.submit.generalInformation" -msgstr "Información general" - -msgid "submission.submit.whatNext.description" -msgstr "El envío se notificó a la editorial y usted recibió un correo electrónico de confirmación por sus registros. Una vez revisado el envío por el editor/a, este contactará con usted." - -msgid "submission.submit.checklistErrors" -msgstr "Lea y marque los elementos en la lista de comprobación del envío. No se marcaron {$itemsRemaining} elementos." - -msgid "submission.submit.placement" -msgstr "Disposición de la propuesta" - -msgid "submission.submit.userGroup" -msgstr "Realizar propuesta como..." - -msgid "submission.submit.userGroupDescription" -msgstr "Si estás realizando la obra conjunta, deberás elegir el rol Editor de obra conjunta." - -msgid "grid.chapters.title" -msgstr "Capítulos" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Borrar archivo subido del corrector" - -msgid "publication.catalogEntry" -msgstr "Catálogo" - -msgid "submission.editCatalogEntry" -msgstr "Registro" - -msgid "submission.catalogEntry.new" -msgstr "Nueva entrada de catálogo" - -msgid "submission.catalogEntry.confirm" -msgstr "Añadir este libro al catálogo público" - -msgid "submission.catalogEntry.confirm.required" -msgstr "Confirma que la propuesta está lista para situarse en el catálogo." - -msgid "submission.catalogEntry.isAvailable" -msgstr "Esta monografía está lista para incluirse en un catalogo público." - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monografía" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Catálogo" - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Formato de publicación" - -msgid "submission.event.metadataPublished" -msgstr "Los metadatos de la monografía se han aprobado para su publicación." - -msgid "submission.event.metadataUnpublished" -msgstr "Los metadatos de la monografía no están ya publicados." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "El formato de publicación \"{$publicationFormatName}\" está disponible." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "El formato de publicación \"{$publicationFormatName}\" ya no está disponible." - -msgid "submission.event.publicationFormatPublished" -msgstr "El formato de publicación \"{$publicationFormatName}\" está aprobado para su publicación." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "El formato de publicación \"{$publicationFormatName}\" ya no se publica." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Se han subido los metadatos del catálogo." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Se actualizaron los metadatos del formato de publicación \"{$formatName}\"." - -msgid "submission.event.publicationFormatCreated" -msgstr "Se creó el formato de publicación \"{$formatName}\"." - -msgid "submission.event.publicationFormatRemoved" -msgstr "Se eliminó el formato de publicación \"{$formatName}\"." - -msgid "submission.submit.titleAndSummary" -msgstr "Título y Resumen" - -msgid "submission.upload.selectComponent" -msgstr "Seleccionar componente" - -msgid "submission.submit.seriesPosition.description" -msgstr "Ejemplos: libro 2, volumen 2" - -msgid "submission.submit.confirmation" -msgstr "Confirmación" - -msgid "submission.complete" -msgstr "Aceptado" - -msgid "submission.incomplete" -msgstr "Esperando aceptación" - -msgid "workflow.review.externalReview" -msgstr "Revisión externa" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Enviar para una revisión externa" - -msgid "submission.upload.fileContents" -msgstr "Componente de envío" - -msgid "submission.list.orderingFeaturesSection" -msgstr "Arrastre y suelte o pulse los botones de arriba y abajo para cambiar el orden de los elementos en {$title}." - -msgid "submission.list.saveFeatureOrder" -msgstr "Guardar orden" - -msgid "submission.editorName" -msgstr "{$editorName} (ed)" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "author.submit.seriesRequired" -msgstr "Se requieren series válidas." - -msgid "submission.catalogEntry.add" -msgstr "Añadir los seleccionados al catálogo" - -msgid "submission.catalogEntry.select" -msgstr "Seleccione monografías a añadir al catálogo" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "Debe seleccionar al menos una monografía para añadir al catálogo." - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Ver envío" - -msgid "submission.dependentFiles" -msgstr "Archivos dependientes" - -msgid "submission.metadataDescription" -msgstr "" -"Estas especificaciones se basan en el conjunto de metadatos Dublin Core, un " -"estándar internacional usado para describir contenido editorial." - -msgid "section.any" -msgstr "Cualquier serie" - -msgid "submission.list.monographs" -msgstr "Monografías" - -msgid "submission.list.countMonographs" -msgstr "{$count} monografías" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} de {$total} monografías" - -msgid "submission.list.orderFeatures" -msgstr "Ordenar elementos" - -msgid "submission.list.orderingFeatures" -msgstr "Arrastre y suelte o pulse los botones de arriba y abajo para cambiar el orden de los elementos en la página principal." - -msgid "submission.submit.noContext" -msgstr "La publicación del envío no pudo encontrarse." - -msgid "author.isVolumeEditor" -msgstr "Identificar a este contribuidor/a como editor/a de este volumen." - -msgid "publication.scheduledIn" -msgstr "Programado para publicarse en {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "" -"Todos los requisitos de publicación se cumplen. ¿Seguro que desea hacer " -"pública esta entrada del catálogo?" - -msgid "publication.publishedIn" -msgstr "Publicado en {$issueName}." - -msgid "publication.required.issue" -msgstr "La publicación debe asignarse a un número antes de poder ser publicada." - -msgid "publication.invalidSeries" -msgstr "Las series para esta publicación no pudieron encontrarse." - -msgid "publication.catalogEntry.success" -msgstr "Los detalles de entrada del catálogo han sido actualizados." - -msgid "catalog.browseTitles" -msgstr "{$numTitles} títulos" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Cada capítulo puede tener su propia fecha de publicación." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Todos los capítulos utilizarán la fecha de publicación del monográfico." - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Fechas de publicación" - -msgid "submission.chapter.pages" -msgstr "Páginas" - -msgid "submission.workflowType.change" -msgstr "Cambiar" - -msgid "submission.workflowType.editedVolume.label" -msgstr "Obra colectiva" - -msgid "publication.inactiveSeries" -msgstr "{$series} (Inactivo)" - -msgid "submission.list.viewEntry" -msgstr "Ver entrada" - -msgid "submission.publication" -msgstr "Publicación" - -msgid "publication.status.published" -msgstr "Publicado" - -msgid "submission.status.scheduled" -msgstr "Programado" - -msgid "publication.status.unscheduled" -msgstr "Desprogramado" - -msgid "submission.publications" -msgstr "Publicaciones" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"El año de los derechos de autor se ajustará automáticamente cuando se " -"publique en un número." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "" -"El año de los derechos de autor se ajustará automáticamente en función de la " -"fecha de publicación." - -msgid "publication.datePublished" -msgstr "Fecha de publicación" - -msgid "publication.editDisabled" -msgstr "Esta versión ya ha sido publicada y no puede editarse." - -msgid "publication.event.published" -msgstr "El envío fue publicado." - -msgid "publication.event.scheduled" -msgstr "El envío se programó para su publicación." - -msgid "publication.event.unpublished" -msgstr "El envío fue retirado de publicación." - -msgid "publication.event.versionPublished" -msgstr "Se publicó una versión nueva." - -msgid "publication.event.versionScheduled" -msgstr "Se programó una versión nueva para su publicación." - -msgid "publication.event.versionUnpublished" -msgstr "Se eliminó una versión de publicación." - -msgid "publication.invalidSubmission" -msgstr "No se pudo encontrar el envío para esta publicación." - -msgid "publication.publish" -msgstr "Publicar" - -msgid "publication.publish.requirements" -msgstr "" -"Se deben cumplir los siguientes requisitos antes de que esto pueda ser " -"publicado." - -msgid "publication.required.declined" -msgstr "Un envío rechazado no puede ser publicado." - -msgid "publication.required.reviewStage" -msgstr "" -"El envío debe estar en las fases de \"corrección\" o de \"producción\" antes " -"de poder ser publicado." - -msgid "submission.license.description" -msgstr "" -"La licencia se ajustará automáticamente a {$licenseName} cuando se publique." - -msgid "submission.copyrightHolder.description" -msgstr "" -"Los derechos de autor se asignarán automáticamente a {$copyright} cuando se " -"publique." - -msgid "submission.copyrightOther.description" -msgstr "" -"Asignar derechos de autor para los envíos publicados en la parte siguiente." - -msgid "publication.unpublish" -msgstr "Retirar de publicación" - -msgid "publication.unpublish.confirm" -msgstr "¿Seguro que no quiere que esto sea publicado?" - -msgid "publication.unschedule.confirm" -msgstr "¿Seguro que no quiere que esto se programe para su publicación?" - -msgid "publication.version.details" -msgstr "Detalles de publicación de la versión {$version}" - -msgid "submission.queries.production" -msgstr "Discusiones de producción" diff --git a/locale/fa/locale.po b/locale/fa/locale.po new file mode 100644 index 00000000000..d732ef73ed2 --- /dev/null +++ b/locale/fa/locale.po @@ -0,0 +1,1541 @@ +# Kamdin Parsakia , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-09-30 00:06+0000\n" +"Last-Translator: Kamdin Parsakia \n" +"Language-Team: Persian " +"\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "common.payments" +msgstr "پرداخت‌ها" + +msgid "monograph.audience" +msgstr "مخاطبان" + +msgid "monograph.audience.success" +msgstr "جزئیات مخاطب به روزرسانی شد." + +msgid "monograph.coverImage" +msgstr "عکس جلد" + +msgid "monograph.audience.rangeQualifier" +msgstr "انتخاب طیف مخاطب" + +msgid "monograph.audience.rangeTo" +msgstr "طیف مخاطبین (تا)" + +msgid "monograph.audience.rangeFrom" +msgstr "طیف مخاطبین (از)" + +msgid "monograph.audience.rangeExact" +msgstr "طیف مخاطبین (دقیق)" + +msgid "monograph.languages" +msgstr "زبان‌ها" + +msgid "monograph.publicationFormat" +msgstr "فرمت" + +msgid "monograph.miscellaneousDetails" +msgstr "جزئیات این کتاب یا رساله" + +msgid "monograph.carousel.publicationFormats" +msgstr "فرمت‌ها:" + +msgid "monograph.type" +msgstr "نوع نوشته دریافتی" + +msgid "submission.pageProofs" +msgstr "شواهد" + +msgid "monograph.task.addNote" +msgstr "افزودن به وظیفه" + +msgid "monograph.accessLogoOpen.altText" +msgstr "دسترسی باز" + +msgid "monograph.publicationFormat.imprint" +msgstr "حک کردن برند" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "تعداد صفحات" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "نوشته پشت جلد" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "نوشته روی جلد" + +msgid "monograph.publicationFormat.productComposition" +msgstr "جنس محصول" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "جزئیات محصول (اختیاری)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "شناسایی محصول" + +msgid "monograph.publicationFormat.price" +msgstr "قیمت" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "تعیین قیمت الزامی است." + +msgid "monograph.publicationFormat.priceType" +msgstr "نوع قیمت" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "قابلیت مرجوع کردن محصول" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "مشخصات دیجیتال" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "ابعاد فیزیکی" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "حجم فایل (مگابایت)" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "وارد کردن حجم فایل آپلود شده" + +msgid "monograph.publicationFormat.productHeight" +msgstr "ارتفاع" + +msgid "monograph.publicationFormat.productThickness" +msgstr "قطر" + +msgid "monograph.publicationFormat.productWeight" +msgstr "وزن" + +msgid "monograph.publicationFormat.productWidth" +msgstr "عرض" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "کشور" + +msgid "monograph.publicationFormat.productRegion" +msgstr "منطقه توزیع محصول" + +msgid "monograph.publicationFormat.taxRate" +msgstr "نرخ مالیات" + +msgid "monograph.publicationFormat.taxType" +msgstr "نوع مالیات" + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "کد شناسایی ناقص است." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "برخی از فیلدهای فراداده ناقص است." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "فرمت انتشاری که انتخاب کردید قابل استفاده نیست." + +msgid "monograph.publicationFormat.openTab" +msgstr "باز کردن تب فرمت انتشار." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "فرمت انتشار" + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "تعیین قیمت معتبر ضروری است." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "جزئیات فرمت" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "جنس فیزیکی" + +msgid "grid.catalogEntry.remoteURL" +msgstr "لینک سایت خارجی" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "یک کد سیزده رقمی ISBN." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "کد ده رقمی ISBN." + +msgid "grid.catalogEntry.monographRequired" +msgstr "تعیین شناسه برای کتاب ضروری است." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "یک فرمت انتشار باید انتخاب شود." + +msgid "grid.catalogEntry.availability" +msgstr "موجودی" + +msgid "grid.catalogEntry.isAvailable" +msgstr "موجود" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "ناموجود" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "تأییدیه فرمت" + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "نشان دادن عدم تأیید فراداده برای این فرمت." + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "موجود بودن فرمت" + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"این فرمت را برای خوانندگان غیرقابل دسترس قرار بده. فایل‌های قابل دانلود و " +"انواع دیگر توزیع کتاب در بخش کاتالوگ آن دیگر نمایش داده نخواهد شد." + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "کاتالوگ تأیید نشده." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "اثبات تأیید نشده." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "تأیید شده" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "در انتظار تأیید" + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "کد موجودی محصول الزامی است." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "کد جنس محصول باید انتخاب شود." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "مقدار کد" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "نوع کد ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "کد شناسایی الزامی است." + +msgid "grid.catalogEntry.valueRequired" +msgstr "مقدار الزامی است." + +msgid "grid.catalogEntry.salesRights" +msgstr "حق فروش" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "مقدار کد" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "باقی مناطق؟" + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "در حال حاضر حق فروش در سایر کشورها برای این انتشار تعیین شده است." + +msgid "grid.catalogEntry.countries" +msgstr "کشورها" + +msgid "grid.catalogEntry.regions" +msgstr "مناطق" + +msgid "grid.catalogEntry.included" +msgstr "انتخاب شده" + +msgid "grid.catalogEntry.excluded" +msgstr "بیرون گذاشته شده" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "قلمرو" + +msgid "grid.catalogEntry.markets" +msgstr "قلمروهای بازار" + +msgid "grid.catalogEntry.publicationDates" +msgstr "تاریخ‌های انتشار" + +msgid "grid.catalogEntry.roleRequired" +msgstr "تعیین نقش نماینده الزامی است." + +msgid "grid.catalogEntry.dateValue" +msgstr "تاریخ" + +msgid "grid.catalogEntry.dateRole" +msgstr "نقش" + +msgid "grid.catalogEntry.dateFormat" +msgstr "فرمت تاریخ" + +msgid "grid.catalogEntry.representatives" +msgstr "نمایندگان" + +msgid "grid.catalogEntry.representativeType" +msgstr "نوع نماینده" + +msgid "grid.catalogEntry.agent" +msgstr "عامل فروش" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "عوامل فروش" + +msgid "grid.catalogEntry.supplier" +msgstr "تأمین کننده" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "تأمین کنندگان" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "انتخاب نقش:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "نقش" + +msgid "grid.catalogEntry.representativeName" +msgstr "اسم" + +msgid "grid.catalogEntry.representativePhone" +msgstr "شماره تلفن" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "ایمیل" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "وبسایت" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "کد شناسایی نمایندگی" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "نوع کد شناسایی نماینده" + +msgid "grid.action.editRepresentative" +msgstr "ویرایش این نماینده" + +msgid "grid.action.deleteRepresentative" +msgstr "حذف این نماینده" + +msgid "spotlight.author" +msgstr "نویسنده، " + +msgid "grid.content.spotlights.category.homepage" +msgstr "صفحه خانگی" + +msgid "spotlight" +msgstr "ویژه" + +msgid "spotlight.noneExist" +msgstr "در حال حاضر محصول ویژه‌ای وجود ندارد." + +msgid "spotlight.title.homePage" +msgstr "ویژه شده" + +msgid "grid.content.spotlights.form.location" +msgstr "موقعیت مورد ویژه" + +msgid "grid.content.spotlights.form.title" +msgstr "عنوان ویژه" + +msgid "grid.content.spotlights.form.type.book" +msgstr "کتاب" + +msgid "grid.content.spotlights.itemRequired" +msgstr "تعیین یک آیتم ضروری است." + +msgid "grid.content.spotlights.titleRequired" +msgstr "تعیین عنوان ویژه ضروری است." + +msgid "grid.content.spotlights.locationRequired" +msgstr "لطفاً یک محل برای این آیتم ویژه انتخاب کنید." + +msgid "grid.action.editSpotlight" +msgstr "ویرایش این آیتم ویژه" + +msgid "grid.action.deleteSpotlight" +msgstr "حذف این آیتم ویژه" + +msgid "grid.action.addSpotlight" +msgstr "اضافه کردن آیتم ویژه" + +msgid "manager.series.indexed" +msgstr "نمایه شده" + +msgid "grid.action.catalogEntry" +msgstr "مشاهده فرم کاتالوگ" + +msgid "grid.action.editFormat" +msgstr "ویرایش فرمت" + +msgid "grid.action.deleteFormat" +msgstr "حذف این فرمت" + +msgid "grid.action.addFormat" +msgstr "اضافه کردن فرمت انتشار" + +msgid "grid.action.pageProofApproved" +msgstr "صفحات اثبات فایل برای این انتشار آماده است" + +msgid "grid.action.newCatalogEntry" +msgstr "ورودی کاتالوگ جدید" + +msgid "grid.action.publicCatalog" +msgstr "مشاهده این آیتم در کاتالوگ" + +msgid "grid.action.feature" +msgstr "تغییر وضعیت نمایش برجسته" + +msgid "grid.action.releaseMonograph" +msgstr "نشان کردن این ارسال به عنوان «انتشار تازه»" + +msgid "grid.action.manageCategories" +msgstr "پیکربندی دسته‌ها برای این انتشارات" + +msgid "grid.action.manageSeries" +msgstr "پیکربندی سری‌های این انتشارات" + +msgid "grid.action.addCode" +msgstr "اضافه کردن کد" + +msgid "grid.action.editCode" +msgstr "ویرایش این کد" + +msgid "grid.action.addRights" +msgstr "اضافه کردن حق فروش" + +msgid "grid.action.editRights" +msgstr "ویرایش این حقوق" + +msgid "grid.action.deleteRights" +msgstr "حذف این حقوق" + +msgid "grid.action.addMarket" +msgstr "اضافه کردن بازار" + +msgid "grid.action.deleteMarket" +msgstr "حذف این بازار" + +msgid "grid.action.addDate" +msgstr "اضافه کردن تاریخ انتشار" + +msgid "grid.action.editDate" +msgstr "ویرایش این تاریخ" + +msgid "grid.action.deleteDate" +msgstr "حذف این تاریخ" + +msgid "grid.action.createContext" +msgstr "ایجاد نشر جدید" + +msgid "grid.action.moreAnnouncements" +msgstr "برو به صفحه اعلانات" + +msgid "grid.action.submissionEmail" +msgstr "کلیک جهت خواندن این ایمیل" + +msgid "grid.action.approveProofs" +msgstr "مشاهده گرید اثبات‌ها" + +msgid "grid.action.proofApproved" +msgstr "فرمت اثبات شده" + +msgid "grid.action.formatAvailable" +msgstr "تغییر وضعیت موجودی این فرمت" + +msgid "grid.reviewAttachments.add" +msgstr "اضافه کردن ضمیمه به بررسی" + +msgid "series.series" +msgstr "مجموعه‌ها" + +msgid "series.path" +msgstr "مسیر" + +msgid "catalog.manage" +msgstr "مدیریت کاتالوگ" + +msgid "catalog.manage.newReleases" +msgstr "تازه‌ها" + +msgid "catalog.manage.category" +msgstr "دسته‌بندی" + +msgid "catalog.manage.series" +msgstr "مجموعه‌ها" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "ISSN چاپی و آنلاین نباید یکسان باشد." + +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN آنلاین" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN چاپی" + +msgid "catalog.selectSeries" +msgstr "انتخاب مجموعه‌ها" + +msgid "catalog.selectCategory" +msgstr "انتخاب دسته‌بندی" + +msgid "catalog.manage.categoryDescription" +msgstr "" +"روی دکمه «ویژگی» کلید کنید و سپس برای انتخاب کتاب جهت ویژه این دسته‌بندی " +"ستاره را بزنید." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "کاروسل" + +msgid "catalog.manage.newRelease" +msgstr "نشر" + +msgid "catalog.manage.manageSeries" +msgstr "مدیریت مجموعه‌ها" + +msgid "catalog.manage.manageCategories" +msgstr "مدیریت دسته‌بندی‌ها" + +msgid "catalog.manage.noMonographs" +msgstr "هیچ جلدی انتخاب نشده." + +msgid "catalog.manage.featured" +msgstr "برجسته" + +msgid "catalog.manage.seriesFeatured" +msgstr "برجسته در مجموعه" + +msgid "catalog.manage.featuredSuccess" +msgstr "این جلد برجسته شده است." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "این جلد برجسته نشده." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "علامت‌گذاری جلد به عنوان انتشار تازه برداشته شده." + +msgid "catalog.manage.feature.newRelease" +msgstr "انتشار تازه" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "انتشار جدید در دسته‌بندی" + +msgid "catalog.manage.nonOrderable" +msgstr "این جلد تا وقتی برجسته نشده قابل سفارش نیست." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "جستجو بر اساس عنوان یا نویسنده" + +msgid "catalog.manage.isNotFeatured" +msgstr "این جلد برجسته نیست؛ آن را به حالت برجسته تغییر بده." + +msgid "catalog.manage.isNotNewRelease" +msgstr "این جلد انتشار تازه نیست؛ آن را به انتشار تازه تغییر بده." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "هیچ دریافتی برای اضافه شدن به این کاتالوگ انتخاب نشده." + +msgid "catalog.manage.submissionsNotFound" +msgstr "حداقل یکی از دریافت‌ها یافت نشد." + +msgid "catalog.noTitles" +msgstr "هیچ عنوانی تاکنون منتشر نشده." + +msgid "catalog.noTitlesNew" +msgstr "هیچ انتشار تازه‌ای در حال حاضر وجود ندارد." + +msgid "catalog.feature" +msgstr "برجستگی" + +msgid "catalog.featured" +msgstr "برجسته" + +msgid "catalog.featuredBooks" +msgstr "کتاب‌های برجسته" + +msgid "catalog.foundTitleSearch" +msgstr "یک عنوان منطبق با جستجوی «{$searchQuery}» پیدا شد." + +msgid "catalog.foundTitlesSearch" +msgstr "{$number} عنوان منطبق با جستجوی شما برای «{$searchQuery}» یافت شد." + +msgid "catalog.newReleases" +msgstr "انتشارهای تازه" + +msgid "catalog.dateAdded" +msgstr "اضافه شده" + +msgid "catalog.publicationInfo" +msgstr "مشخصات انتشار" + +msgid "catalog.published" +msgstr "منتشر شده" + +msgid "catalog.forthcoming" +msgstr "به زودی" + +msgid "catalog.categories" +msgstr "دسته‌بندی‌ها" + +msgid "catalog.parentCategory" +msgstr "دسته‌بندی والد" + +msgid "catalog.aboutTheAuthor" +msgstr "درباره {$roleName}" + +msgid "catalog.sortBy" +msgstr "ترتیب جلدها" + +msgid "catalog.sortBy.seriesDescription" +msgstr "انتخاب چگونگی چینش کتاب‌ها در این مجموعه." + +msgid "catalog.sortBy.categoryDescription" +msgstr "انتخاب نحوه چینش کتاب‌ها در این دسته‌بندی." + +msgid "catalog.sortBy.catalogDescription" +msgstr "انتخاب نحوه چینش کتاب‌ها در کاتالوگ." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "جایگاه مجموعه‌ها (اول پایین‌ترین)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "جایگاه مجموعه‌ها (اول بالاترین)" + +msgid "catalog.viewableFile.title" +msgstr "مشاهده {$type} فایل {$title}" + +msgid "catalog.viewableFile.return" +msgstr "بازگشت به مشاهده جزئیات درباره {$monographTitle}" + +msgid "submission.search" +msgstr "جستجوی کتاب" + +msgid "common.publication" +msgstr "جلد" + +msgid "common.publications" +msgstr "جلدها" + +msgid "common.preview" +msgstr "پیش نمایش" + +msgid "common.feature" +msgstr "برجستگی" + +msgid "common.searchCatalog" +msgstr "جستجوی کاتالوگ" + +msgid "common.moreInfo" +msgstr "اطلاعات بیش‌تر" + +msgid "common.listbuilder.selectValidOption" +msgstr "لطفاً یک گزینه معتبر از لیست انتخاب کند." + +msgid "common.listbuilder.itemExists" +msgstr "نمی‌توانید یک آیتم را دوباره انتخاب کنید." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "navigation.catalog" +msgstr "کاتالوگ" + +msgid "navigation.competingInterestPolicy" +msgstr "سیاست منافع رقابتی" + +msgid "navigation.catalog.allMonographs" +msgstr "همه جلدها" + +msgid "navigation.catalog.manage" +msgstr "مدیریت" + +msgid "navigation.catalog.administration.short" +msgstr "اداره" + +msgid "navigation.catalog.administration.categories" +msgstr "دسته‌بندی‌ها" + +msgid "navigation.catalog.administration.series" +msgstr "مجموعه‌ها" + +msgid "navigation.infoForAuthors" +msgstr "برای نویسندگان" + +msgid "navigation.infoForLibrarians" +msgstr "برای کتابداران" + +msgid "navigation.infoForAuthors.long" +msgstr "اطلاعات برای نویسندگان" + +msgid "navigation.newReleases" +msgstr "انتشارات تازه" + +msgid "navigation.published" +msgstr "منتشر شده" + +msgid "navigation.wizard" +msgstr "ابزار جادویی" + +msgid "navigation.linksAndMedia" +msgstr "پیوندها و رسانه‌های اجتماعی" + +msgid "navigation.skip.spotlights" +msgstr "پریدن به ویژه‌ها" + +msgid "navigation.navigationMenus.series.generic" +msgstr "مجموعه‌ها" + +msgid "navigation.navigationMenus.category.generic" +msgstr "دسته‌بندی" + +msgid "navigation.navigationMenus.category.description" +msgstr "پیوند به یک دسته‌بندی." + +msgid "navigation.navigationMenus.newRelease" +msgstr "انتشارات تازه" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "پیوند به انتشارات تازه خودتان." + +msgid "context.contexts" +msgstr "نشرها" + +msgid "context.context" +msgstr "نشر" + +msgid "context.current" +msgstr "نشر کنونی:" + +msgid "user.authorization.representationNotFound" +msgstr "فرمت انتشار درخواست شده یافت نشد." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "در بر گرفتن کاربران بدون نقش در این نشر." + +msgid "user.noRoles.submitMonograph" +msgstr "ارسال پروپوزال" + +msgid "user.noRoles.regReviewer" +msgstr "ثبت نام به عنوان داور" + +msgid "user.noRoles.regReviewerClosed" +msgstr "ثبت نام به عنوان داور: در حال حاضر ثبت نام داوران غیر فعال است." + +msgid "user.reviewerPrompt.userGroup" +msgstr "بله، درخواست نقش {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"بله، می‌خواهم با درخواست‌های داوری نوشته‌های ارسالی به این نشر در ارتباط " +"باشم." + +msgid "user.register.otherContextRoles" +msgstr "درخواست نقش‌های ذیل." + +msgid "user.role.manager" +msgstr "مدیریت نشر" + +msgid "user.role.pressEditor" +msgstr "دبیر نشر" + +msgid "user.role.subEditor" +msgstr "دبیر مجموعه" + +msgid "user.role.copyeditor" +msgstr "صفحه‌آرا" + +msgid "user.role.proofreader" +msgstr "بازرس پروف" + +msgid "user.role.productionEditor" +msgstr "دبیر انتشار" + +msgid "user.role.managers" +msgstr "مدیران نشر" + +msgid "user.role.subEditors" +msgstr "دبیران مجموعه" + +msgid "user.role.editors" +msgstr "دبیران" + +msgid "user.role.copyeditors" +msgstr "صفحه‌آراها" + +msgid "user.role.proofreaders" +msgstr "بازرسان پروف" + +msgid "user.role.productionEditors" +msgstr "دبیران انتشار" + +msgid "user.register.selectContext" +msgstr "یک نشر برای ثبت انتخاب کنید:" + +msgid "user.register.noContexts" +msgstr "هیچ نشری برای ثبت موجود نیست." + +msgid "user.register.privacyStatement" +msgstr "بیانیه محرمانگی" + +msgid "user.register.registrationDisabled" +msgstr "در حال حاضر امکان ثبت نام در این نشر وجود ندارد." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "پسورد وارد شده کوتاه است." + +msgid "user.register.readerDescription" +msgstr "اطلاع رسانی شده همزمان با انتشار جلد از طریق ایمیل." + +msgid "monograph.publicationFormats" +msgstr "فرمت‌های انتشار" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "موجودی محصول" + +msgid "monograph.publicationFormat.isApproved" +msgstr "قرار دادن فراداده برای این فرمت انتشار در کاتالوگ کتاب." + +msgid "grid.catalogEntry.proof" +msgstr "اثبات" + +msgid "monograph.publicationFormatDetails" +msgstr "جزئیات فرمت انتشار قابل استفاده: {$format}" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "محافظت فنی دیجیتال" + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "قیمت‌ها و بازارها ناقص است." + +msgid "monograph.proofReadingDescription" +msgstr "صفحه‌آرا فایل نهایی آماده انتشار را آپلود می‌نماید." + +msgid "grid.catalogEntry.nameRequired" +msgstr "انتخاب نام الزامی است." + +msgid "monograph.publicationFormat.discountAmount" +msgstr "درصد تخفیف" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "این فرمت در یک سایت جداگانه قابل دسترسی خواهد بود" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"تأیید فراداده برای این فرمت. فراداده می‌تواند از طریق پنل ویرایش برای هر " +"فرمت چک شود." + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"این فرمت را برای خوانندگان در دسترس قرار بده. فایل‌های قابل دانلود و انواع " +"دیگر توزیع کتاب در بخش کاتالوگ آن نمایش داده خواهد شد." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "تعیین فرمت تاریخ الزامی است." + +msgid "spotlight.spotlights" +msgstr "ویژه‌ها" + +msgid "grid.action.featureMonograph" +msgstr "برجسته کردن این آیتم در کاروسل کاتالوگ" + +msgid "grid.action.publicationFormatTab" +msgstr "نمایش تب فرمت انتشار" + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "فرمت در فهرست نیست." + +msgid "grid.catalogEntry.dateRequired" +msgstr "تعیین تاریخ الزامی بوده و تاریخ باید با فرمت انتخاب شده مطابقت کند." + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "آیتم ویژه" + +msgid "grid.action.deleteCode" +msgstr "حذف این کد" + +msgid "grid.action.availableRepresentation" +msgstr "تأیید/رد این فرد" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "حجم فایل برای فرمت‌های دیجیتالی الزامی است." + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"می‌تواند یک عامل فروش برای نمایندگی خود در این محدوده تعیین نمایید (اختیاری)." + +msgid "grid.content.spotlights.form.item" +msgstr "وارد کردن عنوان ویژه (تکمیل خودکار)" + +msgid "grid.action.editMarket" +msgstr "ویرایش این بازار" + +msgid "series.featured.description" +msgstr "این مجموعه‌ها در منوی گشت و گذار اصلی نمایش داده خواهد شد" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "نوع حق فروش" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"اگر خدمات را خودتان به مشتریان خود ارائه می‌دهد می‌توانید بخش زیر را خالی " +"بگذارید." + +msgid "manager.series.open" +msgstr "دریافتی‌های باز" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"این گزینه را برای به کارگیری عمومی این حق فروش انتخاب کنید. در این حالت " +"نیازی به انتخاب کشور و مناطق فروش نیست." + +msgid "grid.action.addRepresentative" +msgstr "اضافه کردن نماینده" + +msgid "grid.libraryFiles.column.files" +msgstr "فایل‌ها" + +msgid "catalog.manage.series.issn.validation" +msgstr "لطفاً یک ISSN معتبر وارد کنید." + +msgid "grid.action.formatInCatalogEntry" +msgstr "نمایش فرمت در کاتالوگ" + +msgid "grid.action.approveProof" +msgstr "تأیید نسخه اثبات برای نمایه سازی و ورود به کاتالوگ" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"عکس جلد کتب انتخاب شده بالای صفحه اصلی به عنوان یک مجموعه قابل اسکرول نمایش " +"داده می‌شود. روی گزینه «ویژگی» کلیک کرده و سپس با کلیک بر روی ستاره کتاب را " +"به کاروسل خود اضافه کنید." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"روی گزینه «ویژگی‌» کلیک کرده و سپس ستار را برای انتخاب یک کتاب ویژه برای این " +"مجموعه بزنید." + +msgid "common.prefix" +msgstr "پیشوند" + +msgid "catalog.manage.categoryFeatured" +msgstr "برجسته در دسته‌بندی" + +msgid "common.listbuilder.completeForm" +msgstr "لطفاً فرم را کامل کنید." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "جلد به عنوان انتشار تازه نشان شده." + +msgid "common.homePageHeader.altText" +msgstr "هدر صفحه اصلی" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "انتشار تازه در مجموعه‌ها" + +msgid "navigation.catalog.administration" +msgstr "اداره کاتالوگ" + +msgid "context.select" +msgstr "تعویض به نشر دیگر:" + +msgid "catalog.manage.isFeatured" +msgstr "این جلد برجسته است؛ آن را از حالت برجسته خارج کن." + +msgid "navigation.infoForLibrarians.long" +msgstr "اطلاعات برای کتابداران" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "ارسال نوشته: در حال حاضر ثبت نام نویسنده غیر فعال است." + +msgid "catalog.manage.isNewRelease" +msgstr "این جلد یک انتشار تازه است؛ آن را از حالت انتشار تازه خارج کن." + +msgid "navigation.navigationMenus.catalog.description" +msgstr "پیوند به کاتالوگ خودتان." + +msgid "user.reviewerPrompt" +msgstr "آیا مایلید نوشته‌های ارسالی به این نشر را داوری کنید؟" + +msgid "catalog.manage.findSubmissions" +msgstr "یافتن جلدهایی برای افزودن به این کاتالوگ" + +msgid "navigation.navigationMenus.series.description" +msgstr "پیوند به مجموعه‌ها." + +msgid "user.register.contextsPrompt" +msgstr "می‌خواهید در کدام نشرهای این سایت ثبت نام کنید؟" + +msgid "catalog.noTitlesSearch" +msgstr "هیچ عنوانی مطابق جستجوی «{$searchQuery}» یافت نشد." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"اگر برای داوری در هر یک از نشرها درخواست دادید لطفاً موضوعات مورد علاقه خود " +"را وارد کنید." + +msgid "catalog.category.heading" +msgstr "همه کتاب‌ها" + +msgid "catalog.category.subcategories" +msgstr "زیردسته‌ها" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"یادداشت: برای سفارش آیتم‌های مورد نظر ابتدا باید وارد سایت شوید (تمامی آیتم‌" +"های علامت گذاری شده با دسترسی باز بدون نیاز به ورود و به طور رایگان قابل " +"دریافت است)." + +msgid "user.register.authorDescription" +msgstr "قادر به ارسال برای انتشارات." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "تمایل به انجام داوری برای انتشارات." + +msgid "user.register.reviewerDescription" +msgstr "تمایل به انجام داوری برای تمامی نشرها." + +msgid "user.register.reviewerInterests" +msgstr "تعیین حوزه‌های علاقمه‌مندی جهت داوری:" + +msgid "user.register.form.userGroupRequired" +msgstr "باید حداقل یک نقش انتخاب کنید" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"بله، شرایط جمع آوری و نگهداری اطلاعات توسط ناشر را می‌پذیرم ( بیانیه محرمانگی)." + +msgid "site.noPresses" +msgstr "هیچ نشری در دسترس نیست." + +msgid "site.pressView" +msgstr "مشاهده وبسایت نشر" + +msgid "about.pressContact" +msgstr "ارتباط با انتشارات" + +msgid "about.aboutContext" +msgstr "درباره نشر" + +msgid "about.editorialTeam" +msgstr "هیئت تحریریه" + +msgid "about.editorialPolicies" +msgstr "سیاست‌های دبیری" + +msgid "about.focusAndScope" +msgstr "اهداف و زمینه‌ها" + +msgid "about.seriesPolicies" +msgstr "سیاست‌های دسته‌بندی و مجموعه کتاب‌ها" + +msgid "about.submissions" +msgstr "ارسالی‌ها" + +msgid "about.onlineSubmissions.login" +msgstr "ورود" + +msgid "about.onlineSubmissions.register" +msgstr "ثبت نام" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "برای ثبت نام وارد شوید یا ثبت نام کنید ({$login} یا {$register})." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "ارسال نوشته جدید" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "مشاهده ارسال‌های در حال بررسی" + +msgid "about.authorGuidelines" +msgstr "راهنمای نویسندگان" + +msgid "about.submissionPreparationChecklist" +msgstr "چک لیست آماده سازی نوشته ارسالی" + +msgid "about.copyrightNotice" +msgstr "تذکر حق نشر" + +msgid "about.privacyStatement" +msgstr "بیانیه محرمانگی" + +msgid "about.reviewPolicy" +msgstr "فرآیند دوری همتا" + +msgid "about.publicationFrequency" +msgstr "تکرر انتشار" + +msgid "about.openAccessPolicy" +msgstr "سیاست دسترسی باز" + +msgid "about.pressSponsorship" +msgstr "اسپانسری انتشارات" + +msgid "about.aboutThisPublishingSystem" +msgstr "اطلاعات بیش‌تر درباره سیستم انتشار، پلتفرم و جریان کار OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "فرآیند انتشار و دبیری" + +msgid "about.aboutSoftware" +msgstr "درباره سیستم مدیریت کتاب" + +msgid "help.searchReturnResults" +msgstr "بازگشت به نتایج جستجو" + +msgid "help.goToEditPage" +msgstr "باز کردن صفحه جدید برای ویرایش اطلاعات" + +msgid "installer.appInstallation" +msgstr "نصب OMP" + +msgid "installer.ompUpgrade" +msgstr "به روز رسانی OMP" + +msgid "installer.installApplication" +msgstr "نصب OMP" + +msgid "installer.updatingInstructions" +msgstr "" +"برای به روز رسانی نسخه نصب شده OMP روی این لینک کلید نمایید." + +msgid "installer.preInstallationInstructionsTitle" +msgstr "مراحل پیش از نصب" + +msgid "installer.preInstallationInstructions" +msgstr "" +"1. فایل‌ها و نشانی‌های زیر باید قابل نوشتن شود:\n" +"\t
    6. config.inc.php is writable (optional): {$writable_config}
    7. " +"\n" +"\t
    8. public/ is writable: {$writable_public}
    9. \n" +"\t
    10. cache/ is writable: {$writable_cache}
    11. \n" +"\t
    12. cache/t_cache/ is writable: {$writable_templates_cache}
    13. \n" +"\t
    14. cache/t_compile/ is writable: " +"{$writable_templates_compile}
    15. \n" +"\t
    16. cache/_db is writable: {$writable_db_cache}
    17. \n" +"

      2. یک نشانی برای ذخیره‌سازی فایل‌ها باید ایجاد شود (رجوع شود به بخش " +"تنظیمات فایل).

      " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"برای پشتیبانی کامل از Unicode باید تنظیمات PHP با پشتیبانی از
      mbstring سازگار باشد." +"\n" +"سرور شما در حال حاضر از {$supportsMBString} پشتیبانی می‌کند." + +msgid "installer.allowFileUploads" +msgstr "در حال حاضر سرور شما اجازه آپلود {$allowFileUploads} را می‌دهد." + +msgid "installer.maxFileUploadSize" +msgstr "حداکثر حجم فایل قابل آپلود در سرور شما {$maxFileUploadSize} می‌باشد." + +msgid "installer.localeInstructions" +msgstr "زبان اصلی برای استفاده از برنامه." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"در صورتی که مایلید زبان‌های دیگری همزمان با نصب در سایت شما پشتیبانی شود از " +"لیست زیر زبان مورد نظر را انتخاب نمایید. ترجمه زبان‌هایی که علامت ستاره (*) " +"دارند ناقص است." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"برای نگهداری از اطلاعات به دیتابیس SQL نیاز است. لطفاً سیستم مورد نیاز برای " +"نصب OMP را مطالعه نمایید." + +msgid "installer.upgradeApplication" +msgstr "به روز رسانی OMP" + +msgid "installer.upgradeComplete" +msgstr "" +"به روز رسانی OMP به ورژن {$version} با موفقیت انجام شد. لطفاً پیش از هر " +"اقدامی تنظیمات نصب (\"Installed\") در فایل onfig.inc.php را به حالت On " +"برگردانید." + +msgid "log.review.reviewDueDateSet" +msgstr "" +"موعد مقرر برای دور {$round} داوری نوشته ارسالی {$submissionId} توسط " +"{$reviewerName} در تاریخ {$dueDate} تنظیم شد." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} داوری دور {$round} برای مقاله {$submissionId} را رد کرد." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} داوری دور {$round} برای مقاله {$submissionId} را پذیرفت." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$reviewerName} داوری دور {$round} برای مقاله {$submissionId} را در حالت " +"تصمیم گیری نشده قرار داد." + +msgid "log.editor.recommendation" +msgstr "" +"پیشنهاد دبیر ({$decision}) برای نوشته ارسالی {$submissionId} توسط " +"{$editorName} ثبت شد." + +msgid "log.editor.editorAssigned" +msgstr "{$editorName} به عنوان دبیر برای نوشته ارسالی {$submissionId} تعیین شد." + +msgid "log.proofread.complete" +msgstr "" +"{$proofreaderName} نوشته ارسالی {$submissionId} را برای زمان‌بندی فرستاد." + +msgid "log.imported" +msgstr "{$userName} جلد {$submissionId} را ایمپورت کرد." + +msgid "notification.addedIdentificationCode" +msgstr "کد شناسایی افزوده شد." + +msgid "notification.editedIdentificationCode" +msgstr "کد شناسایی ویرایش شد." + +msgid "notification.removedIdentificationCode" +msgstr "کد شناسایی حذف شد." + +msgid "notification.addedPublicationDate" +msgstr "تاریخ انتشار افزوده شد." + +msgid "notification.removedPublicationDate" +msgstr "تاریخ انتشار حذف شد." + +msgid "notification.addedPublicationFormat" +msgstr "فرمت انتشار افزوده شد." + +msgid "notification.editedPublicationFormat" +msgstr "فرمت انتشار ویرایش شد." + +msgid "notification.removedPublicationFormat" +msgstr "فرمت انتشار حذف شد." + +msgid "notification.addedSalesRights" +msgstr "حق فروش افزوده شد." + +msgid "notification.removedSalesRights" +msgstr "حق فروش حذف شد." + +msgid "notification.addedRepresentative" +msgstr "نماینده افزوده شد." + +msgid "about.onlineSubmissions" +msgstr "ارسالی‌های آنلاین" + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} یا {$viewSubmissions}." + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"به عنوان بخشی از فرآیند ارسال نوشته، نویسندگان باید تمامی موارد زیر را رعایت " +"نمایند." + +msgid "about.aboutOMPPress" +msgstr "این نشر از سیستم مدیریت محتوای OMP {$ompVersion} استفاده می‌کند." + +msgid "about.aboutOMPSite" +msgstr "این نشر از سیستم مدیریت محتوای OMP {$ompVersion} استفاده می‌کند." + +msgid "installer.installationInstructions" +msgstr "" +"از دانلود و انتخاب OMP متشکریم. قبل از شروع فرآیند حتماً راهنمای نصب را از " +"طریق وبسایت PKP مطالعه نمایید." + +msgid "installer.upgradeInstructions" +msgstr "" +"از انتخاب و نصب OMP متشکریم. لطفاً پیش از ادامه مراحل با دقت راهنمای نصب را " +"مطالعه و مرور نمایید." + +msgid "installer.filesDirInstructions" +msgstr "" +"مسیر کامل محل نگهداری فایل‌ها را وارد کنید. دقت کنید که این مسیر قابل دسترسی " +"برای عموم نباشد." + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"مهم: قبل از اقدام به استفاده از سیستم فایل کانفیگ (config.inc.php) را ویرایش " +"کرده و محتوای آن را با موارد زیر جایگزین کنید." + +msgid "installer.installationComplete" +msgstr "" +"نصب OMP با موفقیت انجام شد. برای شروع استفاده از آن با نام کاربری و پسورد " +"وارد شده در صفحه قبل وارد شوید." + +msgid "log.editor.decision" +msgstr "" +"تصمیم دبیر ({$decision}) برای نوشته ارسالی {$submissionId} توسط {$editorName}" +" ثبت شد." + +msgid "log.editor.archived" +msgstr "نوشته ارسالی {$submissionId} آرشیو شد." + +msgid "log.editor.restored" +msgstr "نوشته ارسالی {$submissionId} برای قرارگیری در صف بازیابی شد." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} {$proofreaderName} را برای ویراستاری نوشته ارسالی " +"{$submissionId} تعیین کرد." + +msgid "notification.editedPublicationDate" +msgstr "تاریخ انتشار ویرایش شد." + +msgid "notification.editedSalesRights" +msgstr "حق فروش ویرایش شد." + +msgid "notification.editedRepresentative" +msgstr "نماینده ویرایش شد." + +msgid "notification.removedRepresentative" +msgstr "نماینده حذف شد." + +msgid "notification.addedMarket" +msgstr "بازار افزوده شد." + +msgid "notification.editedMarket" +msgstr "بازار ویرایش شد." + +msgid "notification.addedSpotlight" +msgstr "بازار حذف شد." + +msgid "notification.editedSpotlight" +msgstr "ویژه ویرایش شد." + +msgid "notification.removedSpotlight" +msgstr "ویژه حذف شد." + +msgid "notification.proofsApproved" +msgstr "پروف تأیید شد." + +msgid "notification.removedSubmission" +msgstr "نوشته ارسالی پاک شد." + +msgid "notification.type.submissionSubmitted" +msgstr "یک جلد جدید با عنوان \"{$title}\" ارسال شده است." + +msgid "notification.type.editing" +msgstr "رخدادهای ویرایش" + +msgid "notification.type.reviewing" +msgstr "رخدادهای داوری" + +msgid "notification.type.site" +msgstr "رخدادهای سایت" + +msgid "notification.type.userComment" +msgstr "یک خواننده برای عنوان {$title} نظر ارسال نمود." + +msgid "notification.type.public" +msgstr "اعلانات عمومی" + +msgid "notification.type.copyeditorRequest" +msgstr "از شما برای بررسی فایل {$file} درخواست شده است." + +msgid "notification.type.layouteditorRequest" +msgstr "از شما برای بررسی ویراستاری عنوان \"{$file}\" درخواست شده است." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "فرآیند داوری داخلی آغاز شد." + +msgid "notification.type.approveSubmissionTitle" +msgstr "در انتظار تأیید." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"این جلد تا زمانی که منتشر نشود در کاتالوگ نمایش داده نخواهد شد. برای اضافه " +"کردن این جلد به کاتالوگ روی تب انتشار کلیک نمایید." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "هیچ روش پرداختی تنظیم نشده است." + +msgid "notification.type.visitCatalogTitle" +msgstr "مدیریت کاتالوگ" + +msgid "notification.type.visitCatalog" +msgstr "" +"این جلد تأیید شده است. لطفاً به بخش بازاریابی و انتشار مراجعه کرده تا جزئیات " +"کاتالوگ را مدیریت کنید." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"دسترسی شما مجاز نمی‌باشد چرا که به نظر می‌رسید شما داور معتبری برای این جلد " +"نیستید." + +msgid "user.authorization.monographAuthor" +msgstr "" +"دسترسی شما مجاز نمی‌باشد چرا که به نظر می‌رسد شما نویسنده این جلد نیستید." + +msgid "user.authorization.monographReviewer" +msgstr "" +"دسترسی شما مجاز نمی‌باشد چرا که به نظر نمی‌رسد دبیر تعیین شده برای این جلد " +"باشید." + +msgid "user.authorization.monographFile" +msgstr "دسترسی شما به فایل مخصوص این جلد مجاز نمی‌باشد." + +msgid "user.authorization.invalidMonograph" +msgstr "جلد نامعتبر است یا هیچ جلدی درخواست داده نشده!" + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "دسترسی غیر مجاز! شما برای این مرحله از کار تعیین نشده‌اید." + +msgid "payment.directSales" +msgstr "دانلود از وبسایت نشر" + +msgid "payment.directSales.price" +msgstr "قیمت" + +msgid "payment.directSales.availability" +msgstr "موجودی" + +msgid "payment.directSales.catalog" +msgstr "کاتالوگ" + +msgid "payment.directSales.approved" +msgstr "تأیید شده" + +msgid "payment.directSales.priceCurrency" +msgstr "قیمت ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "" +"قیمت باید فقط شامل ارقام باشد. لطفاً از هیچ نماد یا حروفی استفاده نکنید." + +msgid "payment.directSales.directSales" +msgstr "فروش‌های مستقیم" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "ناموجود" + +msgid "payment.directSales.notSet" +msgstr "تنظیم نشده" + +msgid "payment.directSales.openAccess" +msgstr "دسترسی باز" + +msgid "payment.directSales.validPriceRequired" +msgstr "وارد کردن قیمت عددی معتبر الزامی است." + +msgid "payment.directSales.purchase" +msgstr "سفارش {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "دانلود {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "سفارش دانلود جلد یا فصل" + +msgid "payment.directSales.monograph.description" +msgstr "این تراکنش برای سفارش دانلود مستقیم یک جلد یا یک فصل از آن می‌باشد." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"فایل Reloaded XML به نقشه‌کشی فایل {$filename} در جستجوی {$id} کمک می‌کند." + +msgid "rt.metadata.pkp.dctype" +msgstr "کتاب" + +msgid "submission.pdf.download" +msgstr "دانلود این فایل PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "ثبت در سایر نشرها" + +msgid "user.profile.form.hideOtherContexts" +msgstr "مخفی کردن سایر نشرها" + +msgid "submission.round" +msgstr "دوره {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "یک ارسال منتشر شده نامعتبر مشخص شد." + +msgid "catalog.coverImageTitle" +msgstr "عکس جلد" + +msgid "grid.catalogEntry.chapters" +msgstr "فصل‌ها" + +msgid "search.results.orderBy.article" +msgstr "عنوان مقاله" + +msgid "search.results.orderBy.author" +msgstr "نویسنده" + +msgid "search.results.orderBy.date" +msgstr "تاریخ انتشار" + +msgid "search.results.orderBy.monograph" +msgstr "عنوان جلد" + +msgid "search.results.orderBy.press" +msgstr "عنوان نشر" + +msgid "search.results.orderBy.popularityAll" +msgstr "محبوبیت (همه زمان‌ها)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "محبوبیت (ماه اخیر)" + +msgid "search.results.orderBy.relevance" +msgstr "مرتبط بودن" + +msgid "search.results.orderDir.asc" +msgstr "صعودی" + +msgid "search.results.orderDir.desc" +msgstr "نزولی" + +msgid "section.section" +msgstr "مجموعه" + +msgid "notification.savedCatalogMetadata" +msgstr "فراداده کاتالوگ ذخیره شد." + +msgid "notification.type.indexRequest" +msgstr "از شما برای ایجاد نمایه برای عنوان \"{$file}\" درخواست شده است." + +msgid "payment.directSales.price.description" +msgstr "" +"فرمت‌هایی که از طریق دسترسی باز قابل دانلود هستند هیچ هزینه‌ای برای " +"خوانندگان و توزیع کنندگان در بر نخواهد داشت." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "فراداده فرمت انتشار ذخیره شد." + +msgid "notification.type.approveSubmission" +msgstr "" +"این ارسال در حال حاضر منتظر تأیید در ابزار وروی کاتالوگ است تا در کاتالوگ " +"عمومی نمایش داده شود." + +msgid "notification.type.submissions" +msgstr "رخدادهای ارسال" + +msgid "notification.type.configurePaymentMethod" +msgstr "پیش از اقدام به تنظیمات فروش باید روش پرداخت تعیین شود." + +msgid "notification.type.editorAssignmentTask" +msgstr "یک جلد جدید ارسال شده و باید برای آن دبیر مشخص شود." + +msgid "user.authorization.noContext" +msgstr "هیچ نشری مطابق درخواست شما یافت نشد." + +msgid "user.authorization.seriesAssignment" +msgstr "شما در حال تلاش برای دسترسی به جلدی هستید که مربوط به مجموعه شما نیست." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"دسترسی غیرمجاز! گروه کاربری که شما تحت آن در حال فعالیت هستید برای این مرحله " +"از کار تعیین نشده است. لطفاً تنظیمات نشر را ملاحظه کنید." diff --git a/locale/fi/admin.po b/locale/fi/admin.po new file mode 100644 index 00000000000..6344fd09503 --- /dev/null +++ b/locale/fi/admin.po @@ -0,0 +1,223 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" +"PO-Revision-Date: 2023-12-03 14:38+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "admin.hostedContexts" +msgstr "Ylläpidetyt julkaisijoiden sivustot" + +msgid "admin.settings.appearance.success" +msgstr "Sivuston ulkoasua koskevat asetukset on päivitetty." + +msgid "admin.settings.config.success" +msgstr "Sivuston asetukset on päivitetty." + +msgid "admin.settings.info.success" +msgstr "Sivuston tietoja koskevat asetukset on päivitetty." + +msgid "admin.settings.redirect" +msgstr "Julkaisijan sivuston uudelleenohjaus" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Koko sivustoon kohdistuvat pyynnöt ohjataan tämän julkaisijan sivustolle." + +msgid "admin.settings.noPressRedirect" +msgstr "Älä uudelleenohjaa" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Tätä kieltä käytetään sivuston ja kaikkien ylläpidettyjen julkaisijoiden " +"sivustojen oletuskielenä." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Valitse kaikki sivustolla tuettavat kielialueet. Valitut kielialueet ovat " +"kaikkien sivustolla ylläpidettävien julkaisijoiden käytössä. Ne esiintyvät " +"myös kielivalikossa, joka näkyy jokaisella sivuston sivulla (tämä voidaan " +"ohittaa julkaisijoiden omilla sivuilla). Mikäli valitaan vain yksi " +"kielialue, kielivalikko ei tule näkyviin ja laajennetut kieliasetukset eivät " +"ole julkaisijoiden käytettävissä." + +msgid "admin.locale.maybeIncomplete" +msgstr "Tähdellä (*) merkityt kielialueet saattavat olla vaillinaisia." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Haluatko varmasti poistaa tämän kielialueen? Se saattaa vaikuttaa " +"julkaisijoihin, joilla on tämä kielialue käytössä." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Valitse mitä tahansa lisäkielialueita, joille asennetaan tuki tässä " +"järjestelmässä. Kielialueet täytyy asentaa ennen kuin ylläpidetyt " +"julkaisijat voivat käyttää niitä. Katso OMP:n ohjeista tietoja siitä, kuinka " +"uusille kielille lisätään tuki." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Haluatko varmasti poistaa tämän kielialueen käytöstä? Se saattaa vaikuttaa " +"julkaisijoihin, joilla on tämä kielialue käytössä." + +msgid "admin.systemVersion" +msgstr "OMP-versio" + +msgid "admin.systemConfiguration" +msgstr "OMP:n määritys" + +msgid "admin.presses.pressSettings" +msgstr "Julkaisijan asetukset" + +msgid "admin.presses.noneCreated" +msgstr "Yhtään julkaisijan sivustoa ei ole luotu." + +msgid "admin.contexts.create" +msgstr "Luo julkaisijan sivusto" + +msgid "admin.contexts.form.titleRequired" +msgstr "Otsikko vaaditaan." + +msgid "admin.contexts.form.pathRequired" +msgstr "Polku vaaditaan." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Polku voi sisältää vain aakkosnumeerisia merkkejä, alaviivoja ja " +"yhdysmerkkejä, ja sen täytyy alkaa ja päättyä aakkosnumeeriseen merkkiin." + +msgid "admin.contexts.form.pathExists" +msgstr "Valittu polku on jo toisen julkaisijan sivuston käytössä." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Pääasiallisen kielen tulee olla yksi julkaisijan sivuston käyttämistä " +"kielistä." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} luotiin onnistuneesti." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} päivitettiin onnistuneesti." + +msgid "admin.contexts.contextDescription" +msgstr "Julkaisijan kuvaus" + +msgid "admin.presses.addPress" +msgstr "Lisää julkaisijan sivusto" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

      HUOM!\n" +"

      Järjestelmä ei voinut korvata määritystiedostoa automaattisesti. " +"Ottaaksesi määritysmuutokset käyttöön avaa config.inc.php sopivassa " +"tekstieditorissa ja korvaa sen sisältö alla olevan tekstikentän " +"sisällöllä.

      " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Valitse ne julkaisijoiden sivustot, joiden sallitaan lähettää " +"massasähköposteja. Kun tämä ominaisuus on päällä, julkaisijan sivuston " +"hallinnoija pystyy lähettämään sähköpostin kaikille sivustolleen " +"rekisteröityneille käyttäjille.

      Ominaisuuden väärinkäyttö voi rikkoa " +"massasähköposteja koskevaa lainsäädäntöä ja voi edesauttaa " +"sähköpostipalvelimelta lähtevien viestien päätymistä roskapostiksi. Ennen " +"ominaisuuden käyttöönottoa kysy tarvittaessa neuvoa tekniseltä " +"asiantuntijalta ja keskustele ominaisuuden oikeaoppisesta käytöstä sivustosi " +"julkaisijoiden kanssa.

      Ominaisuuden käyttöä voi rajoittaa tarkemmin " +"julkaisijan sivuston asetuksista, joihin pääset julkaisijoiden sivustojen listauksesta." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Julkaisijan sivuston hallinnoija ei pysty lähettämään massasähköposteja alla " +"valituille rooleille. Tätä asetusta voi käyttää massasähköpostien " +"väärinkäytösten rajoittamiseen. Esimerkiksi, voi olla kannattavaa rajoittaa " +"lukijoille, kirjoittajille tai muille suurille käyttäjäryhmille lähetettäviä " +"viestejä, jos he eivät ole antaneet lupaa sellaisten " +"lähettämiseen.

      Massasähköpostit voi ottaa kokonaan pois käytöstä " +"kohdasta Ylläpito > Sivuston asetukset." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Massasähköpostit on poistettu käytöstä tämän julkaisijan sivustolla. Ota " +"toiminto käyttöön kohdasta Ylläpito > " +"Sivuston asetukset." + +msgid "admin.siteManagement.description" +msgstr "" +"Lisää, muokkaa tai poista julkaisijoita tältä sivustolta ja hallitse koko " +"sivuston asetuksia." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "Luvun ID-tunnus ei ole kokonaisluku" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "Sarjan ID-tunnus ei ole kokonaisluku" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Valitse, minkä tyyppisiä maantieteellisiä käyttötilastoja tämän sivuston " +"julkaisijat voivat kerätä. Yksityiskohtaisemmat maantieteelliset tilastot " +"saattavat kasvattaa tietokannan kokoa huomattavasti ja joissakin harvoissa " +"tapauksissa heikentää kävijöiden anonymiteettiä. Kukin julkaisija voi " +"määrittää tämän asetuksen eri tavalla, mutta julkaisija ei voi koskaan " +"kerätä yksityiskohtaisempia tietueita kuin mitä tässä on määritetty. Jos " +"sivusto esimerkiksi tukee vain maata ja aluetta, julkaisija voi valita " +"esimerkiksi maan ja alueen tai vain maan. Julkaisija ei voi tallentaa maata, " +"aluetta ja kaupunkia." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Ota käyttöön instituutiotilastot, jos haluat, että tämän sivuston " +"julkaisijat voivat kerätä instituutiokohtaisia käyttötilastoja. " +"Julkaisijoiden on lisättävä instituutio ja sen IP-alueet voidakseen käyttää " +"tätä ominaisuutta. Instituutiotilastojen käyttöönotto voi kasvattaa " +"tietokannan kokoa huomattavasti." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Asetetaanko SUSHI API julkisesti saataville kaikissa tämän sivuston " +"julkaisijoille. Jos otat julkisen API:n käyttöön, kukin julkaisija voi " +"ohittaa tämän asetuksen tehdäkseen tilastonsa yksityisiksi. Jos kuitenkin " +"poistat julkisen API:n käytöstä, julkaisijat eivät voi tehdä omasta API:sta " +"julkista." + +#~ msgid "admin.hostedPresses" +#~ msgstr "Ylläpidetyt painot" + +#~ msgid "admin.settings.pressRedirect" +#~ msgstr "Painon uudelleenohjaus" + +#~ msgid "admin.settings.pressRedirectInstructions" +#~ msgstr "" +#~ "Pyynnöt pääsivustolle uudelleenohjataan tähän painoon. Tämä saattaa olla " +#~ "hyödyllinen toiminto, jos sivustolla ylläpidetään vain yhtä painoa." + +#~ msgid "admin.presses.createInstructions" +#~ msgstr "" +#~ "Sinut lisätään automaattisesti tämän painon hallinnoijaksi. Uuden painon " +#~ "luonnin jälkeen sinut uudelleenohjataan ohjattuun asetusten luontiin " +#~ "painon aloitusasetusten loppuun saattamiseksi." + +#~ msgid "admin.presses.urlWillBe" +#~ msgstr "Painon URL-osoitteeksi tulee {$sampleUrl}" + +#~ msgid "admin.presses.enablePressInstructions" +#~ msgstr "Näytä tämä paino julkisesti sivustolla" + +#~ msgid "admin.presses.pressDescription" +#~ msgstr "Painon kuvaus" + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Käytä sivustoa kaikkien julkaisijoiden sivustojen alustana." diff --git a/locale/fi/api.po b/locale/fi/api.po new file mode 100644 index 00000000000..7e6441eab09 --- /dev/null +++ b/locale/fi/api.po @@ -0,0 +1,42 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-05-24 11:08+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Anna yhden tai useamman luetteloon lisättävän käsikirjoituksen ID-tunniste." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "Yhtä tai useampaa määrittämääsi käsikirjoitusta ei löytynyt." + +msgid "api.submissions.400.wrongContext" +msgstr "Pyytämääsi käsikirjoitusta ei ole tällä julkaisijalla." + +msgid "api.emails.403.disabled" +msgstr "" +"Sähköposti-ilmoituksia ei ole otettu käyttöön tämän julkaisijan sivustolla." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"Sinulla ei ole lupaa siirtää tätä sähköpostipohjaa toiseen julkaisijaan." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "Pyytämäsi julkaistu versio ei kuulu tälle julkaisijalle." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "Pyytämäsi julkaistu versio ei kuulu tähän käsikirjoitukseen." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Et voi vaihtaa käsikirjoitukseen liittyvää julkaisijaa." + +msgid "api.submission.400.inactiveSection" +msgstr "Tämä sarja ei enää vastaanota käsikirjoituksia." diff --git a/locale/fi/author.po b/locale/fi/author.po new file mode 100644 index 00000000000..93402534d50 --- /dev/null +++ b/locale/fi/author.po @@ -0,0 +1,19 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-01 21:48+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish " +"\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "author.submit.notAccepting" +msgstr "Tämä julkaisija ei tällä hetkellä ota vastaan käsikirjoituksia." + +msgid "author.submit" +msgstr "Uusi käsikirjoitus" diff --git a/locale/fi/default.po b/locale/fi/default.po new file mode 100644 index 00000000000..de9ad356917 --- /dev/null +++ b/locale/fi/default.po @@ -0,0 +1,317 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" +"PO-Revision-Date: 2023-05-23 20:49+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish " +"\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "default.genres.appendix" +msgstr "Liite" + +msgid "default.genres.bibliography" +msgstr "Bibliografia" + +msgid "default.genres.manuscript" +msgstr "Kirjan käsikirjoitus" + +msgid "default.genres.chapter" +msgstr "Luvun käsikirjoitus" + +msgid "default.genres.glossary" +msgstr "Sanasto" + +msgid "default.genres.index" +msgstr "Hakemisto" + +msgid "default.genres.preface" +msgstr "Alkusanat" + +msgid "default.genres.prospectus" +msgstr "Esite" + +msgid "default.genres.table" +msgstr "Taulukko" + +msgid "default.genres.figure" +msgstr "Kuvio" + +msgid "default.genres.photo" +msgstr "Valokuva" + +msgid "default.genres.illustration" +msgstr "Kuva" + +msgid "default.genres.other" +msgstr "Muu" + +msgid "default.groups.name.manager" +msgstr "Julkaisijan sivuston hallinnoija" + +msgid "default.groups.plural.manager" +msgstr "Julkaisijan sivuston hallinnoijat" + +msgid "default.groups.abbrev.manager" +msgstr "PH" + +msgid "default.groups.name.editor" +msgstr "Toimittaja" + +msgid "default.groups.plural.editor" +msgstr "Toimittajat" + +msgid "default.groups.abbrev.editor" +msgstr "PT" + +msgid "default.groups.name.sectionEditor" +msgstr "Sarjan toimittaja" + +msgid "default.groups.plural.sectionEditor" +msgstr "Sarjan toimittajat" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "ST" + +msgid "default.groups.name.subscriptionManager" +msgstr "Tilaussihteeri" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Tilaussihteerit" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "SubM" + +msgid "default.groups.name.chapterAuthor" +msgstr "Luvun kirjoittaja" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Luvun kirjoittajat" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "LK" + +msgid "default.groups.name.volumeEditor" +msgstr "Niteen toimittaja" + +msgid "default.groups.plural.volumeEditor" +msgstr "Niteen toimittajat" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "NT" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

      Kirjoittajia kutsutaan ehdottamaan käsikirjoituksia julkaisijalle. " +"Sopivat käsikirjoitukset lähetetään vertaisarviointiin, jonka jälkeen " +"päätetään, hyväksytäänkö vai hylätäänkö ne.

      Tekijät ovat ennen " +"käsikirjoituksen lähettämistä vastuussa siitä, että he hankkivat luvan " +"julkaista kaikki käsikirjoitukseen sisältyvät aineistot, kuten valokuvat, " +"liitteet ja tietoaineistot. Kaikkien kirjoittajien, jotka on merkitty " +"käsikirjoitukseen, on annettava suostumuksensa siihen, että heidät " +"tunnistetaan kirjoittajiksi. Tutkimuksen on oltava mahdollisuuksien mukaan " +"asianmukaisen eettisen toimikunnan hyväksymä tutkimuksen kotimaan " +"lakisääteisten vaatimusten mukaisesti.

      Toimittaja voi hylätä " +"käsikirjoituksen, jos se ei täytä vähimmäislaatuvaatimuksia. Varmista ennen " +"lähettämistä, että teos jäsennelty ja tulokset kuvattu selkeästi. Otsikon on " +"oltava tiivis, ja tiivistelmän tulee olla ymmärrettävissä itsenäisesti. Tämä " +"lisää todennäköisyyttä, että arvioijat suostuvat arvioimaan teoksen. Kun " +"olet vakuuttunut siitä, että käsikirjoituksesi täyttää nämä vaatimukset, " +"voit valmistella käsikirjoituksesi lähetystä varten alla olevan " +"tarkistuslistan avulla.

      " + +msgid "default.contextSettings.checklist" +msgstr "" +"

      Kaikkien käsikirjoitusten on täytettävä seuraavat vaatimukset.

      • Tämä käsikirjoitus täyttää kirjoittajaohjeissa esitetyt vaatimukset.
      • Tätä käsikirjoitusta " +"ei ole aiemmin julkaistu, eikä se ole toisen julkaisijan käsiteltävänä.
      • Kaikki viitteet on tarkistettu virheettömyyden varmistamiseksi.
      • Kaikki taulukot ja kuviot on numeroitu ja nimetty.
      • Kaikkien " +"valokuvien, tietoaineistojen ja muun aineiston julkaisemiseen on saatu " +"lupa.
      " + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

      Tämän julkaisijan sivustolle syötettyjä nimiä ja sähköpostiosoitteita " +"käytetään yksinomaan tämän julkaisijan tarkoituksiin, eikä niitä luovuteta " +"mihinkään muuhun tarkoitukseen tai muille osapuolille.

      " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Tämä julkaisijan sisällöt ovat välittömästi avoimesti saatavilla noudattaen " +"periaatetta, jonka mukaan tutkimuksen tekeminen vapaasti saatavilla olevaksi " +"suurelle yleisölle tukee suurempaa globaalia tiedonvaihtoa." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Kehotamme lukijoita rekisteröitymään palveluun, joka ilmoittaa tämän " +"julkaisijan uusista teoksista. Käytä etusivun yläosassa olevaa Rekisteröidy -linkkiä. " +"Rekisteröitymisen tuloksena lukijalle lähetetään sähköpostitse julkaisijan " +"jokaisen uuden teoksen sisällysluettelo. Tämän palvelun käyttäjälistan " +"avulla julkaisija myös saa tietoa lukijakunnastaan. Julkaisijan Tietosuojaseloste takaa, että lukijoiden nimiä ja sähköpostiosoitteita " +"ei käytetä muihin tarkoituksiin." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Kiinnostaako oman käsikirjoituksen lähetys? Suosittelemme, että tutustut Tietoa julkaisijasta -sivulla " +"julkaisijan sarjojen käytäntöihin sekä Kirjoittajan ohjeisiin. " +"Kirjoittajien tulee rekisteröityä julkaisijan sivuston käyttäjäksi ennen käsikirjoituksen " +"lähettämistä tai jo rekisteröidyttyään kirjautua sisään aloittaakseen viisivaiheisen prosessin." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Suosittelemme, että tutkimuskirjastojen hoitajat listaavat tämän julkaisijan " +"kirjastojensa sähköisten julkaisijoiden kokoelmaan. Tämä avoimen lähdekoodin " +"julkaisujärjestelmä sopii kirjastojen ylläpitämänä myös tiedekuntien " +"jäsenten käyttöön sellaisten julkaisijoiden yhteydessä, joiden julkaisujen " +"toimittamiseen he osallistuvat (ks. Open " +"Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Ulkopuolinen arvioija" + +msgid "default.groups.plural.externalReviewer" +msgstr "Ulkopuoliset arvioijat" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "UA" + +#~ msgid "default.groups.name.seriesEditor" +#~ msgstr "Sarjan toimittaja" + +#~ msgid "default.groups.plural.seriesEditor" +#~ msgstr "Sarjan toimittajat" + +#~ msgid "default.groups.abbrev.seriesEditor" +#~ msgstr "ST" + +#~ msgid "default.pressSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Tätä käsikirjoitusta ei ole aiemmin julkaistu, eikä sitä ole lähetetty " +#~ "toiseen painoon (tai asiasta on annettu selvitys Kommentteja " +#~ "toimittajalle -kohdassa)." + +#~ msgid "default.pressSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Käsikirjoitustiedosto on Microsoft Word, RTF tai OpenDocument -" +#~ "tiedostomuodossa." + +#~ msgid "default.pressSettings.checklist.addressesLinked" +#~ msgstr "Lähteiden URL-osoitteet on annettu, mikäli ne ovat saatavilla." + +#~ msgid "default.pressSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Tekstin riviväli on yksi; kirjasinkoko on 12; tekstissä käytetään " +#~ "kursiivia, ei alleviivausta (paitsi URL-osoitteissa); ja kaikki kuvat, " +#~ "kuviot ja taulukot on sijoitettu ensisijaisesti sopiviin kohtiin tekstin " +#~ "lomaan, ei tekstin loppuun." + +#~ msgid "default.pressSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Teksti noudattaa Kirjoittajan ohjeissa mainittuja stilistisiä ja bibliografisia vaatimuksia, jotka löytyvät " +#~ "Tietoa painosta -kohdasta." + +#~ msgid "default.pressSettings.privacyStatement" +#~ msgstr "" +#~ "Tämän painon sivustolle syötettyjä nimiä ja sähköpostiosoitteita " +#~ "käytetään yksinomaan tämän painon tarkoituksiin, eikä niitä luovuteta " +#~ "mihinkään muuhun tarkoitukseen tai muille osapuolille." + +#~ msgid "default.pressSettings.openAccessPolicy" +#~ msgstr "" +#~ "Tämä painon sisällöt ovat välittömästi avoimesti saatavilla noudattaen " +#~ "periaatetta, jonka mukaan tutkimuksen tekeminen vapaasti saatavilla " +#~ "olevaksi suurelle yleisölle tukee suurempaa globaalia tiedonvaihtoa." + +#~ msgid "default.pressSettings.emailSignature" +#~ msgstr "" +#~ "
      \n" +#~ "________________________________________________________________________
      \n" +#~ "
      {$ldelim}$contextName{$rdelim}" + +#~ msgid "default.pressSettings.forReaders" +#~ msgstr "" +#~ "Kehotamme lukijoita rekisteröitymään palveluun, joka ilmoittaa tämän " +#~ "painon uusista julkaisuista. Käytä tämän painon etusivun yläosassa olevaa " +#~ "Rekisteröidy -" +#~ "linkkiä. Rekisteröitymisen tuloksena lukijalle lähetetään sähköpostitse " +#~ "painon jokaisen uuden kirjan sisällysluettelo. Tämän palvelun " +#~ "käyttäjälistan avulla paino myös kerää tietoa kannattajamääristään ja " +#~ "lukijakunnastaan. Painon Tietosuojaseloste takaa, että " +#~ "lukijoiden nimiä ja sähköpostiosoitteita ei käytetä muihin tarkoituksiin." + +#~ msgid "default.pressSettings.forAuthors" +#~ msgstr "" +#~ "Kiinnostaako tähän painoon kirjoittaminen? Suosittelemme, että tutustut " +#~ "Tietoa painosta -sivulla " +#~ "painon osastojen käytäntöihin sekä Kirjoittajan ohjeisiin. " +#~ "Kirjoittajien tulee rekisteröityä painon käyttäjäksi ennen käsikirjoituksen " +#~ "lähettämistä tai jo rekisteröidyttyään kirjautua sisään aloittaakseen viisivaiheisen prosessin." + +#~ msgid "default.pressSettings.forLibrarians" +#~ msgstr "" +#~ "Suosittelemme, että tutkimuskirjastojen hoitajat listaavat tämän painon " +#~ "kirjastojensa sähköisten painojen kokoelmaan. Tämä avoimen lähdekoodin " +#~ "julkaisujärjestelmä sopii kirjastojen ylläpitämänä myös tiedekuntien " +#~ "jäsenten käyttöön sellaisten painojen yhteydessä, joiden julkaisujen " +#~ "toimittamiseen he osallistuvat (ks. Open Monograph Press)." + +#~ msgid "default.pressSettings.manager.setup.category" +#~ msgstr "Kategoria" + +#~ msgid "default.pressSettings.manager.series.book" +#~ msgstr "Kirjasarja" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Teksti noudattaa Kirjoittajan ohjeissa mainittuja stilistisiä ja bibliografisia vaatimuksia, jotka löytyvät " +#~ "Tietoa julkaisijasta -kohdasta." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Tekstin riviväli on yksi; kirjasinkoko on 12; tekstissä käytetään " +#~ "kursiivia, ei alleviivausta (paitsi URL-osoitteissa); ja kaikki kuvat, " +#~ "kuviot ja taulukot on sijoitettu ensisijaisesti sopiviin kohtiin tekstin " +#~ "lomaan, ei tekstin loppuun." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Lähdeviitteiden pysyvät tunnisteet tai osoitteet on ilmoitettu mikäli " +#~ "mahdollista." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Käsikirjoituksen tiedosto on Microsoft Word, RTF tai OpenDocument -" +#~ "muodossa." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Käsikirjoitusta ei ole ennen julkaistu, eikä se ole harkittavana toisella " +#~ "julkaisijalla." diff --git a/locale/fi_FI/editor.po b/locale/fi/editor.po similarity index 100% rename from locale/fi_FI/editor.po rename to locale/fi/editor.po diff --git a/locale/fi/emails.po b/locale/fi/emails.po new file mode 100644 index 00000000000..3750c46263c --- /dev/null +++ b/locale/fi/emails.po @@ -0,0 +1,542 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-13T19:57:22+00:00\n" +"PO-Revision-Date: 2023-05-29 19:34+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish " +"\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Vahvista salasanan vaihtaminen" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Olemme vastaanottaneet pyynnön vaihtaa salasananne {$siteTitle} sivustolle." +"
      \n" +"
      \n" +"Jos ette tehnyt tätä pyyntöä, voitte jättää tämän sähköpostin huomiotta. Jos " +"haluatte vaihtaa salasanan, klikatkaa alla olevaa linkkiä.
      \n" +"
      \n" +"Vaihda salasana: {$passwordResetUrl}
      \n" +"
      \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Julkaisijan sivustolle rekisteröityminen" + +msgid "emails.userRegister.body" +msgstr "" +"Hyvä {$recipientName},
      \n" +"
      \n" +"Olette nyt rekisteröitynyt julkaisijan {$contextName} käyttäjäksi. " +"Tarvitsette alla olevaa käyttäjätunnustanne ja salasanaanne kaikkeen " +"työskentelyyn julkaisijan sivustolla. Voitte missä vaiheessa tahansa pyytää " +"poistamaan teidät julkaisujan sivuston käyttäjistä ottamalla yhteyttä minuun." +"
      \n" +"
      \n" +"Käyttäjätunnus: {$recipientUsername}
      \n" +"Salasana: {$password}
      \n" +"
      \n" +"Ystävällisin terveisin,
      \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Käyttäjätunnuksen vahvistaminen" + +msgid "emails.userValidateContext.body" +msgstr "" +"Hyvä {$recipientName},
      \n" +"
      \n" +"Olette luonut käyttäjätunnuksen {$contextName}-sivustolla. Ennen kuin voitte " +"alkaa käyttää tunnustanne, teidän pitää vahvistaa sähköpostiosoitteenne. " +"Voitte tehdä sen alla olevan linkin kautta:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Ystävällisin terveisin,
      \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Vahvista käyttäjätilisi" + +msgid "emails.userValidateSite.body" +msgstr "" +"Hyvä {$recipientName}
      \n" +"
      \n" +"Olette luonut tilin sivustolle {$siteTitle}. Ennen kuin voitte alkaa käyttää " +"tiliänne, teidän pitää vahvistaa sähköpostitilinne. Voitte tehdä sen alla " +"olevan linkin kautta:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Ystävällisin terveisin,
      \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Rekisteröinti arvioijaksi julkaisijan sivustolle {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Asiantuntemuksenne valossa, olemme ottaneet vapauden rekisteröidä teidät " +"julkaisijan {$contextName} arvioijatietokantaan. Tämä ei velvoita teitä " +"mihinkään, mutta antaa meille mahdollisuuden ottaa teihin yhteyttä " +"mahdollisen käsikirjoituksen arvioinnin tiimoilta. Arviointikutsun " +"yhteydessä näette arvioitavan työn nimekkeen ja abstraktin, ja voitte aina " +"joko hyväksyä kutsun tai kieltäytyä siitä. Voitte myös missä tahansa " +"vaiheessa pyytää, että nimenne poistetaan tältä arvioijalistalta.
      \n" +"
      \n" +"Annamme teille käyttäjätunnuksen ja salasanan, joita käytetään kaikkeen " +"vuorovaikutukseen julkaisijan kanssa sen verkkosivuston kautta. Halutessanne " +"voitte esimerkiksi päivittää profiilinne ja teitä kiinnostavat " +"arviointiaiheet.
      \n" +"
      \n" +"Käyttäjätunnus: {$recipientUsername}
      \n" +"Salasana: {$password}
      \n" +"
      \n" +"Ystävällisin terveisin,
      \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Toimituksellinen toimeksianto" + +msgid "emails.editorAssign.body" +msgstr "" +"

      Hyvä {$recipientName},

      Seuraava käsikirjoitus on osoitettu sinulle " +"toimitustyötä varten.

      {$submissionTitle}
      {$authors}

      Abstract

      {$submissionAbstract}

      Jos olet " +"sitä mieltä, että käsikirjoitus on sopiva julkaisijalle {$contextName}, " +"lähetä käsikirjoitus eteenpäin arviointivaiheeseen valitsemalla \"Lähetä " +"sisäiseen arviointiin\" ja osoita sitten arvioijat valitsemalla \"Lisää " +"arvioija\".

      Jos käsikirjoitus ei mielestäsi sovi meille, ole hyvä ja " +"hylkää se.

      Kiitos jo etukäteen.

      Ystävällisin " +"terveisin,

      {$contextSignature}" + +msgid "emails.reviewRequest.subject" +msgstr "Käsikirjoituksen arviointipyyntö" + +msgid "emails.reviewRequest.body" +msgstr "" +"

      Hyvä {$recipientName},

      Uskon, että olisitte sopiva arvioija " +"käsikirjoitukselle, joka on lähetetty julkaisijalle {$contextName}. " +"Käsikirjoituksen otsikko ja tiivistelmä löytyy tämän viestin lopusta. " +"Toivon, että harkitsette tähän meille tärkeään työhön ryhtymistä.

      Jos " +"pystytte arvioimaan tämän käsikirjoituksen, arvio on palautettava " +"{$reviewDueDate} mennessä. Voitte tarkastella käsikirjoitusta, lisätä " +"arviointitiedostoja ja lähettää arvion kirjautumalla julkaisun sivustolle ja " +"seuraamalla alla olevan linkin takaa löytyviä ohjeita.

      {$submissionTitle}

      Abstrakti

      {$submissionAbstract}" +"

      Olkaa hyvä ja hyväksykää tai hylätkää arviointipyyntö {$responseDueDate} mennessä.

      Voitte ottaa " +"minuun yhteyttä, jos teillä on kysyttävää käsikirjoituksesta tai " +"arviointiprosessista.

      Kiitos, että harkitsette tätä arviointipyyntöä.

      Ystävällisin terveisin,

      {$signature}" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Korjatun käsikirjoituksen arviointipyyntö" + +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

      Hyvä {$recipientName},

      Paljon kiitoksia aiemmasta käsikirjoitusta " +"{$submissionTitle} koskevasta " +"arvioinnistanne. Käsikirjoituksen aiemman version arvioinnin jälkeen " +"kirjoittaja on nyt lähettänyt korjatun version työstään. Arvostaisimme " +"suuresti, jos voisitte auttaa sen arvioinnissa.

      Jos pystytte " +"arvioimaan tämän käsikirjoituksen, arvio on palautettava {$reviewDueDate} " +"mennessä. Voitte tarkastella käsikirjoitusta, lisätä arviointitiedostoja ja " +"lähettää arvion kirjautumalla julkaisijan " +"sivustolle ja seuraamalla järjestelmän antamia ohjeita.

      {$submissionTitle}

      Abstrakti

      {$submissionAbstract}" +"

      Olkaa hyvä ja hyväksykää tai hylätkää arviointipyyntö {$responseDueDate} mennessä.

      Voitte ottaa " +"minuun yhteyttä, jos teillä on kysyttävää käsikirjoituksesta tai " +"arviointiprosessista.

      Kiitos, että harkitsette tätä arviointipyyntöä.

      Ystävällisin terveisin,

      {$signature}" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Käsikirjoituksen arviointipyyntö" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Hyvä {$recipientName},
      \n" +"Muistuttaisin ystävällisesti pyynnöstämme arvioida käsikirjoitus " +""{$submissionTitle}". Toivoimme saavamme vastauksenne " +"{$responseDueDate} mennessä, ja tämä sähköposti on lähetetty automaattisesti " +"määräajan umpeuduttua.\n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"Kirjautukaa julkaisijan verkkosivustolle ilmoittaaksenne haluatteko " +"suorittaa arvioinnin vai ette. Teidän on kirjauduttava verkkosivustolle " +"myös, jotta saatte pääsyn käsikirjoitukseen ja voitte tallentaa arvionne ja " +"suosituksenne.
      \n" +"
      \n" +"Arvioinnin määräpäivä on {$reviewDueDate}.
      \n" +"
      \n" +"Käsikirjoituksen URL: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Käyttäjätunnus: {$recipientUsername}
      \n" +"
      \n" +"Kiitos, että harkitsette arvioijaksi ryhtymistä.
      \n" +"
      \n" +"
      \n" +"Ystävällisin terveisin,
      \n" +"{$contextSignature}
      \n" + +msgid "emails.reviewCancel.subject" +msgstr "Arviointipyynnön peruminen" + +msgid "emails.reviewCancel.body" +msgstr "" +"Hyvä {$recipientName},
      \n" +"
      \n" +"Olemme tässä vaiheessa päättäneet perua pyyntömme käsikirjoituksen "" +"{$submissionTitle}" arvioinnista julkaisijalle {$contextName}. " +"Pahoittelemme tästä teille mahdollisesti aiheutuvaa vaivaa, ja toivomme, " +"että voimme kuitenkin tulevaisuudessa pyytää teitä avustamaan " +"arviointiprosessissa.
      \n" +"
      \n" +"Mikäli teillä on kysyttävää, otattehan yhteyttä minuun." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Arviointipyyntö uusittu" + +msgid "emails.reviewReinstate.body" +msgstr "" +"

      Hyvä {$recipientName},

      Peruimme hiljattain pyyntömme arvioida " +"julkaisijalle {$contextName} lähetetyn käsikirjoituksen {$submissionTitle}. " +"Olemme peruneet tämän päätöksen, ja toivomme, että voitte edelleen tehdä " +"arvioinnin.

      Jos voitte avustaa tämän käsikirjoituksen arvioinnissa, " +"voitte tarkastella käsikirjoitusta, lisätä arviointitiedostoja ja lähettää " +"arvion kirjautumalla julkaisijan " +"sivustolle ja seuraamalla järjestelmän antamia ohjeita

      Mikäli " +"teillä on kysyttävää, otattehan yhteyttä minuun.

      Ystävällisin " +"terveisin,

      {$signature}" + +msgid "emails.reviewDecline.subject" +msgstr "Arviointipyynnön hylkääminen" + +msgid "emails.reviewDecline.body" +msgstr "" +"Hyvä(t) toimittaja(t),
      \n" +"
      \n" +"En valitettavasti voi tällä kertaa suorittaa käsikirjoituksen "" +"{$submissionTitle}" arviointia. Kiitos, että pyysitte minua tähän " +"tehtävään. Toivon, että otatte vastaisuudessakin minuun yhteyttä arviointeja " +"koskien.
      \n" +"
      \n" +"{$senderName}" + +msgid "emails.reviewRemind.subject" +msgstr "Muistutus käsikirjoituksen arvioinnista" + +msgid "emails.reviewRemind.body" +msgstr "" +"

      Hyvä {$recipientName},

      Muistuttaisin ystävällisesti pyynnöstämme " +"arvioida käsikirjoitus \"{$submissionTitle}\" julkaisijalle {$contextName}. " +"Toivoimme saavamme arviointinne {$reviewDueDate} mennessä, ja olisimme " +"iloisia, mikäli voisitte lähettää arvioinnin meille heti sen tehtyänne.

      Voitte tarkastella käsikirjoitusta, lisätä arviointitiedostoja ja " +"lähettää arvion kirjautumalla julkaisijan " +"sivustolle ja seuraamalla järjestelmän antamia ohjeita.

      Jos " +"tarvitsette pidennystä määräaikaan, ottakaa yhteyttä minuun. Toivottavasti " +"kuulemme teistä pian.

      Ystävällisin terveisin,

      {$signature}" + +msgid "emails.reviewRemindAuto.body" +msgstr "" +"

      Hyvä {$recipientName},

      Tämä on automaattinen muistutus " +"julkaisijalta {$contextName}, joka koskee käsikirjoituksen \"" +"{$submissionTitle}\" arviointipyyntöä.

      Odotimme saavamme tämän " +"arvioinnin {$reviewDueDate} mennessä, ja ottaisimme sen mielellämme vastaan " +"heti, kun pystytte sen tekemään.

      Voitte tarkastella käsikirjoitusta, " +"lisätä arviointitiedostoja ja lähettää arvion kirjautumalla julkaisijan sivustolle ja " +"seuraamalla järjestelmän antamia ohjeita.

      Jos tarvitsette pidennystä " +"määräaikaan, ottakaa yhteyttä minuun. Toivottavasti kuulemme teistä pian.

      Ystävällisin terveisin,

      {$contextSignature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "{$contextName} on hyväksynyt käsikirjoituksesi" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

      Hyvä {$recipientName},

      Minulla on kunnia ilmoittaa, että olemme " +"päättäneet hyväksyä käsikirjoituksesi. Huolellisen arvioinnin jälkeen " +"katsoimme, että käsikirjoitus {$submissionTitle} täyttää vaatimuksemme. " +"Olemme iloisia voidessamme julkaista käsikirjoituksesi {$contextName}-" +"julkaisussa ja kiitämme sinua siitä, että valitsit meidät.

      Käsikirjoitus tullaan julkaisemaan pian sivustollamme, ja voitte lisätä " +"sen julkaisuluetteloonne. Käsikirjoituksen hyväksytyksi saaminen on aina " +"kovan työn takana ja haluammekin onnitella sinua tämän vaiheen saavuttamisen " +"johdosta.

      Seuraavaksi käsikirjoituksesi siirtyy tekniseen " +"toimitukseen, jossa se valmistellaan julkaistavaksi.

      Saat pian " +"lisäohjeita.

      Jos sinulla on kysyttävää, ota yhteyttä minuun aloittamalla uusi keskustelu julkaisumme " +"sivustolla.

      Ystävällisin terveisin,

      {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Käsikirjoituksesi on lähetetty sisäiseen arviointiin" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

      Hyvä {$recipientName},

      Olen iloinen voidessani ilmoittaa, että " +"toimittaja on käsitellyt käsikirjoituksesi {$submissionTitle} ja päättänyt " +"lähettää sen sisäiseen arviointiin. Saat pian palautetta arvioijilta ja " +"tietoa seuraavista vaiheista.

      Huomaa, että käsikirjoituksen " +"lähettäminen sisäiseen arviointiin ei takaa, että se julkaistaan. Kuulemme " +"arvioijien suosituksia ennen kuin päätämme hyväksyä käsikirjoituksen " +"julkaistavaksi. Sinua saatetaan pyytää tekemään korjauksia ja vastaamaan " +"arvioijien kommentteihin ennen lopullisen päätöksen tekemistä.

      Jos " +"sinulla on kysyttävää, ota minuun yhteyttä järjestelmämme " +"keskustelutoiminnolla.

      {$signature}

      " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Käsikirjoituksesi on lähetetty tekniseen toimitukseen" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

      Hyvä {$recipientName},

      \n" +"

      Minulla on kunnia ilmoittaa, että olemme päättäneet hyväksyä " +"käsikirjoituksesi ilman vertaisarviointia. Katsoimme, että käsikirjoitus " +"{$submissionTitle} täyttää vaatimuksemme, emmekä lähetä tämän tyyppisiä " +"tekstejä tavallisesti arvioitavaksi. Olemme iloisia voidessamme julkaista " +"käsikirjoituksesi ja kiitämme sinua siitä, että valitsit meidät.

      \n" +"

      Käsikirjoitus tullaan julkaisemaan pian sivustollamme, ja voitte lisätä " +"sen julkaisuluetteloosi. Haluamme onnitella sinua tulevasta julkaisusta ja " +"tehdystä työstä.

      \n" +"

      Seuraavaksi käsikirjoituksesi siirtyy tekniseen toimitukseen, jossa se " +"valmistellaan julkaistavaksi.

      \n" +"

      Saat pian lisäohjeita.

      \n" +"

      Jos sinulla on kysyttävää, ota yhteyttä minuun aloittamalla uusi keskustelu sivustollamme.

      " +"\n" +"

      Ystävällisin terveisin,

      \n" +"

      {$signature}

      \n" + +msgid "emails.layoutRequest.subject" +msgstr "Julkaistavia tiedostoja pyydetään" + +msgid "emails.layoutRequest.body" +msgstr "" +"

      Hyvä {$recipientName},

      Uusi käsikirjoitus on valmiina " +"taitettavaksi:

      {$submissionId} — " +"{$submissionTitle}
      {$contextName}

      1. Klikatkaa yllä olevaa " +"käsikirjoituksen URL-osoitetta.
      2. Ladatkaa omalle tietokoneelle " +"tuotantovalmiit tiedostot ja käyttäkää niitä julkaistavien tiedostojen " +"taittamiseen julkaisijan käytäntöjen mukaisesti.
      3. Ladatkaa valmiit " +"tiedostot kohtaan Julkaiseminen > Julkaisumuodot.
      4. Ilmoittakaa " +"toimittajalle keskustelutoiminnon kautta, että julkaisumuotojen tiedostot " +"ovat valmiit ja ne on lisätty käsikirjoituksen yhteyteen.

      Mikäli " +"ette voi ryhtyä tähän tehtävään juuri nyt, tai jos teillä on kysyttävää, " +"otattehan minuun yhteyttä. Kiitos panoksestanne tämän julkaisijan hyväksi.

      Ystävällisin terveisin,

      {$signature}" + +msgid "emails.layoutComplete.subject" +msgstr "Taiton julkaistavat tiedostot valmiita" + +msgid "emails.layoutComplete.body" +msgstr "" +"

      Hyvä {$recipientName},

      Käsikirjoituksen julkaisumuodot on lisätty " +"ja ne ovat valmiina viimeistä tarkistusta varten.

      {$submissionTitle}
      {$contextName}

      Mikäli " +"teillä on kysyttävää, otattehan yhteyttä minuun.

      Ystävällisin " +"terveisin,

      {$signature}

      " + +msgid "emails.indexRequest.subject" +msgstr "Indeksointia pyydetään" + +msgid "emails.indexRequest.body" +msgstr "" +"Hyvä {$recipientName},
      \n" +"
      \n" +"Käsikirjoitukselle "{$submissionTitle}" tulee nyt luoda " +"indeksointitiedot seuraavien vaiheiden mukaisesti:
      \n" +"1. Klikatkaa alla olevaa Käsikirjoituksen URL-linkkiä.
      \n" +"2. Kirjautukaa julkaisijan sivustolle ja käyttäkää Sivujen korjausvedokset -" +"tiedostoa laatiaksenne julkaistavat tiedostot julkaisijan standardien " +"mukaisesti.
      \n" +"3. Lähettäkää toimittajalle \"Indeksoinnin julkaistavat tiedostot valmiita\" " +"-sähköposti.
      \n" +"
      \n" +"{$contextName} URL: {$contextUrl}
      \n" +"Käsikirjoituksen URL: {$submissionUrl}
      \n" +"Käyttäjätunnus: {$recipientUsername}
      \n" +"
      \n" +"Mikäli ette voi ryhtyä tähän tehtävään juuri nyt, tai teillä on kysyttävää, " +"otattehan minuun yhteyttä. Kiitos panoksestanne tämän julkaisun hyväksi.
      \n" +"
      \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Indeksoinnin julkaistavat tiedostot valmiita" + +msgid "emails.indexComplete.body" +msgstr "" +"Hyvä {$recipientName},
      \n" +"
      \n" +"Käsikirjoituksen "{$submissionTitle}" indeksointitiedot on nyt " +"luotu ja ne ovat valmiit oikolukua varten.
      \n" +"
      \n" +"Mikäli teillä on kysyttävää, otattehan minuun yhteyttä.
      \n" +"
      \n" +"{$senderName}" + +msgid "emails.emailLink.subject" +msgstr "Mahdollisesti kiinnostava käsikirjoitus" + +msgid "emails.emailLink.body" +msgstr "" +"Ajattelin, että sinua saattaisi kiinnostaa {$authors}:n kirjoittama " +"\"{$submissionTitle}\". Sen julkaisutiedot ovat {$contextName}, Nide " +"{$volume} Nro. {$number} ({$year}), ja se löytyy osoitteesta "" +"{$submissionUrl}"." + +msgid "emails.emailLink.description" +msgstr "" +"Tämä sähköpostipohja antaa rekisteröidylle lukijalle mahdollisuuden lähettää " +"tietoa teoksesta jollekin, joka saattaa olla kiinnostunut siitä. Se on " +"käytettävissä Lukutyökalujen kautta, ja julkaisun hallinnoijan on otettava " +"se käyttöön Lukutyökalujen hallintasivulla." + +msgid "emails.notifySubmission.subject" +msgstr "Ilmoitus käsikirjoitukseen liittyen" + +msgid "emails.notifySubmission.body" +msgstr "" +"Sinulle on saapunut viesti käyttäjältä {$sender} käsikirjoitukseen "" +"{$submissionTitle}" ({$monographDetailsUrl}) liittyen:
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "Käyttäjän lähettämä ilmoitus." + +msgid "emails.notifyFile.subject" +msgstr "Ilmoitus käsikirjoitustiedostoon liittyen" + +msgid "emails.notifyFile.body" +msgstr "" +"Sinulle on saapunut viesti käyttäjältä {$sender} käsikirjoitukseen " +"{$submissionTitle} ({$monographDetailsUrl} liittyvää tiedostoa "" +"{$fileName}" koskien:
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "Käyttäjän lähettämä ilmoitus" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Toimitustyötä koskeva raportti {$month}/{$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
      \n" +"
      \n" +"Toimitustyön raportti {$month}/{$year} on nyt valmis. Kuukautta koskevat " +"keskeiset luvut ovat alla.
      \n" +"
        \n" +"\t
      • Uudet käsikirjoitukset: {$newSubmissions}
      • \n" +"\t
      • Hylätyt käsikirjoitukset: {$declinedSubmissions}
      • \n" +"\t
      • Hyväksytyt käsikirjoitukset: {$acceptedSubmissions}
      • \n" +"\t
      • Käsikirjoitusten kokonaismäärä: {$totalSubmissions}
      • \n" +"
      \n" +"Kirjaudu julkaisuun nähdäksesi yksityiskohtaisemmat toimitustyön tilastot ja julkaistujen kirjojen tilastot. Kopio tämän " +"kuun toimitustyön tilastoista on liitteenä.
      \n" +"
      \n" +"Terveisin,
      \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
      \n" +"
      \n" +"{$announcementSummary}
      \n" +"
      \n" +"Verkkosivuillamme voit lukea koko " +"ilmoituksen." + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Tilin vahvistaminen" + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "Hyvä {$recipientName},
      \n" +#~ "
      \n" +#~ "Olette luonut tilin julkaisijan sivustolle {$contextName}. Ennen kuin " +#~ "voitte aloittaa tilin käytön, teidän täytyy vahvistaa sähköpostinne. " +#~ "Voitte tehdä sen alla olevan linkin kautta:
      \n" +#~ "
      \n" +#~ "{$activateUrl}
      \n" +#~ "
      \n" +#~ "Ystävällisin terveisin,
      \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "This email is sent to a newly registered user to welcome them to the " +#~ "system and provide them with a record of their username and password." + +msgid "emails.editorAssignReview.body" +msgstr "" +"

      Hyvä {$recipientName},

      Seuraava käsikirjoitus on osoitettu sinulle " +"toimitustyötä varten.

      {$submissionTitle}
      {$authors}

      Abstract

      {$submissionAbstract}

      Ole hyvä " +"ja kirjaudu sisään nähdäksesi käsikirjoituksen ja osoita sille sopivat arvioijat. Voit osoittaa arvioijat valitsemalla " +"\"Lisää arvioija\".

      Kiitos jo etukäteen.

      Ystävällisin " +"terveisin,

      {$signature}" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

      Hyvä {$recipientName},

      Seuraava käsikirjoitus on osoitettu sinulle " +"tuotantovaiheen läpivientiä varten.

      {$submissionTitle}
      {$authors}

      Abstract

      {$submissionAbstract}

      Ole hyvä ja kirjaudu sisään nähdäksesi käsikirjoituksen. " +"Kun tuotantovalmiit tiedostot ovat käytettävissä, lataa ne kohtaan " +"Julkaiseminen > Julkaisumuodot.

      Kiitos jo etukäteen.

      Ystävällisin terveisin,

      {$signature}" + +msgid "emails.reviewReinstate.subject" +msgstr "Voitteko vielä arvioida julkaisijalle {$contextName}?" + +msgid "emails.revisedVersionNotify.subject" +msgstr "Korjattu versio on ladattu" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

      Hyvä {$recipientName},

      Kirjoittaja on lähettänyt korjauksia " +"käsikirjoitukseen {$authorsShort} — {$submissionTitle}.

      Pyydämme " +"sinua osoitettuna toimittajana kirjautumaan sisään, tarkistamaan tehdyt korjaukset ja tekemään päätöksen " +"siitä, hyväksytkö, hylkäätkö vai lähetätkö käsikirjoituksen uudelleen " +"arvioitavaksi.




      Tämä on automaattinen viesti, jonka lähettäjä " +"on {$contextName}." diff --git a/locale/fi/locale.po b/locale/fi/locale.po new file mode 100644 index 00000000000..9085d1e00f3 --- /dev/null +++ b/locale/fi/locale.po @@ -0,0 +1,1723 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" +"PO-Revision-Date: 2023-12-03 14:38+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish " +"\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "common.payments" +msgstr "Maksut" + +msgid "monograph.audience" +msgstr "Kohderyhmä" + +msgid "monograph.audience.success" +msgstr "Kohderyhmäasetukset päivitetty." + +msgid "monograph.coverImage" +msgstr "Kansikuva" + +msgid "monograph.audience.rangeQualifier" +msgstr "Kohderyhmän tarkenteen tyyppi" + +msgid "monograph.audience.rangeFrom" +msgstr "Kohderyhmän tarkenne (alkaen)" + +msgid "monograph.audience.rangeTo" +msgstr "Kohderyhmän tarkenne (asti)" + +msgid "monograph.audience.rangeExact" +msgstr "Kohderyhmän tarkenne (tarkalleen)" + +msgid "monograph.languages" +msgstr "Kielet (englanti, ranska, espanja)" + +msgid "monograph.publicationFormats" +msgstr "Julkaisumuodot" + +msgid "monograph.publicationFormat" +msgstr "Muoto" + +msgid "monograph.publicationFormatDetails" +msgstr "Tietoja saatavilla olevasta julkaisumuodosta: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Tietoja tästä kirjasta" + +msgid "monograph.carousel.publicationFormats" +msgstr "Muodot:" + +msgid "monograph.type" +msgstr "Käsikirjoitustyyppi" + +msgid "submission.pageProofs" +msgstr "Sivujen korjausvedokset" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Taittaja lataa tuotantovalmiit tiedostot, jotka on täällä valmisteltu " +"julkaisemista varten. Klikkaa Valitse-kohtaa valitaksesi " +"kirjoittajia ja muita henkilöitä oikolukemaan sivujen korjausvedokset, jotka " +"on korjattu ja ladattu hyväksyttäväksi ennen julkaisemista." + +msgid "monograph.task.addNote" +msgstr "Lisää tehtävään" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Avoin saatavuus" + +msgid "monograph.publicationFormat.imprint" +msgstr "Kustantajan markkinointinimi (tuotenimi)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Sivumäärät" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Alkusivut" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Lopputekstit" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Tuotteen kokoonpano" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Tuotteen tiedot (ei pakollinen)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Tuotteen tunnistetiedot" + +msgid "monograph.publicationFormat.price" +msgstr "Hinta" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Hinta vaaditaan." + +msgid "monograph.publicationFormat.priceType" +msgstr "Hintatyyppi" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Alennusprosentti, mikäli käytössä" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Tuotteen saatavuus" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Palautettavuustiedot" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Digitaaliset tiedot" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Fyysiset mitat" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Tiedoston koko megatavuina (Mt)" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Annetaanko oma tiedostokoon arvo?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Korkeus" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Paksuus" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Paino" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Leveys" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Valmistusmaa" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Digitaalinen tekninen suojaus" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Tuotteen jakelualue" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Verokanta" + +msgid "monograph.publicationFormat.taxType" +msgstr "Verotyyppi" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Sisällytä tämän julkaisumuodon metatiedot tämän kirjan luettelomerkintöihin." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Markkina- ja hintatiedot puuttuvat." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Tunnistuskoodi puuttuu." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Joitakin metatietokenttiä puuttuu." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

      Valitsemaasi julkaisumuotoa ei ole enää olemassa tälle kirjalle.

      " + +msgid "monograph.publicationFormat.openTab" +msgstr "Avaa julkaisumuodon välilehti." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Julkaisumuoto" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Nimi vaaditaan." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Kelvollinen hinta vaaditaan." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Muodon tiedot" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Fyysinen muoto" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Tämä muoto tulee saataville erilliselle verkkosivustolle" + +msgid "grid.catalogEntry.remoteURL" +msgstr "Etä-ylläpidetyn sisällön URL-osoite" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "13-numeroinen ISBN, esimerkiksi 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "10-numeroinen ISBN, esimerkiksi 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Kirjan tunniste vaaditaan." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Julkaisumuoto on valittava." + +msgid "grid.catalogEntry.availability" +msgstr "Saatavuus" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Saatavilla" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Ei saatavilla" + +msgid "grid.catalogEntry.proof" +msgstr "Korjausvedos" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Muodon hyväksyminen" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

      Hyväksy tämän muodon metatiedot. Metatiedot voidaan tarkistaa " +"Luettelomerkintä-paneelista.

      " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

      Näytä, että tämän muodon metatietoja ei ole hyväksytty.

      " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Muodon saatavuus" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

      Tee tämä muoto lukijoiden saatavillaolevaksi. Ladattavat " +"tiedostot sekä kaikki muut jaetut materiaalit tulevat näkyviin kirjan " +"luettelomerkintöihin.

      " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

      Tämä muoto poistetaan lukijoiden saatavilta. Mitkään ladattavat " +"tiedostot tai muut jaetut materiaalit eivät ole enää näkyvillä kirjan " +"luettelomerkinnöissä.

      " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Luettelomerkintää ei hyväksytty." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Muotoa ei luettelomerkinnässä." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Korjausvedosta ei hyväksytty." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Hyväksytty" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Odottaa hyväksyntää" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Digitaalisten muotojen tiedostokoko vaaditaan." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Tuotteen saatavuuskoodi vaaditaan." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Tuotteen kokoonpanokoodi on valittava." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Koodi" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "ONIX-koodityyppi" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Tunnistuskoodi vaaditaan." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Arvo vaaditaan." + +msgid "grid.catalogEntry.salesRights" +msgstr "Myyntioikeudet" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Koodi" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Myyntioikeustyyppi" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Ulkomaat (ROW)?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Rastita tämä ruutu (alla), jos haluat käyttää tätä Myyntioikeudet-merkintää " +"kaikenkattavana julkaisumuodollesi. Maita ja alueita ei tällöin tarvitse " +"valita." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "Tälle julkaisumuodolle on jo määritelty Ulkomaat-myyntityyppi." + +msgid "grid.catalogEntry.countries" +msgstr "Maat" + +msgid "grid.catalogEntry.regions" +msgstr "Alueet" + +msgid "grid.catalogEntry.included" +msgstr "Sisällytetään" + +msgid "grid.catalogEntry.excluded" +msgstr "Ei sisällytetä" + +msgid "grid.catalogEntry.markets" +msgstr "Markkina-alueet" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Alue" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Julkaisupäivämäärät" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Edustajan rooli vaaditaan." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Aikamääreen muoto vaaditaan." + +msgid "grid.catalogEntry.dateValue" +msgstr "Päivämäärä" + +msgid "grid.catalogEntry.dateRole" +msgstr "Rooli" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Aikamääreen muoto" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Päivämäärä vaaditaan. Aikamääreen arvon on vastattava valittua aikamääreen " +"muotoa." + +msgid "grid.catalogEntry.representatives" +msgstr "Edustajat" + +msgid "grid.catalogEntry.representativeType" +msgstr "Edustajatyyppi" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agentit" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Välittäjät" + +msgid "grid.catalogEntry.agent" +msgstr "Agentti" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Mikäli haluat, voit valita agentin edustamaan sinua määritellyllä alueella " +"(ei pakollinen)." + +msgid "grid.catalogEntry.supplier" +msgstr "Välittäjä" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Valitse rooli:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Rooli" + +msgid "grid.catalogEntry.representativeName" +msgstr "Nimi" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Puhelin" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Sähköposti" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Verkkosivusto" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Edustajan tunniste" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "" +"Edustajan tunnisteen tyyppi (suositeltava tunniste: yrityksen GLN-numero)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Voit jättää seuraavan osion tyhjäksi, jos tarjoat itse omia palveluitasi " +"asiakkaillesi." + +msgid "grid.action.addRepresentative" +msgstr "Lisää edustaja" + +msgid "grid.action.editRepresentative" +msgstr "Muokkaa tätä edustajaa" + +msgid "grid.action.deleteRepresentative" +msgstr "Poista tämä edustaja" + +msgid "spotlight" +msgstr "Nosto" + +msgid "spotlight.spotlights" +msgstr "Nostot" + +msgid "spotlight.noneExist" +msgstr "Ei yhtään nostoa." + +msgid "spotlight.title.homePage" +msgstr "Nostetut" + +msgid "spotlight.author" +msgstr "Kirjoittaja, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Nostettu nimeke" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Etusivu" + +msgid "grid.content.spotlights.form.location" +msgstr "Noston sijainti" + +msgid "grid.content.spotlights.form.item" +msgstr "Anna nostettava nimeke (automaattinen täydennys)" + +msgid "grid.content.spotlights.form.title" +msgstr "Noston otsikko" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Kirja" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Kohde vaaditaan." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Noston otsikko on pakollinen." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Valitse tämän noston sijainti." + +msgid "grid.action.editSpotlight" +msgstr "Muokkaa tätä nostoa" + +msgid "grid.action.deleteSpotlight" +msgstr "Poista tämä nosto" + +msgid "grid.action.addSpotlight" +msgstr "Lisää nosto" + +msgid "manager.series.open" +msgstr "Käsikirjoitukset vapaasti lähetettävissä" + +msgid "manager.series.indexed" +msgstr "Indeksoitu" + +msgid "grid.libraryFiles.column.files" +msgstr "Tiedostot" + +msgid "grid.action.catalogEntry" +msgstr "Näytä luettelomerkintä-lomake" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Muoto näkyy luettelomerkinnässä" + +msgid "grid.action.editFormat" +msgstr "Muokkaa tätä muotoa" + +msgid "grid.action.deleteFormat" +msgstr "Poista tämä muoto" + +msgid "grid.action.addFormat" +msgstr "Lisää julkaisumuoto" + +msgid "grid.action.approveProof" +msgstr "Hyväksy korjausvedos indeksointia ja luetteloon sisällyttämistä varten" + +msgid "grid.action.pageProofApproved" +msgstr "Sivujen korjausvedokset -tiedosto on valmis julkaistavaksi" + +msgid "grid.action.newCatalogEntry" +msgstr "Uusi luettelomerkintä" + +msgid "grid.action.publicCatalog" +msgstr "Näytä tämä kohde luettelossa" + +msgid "grid.action.feature" +msgstr "Näytä tai piilota esittelynäyttö" + +msgid "grid.action.featureMonograph" +msgstr "Esittele luettelokarusellissa" + +msgid "grid.action.releaseMonograph" +msgstr "Merkitse tämä käsikirjoitus uutuudeksi" + +msgid "grid.action.manageCategories" +msgstr "Määritä kategoriat tälle julkaisijalle" + +msgid "grid.action.manageSeries" +msgstr "Määritä sarjat tälle julkaisijalle" + +msgid "grid.action.addCode" +msgstr "Lisää koodi" + +msgid "grid.action.editCode" +msgstr "Muokkaa tätä koodia" + +msgid "grid.action.deleteCode" +msgstr "Poista tämä koodi" + +msgid "grid.action.addRights" +msgstr "Lisää myyntioikeudet" + +msgid "grid.action.editRights" +msgstr "Muokkaa näitä oikeuksia" + +msgid "grid.action.deleteRights" +msgstr "Poista nämä oikeudet" + +msgid "grid.action.addMarket" +msgstr "Lisää markkina" + +msgid "grid.action.editMarket" +msgstr "Muokkaa tätä markkinaa" + +msgid "grid.action.deleteMarket" +msgstr "Poista tämä markkina" + +msgid "grid.action.addDate" +msgstr "Lisää julkaisupäivämäärä" + +msgid "grid.action.editDate" +msgstr "Muokkaa tätä päivämäärää" + +msgid "grid.action.deleteDate" +msgstr "Poista tämä päivämäärä" + +msgid "grid.action.createContext" +msgstr "Luo uusi julkaisija" + +msgid "grid.action.publicationFormatTab" +msgstr "Näytä julkaisumuodon välilehti" + +msgid "grid.action.moreAnnouncements" +msgstr "Siirry julkaisijan Ilmoitukset-sivulle" + +msgid "grid.action.submissionEmail" +msgstr "Klikkaa lukeaksesi tämän sähköpostin" + +msgid "grid.action.approveProofs" +msgstr "Näytä korjausvedosten kehikko" + +msgid "grid.action.proofApproved" +msgstr "Muoto on oikoluettu" + +msgid "grid.action.availableRepresentation" +msgstr "Hyväksy/hylkää tämä muoto" + +msgid "grid.action.formatAvailable" +msgstr "Vaihda tämän muodon saatavuutta (saatavilla/ei saatavilla)" + +msgid "grid.reviewAttachments.add" +msgstr "Lisää arviointiin liite" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Saatavilla olevat tiedostot" + +msgid "series.series" +msgstr "Sarja" + +msgid "series.featured.description" +msgstr "Tämä sarja tulee näkyville päävalikkoon" + +msgid "series.path" +msgstr "Polku" + +msgid "catalog.manage" +msgstr "Luettelon hallinnointi" + +msgid "catalog.manage.newReleases" +msgstr "Uutuudet" + +msgid "catalog.manage.category" +msgstr "Kategoria" + +msgid "catalog.manage.series" +msgstr "Sarja" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Anna kelvollinen ISSN." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Verkkokirjan ja painetun kirjan ISSN-tunnusten tulee erota toisistaan." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Verkkokirjan ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "Painetun kirjan ISSN" + +msgid "catalog.selectSeries" +msgstr "Valitse sarja" + +msgid "catalog.selectCategory" +msgstr "Valitse kategoria" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Valittujen kirjojen kansikuvat näkyvät etusivun yläosassa vieritettävänä " +"joukkona. Klikkaa ensin \"Esittele\"-kohtaa ja sitten tähteä lisätäksesi " +"kirjan karuselliin; klikkaa huutomerkkiä merkitäksesi julkaisun uutuudeksi; " +"muuta järjestystä vetämällä ja pudottamalla." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Klikkaa \"Esittele\"-kohtaa ja sen jälkeen tähteä valitaksesi tämän " +"kategorian esiteltävän kirjan; muuta järjestystä vetämällä ja pudottamalla." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Klikkaa \"Esittele\"-kohtaa ja sen jälkeen tähteä valitaksesi tämän sarjan " +"esiteltävän kirjan; muuta järjestystä vetämällä ja pudottamalla. Toimittajan/" +"toimittajien nimet ja sarjan nimeke ovat sarjan tunnisteita sekä kategorian " +"sisällä että yksittäisinä." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Karuselli" + +msgid "catalog.manage.newRelease" +msgstr "Uutuus" + +msgid "catalog.manage.manageSeries" +msgstr "Hallinnoi sarjoja" + +msgid "catalog.manage.manageCategories" +msgstr "Hallinnoi kategorioita" + +msgid "catalog.manage.noMonographs" +msgstr "Ei osoitettuja kirjoja." + +msgid "catalog.manage.featured" +msgstr "Esittelyssä" + +msgid "catalog.manage.categoryFeatured" +msgstr "Esiteltävät kategoriassa" + +msgid "catalog.manage.seriesFeatured" +msgstr "Esiteltävät sarjassa" + +msgid "catalog.manage.featuredSuccess" +msgstr "Kirja on esittelyssä." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Kirja ei ole esittelyssä." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Kirja on merkitty uutuudeksi." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Kirjaa ei ole merkitty uutuudeksi." + +msgid "catalog.manage.feature.newRelease" +msgstr "Uutuus" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Uutuus kategoriassa" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Uutuus sarjassa" + +msgid "catalog.manage.nonOrderable" +msgstr "Tämä kirja ei ole tilattavissa ennen kuin se on esittelyssä." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Hae nimekkeen tai kirjoittajan mukaan" + +msgid "catalog.manage.isFeatured" +msgstr "Tämä teos on esittelyssä etusivulla. Poista tämä teos esittelystä." + +msgid "catalog.manage.isNotFeatured" +msgstr "" +"Tämä teos ei ole esittelyssä etusivulla. Siirrä tämä teos esittelyyn " +"etusivulle." + +msgid "catalog.manage.isNewRelease" +msgstr "Tämä teos on uutuus. Poista uutuusmerkintä." + +msgid "catalog.manage.isNotNewRelease" +msgstr "Tämä teos ei ole uutuus. Lisää uutuusmerkintä." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Yhtään käsikirjoitusta ei valittu luetteloon liitettäväksi." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Yhtä tai useampaa käsikirjoitusta ei löytynyt." + +msgid "catalog.manage.findSubmissions" +msgstr "Etsi teokset, jotka lisätään luetteloon" + +msgid "catalog.noTitles" +msgstr "Yhtään nimekettä ei ole vielä julkaistu." + +msgid "catalog.noTitlesNew" +msgstr "Uutuuksia ei saatavilla tällä hetkellä." + +msgid "catalog.noTitlesSearch" +msgstr "Haullasi \"{$searchQuery}\" ei löytynyt nimekkeitä." + +msgid "catalog.feature" +msgstr "Esittele" + +msgid "catalog.featured" +msgstr "Esittelyssä" + +msgid "catalog.featuredBooks" +msgstr "Esittelyssä olevat kirjat" + +msgid "catalog.foundTitleSearch" +msgstr "Haullasi \"{$searchQuery}\" löytyi yksi (1) nimeke." + +msgid "catalog.foundTitlesSearch" +msgstr "Haullasi \"{$searchQuery}\" löytyi {$number} nimekettä." + +msgid "catalog.category.heading" +msgstr "Kaikki kirjat" + +msgid "catalog.newReleases" +msgstr "Uutuudet" + +msgid "catalog.dateAdded" +msgstr "Lisätty" + +msgid "catalog.publicationInfo" +msgstr "Julkaisutiedot" + +msgid "catalog.published" +msgstr "Julkaistu" + +msgid "catalog.forthcoming" +msgstr "Tulossa" + +msgid "catalog.categories" +msgstr "Kategoriat" + +msgid "catalog.parentCategory" +msgstr "Pääkategoria" + +msgid "catalog.category.subcategories" +msgstr "Alakategoriat" + +msgid "catalog.aboutTheAuthor" +msgstr "Tietoa roolista {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Huomaa: Jotta voit ostaa nimekkeitä, sinun on ensin kirjauduttava sisään. " +"Kun valitset ostettavan nimekkeen, sinut ohjataan kirjautumissivulle. Open " +"Access -kuvakkeella merkittyjä nimekkeitä voidaan ladata maksutta ilman " +"sisäänkirjautumista." + +msgid "catalog.sortBy" +msgstr "Kirjojen järjestys" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Valitse miten tämän sarjan kirjat järjestetään." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Valitse miten tämän kategorian kirjat järjestetään." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Valitse miten luettelon kirjat järjestetään." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Sijoitus sarjassa (alin ensin)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Sijoitus sarjassa (korkein ensin)" + +msgid "catalog.viewableFile.title" +msgstr "{$type}-näkymä tiedostosta {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Palaa tarkastelemaan {$monographTitle}:n tietoja" + +msgid "submission.search" +msgstr "Kirjahaku" + +msgid "common.publication" +msgstr "Kirja" + +msgid "common.publications" +msgstr "Kirjat" + +msgid "common.prefix" +msgstr "Prefiksi" + +msgid "common.preview" +msgstr "Esikatselu" + +msgid "common.feature" +msgstr "Esittele" + +msgid "common.searchCatalog" +msgstr "Hae luettelosta" + +msgid "common.moreInfo" +msgstr "Lisätietoja" + +msgid "common.listbuilder.completeForm" +msgstr "Täytä lomake kokonaan." + +msgid "common.listbuilder.selectValidOption" +msgstr "Valitse kelvollinen vaihtoehto listasta." + +msgid "common.listbuilder.itemExists" +msgstr "Samaa kohtaa ei voi lisätä kahdesti." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Etusivun ylätunniste" + +msgid "navigation.catalog" +msgstr "Luettelo" + +msgid "navigation.competingInterestPolicy" +msgstr "Sidonnaisuuksien ilmoittaminen" + +msgid "navigation.catalog.allMonographs" +msgstr "Kaikki kirjat" + +msgid "navigation.catalog.manage" +msgstr "Hallinnoi" + +msgid "navigation.catalog.administration.short" +msgstr "Ylläpito" + +msgid "navigation.catalog.administration" +msgstr "Luettelon ylläpito" + +msgid "navigation.catalog.administration.categories" +msgstr "Kategoriat" + +msgid "navigation.catalog.administration.series" +msgstr "Sarja" + +msgid "navigation.infoForAuthors" +msgstr "Kirjoittajille" + +msgid "navigation.infoForLibrarians" +msgstr "Kirjastonhoitajille" + +msgid "navigation.infoForAuthors.long" +msgstr "Tietoa kirjoittajille" + +msgid "navigation.infoForLibrarians.long" +msgstr "Tietoa kirjastonhoitajille" + +msgid "navigation.newReleases" +msgstr "Uutuudet" + +msgid "navigation.published" +msgstr "Julkaistu" + +msgid "navigation.wizard" +msgstr "Ohjattu toiminto" + +msgid "navigation.linksAndMedia" +msgstr "Linkit ja sosiaalinen media" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Linkki omaan luetteloon." + +msgid "navigation.skip.spotlights" +msgstr "Siirry uutuuslistaan" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Sarja" + +msgid "navigation.navigationMenus.series.description" +msgstr "Linkki sarjaan." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Kategoria" + +msgid "navigation.navigationMenus.category.description" +msgstr "Linkki kategoriaan." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Uutuudet" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Linkki omiin uutuuksiin." + +msgid "context.contexts" +msgstr "Julkaisijat" + +msgid "context.context" +msgstr "Julkaisija" + +msgid "context.current" +msgstr "Nykyinen julkaisija:" + +msgid "context.select" +msgstr "Vaihda toiseen julkaisijaan:" + +msgid "user.authorization.representationNotFound" +msgstr "Pyydettyä julkaisumuotoa ei löytynyt." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "" +"Sisällytä käyttäjät, joilla ei ole roolia tämän julkaisijan sivustolla." + +msgid "user.noRoles.submitMonograph" +msgstr "Lähetä ehdotus" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Lähetä kirja: Kirjoittajaksi rekisteröityminen ei juuri nyt ole mahdollista." + +msgid "user.noRoles.regReviewer" +msgstr "Rekisteröidy arvioijaksi" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Rekisteröidy arvioijaksi: Arvioijaksi rekisteröityminen ei juuri nyt ole " +"mahdollista." + +msgid "user.reviewerPrompt" +msgstr "Haluaisitko arvioida tälle julkaisijalle lähetettyjä käsikirjoituksia?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Kyllä, pyydä {$userGroup}-roolia." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Kyllä, haluan, että minulle lähetetään pyyntöjä tämän julkaisijan " +"käsikirjoitusten arvioinnista." + +msgid "user.register.contextsPrompt" +msgstr "" +"Minkä tällä sivustolla olevien julkaisijoiden sivustojen käyttäjäksi haluat " +"rekisteröityä?" + +msgid "user.register.otherContextRoles" +msgstr "Pyydä seuraavia rooleja." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Jos pyysit jonkin julkaisijan arvioijan roolia, anna sinua kiinnostavat " +"aiheet." + +msgid "user.role.manager" +msgstr "Julkaisijan sivuston hallinnoija" + +msgid "user.role.pressEditor" +msgstr "Toimittaja" + +msgid "user.role.subEditor" +msgstr "Sarjan toimittaja" + +msgid "user.role.copyeditor" +msgstr "Tekninen toimittaja" + +msgid "user.role.proofreader" +msgstr "Oikolukija" + +msgid "user.role.productionEditor" +msgstr "Tuotantotoimittaja" + +msgid "user.role.managers" +msgstr "Julkaisijan sivuston hallinnoijat" + +msgid "user.role.subEditors" +msgstr "Sarjan toimittajat" + +msgid "user.role.editors" +msgstr "Toimittajat" + +msgid "user.role.copyeditors" +msgstr "Tekniset toimittajat" + +msgid "user.role.proofreaders" +msgstr "Oikolukijat" + +msgid "user.role.productionEditors" +msgstr "Tuotantotoimittajat" + +msgid "user.register.selectContext" +msgstr "Valitse julkaisijan sivusto, johon rekisteröidyt:" + +msgid "user.register.noContexts" +msgstr "" +"Et voi rekisteröityä tällä sivustolla olevien julkaisijoiden sivustoille." + +msgid "user.register.privacyStatement" +msgstr "Tietosuojaseloste" + +msgid "user.register.registrationDisabled" +msgstr "Tämän julkaisijan sivuston käyttäjäksi ei voi rekisteröityä juuri nyt." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Kirjoittamasi salasana ei ole tarpeeksi pitkä." + +msgid "user.register.readerDescription" +msgstr "Kirjan julkaisemisesta ilmoitetaan sähköpostitse." + +msgid "user.register.authorDescription" +msgstr "Kohteiden lähetys julkaisijalle sallittu." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Halukas vertaisarvioimaan julkaisijalle lähetettyjä käsikirjoituksia." + +msgid "user.register.reviewerDescription" +msgstr "Halukas vertaisarvioimaan sivustolle lähetettyjä käsikirjoituksia." + +msgid "user.register.reviewerInterests" +msgstr "" +"Kerro kiinnostavat arviointiaiheet (olennaiset alueet ja tutkimusmenetelmät):" + +msgid "user.register.form.userGroupRequired" +msgstr "Valitse vähintään yksi rooli" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Kyllä, annan luvan tallentaa tietojani tämän julkaisijan tietosuojaselosteen kuvaamalla " +"tavalla." + +msgid "site.noPresses" +msgstr "Julkaisijoita ei löytynyt." + +msgid "site.pressView" +msgstr "Näytä julkaisijan verkkosivusto" + +msgid "about.pressContact" +msgstr "Julkaisijan yhteystiedot" + +msgid "about.aboutContext" +msgstr "Tietoa julkaisijasta" + +msgid "about.editorialTeam" +msgstr "Toimituskunta" + +msgid "about.editorialPolicies" +msgstr "Toimitukselliset käytännöt" + +msgid "about.focusAndScope" +msgstr "Tarkoitus ja toimintaperiaatteet" + +msgid "about.seriesPolicies" +msgstr "Sarja- ja kategoriakäytännöt" + +msgid "about.submissions" +msgstr "Käsikirjoitukset" + +msgid "about.onlineSubmissions" +msgstr "Käsikirjoituksen lähettäminen verkossa" + +msgid "about.onlineSubmissions.login" +msgstr "Kirjaudu sisään" + +msgid "about.onlineSubmissions.register" +msgstr "Rekisteröidy" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} tai {$register} lähettääksesi käsikirjoituksen." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} tai {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Lähetä uusi käsikirjoitus" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "katso odottavia käsikirjoituksiasi" + +msgid "about.authorGuidelines" +msgstr "Kirjoittajan ohjeet" + +msgid "about.submissionPreparationChecklist" +msgstr "Käsikirjoituksen lähettämisen tarkistuslista" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Kirjoittajien tulee vahvistaa, että heidän käsikirjoituksensa noudattaa " +"kaikkia seuraavia kohtia. Jos näitä ohjeita ei noudateta, käsikirjoitus " +"palautetaan kirjoittajalle." + +msgid "about.copyrightNotice" +msgstr "Tekijänoikeushuomautus" + +msgid "about.privacyStatement" +msgstr "Tietosuojaseloste" + +msgid "about.reviewPolicy" +msgstr "Vertaisarviointiprosessi" + +msgid "about.publicationFrequency" +msgstr "Julkaisutiheys" + +msgid "about.openAccessPolicy" +msgstr "Avoimen saatavuuden periaate" + +msgid "about.pressSponsorship" +msgstr "Julkaisijan tukijana toimiminen" + +msgid "about.aboutThisPublishingSystem" +msgstr "Tietoja julkaisujärjestelmästä." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "OMP:n toimitus- ja julkaisuprosessit" + +msgid "about.aboutSoftware" +msgstr "Tietoa Open Monograph Press -järjestelmästä" + +msgid "about.aboutOMPPress" +msgstr "" +"Tämä julkaisija käyttää Open Monograph Press {$ompVersion} -järjestelmää, " +"joka on Public Knowledge Projectin " +"kehittämä, tukema ja GNU General Public License -lisenssillä vapaasti jakama " +"avoimen lähdekoodin toimitus- ja julkaisuohjelmisto. Julkaisijaa ja " +"käsikirjoituksia koskevissa kysymyksissä tulee olla yhteydessä suoraan julkaisijaan." + +msgid "about.aboutOMPSite" +msgstr "" +"Tämä sivusto käyttää Open Monograph Press {$ompVersion} -järjestelmää, joka " +"on Public Knowledge Projectin kehittämä, tukema ja GNU General Public " +"License -lisenssillä vapaasti jakama avoimen lähdekoodin toimitustyö- ja " +"julkaisuohjelmisto. Vieraile PKP:n verkkosivustolla ja lue lisää ohjelmistosta. Ota suoraan yhteyttä tähän sivustoon, " +"jos sinulla on kysyttävää sen julkaisijoista ja sen julkaisijoille " +"ehdotettavista käsikirjoituksista." + +msgid "help.searchReturnResults" +msgstr "Takaisin hakutuloksiin" + +msgid "help.goToEditPage" +msgstr "Avaa uusi sivu muokataksesi näitä tietoja" + +msgid "installer.appInstallation" +msgstr "OMP:n asennus" + +msgid "installer.ompUpgrade" +msgstr "OMP:n päivitys" + +msgid "installer.installApplication" +msgstr "Asenna Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Jos olet päivittämässä vanhaa OMP-asennusta, klikkaa tästä päästäksesi eteenpäin." + +msgid "installer.installationInstructions" +msgstr "" +"

      Kiitos, että latasit Public Knowledge Projectin Open Monograph " +"Press {$version}-järjestelmän. Ennen kuin jatkat, lue README-tiedosto, joka tulee tämän " +"ohjelmiston mukana. Lisätietoja Public Knowledge Projectista ja sen " +"ohjelmistoprojekteista löydät PKP:n verkkosivustolta. Jos haluat tehdä ilmoituksen " +"ohjelmistovirheestä tai ottaa yhteyttä Open Monograph Pressin tekniseen " +"tukeen, tutustu tukifoorumiin tai PKP:n online-virheilmoitusjärjestelmään. Yhteydenotot " +"ensisijaisesti tukifoorumin kautta, mutta voit myös lähettää sähköpostia " +"osoitteeseen pkp.contact@gmail." +"com.

      " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Esiasennuksen vaiheet" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

      1. Seuraavista tiedostoista ja kansioista (ja niiden sisällöstä) on " +"tehtävä kirjoituskelpoisia:

      \n" +"
        \n" +"\t
      • config.inc.php on kirjoituskelpoinen (valinnainen): " +"{$writable_config}
      • \n" +"\t
      • public/ on kirjoituskelpoinen: {$writable_public}
      • \n" +"\t
      • cache/ on kirjoituskelpoinen: {$writable_cache}
      • \n" +"\t
      • cache/t_cache/ on kirjoituskelpoinen: " +"{$writable_templates_cache}
      • \n" +"\t
      • cache/t_compile/ on kirjoituskelpoinen: " +"{$writable_templates_compile}
      • \n" +"\t
      • cache/_db on kirjoituskelpoinen: {$writable_db_cache}
      • \n" +"
      \n" +"\n" +"

      2. Ladattaville tiedostoille on luotava hakemisto ja siitä on tehtävä " +"kirjoituskelpoinen (ks. \"Tiedostoasetukset\" alla).

      " + +msgid "installer.upgradeInstructions" +msgstr "" +"

      OMP versio {$version}

      \n" +"\n" +"

      Kiitos, että latasit Public Knowledge Projectin Open Monograph " +"Press-järjestelmän. Ennen kuin jatkat, lue README ja UPGRADE -tiedostot, jotka tulevat tämän ohjelmiston mukana. Löydät " +"lisätietoja Public Knowledge Projectista ja sen ohjelmistoprojekteista PKP:n verkkosivustolta. " +"Jos haluat ilmoittaa ohjelmistovirheestä tai ottaa yhteyttä Open Monograph " +"Press-järjestelmän tekniseen tukeen, katso tukifoorumi tai mene PKP:n virheilmoitusjärjestelmään. Yhteydenotot mieluiten tukifoorumin kautta, " +"mutta voit myös lähettää sähköpostia osoitteeseen pkp.contact@gmail.com.

      \n" +"

      On erittäin suositeltavaa, että varmuuskopioit " +"tietokannan, tiedostohakemiston ja OMP-asennushakemiston ennen " +"jatkamista.

      " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Saadaksesi täyden Unicode (UTF-8) -tuen, valitse UTF-8 kaikkiin " +"merkistöasetuksiin. Huomaa, että tällä hetkellä tämä tuki edellyttää MySQL " +">= 4.1.1 tai PostgreSQL >= 9.1.5 tietokantapalvelinta. Huomioithan myös, " +"että täysi Unicode-tuki edellyttää mbstring-kirjastoa (oletuksena viimeisimmissä PHP-" +"asennuksissa). Saatat kohdata ongelmia käyttäessäsi laajennettuja " +"merkistöjä, jos palvelimesi ei täytä näitä vaatimuksia.\n" +"

      \n" +"Palvelimesi tukee tällä hetkellä mbstringiä: {$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Palvelimesi sallii tällä hetkellä seuraavat tiedostojen lataukset: " +"{$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Palvelimesi sallima latausten enimmäiskoko tällä hetkellä: " +"{$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Pääkieli, jota käytetään tässä järjestelmässä. Jos olet kiinnostunut muiden " +"kuin tässä lueteltujen kielten tuesta, katso lisätietoja OMP:n " +"käyttöohjeista." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Valitse muita tässä järjestelmässä tuettavia kieliä. Nämä kielet ovat " +"sivustolla ylläpidettyjen julkaisijoiden sivustojen käytettävissä. Lisää " +"kieliä voidaan asentaa milloin tahansa myös sivuston ylläpitokäyttöliittymän " +"kautta. Tähdellä (*) merkityt kielialueet saattavat olla vaillinaisia." + +msgid "installer.filesDirInstructions" +msgstr "" +"Anna koko polun nimi olemassa olevaan hakemistoon, jossa ladattavia " +"tiedostoja tullaan säilyttämään. Tähän hakemistoon ei tulisi olla suoraa " +"pääsyä verkosta. Varmista ennen asennusta, että tämä hakemisto on " +"olemassa ja kirjoituskelpoinen. Windowsin polkujen nimissä tulee " +"käyttää vinoviivaa, esim. \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"Voidakseen tallentaa tietoja OMP edellyttää pääsyä SQL-tietokantaan. Katso " +"järjestelmävaatimukset (yllä) nähdäksesi luettelon tuetuista tietokannoista. " +"Anna alla olevissa kentissä asetukset, joita käytetään muodostettaessa " +"yhteys tietokantaan." + +msgid "installer.upgradeApplication" +msgstr "Päivitä Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

      HUOM!

      \n" +"

      Asennusohjelma ei voinut korvata määritystiedostoa automaattisesti. Ennen " +"kuin aloitat järjestelmän käytön, avaa config.inc.php sopivassa " +"tekstieditorissa ja korvaa sen sisältö alla olevan tekstikentän sisällöllä." + +msgid "installer.installationComplete" +msgstr "" +"

      OMP on asennettu onnistuneesti.

      \n" +"

      Aloittaaksesi järjestelmän käytönkirjaudu sisään käyttäjätunnuksella ja salasanalla, jotka syötettiin edellisellä " +"sivulla.

      \n" +"

      Vieraile meidän tukifoorumissa tai tilaa meidän kehittäjien uutiskirje saadaksesi " +"tietoturvailmoituksia ja päivityksiä tulevista ohjelmistoversioista, uusista " +"lisäosista ja suunnitelluista ominaisuuksista.

      " + +msgid "installer.upgradeComplete" +msgstr "" +"

      OMP on päivitetty onnistuneesti versioon {$version}.

      \n" +"

      Muista päivittää config.inc.php-määritystiedoston \"installed\"-" +"asetus takaisin päälle (On).

      \n" +"

      Vieraile meidän tukifoorumissa tai tilaa meidän kehittäjien uutiskirje saadaksesi " +"tietoturvailmoituksia ja päivityksiä tulevista ohjelmistoversioista, uusista " +"lisäosista ja suunnitelluista ominaisuuksista.

      " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Kierroksen {$round} määräpäivä {$reviewerName}:n arvioinnille " +"käsikirjoituksesta {$submissionId} on {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} on kieltäytynyt arvioimasta käsikirjoitusta {$submissionId} " +"kierroksella {$round}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} on suostunut arvioimaan käsikirjoituksen {$submissionId} " +"kierroksella {$round}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} on merkinnyt käsikirjoituksen {$submissionId} arvion " +"käsittelemättömäksi kierroksella {$round}." + +msgid "log.editor.decision" +msgstr "" +"Toimittaja {$editorName} on tallentanut toimittajan päätöksen ({$decision}) " +"kirjalle {$submissionId}." + +msgid "log.editor.recommendation" +msgstr "" +"Toimittaja {$editorName} on tallentanut toimittajan suosituksen " +"({$decision}) teokselle {$submissionId}." + +msgid "log.editor.archived" +msgstr "Käsikirjoitus {$submissionId} on arkistoitu." + +msgid "log.editor.restored" +msgstr "Käsikirjoitus {$submissionId} on palautettu jonoon." + +msgid "log.editor.editorAssigned" +msgstr "" +"{$editorName} on valittu käsikirjoituksen {$submissionId} toimittajaksi." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} on valinnut käyttäjän {$proofreaderName} oikolukemaan " +"käsikirjoituksen {$submissionId}." + +msgid "log.proofread.complete" +msgstr "" +"{$proofreaderName} on lähettänyt käsikirjoituksen {$submissionId} " +"aikataulutukseen." + +msgid "log.imported" +msgstr "{$userName} on tuonut kirjan {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Tunnistuskoodi lisätty." + +msgid "notification.editedIdentificationCode" +msgstr "Tunnistuskoodia muokattu." + +msgid "notification.removedIdentificationCode" +msgstr "Tunnistuskoodi poistettu." + +msgid "notification.addedPublicationDate" +msgstr "Julkaisupäivämäärä lisätty." + +msgid "notification.editedPublicationDate" +msgstr "Julkaisupäivämäärää muokattu." + +msgid "notification.removedPublicationDate" +msgstr "Julkaisupäivämäärä poistettu." + +msgid "notification.addedPublicationFormat" +msgstr "Julkaisumuoto lisätty." + +msgid "notification.editedPublicationFormat" +msgstr "Julkaisumuotoa muokattu." + +msgid "notification.removedPublicationFormat" +msgstr "Julkaisumuoto poistettu." + +msgid "notification.addedSalesRights" +msgstr "Myyntioikeudet lisätty." + +msgid "notification.editedSalesRights" +msgstr "Myyntioikeuksia muokattu." + +msgid "notification.removedSalesRights" +msgstr "Myyntioikeudet poistettu." + +msgid "notification.addedRepresentative" +msgstr "Edustaja lisätty." + +msgid "notification.editedRepresentative" +msgstr "Edustajaa muokattu." + +msgid "notification.removedRepresentative" +msgstr "Edustaja poistettu." + +msgid "notification.addedMarket" +msgstr "Markkina lisätty." + +msgid "notification.editedMarket" +msgstr "Markkina muokattu." + +msgid "notification.removedMarket" +msgstr "Markkina poistettu." + +msgid "notification.addedSpotlight" +msgstr "Nosto lisätty." + +msgid "notification.editedSpotlight" +msgstr "Nostoa muokattu." + +msgid "notification.removedSpotlight" +msgstr "Nosto poistettu." + +msgid "notification.savedCatalogMetadata" +msgstr "Luettelon metatiedot tallennettu." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Julkaisumuodon metatiedot tallennettu." + +msgid "notification.proofsApproved" +msgstr "Korjausvedokset hyväksytty." + +msgid "notification.removedSubmission" +msgstr "Käsikirjoitus poistettu." + +msgid "notification.type.submissionSubmitted" +msgstr "Uusi kirja, \"{$title}\", on lähetetty." + +msgid "notification.type.editing" +msgstr "Toimittamiseen liittyvät tapahtumat" + +msgid "notification.type.reviewing" +msgstr "Arviointitapahtumat" + +msgid "notification.type.site" +msgstr "Sivuston tapahtumat" + +msgid "notification.type.submissions" +msgstr "Käsikirjoitukseen liittyvät tapahtumat" + +msgid "notification.type.userComment" +msgstr "Lukija on kommentoinut nimekettä \"{$title}\"." + +msgid "notification.type.public" +msgstr "Julkiset ilmoitukset" + +msgid "notification.type.editorAssignmentTask" +msgstr "Uusi kirja on lähetetty ja sille tulee valita toimittaja." + +msgid "notification.type.copyeditorRequest" +msgstr "" +"Sinua on pyydetty arvioimaan tiedoston \"{$file}\" teknisesti toimitetut " +"tiedostot." + +msgid "notification.type.layouteditorRequest" +msgstr "Sinua on pyydetty arvioimaan nimekkeen \"{$title}\" taitot." + +msgid "notification.type.indexRequest" +msgstr "Sinua on pyydetty luomaan indeksi nimekkeelle \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Sisäinen arviointiprosessi aloitettu." + +msgid "notification.type.approveSubmission" +msgstr "" +"Tämä käsikirjoitus odottaa vielä Luettelomerkintä-työkalussa hyväksyntää, " +"jonka jälkeen se tulee näkyville julkiseen luetteloon." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Odottaa hyväksyntää." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Kirjaa ei lisätä luetteloon ennen kuin luettelomerkintä on luotu. " +"Lisätäksesi tämän kirjan luetteloon klikkaa yllä olevaa Luettelomerkintä -" +"kohtaa ja etsi Luettelo-välilehti." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Maksutapaa ei ole määritetty." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Määritetty maksutapa vaaditaan, ennen kuin voit määritellä verkkokaupan " +"asetukset." + +msgid "notification.type.visitCatalogTitle" +msgstr "Luettelon hallinnointi" + +msgid "notification.type.visitCatalog" +msgstr "" +"Teos on hyväksytty. Voit hallinnoida sen tietoja yläpuolella olevien " +"linkkien kautta." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Sinulta on evätty pääsy, koska et ole tämän kirjan kelvollinen arvioija." + +msgid "user.authorization.monographAuthor" +msgstr "Sinulta on evätty pääsy, koska et ole tämän kirjan kirjoittaja." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Sinulta on evätty pääsy, koska sinua ei ole valittu tämän kirjan arvioijaksi." + +msgid "user.authorization.monographFile" +msgstr "Sinulta on evätty pääsy tähän kirjan tiedostoon." + +msgid "user.authorization.invalidMonograph" +msgstr "Virheellinen kirja tai ei pyydettyä kirjaa!" + +msgid "user.authorization.noContext" +msgstr "Pyyntöäsi vastaavaa julkaisijaa ei löytynyt." + +msgid "user.authorization.seriesAssignment" +msgstr "Yrität päästä kirjaan, joka ei kuulu omaan sarjaasi." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Pääsy evätty! Sinua ei ole valittu tähän työnkulun vaiheeseen." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Pääsy evätty! Käyttäjäryhmää, johon tällä hetkellä kuulut, ei ole valittu " +"tähän työnkulun vaiheeseen. Tarkista julkaisijan asetukset." + +msgid "payment.directSales" +msgstr "Lataa julkaisijan verkkosivustolta" + +msgid "payment.directSales.price" +msgstr "Hinta" + +msgid "payment.directSales.availability" +msgstr "Saatavuus" + +msgid "payment.directSales.catalog" +msgstr "Luettelo" + +msgid "payment.directSales.approved" +msgstr "Hyväksytty" + +msgid "payment.directSales.priceCurrency" +msgstr "Hinta ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Hintojen tulee sisältää vain numeroita. Älä käytä valuuttasymboleja." + +msgid "payment.directSales.directSales" +msgstr "Suoramyynti" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Ei saatavilla" + +msgid "payment.directSales.notSet" +msgstr "Ei määritelty" + +msgid "payment.directSales.openAccess" +msgstr "Avoin saatavuus" + +msgid "payment.directSales.price.description" +msgstr "" +"Tiedostomuotoja voidaan tarjota ladattaviksi julkaisijan verkkosivustolta " +"joko avoimen saatavuuden periaatteen mukaisesti tai suoramyynnin kautta (kun " +"käytetään asetusten Jakelu-kohdassa määriteltyä maksulisäosaa). Määritä " +"tämän tiedostomuodon lähtökohtainen saatavuus." + +msgid "payment.directSales.validPriceRequired" +msgstr "Kelvollinen numeerinen hinta vaaditaan." + +msgid "payment.directSales.purchase" +msgstr "Osta {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Lataa {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Osta kirjan tai luvun lataus" + +msgid "payment.directSales.monograph.description" +msgstr "Tämä tapahtuma liittyy kirjan tai kirjan luvun suoralatauksen ostoon." + +msgid "debug.notes.helpMappingLoad" +msgstr "XML-tiedosto {$filename} ladattiin uudelleen haulla {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Kirja" + +msgid "submission.pdf.download" +msgstr "Lataa tämä PDF-tiedosto" + +msgid "user.profile.form.showOtherContexts" +msgstr "Rekisteröidy muiden julkaisijoiden sivustoille" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Piilota muut julkaisijat" + +msgid "submission.round" +msgstr "Kierros {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Virheellinen julkaistu käsikirjoitus." + +msgid "catalog.coverImageTitle" +msgstr "Kirjan {$monographTitle} kansi" + +msgid "grid.catalogEntry.chapters" +msgstr "Luvut" + +msgid "search.results.orderBy.article" +msgstr "Artikkelin otsikko" + +msgid "search.results.orderBy.author" +msgstr "Kirjoittaja" + +msgid "search.results.orderBy.date" +msgstr "Julkaisupäivä" + +msgid "search.results.orderBy.monograph" +msgstr "Teoksen otsikko" + +msgid "search.results.orderBy.press" +msgstr "Julkaisijan nimi" + +msgid "search.results.orderBy.popularityAll" +msgstr "Suosio (kaikkien aikojen)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Suosio (viime kuussa)" + +msgid "search.results.orderBy.relevance" +msgstr "Relevanssi" + +msgid "search.results.orderDir.asc" +msgstr "Nouseva" + +msgid "search.results.orderDir.desc" +msgstr "Laskeva" + +#~ msgid "monograph.currentCoverImage" +#~ msgstr "Nykyinen kuva" + +#~ msgid "monograph.currentCoverImageReload" +#~ msgstr "Tallenna muutokset nähdäksesi uuden kansikuvan." + +#~ msgid "monograph.publicationFormat.formatMetadata" +#~ msgstr "Muodon metatiedot" + +#~ msgid "catalog.noTitlesSection" +#~ msgstr "Tähän osastoon ei ole vielä julkaistu nimekkeitä." + +#~ msgid "catalog.browseTitles" +#~ msgstr "{$numTitles} nimekettä" + +#~ msgid "catalog.allBooks" +#~ msgstr "Kaikki kirjat" + +#~ msgid "catalog.subcategories" +#~ msgstr "Alakategoriat" + +#~ msgid "catalog.sortBy.titleAsc" +#~ msgstr "Nimeke (A-Ö)" + +#~ msgid "catalog.sortBy.titleDesc" +#~ msgstr "Nimeke (Ö-A)" + +#~ msgid "catalog.sortBy.datePublishedAsc" +#~ msgstr "Julkaisupäivämäärä (vanhin ensin)" + +#~ msgid "catalog.sortBy.datePublishedDesc" +#~ msgstr "Julkaisupäivämäärä (uusin ensin)" + +#~ msgid "common.openMonographPress" +#~ msgstr "Open Monograph Press" + +#~ msgid "press.presses" +#~ msgstr "Painot" + +#~ msgid "press.path" +#~ msgstr "Polku" + +#~ msgid "log.review.reviewCleared" +#~ msgstr "" +#~ "{$reviewerName}:n arviointi käsikirjoituksesta {$submissionId} " +#~ "kierroksella {$round} on poistettu." + +#~ msgid "grid.category.categories" +#~ msgstr "Kategoriat" + +msgid "section.section" +msgstr "Sarja" + +msgid "search.cli.rebuildIndex.indexing" +msgstr "Indeksoidaan \"{$pressName}\"" + +msgid "search.cli.rebuildIndex.indexingByPressNotSupported" +msgstr "Tämä haun toteutus ei salli julkaisijakohtaista uudelleenindeksointia." + +msgid "search.cli.rebuildIndex.unknownPress" +msgstr "Annettu polku \"{$journalPath}\" ei johtanut julkaisijan sivustoon." diff --git a/locale/fi/manager.po b/locale/fi/manager.po new file mode 100644 index 00000000000..8c210f234fd --- /dev/null +++ b/locale/fi/manager.po @@ -0,0 +1,1924 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" +"PO-Revision-Date: 2023-05-25 09:42+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish " +"\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Tämä korvaa kaikki tähän kielialueeseen liittyvät, kielialuekohtaiset " +"julkaisijan sivuston asetukset" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Valitettavasti muita kieliä ei ole käytettävissä. Jos haluat käyttää tämän " +"julkaisijan sivustolla muita kieliä, ota yhteyttä sivuston ylläpitäjään." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Tätä kieltä käytetään julkaisijan sivuston oletuskielenä." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Varmista, että vähintään yksi valintaruutu on rastitettu kunkin sarjan " +"toimittajan valinnan kohdalla." + +msgid "manager.series.form.reviewFormId" +msgstr "Varmista, että olet valinnut kelvollisen arviointilomakkeen." + +msgid "manager.series.submissionIndexing" +msgstr "Ei sisällytetä julkaisijan sivuston indeksointiin" + +msgid "manager.series.editorRestriction" +msgstr "Ainoastaan toimittajat ja sarjan toimittajat voivat lähettää kohteita." + +msgid "manager.series.confirmDelete" +msgstr "Haluatko varmasti poistaa tämän sarjan pysyvästi?" + +msgid "manager.series.indexed" +msgstr "Indeksoitu" + +msgid "manager.series.open" +msgstr "Käsikirjoitukset vapaasti lähetettävissä" + +msgid "manager.series.readingTools" +msgstr "Lukutyökalut" + +msgid "manager.series.submissionReview" +msgstr "Ei vertaisarvioida" + +msgid "manager.series.submissionsToThisSection" +msgstr "Tähän sarjaan lähetetyt käsikirjoitukset" + +msgid "manager.series.abstractsNotRequired" +msgstr "Älä vaadi abstrakteja" + +msgid "manager.series.disableComments" +msgstr "Estä lukijoiden kommentit tähän sarjaan." + +msgid "manager.series.book" +msgstr "Kirjasarja" + +msgid "manager.series.create" +msgstr "Luo sarja" + +msgid "manager.series.policy" +msgstr "Sarjan kuvaus" + +msgid "manager.series.assigned" +msgstr "Tämän sarjan toimittajat" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Lisää tälle sarjalle sarjan toimittaja saatavilla olevista sarjan " +"toimittajista. Määritä sen jälkeen valvooko sarjan toimittaja tämän sarjan " +"käsikirjoitusten ARVIOINTIA (vertaisarviointi) ja/tai TOIMITUSTYÖTÄ " +"(tekninen toimittaminen, taitto ja oikoluku). Sarjan toimittajat luodaan " +"klikkaamalla Sarjan toimittajat " +"Julkaisijan sivuston hallinnoinnin Roolit-kohdassa." + +msgid "manager.series.hideAbout" +msgstr "Poista tämä sarja Tietoa julkaisijasta -sivulta." + +msgid "manager.series.unassigned" +msgstr "Käytettävissä olevat Sarjan toimittajat" + +msgid "manager.series.form.abbrevRequired" +msgstr "Sarjalle vaaditaan lyhennetty nimeke." + +msgid "manager.series.form.titleRequired" +msgstr "Sarjalle vaaditaan nimeke." + +msgid "manager.series.noneCreated" +msgstr "Yhtään sarjaa ei ole luotu." + +msgid "manager.series.existingUsers" +msgstr "Olemassa olevat käyttäjät" + +msgid "manager.series.seriesTitle" +msgstr "Sarjan nimeke" + +msgid "manager.series.restricted" +msgstr "" +"Älä salli kirjoittajien lähettää käsikirjoituksia suoraan tähän sarjaan." + +msgid "manager.payment.generalOptions" +msgstr "Yleiset valinnat" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Maksut otetaan käyttöön tälle julkaisijalle. Huomaa, että käyttäjien tulee " +"kirjautua sisään maksaakseen." + +msgid "manager.payment.success" +msgstr "Maksutoimintojen asetukset päivitetty." + +msgid "manager.settings" +msgstr "Asetukset" + +msgid "manager.settings.pressSettings" +msgstr "Julkaisijan asetukset" + +msgid "manager.settings.press" +msgstr "Julkaisija" + +msgid "manager.settings.publisher.identity" +msgstr "Julkaisijan tiedot" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Tämä on pakollinen tieto kelvollisten ONIX-kuvailutietojen julkaisemiseksi." + +msgid "manager.settings.publisher" +msgstr "Julkaisijan nimi" + +msgid "manager.settings.location" +msgstr "Maantieteellinen sijainti" + +msgid "manager.settings.publisherCode" +msgstr "Julkaisijan koodi" + +msgid "manager.settings.publisherCodeType" +msgstr "Julkaisijan koodityyppi" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Tämä ei ole kelvollinen julkaisijan koodityyppi." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Kaikki jakeluprosessiin liittyvät asetukset (ilmoitus, indeksointi, " +"arkistointi, maksaminen, lukutyökalut)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Kirjatiedostojen lataukset" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Kirjan abstraktisivun katselukerrat" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Kirjan abstrakti ja lataukset" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Sarjan pääsivun katselukerrat" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Sivuston pääsivun katselukerrat" + +msgid "manager.tools" +msgstr "Työkalut" + +msgid "manager.tools.importExport" +msgstr "" +"Kaikki tietojen (julkaisijat, kirjat, käyttäjät) tuomisen ja viemisen " +"työkalut" + +msgid "manager.tools.statistics" +msgstr "" +"Käyttötilastoihin liittyvien raporttien (luettelon hakemistosivun " +"katselukerrat, kirjan abstraktisivun katselukerrat, kirjan " +"tiedostolataukset) luomiseen liittyvät työkalut" + +msgid "manager.users.availableRoles" +msgstr "Käytettävissä olevat roolit" + +msgid "manager.users.currentRoles" +msgstr "Nykyiset roolit" + +msgid "manager.users.selectRole" +msgstr "Valitse rooli" + +msgid "manager.people.allEnrolledUsers" +msgstr "Tämän julkaisijan sivustolle lisätyt käyttäjät" + +msgid "manager.people.allPresses" +msgstr "Kaikki julkaisijat" + +msgid "manager.people.allSiteUsers" +msgstr "Lisää olemassa oleva käyttäjä tämän julkaisijan sivustolle" + +msgid "manager.people.allUsers" +msgstr "Kaikki käyttäjät, joilla on rooleja" + +msgid "manager.people.confirmRemove" +msgstr "" +"Poistetaanko tämä käyttäjä tämän julkaisijan sivustolta? Tämä toiminto " +"poistaa käyttäjän kaikista tähän julkaisijaan liittyvistä rooleista." + +msgid "manager.people.enrollExistingUser" +msgstr "Lisää olemassa oleva käyttäjä rooliin" + +msgid "manager.people.enrollSyncPress" +msgstr "Julkaisijan sivuston kanssa" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Valitse käyttäjä, joka yhdistetään toiseen käyttäjätiliin (esim. jos " +"jollakulla on kaksi käyttäjätiliä). Ensin valittu tili poistetaan ja sen " +"käsikirjoitukset, toimeksiannot jne. siirretään toiselle tilille." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Valitse käyttäjä, kenelle aiemman käyttäjän kirjoittajahenkilöllisyys, " +"toimitustoimeksiannot jne. siirretään." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Rooliin lisäämisen synkronointi lisää kaikki määrätyn julkaisijan määrätyssä " +"roolissa olevat käyttäjät tämän julkaisijan sivuston vastaavaan rooliin. " +"Tämä toiminto mahdollistaa sen, että samankaltaisten käyttäjien joukko " +"(esim. arvioijat) voidaan synkronoida julkaisijoiden välillä." + +msgid "manager.people.confirmDisable" +msgstr "" +"Estä tämä käyttäjä? Tämä estää käyttäjän kirjautumisen järjestelmään.\n" +"\n" +"Voit halutessasi kertoa käyttäjälle syyn siihen, miksi hänen käyttäjätilinsä " +"on poistettu käytöstä." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Sinulla ei ole hallinnollisia oikeuksia tähän käyttäjään. Syynä tähän voi " +"olla:\n" +"
        \n" +"\t\t\t
      • Käyttäjä on sivuston ylläpitäjä
      • \n" +"\t\t\t
      • Käyttäjä on aktiivisena julkaisijan sivustolla, joita sinä et " +"hallinnoi
      • \n" +"\t\t
      \n" +"Tämän tehtävän voi suorittaa vain sivuston ylläpitäjä.\n" +"\t" + +msgid "manager.system" +msgstr "Järjestelmäasetukset" + +msgid "manager.system.archiving" +msgstr "Arkistointi" + +msgid "manager.system.reviewForms" +msgstr "Arviointilomakkeet" + +msgid "manager.system.readingTools" +msgstr "Lukutyökalut" + +msgid "manager.system.payments" +msgstr "Maksut" + +msgid "user.authorization.pluginLevel" +msgstr "Sinulla ei ole riittäviä oikeuksia tämän lisäosan hallinnointiin." + +msgid "manager.pressManagement" +msgstr "Julkaisijan sivuston hallinnointi" + +msgid "manager.setup" +msgstr "Asetukset" + +msgid "manager.setup.aboutItemContent" +msgstr "Sisältö" + +msgid "manager.setup.addAboutItem" +msgstr "Lisää Tietoa-kohta" + +msgid "manager.setup.addChecklistItem" +msgstr "Lisää tarkistuslistan kohta" + +msgid "manager.setup.addItem" +msgstr "Lisää kohta" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Lisää kohta näkyviin Tietoa julkaisijasta -sivulle" + +msgid "manager.setup.addNavItem" +msgstr "Lisää kohta" + +msgid "manager.setup.addSponsor" +msgstr "Lisää tukiorganisaatio" + +msgid "manager.setup.announcements" +msgstr "Ilmoitukset" + +msgid "manager.setup.announcements.success" +msgstr "Ilmoitusasetukset päivitetty." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Ilmoituksia julkaisemalla lukijoille voidaan kertoa julkaisijan uutisista ja " +"tapahtumista. Julkaistut ilmoitukset näkyvät Ilmoitukset-sivulla." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Lisätietoja" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Kirjoita mahdolliset lisätiedot, jotka haluat esittää lukijoille Ilmoitukset-" +"sivulla." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Näkyy Tietoa julkaisijasta -sivulla) " + +msgid "manager.setup.contextAbout" +msgstr "Tietoa julkaisijasta" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Kerro sellaisia lisätietoja, jotka voivat kiinnostaa lukijoita, kirjoittajia " +"tai arvioijia. Esimerkiksi avoimen julkaisemisen linjaukset, tarkoitus ja " +"toimintaperiaatteet, tukijat ja julkaisijan historia." + +msgid "manager.setup.contextSummary" +msgstr "Julkaisijan yhteenveto" + +msgid "manager.setup.copyediting" +msgstr "Tekniset toimittajat" + +msgid "manager.setup.copyeditInstructions" +msgstr "Teknisen toimittamisen ohjeet" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Teknisen toimittamisen ohjeet tulevat teknisten toimittajien, kirjoittajien " +"ja sarjojen toimittajien saataville käsikirjoituksen toimittamisvaiheessa. " +"Alla HTML-muotoiset oletusohjeet, joita julkaisijan sivuston hallinnoija voi " +"muokata tai korvata missä tahansa vaiheessa (HTML-muodossa tai pelkkänä " +"tekstinä)." + +msgid "manager.setup.copyrightNotice" +msgstr "Tekijänoikeushuomautus" + +msgid "manager.setup.coverage" +msgstr "Kattavuus" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Maksimikorkeus" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Maksimileveys" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Tätä kokoa suuremmat kuvat pienennetään tähän kokoon, mutta kokoa pienempiä " +"kuvia ei suurenneta." + +msgid "manager.setup.customizingTheLook" +msgstr "Vaihe 5. Ulkoasun ja yleisilmeen mukauttaminen" + +msgid "manager.setup.customTags" +msgstr "Mukautetut tagit" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Mukautetut HTML-muotoiset ylätunnisteen tagit, jotka sijoitetaan jokaisen " +"sivun ylätunnisteeseen (esim. meta-tagit)." + +msgid "manager.setup.details" +msgstr "Tiedot" + +msgid "manager.setup.details.description" +msgstr "Julkaisijan nimi, yhteystiedot, tukijat ja hakukoneet." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Julkaisijan sivuston hallinnoija rekisteröi kaikki käyttäjätilit. " +"Toimittajat tai sarjan toimittajat voivat rekisteröidä käyttäjätilejä " +"arvioijille." + +msgid "manager.setup.discipline" +msgstr "Akateeminen tieteenala ja alatieteet" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Hyödyllinen, kun julkaisija ylittää tieteenalojen väliset rajat ja/tai kun " +"tekijät lähettävät monitieteellisiä kohteita." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(Esim. historia; koulutus; sosiologia; psykologia; kulttuurintutkimus; laki)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Anna esimerkkejä tähän julkaisijaan liittyvistä olennaisista akateemisista " +"tieteenaloista" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Lisää uusimman kirjan sisällysluettelo (jos saatavilla)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Etusivun sisältö" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Näytä esittelyssä olevat kirjat etusivulla" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Esittelyssä olevat teokset" + +msgid "manager.setup.displayInSpotlight" +msgstr "Näytä kirjat nostoissa etusivulla" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Nosto" + +msgid "manager.setup.displayNewReleases" +msgstr "Näytä uutuudet etusivulla" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Uutuudet" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Salli digitaalisten objektitunnisteiden (DOI) määrittäminen tämän " +"julkaisijan sisällöille." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Valitse, minkä tyyppisille kohteille annetaan DOI-tunnus. Useimmat " +"julkaisijat antavat DOI-tunnukset teoksille ja luvuille, mutta voit " +"halutessasi antaa DOI-tunnukset kaikille julkaistaville kohteille." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Käytä oletusrakennetta.
      %p.%m teoksille
      %p.%m.c%c luvuille
      %p.%m.%f julkaisumuodoille
      %p.%m.%f.%s tiedostoille." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "Kun teknisen toimittamisen työvaiheeseen on päästy" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Formaatti / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Toimittajan päätös" + +msgid "manager.setup.emailBounceAddress" +msgstr "Palautusosoite" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Kaikki sähköpostit, jotka eivät mene perille johtavat tähän osoitteeseen " +"lähetettävään virheilmoitukseen." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Aktivoidakseen tämän valinnan sivuston ylläpitäjän täytyy ottaa käyttöön " +"allow_envelope_sender -valinta OMP:n määritystiedostossa. " +"Palvelimen lisämäärityksiä saatetaan edellyttää tämän toiminnon tukemiseksi, " +"kuten OMP:n käyttöohjeissa mainitaan." + +msgid "manager.setup.emails" +msgstr "Sähköpostitunnistautuminen" + +msgid "manager.setup.emailSignature" +msgstr "Allekirjoitus" + +msgid "manager.setup.emailSignature.description" +msgstr "" +"Valmiisiin sähköposteihin, jotka järjestelmä lähettää automaattisesti " +"julkaisijan puolesta, lisätään seuraava allekirjoitus." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Ota ilmoitukset käyttöön" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Ilmoituksia julkaisemalla, lukijoille voidaan kertoa uutisista ja " +"tapahtumista. Julkaistut ilmoitukset näkyvät Ilmoitukset-sivulla." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Näytä kotisivulla" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Montako ilmoitusta näytetään kotisivulla? Jätä tyhjäksi jos et halu näyttää " +"yhtään." + +msgid "manager.setup.enablePressInstructions" +msgstr "Näytä tämä julkaisija julkisesti sivustolla" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Mukautettuja tunnisteita käytetään julkaistujen kohteiden identifioimiseen." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Mukautettuja tunnisteita käytetään julkaistujen kohteiden julkaistavien " +"tiedostojen (esim. HTML- tai PDF-tiedostot) identifioimiseen." + +msgid "manager.setup.enableUserRegistration" +msgstr "Vierailijat voivat rekisteröidä käyttäjätilin julkaisijan sivustolle." + +msgid "manager.setup.focusAndScope" +msgstr "Julkaisijan tarkoitus ja toimintaperiaatteet" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Kuvaile kirjoittajille, lukijoille ja kirjastonhoitajille millaisia kirjoja " +"ja muita kohteita julkaisija julkaisee." + +msgid "manager.setup.focusScope" +msgstr "Tarkoitus ja toimintaperiaatteet" + +msgid "manager.setup.focusScopeDescription" +msgstr "HTML-MUOTOINEN ESIMERKKITEKSTI" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Kirjoittajille töiden indeksointia varten" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP noudattaa Open Archives Initiativen protokollaa metatietojen haravoinnista, " +"joka on nouseva standardi elektronisten tutkimusresurssien hyvin indeksoidun " +"saatavuuden tarjoamisessa maailmanlaajuisesti. Kirjoittajat käyttävät " +"samanlaista mallipohjaa antaessaan käsikirjoitustensa metatiedot. " +"Julkaisijan sivuston hallinnoijan tulee valita käytettävät " +"indeksointikategoriat ja avustaa kirjoittajia töidensä indeksoinnissa " +"tarjoamalla olennaisia esimerkkejä, ehdot puolipisteellä (esim. ehto1; " +"ehto2) erotellen. Merkinnät tulee esitellä esimerkkeinä \"esim.\" -" +"lyhennettä tai \"esimerkiksi\"-termiä käyttäen." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Ensisijainen sähköposti yhteydenottoja varten vaaditaan." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Ensisijainen yhteyshenkilö vaaditaan." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Arvioijien määrä käsikirjoitusta kohti vaaditaan." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Teknisen tuen sähköposti vaaditaan." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Teknisen tuen henkilö vaaditaan." + +msgid "manager.setup.generalInformation" +msgstr "Yleisiä tietoja" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Vaihe 1. Perustiedot" + +msgid "manager.setup.guidelines" +msgstr "Ohjeet" + +msgid "manager.setup.preparingWorkflow" +msgstr "Vaihe 3. Työnkulun valmisteleminen" + +msgid "manager.setup.identity" +msgstr "Julkaisijan sivuston tiedot" + +msgid "manager.setup.information" +msgstr "Tietoa" + +msgid "manager.setup.information.description" +msgstr "" +"Lyhyet kuvaukset julkaisijasta kirjastonhoitajille, mahdollisille " +"kirjoittajille ja lukijoille. Kuvaukset tulevat näkyville sivuston " +"sivupalkkiin, kun Tietoa-lohko on lisätty." + +msgid "manager.setup.information.forAuthors" +msgstr "Kirjoittajille" + +msgid "manager.setup.information.forLibrarians" +msgstr "Kirjastonhoitajille" + +msgid "manager.setup.information.forReaders" +msgstr "Lukijoille" + +msgid "manager.setup.information.success" +msgstr "Julkaisijan tietoja koskevat asetukset on päivitetty." + +msgid "manager.setup.institution" +msgstr "Instituutio" + +msgid "manager.setup.itemsPerPage" +msgstr "Kohteita per sivu" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Rajoita niiden kohteiden (käsikirjoitus, käyttäjä jne.) lukumäärä, jotka " +"näytetään yhdellä sivulla." + +msgid "manager.setup.keyInfo" +msgstr "Avaintiedot" + +msgid "manager.setup.keyInfo.description" +msgstr "Anna julkaisijan lyhyt kuvaus ja esittele toimituskunnan jäsenet." + +msgid "manager.setup.labelName" +msgstr "Selitteen nimi" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Taittajat" + +msgid "manager.setup.layoutInstructions" +msgstr "Taitto-ohjeet" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Julkaistavien kohteiden muotoilua varten voidaan tehdä taitto-ohjeet, jotka " +"voidaan syöttää alle joko HTML-muodossa tai pelkkänä tekstinä. Ne tulevat " +"taittajan ja osastotoimittajan saataville jokaisen käsikirjoituksen " +"toimittamissivulla. (Koska jokainen julkaisija saattaa käyttää eri " +"tiedostomuotoja, bibliografisia standardeja, tyylitiedostoja jne., " +"oletusohjeita ei anneta.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Taiton mallipohjat" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Jokaiselle julkaistavalle, mitä tahansa tiedostomuotoa (esim. pdf, doc jne.) " +"käyttävälle, standardimuodolle (esim. kirja, kirja-arvostelu jne.), voidaan " +"ladata mallipohja, joka näkyy Taitto-kohdassa. Mallipohjiin voi lisätä " +"huomautuksia, jotka määrittävät kirjasinlajin, koon, reunukset jne. ja " +"toimivat ohjeena taittajille ja oikolukijoille." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Mallipohjatiedosto" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Otsikko" + +msgid "manager.setup.lists" +msgstr "Listat" + +msgid "manager.setup.lists.success" +msgstr "Listauksia koskevat asetukset on päivitetty." + +msgid "manager.setup.look" +msgstr "Ulkoasu & Yleisilme" + +msgid "manager.setup.look.description" +msgstr "" +"Etusivun ylätunniste, sisältö, julkaisijan sivuston ylätunniste, " +"alatunniste, navigointipalkki ja tyylitiedosto." + +msgid "manager.setup.settings" +msgstr "Asetukset" + +msgid "manager.setup.management.description" +msgstr "" +"Käyttöoikeudet ja turvallisuus, aikataulutus, ilmoitukset, tekninen " +"toimittaminen, taitto ja oikoluku." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Toimituksellisten perusvaiheiden hallinnointi" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Hallinnoinnin ja julkaisemisen asetukset" + +msgid "manager.setup.managingThePress" +msgstr "Vaihe 4. Asetusten hallinnointi" + +msgid "manager.setup.masthead.success" +msgstr "Tunnuslaatikkoa koskevat asetukset on päivitetty." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Ei ladattua kuvatiedostoa." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Ei ladattua tyylitiedostoa." + +msgid "manager.setup.note" +msgstr "Huomautus" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Käyttäessäsi Ilmoita kirjoittajalle -sähköpostia, muista lisätä " +"vastaanottajaksi käsikirjoituksen lähettäneen käyttäjän lisäksi kaikki " +"kirjoittajat, kun kyseessä on käsikirjoitus, jolla on monta kirjoittajaa." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Käsikirjoitukselle valittu toimittaja tai osastotoimittaja hoitaa teknisen " +"toimittamisen." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Käsikirjoitukselle valittu toimittaja tai osastotoimittaja valmistelee " +"HTML-, PDF- ja muut tiedostot." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Käsikirjoitukselle valittu toimittaja tai osastotoimittaja tarkistaa " +"julkaistavat tiedostot." + +msgid "manager.setup.numPageLinks" +msgstr "Sivun linkit" + +msgid "manager.setup.numPageLinks.description" +msgstr "Rajoita listauksessa näkyvien sivulinkkien määrää." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Pääsy julkaisijan sisältöihin" + +msgid "manager.setup.onlineIssn" +msgstr "Verkkokirjan ISSN" + +msgid "manager.setup.policies" +msgstr "Toimintaperiaatteet" + +msgid "manager.setup.policies.description" +msgstr "" +"Julkaisijan tarkoitus, vertaisarviointi, osastot, yksityisyyden suoja, " +"turvallisuus ja lisätietoja kohteista." + +msgid "manager.setup.privacyStatement.success" +msgstr "Tietosuojaselostetta koskevat asetukset on päivitetty." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Tällä sivulla voidaan määrittää julkaisijan sivuston eri osien ulkoasu, " +"kuten ylä- ja alatunnisteiden osat, tyyli ja teema, sekä se, kuinka listattu " +"tieto esitetään käyttäjille." + +msgid "manager.setup.pressDescription" +msgstr "Julkaisija lyhyesti" + +msgid "manager.setup.pressDescription.description" +msgstr "Lyhyt kuvaus julkaisijasta." + +msgid "manager.setup.aboutPress" +msgstr "Tietoa julkaisijasta" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Sisällytä tähän mitä tahansa tietoa julkaisijasta, joka saattaa kiinnostaa " +"lukijoita, kirjoittajia ja arvioijia. Tällaisia tietoja voivat olla esim. " +"avoimen saatavuuden periaate, julkaisijan tarkoitus ja toimintaperiaatteet, " +"tekijänoikeushuomautus, tiedonanto tukemista koskien, julkaisijan historia " +"ja tietosuojaseloste." + +msgid "manager.setup.pressArchiving" +msgstr "Julkaisijan arkistointi" + +msgid "manager.setup.homepageContent" +msgstr "Julkaisijan etusivun sisältö" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Julkaisijan etusivu koostuu oletusarvoisesti siirtymälinkeistä. Muuta " +"sisältöä etusivulle voidaan liittää käyttämällä yhtä tai kaikkia seuraavista " +"vaihtoehdoista, jotka ilmestyvät esitetyssä järjestyksessä." + +msgid "manager.setup.pressHomepageContent" +msgstr "Julkaisijan etusivun sisältö" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Julkaisijan etusivu koostuu oletusarvoisesti siirtymälinkeistä. Muuta " +"sisältöä etusivulle voidaan liittää käyttämällä yhtä tai kaikkia seuraavista " +"vaihtoehdoista, jotka ilmestyvät esitetyssä järjestyksessä." + +msgid "manager.setup.contextInitials" +msgstr "Julkaisijan alkukirjaimet" + +msgid "manager.setup.selectCountry" +msgstr "Valitse julkaisijan kotimaa." + +msgid "manager.setup.layout" +msgstr "Julkaisijan sivuston taitto" + +msgid "manager.setup.pageHeader" +msgstr "Julkaisijan sivuston ylätunniste" + +msgid "manager.setup.pageHeaderDescription" +msgstr "" + +msgid "manager.setup.pressPolicies" +msgstr "Vaihe 2. Julkaisijan toimintaperiaatteet" + +msgid "manager.setup.pressSetup" +msgstr "Julkaisijan asetukset" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Julkaisijan asetukset on päivitetty." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Virheellinen tyylitiedoston muoto. Hyväksytty muoto on .css." + +msgid "manager.setup.pressTheme" +msgstr "Julkaisijan sivuston teema" + +msgid "manager.setup.pressThumbnail" +msgstr "Julkaisijan pikkukuva" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Pieni logo tai julkaisijaa edustava kuva, jota voidaan käyttää " +"julkaisijoiden listauksessa." + +msgid "manager.setup.contextTitle" +msgstr "Julkaisijan sivuston nimi" + +msgid "manager.setup.printIssn" +msgstr "Painetun kirjan ISSN" + +msgid "manager.setup.proofingInstructions" +msgstr "Oikolukuohjeet" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Oikoluvun ohjeet tulevat oikolukijoiden, kirjoittajien, taittajien ja " +"osastotoimittajien saataville käsikirjoituksen toimittamisvaiheessa. Alla " +"HTML-muotoiset oletusohjeet, joita Julkaisijan sivuston hallinnoija voi " +"muokata tai korvata missä tahansa vaiheessa (HTML-muodossa tai pelkkänä " +"tekstinä)." + +msgid "manager.setup.proofreading" +msgstr "Oikolukijat" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Anna ohjeet taittajille." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Nimekkeitä voidaan julkaista kokonaisuutena osana kirjaa, jolla on oma " +"sisällysluettelonsa. Vaihtoehtoisesti yksittäisiä nimekkeitä voidaan " +"julkaista heti niiden ollessa valmiita, lisäämällä ne uusimman niteen " +"sisällysluetteloon. Kerro lukijoille tämän julkaisijan käytännöstä asian " +"suhteen sekä oletetusta julkaisutiheydestä Tietoa julkaisijasta -sivulla." + +msgid "manager.setup.publisher" +msgstr "Julkaisija" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Julkaisijan sivustoa ylläpitävän organisaation nimi näkyy Tietoa " +"julkaisijasta -sivulla." + +msgid "manager.setup.referenceLinking" +msgstr "Lähdeviitteiden linkitys" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Taiton ohjeet lähdeviitteiden linkitykseen" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Käyttäjien tulee olla rekisteröityneitä ja sisäänkirjautuneita katsellakseen " +"avoimesti saatavilla olevaa sisältöä." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Käyttäjien tulee olla rekisteröityneitä ja sisäänkirjautuneita katsellakseen " +"julkaisijan sivustoa." + +msgid "manager.setup.reviewGuidelines" +msgstr "Ulkopuolista arviointia koskevat ohjeet" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Anna ulkopuolisille arvioijille kriteerit, joiden perusteella he arvioivat " +"soveltuuko käsikirjoitus julkaisijan julkaistavaksi. Ohjeet voivat sisältää " +"myös ohjeita vaikuttavan ja hyödyllisen arvion kirjoittamiseksi. Arvioijilla " +"on mahdollisuus antaa sekä kirjoittajalle että toimittajalle tarkoitettuja " +"kommentteja ja erillisiä, vain toimittajalle tarkoitettuja kommentteja." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Sisäistä arviointia koskevat ohjeet" + +msgid "manager.setup.reviewOptions" +msgstr "Arviointiin liittyvät valinnat" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Automaattiset sähköpostimuistutukset" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Aktivoidakseen nämä valinnat sivuston ylläpitäjän täytyy ottaa käyttöön " +"scheduled_tasks -valinta OMP:n määritystiedostossa. Palvelimen " +"lisämäärityksiä saatetaan edellyttää tämän toiminnon tukemiseksi (joka ei " +"välttämättä ole mahdollista kaikilla palvelimilla), kuten OMP:n " +"käyttöohjeissa mainitaan." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Toimittajat arvostelevat arvioijat viisiportaisella laatuasteikolla jokaisen " +"arviointitapahtuman jälkeen." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "" +"Arvioijilla on pääsy käsikirjoitustiedostoon vasta suostuttuaan arvioimaan " +"sen" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Arvioijilla on pääsy käsikirjoituksen tiedostoihin vasta pyynnön " +"hyväksymisen jälkeen." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Arvioijan pääsy käsikirjoitukseen" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "" +"Ota käyttöön automaattisesti arvioijan sisäänkirjaavat linkit " +"arviointipyynnöissä" + +#, fuzzy +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Huom! Arvioijille lähetettävässä sähköpostikutsussa on " +"erityinen URL-osoite, jonka kautta arvioijat pääsevät suoraan " +"käsikirjoituksen arviointisivulle (muille sivuille pääsy vaatii " +"sisäänkirjautumisen). Tietoturvasyistä tämän valinnan kohdalla toimittajat " +"eivät voi muokata sähköpostiosoitteita eivätkä lisätä kopioita tai " +"piilokopioita ennen viestin lähettämistä." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" +"Lisää automaattisen kirjautumisen mahdollistava linkki arvioijille lähtevään " +"kutsuun." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Arvioijien arvostelu" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Arvioijan muistutukset" + +msgid "manager.setup.reviewPolicy" +msgstr "Arviointiperiaatteet" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Anna lyhyt (50-300 merkkiä) kuvaus, jonka hakukoneet voivat näyttää " +"julkaisijan sivustoa koskevissa hakutuloksissaan." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Hakukoneindeksointi" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Auta Googlea ja muita hakukoneita löytämään sivustosi. Suosittelemme sinua " +"lähettämään sivustokarttasi " +"hakukoneille tiedoksi." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Hakukoneindeksointia koskevat asetukset on päivitetty." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Osastot ja osastotoimittajat" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Jos osastoja ei ole lisätty, kohteet lähetetään oletusarvoisesti Kirjat-" +"osastoon.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Luodaksesi tai muokataksesi julkaisijan sarjoja mene Sarjan hallinnointi -" +"kohtaan.

      Julkaisijalle kohteita lähettävät kirjoittajat " +"nimittävät..." + +msgid "manager.setup.securitySettings" +msgstr "Käyttöoikeus- ja turvallisuusasetukset" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Muita turvallisuuteen ja käyttöoikeuksiin liittyviä valintoja voidaan " +"määrittää Käyttöoikeudet ja turvallisuus -sivulla." + +msgid "manager.setup.selectEditorDescription" +msgstr "Toimittaja, joka on mukana toimitusprosessin alusta loppuun asti." + +msgid "manager.setup.selectSectionDescription" +msgstr "Julkaisijan sarja, johon kohdetta harkitaan." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Näytä aina julkaistavien tiedostojen linkit ja ilmaise rajoitettu saatavuus." + +msgid "manager.setup.siteAccess.view" +msgstr "Pääsy verkkosivulle" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Näytä julkaistut teokset" + +msgid "manager.setup.stepsToPressSite" +msgstr "Julkaisijan verkkosivuston luonnin viisi vaihetta" + +msgid "manager.setup.subjectExamples" +msgstr "(Esim. fotosynteesi; mustat aukot; neliväriteoreema; Bayesin teoreema)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Avainsanat" + +msgid "manager.setup.subjectProvideExamples" +msgstr "Anna esimerkkejä avainsanoista tai aiheista kirjoittajien avuksi" + +msgid "manager.setup.submissionGuidelines" +msgstr "Käsikirjoituksen lähettämisen ohjeet" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Tarkistuslistan kohta vaaditaan." + +msgid "manager.setup.workflow" +msgstr "Työnkulku" + +msgid "manager.setup.submissions.description" +msgstr "" +"Ohjeet kirjoittajille, tekijänoikeudet ja indeksointi (sis. rekisteröinnin)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(Esim. historiatutkimus; kvasikokeellinen; kirjallisuusanalyysi; kysely/" +"haastattelu)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Tyyppi (menetelmä/lähestymistapa)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Anna esimerkkejä tälle alalle oleellisista tutkimustyypeistä ja -" +"menetelmistä sekä lähestymistavoista" + +msgid "manager.setup.useCopyeditors" +msgstr "Jokaiselle käsikirjoitukselle valitaan tekninen toimittaja." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Julkaisija käyttää toimitus-/arviointineuvostoa." + +msgid "manager.setup.useImageTitle" +msgstr "Nimekkeen kuva" + +msgid "manager.setup.useStyleSheet" +msgstr "Julkaisijan tyylitiedosto" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Sähköisen julkaisun HTML-, PDF- ja muiden tiedostojen valmisteluun valitaan " +"taittaja." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Julkaistavien tiedostojen tarkistamiseen (yhdessä kirjoittajien kanssa) " +"ennen julkaisua valitaan oikolukija." + +msgid "manager.setup.userRegistration" +msgstr "Käyttäjärekisteröinti" + +msgid "manager.setup.useTextTitle" +msgstr "Nimekkeen teksti" + +msgid "manager.setup.volumePerYear" +msgstr "Nidettä vuodessa" + +msgid "manager.setup.publicationFormat.code" +msgstr "Muoto" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Muoto on valittava." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Tälle muodolle on annettava nimi." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Onko tämä fyysinen (ei digitaalinen) muoto?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Tätä julkaisumuotoa ei voi poistaa, koska se on tällä hetkellä yhden kirjan " +"käytössä." + +msgid "manager.setup.newPublicationFormat" +msgstr "Uusi julkaisumuoto" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Luo uusi julkaisumuoto täyttämällä alla oleva lomake ja klikkaamalla ”Luo”-" +"painiketta." + +msgid "manager.setup.genresDescription" +msgstr "" +"Näitä lajityyppejä käytetään tiedostojen nimeämistarkoituksiin ja ne " +"näytetään vetovalikossa tiedostojen lataamisen yhteydessä. ##-merkityt " +"lajityypit mahdollistavat sen, että käyttäjät voivat yhdistää tiedoston joko " +"koko kirjaan 99Z tai vain tiettyyn lukuun numerolla (esim. 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Julkaisija ei ota vastaan käsikirjoituksia tällä hetkellä. Käy työnkulun " +"asetuksissa sallimassa käsikirjoitukset." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Estä käyttäjiä lähettämästä uusia teoksia julkaisijalle. Käsikirjoitukset " +"yksittäisiin julkaisijan sarjoihin voidaan estää julkaisijan sarjojen asetussivulla." + +msgid "manager.setup.genres" +msgstr "Lajityypit" + +msgid "manager.setup.newGenre" +msgstr "Uusi kirjan lajityyppi" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Luo uusi lajityyppi täyttämällä alla oleva lomake ja klikkaamalla ”Luo”-" +"painiketta." + +msgid "manager.setup.deleteSelected" +msgstr "Poista valitut" + +msgid "manager.setup.restoreDefaults" +msgstr "Palauta oletusasetukset" + +msgid "manager.setup.prospectus" +msgstr "Esiteopas" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Esiteopas on julkaisijan laatima asiakirja. Sen tarkoitus on auttaa " +"kirjoittajaa kuvailemaan lähetettyjä materiaaleja tavalla, joka mahdollistaa " +"sen, että julkaisija voi määritellä käsikirjoituksen arvon. Esite voi " +"sisältää paljon kohtia aina markkinointipotentiaalista teoreettiseen arvoon. " +"Julkaisijan tulisi luoda sellainen esiteopas, joka täydentää sen " +"julkaisutavoitteita." + +msgid "manager.setup.submitToCategories" +msgstr "Salli käsikirjoitusten lähetys kategoriaan" + +msgid "manager.setup.submitToSeries" +msgstr "Salli käsikirjoitusten lähetys sarjaan" + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN (International Standard Serial Number) on kahdeksannumeroinen tunnus, " +"joka toimii aikakausjulkaisujen, mukaan lukien sähköiset kausijulkaisut, " +"tunnuksena. Tunnuksen saa Suomen ISSN-keskuksesta." + +msgid "manager.setup.currentFormats" +msgstr "Nykyiset muodot" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Kategoriat ja sarjat" + +msgid "manager.setup.categories.description" +msgstr "" +"Voit luoda luettelon kategorioista helpottaaksesi julkaisuidesi järjestelyä. " +"Kategoriat ovat aihealueittaisia (esim. taloustiede; kirjallisuus; runous " +"jne.) kirjaryhmittymiä. Pääkategorioihin voidaan sisällyttää toisia " +"kategorioita, esimerkiksi Taloustiede-pääkategoria voi sisältää erilliset " +"Mikro- ja Makrotaloustieteiden kategoriat. Kävijät voivat hakea ja selailla " +"sisältöä kategorioiden mukaan." + +msgid "manager.setup.series.description" +msgstr "" +"Voit luoda sarjoja helpottaaksesi julkaisuidesi järjestelyä. Sarja edustaa " +"erityistä kirjojen joukkoa, jotka käsittelevät jonkun, yleensä yhden tai " +"useamman tiedekunnan jäsenen, ehdottamaa ja valvomaa teemaa tai aiheita. " +"Kävijät voivat hakea ja selailla sisältöä sarjojen mukaan." + +msgid "manager.setup.reviewForms" +msgstr "Arviointilomakkeet" + +msgid "manager.setup.roleType" +msgstr "Roolityyppi" + +msgid "manager.setup.authorRoles" +msgstr "Kirjoittajaroolit" + +msgid "manager.setup.managerialRoles" +msgstr "Hallinnon roolit" + +msgid "manager.setup.availableRoles" +msgstr "Käytettävissä olevat roolit" + +msgid "manager.setup.currentRoles" +msgstr "Nykyiset roolit" + +msgid "manager.setup.internalReviewRoles" +msgstr "Sisäisen arvioinnin roolit" + +msgid "manager.setup.masthead" +msgstr "Tunnuslaatikko" + +msgid "manager.setup.editorialTeam" +msgstr "Toimituskunta" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Lista toimittajista, toimitusjohtajista ja muista julkaisijaan liittyvistä " +"henkilöistä." + +msgid "manager.setup.files" +msgstr "Tiedostot" + +msgid "manager.setup.productionTemplates" +msgstr "Tuotannon mallipohjat" + +msgid "manager.files.note" +msgstr "" +"Huom! Tiedostoselain (Files Browser) on erikoisominaisuus, jonka avulla " +"julkaisijaan liittyviä tiedostoja ja hakemistoja voidaan katsoa ja käsitellä " +"suoraan." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

      Ehdotetut Creative Commons-tekijänoikeushuomautukset

      \n" +"

      Ehdotettu käytäntö julkaisijoille, jotka tarjoavat avoimen saatavuuden (" +"Open Access)

      \n" +"Tämän julkaisijan kirjoittajat hyväksyvät seuraavat ehdot:\n" +"
        \n" +"\t
      1. Kirjoittajat säilyttävät tekijänoikeuden ja myöntävät julkaisulle " +"oikeuden julkaista työn ensimmäisenä. Samanaikaisesti työ lisensoidaan Creative Commons Attribution License -lisenssillä, joka sallii muiden " +"jakaa työtä vain, jos työn alkuperäinen tekijä sekä sen ensijulkaisu tämän " +"julkaisijan kirjassa mainitaan.
      2. \n" +"\t
      3. Kirjoittajat voivat tehdä erillisiä, muita sopimuksia työn tässä " +"julkaisussa julkaistun version levittämisestä ilman yksityisoikeutta (esim. " +"lähettää sen julkaisuarkistoon tai julkaista sen muualla) vain, jos työn " +"ensijulkaisu tämän julkaisijan kirjassa mainitaan.
      4. \n" +"\t
      5. Kirjoittajilla on lupa lähettää työnsä verkkoon (esim. " +"julkaisuarkistoihin tai omille verkkosivuilleen) sekä ennen käsikirjoituksen " +"lähetysprosessia että sen aikana. Kirjoittajia myös kannustetaan toimimaan " +"näin, koska se voi johtaa hyödyllisiin kanssakäymisiin sekä siihen, että " +"julkaistuun työhön viitataan jo aikaisessa vaiheessa ja enemmän. (Lisää avoimen saatavuuden vaikutuksesta).
      6. \n" +"
      \n" +"\n" +"

      Ehdotettu käytäntö julkaisijoille, jotka tarjoavat viiveellisen avoimen " +"saatavuuden (Delayed Open Access)

      \n" +"Tämän julkaisijan kirjoittajat hyväksyvät seuraavat ehdot:\n" +"
        \n" +"\t
      1. Kirjoittajat säilyttävät tekijänoikeuden ja myöntävät julkaisijalle " +"oikeuden julkaista työn ensimmäisenä. [MÄÄRITÄ AJANJAKSO] julkaisemisen " +"jälkeen työ samanaikaisesti lisensoidaan Creative Commons Attribution " +"License-lisenssillä, joka sallii muiden jakaa työtä vain, jos työn " +"alkuperäinen tekijä sekä sen ensijulkaisu tämän julkaisijan kirjassa " +"mainitaan.
      2. \n" +"\t
      3. Kirjoittajat voivat tehdä erillisiä, muita sopimuksia työn tässä " +"julkaisussa julkaistun versio levittämisestä ilman yksityisoikeutta (esim. " +"lähettää sen julkaisuarkistoon tai julkaista sen muualla) vain, jos työn " +"ensijulkaisu tämän julkaisijan kirjassa mainitaan.
      4. \n" +"\t
      5. Kirjoittajilla on lupa lähettää työnsä verkkoon (esim. " +"julkaisuarkistoihin tai omille verkkosivuilleen) sekä ennen käsikirjoituksen " +"lähetysprosessia että sen aikana. Kirjoittajia myös kannustetaan toimimaan " +"näin, koska se voi johtaa hyödyllisiin kanssakäymisiin sekä siihen, että " +"julkaistuun työhön viitataan jo aikaisemmassa vaiheessa ja enemmän. (Lisää " +"avoimen saatavuuden " +"vaikutuksesta).
      6. \n" +"
      " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Vaiheet: Käsikirjoitusjono > Käsikirjoituksen arviointi > " +"Käsikirjoituksen toimittaminen > Sisällysluettelo.

      \n" +"Valitse malli näiden toimitusprosessin kohtien käsittelyä varten. " +"(Valitaksesi hallinnoivan toimittajan ja sarjan toimittajat mene Toimittajat-" +"kohtaan Julkaisijan hallinnointi -sivulla.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

      Kun lukijoiden halutaan löytävän verkkoversiot töistä, joihin kirjoittaja " +"viittaa, seuraavat vaihtoehdot ovat käytettävissä.

      \n" +"\n" +"
        \n" +"\t
      1. Lisää lukutyökalu

        Julkaisijan sivuston hallinnoija " +"voi lisätä “Etsi lähdeviitteitä” julkaistujen kohteiden lukutyökaluihin, " +"mahdollistaen sen, että lukijat voivat liittää lähdeviitteen nimekkeen ja " +"hakea viitattua työtä etukäteen valituista tieteellisistä tietokannoista.

      2. \n" +"\t
      3. Upota linkit lähdeviitteisiin

        Taittaja voi lisätä " +"linkin verkosta löytyviin lähdeviitteisiin seuraamalla seuraavia ohjeita " +"(joita voidaan muokata).

      4. \n" +"
      " + +msgid "manager.publication.library" +msgstr "Julkaisijan kirjasto" + +msgid "manager.setup.resetPermissions" +msgstr "Palauta kirjojen käyttöoikeudet" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Haluatko varmasti palauttaa oletusarvoisiksi käyttöoikeustiedot, jotka on jo " +"liitetty kirjoihin?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Tekijänoikeusilmauksen ja -suojan tiedot liitetään pysyvästi julkaistuun " +"sisältöön. Tämä varmistaa sen, että kyseiset tiedot eivät muutu, vaikka " +"julkaisija muuttaisi toimintaperiaatteitaan uusia käsikirjoituksia koskien. " +"Palauttaaksesi tallennetut käyttöoikeustiedot, jotka on jo liitetty " +"julkaistuun sisältöön, käytä alla olevaa painiketta." + +msgid "manager.setup.resetPermissions.success" +msgstr "Teosten lupatiedot tyhjennettiin onnistuneesti." + +msgid "grid.genres.title.short" +msgstr "Osat" + +msgid "grid.genres.title" +msgstr "Kirjan osat" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Lähetä kopio ensisijaiselle yhteyshenkilölle, joka on mainittu julkaisijan " +"asetuksissa." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Sarjan polku saa sisältää vain kirjaimia ja numeroita." + +msgid "grid.series.pathExists" +msgstr "Sarjan polku on jo olemassa. Anna yksilöllinen polku." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Valitse sarja" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Valitse sarja, jonka haluat linkittää tähän valikon kohtaan." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Valitse kategoria" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "Valitse kategoria, jonka haluat linkittää tähän valikon kohtaan." + +msgid "grid.series.urlWillBe" +msgstr "Sarjan URL-osoitteeksi tulee: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "Julkaisijan tilastot" + +msgid "stats.context.tooltip.text" +msgstr "Julkaisijan sivuston etusivun ja luettelosivun kävijöiden määrä." + +msgid "stats.context.tooltip.label" +msgstr "Tietoa julkaisijan tilastoista" + +msgid "stats.context.downloadReport.description" +msgstr "" +"Lataa CSV/Excel-taulukko tämän julkaisijan käyttötilastoista, jotka " +"vastaavat seuraavia valintoja." + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "Julkaisijan sivuston etusivun ja luettelosivun katselukertojen määrä." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Lataa julkaisija" + +msgid "stats.publications.downloadReport.description" +msgstr "" +"Lataa CSV/Excel-taulukko, jossa on käyttötilastoja seuraaviin valintoihin " +"sopivista teoksista." + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Lataa teokset" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" +"Kunkin teoksen abstraktien katselukertojen ja tiedostojen latausten määrä." + +msgid "stats.publicationStats" +msgstr "Kirjatilastot" + +msgid "stats.publications.details" +msgstr "Kirjan tiedot" + +msgid "stats.publications.none" +msgstr "Annetuilla hakumääreillä ei löytynyt kirjoja." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Tiivistelmien katselukerrat ajankohdan mukaan" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Kokotekstien latausmäärät ajankohdan mukaan" + +msgid "stats.publications.countOfTotal" +msgstr "{$count}/{$total} kirjasta" + +msgid "stats.publications.abstracts" +msgstr "Luettelomerkinnät" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Yhtään kohdetta ei ole valittu." + +msgid "plugins.importexport.common.error.validation" +msgstr "Valittuja kohteita ei voitu muuntaa." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Virheellinen XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Vie käsikirjoituksia" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Lähetä sähköpostilla tieto uusista käsikirjoituksista julkaisijan " +"pääasialliselle yhteyshenkilölle." + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"Julkaisijalle ei ole annettu pääasiallista yhteyshenkilöä. Voit antaa " +"pääasiallisen yhteyshenkilön tiedot sivuston asetuksissa." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Annettuja kohteita ei löytynyt." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "Annettua käyttäjää, \"{$userName}\", ei löydy." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Julkaisumuotoja ei voitu lukea" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Lukuja ei voitu lukea" + +msgid "emailTemplate.variable.context.contextName" +msgstr "Julkaisijan nimi" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "URL-osoite julkaisijan kotisivulle" + +msgid "emailTemplate.variable.context.contactName" +msgstr "Julkaisijan ensisijaisen yhteyshenkilön nimi" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "Julkaisijan allekirjoitus automaattisia sähköpostiviestejä varten" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "Julkaisijan ensisijaisen yhteyshenkilön sähköpostiosoite" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "Maksutyypin nimi" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Maksun summa" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "Maksusumman valuutta, esimerkiksi EUR" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Verkkosivuston nimi, jos hallinnoidaan useampaa kuin yhtä julkaisijaa" + +msgid "mailable.validateEmailContext.name" +msgstr "Vahvista sähköpostiosoite (julkaisijan sivustolle rekisteröityminen)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Tämä sähköposti lähetetään automaattisesti uudelle käyttäjälle, kun hän " +"rekisteröityy julkaisijan sivustolle, kun asetukset edellyttävät " +"sähköpostiosoitteen vahvistamista." + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "DOI-tunnukset" + +msgid "doi.description" +msgstr "" +"Tämä lisäosa mahdollistaa DOI-tunnisteiden (Digital Object Identifier) " +"määrittämisen OMP-järjestelmässä oleville kirjoille, luvuille ja " +"julkaisumuodoille." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Määritä DOI-lisäosa, jotta voit hallinnoida ja käyttää DOI-tunnisteita:" + +msgid "doi.manager.settings.explainDois" +msgstr "Valitse objektit, joille DOI-tunnisteet määritetään:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Kirjat" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Luvut" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Julkaisumuodot" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Tiedostot" + +msgid "doi.manager.settings.doiPrefix" +msgstr "DOI-prefiksi" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "DOI-prefiksi on pakollinen, ja sen on oltava muodossa 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Käytä alla annettua rakennetta luodaksesi DOI-suffikseja. Käytä %p " +"julkaisijan alkukirjaimille, %m kirjan tunnisteelle, %c luvun tunnisteelle, " +"%f julkaisumuodon tunnisteelle, %s tiedoston tunnisteelle ja %x " +"\"mukautetulle tunnisteelle\". " + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Esimerkiksi julkaisija%ppub%r voisi luoda DOI-tunnisteen 10.1234/" +"julkaisijaTHYpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "kirjoille" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "luvuille" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "julkaisumuodoille" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "tiedostoille" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Anna DOI-suffiksin rakenne kirjoille." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Anna DOI-suffiksin rakenne luvuille." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Anna DOI-suffiksin rakenne julkaisumuodoille." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Anna DOI-suffiksin rakenne tiedostoille." + +msgid "doi.manager.settings.doiReassign" +msgstr "Määritä DOI-tunnisteet uudelleen" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Jos muutat DOI-määritystäsi, se ei vaikuta aiemmin määritettyihin DOI-" +"tunnisteisiin. Kun DOI-määritys on tallennettu, poista kaikki olemassa " +"olevat DOI-tunnisteet tämän painikkeen avulla, jotta uudet asetukset alkavat " +"päteä myös olemassa oleviin objekteihin." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Haluatko varmasti poistaa kaikki olemassa olevat DOI-tunnisteet?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "DOI-tunnuksen alun pitää olla {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Osoita" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "kirja" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "luku" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "julkaisumuoto" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "tiedosto" + +msgid "doi.editor.customSuffixMissing" +msgstr "DOI-tunnistetta ei voida määrittää, koska mukautettu suffiksi puuttuu." + +msgid "doi.editor.missingParts" +msgstr "" +"Et voi luoda DOI-tunnusta, koska jokin tunnuksen loppuosan vaatimista " +"muuttujista puuttuu." + +msgid "doi.editor.patternNotResolved" +msgstr "" +"DOI-tunnistetta ei voida määrittää, koska se sisältää resolvoitumattoman " +"rakenteen." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Näet nyt DOI-tunnisteen esikatselussa. Rastita valintaruutu ja tallenna " +"muoto määrittääksesi DOI:n." + +msgid "doi.editor.assigned" +msgstr "DOI-tunniste on määritetty objektille {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Annettu DOI-suffiksi on jo toisen julkaistun kohteen käytössä. Anna " +"jokaiselle kohteelle uniikki DOI-suffiksi." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Poista DOI-tunniste" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Haluatko varmasti poistaa olemassa olevan DOI-tunnisteen?" + +msgid "doi.editor.assignDoi" +msgstr "Määritä DOI-tunniste {$pubId} tälle objektille {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI-tunnistetta ei voida määrittää, koska mukautettu suffiksi puuttuu." + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"DOI-tunnistetta {$pubId} ei voida määrittää, koska se sisältää " +"resolvoitumattoman rakenteen." + +msgid "doi.editor.assignDoi.assigned" +msgstr "DOI-tunniste {$pubId} on määritetty." + +msgid "doi.editor.missingPrefix" +msgstr "DOI-tunnuksen alun pitää olla {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "Tämän julkaistavan version DOI tulee olemaan {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "Tälle julkaistulle versiolle ei ole annettu DOI-tunnusta." + +msgid "doi.editor.preview.chapters" +msgstr "Luku: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Julkaisumuoto: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Tiedosto: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Kohde" + +msgid "doi.manager.submissionDois" +msgstr "Teosten DOI-tunnukset" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Tässä sähköpostiviestissä ilmoitetaan kirjoittajalle, että hänen " +"käsikirjoituksensa lähetetään sisäiseen arviointiin." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Tässä sähköpostiviestissä ilmoitetaan kirjoittajalle, että hänen " +"käsikirjoituksensa hylätään ennen arviointivaihetta, koska se ei täytä " +"julkaisijan vaatimuksia." + +msgid "manager.institutions.noContext" +msgstr "Tämän instituution julkaisijaa ei löytynyt." + +msgid "manager.manageEmails.description" +msgstr "Muokkaa tämän julkaisijan sähköpostiviestejä." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Lähetetty sisäiseen arviointiin" + +msgid "mailable.indexRequest.name" +msgstr "Indeksointia pyydetään" + +msgid "mailable.indexComplete.name" +msgstr "Indeksointi valmis" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Uusi versio luotu" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" +"Tämä sähköpostiviesti ilmoittaa osoitetuille toimittajille automaattisesti, " +"kun käsikirjoituksen uusi julkaistava versio luodaan." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"Tämä sähköposti lähetetään julkaisijan sivuston hallinnoijille, kun uusi " +"käsikirjoitus on lähetetty eikä toimittajia ole osoitettu." + +#~ msgid "manager.settings.publisherInformation" +#~ msgstr "" +#~ "Nämä kentät vaaditaan kelvollisten ONIX-metatietojen luomiseen. Täytä kaikki " +#~ "kentät, jos haluat julkaista ONIX-metatietoja." + +#~ msgid "manager.settings.publisherCodeType.tip" +#~ msgstr "" +#~ "Jos sinulla on julkaisijan nimikoodi, täytä se alla. Se sisällytetään " +#~ "luotuihin metatietoihin. Kenttä on pakollinen, jos luot ONIX-metatietoja " +#~ "julkaisuillesi." + +#~ msgid "manager.users" +#~ msgstr "Käyttäjien hallinnointi" + +#~ msgid "manager.setup.announcementsIntroductionDescription" +#~ msgstr "" +#~ "Syötä mitä tahansa lisätietoja, joiden halutaan näkyvän Ilmoitukset-sivun " +#~ "lukijoille." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "DOI-prefiksi" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "DOI (Digital Object Identifier) -prefiksi on CrossRef:in myöntämä ja se on " +#~ "muodossa 10.xxxx (esim. 10.1234)." + +#~ msgid "manager.setup.emailBounceAddressDescription" +#~ msgstr "" +#~ "Tähän osoitteeseen lähetetään virheilmoitus aina, kun sähköpostia ei " +#~ "voida toimittaa perille." + +#~ msgid "manager.setup.emailBounceAddressDisabled" +#~ msgstr "" +#~ "Huom! Aktivoidakseen tämän valinnan sivuston ylläpitäjän " +#~ "täytyy ottaa käyttöön allow_envelope_sender -valinta OMP:n " +#~ "määritystiedostossa. Palvelimen lisämäärityksiä saatetaan edellyttää " +#~ "tämän toiminnon tukemiseksi (joka ei välttämättä ole mahdollista kaikilla " +#~ "palvelimilla), kuten OMP:n käyttöohjeissa mainitaan." + +#~ msgid "manager.setup.emailSignatureDescription" +#~ msgstr "" +#~ "Valmiisiin sähköposteihin, jotka järjestelmä lähettää painon puolesta, " +#~ "lisätään seuraava allekirjoitus." + +#~ msgid "manager.setup.enableAnnouncements" +#~ msgstr "Ota ilmoitukset käyttöön." + +#~ msgid "manager.setup.enableAnnouncementsHomepage1" +#~ msgstr "Näytä" + +#~ msgid "manager.setup.enableAnnouncementsHomepage2" +#~ msgstr "viimeisintä ilmoitusta painon etusivulla." + +#~ msgid "manager.setup.form.pressNameRequired" +#~ msgstr "Painon nimi vaaditaan." + +#~ msgid "manager.setup.form.pressInitialsRequired" +#~ msgstr "Painon alkukirjaimet tarvitaan." + +#~ msgid "manager.setup.listsDescription" +#~ msgstr "" +#~ "Rajoita listan sivuilla näytettävien kohteiden (esim. käsikirjoitukset, " +#~ "käyttäjät tai toimitustoimeksiannot) määrää. Rajoita myös listan " +#~ "seuraaville sivuille johtavien linkkien näytettävää määrää." + +#~ msgid "manager.setup.pressInitials" +#~ msgstr "Painon alkukirjaimet" + +#~ msgid "manager.setup.contextName" +#~ msgstr "Painon nimi" + +#~ msgid "manager.setup.internalReviewGuidelinesDescription" +#~ msgstr "" +#~ "Aivan kuten ulkopuolista arviointia koskevat ohjeet, nämäkin ohjeet " +#~ "tarjoavat arvioijille tietoa käsikirjoituksen arviointiin liittyen. Nämä " +#~ "ohjeet koskevat painoja, jotka yleisesti käyttävät arviointiprosessissa " +#~ "painon sisäisiä arvioijia." + +#~ msgid "manager.setup.searchEngineIndexingDescription" +#~ msgstr "" +#~ "Anna painosta lyhyt kuvaus, jonka hakukoneet voivat näyttää listatessaan " +#~ "painon hakutuloksissa." + +#~ msgid "manager.setup.siteAccess" +#~ msgstr "Sivuston ja sisällön saatavuuden lisärajoitukset" + +#~ msgid "manager.setup.coverThumbnails" +#~ msgstr "Kannen pikkukuvat" + +#~ msgid "manager.setup.coverThumbnailsDescription" +#~ msgstr "" +#~ "Määritä kannen pikkukuvien maksimileveys ja -korkeus. Mikäli pikkukuvien " +#~ "koko on näitä asetuksia suurempi, kokoa pienennetään, mutta kuvien " +#~ "ollessa asetuksia pienempiä, niitä ei laajenneta. Kuvia ei koskaan " +#~ "venytetä näihin mittoihin." + +#~ msgid "manager.setup.coverThumbnailsMaxHeightRequired" +#~ msgstr "Kannen pikkukuvien maksimikorkeus vaaditaan." + +#~ msgid "manager.setup.coverThumbnailsMaxWidthRequired" +#~ msgstr "Kannen pikkukuvien maksimileveys vaaditaan." + +#~ msgid "manager.setup.coverThumbnailsResize" +#~ msgstr "Muuta kaikkien olemassa olevien kannen pikkukuvien kokoa." + +#~ msgid "manager.setup.cataloguingMetadata" +#~ msgstr "Metatietojen luettelointi" + +#~ msgid "manager.setup.authorCopyrightNotice.sample" +#~ msgstr "" +#~ "

      Ehdotetut Creative Commons -tekijänoikeushuomautukset

      \n" +#~ "

      Ehdotettu käytäntö painoille, jotka tarjoavat avoimen saatavuuden " +#~ "(Open Access)

      \n" +#~ "Tässä painossa julkaisevat kirjoittajat hyväksyvät seuraavat ehdot:\n" +#~ "
        \n" +#~ "\t
      1. Kirjoittajat säilyttävät tekijänoikeuden ja myöntävät painolle " +#~ "oikeuden julkaista työn ensimmäisenä. Samanaikaisesti työ lisensoidaan Creative Commons Attribution License -lisenssillä, joka sallii " +#~ "muiden jakaa työtä vain, jos työn alkuperäinen tekijä sekä sen " +#~ "ensijulkaisu tässä painossa mainitaan.
      2. \n" +#~ "\t
      3. Kirjoittajat voivat tehdä erillisiä, muita sopimuksellisia sarjoja " +#~ "työn tässä painossa julkaistun version levittämiseksi ilman " +#~ "yksityisoikeutta (esim. lähettää sen julkaisuarkistoon tai julkaista sen " +#~ "kirjassa) vain, jos työn ensijulkaisu tässä painossa mainitaan.
      4. \n" +#~ "\t
      5. Kirjoittajilla on lupa lähettää työnsä verkkoon (esim. " +#~ "julkaisuarkistoihin tai omille verkkosivuilleen) sekä ennen " +#~ "käsikirjoituksen lähetysprosessia että sen aikana. Kirjoittajia myös " +#~ "kannustetaan toimimaan näin, koska se voi johtaa hyödyllisiin " +#~ "kanssakäymisiin sekä siihen, että julkaistuun työhön viitataan jo " +#~ "aikaisessa vaiheessa ja enemmän. (Lisää avoimen saatavuuden " +#~ "vaikutuksesta).
      6. \n" +#~ "
      \n" +#~ "\n" +#~ "

      Ehdotettu käytäntö painoille, jotka tarjoavat viiveellisen avoimen " +#~ "saatavuuden (Delayed Open Access)

      \n" +#~ "Tässä painossa julkaisevat kirjoittajat hyväksyvät seuraavat ehdot:\n" +#~ "
        \n" +#~ "\t
      1. Kirjoittajat säilyttävät tekijänoikeuden ja myöntävät painolle " +#~ "oikeuden julkaista työn ensimmäisenä. [MÄÄRITÄ AJANJAKSO] julkaisemisen " +#~ "jälkeen työ samanaikaisesti lisensoidaan Creative Commons " +#~ "Attribution License -lisenssillä, joka sallii muiden jakaa työtä " +#~ "vain, jos työn alkuperäinen tekijä sekä sen ensijulkaisu tässä painossa " +#~ "mainitaan.
      2. \n" +#~ "\t
      3. Kirjoittajat voivat tehdä erillisiä, muita sopimuksellisia sarjoja " +#~ "työn tässä painossa julkaistun version levittämiseksi ilman " +#~ "yksityisoikeutta (esim. lähettää sen julkaisuarkistoon tai julkaista sen " +#~ "kirjassa) vain, jos työn ensijulkaisu tässä painossa mainitaan.
      4. \n" +#~ "\t
      5. Kirjoittajilla on lupa lähettää työnsä verkkoon (esim. " +#~ "julkaisuarkistoihin tai omille verkkosivuilleen) sekä ennen " +#~ "käsikirjoituksen lähetysprosessia että sen aikana. Kirjoittajia myös " +#~ "kannustetaan toimimaan näin, koska se voi johtaa hyödyllisiin " +#~ "kanssakäymisiin sekä siihen, että julkaistuun työhön viitataan jo " +#~ "aikaisemmassa vaiheessa ja enemmän. (Lisää avoimen saatavuuden " +#~ "vaikutuksesta).
      6. \n" +#~ "
      " + +#~ msgid "grid.category.add" +#~ msgstr "Lisää kategoria" + +#~ msgid "grid.category.edit" +#~ msgstr "Muokkaa kategoriaa" + +#~ msgid "grid.category.name" +#~ msgstr "Nimi" + +#~ msgid "grid.category.path" +#~ msgstr "Polku" + +#~ msgid "grid.category.urlWillBe" +#~ msgstr "Kategorian URL-osoitteeksi tulee: {$sampleUrl}" + +#~ msgid "grid.category.pathAlphaNumeric" +#~ msgstr "Kategorian polku saa sisältää vain kirjaimia ja numeroita." + +#~ msgid "grid.category.pathExists" +#~ msgstr "Kategorian polku on jo olemassa. Anna yksilöllinen polku." + +#~ msgid "grid.category.description" +#~ msgstr "Kuvaus" + +#~ msgid "grid.category.parentCategory" +#~ msgstr "Pääkategoria" + +#~ msgid "grid.category.removeText" +#~ msgstr "Haluatko varmasti poistaa tämän kategorian?" + +#~ msgid "grid.category.nameRequired" +#~ msgstr "Anna kategorian nimi." + +#~ msgid "grid.category.categoryDetails" +#~ msgstr "Kategorian tiedot" + +msgid "manager.sections.alertDelete" +msgstr "" +"Ennen kuin tämä sarja voidaan poistaa, sinun on siirrettävä tähän sarjaan " +"liittyvät käsikirjoitukset muihin sarjoihin." + +msgid "mailable.layoutComplete.name" +msgstr "Julkaistavat tiedostot valmiina" + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "" +"Tieto myyntioikeuksista on ohitettu, koska sille ei ole määritetty maata tai " +"aluetta." + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "Julkaisijan postiosoite" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "Linkki teoksen tilastosivulle" + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Tämä sähköposti lähetetään automaattisesti kuukausittain toimittajille ja " +"julkaisijan sivuvoston hallinnoijille, jotta he saavat yleiskatsauksen " +"sivustonsa tilasta." + +msgid "emailTemplate.variable.context.contextAcronym" +msgstr "Julkaisijan alkukirjaimet" diff --git a/locale/fi/submission.po b/locale/fi/submission.po new file mode 100644 index 00000000000..31d88d54e43 --- /dev/null +++ b/locale/fi/submission.po @@ -0,0 +1,621 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" +"PO-Revision-Date: 2023-05-23 20:49+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Valitse osa" + +msgid "submission.title" +msgstr "Kirjan nimeke" + +msgid "submission.select" +msgstr "Valitse käsikirjoitus" + +msgid "submission.synopsis" +msgstr "Tiivistelmä" + +msgid "submission.workflowType" +msgstr "Käsikirjoitustyyppi" + +msgid "submission.workflowType.description" +msgstr "" +"Erillisteos on yhden tai useamman kirjoittajan kokonaan kirjoittama teos. " +"Toimitetussa teoksessa jokaisella luvulla on eri kirjoittaja (lukujen tiedot " +"syötetään myöhemmin.)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Toimitettu teos" + +msgid "submission.workflowType.editedVolume" +msgstr "Toimitettu teos: Jokaisella luvulla on eri kirjoittaja." + +msgid "submission.workflowType.authoredWork" +msgstr "" +"Erillisteos: Yhden tai useamman kirjoittajan kokonaan kirjoittama teos." + +msgid "submission.workflowType.change" +msgstr "Vaihda" + +msgid "submission.editorName" +msgstr "{$editorName} (toim.)" + +msgid "submission.monograph" +msgstr "Kirja" + +msgid "submission.published" +msgstr "Valmis tuotantoon" + +msgid "submission.fairCopy" +msgstr "Puhtaaksi kirjoitettu käsikirjoitus" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Luvat" + +msgid "submission.chapter" +msgstr "Luku" + +msgid "submission.chapters" +msgstr "Luvut" + +msgid "submission.chapter.addChapter" +msgstr "Lisää luku" + +msgid "submission.chapter.editChapter" +msgstr "Muokkaa lukua" + +msgid "submission.chapter.pages" +msgstr "Sivut" + +msgid "submission.copyedit" +msgstr "Tekninen toimittaminen" + +msgid "submission.publicationFormats" +msgstr "Julkaisumuodot" + +msgid "submission.proofs" +msgstr "Korjausvedokset" + +msgid "submission.download" +msgstr "Lataa" + +msgid "submission.sharing" +msgstr "Jaa tämä" + +msgid "manuscript.submission" +msgstr "Käsikirjoituksen lähetys" + +msgid "submission.round" +msgstr "Kierros {$round}" + +msgid "submissions.queuedReview" +msgstr "Arvioitavana" + +msgid "manuscript.submissions" +msgstr "Vastaanotetut käsikirjoitukset" + +msgid "submission.metadata" +msgstr "Metatiedot" + +msgid "submission.supportingAgencies" +msgstr "Kannattajajärjestöt" + +msgid "grid.action.addChapter" +msgstr "Luo uusi luku" + +msgid "grid.action.editChapter" +msgstr "Muokkaa tätä lukua" + +msgid "grid.action.deleteChapter" +msgstr "Poista tämä luku" + +msgid "submission.submit" +msgstr "Uuden kirjan lähetys" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Aloita käsikirjoituksen lähetys julkaisijalle" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Uusi käsikirjoitus" + +msgid "submission.submit.upload" +msgstr "Lataa käsikirjoitus" + +msgid "author.volumeEditor" +msgstr "Niteen toimittaja" + +msgid "author.isVolumeEditor" +msgstr "Merkitse tämä tekijä teoksen toimittajaksi." + +msgid "submission.submit.seriesPosition" +msgstr "Sijoitus sarjassa" + +msgid "submission.submit.seriesPosition.description" +msgstr "Esimerkiksi: Kirja 2, Nide 2" + +msgid "submission.submit.privacyStatement" +msgstr "Tietosuojaseloste" + +msgid "submission.submit.contributorRole" +msgstr "Tekijän rooli" + +msgid "submission.submit.submissionFile" +msgstr "Käsikirjoitustiedosto" + +msgid "submission.submit.prepare" +msgstr "Valmistelu" + +msgid "submission.submit.catalog" +msgstr "Luettelo" + +msgid "submission.submit.metadata" +msgstr "Metatiedot" + +msgid "submission.submit.finishingUp" +msgstr "Viimeistely" + +msgid "submission.submit.confirmation" +msgstr "Vahvistus" + +msgid "submission.submit.nextSteps" +msgstr "Seuraavat vaiheet" + +msgid "submission.submit.coverNote" +msgstr "Saate toimittajalle" + +msgid "submission.submit.generalInformation" +msgstr "Yleisiä tietoja" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Julkaisijalle on ilmoitettu käsikirjoituksestasi ja sinulle on lähetetty " +"sähköpostitse vahvistus säilytettäväksi. Toimittajan arvioitua " +"käsikirjoituksen sinuun otetaan yhteyttä." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Lue ja kuittaa käsikirjoituksen tarkistuslistan kohdat. {$itemsRemaining} " +"kohtaa on vielä kuittaamatta." + +msgid "submission.submit.placement" +msgstr "Käsikirjoituksen sijoittaminen" + +msgid "submission.submit.userGroup" +msgstr "Lähetä roolissani..." + +msgid "submission.submit.noContext" +msgstr "Käsikirjoitusta vastaavaa julkaisijaa ei löytynyt." + +msgid "grid.chapters.title" +msgstr "Luvut" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Poista teknisen toimittajan lataus" + +msgid "submission.complete" +msgstr "Hyväksytty" + +msgid "submission.incomplete" +msgstr "Odottaa hyväksyntää" + +msgid "submission.editCatalogEntry" +msgstr "Merkintä" + +msgid "submission.catalogEntry.new" +msgstr "Lisää merkintä" + +msgid "submission.catalogEntry.add" +msgstr "Lisää valitut luetteloon" + +msgid "submission.catalogEntry.select" +msgstr "Valitse kirjat, jotka lisätään luetteloon" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Valitse vähintään yksi kirja, joka lisätään luetteloon." + +msgid "submission.catalogEntry.confirm" +msgstr "Lisää tämä kirja julkiseen luetteloon" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Vahvista, että käsikirjoitus on valmis luetteloon sijoitettavaksi." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Tämä kirja on valmis sisällytettäväksi julkiseen luetteloon." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Näytä käsikirjoitus" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Julkaisupäivät" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Kaikki luvut käyttävät teoksen julkaisupäivää." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Jokaisella luvulla voi olla oma julkaisupäivä." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Kirja" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Luettelo" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Julkaisumuoto" + +msgid "submission.event.metadataPublished" +msgstr "Kirjan metatiedot on hyväksytty julkaistavaksi." + +msgid "submission.event.metadataUnpublished" +msgstr "Kirjan metatiedot eivät ole enää julkaistuna." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Julkaisumuoto ”{$publicationFormatName}” on nyt saatavissa." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Julkaisumuoto \"{$publicationFormatName}\" ei ole enää saatavissa." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Julkaisumuoto \"{$publicationFormatName}\" on hyväksytty julkaistavaksi." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "Julkaisumuoto \"{$publicationFormatName}\" ei ole enää julkaistuna." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Luettelon metatiedot päivitettiin." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "Julkaisumuodon \"{$formatName}\" metatiedot päivitettiin." + +msgid "submission.event.publicationFormatCreated" +msgstr "Julkaisumuoto \"{$formatName}\" luotiin." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Julkaisumuoto \"{$formatName}\" poistettiin." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Lähetä ulkopuoliseen arviointiin" + +msgid "workflow.review.externalReview" +msgstr "Ulkopuolinen arviointi" + +msgid "submission.upload.fileContents" +msgstr "Käsikirjoituksen osa" + +msgid "submission.dependentFiles" +msgstr "Riippuvat tiedostot" + +msgid "submission.metadataDescription" +msgstr "" +"Nämä määritykset perustuvat Dublin Core -metatietosanastostandardiin. Se on " +"kansainvälinen standardi, jolla kuvataan julkaisijan julkaisemia sisältöjä." + +msgid "section.any" +msgstr "Mikä tahansa sarja" + +msgid "submission.list.monographs" +msgstr "Kirjat" + +msgid "submission.list.countMonographs" +msgstr "{$count} kirjaa" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count}/{$total} kirjasta" + +msgid "submission.list.orderFeatures" +msgstr "Järjestä esittelyssä olevat" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Vedä ja pudota tai napauta ylös- ja alas-painikkeita muuttaaksesi " +"esittelyssä olevien kohteiden järjestystä etusivulla." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Vedä ja pudota tai napauta ylös- ja alas-painikkeita muuttaaksesi kohteen " +"{$title} ominaisuuksien järjestystä." + +msgid "submission.list.saveFeatureOrder" +msgstr "Tallenna järjestys" + +msgid "submission.list.viewEntry" +msgstr "Näytä merkintä" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} nimikettä" + +msgid "publication.catalogEntry" +msgstr "Luettelomerkintä" + +msgid "publication.catalogEntry.success" +msgstr "Luettelomerkinnän tiedot on päivitetty." + +msgid "publication.invalidSeries" +msgstr "Sarjaa ei löytynyt." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Pois käytöstä)" + +msgid "publication.required.issue" +msgstr "Julkaisu pitää lisätä numeroon ennen kuin sen von julkaista." + +msgid "publication.publishedIn" +msgstr "Julkaistu {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Kaikki julkaisuun liittyvät vaatimukset täyttyvät. Haluatko julkaista " +"teoksen?" + +msgid "publication.scheduledIn" +msgstr "Tullaan julkaisemaan {$issueName}." + +msgid "submission.publication" +msgstr "Julkaistu versio" + +msgid "publication.status.published" +msgstr "Julkaistu" + +msgid "submission.status.scheduled" +msgstr "Ajoitettu" + +msgid "publication.status.unscheduled" +msgstr "Ajoitus peruttu" + +msgid "submission.publications" +msgstr "Julkaistut versiot" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "Tekijänoikeusvuosi asetetaan automaattisesti julkaisun yhteydessä." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "Tekijänoikeusvuosi asetetaan automaattisesti julkaisupäivän mukaan." + +msgid "publication.datePublished" +msgstr "Julkaisupäivä" + +msgid "publication.editDisabled" +msgstr "Tämä versio on julkaistu eikä sitä voi muokata." + +msgid "publication.event.published" +msgstr "Käsikirjoitus julkaistiin." + +msgid "publication.event.scheduled" +msgstr "Käsikirjoitus ajoitettiin julkaistavaksi." + +msgid "publication.event.unpublished" +msgstr "Käsikirjoituksen julkaisu peruttiin." + +msgid "publication.event.versionPublished" +msgstr "Uusi versio julkaistiin." + +msgid "publication.event.versionScheduled" +msgstr "Uusi versio ajoitettiin julkaistavaksi." + +msgid "publication.event.versionUnpublished" +msgstr "Versio poistettiin." + +msgid "publication.invalidSubmission" +msgstr "Tälle julkaistulle versiolle ei löydy vastaavaa käsikirjoitusta." + +msgid "publication.publish" +msgstr "Julkaise" + +msgid "publication.publish.requirements" +msgstr "Seuraavat ehdot pitää täyttyä ennen julkaisua." + +msgid "publication.required.declined" +msgstr "Hylättyä käsikirjoitusta ei voi julkaista." + +msgid "publication.required.reviewStage" +msgstr "" +"Käsikirjoituksen pitää olla teknisen toimituksessa tai tuotantovaiheessa, " +"jotta sen voi julkaista." + +msgid "submission.license.description" +msgstr "" +"Lisenssiksi annetaan julkaisun yhteydessä {$licenseName}." + +msgid "submission.copyrightHolder.description" +msgstr "Tekijänoikeus osoitetaan julkaisun yhteydessä {$copyright}." + +msgid "submission.copyrightOther.description" +msgstr "" +"Osoita julkaistujen käsikirjoitusten tekijänoikeus seuraavalle osapuolelle." + +msgid "publication.unpublish" +msgstr "Peru julkaisu" + +msgid "publication.unpublish.confirm" +msgstr "Oletko varma, että haluat peruuttaa julkaisun?" + +msgid "publication.unschedule.confirm" +msgstr "Oletko varma, että et halua ajoittaa tätä julkaistavaksi?" + +msgid "publication.version.details" +msgstr "Version {$version} tiedot" + +msgid "submission.queries.production" +msgstr "Tuotantoon liittyvät keskustelut" + +msgid "publication.chapter.landingPage" +msgstr "Luvun laskeutumissivu" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Näytä tämä luku omalla sivullaan ja linkitä sivulle kirjan laskeutumissivun " +"sisällysluettelosta." + +msgid "publication.publish.success" +msgstr "Julkaisutila muutettu onnistuneesti." + +msgid "chapter.volume" +msgstr "Vuosikerta" + +msgid "submission.withoutChapter" +msgstr "{$name} — Ilman tätä lukua" + +msgid "submission.chapterCreated" +msgstr " — Luku luotu" + +msgid "chapter.pages" +msgstr "Sivut" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Lähetä sisäiseen arviointiin" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "Tämä käsikirjoitus on valmis lähetettäväksi sisäiseen arviointiin." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} lähetti tämän käsikirjoituksen sisäiseen arviointiin." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Lähetetty sisäiseen arviointiin" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"Käsikirjoitus {$title} on lähetetty sisäiseen arviointiin. Kirjoittajalle on " +"ilmoitettu asiasta, ellet päättänyt ohittaa tätä sähköpostiviestiä." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Ilmoita sähköpostilla kirjoittajille käsikirjoituksen lähettämisestä " +"sisäiseen arviointiin. Mikäli mahdollista kerro myös arvio sen kestosta ja " +"milloin kirjoittajat voivat kuulla asiasta uudelleen. Tätä sähköpostia ei " +"lähetetä ennen päätöksen tallentamista." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "Valitse tiedostot, jotka siirretään sisäiseen arviointiin." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "{$editorName} lähetti tämän käsikirjoituksen ulkoiseen arviointiin." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Lähetetty ulkoiseen arviointiin" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "Käsikirjoitus {$title} on lähetetty ulkoiseen arviointiin." + +msgid "editor.submission.decision.backToReview" +msgstr "Palauta vertaisarvioitavaksi" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Peru päätös käsikirjoituksen hyväksymisestä ja palauta käsikirjoitus " +"arviointivaiheeseen." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} perui päätöksen hyväksyä käsikirjoitus ja palautti sen " +"arviointivaiheeseen." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Palautettu arviointivaiheeseen" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "Käsikirjoitus {$title} on palautettu arviointivaiheeseen." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Lähetä sähköpostia kirjoittajille ja ilmoita käsikirjoituksen " +"palauttamisesta arviointivaiheeseen. Perustele miksi päätös on tehty ja " +"kerro kirjoittajille miten käsikirjoitusta arvioidaan edelleen." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Ilmoita sähköpostilla kirjoittajille käsikirjoituksen lähettämisestä " +"vertaisarviointiin. Mikäli mahdollista kerro myös arvio sen kestosta ja " +"milloin kirjoittajat voivat kuulla asiasta uudelleen." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Valitse tiedostot, jotka siirretään arviointivaiheeseen." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Suosittele lähettämistä ulkoiseen arviointiin" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "Suosittele, että tämä käsikirjoitus lähetetään ulkoiseen arviointiin." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} suositteli, että tämä käsikirjoitus lähetetään ulkoiseen " +"arviointiin." + +msgid "doi.submission.incorrectContext" +msgstr "" +"Käsikirjoitukselle {$pubObjectTitle}ei voitu luoda DOI-tunnusta. " +"Käsikirjoitusta ei ole olemassa tämän julkaisijan sivustolla." + +msgid "publication.chapter.licenseUrl" +msgstr "Lisenssin URL-osoite" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "Lukujen oletuslisenssin URL-osoite" + +msgid "submission.copyright.description" +msgstr "" +"Lue ja sisäistä tämän julkaisijan tekijänoikeusehdot käsikirjoituksille." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Et voi lähettää käsikirjoitusta tälle julkaisijalle, koska vain " +"toimituskunta voi rekisteröidä uusia kirjoittajia. Jos arvioit tämän olevan " +"virhe, otathan yhteyttä {$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} ei vastaanota käsikirjoituksia sarjaan {$section}. Jos " +"tarvitset apua käsikirjoituksesi kanssa, ota yhteyttä {$name}." + +msgid "submission.sectionNotFound" +msgstr "Sarjaa tälle käsikirjoitukselle ei löytynyt." + +msgid "submission.sectionRestrictedToEditors" +msgstr "Vain toimituskunta voi lisätä käsikirjoituksia tähän sarjaan." + +msgid "submission.wizard.submitting.monograph" +msgstr "Lähetetään monografiaa." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" +"Lähetetään monografiaa kielellä " +"{$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Lähetetään toimitettua teosta." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Lähetetään toimitettua teosta kielellä " +"{$language}." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Anna kaikki tämän käsikirjoituksen luvut. Jos lähetät toimitetun teoksen, " +"varmista, että jokaisessa luvussa ilmoitetaan kyseisen luvun kirjoittajat." + +#~ msgid "submission.submit.placement.categories" +#~ msgstr "Kategoriat" + +#~ msgid "submission.submit.placement.categoriesDescription" +#~ msgstr "" +#~ "Valitse painon kategorioista se, jonne tämä työ lähetetään käsiteltäväksi." diff --git a/locale/fi_FI/admin.po b/locale/fi_FI/admin.po deleted file mode 100644 index 1aca3331add..00000000000 --- a/locale/fi_FI/admin.po +++ /dev/null @@ -1,135 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" -"PO-Revision-Date: 2020-03-18 12:36+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.hostedPresses" -msgstr "Ylläpidetyt painot" - -msgid "admin.settings.pressRedirect" -msgstr "Painon uudelleenohjaus" - -msgid "admin.settings.pressRedirectInstructions" -msgstr "Pyynnöt pääsivustolle uudelleenohjataan tähän painoon. Tämä saattaa olla hyödyllinen toiminto, jos sivustolla ylläpidetään vain yhtä painoa." - -msgid "admin.settings.noPressRedirect" -msgstr "Älä uudelleenohjaa" - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "" -"Tätä kieltä käytetään sivuston ja kaikkien ylläpidettyjen julkaisijoiden " -"sivustojen oletuskielenä." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "" -"Valitse kaikki sivustolla tuettavat kielialueet. Valitut kielialueet ovat " -"kaikkien sivustolla ylläpidettävien julkaisijoiden käytössä. Ne esiintyvät " -"myös kielivalikossa, joka näkyy jokaisella sivuston sivulla (tämä voidaan " -"ohittaa julkaisijoiden omilla sivuilla). Mikäli valitaan vain yksi " -"kielialue, kielivalikko ei tule näkyviin ja laajennetut kieliasetukset eivät " -"ole julkaisijoiden käytettävissä." - -msgid "admin.locale.maybeIncomplete" -msgstr "Tähdellä (*) merkityt kielialueet saattavat olla vaillinaisia." - -msgid "admin.languages.confirmUninstall" -msgstr "" -"Haluatko varmasti poistaa tämän kielialueen? Se saattaa vaikuttaa " -"julkaisijoihin, joilla on tämä kielialue käytössä." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "" -"Valitse mitä tahansa lisäkielialueita, joille asennetaan tuki tässä " -"järjestelmässä. Kielialueet täytyy asentaa ennen kuin ylläpidetyt " -"julkaisijat voivat käyttää niitä. Katso OMP:n ohjeista tietoja siitä, kuinka " -"uusille kielille lisätään tuki." - -msgid "admin.languages.confirmDisable" -msgstr "" -"Haluatko varmasti poistaa tämän kielialueen käytöstä? Se saattaa vaikuttaa " -"julkaisijoihin, joilla on tämä kielialue käytössä." - -msgid "admin.systemVersion" -msgstr "OMP-versio" - -msgid "admin.systemConfiguration" -msgstr "OMP:n määritys" - -msgid "admin.presses.pressSettings" -msgstr "Julkaisijan asetukset" - -msgid "admin.presses.noneCreated" -msgstr "Yhtään julkaisijan sivustoa ei ole luotu." - -msgid "admin.contexts.create" -msgstr "Luo julkaisijan sivusto" - -msgid "admin.presses.createInstructions" -msgstr "Sinut lisätään automaattisesti tämän painon hallinnoijaksi. Uuden painon luonnin jälkeen sinut uudelleenohjataan ohjattuun asetusten luontiin painon aloitusasetusten loppuun saattamiseksi." - -msgid "admin.presses.urlWillBe" -msgstr "Painon URL-osoitteeksi tulee {$sampleUrl}" - -msgid "admin.contexts.form.titleRequired" -msgstr "Otsikko vaaditaan." - -msgid "admin.contexts.form.pathRequired" -msgstr "Polku vaaditaan." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "Polku voi sisältää vain aakkosnumeerisia merkkejä, alaviivoja ja yhdysmerkkejä, ja sen täytyy alkaa ja päättyä aakkosnumeeriseen merkkiin." - -msgid "admin.contexts.form.pathExists" -msgstr "Valittu polku on jo toisen julkaisijan sivuston käytössä." - -msgid "admin.presses.enablePressInstructions" -msgstr "Näytä tämä paino julkisesti sivustolla" - -msgid "admin.presses.pressDescription" -msgstr "Painon kuvaus" - -msgid "admin.presses.addPress" -msgstr "Lisää julkaisijan sivusto" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

      HUOM!\n" -"

      Järjestelmä ei voinut korvata määritystiedostoa automaattisesti. Ottaaksesi määritysmuutokset käyttöön avaa config.inc.php sopivassa tekstieditorissa ja korvaa sen sisältö alla olevan tekstikentän sisällöllä.

      " - -msgid "admin.contexts.contextDescription" -msgstr "Julkaisijan kuvaus" - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} päivitettiin onnistuneesti." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} luotiin onnistuneesti." - -msgid "admin.settings.redirectInstructions" -msgstr "" -"Koko sivustoon kohdistuvat pyynnöt ohjataan tämän julkaisijan sivustolle." - -msgid "admin.settings.redirect" -msgstr "Julkaisijan sivuston uudelleenohjaus" - -msgid "admin.settings.info.success" -msgstr "Sivuston tietoja koskevat asetukset on päivitetty." - -msgid "admin.settings.config.success" -msgstr "Sivuston asetukset on päivitetty." - -msgid "admin.settings.appearance.success" -msgstr "Sivuston ulkoasua koskevat asetukset on päivitetty." - -msgid "admin.hostedContexts" -msgstr "Ylläpidetyt julkaisijoiden sivustot" diff --git a/locale/fi_FI/api.po b/locale/fi_FI/api.po deleted file mode 100644 index 96dcbb35c03..00000000000 --- a/locale/fi_FI/api.po +++ /dev/null @@ -1,37 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-11 17:22+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish " -"\n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "api.submissions.403.contextRequired" -msgstr "" -"Käsikirjoituksen luomiseksi tai muokkaamiseksi pitää tehdä kysely " -"julkaisijan rajapintaan." - -msgid "api.submissions.403.cantChangeContext" -msgstr "Et voi vaihtaa käsikirjoitukseen liittyvää julkaisijaa." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "Pyytämäsi julkaistu versio ei kuulu tähän käsikirjoitukseen." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "Pyytämäsi julkaistu versio ei kuulu tälle julkaisijalle." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "" -"Sinulla ei ole lupaa siirtää tätä sähköpostipohjaa toiseen julkaisijaan." - -msgid "api.submissions.400.submissionsNotFound" -msgstr "Yhtä tai useampaa määrittämääsi käsikirjoitusta ei löytynyt." - -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Anna yhden tai useamman luetteloon lisättävän käsikirjoituksen ID-tunniste." diff --git a/locale/fi_FI/default.po b/locale/fi_FI/default.po deleted file mode 100644 index f99d436fe40..00000000000 --- a/locale/fi_FI/default.po +++ /dev/null @@ -1,238 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" -"PO-Revision-Date: 2020-10-15 05:36+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.genres.appendix" -msgstr "Liite" - -msgid "default.genres.bibliography" -msgstr "Bibliografia" - -msgid "default.genres.manuscript" -msgstr "Kirjan käsikirjoitus" - -msgid "default.genres.chapter" -msgstr "Luvun käsikirjoitus" - -msgid "default.genres.glossary" -msgstr "Sanasto" - -msgid "default.genres.index" -msgstr "Hakemisto" - -msgid "default.genres.preface" -msgstr "Alkusanat" - -msgid "default.genres.prospectus" -msgstr "Esite" - -msgid "default.genres.table" -msgstr "Taulukko" - -msgid "default.genres.figure" -msgstr "Kuvio" - -msgid "default.genres.photo" -msgstr "Valokuva" - -msgid "default.genres.illustration" -msgstr "Kuva" - -msgid "default.genres.other" -msgstr "Muu" - -msgid "default.groups.name.manager" -msgstr "Julkaisijan sivuston hallinnoija" - -msgid "default.groups.plural.manager" -msgstr "Julkaisijan sivuston hallinnoijat" - -msgid "default.groups.abbrev.manager" -msgstr "PH" - -msgid "default.groups.name.editor" -msgstr "Toimittaja" - -msgid "default.groups.plural.editor" -msgstr "Toimittajat" - -msgid "default.groups.abbrev.editor" -msgstr "PT" - -msgid "default.groups.name.seriesEditor" -msgstr "Sarjan toimittaja" - -msgid "default.groups.plural.seriesEditor" -msgstr "Sarjan toimittajat" - -msgid "default.groups.abbrev.seriesEditor" -msgstr "ST" - -msgid "default.groups.name.chapterAuthor" -msgstr "Luvun kirjoittaja" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Luvun kirjoittajat" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "LK" - -msgid "default.groups.name.volumeEditor" -msgstr "Niteen toimittaja" - -msgid "default.groups.plural.volumeEditor" -msgstr "Niteen toimittajat" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "NT" - -msgid "default.pressSettings.checklist.notPreviouslyPublished" -msgstr "Tätä käsikirjoitusta ei ole aiemmin julkaistu, eikä sitä ole lähetetty toiseen painoon (tai asiasta on annettu selvitys Kommentteja toimittajalle -kohdassa)." - -msgid "default.pressSettings.checklist.fileFormat" -msgstr "Käsikirjoitustiedosto on Microsoft Word, RTF tai OpenDocument -tiedostomuodossa." - -msgid "default.pressSettings.checklist.addressesLinked" -msgstr "Lähteiden URL-osoitteet on annettu, mikäli ne ovat saatavilla." - -msgid "default.pressSettings.checklist.submissionAppearance" -msgstr "Tekstin riviväli on yksi; kirjasinkoko on 12; tekstissä käytetään kursiivia, ei alleviivausta (paitsi URL-osoitteissa); ja kaikki kuvat, kuviot ja taulukot on sijoitettu ensisijaisesti sopiviin kohtiin tekstin lomaan, ei tekstin loppuun." - -msgid "default.pressSettings.checklist.bibliographicRequirements" -msgstr "Teksti noudattaa Kirjoittajan ohjeissa mainittuja stilistisiä ja bibliografisia vaatimuksia, jotka löytyvät Tietoa painosta -kohdasta." - -msgid "default.pressSettings.privacyStatement" -msgstr "Tämän painon sivustolle syötettyjä nimiä ja sähköpostiosoitteita käytetään yksinomaan tämän painon tarkoituksiin, eikä niitä luovuteta mihinkään muuhun tarkoitukseen tai muille osapuolille." - -msgid "default.pressSettings.openAccessPolicy" -msgstr "Tämä painon sisällöt ovat välittömästi avoimesti saatavilla noudattaen periaatetta, jonka mukaan tutkimuksen tekeminen vapaasti saatavilla olevaksi suurelle yleisölle tukee suurempaa globaalia tiedonvaihtoa." - -msgid "default.pressSettings.emailSignature" -msgstr "" -"
      \n" -"________________________________________________________________________
      \n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.pressSettings.forReaders" -msgstr "Kehotamme lukijoita rekisteröitymään palveluun, joka ilmoittaa tämän painon uusista julkaisuista. Käytä tämän painon etusivun yläosassa olevaa Rekisteröidy -linkkiä. Rekisteröitymisen tuloksena lukijalle lähetetään sähköpostitse painon jokaisen uuden kirjan sisällysluettelo. Tämän palvelun käyttäjälistan avulla paino myös kerää tietoa kannattajamääristään ja lukijakunnastaan. Painon Tietosuojaseloste takaa, että lukijoiden nimiä ja sähköpostiosoitteita ei käytetä muihin tarkoituksiin." - -msgid "default.pressSettings.forAuthors" -msgstr "Kiinnostaako tähän painoon kirjoittaminen? Suosittelemme, että tutustut Tietoa painosta -sivulla painon osastojen käytäntöihin sekä Kirjoittajan ohjeisiin. Kirjoittajien tulee rekisteröityä painon käyttäjäksi ennen käsikirjoituksen lähettämistä tai jo rekisteröidyttyään kirjautua sisään aloittaakseen viisivaiheisen prosessin." - -msgid "default.pressSettings.forLibrarians" -msgstr "Suosittelemme, että tutkimuskirjastojen hoitajat listaavat tämän painon kirjastojensa sähköisten painojen kokoelmaan. Tämä avoimen lähdekoodin julkaisujärjestelmä sopii kirjastojen ylläpitämänä myös tiedekuntien jäsenten käyttöön sellaisten painojen yhteydessä, joiden julkaisujen toimittamiseen he osallistuvat (ks. Open Monograph Press)." - -msgid "default.pressSettings.manager.setup.category" -msgstr "Kategoria" - -msgid "default.pressSettings.manager.series.book" -msgstr "Kirjasarja" - -msgid "default.groups.name.externalReviewer" -msgstr "Ulkopuolinen arvioija" - -msgid "default.groups.plural.externalReviewer" -msgstr "Ulkopuoliset arvioijat" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "UA" - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Suosittelemme, että tutkimuskirjastojen hoitajat listaavat tämän julkaisijan " -"kirjastojensa sähköisten julkaisijoiden kokoelmaan. Tämä avoimen lähdekoodin " -"julkaisujärjestelmä sopii kirjastojen ylläpitämänä myös tiedekuntien " -"jäsenten käyttöön sellaisten julkaisijoiden yhteydessä, joiden julkaisujen " -"toimittamiseen he osallistuvat (ks. Open " -"Monograph Press)." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"Kiinnostaako oman käsikirjoituksen lähetys? Suosittelemme, että tutustut Tietoa julkaisijasta -sivulla " -"julkaisijan sarjojen käytäntöihin sekä Kirjoittajan ohjeisiin. " -"Kirjoittajien tulee rekisteröityä julkaisijan sivuston käyttäjäksi ennen käsikirjoituksen " -"lähettämistä tai jo rekisteröidyttyään " -"kirjautua sisään aloittaakseen viisivaiheisen prosessin." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Kehotamme lukijoita rekisteröitymään palveluun, joka ilmoittaa tämän " -"julkaisijan uusista julkaisuista. Käytä tämän julkaisijan etusivun yläosassa " -"olevaa Rekisteröidy -" -"linkkiä. Rekisteröitymisen tuloksena lukijalle lähetetään sähköpostitse " -"julkaisijan jokaisen uuden kirjan sisällysluettelo. Tämän palvelun " -"käyttäjälistan avulla julkaisija myös kerää tietoa lukijakunnastaan. " -"Julkaisijan Tietosuojaseloste takaa, että lukijoiden nimiä ja " -"sähköpostiosoitteita ei käytetä muihin tarkoituksiin." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
      \n" -"________________________________________________________________________
      " -"\n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Tämä julkaisijan sisällöt ovat välittömästi avoimesti saatavilla noudattaen " -"periaatetta, jonka mukaan tutkimuksen tekeminen vapaasti saatavilla olevaksi " -"suurelle yleisölle tukee suurempaa globaalia tiedonvaihtoa." - -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

      Tämän julkaisijan sivustolle syötettyjä nimiä ja sähköpostiosoitteita " -"käytetään yksinomaan tämän julkaisijan tarkoituksiin, eikä niitä luovuteta " -"mihinkään muuhun tarkoitukseen tai muille osapuolille.

      " - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "" -"Teksti noudattaa Kirjoittajan ohjeissa mainittuja " -"stilistisiä ja bibliografisia vaatimuksia, jotka löytyvät Tietoa " -"julkaisijasta -kohdasta." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"Tekstin riviväli on yksi; kirjasinkoko on 12; tekstissä käytetään kursiivia, " -"ei alleviivausta (paitsi URL-osoitteissa); ja kaikki kuvat, kuviot ja " -"taulukot on sijoitettu ensisijaisesti sopiviin kohtiin tekstin lomaan, ei " -"tekstin loppuun." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "" -"Lähdeviitteiden pysyvät tunnisteet tai osoitteet on ilmoitettu mikäli " -"mahdollista." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "" -"Käsikirjoituksen tiedosto on Microsoft Word, RTF tai OpenDocument -muodossa." - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"Käsikirjoitusta ei ole ennen julkaistu, eikä se ole harkittavana toisella " -"julkaisijalla." - -msgid "default.groups.abbrev.sectionEditor" -msgstr "ST" - -msgid "default.groups.plural.sectionEditor" -msgstr "Sarjan toimittajat" - -msgid "default.groups.name.sectionEditor" -msgstr "Sarjan toimittaja" diff --git a/locale/fi_FI/emails.po b/locale/fi_FI/emails.po deleted file mode 100644 index 8604f80ac8c..00000000000 --- a/locale/fi_FI/emails.po +++ /dev/null @@ -1,1031 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-13T19:57:22+00:00\n" -"PO-Revision-Date: 2020-12-12 05:46+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "emails.notification.subject" -msgstr "Uusi ilmoitus sivustolta {$siteTitle}" - -msgid "emails.notification.body" -msgstr "" -"Teille on uusi ilmoitus sivustolta {$siteTitle}:
      \n" -"
      \n" -"{$notificationContents}
      \n" -"
      \n" -"Linkki: {$url}
      \n" -"
      \n" -"Tämä on automaattisesti luotu sähköposti; Älkää vastatko tähän viestiin.
      \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.subject" -msgstr "Vahvista salasanan vaihtaminen" - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"Olemme vastaanottaneet pyynnön vaihtaa salasananne {$siteTitle} sivustolle.
      \n" -"
      \n" -"Jos ette tehnyt tätä pyyntöä, voitte jättää tämän sähköpostin huomiotta. Jos haluatte vaihtaa salasanan, klikatkaa alla olevaa linkkiä.
      \n" -"
      \n" -"Vaihda salasana: {$url}
      \n" -"
      \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.subject" -msgstr "Salasana vaihdettu" - -msgid "emails.passwordReset.body" -msgstr "" -"Salasananne sivustolle {$siteTitle} on vaihdettu onnistuneesti.
      \n" -"
      \n" -"Käyttäjätunnus: {$username}
      \n" -"Uusi salasana: {$password}
      \n" -"
      \n" -"{$principalContactSignature}" - -msgid "emails.userRegister.subject" -msgstr "Julkaisijan sivustolle rekisteröityminen" - -msgid "emails.userRegister.body" -msgstr "" -"Hyvä {$userFullName},
      \n" -"
      \n" -"Olette nyt rekisteröitynyt julkaisijan {$contextName} käyttäjäksi. " -"Tarvitsette alla olevaa käyttäjätunnustanne ja salasanaanne kaikkeen " -"työskentelyyn julkaisijan sivustolla. Voitte missä vaiheessa tahansa pyytää " -"poistamaan teidät julkaisujan sivuston käyttäjistä ottamalla yhteyttä " -"minuun.
      \n" -"
      \n" -"Käyttäjätunnus: {$username}
      \n" -"Salasana: {$password}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$principalContactSignature}" - -msgid "emails.userValidate.subject" -msgstr "Tilin vahvistaminen" - -msgid "emails.userValidate.body" -msgstr "" -"Hyvä {$userFullName},
      \n" -"
      \n" -"Olette luonut tilin julkaisijan sivustolle {$contextName}. Ennen kuin voitte " -"aloittaa tilin käytön, teidän täytyy vahvistaa sähköpostinne. Voitte tehdä " -"sen alla olevan linkin kautta:
      \n" -"
      \n" -"{$activateUrl}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.subject" -msgstr "Rekisteröinti arvioijaksi julkaisijan sivustolle {$contextName}" - -msgid "emails.reviewerRegister.body" -msgstr "" -"Asiantuntemuksenne valossa, olemme ottaneet vapauden rekisteröidä teidät " -"julkaisijan {$contextName} arvioijatietokantaan. Tämä ei velvoita teitä " -"mihinkään, mutta antaa meille mahdollisuuden ottaa teihin yhteyttä " -"mahdollisen käsikirjoituksen arvioinnin tiimoilta. Arviointikutsun " -"yhteydessä näette arvioitavan työn nimekkeen ja abstraktin, ja voitte aina " -"joko hyväksyä kutsun tai kieltäytyä siitä. Voitte myös missä tahansa " -"vaiheessa pyytää, että nimenne poistetaan tältä arvioijalistalta.
      \n" -"
      \n" -"Annamme teille käyttäjätunnuksen ja salasanan, joita käytetään kaikkeen " -"vuorovaikutukseen julkaisijan kanssa sen verkkosivuston kautta. Halutessanne " -"voitte esimerkiksi päivittää profiilinne ja teitä kiinnostavat " -"arviointiaiheet.
      \n" -"
      \n" -"Käyttäjätunnus: {$username}
      \n" -"Salasana: {$password}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$principalContactSignature}" - -msgid "emails.publishNotify.subject" -msgstr "Uusi kirja on julkaistu" - -msgid "emails.publishNotify.body" -msgstr "" -"Hyvä lukija,
      \n" -"
      \n" -"{$contextName} on juuri julkaissut uusimman kirjansa osoitteessa {$contextUrl}. Voitte tutustua sen sisällysluetteloon tässä ja sen jälkeen tutustua kirjoihin ja muihin kiinnostaviin kohteisiin verkkosivustollamme.
      \n" -"
      \n" -"Kiitos mielenkiinnostanne työtämme kohtaan.
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.subject" -msgstr "Käsikirjoituksenne on vastaanotettu" - -msgid "emails.submissionAck.body" -msgstr "" -"Hyvä {$authorName},
      \n" -"
      \n" -"Kiitos, että lähetitte meille käsikirjoituksenne "{$submissionTitle} " -"". Käyttämämme online-toimitusjärjestelmän avulla voitte seurata " -"käsikirjoituksen etenemistä toimitusprosessissa kirjautumalla julkaisijan " -"verkkosivustolle:
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"Käyttäjätunnus: {$authorUsername}
      \n" -"
      \n" -"Jos teillä on kysyttävää, otattehan yhteyttä minuun. Kiitos, että valitsitte " -"tämän julkaisijan työllenne.
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.subject" -msgstr "Käsikirjoitus vastaanotettu" - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Hei,
      \n" -"
      \n" -"{$submitterName} on lähettänyt käsikirjoituksen " -""{$submissionTitle}" julkaisijalle {$contextName}.
      \n" -"
      \n" -"Jos teillä on kysyttävää, otattehan yhteyttä minuun. Kiitos, että valitsitte " -"tämän julkaisijan työllenne.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.editorAssign.subject" -msgstr "Toimituksellinen toimeksianto" - -msgid "emails.editorAssign.body" -msgstr "" -"Hyvä {$editorialContactName},
      \n" -"
      \n" -"Käsikirjoitus "{$submissionTitle}" on annettu toimitusprosessin " -"ajaksi vastuullenne toimittajan roolissanne.
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"Käyttäjätunnus: {$editorUsername}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRequest.subject" -msgstr "Käsikirjoituksen arviointipyyntö" - -msgid "emails.reviewRequest.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"{$messageToReviewer}
      \n" -"
      \n" -"Kirjautukaa julkaisijan verkkosivustolle {$responseDueDate} mennessä " -"ilmoittaaksenne haluatteko suorittaa arvioinnin vai ette. Teidän on " -"kirjauduttava verkkosivustolle myös, jotta saatte pääsyn käsikirjoitukseen " -"ja voitte tallentaa arviointinne ja suosituksenne.
      \n" -"
      \n" -"Arvioinnin määräpäivä on {$reviewDueDate}.
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionReviewUrl}
      \n" -"
      \n" -"Käyttäjänimi: {$reviewerUserName}
      \n" -"
      \n" -"Kiitos, että harkitsette arvioijaksi ryhtymistä.
      \n" -"
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      \n" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Käsikirjoituksen arviointipyyntö" - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Uskon, että olisitte sopiva arvioija käsikirjoitukselle " -""{$submissionTitle}". Käsikirjoituksen abstrakti löytyy tämän " -"viestin lopusta. Toivon, että harkitsette tähän meille tärkeään tehtävään " -"ryhtymistä.
      \n" -"
      \n" -"Kirjautukaa julkaisijan verkkosivustolle {$weekLaterDate} mennessä " -"ilmoittaaksenne haluatteko suorittaa arvioinnin vai ette. Teidän on " -"kirjauduttava verkkosivustolle myös, jotta saatte pääsyn käsikirjoitukseen " -"ja voitte tallentaa arviointinne ja suosituksenne.
      \n" -"
      \n" -"Arvioinnin määräpäivä on {$reviewDueDate}.
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionReviewUrl}
      \n" -"
      \n" -"Kiitos, että harkitsette arvioijaksi ryhtymistä.
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      \n" -"
      \n" -"
      \n" -"
      \n" -""{$submissionTitle}"
      \n" -"
      \n" -"{$abstractTermIfEnabled}
      \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Käsikirjoituksen arviointipyyntö" - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Muistuttaisin ystävällisesti pyynnöstämme arvioida käsikirjoitus " -""{$submissionTitle}". Toivoimme saavamme vastauksenne " -"{$responseDueDate} mennessä, ja tämä sähköposti on lähetetty automaattisesti " -"määräajan umpeuduttua.\n" -"
      \n" -"{$messageToReviewer}
      \n" -"
      \n" -"Kirjautukaa julkaisijan verkkosivustolle ilmoittaaksenne haluatteko " -"suorittaa arvioinnin vai ette. Teidän on kirjauduttava verkkosivustolle " -"myös, jotta saatte pääsyn käsikirjoitukseen ja voitte tallentaa arvionne ja " -"suosituksenne.
      \n" -"
      \n" -"Arvioinnin määräpäivä on {$reviewDueDate}.
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionReviewUrl}
      \n" -"
      \n" -"Käyttäjätunnus: {$reviewerUserName}
      \n" -"
      \n" -"Kiitos, että harkitsette arvioijaksi ryhtymistä.
      \n" -"
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      \n" - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Käsikirjoituksen arviointipyyntö" - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Muistuttaisin ystävällisesti pyynnöstämme arvioida käsikirjoitus " -""{$submissionTitle}". Toivoimme saavamme vastauksenne " -"{$responseDueDate} mennessä, ja tämä sähköposti on lähetetty automaattisesti " -"määräajan umpeuduttua.\n" -"
      \n" -"Uskon, että olisitte sopiva arvioija kyseiselle käsikirjoitukselle. " -"Käsikirjoituksen abstrakti löytyy tämän sähköpostin lopusta. Toivon, että " -"harkitsette tähän meille tärkeään tehtävään ryhtymistä.
      \n" -"
      \n" -"Kirjautukaa julkaisijan verkkosivustolle ilmoittaaksenne haluatteko " -"suorittaa arvioinnin vai ette. Teidän on kirjauduttava verkkosivustolle " -"myös, jotta saatte pääsyn käsikirjoitukseen ja voitte tallentaa arviointinne " -"ja suosituksenne.
      \n" -"
      \n" -"Arvioinnin määräpäivä on {$reviewDueDate}.
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionReviewUrl}
      \n" -"
      \n" -"Kiitos, että harkitsette arvioijaksi ryhtymistä.
      \n" -"
      \n" -"Ystävällisin terveisin
      \n" -"{$editorialContactSignature}
      \n" -"
      \n" -"
      \n" -"
      \n" -""{$submissionTitle}"
      \n" -"
      \n" -"{$abstractTermIfEnabled}
      \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestAttached.subject" -msgstr "Käsikirjoituksen arviointipyyntö" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Uskon, että sopisitte erinomaisesti käsikirjoituksen " -""{$submissionTitle}" arvioijaksi, ja pyydänkin, että harkitsette " -"ryhtyvänne tähän meille tärkeään tehtävään. Arviointiohjeet löytyvät tämän " -"sähköpostin lopusta ja käsikirjoitus on liitteenä. Arviointinne sekä " -"suosituksenne tulisi lähettää minulle sähköpostitse {$reviewDueDate} " -"mennessä.
      \n" -"
      \n" -"Ilmoitattehan oletteko halukas suorittamaan arvioinnin vastaamalla tähän " -"viestiin {$weekLaterDate} mennessä.
      \n" -"
      \n" -"Kiitos, että harkitsette arvioijaksi ryhtymistä.
      \n" -"
      \n" -"{$editorialContactSignature}
      \n" -"
      \n" -"
      \n" -"Arviointiohjeet
      \n" -"
      \n" -"{$reviewGuidelines}
      \n" - -msgid "emails.reviewCancel.subject" -msgstr "Arviointipyynnön peruminen" - -msgid "emails.reviewCancel.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Olemme tässä vaiheessa päättäneet perua pyyntömme käsikirjoituksen " -""{$submissionTitle}" arvioinnista julkaisijalle {$contextName}. " -"Pahoittelemme tästä teille mahdollisesti aiheutuvaa vaivaa, ja toivomme, " -"että voimme kuitenkin tulevaisuudessa pyytää teitä avustamaan " -"arviointiprosessissa.
      \n" -"
      \n" -"Mikäli teillä on kysyttävää, otattehan yhteyttä minuun." - -msgid "emails.reviewConfirm.subject" -msgstr "Arviointipyynnön hyväksyminen" - -msgid "emails.reviewConfirm.body" -msgstr "" -"Hyvä(t) toimittaja(t),
      \n" -"
      \n" -"Olen halukas arvioimaan käsikirjoituksen "{$submissionTitle}". Kiitos, että pyysitte minua tähän tehtävään. Suoritan arvioinnin viimeistään sen määräaikaan {$reviewDueDate} mennessä.
      \n" -"
      \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.subject" -msgstr "Arviointipyynnön hylkääminen" - -msgid "emails.reviewDecline.body" -msgstr "" -"Hyvä(t) toimittaja(t),
      \n" -"
      \n" -"En valitettavasti voi tällä kertaa suorittaa käsikirjoituksen "{$submissionTitle}" arviointia. Kiitos, että pyysitte minua tähän tehtävään. Toivon, että otatte vastaisuudessakin minuun yhteyttä arviointeja koskien.
      \n" -"
      \n" -"{$reviewerName}" - -msgid "emails.reviewAck.subject" -msgstr "Käsikirjoituksen arvioinnin vastaanottoilmoitus" - -msgid "emails.reviewAck.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Kiitos käsikirjoituksen "{$submissionTitle}" arvioinnin " -"suorittamisesta. Arvostamme panostanne julkaisemamme työn laadun hyväksi." - -msgid "emails.reviewRemind.subject" -msgstr "Muistutus käsikirjoituksen arvioinnista" - -msgid "emails.reviewRemind.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Muistuttaisin ystävällisesti pyynnöstämme arvioida käsikirjoitus " -""{$submissionTitle}". Toivoimme saavamme arviointinne " -"{$reviewDueDate} mennessä, ja olisimme iloisia, mikäli voisitte lähettää sen " -"meille mahdollisimman pian.
      \n" -"
      \n" -"Jos ette muista käyttäjätunnustanne ja salasanaanne verkkosivustolle, " -"klikatkaa seuraavaa linkkiä vaihtaaksenne salasanan (salasana ja " -"käyttäjätunnus lähetetään teille sähköpostitse). {$passwordResetUrl}
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionReviewUrl}
      \n" -"
      \n" -"Käyttäjänimi: {$reviewerUserName}
      \n" -"
      \n" -"Vahvistattehan vielä, voitteko suorittaa tämän arvioinnin.
      \n" -"
      \n" -"Yhteydenottoanne odottaen,
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Muistutus käsikirjoituksen arvioinnista" - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Muistuttaisin ystävällisesti pyynnöstämme arvioida käsikirjoitus " -""{$submissionTitle}". Toivoimme saavamme arviointinne " -"{$reviewDueDate} mennessä, ja olisimme iloisia, mikäli voisitte lähettää sen " -"meille mahdollisimman pian.
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionReviewUrl}
      \n" -"
      \n" -"Vahvistattehan vielä, voitteko suorittaa tämän arvioinnin.
      \n" -"
      \n" -"Yhteydenottoanne odottaen,
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.subject" -msgstr "Automaattinen muistutus käsikirjoituksen arvioinnista" - -msgid "emails.reviewRemindAuto.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Muistuttaisin ystävällisesti pyynnöstämme arvioida käsikirjoitus " -""{$submissionTitle}". Toivoimme saavamme arviointinne " -"{$reviewDueDate} mennessä, ja tämä sähköposti on lähetetty automaattisesti " -"määräajan umpeuduttua. Olisimme iloisia, mikäli edelleen voisitte lähettää " -"arvioinnin meille, mahdollisimman pian.
      \n" -"
      \n" -"Jos ette muista käyttäjätunnustanne ja salasanaanne verkkosivustolle, " -"klikatkaa seuraavaa linkkiä vaihtaaksenne salasanan (salasana ja " -"käyttäjätunnus lähetetään teille sähköpostitse). {$passwordResetUrl}\"
      " -"\n" -"
      \n" -"Käsikirjoituksen URL: {$submissionReviewUrl}
      \n" -"
      \n" -"Käyttäjätunnus: {$reviewerUserName}
      \n" -"
      \n" -"Vahvistattehan vielä voitteko suorittaa tämän arvioinnin.
      \n" -"
      \n" -"Yhteydenottoanne odottaen,
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Automaattinen muistutus käsikirjoituksen arvioinnista" - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"Hyvä {$reviewerName},
      \n" -"
      \n" -"Muistuttaisin ystävällisesti pyynnöstämme arvioida käsikirjoitus " -""{$submissionTitle}". Toivoimme saavamme arviointinne " -"{$reviewDueDate} mennessä, ja tämä sähköposti on lähetetty automaattisesti " -"määräajan umpeuduttua. Olisimme iloisia, mikäli edelleen voisitte lähettää " -"arvioinnin meille, mahdollisimman pian.
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionReviewUrl}
      \n" -"
      \n" -"Vahvistattehan vielä, voitteko suorittaa tämän arvioinnin.
      \n" -"
      \n" -"Yhteydenottoanne odottaen,
      \n" -"{$editorialContactSignature}" - -msgid "emails.editorDecisionAccept.subject" -msgstr "Toimittajan päätös" - -msgid "emails.editorDecisionAccept.body" -msgstr "" -"Hyvä {$authorName},
      \n" -"
      \n" -"Olemme tehneet päätöksen käsikirjoitustanne "{$submissionTitle}" " -"koskien.
      \n" -"
      \n" -"Päätöksemme on:
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      " - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Toimittajan päätös" - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"Hyvä {$authorName},
      \n" -"
      \n" -"Olemme tehneet päätöksen käsikirjoitustanne "{$submissionTitle}" " -"koskien.
      \n" -"
      \n" -"Päätöksemme on:
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      " - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Toimittajan päätös" - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"Hyvä {$authorName},
      \n" -"
      \n" -"Käsikirjoituksenne "{$submissionTitle}" on nyt toimitettu ja " -"lähetämme sen tuotantoon.
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Toimittajan päätös" - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"Hyvä {$authorName},
      \n" -"
      \n" -"Olemme tehneet päätöksen käsikirjoitustanne "{$submissionTitle}" " -"koskien.
      \n" -"
      \n" -"Päätöksemme on:
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      " - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Toimittajan päätös" - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"Hyvä {$authorName},
      \n" -"
      \n" -"Olemme tehneet päätöksen käsikirjoitustanne "{$submissionTitle}" " -"koskien.
      \n" -"
      \n" -"Päätöksemme on:
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      " - -msgid "emails.editorDecisionDecline.subject" -msgstr "Toimittajan päätös" - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"Hyvä {$authorName},
      \n" -"
      \n" -"Olemme tehneet päätöksen käsikirjoitustanne "{$submissionTitle}" " -"koskien.
      \n" -"
      \n" -"Päätöksemme on:
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      " - -msgid "emails.editorRecommendation.subject" -msgstr "Toimittajan suositus" - -msgid "emails.editorRecommendation.body" -msgstr "" -"{$editors}:
      \n" -"
      \n" -"Suositus käsikirjoitusta ”{$submissionTitle}” koskien on:{$recommendation}<" -"br />\n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      " - -msgid "emails.copyeditRequest.subject" -msgstr "Teknistä toimittamista pyydetään" - -msgid "emails.copyeditRequest.body" -msgstr "" -"Hyvä {$participantName},
      \n" -"
      \n" -"Pyydän, että aloitatte käsikirjoituksen "{$submissionTitle}" " -"teknisen toimittamisen seuraavien vaiheiden mukaisesti:
      \n" -"
      \n" -"1. Klikatkaa alla olevaa Käsikirjoituksen URL-linkkiä.
      \n" -"2. Kirjautukaa julkaisijan sivustolle ja klikatkaa tiedostoa joka näkyy " -"Vaihe 1 -kohdassa.
      \n" -"3. Tutustukaa verkkosivulle lähetettyihin teknisen toimittamisen ohjeisiin.<" -"br />\n" -"4. Avatkaa ladatut tiedostot ja toimittakaa ne teknisesti. Voitte " -"tarvittaessa samalla lisätä kysymyksiä kirjoittajalle.
      \n" -"5. Tallentakaa teknisesti toimitetut tiedostot ja ladatkaa ne Teknisen " -"toimittamisen ensimmäiseen vaiheeseen (Vaihe 1).
      \n" -"6. Lähettäkää toimittajalle SÄHKÖPOSTIPOHJAN NIMI sähköposti.
      \n" -"
      \n" -"{$contextName} URL: {$contextUrl}
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"Käyttäjätunnus: {$participantUsername}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}" - -msgid "emails.layoutRequest.subject" -msgstr "Julkaistavia tiedostoja pyydetään" - -msgid "emails.layoutRequest.body" -msgstr "" -"Hyvä {$participantName},
      \n" -"
      \n" -"Käsikirjoitus "{$submissionTitle}" tulee nyt taittaa " -"julkaistaviksi tiedostoiksi seuraavien vaiheiden mukaisesti:
      \n" -"1. Klikatkaa alla olevaa Käsikirjoituksen URL-linkkiä.
      \n" -"2. Kirjautukaa julkaisijan sivustolle ja käyttäkää taiton tiedostoja " -"laatiaksenne julkaistavat tiedostot julkaisijan standardien mukaisesti.
      " -"\n" -"3. Lähettäkää toimittajalle \"Taiton julkaistavat tiedostot valmiita\" " -"-sähköposti.
      \n" -"
      \n" -"{$contextName} URL: {$contextUrl}
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"Käyttäjätunnus: {$participantUsername}
      \n" -"
      \n" -"Mikäli ette voi ryhtyä tähän tehtävään juuri nyt, tai teillä on kysyttävää, " -"otattehan minuun yhteyttä. Kiitos panoksestanne tämän julkaisijan hyväksi." - -msgid "emails.layoutComplete.subject" -msgstr "Taiton julkaistavat tiedostot valmiita" - -msgid "emails.layoutComplete.body" -msgstr "" -"Hyvä {$editorialContactName},
      \n" -"
      \n" -"Käsikirjoituksen "{$submissionTitle}" julkaistavat tiedostot on nyt taitettu ja ne ovat valmiit oikolukua varten.
      \n" -"
      \n" -"Mikäli teillä on kysyttävää, otattehan minuun yhteyttä.
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$signatureFullName}" - -msgid "emails.indexRequest.subject" -msgstr "Indeksointia pyydetään" - -msgid "emails.indexRequest.body" -msgstr "" -"Hyvä {$participantName},
      \n" -"
      \n" -"Käsikirjoitukselle "{$submissionTitle}" tulee nyt luoda " -"indeksointitiedot seuraavien vaiheiden mukaisesti:
      \n" -"1. Klikatkaa alla olevaa Käsikirjoituksen URL-linkkiä.
      \n" -"2. Kirjautukaa julkaisijan sivustolle ja käyttäkää Sivujen korjausvedokset -" -"tiedostoa laatiaksenne julkaistavat tiedostot julkaisijan standardien " -"mukaisesti.
      \n" -"3. Lähettäkää toimittajalle \"Indeksoinnin julkaistavat tiedostot valmiita\" " -"-sähköposti.
      \n" -"
      \n" -"{$contextName} URL: {$contextUrl}
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"Käyttäjätunnus: {$participantUsername}
      \n" -"
      \n" -"Mikäli ette voi ryhtyä tähän tehtävään juuri nyt, tai teillä on kysyttävää, " -"otattehan minuun yhteyttä. Kiitos panoksestanne tämän julkaisun hyväksi.
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}" - -msgid "emails.indexComplete.subject" -msgstr "Indeksoinnin julkaistavat tiedostot valmiita" - -msgid "emails.indexComplete.body" -msgstr "" -"Hyvä {$editorialContactName},
      \n" -"
      \n" -"Käsikirjoituksen "{$submissionTitle}" indeksointitiedot on nyt luotu ja ne ovat valmiit oikolukua varten.
      \n" -"
      \n" -"Mikäli teillä on kysyttävää, otattehan minuun yhteyttä.
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$signatureFullName}" - -msgid "emails.emailLink.subject" -msgstr "Mahdollisesti kiinnostava käsikirjoitus" - -msgid "emails.emailLink.body" -msgstr "Ajattelin, että sinua saattaisi kiinnostaa {$authorName}:n kirjoittama \"{$submissionTitle}\". Sen julkaisutiedot ovat {$contextName}, Nide {$volume} Nro. {$number} ({$year}), ja se löytyy osoitteesta "{$monographUrl}"." - -msgid "emails.notifySubmission.subject" -msgstr "Ilmoitus käsikirjoitukseen liittyen" - -msgid "emails.notifySubmission.body" -msgstr "" -"Sinulle on saapunut viesti käyttäjältä {$sender} käsikirjoitukseen "{$submissionTitle}" ({$monographDetailsUrl}) liittyen:
      \n" -"
      \n" -"\t\t{$message}
      \n" -"
      \n" -"\t\t" - -msgid "emails.notifyFile.subject" -msgstr "Ilmoitus käsikirjoitustiedostoon liittyen" - -msgid "emails.notifyFile.body" -msgstr "" -"Sinulle on saapunut viesti käyttäjältä {$sender} käsikirjoitukseen {$submissionTitle} ({$monographDetailsUrl} liittyvää tiedostoa "{$fileName}" koskien:
      \n" -"
      \n" -"\t\t{$message}
      \n" -"
      \n" -"\t\t" - -msgid "emails.notificationCenterDefault.subject" -msgstr "Viesti julkaisijaa {$contextName} koskien" - -msgid "emails.notificationCenterDefault.body" -msgstr "Kirjoita viesti." - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Toimittajan päätös" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\tHyvä {$authorName},
      \n" -"
      \n" -"Olemme tehneet päätöksen käsikirjoitustanne "{$submissionTitle}" " -"koskien.
      \n" -"
      \n" -"Päätöksemme on: Käsikirjoitus hylätty
      \n" -"
      \n" -"Käsikirjoituksen URL: {$submissionUrl}
      \n" -"
      \n" -"Ystävällisin terveisin,
      \n" -"{$editorialContactSignature}
      \n" -"\t\t" - -msgid "emails.passwordResetConfirm.description" -msgstr "" -"Tämä sähköpostiviesti lähetetään rekisteröityneelle käyttäjälle, joka " -"ilmoittaa unohtaneensa salasanansa tai joka ei pysty kirjautumaan. Viesti " -"sisältää ULR:n, jonka kautta salasana voidaan vaihtaa." - -msgid "emails.announcement.description" -msgstr "This email is sent when a new announcement is created." - -msgid "emails.announcement.body" -msgstr "" -"{$title}
      \n" -"
      \n" -"{$summary}
      \n" -"
      \n" -"Verkkosivuillamme voit lukea koko ilmoituksen." - -msgid "emails.announcement.subject" -msgstr "{$title}" - -msgid "emails.statisticsReportNotification.description" -msgstr "" -"This email is automatically sent monthly to editors and journal managers to " -"provide them a system health overview." - -msgid "emails.statisticsReportNotification.body" -msgstr "" -"\n" -"{$name},
      \n" -"
      \n" -"Toimitustyön raportti {$month}/{$year} on nyt valmis. Kuukautta koskevat " -"keskeiset luvut ovat alla.
      \n" -"
        \n" -"\t
      • Uudet käsikirjoitukset: {$newSubmissions}
      • \n" -"\t
      • Hylätyt käsikirjoitukset: {$declinedSubmissions}
      • \n" -"\t
      • Hyväksytyt käsikirjoitukset: {$acceptedSubmissions}
      • \n" -"\t
      • Käsikirjoitusten kokonaismäärä: {$totalSubmissions}
      • \n" -"
      \n" -"Kirjaudu julkaisuun nähdäksesi yksityiskohtaisemmat toimitustyön tilastot ja julkaistujen kirjojen tilastot. Kopio tämän " -"kuun toimitustyön tilastoista on liitteenä.
      \n" -"
      \n" -"Terveisin,
      \n" -"{$principalContactSignature}" - -msgid "emails.statisticsReportNotification.subject" -msgstr "Toimitustyötä koskeva raportti {$month}/{$year}" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "" -"This email is send to the author if the editor declines his submission " -"initially, before the review stage" - -msgid "emails.notificationCenterDefault.description" -msgstr "" -"The default (blank) message used in the Notification Center Message " -"Listbuilder." - -msgid "emails.notifyFile.description" -msgstr "A notification from a user sent from a file information center modal" - -msgid "emails.notifySubmission.description" -msgstr "" -"A notification from a user sent from a submission information center modal." - -msgid "emails.emailLink.description" -msgstr "" -"This email template provides a registered reader with the opportunity to " -"send information about a monograph to somebody who may be interested. It is " -"available via the Reading Tools and must be enabled by the Press Manager in " -"the Reading Tools Administration page." - -msgid "emails.indexComplete.description" -msgstr "" -"This email from the Indexer to the Series Editor notifies them that the " -"index creation process has been completed." - -msgid "emails.indexRequest.description" -msgstr "" -"This email from the Series Editor to the Indexer notifies them that they " -"have been assigned the task of creating indexes for a submission. It " -"provides information about the submission and how to access it." - -msgid "emails.layoutComplete.description" -msgstr "" -"This email from the Layout Editor to the Series Editor notifies them that " -"the layout process has been completed." - -msgid "emails.layoutRequest.description" -msgstr "" -"This email from the Series Editor to the Layout Editor notifies them that " -"they have been assigned the task of performing layout editing on a " -"submission. It provides information about the submission and how to access " -"it." - -msgid "emails.copyeditRequest.description" -msgstr "" -"This email is sent by a Series Editor to a submission's Copyeditor to " -"request that they begin the copyediting process. It provides information " -"about the submission and how to access it." - -msgid "emails.editorRecommendation.description" -msgstr "" -"This email from the recommending Editor or Section Editor to the decision " -"making Editors or Section Editors notifies them of a final recommendation " -"regarding the submission." - -msgid "emails.editorDecisionDecline.description" -msgstr "" -"This email from the Editor or Series Editor to an Author notifies them of a " -"final decision regarding their submission." - -msgid "emails.editorDecisionResubmit.description" -msgstr "" -"This email from the Editor or Series Editor to an Author notifies them of a " -"final decision regarding their submission." - -msgid "emails.editorDecisionRevisions.description" -msgstr "" -"This email from the Editor or Series Editor to an Author notifies them of a " -"final decision regarding their submission." - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "" -"This email from the Editor or Series Editor to an Author notifies them that " -"their submission is being sent to production." - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "" -"This email from the Editor or Series Editor to an Author notifies them that " -"their submission is being sent to an external review." - -msgid "emails.editorDecisionAccept.description" -msgstr "" -"This email from the Editor or Series Editor to an Author notifies them of a " -"final decision regarding their submission." - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "" -"This email is automatically sent when a reviewer's due date elapses (see " -"Review Options under Settings > Workflow > Review) and one-click reviewer " -"access is enabled. Scheduled tasks must be enabled and configured (see the " -"site configuration file)." - -msgid "emails.reviewRemindAuto.description" -msgstr "" -"This email is automatically sent when a reviewer's due date elapses (see " -"Review Options under Settings > Workflow > Review) and one-click reviewer " -"access is disabled. Scheduled tasks must be enabled and configured (see the " -"site configuration file)." - -msgid "emails.reviewRemindOneclick.description" -msgstr "" -"This email is sent by a Series Editor to remind a reviewer that their review " -"is due." - -msgid "emails.reviewRemind.description" -msgstr "" -"This email is sent by a Series Editor to remind a reviewer that their review " -"is due." - -msgid "emails.reviewAck.description" -msgstr "" -"This email is sent by a Series Editor to confirm receipt of a completed " -"review and thank the reviewer for their contributions." - -msgid "emails.reviewDecline.description" -msgstr "" -"This email is sent by a Reviewer to the Series Editor in response to a " -"review request to notify the Series Editor that the review request has been " -"declined." - -msgid "emails.reviewConfirm.description" -msgstr "" -"This email is sent by a Reviewer to the Series Editor in response to a " -"review request to notify the Series Editor that the review request has been " -"accepted and will be completed by the specified date." - -msgid "emails.reviewReinstate.description" -msgstr "" -"This email is sent by the Section Editor to a Reviewer who has a submission " -"review in progress to notify them that the review has been cancelled." - -msgid "emails.reviewReinstate.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Haluaisimme uusia käsikirjoitusta "{$submissionTitle}," koskevan " -"arviointipyyntömme julkaisijalta {$contextName}. \n" -"Toivomme, että pystytte ottamaan arvioinnin vastaan.
      \n" -"
      \n" -"Mikäli teillä on kysymyksiä, olkaa yhteydessä." - -msgid "emails.reviewReinstate.subject" -msgstr "Arviointipyyntö uusittu" - -msgid "emails.reviewCancel.description" -msgstr "" -"This email is sent by the Series Editor to a Reviewer who has a submission " -"review in progress to notify them that the review has been cancelled." - -msgid "emails.reviewRequestAttached.description" -msgstr "" -"This email is sent by the Series Editor to a Reviewer to request that they " -"accept or decline the task of reviewing a submission. It includes the " -"submission as an attachment. This message is used when the Email-Attachment " -"Review Process is selected in Management > Settings > Workflow > Review. (" -"Otherwise see REVIEW_REQUEST.)" - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "" -"This email is automatically sent when a reviewer's confirmation due date " -"elapses (see Review Options under Settings > Workflow > Review) and one-" -"click reviewer access is enabled. Scheduled tasks must be enabled and " -"configured (see the site configuration file)." - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "" -"This email is automatically sent when a reviewer's confirmation due date " -"elapses (see Review Options under Settings > Workflow > Review) and one-" -"click reviewer access is disabled. Scheduled tasks must be enabled and " -"configured (see the site configuration file)." - -msgid "emails.reviewRequestOneclick.description" -msgstr "" -"This email from the Series Editor to a Reviewer requests that the reviewer " -"accept or decline the task of reviewing a submission. It provides " -"information about the submission such as the title and abstract, a review " -"due date, and how to access the submission itself. This message is used when " -"the Standard Review Process is selected in Management > Settings > Workflow >" -" Review, and one-click reviewer access is enabled." - -msgid "emails.reviewRequest.description" -msgstr "" -"This email from the Series Editor to a Reviewer requests that the reviewer " -"accept or decline the task of reviewing a submission. It provides " -"information about the submission such as the title and abstract, a review " -"due date, and how to access the submission itself. This message is used when " -"the Standard Review Process is selected in Management > Settings > Workflow >" -" Review. (Otherwise see REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.editorAssign.description" -msgstr "" -"This email notifies a Series Editor that the Editor has assigned them the " -"task of overseeing a submission through the editing process. It provides " -"information about the submission and how to access the press site." - -msgid "emails.submissionAckNotUser.description" -msgstr "" -"This email, when enabled, is automatically sent to the other authors who are " -"not users within OMP specified during the submission process." - -msgid "emails.submissionAck.description" -msgstr "" -"This email, when enabled, is automatically sent to an author when he or she " -"completes the process of submitting a manuscript to the press. It provides " -"information about tracking the submission through the process and thanks the " -"author for the submission." - -msgid "emails.publishNotify.description" -msgstr "" -"This email is sent to registered readers via the \"Notify Users\" link in " -"the Editor's User Home. It notifies readers of a new book and invites them " -"to visit the press at a supplied URL." - -msgid "emails.reviewerRegister.description" -msgstr "" -"This email is sent to a newly registered reviewer to welcome them to the " -"system and provide them with a record of their username and password." - -msgid "emails.userValidate.description" -msgstr "" -"This email is sent to a newly registered user to welcome them to the system " -"and provide them with a record of their username and password." - -msgid "emails.userRegister.description" -msgstr "" -"This email is sent to a newly registered user to welcome them to the system " -"and provide them with a record of their username and password." - -msgid "emails.passwordReset.description" -msgstr "" -"Tämä sähköposti lähetetään rekisteröityneille käyttäjille, kun he ovat " -"onnistuneesti uusineet salasanansa PASSWORD_RESET_CONFIRM-sähköpostipohjan " -"kuvaamalla tavalla." - -msgid "emails.notification.description" -msgstr "" -"Sähköposti lähetetään rekisteröityneille käyttäjille, jotka ovat tilanneet " -"tämän tyyppiset ilmoitukset sähköpostilla." diff --git a/locale/fi_FI/locale.po b/locale/fi_FI/locale.po deleted file mode 100644 index 7bc414339f1..00000000000 --- a/locale/fi_FI/locale.po +++ /dev/null @@ -1,1526 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" -"PO-Revision-Date: 2020-12-11 19:15+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.round" -msgstr "Kierros {$round}" - -msgid "monograph.audience" -msgstr "Kohderyhmä" - -msgid "monograph.coverImage" -msgstr "Kansikuva" - -msgid "monograph.currentCoverImage" -msgstr "Nykyinen kuva" - -msgid "monograph.currentCoverImageReload" -msgstr "Tallenna muutokset nähdäksesi uuden kansikuvan." - -msgid "monograph.audience.rangeQualifier" -msgstr "Kohderyhmän tarkenteen tyyppi" - -msgid "monograph.audience.rangeFrom" -msgstr "Kohderyhmän tarkenne (alkaen)" - -msgid "monograph.audience.rangeTo" -msgstr "Kohderyhmän tarkenne (asti)" - -msgid "monograph.audience.rangeExact" -msgstr "Kohderyhmän tarkenne (tarkalleen)" - -msgid "monograph.languages" -msgstr "Kielet (englanti, ranska, espanja)" - -msgid "monograph.publicationFormats" -msgstr "Julkaisumuodot" - -msgid "monograph.publicationFormat" -msgstr "Muoto" - -msgid "monograph.publicationFormatDetails" -msgstr "Tietoja saatavilla olevasta julkaisumuodosta: {$format}" - -msgid "monograph.miscellaneousDetails" -msgstr "Tietoja tästä kirjasta" - -msgid "monograph.carousel.publicationFormats" -msgstr "Muodot:" - -msgid "monograph.type" -msgstr "Käsikirjoitustyyppi" - -msgid "submission.pageProofs" -msgstr "Sivujen korjausvedokset" - -msgid "monograph.proofReadingDescription" -msgstr "Taittaja lataa tuotantovalmiit tiedostot, jotka on täällä valmisteltu julkaisemista varten. Klikkaa Valitse-kohtaa valitaksesi kirjoittajia ja muita henkilöitä oikolukemaan sivujen korjausvedokset, jotka on korjattu ja ladattu hyväksyttäväksi ennen julkaisemista." - -msgid "monograph.task.addNote" -msgstr "Lisää tehtävään" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Avoin saatavuus" - -msgid "monograph.publicationFormat.imprint" -msgstr "Kustantajan markkinointinimi (tuotenimi)" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Sivumäärät" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Alkusivut" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Lopputekstit" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Tuotteen kokoonpano" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Tuotteen tiedot (ei pakollinen)" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Tuotteen tunnistetiedot" - -msgid "monograph.publicationFormat.price" -msgstr "Hinta" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Hinta vaaditaan." - -msgid "monograph.publicationFormat.priceType" -msgstr "Hintatyyppi" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Alennusprosentti, mikäli käytössä" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Tuotteen saatavuus" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Palautettavuustiedot" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Digitaaliset tiedot" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Fyysiset mitat" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Tiedoston koko megatavuina (Mt)" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Annetaanko oma tiedostokoon arvo?" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Korkeus" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Paksuus" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Paino" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Leveys" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Valmistusmaa" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Digitaalinen tekninen suojaus" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Tuotteen jakelualue" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Verokanta" - -msgid "monograph.publicationFormat.taxType" -msgstr "Verotyyppi" - -msgid "monograph.publicationFormat.formatMetadata" -msgstr "Muodon metatiedot" - -msgid "monograph.publicationFormat.isApproved" -msgstr "Sisällytä tämän julkaisumuodon metatiedot tämän kirjan luettelomerkintöihin." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Markkina- ja hintatiedot puuttuvat." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Tunnistuskoodi puuttuu." - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Joitakin metatietokenttiä puuttuu." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "

      Valitsemaasi julkaisumuotoa ei ole enää olemassa tälle kirjalle.

      " - -msgid "monograph.publicationFormat.openTab" -msgstr "Avaa julkaisumuodon välilehti." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Julkaisumuoto" - -msgid "grid.catalogEntry.nameRequired" -msgstr "Nimi vaaditaan." - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Kelvollinen hinta vaaditaan." - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Muodon tiedot" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Fyysinen muoto" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Tämä muoto tulee saataville erilliselle verkkosivustolle" - -msgid "grid.catalogEntry.remoteURL" -msgstr "Etä-ylläpidetyn sisällön URL-osoite" - -msgid "grid.catalogEntry.monographRequired" -msgstr "Kirjan tunniste vaaditaan." - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Julkaisumuoto on valittava." - -msgid "grid.catalogEntry.availability" -msgstr "Saatavuus" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Saatavilla" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Ei saatavilla" - -msgid "grid.catalogEntry.proof" -msgstr "Korjausvedos" - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Muodon hyväksyminen" - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "

      Hyväksy tämän muodon metatiedot. Metatiedot voidaan tarkistaa Luettelomerkintä-paneelista.

      " - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

      Näytä, että tämän muodon metatietoja ei ole hyväksytty.

      " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Muodon saatavuus" - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "

      Tee tämä muoto lukijoiden saatavillaolevaksi. Ladattavat tiedostot sekä kaikki muut jaetut materiaalit tulevat näkyviin kirjan luettelomerkintöihin.

      " - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "

      Tämä muoto poistetaan lukijoiden saatavilta. Mitkään ladattavat tiedostot tai muut jaetut materiaalit eivät ole enää näkyvillä kirjan luettelomerkinnöissä.

      " - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Luettelomerkintää ei hyväksytty." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Muotoa ei luettelomerkinnässä." - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Korjausvedosta ei hyväksytty." - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Hyväksytty" - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Odottaa hyväksyntää" - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Digitaalisten muotojen tiedostokoko vaaditaan." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Tuotteen saatavuuskoodi vaaditaan." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Tuotteen kokoonpanokoodi on valittava." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Koodi" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "ONIX-koodityyppi" - -msgid "grid.catalogEntry.codeRequired" -msgstr "Tunnistuskoodi vaaditaan." - -msgid "grid.catalogEntry.valueRequired" -msgstr "Arvo vaaditaan." - -msgid "grid.catalogEntry.salesRights" -msgstr "Myyntioikeudet" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Koodi" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Myyntioikeustyyppi" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Ulkomaat (ROW)?" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "Rastita tämä ruutu (alla), jos haluat käyttää tätä Myyntioikeudet-merkintää kaikenkattavana julkaisumuodollesi. Maita ja alueita ei tällöin tarvitse valita." - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "Tälle julkaisumuodolle on jo määritelty Ulkomaat-myyntityyppi." - -msgid "grid.catalogEntry.countries" -msgstr "Maat" - -msgid "grid.catalogEntry.regions" -msgstr "Alueet" - -msgid "grid.catalogEntry.included" -msgstr "Sisällytetään" - -msgid "grid.catalogEntry.excluded" -msgstr "Ei sisällytetä" - -msgid "grid.catalogEntry.markets" -msgstr "Markkina-alueet" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Alue" - -msgid "grid.catalogEntry.publicationDates" -msgstr "Julkaisupäivämäärät" - -msgid "grid.catalogEntry.roleRequired" -msgstr "Edustajan rooli vaaditaan." - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Aikamääreen muoto vaaditaan." - -msgid "grid.catalogEntry.dateValue" -msgstr "Päivämäärä" - -msgid "grid.catalogEntry.dateRole" -msgstr "Rooli" - -msgid "grid.catalogEntry.dateFormat" -msgstr "Aikamääreen muoto" - -msgid "grid.catalogEntry.dateRequired" -msgstr "Päivämäärä vaaditaan. Aikamääreen arvon on vastattava valittua aikamääreen muotoa." - -msgid "grid.catalogEntry.representatives" -msgstr "Edustajat" - -msgid "grid.catalogEntry.representativeType" -msgstr "Edustajatyyppi" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agentit" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Välittäjät" - -msgid "grid.catalogEntry.agent" -msgstr "Agentti" - -msgid "grid.catalogEntry.agentTip" -msgstr "Mikäli haluat, voit valita agentin edustamaan sinua määritellyllä alueella (ei pakollinen)." - -msgid "grid.catalogEntry.supplier" -msgstr "Välittäjä" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Valitse rooli:" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Rooli" - -msgid "grid.catalogEntry.representativeName" -msgstr "Nimi" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Puhelin" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "Sähköposti" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Verkkosivusto" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Edustajan tunniste" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Edustajan tunnisteen tyyppi (suositeltava tunniste: yrityksen GLN-numero)" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "Voit jättää seuraavan osion tyhjäksi, jos tarjoat itse omia palveluitasi asiakkaillesi." - -msgid "grid.action.addRepresentative" -msgstr "Lisää edustaja" - -msgid "grid.action.editRepresentative" -msgstr "Muokkaa tätä edustajaa" - -msgid "grid.action.deleteRepresentative" -msgstr "Poista tämä edustaja" - -msgid "spotlight" -msgstr "Nosto" - -msgid "spotlight.spotlights" -msgstr "Nostot" - -msgid "spotlight.noneExist" -msgstr "Ei yhtään nostoa." - -msgid "spotlight.title.homePage" -msgstr "Nostetut" - -msgid "spotlight.author" -msgstr "Kirjoittaja, " - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Nostettu nimeke" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Etusivu" - -msgid "grid.content.spotlights.form.location" -msgstr "Noston sijainti" - -msgid "grid.content.spotlights.form.item" -msgstr "Anna nostettava nimeke (automaattinen täydennys)" - -msgid "grid.content.spotlights.form.title" -msgstr "Noston otsikko" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Kirja" - -msgid "grid.content.spotlights.itemRequired" -msgstr "Kohde vaaditaan." - -msgid "grid.content.spotlights.titleRequired" -msgstr "Noston otsikko on pakollinen." - -msgid "grid.content.spotlights.locationRequired" -msgstr "Valitse tämän noston sijainti." - -msgid "grid.action.editSpotlight" -msgstr "Muokkaa tätä nostoa" - -msgid "grid.action.deleteSpotlight" -msgstr "Poista tämä nosto" - -msgid "grid.action.addSpotlight" -msgstr "Lisää nosto" - -msgid "manager.series.open" -msgstr "Käsikirjoitukset vapaasti lähetettävissä" - -msgid "manager.series.indexed" -msgstr "Indeksoitu" - -msgid "grid.libraryFiles.column.files" -msgstr "Tiedostot" - -msgid "grid.action.catalogEntry" -msgstr "Näytä luettelomerkintä-lomake" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Muoto näkyy luettelomerkinnässä" - -msgid "grid.action.editFormat" -msgstr "Muokkaa tätä muotoa" - -msgid "grid.action.deleteFormat" -msgstr "Poista tämä muoto" - -msgid "grid.action.addFormat" -msgstr "Lisää julkaisumuoto" - -msgid "grid.action.approveProof" -msgstr "Hyväksy korjausvedos indeksointia ja luetteloon sisällyttämistä varten" - -msgid "grid.action.pageProofApproved" -msgstr "Sivujen korjausvedokset -tiedosto on valmis julkaistavaksi" - -msgid "grid.action.addAnnouncement" -msgstr "Lisää ilmoitus" - -msgid "grid.action.newCatalogEntry" -msgstr "Uusi luettelomerkintä" - -msgid "grid.action.publicCatalog" -msgstr "Näytä tämä kohde luettelossa" - -msgid "grid.action.feature" -msgstr "Näytä tai piilota esittelynäyttö" - -msgid "grid.action.featureMonograph" -msgstr "Esittele luettelokarusellissa" - -msgid "grid.action.releaseMonograph" -msgstr "Merkitse tämä käsikirjoitus uutuudeksi" - -msgid "grid.action.manageCategories" -msgstr "Määritä kategoriat tälle julkaisijalle" - -msgid "grid.action.manageSeries" -msgstr "Määritä sarjat tälle julkaisijalle" - -msgid "grid.action.addCode" -msgstr "Lisää koodi" - -msgid "grid.action.editCode" -msgstr "Muokkaa tätä koodia" - -msgid "grid.action.deleteCode" -msgstr "Poista tämä koodi" - -msgid "grid.action.addRights" -msgstr "Lisää myyntioikeudet" - -msgid "grid.action.editRights" -msgstr "Muokkaa näitä oikeuksia" - -msgid "grid.action.deleteRights" -msgstr "Poista nämä oikeudet" - -msgid "grid.action.addMarket" -msgstr "Lisää markkina" - -msgid "grid.action.editMarket" -msgstr "Muokkaa tätä markkinaa" - -msgid "grid.action.deleteMarket" -msgstr "Poista tämä markkina" - -msgid "grid.action.addDate" -msgstr "Lisää julkaisupäivämäärä" - -msgid "grid.action.editDate" -msgstr "Muokkaa tätä päivämäärää" - -msgid "grid.action.deleteDate" -msgstr "Poista tämä päivämäärä" - -msgid "grid.action.createContext" -msgstr "Luo uusi julkaisija" - -msgid "grid.action.publicationFormatTab" -msgstr "Näytä julkaisumuodon välilehti" - -msgid "grid.action.moreAnnouncements" -msgstr "Siirry julkaisijan Ilmoitukset-sivulle" - -msgid "grid.action.submissionEmail" -msgstr "Klikkaa lukeaksesi tämän sähköpostin" - -msgid "grid.action.approveProofs" -msgstr "Näytä korjausvedosten kehikko" - -msgid "grid.action.proofApproved" -msgstr "Muoto on oikoluettu" - -msgid "grid.action.availableRepresentation" -msgstr "Hyväksy/hylkää tämä muoto" - -msgid "grid.action.formatAvailable" -msgstr "Vaihda tämän muodon saatavuutta (saatavilla/ei saatavilla)" - -msgid "grid.reviewAttachments.add" -msgstr "Lisää arviointiin liite" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Saatavilla olevat tiedostot" - -msgid "series.series" -msgstr "Sarja" - -msgid "series.featured.description" -msgstr "Tämä sarja tulee näkyville päävalikkoon" - -msgid "series.path" -msgstr "Polku" - -msgid "catalog.manage" -msgstr "Luettelon hallinnointi" - -msgid "catalog.manage.newReleases" -msgstr "Uutuudet" - -msgid "catalog.manage.category" -msgstr "Kategoria" - -msgid "catalog.manage.series" -msgstr "Sarja" - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series.issn.validation" -msgstr "Anna kelvollinen ISSN." - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "Verkkokirjan ja painetun kirjan ISSN-tunnusten tulee erota toisistaan." - -msgid "catalog.manage.series.onlineIssn" -msgstr "Verkkokirjan ISSN" - -msgid "catalog.manage.series.printIssn" -msgstr "Painetun kirjan ISSN" - -msgid "catalog.selectSeries" -msgstr "Valitse sarja" - -msgid "catalog.selectCategory" -msgstr "Valitse kategoria" - -msgid "catalog.manage.homepageDescription" -msgstr "Valittujen kirjojen kansikuvat näkyvät etusivun yläosassa vieritettävänä joukkona. Klikkaa ensin \"Esittele\"-kohtaa ja sitten tähteä lisätäksesi kirjan karuselliin; klikkaa huutomerkkiä merkitäksesi julkaisun uutuudeksi; muuta järjestystä vetämällä ja pudottamalla." - -msgid "catalog.manage.categoryDescription" -msgstr "Klikkaa \"Esittele\"-kohtaa ja sen jälkeen tähteä valitaksesi tämän kategorian esiteltävän kirjan; muuta järjestystä vetämällä ja pudottamalla." - -msgid "catalog.manage.seriesDescription" -msgstr "Klikkaa \"Esittele\"-kohtaa ja sen jälkeen tähteä valitaksesi tämän sarjan esiteltävän kirjan; muuta järjestystä vetämällä ja pudottamalla. Toimittajan/toimittajien nimet ja sarjan nimeke ovat sarjan tunnisteita sekä kategorian sisällä että yksittäisinä." - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Karuselli" - -msgid "catalog.manage.newRelease" -msgstr "Uutuus" - -msgid "catalog.manage.manageSeries" -msgstr "Hallinnoi sarjoja" - -msgid "catalog.manage.manageCategories" -msgstr "Hallinnoi kategorioita" - -msgid "catalog.manage.noMonographs" -msgstr "Ei osoitettuja kirjoja." - -msgid "catalog.manage.featured" -msgstr "Esittelyssä" - -msgid "catalog.manage.categoryFeatured" -msgstr "Esiteltävät kategoriassa" - -msgid "catalog.manage.seriesFeatured" -msgstr "Esiteltävät sarjassa" - -msgid "catalog.manage.featuredSuccess" -msgstr "Kirja on esittelyssä." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Kirja ei ole esittelyssä." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Kirja on merkitty uutuudeksi." - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Kirjaa ei ole merkitty uutuudeksi." - -msgid "catalog.manage.feature.newRelease" -msgstr "Uutuus" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Uutuus kategoriassa" - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Uutuus sarjassa" - -msgid "catalog.manage.nonOrderable" -msgstr "Tämä kirja ei ole tilattavissa ennen kuin se on esittelyssä." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Hae nimekkeen tai kirjoittajan mukaan" - -msgid "catalog.noTitles" -msgstr "Yhtään nimekettä ei ole vielä julkaistu." - -msgid "catalog.noTitlesNew" -msgstr "Uutuuksia ei saatavilla tällä hetkellä." - -msgid "catalog.noTitlesSearch" -msgstr "Haullasi \"{$searchQuery}\" ei löytynyt nimekkeitä." - -msgid "catalog.noTitlesSection" -msgstr "Tähän osastoon ei ole vielä julkaistu nimekkeitä." - -msgid "catalog.browseTitles" -msgstr "{$numTitles} nimekettä" - -msgid "catalog.feature" -msgstr "Esittele" - -msgid "catalog.featured" -msgstr "Esittelyssä" - -msgid "catalog.featuredBooks" -msgstr "Esittelyssä olevat kirjat" - -msgid "catalog.foundTitleSearch" -msgstr "Haullasi \"{$searchQuery}\" löytyi yksi (1) nimeke." - -msgid "catalog.foundTitlesSearch" -msgstr "Haullasi \"{$searchQuery}\" löytyi {$number} nimekettä." - -msgid "catalog.allBooks" -msgstr "Kaikki kirjat" - -msgid "catalog.newReleases" -msgstr "Uutuudet" - -msgid "catalog.dateAdded" -msgstr "Lisätty" - -msgid "catalog.publicationInfo" -msgstr "Julkaisutiedot" - -msgid "catalog.published" -msgstr "Julkaistu" - -msgid "catalog.forthcoming" -msgstr "Tulossa" - -msgid "catalog.categories" -msgstr "Kategoriat" - -msgid "catalog.parentCategory" -msgstr "Pääkategoria" - -msgid "catalog.subcategories" -msgstr "Alakategoriat" - -msgid "catalog.aboutTheAuthor" -msgstr "Tietoa roolista {$roleName}" - -msgid "catalog.coverImageTitle" -msgstr "Kirjan {$monographTitle} kansi" - -msgid "catalog.loginRequiredForPayment" -msgstr "Huomaa: Jotta voit ostaa nimekkeitä, sinun on ensin kirjauduttava sisään. Kun valitset ostettavan nimekkeen, sinut ohjataan kirjautumissivulle. Open Access -kuvakkeella merkittyjä nimekkeitä voidaan ladata maksutta ilman sisäänkirjautumista." - -msgid "catalog.sortBy" -msgstr "Kirjojen järjestys" - -msgid "catalog.sortBy.seriesDescription" -msgstr "Valitse miten tämän sarjan kirjat järjestetään." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Valitse miten tämän kategorian kirjat järjestetään." - -msgid "catalog.sortBy.catalogDescription" -msgstr "Valitse miten luettelon kirjat järjestetään." - -msgid "catalog.sortBy.titleAsc" -msgstr "Nimeke (A-Ö)" - -msgid "catalog.sortBy.titleDesc" -msgstr "Nimeke (Ö-A)" - -msgid "catalog.sortBy.datePublishedAsc" -msgstr "Julkaisupäivämäärä (vanhin ensin)" - -msgid "catalog.sortBy.datePublishedDesc" -msgstr "Julkaisupäivämäärä (uusin ensin)" - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Sijoitus sarjassa (alin ensin)" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Sijoitus sarjassa (korkein ensin)" - -msgid "catalog.viewableFile.title" -msgstr "{$type}-näkymä tiedostosta {$title}" - -msgid "catalog.viewableFile.return" -msgstr "Palaa tarkastelemaan {$monographTitle}:n tietoja" - -msgid "common.prefix" -msgstr "Prefiksi" - -msgid "common.preview" -msgstr "Esikatselu" - -msgid "common.feature" -msgstr "Esittele" - -msgid "common.searchCatalog" -msgstr "Hae luettelosta" - -msgid "common.moreInfo" -msgstr "Lisätietoja" - -msgid "common.listbuilder.completeForm" -msgstr "Täytä lomake kokonaan." - -msgid "common.listbuilder.selectValidOption" -msgstr "Valitse kelvollinen vaihtoehto listasta." - -msgid "common.listbuilder.itemExists" -msgstr "Samaa kohtaa ei voi lisätä kahdesti." - -msgid "common.openMonographPress" -msgstr "Open Monograph Press" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.homePageHeader.altText" -msgstr "Etusivun ylätunniste" - -msgid "navigation.catalog" -msgstr "Luettelo" - -msgid "navigation.competingInterestPolicy" -msgstr "Sidonnaisuuksien ilmoittaminen" - -msgid "navigation.catalog.allMonographs" -msgstr "Kaikki kirjat" - -msgid "navigation.catalog.manage" -msgstr "Hallinnoi" - -msgid "navigation.catalog.administration.short" -msgstr "Ylläpito" - -msgid "navigation.catalog.administration" -msgstr "Luettelon ylläpito" - -msgid "navigation.catalog.administration.categories" -msgstr "Kategoriat" - -msgid "navigation.catalog.administration.series" -msgstr "Sarja" - -msgid "navigation.infoForAuthors" -msgstr "Kirjoittajille" - -msgid "navigation.infoForLibrarians" -msgstr "Kirjastonhoitajille" - -msgid "navigation.infoForAuthors.long" -msgstr "Tietoa kirjoittajille" - -msgid "navigation.infoForLibrarians.long" -msgstr "Tietoa kirjastonhoitajille" - -msgid "navigation.newReleases" -msgstr "Uutuudet" - -msgid "navigation.published" -msgstr "Julkaistu" - -msgid "navigation.wizard" -msgstr "Ohjattu toiminto" - -msgid "navigation.linksAndMedia" -msgstr "Linkit ja sosiaalinen media" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Linkki omaan luetteloon." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Sarja" - -msgid "navigation.navigationMenus.series.description" -msgstr "Linkki sarjaan." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Kategoria" - -msgid "navigation.navigationMenus.category.description" -msgstr "Linkki kategoriaan." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Uutuudet" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Linkki omiin uutuuksiin." - -msgid "press.presses" -msgstr "Painot" - -msgid "press.path" -msgstr "Polku" - -msgid "context.context" -msgstr "Julkaisija" - -msgid "context.current" -msgstr "Nykyinen julkaisija:" - -msgid "context.select" -msgstr "Vaihda toiseen julkaisijaan:" - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Sisällytä käyttäjät, joilla ei ole roolia tämän julkaisijan sivustolla." - -msgid "user.noRoles.submitMonograph" -msgstr "Lähetä ehdotus" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Lähetä kirja: Kirjoittajaksi rekisteröityminen ei juuri nyt ole mahdollista." - -msgid "user.noRoles.regReviewer" -msgstr "Rekisteröidy arvioijaksi" - -msgid "user.noRoles.regReviewerClosed" -msgstr "Rekisteröidy arvioijaksi: Arvioijaksi rekisteröityminen ei juuri nyt ole mahdollista." - -msgid "user.reviewerPrompt" -msgstr "Haluaisitko arvioida tälle julkaisijalle lähetettyjä käsikirjoituksia?" - -msgid "user.reviewerPrompt.userGroup" -msgstr "Kyllä, pyydä {$userGroup}-roolia." - -msgid "user.reviewerPrompt.optin" -msgstr "" -"Kyllä, haluan, että minulle lähetetään pyyntöjä tämän julkaisijan " -"käsikirjoitusten arvioinnista." - -msgid "user.register.contextsPrompt" -msgstr "" -"Minkä tällä sivustolla olevien julkaisijoiden sivustojen käyttäjäksi haluat " -"rekisteröityä?" - -msgid "user.register.otherContextRoles" -msgstr "Pyydä seuraavia rooleja." - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Jos pyysit jonkin julkaisijan arvioijan roolia, anna sinua kiinnostavat " -"aiheet." - -msgid "user.role.manager" -msgstr "Julkaisijan sivuston hallinnoija" - -msgid "user.role.pressEditor" -msgstr "Toimittaja" - -msgid "user.role.subEditor" -msgstr "Sarjan toimittaja" - -msgid "user.role.copyeditor" -msgstr "Tekninen toimittaja" - -msgid "user.role.proofreader" -msgstr "Oikolukija" - -msgid "user.role.productionEditor" -msgstr "Tuotantotoimittaja" - -msgid "user.role.managers" -msgstr "Julkaisijan sivuston hallinnoijat" - -msgid "user.role.subEditors" -msgstr "Sarjan toimittajat" - -msgid "user.role.editors" -msgstr "Toimittajat" - -msgid "user.role.copyeditors" -msgstr "Tekniset toimittajat" - -msgid "user.role.proofreaders" -msgstr "Oikolukijat" - -msgid "user.role.productionEditors" -msgstr "Tuotantotoimittajat" - -msgid "user.register.selectContext" -msgstr "Valitse julkaisijan sivusto, johon rekisteröidyt:" - -msgid "user.register.noContexts" -msgstr "" -"Et voi rekisteröityä tällä sivustolla olevien julkaisijoiden sivustoille." - -msgid "user.register.privacyStatement" -msgstr "Tietosuojaseloste" - -msgid "user.register.registrationDisabled" -msgstr "Tämän julkaisijan sivuston käyttäjäksi ei voi rekisteröityä juuri nyt." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Kirjoittamasi salasana ei ole tarpeeksi pitkä." - -msgid "user.register.readerDescription" -msgstr "Kirjan julkaisemisesta ilmoitetaan sähköpostitse." - -msgid "user.register.authorDescription" -msgstr "Kohteiden lähetys julkaisijalle sallittu." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Halukas vertaisarvioimaan julkaisijalle lähetettyjä käsikirjoituksia." - -msgid "user.register.reviewerDescription" -msgstr "Halukas vertaisarvioimaan sivustolle lähetettyjä käsikirjoituksia." - -msgid "user.register.reviewerInterests" -msgstr "Kerro kiinnostavat arviointiaiheet (olennaiset alueet ja tutkimusmenetelmät):" - -msgid "user.register.form.userGroupRequired" -msgstr "Valitse vähintään yksi rooli" - -msgid "site.pressView" -msgstr "Näytä julkaisijan verkkosivusto" - -msgid "about.pressContact" -msgstr "Julkaisijan yhteystiedot" - -msgid "about.aboutContext" -msgstr "Tietoa julkaisijasta" - -msgid "about.editorialTeam" -msgstr "Toimituskunta" - -msgid "about.editorialPolicies" -msgstr "Toimitukselliset käytännöt" - -msgid "about.focusAndScope" -msgstr "Tarkoitus ja toimintaperiaatteet" - -msgid "about.seriesPolicies" -msgstr "Sarja- ja kategoriakäytännöt" - -msgid "about.submissions" -msgstr "Käsikirjoitukset" - -msgid "about.onlineSubmissions" -msgstr "Käsikirjoituksen lähettäminen verkossa" - -msgid "about.onlineSubmissions.login" -msgstr "Kirjaudu sisään" - -msgid "about.onlineSubmissions.register" -msgstr "Rekisteröidy" - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} tai {$register} lähettääksesi käsikirjoituksen." - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} tai {$viewSubmissions}." - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Lähetä uusi käsikirjoitus" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "katso odottavia käsikirjoituksiasi" - -msgid "about.authorGuidelines" -msgstr "Kirjoittajan ohjeet" - -msgid "about.submissionPreparationChecklist" -msgstr "Käsikirjoituksen lähettämisen tarkistuslista" - -msgid "about.submissionPreparationChecklist.description" -msgstr "Kirjoittajien tulee vahvistaa, että heidän käsikirjoituksensa noudattaa kaikkia seuraavia kohtia. Jos näitä ohjeita ei noudateta, käsikirjoitus palautetaan kirjoittajalle." - -msgid "about.copyrightNotice" -msgstr "Tekijänoikeushuomautus" - -msgid "about.privacyStatement" -msgstr "Tietosuojaseloste" - -msgid "about.reviewPolicy" -msgstr "Vertaisarviointiprosessi" - -msgid "about.publicationFrequency" -msgstr "Julkaisutiheys" - -msgid "about.openAccessPolicy" -msgstr "Avoimen saatavuuden periaate" - -msgid "about.pressSponsorship" -msgstr "Julkaisijan tukijana toimiminen" - -msgid "about.aboutThisPublishingSystem" -msgstr "Tietoja julkaisujärjestelmästä." - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "OMP:n toimitus- ja julkaisuprosessit" - -msgid "about.aboutOMPPress" -msgstr "" -"Tämä julkaisija käyttää Open Monograph Press {$ompVersion} -järjestelmää, " -"joka on Public Knowledge Projectin " -"kehittämä, tukema ja GNU General Public License -lisenssillä vapaasti jakama " -"avoimen lähdekoodin toimitus- ja julkaisuohjelmisto. Julkaisijaa ja " -"käsikirjoituksia koskevissa kysymyksissä tulee olla yhteydessä suoraan julkaisijaan." - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "Tämä sivusto käyttää Open Monograph Press {$ompVersion} -järjestelmää, joka on Public Knowledge Projectin kehittämä, tukema ja GNU General Public License -lisenssillä vapaasti jakama avoimen lähdekoodin toimitus- ja julkaisuohjelmisto." - -msgid "help.searchReturnResults" -msgstr "Takaisin hakutuloksiin" - -msgid "help.goToEditPage" -msgstr "Avaa uusi sivu muokataksesi näitä tietoja" - -msgid "installer.appInstallation" -msgstr "OMP:n asennus" - -msgid "installer.ompUpgrade" -msgstr "OMP:n päivitys" - -msgid "installer.installApplication" -msgstr "Asenna Open Monograph Press" - -#, fuzzy -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

      Kiitos, että latasit Public Knowledge Projectin Open Monograph Press {$version}-järjestelmän. Ennen kuin jatkat, lue README-tiedosto, joka tulee tämän ohjelmiston mukana. Lisätietoja Public Knowledge Projectista ja sen ohjelmistoprojekteista löydät PKP:n verkkosivustolta. Jos haluat tehdä ilmoituksen ohjelmistovirheestä tai ottaa yhteyttä Open Monograph Pressin tekniseen tukeen, tutustu tukifoorumiin tai PKP:n online-virheilmoitusjärjestelmään. Yhteydenotot ensisijaisesti tukifoorumin kautta, mutta voit myös lähettää sähköpostia osoitteeseen pkp.contact@gmail.com.

      \n" -"\n" -"

      Päivitys

      \n" -"\n" -"

      Jos olet päivittämässä OMP -järjestelmän aiempaa asennusta, klikkaa tästä edetäksesi.

      " - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Esiasennuksen vaiheet" - -msgid "installer.preInstallationInstructions" -msgstr "" -"

      1. Seuraavista tiedostoista ja kansioista (ja niiden sisällöstä) on tehtävä kirjoituskelpoisia:

      \n" -"
        \n" -"\t
      • config.inc.php on kirjoituskelpoinen (valinnainen): {$writable_config}
      • \n" -"\t
      • public/ on kirjoituskelpoinen: {$writable_public}
      • \n" -"\t
      • cache/ on kirjoituskelpoinen: {$writable_cache}
      • \n" -"\t
      • cache/t_cache/ on kirjoituskelpoinen: {$writable_templates_cache}
      • \n" -"\t
      • cache/t_compile/ on kirjoituskelpoinen: {$writable_templates_compile}
      • \n" -"\t
      • cache/_db on kirjoituskelpoinen: {$writable_db_cache}
      • \n" -"
      \n" -"\n" -"

      2. Ladattaville tiedostoille on luotava hakemisto ja siitä on tehtävä kirjoituskelpoinen (ks. \"Tiedostoasetukset\" alla).

      " - -msgid "installer.upgradeInstructions" -msgstr "" -"

      OMP:n versio {$version}

      \n" -"\n" -"

      Kiitos, että latasit Public Knowledge Projectin Open Monograph Press-järjestelmän. Ennen kuin jatkat, lue README ja UPGRADE -tiedostot, jotka tulevat tämän ohjelmiston mukana. Lisätietoja Public Knowledge Projectista ja sen ohjelmistoprojekteista löydätPKP:n verkkosivustolta. Jos haluat ilmoittaa ohjelmistovirheestä tai ottaa yhteyttä Open Monograph Pressin tekniseen tukeen, tutustu tukifoorumiin tai PKP:n online- virheilmoitusjärjestelmään. Yhteydenotot ensisijaisesti tukifoorumin kautta, mutta voit myös lähettää sähköpostia osoitteeseen pkp.contact@gmail.com.

      \n" -"

      On erittäin suositeltavaa, että varmuuskopioit tietokannan, tiedostohakemiston ja OMP-asennushakemiston ennen jatkamista.

      \n" -"

      Jos käytät PHP Safe Mode-vikasietotilaa, varmista, että max_execution_time-direktiivi php.ini -asetustiedostossa on määritetty korkeaksi. Jos tämä tai jokin muu määräaikaraja (esim. Apachen \"Aikakatkaisu\"-direktiivi) täyttyy ja päivitysprosessi keskeytetään, vaaditaan manuaalisia toimia.

      " - -msgid "installer.localeSettingsInstructions" -msgstr "" -"Saadaksesi täyden Unicode (UTF-8) -tuen, valitse UTF-8 kaikkiin merkistöasetuksiin. Huomaa, että tällä hetkellä tämä tuki edellyttää MySQL >= 4.1.1 tai PostgreSQL >= 9.1.5 tietokantapalvelinta. Huomioithan myös, että täysi Unicode-tuki edellyttää mbstring-kirjastoa (oletuksena viimeisimmissä PHP-asennuksissa). Saatat kohdata ongelmia käyttäessäsi laajennettuja merkistöjä, jos palvelimesi ei täytä näitä vaatimuksia.\n" -"

      \n" -"Palvelimesi tukee tällä hetkellä mbstringiä: {$supportsMBString}" - -msgid "installer.allowFileUploads" -msgstr "Palvelimesi sallii tällä hetkellä seuraavat tiedostojen lataukset: {$allowFileUploads}" - -msgid "installer.maxFileUploadSize" -msgstr "Palvelimesi sallima latausten enimmäiskoko tällä hetkellä: {$maxFileUploadSize}" - -msgid "installer.localeInstructions" -msgstr "Pääkieli, jota käytetään tässä järjestelmässä. Jos olet kiinnostunut muiden kuin tässä lueteltujen kielten tuesta, katso lisätietoja OMP:n käyttöohjeista." - -msgid "installer.additionalLocalesInstructions" -msgstr "" -"Valitse muita tässä järjestelmässä tuettavia kieliä. Nämä kielet ovat " -"sivustolla ylläpidettyjen julkaisijoiden sivustojen käytettävissä. Lisää " -"kieliä voidaan asentaa milloin tahansa myös sivuston ylläpitokäyttöliittymän " -"kautta. Tähdellä (*) merkityt kielialueet saattavat olla vaillinaisia." - -msgid "installer.filesDirInstructions" -msgstr "Anna koko polun nimi olemassa olevaan hakemistoon, jossa ladattavia tiedostoja tullaan säilyttämään. Tähän hakemistoon ei tulisi olla suoraa pääsyä verkosta. Varmista ennen asennusta, että tämä hakemisto on olemassa ja kirjoituskelpoinen. Windowsin polkujen nimissä tulee käyttää vinoviivaa, esim. \"C:/mypress/files\"." - -msgid "installer.databaseSettingsInstructions" -msgstr "Voidakseen tallentaa tietoja OMP edellyttää pääsyä SQL-tietokantaan. Katso järjestelmävaatimukset (yllä) nähdäksesi luettelon tuetuista tietokannoista. Anna alla olevissa kentissä asetukset, joita käytetään muodostettaessa yhteys tietokantaan." - -msgid "installer.upgradeApplication" -msgstr "Päivitä Open Monograph Press" - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

      HUOM!

      \n" -"

      Asennusohjelma ei voinut korvata määritystiedostoa automaattisesti. Ennen kuin aloitat järjestelmän käytön, avaa config.inc.php sopivassa tekstieditorissa ja korvaa sen sisältö alla olevan tekstikentän sisällöllä.

      " - -msgid "installer.installationComplete" -msgstr "" -"

      OMP:n asennus on suoritettu onnistuneesti.

      \n" -"

      Aloittaaksesi järjestelmän käytön, Kirjaudu sisään käyttäjätunnuksella ja salasanalla, jotka annoit edellisellä sivulla.

      \n" -"

      Jos haluat saada uutisia ja päivityksiä, rekisteröidy osoitteessa http://pkp.sfu.ca/omp/register. Jos sinulla on kysymyksiä tai kommentteja, tutustu tukifoorumi-sivuun.

      " - -msgid "installer.upgradeComplete" -msgstr "" -"

      OMP on päivitetty onnistuneesti versioon {$version}.

      \n" -"

      Muista laittaa config.inc.php-määritystiedoston \"asennettu\" -asetus takaisin päälle (On).

      \n" -"

      Jos et ole vielä rekisteröinyt, mutta haluat saada uutisia ja päivityksiä, rekisteröidy osoitteessa http://pkp.sfu.ca/omp/register. Jos sinulla on kysymyksiä tai kommentteja, tutustu tukifoorumi-sivuun.

      " - -msgid "log.review.reviewCleared" -msgstr "{$reviewerName}:n arviointi käsikirjoituksesta {$submissionId} kierroksella {$round} on poistettu." - -msgid "log.review.reviewDueDateSet" -msgstr "Kierroksen {$round} määräpäivä {$reviewerName}:n arvioinnille käsikirjoituksesta {$submissionId} on {$dueDate}." - -msgid "log.review.reviewDeclined" -msgstr "{$reviewerName} on kieltäytynyt arvioimasta käsikirjoitusta {$submissionId} kierroksella {$round}." - -msgid "log.review.reviewAccepted" -msgstr "{$reviewerName} on suostunut arvioimaan käsikirjoituksen {$submissionId} kierroksella {$round}." - -msgid "log.review.reviewUnconsidered" -msgstr "{$editorName} on merkinnyt käsikirjoituksen {$submissionId} arvion käsittelemättömäksi kierroksella {$round}." - -msgid "log.editor.decision" -msgstr "Toimittaja {$editorName} on tallentanut toimittajan päätöksen ({$decision}) kirjalle {$submissionId}." - -msgid "log.editor.recommendation" -msgstr "" -"Toimittaja {$editorName} on tallentanut toimittajan suosituksen ({$decision})" -" teokselle {$submissionId}." - -msgid "log.editor.archived" -msgstr "Käsikirjoitus {$submissionId} on arkistoitu." - -msgid "log.editor.restored" -msgstr "Käsikirjoitus {$submissionId} on palautettu jonoon." - -msgid "log.editor.editorAssigned" -msgstr "{$editorName} on valittu käsikirjoituksen {$submissionId} toimittajaksi." - -msgid "log.proofread.assign" -msgstr "{$assignerName} on valinnut käyttäjän {$proofreaderName} oikolukemaan käsikirjoituksen {$submissionId}." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} on lähettänyt käsikirjoituksen {$submissionId} aikataulutukseen." - -msgid "log.imported" -msgstr "{$userName} on tuonut kirjan {$submissionId}." - -msgid "notification.addedIdentificationCode" -msgstr "Tunnistuskoodi lisätty." - -msgid "notification.editedIdentificationCode" -msgstr "Tunnistuskoodia muokattu." - -msgid "notification.removedIdentificationCode" -msgstr "Tunnistuskoodi poistettu." - -msgid "notification.addedPublicationDate" -msgstr "Julkaisupäivämäärä lisätty." - -msgid "notification.editedPublicationDate" -msgstr "Julkaisupäivämäärää muokattu." - -msgid "notification.removedPublicationDate" -msgstr "Julkaisupäivämäärä poistettu." - -msgid "notification.addedPublicationFormat" -msgstr "Julkaisumuoto lisätty." - -msgid "notification.editedPublicationFormat" -msgstr "Julkaisumuotoa muokattu." - -msgid "notification.removedPublicationFormat" -msgstr "Julkaisumuoto poistettu." - -msgid "notification.addedSalesRights" -msgstr "Myyntioikeudet lisätty." - -msgid "notification.editedSalesRights" -msgstr "Myyntioikeuksia muokattu." - -msgid "notification.removedSalesRights" -msgstr "Myyntioikeudet poistettu." - -msgid "notification.addedRepresentative" -msgstr "Edustaja lisätty." - -msgid "notification.editedRepresentative" -msgstr "Edustajaa muokattu." - -msgid "notification.removedRepresentative" -msgstr "Edustaja poistettu." - -msgid "notification.addedMarket" -msgstr "Markkina lisätty." - -msgid "notification.editedMarket" -msgstr "Markkina muokattu." - -msgid "notification.removedMarket" -msgstr "Markkina poistettu." - -msgid "notification.addedSpotlight" -msgstr "Nosto lisätty." - -msgid "notification.editedSpotlight" -msgstr "Nostoa muokattu." - -msgid "notification.removedSpotlight" -msgstr "Nosto poistettu." - -msgid "notification.savedCatalogMetadata" -msgstr "Luettelon metatiedot tallennettu." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Julkaisumuodon metatiedot tallennettu." - -msgid "notification.proofsApproved" -msgstr "Korjausvedokset hyväksytty." - -msgid "notification.removedSubmission" -msgstr "Käsikirjoitus poistettu." - -msgid "notification.type.submissionSubmitted" -msgstr "Uusi kirja, \"{$title}\", on lähetetty." - -msgid "notification.type.editing" -msgstr "Toimittamiseen liittyvät tapahtumat" - -msgid "notification.type.reviewing" -msgstr "Arviointitapahtumat" - -msgid "notification.type.site" -msgstr "Sivuston tapahtumat" - -msgid "notification.type.submissions" -msgstr "Käsikirjoitukseen liittyvät tapahtumat" - -msgid "notification.type.userComment" -msgstr "Lukija on kommentoinut nimekettä \"{$title}\"." - -msgid "notification.type.public" -msgstr "Julkiset ilmoitukset" - -msgid "notification.type.editorAssignmentTask" -msgstr "Uusi kirja on lähetetty ja sille tulee valita toimittaja." - -msgid "notification.type.copyeditorRequest" -msgstr "Sinua on pyydetty arvioimaan tiedoston \"{$file}\" teknisesti toimitetut tiedostot." - -msgid "notification.type.layouteditorRequest" -msgstr "Sinua on pyydetty arvioimaan nimekkeen \"{$title}\" taitot." - -msgid "notification.type.indexRequest" -msgstr "Sinua on pyydetty luomaan indeksi nimekkeelle \"{$title}\"." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Sisäinen arviointiprosessi aloitettu." - -msgid "notification.type.approveSubmission" -msgstr "Tämä käsikirjoitus odottaa vielä Luettelomerkintä-työkalussa hyväksyntää, jonka jälkeen se tulee näkyville julkiseen luetteloon." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Odottaa hyväksyntää." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "Kirjaa ei lisätä luetteloon ennen kuin luettelomerkintä on luotu. Lisätäksesi tämän kirjan luetteloon klikkaa yllä olevaa Luettelomerkintä -kohtaa ja etsi Luettelo-välilehti." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Maksutapaa ei ole määritetty." - -msgid "notification.type.configurePaymentMethod" -msgstr "Määritetty maksutapa vaaditaan, ennen kuin voit määritellä verkkokaupan asetukset." - -#, fuzzy -msgid "notification.type.visitCatalog" -msgstr "Kirja on hyväksytty. Hallinnoidaksesi sen luettelotietoja, siirry Luetteloon yläpuolella olevan luettelolinkin kautta." - -msgid "notification.type.visitCatalogTitle" -msgstr "Luettelon hallinnointi" - -msgid "user.authorization.invalidReviewAssignment" -msgstr "Sinulta on evätty pääsy, koska et ole tämän kirjan kelvollinen arvioija." - -msgid "user.authorization.monographAuthor" -msgstr "Sinulta on evätty pääsy, koska et ole tämän kirjan kirjoittaja." - -msgid "user.authorization.monographReviewer" -msgstr "Sinulta on evätty pääsy, koska sinua ei ole valittu tämän kirjan arvioijaksi." - -msgid "user.authorization.monographFile" -msgstr "Sinulta on evätty pääsy tähän kirjan tiedostoon." - -msgid "user.authorization.invalidMonograph" -msgstr "Virheellinen kirja tai ei pyydettyä kirjaa!" - -msgid "user.authorization.noContext" -msgstr "Ei julkaisijaa valittuna!" - -msgid "user.authorization.seriesAssignment" -msgstr "Yrität päästä kirjaan, joka ei kuulu omaan sarjaasi." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Pääsy evätty! Sinua ei ole valittu tähän työnkulun vaiheeseen." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "" -"Pääsy evätty! Käyttäjäryhmää, johon tällä hetkellä kuulut, ei ole valittu " -"tähän työnkulun vaiheeseen. Tarkista julkaisijan asetukset." - -msgid "payment.directSales" -msgstr "Lataa julkaisijan verkkosivustolta" - -msgid "payment.directSales.price" -msgstr "Hinta" - -msgid "payment.directSales.availability" -msgstr "Saatavuus" - -msgid "payment.directSales.catalog" -msgstr "Luettelo" - -msgid "payment.directSales.approved" -msgstr "Hyväksytty" - -msgid "payment.directSales.priceCurrency" -msgstr "Hinta ({$currency})" - -msgid "payment.directSales.numericOnly" -msgstr "Hintojen tulee sisältää vain numeroita. Älä käytä valuuttasymboleja." - -msgid "payment.directSales.directSales" -msgstr "Suoramyynti" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.notAvailable" -msgstr "Ei saatavilla" - -msgid "payment.directSales.notSet" -msgstr "Ei määritelty" - -msgid "payment.directSales.openAccess" -msgstr "Avoin saatavuus" - -msgid "payment.directSales.price.description" -msgstr "" -"Tiedostomuotoja voidaan tarjota ladattaviksi julkaisijan verkkosivustolta " -"joko avoimen saatavuuden periaatteen mukaisesti tai suoramyynnin kautta (kun " -"käytetään asetusten Jakelu-kohdassa määriteltyä maksulisäosaa). Määritä " -"tämän tiedostomuodon lähtökohtainen saatavuus." - -msgid "payment.directSales.validPriceRequired" -msgstr "Kelvollinen numeerinen hinta vaaditaan." - -msgid "payment.directSales.purchase" -msgstr "Osta {$format} ({$amount} {$currency})" - -msgid "payment.directSales.download" -msgstr "Lataa {$format}" - -msgid "payment.directSales.monograph.name" -msgstr "Osta kirjan tai luvun lataus" - -msgid "payment.directSales.monograph.description" -msgstr "Tämä tapahtuma liittyy kirjan tai kirjan luvun suoralatauksen ostoon." - -msgid "debug.notes.helpMappingLoad" -msgstr "XML-tiedosto {$filename} ladattiin uudelleen haulla {$id}." - -msgid "rt.metadata.pkp.dctype" -msgstr "Kirja" - -msgid "submission.pdf.download" -msgstr "Lataa tämä PDF-tiedosto" - -msgid "user.profile.form.showOtherContexts" -msgstr "Rekisteröidy muiden julkaisijoiden sivustoille" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Piilota muut julkaisijat" - -msgid "grid.category.categories" -msgstr "Kategoriat" - -msgid "user.authorization.invalidPublishedSubmission" -msgstr "Virheellinen julkaistu käsikirjoitus." - -msgid "context.contexts" -msgstr "Julkaisijat" - -msgid "navigation.skip.spotlights" -msgstr "Siirry uutuuslistaan" - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.publications" -msgstr "Kirjat" - -msgid "common.publication" -msgstr "Kirja" - -msgid "submission.search" -msgstr "Kirjahaku" - -msgid "catalog.category.subcategories" -msgstr "Alakategoriat" - -msgid "catalog.category.heading" -msgstr "Kaikki kirjat" - -msgid "catalog.manage.isNotNewRelease" -msgstr "Tämä teos ei ole uutuus. Lisää uutuusmerkintä." - -msgid "catalog.manage.isNewRelease" -msgstr "Tämä teos on uutuus. Poista uutuusmerkintä." - -msgid "catalog.manage.isNotFeatured" -msgstr "" -"Tämä teos ei ole esittelyssä etusivulla. Siirrä tämä teos esittelyyn " -"etusivulle." - -msgid "catalog.manage.isFeatured" -msgstr "Tämä teos on esittelyssä etusivulla. Poista tämä teos esittelystä." - -msgid "submissionGroup.assignedSubEditors" -msgstr "Osoitetut toimittajat" - -msgid "monograph.audience.success" -msgstr "Kohderyhmäasetukset päivitetty." - -msgid "site.noPresses" -msgstr "Julkaisijoita ei löytynyt." - -msgid "user.register.form.privacyConsentThisContext" -msgstr "" -"Kyllä, annan luvan tallentaa tietojani tämän julkaisijan tietosuojaselosteen kuvaamalla tavalla." - -msgid "about.aboutSoftware" -msgstr "Tietoa Open Monograph Press -järjestelmästä" - -msgid "user.authorization.representationNotFound" -msgstr "Pyydettyä julkaisumuotoa ei löytynyt." - -msgid "catalog.manage.findSubmissions" -msgstr "Etsi teokset, jotka lisätään luetteloon" - -msgid "catalog.manage.submissionsNotFound" -msgstr "Yhtä tai useampaa käsikirjoitusta ei löytynyt." - -msgid "catalog.manage.noSubmissionsSelected" -msgstr "Yhtään käsikirjoitusta ei valittu luetteloon liitettäväksi." - -msgid "common.payments" -msgstr "Maksut" diff --git a/locale/fi_FI/manager.po b/locale/fi_FI/manager.po deleted file mode 100644 index b551f8f4cbb..00000000000 --- a/locale/fi_FI/manager.po +++ /dev/null @@ -1,1458 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" -"PO-Revision-Date: 2021-01-24 09:55+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "" -"Tämä korvaa kaikki tähän kielialueeseen liittyvät, kielialuekohtaiset " -"julkaisijan sivuston asetukset" - -msgid "manager.languages.noneAvailable" -msgstr "" -"Valitettavasti muita kieliä ei ole käytettävissä. Jos haluat käyttää tämän " -"julkaisijan sivustolla muita kieliä, ota yhteyttä sivuston ylläpitäjään." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Tätä kieltä käytetään julkaisijan sivuston oletuskielenä." - -msgid "manager.series.form.mustAllowPermission" -msgstr "Varmista, että vähintään yksi valintaruutu on rastitettu kunkin sarjan toimittajan valinnan kohdalla." - -msgid "manager.series.form.reviewFormId" -msgstr "Varmista, että olet valinnut kelvollisen arviointilomakkeen." - -msgid "manager.series.submissionIndexing" -msgstr "Ei sisällytetä julkaisijan sivuston indeksointiin" - -msgid "manager.series.editorRestriction" -msgstr "Ainoastaan toimittajat ja sarjan toimittajat voivat lähettää kohteita." - -msgid "manager.series.confirmDelete" -msgstr "Haluatko varmasti poistaa tämän sarjan pysyvästi?" - -msgid "manager.series.indexed" -msgstr "Indeksoitu" - -msgid "manager.series.open" -msgstr "Käsikirjoitukset vapaasti lähetettävissä" - -msgid "manager.series.readingTools" -msgstr "Lukutyökalut" - -msgid "manager.series.submissionReview" -msgstr "Ei vertaisarvioida" - -msgid "manager.series.submissionsToThisSection" -msgstr "Tähän sarjaan lähetetyt käsikirjoitukset" - -msgid "manager.series.abstractsNotRequired" -msgstr "Älä vaadi abstrakteja" - -msgid "manager.series.disableComments" -msgstr "Estä lukijoiden kommentit tähän sarjaan." - -msgid "manager.series.book" -msgstr "Kirjasarja" - -msgid "manager.series.create" -msgstr "Luo sarja" - -msgid "manager.series.policy" -msgstr "Sarjan kuvaus" - -msgid "manager.series.assigned" -msgstr "Tämän sarjan toimittajat" - -msgid "manager.series.seriesEditorInstructions" -msgstr "" -"Lisää tälle sarjalle sarjan toimittaja saatavilla olevista sarjan " -"toimittajista. Määritä sen jälkeen valvooko sarjan toimittaja tämän sarjan " -"käsikirjoitusten ARVIOINTIA (vertaisarviointi) ja/tai TOIMITUSTYÖTÄ (" -"tekninen toimittaminen, taitto ja oikoluku). Sarjan toimittajat luodaan " -"klikkaamalla Sarjan toimittajat " -"Julkaisijan sivuston hallinnoinnin Roolit-kohdassa." - -msgid "manager.series.hideAbout" -msgstr "Poista tämä sarja Tietoa julkaisijasta -sivulta." - -msgid "manager.series.unassigned" -msgstr "Käytettävissä olevat Sarjan toimittajat" - -msgid "manager.series.form.abbrevRequired" -msgstr "Sarjalle vaaditaan lyhennetty nimeke." - -msgid "manager.series.form.titleRequired" -msgstr "Sarjalle vaaditaan nimeke." - -msgid "manager.series.noneCreated" -msgstr "Yhtään sarjaa ei ole luotu." - -msgid "manager.series.existingUsers" -msgstr "Olemassa olevat käyttäjät" - -msgid "manager.series.seriesTitle" -msgstr "Sarjan nimeke" - -msgid "manager.series.restricted" -msgstr "Älä salli kirjoittajien lähettää käsikirjoituksia suoraan tähän sarjaan." - -msgid "manager.payment.generalOptions" -msgstr "Yleiset valinnat" - -msgid "manager.payment.options.enablePayments" -msgstr "" -"Maksut otetaan käyttöön tälle julkaisijalle. Huomaa, että käyttäjien tulee " -"kirjautua sisään maksaakseen." - -msgid "manager.settings" -msgstr "Asetukset" - -msgid "manager.settings.pressSettings" -msgstr "Julkaisijan asetukset" - -msgid "manager.settings.press" -msgstr "Julkaisija" - -msgid "manager.settings.publisherInformation" -msgstr "Nämä kentät vaaditaan kelvollisten ONIX-metatietojen luomiseen. Täytä kaikki kentät, jos haluat julkaista ONIX-metatietoja." - -msgid "manager.settings.publisher" -msgstr "Julkaisijan nimi" - -msgid "manager.settings.location" -msgstr "Maantieteellinen sijainti" - -msgid "manager.settings.publisherCode" -msgstr "Julkaisijan koodi" - -msgid "manager.settings.publisherCodeType" -msgstr "Julkaisijan koodityyppi" - -msgid "manager.settings.publisherCodeType.tip" -msgstr "Jos sinulla on julkaisijan nimikoodi, täytä se alla. Se sisällytetään luotuihin metatietoihin. Kenttä on pakollinen, jos luot ONIX-metatietoja julkaisuillesi." - -msgid "manager.settings.distributionDescription" -msgstr "Kaikki jakeluprosessiin liittyvät asetukset (ilmoitus, indeksointi, arkistointi, maksaminen, lukutyökalut)." - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Kirjatiedostojen lataukset" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Kirjan abstraktisivun katselukerrat" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Kirjan abstrakti ja lataukset" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Sarjan pääsivun katselukerrat" - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Sivuston pääsivun katselukerrat" - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Rajaa tuloksia kontekstin (sarja ja/tai kirja) mukaan." - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "" -"Rajaa tuloksia kohteen tyypin (julkaisija, sarja, kirja, tiedostotyypit) ja/" -"tai yhden tai useamman kohteen tunnisteen perusteella." - -msgid "manager.tools" -msgstr "Työkalut" - -msgid "manager.tools.importExport" -msgstr "" -"Kaikki tietojen (julkaisijat, kirjat, käyttäjät) tuomisen ja viemisen " -"työkalut" - -msgid "manager.tools.statistics" -msgstr "" -"Käyttötilastoihin liittyvien raporttien (luettelon hakemistosivun " -"katselukerrat, kirjan abstraktisivun katselukerrat, kirjan tiedostolataukset)" -" luomiseen liittyvät työkalut" - -msgid "manager.users" -msgstr "Käyttäjien hallinnointi" - -msgid "manager.users.availableRoles" -msgstr "Käytettävissä olevat roolit" - -msgid "manager.users.currentRoles" -msgstr "Nykyiset roolit" - -msgid "manager.users.selectRole" -msgstr "Valitse rooli" - -msgid "manager.people.allEnrolledUsers" -msgstr "Tämän julkaisijan sivustolle lisätyt käyttäjät" - -msgid "manager.people.allPresses" -msgstr "Kaikki julkaisijat" - -msgid "manager.people.allSiteUsers" -msgstr "Lisää olemassa oleva käyttäjä tämän julkaisijan sivustolle" - -msgid "manager.people.allUsers" -msgstr "Kaikki käyttäjät, joilla on rooleja" - -msgid "manager.people.confirmRemove" -msgstr "" -"Poistetaanko tämä käyttäjä tämän julkaisijan sivustolta? Tämä toiminto " -"poistaa käyttäjän kaikista tähän julkaisijaan liittyvistä rooleista." - -msgid "manager.people.enrollExistingUser" -msgstr "Lisää olemassa oleva käyttäjä rooliin" - -msgid "manager.people.enrollSyncPress" -msgstr "Julkaisijan sivuston kanssa" - -msgid "manager.people.mergeUsers.from.description" -msgstr "Valitse käyttäjä, joka yhdistetään toiseen käyttäjätiliin (esim. jos jollakulla on kaksi käyttäjätiliä). Ensin valittu tili poistetaan ja sen käsikirjoitukset, toimeksiannot jne. siirretään toiselle tilille." - -msgid "manager.people.mergeUsers.into.description" -msgstr "Valitse käyttäjä, kenelle aiemman käyttäjän kirjoittajahenkilöllisyys, toimitustoimeksiannot jne. siirretään." - -msgid "manager.people.syncUserDescription" -msgstr "" -"Rooliin lisäämisen synkronointi lisää kaikki määrätyn julkaisijan määrätyssä " -"roolissa olevat käyttäjät tämän julkaisijan sivuston vastaavaan rooliin. " -"Tämä toiminto mahdollistaa sen, että samankaltaisten käyttäjien joukko (" -"esim. arvioijat) voidaan synkronoida julkaisijoiden välillä." - -msgid "manager.people.confirmDisable" -msgstr "" -"Estä tämä käyttäjä? Tämä estää käyttäjän kirjautumisen järjestelmään.\n" -"\n" -"Voit halutessasi kertoa käyttäjälle syyn siihen, miksi hänen käyttäjätilinsä on poistettu käytöstä." - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Sinulla ei ole hallinnollisia oikeuksia tähän käyttäjään. Syynä tähän voi " -"olla:\n" -"
        \n" -"\t\t\t
      • Käyttäjä on sivuston ylläpitäjä
      • \n" -"\t\t\t
      • Käyttäjä on aktiivisena julkaisijan sivustolla, joita sinä et " -"hallinnoi
      • \n" -"\t\t
      \n" -"Tämän tehtävän voi suorittaa vain sivuston ylläpitäjä.\n" -"\t" - -msgid "manager.system" -msgstr "Järjestelmäasetukset" - -msgid "manager.system.archiving" -msgstr "Arkistointi" - -msgid "manager.system.reviewForms" -msgstr "Arviointilomakkeet" - -msgid "manager.system.readingTools" -msgstr "Lukutyökalut" - -msgid "manager.system.payments" -msgstr "Maksut" - -msgid "user.authorization.pluginLevel" -msgstr "Sinulla ei ole riittäviä oikeuksia tämän lisäosan hallinnointiin." - -msgid "manager.pressManagement" -msgstr "Julkaisijan sivuston hallinnointi" - -msgid "manager.setup" -msgstr "Asetukset" - -msgid "manager.setup.aboutItemContent" -msgstr "Sisältö" - -msgid "manager.setup.addAboutItem" -msgstr "Lisää Tietoa-kohta" - -msgid "manager.setup.addChecklistItem" -msgstr "Lisää tarkistuslistan kohta" - -msgid "manager.setup.addItem" -msgstr "Lisää kohta" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Lisää kohta näkyviin Tietoa julkaisijasta -sivulle" - -msgid "manager.setup.addNavItem" -msgstr "Lisää kohta" - -msgid "manager.setup.addSponsor" -msgstr "Lisää tukiorganisaatio" - -msgid "manager.setup.announcements" -msgstr "Ilmoitukset" - -msgid "manager.setup.announcementsDescription" -msgstr "" -"Ilmoituksia julkaisemalla lukijoille voidaan kertoa julkaisijan uutisista ja " -"tapahtumista. Julkaistut ilmoitukset näkyvät Ilmoitukset-sivulla." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Lisätietoja" - -msgid "manager.setup.announcementsIntroductionDescription" -msgstr "Syötä mitä tahansa lisätietoja, joiden halutaan näkyvän Ilmoitukset-sivun lukijoille." - -msgid "manager.setup.appearInAboutPress" -msgstr "(Näkyy Tietoa julkaisijasta -sivulla) " - -msgid "manager.setup.copyediting" -msgstr "Tekniset toimittajat" - -msgid "manager.setup.copyeditInstructions" -msgstr "Teknisen toimittamisen ohjeet" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "" -"Teknisen toimittamisen ohjeet tulevat teknisten toimittajien, kirjoittajien " -"ja sarjojen toimittajien saataville käsikirjoituksen toimittamisvaiheessa. " -"Alla HTML-muotoiset oletusohjeet, joita julkaisijan sivuston hallinnoija voi " -"muokata tai korvata missä tahansa vaiheessa (HTML-muodossa tai pelkkänä " -"tekstinä)." - -msgid "manager.setup.copyrightNotice" -msgstr "Tekijänoikeushuomautus" - -msgid "manager.setup.coverage" -msgstr "Kattavuus" - -msgid "manager.setup.customizingTheLook" -msgstr "Vaihe 5. Ulkoasun ja yleisilmeen mukauttaminen" - -msgid "manager.setup.customTags" -msgstr "Mukautetut tagit" - -msgid "manager.setup.customTagsDescription" -msgstr "Mukautetut HTML-muotoiset ylätunnisteen tagit, jotka sijoitetaan jokaisen sivun ylätunnisteeseen (esim. meta-tagit)." - -msgid "manager.setup.details" -msgstr "Tiedot" - -msgid "manager.setup.details.description" -msgstr "Julkaisijan nimi, yhteystiedot, tukijat ja hakukoneet." - -msgid "manager.setup.disableUserRegistration" -msgstr "" -"Julkaisijan sivuston hallinnoija rekisteröi kaikki käyttäjätilit. " -"Toimittajat tai sarjan toimittajat voivat rekisteröidä käyttäjätilejä " -"arvioijille." - -msgid "manager.setup.discipline" -msgstr "Akateeminen tieteenala ja alatieteet" - -msgid "manager.setup.disciplineDescription" -msgstr "" -"Hyödyllinen, kun julkaisija ylittää tieteenalojen väliset rajat ja/tai kun " -"tekijät lähettävät monitieteellisiä kohteita." - -msgid "manager.setup.disciplineExamples" -msgstr "(Esim. historia; koulutus; sosiologia; psykologia; kulttuurintutkimus; laki)" - -msgid "manager.setup.disciplineProvideExamples" -msgstr "" -"Anna esimerkkejä tähän julkaisijaan liittyvistä olennaisista akateemisista " -"tieteenaloista" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "Lisää uusimman kirjan sisällysluettelo (jos saatavilla)." - -msgid "manager.setup.displayOnHomepage" -msgstr "Etusivun sisältö" - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Näytä esittelyssä olevat kirjat etusivulla" - -msgid "manager.setup.displayInSpotlight" -msgstr "Näytä kirjat nostoissa etusivulla" - -msgid "manager.setup.displayNewReleases" -msgstr "Näytä uutuudet etusivulla" - -msgid "manager.setup.doiPrefix" -msgstr "DOI-prefiksi" - -msgid "manager.setup.doiPrefixDescription" -msgstr "DOI (Digital Object Identifier) -prefiksi on CrossRef:in myöntämä ja se on muodossa 10.xxxx (esim. 10.1234)." - -msgid "manager.setup.editorDecision" -msgstr "Toimittajan päätös" - -msgid "manager.setup.emailBounceAddress" -msgstr "Palautusosoite" - -msgid "manager.setup.emailBounceAddressDescription" -msgstr "Tähän osoitteeseen lähetetään virheilmoitus aina, kun sähköpostia ei voida toimittaa perille." - -msgid "manager.setup.emailBounceAddressDisabled" -msgstr "Huom! Aktivoidakseen tämän valinnan sivuston ylläpitäjän täytyy ottaa käyttöön allow_envelope_sender -valinta OMP:n määritystiedostossa. Palvelimen lisämäärityksiä saatetaan edellyttää tämän toiminnon tukemiseksi (joka ei välttämättä ole mahdollista kaikilla palvelimilla), kuten OMP:n käyttöohjeissa mainitaan." - -msgid "manager.setup.emails" -msgstr "Sähköpostitunnistautuminen" - -msgid "manager.setup.emailSignature" -msgstr "Allekirjoitus" - -msgid "manager.setup.emailSignatureDescription" -msgstr "Valmiisiin sähköposteihin, jotka järjestelmä lähettää painon puolesta, lisätään seuraava allekirjoitus." - -msgid "manager.setup.enableAnnouncements" -msgstr "Ota ilmoitukset käyttöön." - -msgid "manager.setup.enableAnnouncementsHomepage1" -msgstr "Näytä" - -msgid "manager.setup.enableAnnouncementsHomepage2" -msgstr "viimeisintä ilmoitusta painon etusivulla." - -msgid "manager.setup.enablePressInstructions" -msgstr "Näytä tämä julkaisija julkisesti sivustolla" - -msgid "manager.setup.enablePublicMonographId" -msgstr "Mukautettuja tunnisteita käytetään julkaistujen kohteiden identifioimiseen." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "Mukautettuja tunnisteita käytetään julkaistujen kohteiden julkaistavien tiedostojen (esim. HTML- tai PDF-tiedostot) identifioimiseen." - -msgid "manager.setup.enableUserRegistration" -msgstr "Vierailijat voivat rekisteröidä käyttäjätilin julkaisijan sivustolle." - -msgid "manager.setup.focusAndScope" -msgstr "Julkaisijan tarkoitus ja toimintaperiaatteet" - -msgid "manager.setup.focusAndScope.description" -msgstr "" -"Kuvaile kirjoittajille, lukijoille ja kirjastonhoitajille millaisia kirjoja " -"ja muita kohteita julkaisija julkaisee." - -msgid "manager.setup.focusScope" -msgstr "Tarkoitus ja toimintaperiaatteet" - -msgid "manager.setup.focusScopeDescription" -msgstr "HTML-MUOTOINEN ESIMERKKITEKSTI" - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "Kirjoittajille töiden indeksointia varten" - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "" -"OMP noudattaa " -"Open Archives Initiativen protokollaa metatietojen haravoinnista, joka " -"on nouseva standardi elektronisten tutkimusresurssien hyvin indeksoidun " -"saatavuuden tarjoamisessa maailmanlaajuisesti. Kirjoittajat käyttävät " -"samanlaista mallipohjaa antaessaan käsikirjoitustensa metatiedot. " -"Julkaisijan sivuston hallinnoijan tulee valita käytettävät " -"indeksointikategoriat ja avustaa kirjoittajia töidensä indeksoinnissa " -"tarjoamalla olennaisia esimerkkejä, ehdot puolipisteellä (esim. ehto1; ehto2)" -" erotellen. Merkinnät tulee esitellä esimerkkeinä \"esim.\" -lyhennettä tai " -"\"esimerkiksi\"-termiä käyttäen." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Ensisijainen sähköposti yhteydenottoja varten vaaditaan." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Ensisijainen yhteyshenkilö vaaditaan." - -msgid "manager.setup.form.pressNameRequired" -msgstr "Painon nimi vaaditaan." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Arvioijien määrä käsikirjoitusta kohti vaaditaan." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Teknisen tuen sähköposti vaaditaan." - -msgid "manager.setup.form.supportNameRequired" -msgstr "Teknisen tuen henkilö vaaditaan." - -msgid "manager.setup.form.pressInitialsRequired" -msgstr "Painon alkukirjaimet tarvitaan." - -msgid "manager.setup.generalInformation" -msgstr "Yleisiä tietoja" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Vaihe 1. Perustiedot" - -msgid "manager.setup.guidelines" -msgstr "Ohjeet" - -msgid "manager.setup.preparingWorkflow" -msgstr "Vaihe 3. Työnkulun valmisteleminen" - -msgid "manager.setup.information.description" -msgstr "" -"Lyhyet kuvaukset julkaisijasta kirjastonhoitajille, mahdollisille " -"kirjoittajille ja lukijoille. Kuvaukset tulevat näkyville sivuston " -"sivupalkkiin, kun Tietoa-lohko on lisätty." - -msgid "manager.setup.information.forAuthors" -msgstr "Kirjoittajille" - -msgid "manager.setup.information.forLibrarians" -msgstr "Kirjastonhoitajille" - -msgid "manager.setup.information.forReaders" -msgstr "Lukijoille" - -msgid "manager.setup.institution" -msgstr "Instituutio" - -msgid "manager.setup.labelName" -msgstr "Selitteen nimi" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Taittajat" - -msgid "manager.setup.layoutInstructions" -msgstr "Taitto-ohjeet" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "" -"Julkaistavien kohteiden muotoilua varten voidaan tehdä taitto-ohjeet, jotka " -"voidaan syöttää alle joko HTML-muodossa tai pelkkänä tekstinä. Ne tulevat " -"taittajan ja osastotoimittajan saataville jokaisen käsikirjoituksen " -"toimittamissivulla. (Koska jokainen julkaisija saattaa käyttää eri " -"tiedostomuotoja, bibliografisia standardeja, tyylitiedostoja jne., " -"oletusohjeita ei anneta.)" - -msgid "manager.setup.layoutTemplates" -msgstr "Taiton mallipohjat" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "" -"Jokaiselle julkaistavalle, mitä tahansa tiedostomuotoa (esim. pdf, doc jne.) " -"käyttävälle, standardimuodolle (esim. kirja, kirja-arvostelu jne.), voidaan " -"ladata mallipohja, joka näkyy Taitto-kohdassa. Mallipohjiin voi lisätä " -"huomautuksia, jotka määrittävät kirjasinlajin, koon, reunukset jne. ja " -"toimivat ohjeena taittajille ja oikolukijoille." - -msgid "manager.setup.layoutTemplates.file" -msgstr "Mallipohjatiedosto" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Otsikko" - -msgid "manager.setup.lists" -msgstr "Listat" - -msgid "manager.setup.listsDescription" -msgstr "Rajoita listan sivuilla näytettävien kohteiden (esim. käsikirjoitukset, käyttäjät tai toimitustoimeksiannot) määrää. Rajoita myös listan seuraaville sivuille johtavien linkkien näytettävää määrää." - -msgid "manager.setup.look" -msgstr "Ulkoasu & Yleisilme" - -msgid "manager.setup.look.description" -msgstr "" -"Etusivun ylätunniste, sisältö, julkaisijan sivuston ylätunniste, " -"alatunniste, navigointipalkki ja tyylitiedosto." - -msgid "manager.setup.settings" -msgstr "Asetukset" - -msgid "manager.setup.management.description" -msgstr "Käyttöoikeudet ja turvallisuus, aikataulutus, ilmoitukset, tekninen toimittaminen, taitto ja oikoluku." - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Toimituksellisten perusvaiheiden hallinnointi" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Hallinnoinnin ja julkaisemisen asetukset" - -msgid "manager.setup.managingThePress" -msgstr "Vaihe 4. Asetusten hallinnointi" - -msgid "manager.setup.noImageFileUploaded" -msgstr "Ei ladattua kuvatiedostoa." - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "Ei ladattua tyylitiedostoa." - -msgid "manager.setup.note" -msgstr "Huomautus" - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "Käyttäessäsi Ilmoita kirjoittajalle -sähköpostia, muista lisätä vastaanottajaksi käsikirjoituksen lähettäneen käyttäjän lisäksi kaikki kirjoittajat, kun kyseessä on käsikirjoitus, jolla on monta kirjoittajaa." - -msgid "manager.setup.noUseCopyeditors" -msgstr "Käsikirjoitukselle valittu toimittaja tai osastotoimittaja hoitaa teknisen toimittamisen." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "Käsikirjoitukselle valittu toimittaja tai osastotoimittaja valmistelee HTML-, PDF- ja muut tiedostot." - -msgid "manager.setup.noUseProofreaders" -msgstr "Käsikirjoitukselle valittu toimittaja tai osastotoimittaja tarkistaa julkaistavat tiedostot." - -msgid "manager.setup.numPageLinks" -msgstr "Sivun linkit" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Pääsy julkaisijan sisältöihin" - -msgid "manager.setup.onlineIssn" -msgstr "Verkkokirjan ISSN" - -msgid "manager.setup.policies" -msgstr "Toimintaperiaatteet" - -msgid "manager.setup.policies.description" -msgstr "" -"Julkaisijan tarkoitus, vertaisarviointi, osastot, yksityisyyden suoja, " -"turvallisuus ja lisätietoja kohteista." - -msgid "manager.setup.appearanceDescription" -msgstr "" -"Tällä sivulla voidaan määrittää julkaisijan sivuston eri osien ulkoasu, " -"kuten ylä- ja alatunnisteiden osat, tyyli ja teema, sekä se, kuinka listattu " -"tieto esitetään käyttäjille." - -msgid "manager.setup.pressDescription" -msgstr "Julkaisija lyhyesti" - -msgid "manager.setup.pressDescription.description" -msgstr "Lyhyt kuvaus julkaisijasta." - -msgid "manager.setup.aboutPress" -msgstr "Tietoa julkaisijasta" - -msgid "manager.setup.aboutPress.description" -msgstr "" -"Sisällytä tähän mitä tahansa tietoa julkaisijasta, joka saattaa kiinnostaa " -"lukijoita, kirjoittajia ja arvioijia. Tällaisia tietoja voivat olla esim. " -"avoimen saatavuuden periaate, julkaisijan tarkoitus ja toimintaperiaatteet, " -"tekijänoikeushuomautus, tiedonanto tukemista koskien, julkaisijan historia " -"ja tietosuojaseloste." - -msgid "manager.setup.pressArchiving" -msgstr "Julkaisijan arkistointi" - -msgid "manager.setup.homepageContent" -msgstr "Julkaisijan etusivun sisältö" - -msgid "manager.setup.homepageContentDescription" -msgstr "" -"Julkaisijan etusivu koostuu oletusarvoisesti siirtymälinkeistä. Muuta " -"sisältöä etusivulle voidaan liittää käyttämällä yhtä tai kaikkia seuraavista " -"vaihtoehdoista, jotka ilmestyvät esitetyssä järjestyksessä." - -msgid "manager.setup.pressHomepageContent" -msgstr "Julkaisijan etusivun sisältö" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "" -"Julkaisijan etusivu koostuu oletusarvoisesti siirtymälinkeistä. Muuta " -"sisältöä etusivulle voidaan liittää käyttämällä yhtä tai kaikkia seuraavista " -"vaihtoehdoista, jotka ilmestyvät esitetyssä järjestyksessä." - -msgid "manager.setup.pressInitials" -msgstr "Painon alkukirjaimet" - -msgid "manager.setup.layout" -msgstr "Julkaisijan sivuston taitto" - -msgid "manager.setup.pageHeader" -msgstr "Julkaisijan sivuston ylätunniste" - -msgid "manager.setup.pageHeaderDescription" -msgstr "" - -msgid "manager.setup.pressPolicies" -msgstr "Vaihe 2. Julkaisijan toimintaperiaatteet" - -msgid "manager.setup.pressSetup" -msgstr "Julkaisijan asetukset" - -msgid "manager.setup.pressSetupUpdated" -msgstr "Julkaisijan asetukset on päivitetty." - -msgid "manager.setup.styleSheetInvalid" -msgstr "Virheellinen tyylitiedoston muoto. Hyväksytty muoto on .css." - -msgid "manager.setup.pressTheme" -msgstr "Julkaisijan sivuston teema" - -msgid "manager.setup.contextName" -msgstr "Painon nimi" - -msgid "manager.setup.printIssn" -msgstr "Painetun kirjan ISSN" - -msgid "manager.setup.proofingInstructions" -msgstr "Oikolukuohjeet" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "" -"Oikoluvun ohjeet tulevat oikolukijoiden, kirjoittajien, taittajien ja " -"osastotoimittajien saataville käsikirjoituksen toimittamisvaiheessa. Alla " -"HTML-muotoiset oletusohjeet, joita Julkaisijan sivuston hallinnoija voi " -"muokata tai korvata missä tahansa vaiheessa (HTML-muodossa tai pelkkänä " -"tekstinä)." - -msgid "manager.setup.proofreading" -msgstr "Oikolukijat" - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Anna ohjeet taittajille." - -msgid "manager.setup.publicationScheduleDescription" -msgstr "" -"Nimekkeitä voidaan julkaista kokonaisuutena osana kirjaa, jolla on oma " -"sisällysluettelonsa. Vaihtoehtoisesti yksittäisiä nimekkeitä voidaan " -"julkaista heti niiden ollessa valmiita, lisäämällä ne uusimman niteen " -"sisällysluetteloon. Kerro lukijoille tämän julkaisijan käytännöstä asian " -"suhteen sekä oletetusta julkaisutiheydestä Tietoa julkaisijasta -sivulla." - -msgid "manager.setup.publisher" -msgstr "Julkaisija" - -msgid "manager.setup.publisherDescription" -msgstr "" -"Julkaisijan sivustoa ylläpitävän organisaation nimi näkyy Tietoa " -"julkaisijasta -sivulla." - -msgid "manager.setup.referenceLinking" -msgstr "Lähdeviitteiden linkitys" - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Taiton ohjeet lähdeviitteiden linkitykseen" - -msgid "manager.setup.restrictMonographAccess" -msgstr "Käyttäjien tulee olla rekisteröityneitä ja sisäänkirjautuneita katsellakseen avoimesti saatavilla olevaa sisältöä." - -msgid "manager.setup.restrictSiteAccess" -msgstr "" -"Käyttäjien tulee olla rekisteröityneitä ja sisäänkirjautuneita katsellakseen " -"julkaisijan sivustoa." - -msgid "manager.setup.reviewGuidelines" -msgstr "Ulkopuolista arviointia koskevat ohjeet" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "" -"Anna ulkopuolisille arvioijille kriteerit, joiden perusteella he arvioivat " -"soveltuuko käsikirjoitus julkaisijan julkaistavaksi. Ohjeet voivat sisältää " -"myös ohjeita vaikuttavan ja hyödyllisen arvion kirjoittamiseksi. Arvioijilla " -"on mahdollisuus antaa sekä kirjoittajalle että toimittajalle tarkoitettuja " -"kommentteja ja erillisiä, vain toimittajalle tarkoitettuja kommentteja." - -msgid "manager.setup.internalReviewGuidelines" -msgstr "Sisäistä arviointia koskevat ohjeet" - -msgid "manager.setup.internalReviewGuidelinesDescription" -msgstr "Aivan kuten ulkopuolista arviointia koskevat ohjeet, nämäkin ohjeet tarjoavat arvioijille tietoa käsikirjoituksen arviointiin liittyen. Nämä ohjeet koskevat painoja, jotka yleisesti käyttävät arviointiprosessissa painon sisäisiä arvioijia." - -msgid "manager.setup.reviewOptions" -msgstr "Arviointiin liittyvät valinnat" - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Automaattiset sähköpostimuistutukset" - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "Aktivoidakseen nämä valinnat sivuston ylläpitäjän täytyy ottaa käyttöön scheduled_tasks -valinta OMP:n määritystiedostossa. Palvelimen lisämäärityksiä saatetaan edellyttää tämän toiminnon tukemiseksi (joka ei välttämättä ole mahdollista kaikilla palvelimilla), kuten OMP:n käyttöohjeissa mainitaan." - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "Toimittajat arvostelevat arvioijat viisiportaisella laatuasteikolla jokaisen arviointitapahtuman jälkeen." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" -msgstr "" -"Arvioijilla on pääsy käsikirjoitustiedostoon vasta suostuttuaan arvioimaan " -"sen" - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Arvioijan pääsy käsikirjoitukseen" - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" -msgstr "" -"Ota käyttöön automaattisesti arvioijan sisäänkirjaavat linkit " -"arviointipyynnöissä" - -#, fuzzy -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" -msgstr "Huom! Arvioijille lähetettävässä sähköpostikutsussa on erityinen URL-osoite, jonka kautta arvioijat pääsevät suoraan käsikirjoituksen arviointisivulle (muille sivuille pääsy vaatii sisäänkirjautumisen). Tietoturvasyistä tämän valinnan kohdalla toimittajat eivät voi muokata sähköpostiosoitteita eivätkä lisätä kopioita tai piilokopioita ennen viestin lähettämistä." - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Arvioijien arvostelu" - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Arvioijan muistutukset" - -msgid "manager.setup.reviewPolicy" -msgstr "Arviointiperiaatteet" - -msgid "manager.setup.reviewProcess" -msgstr "Arviointiprosessi" - -msgid "manager.setup.reviewProcessDescription" -msgstr "OMP tukee kahta arviointiprosessin hallinnointimallia. Standardi arviointiprosessi on suositeltava, koska siinä arvioijat johdatetaan prosessin läpi vaihe kerrallaan. Se myös takaa jokaiselle käsikirjoitukselle täyden arviointihistorian, hyödyntää automaattista muistutustoimintoa sekä standardimuotoisia suosituksia käsikirjoituksille (Hyväksy; Hyväksy korjauksin; Lähetä arviointiin; Lähetä toiseen julkaisuun; Hylkää; Katso kommentit).

      Valitse yksi seuraavista:" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Arviointiprosessi sähköpostin liitetiedostoja käyttäen" - -msgid "manager.setup.reviewProcessStandard" -msgstr "Standardi arviointiprosessi" - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "" -"Toimittajat lähettävät valituille arvioijille sähköpostilla käsikirjoituksen " -"nimekkeen ja abstraktin sekä kutsun kirjautua julkaisijan verkkosivustolle " -"arvioinnin suorittamista varten. Verkkosivustolla arvioijat hyväksyvät/" -"hylkäävät arviointikutsun, lataavat käsikirjoituksia, lähettävät " -"kommenttinsa ja valitsevat suosituksen." - -msgid "manager.setup.searchEngineIndexing" -msgstr "Hakukoneindeksointi" - -msgid "manager.setup.searchEngineIndexingDescription" -msgstr "Anna painosta lyhyt kuvaus, jonka hakukoneet voivat näyttää listatessaan painon hakutuloksissa." - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Osastot ja osastotoimittajat" - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "(Jos osastoja ei ole lisätty, kohteet lähetetään oletusarvoisesti Kirjat-osastoon.)" - -msgid "manager.setup.sectionsDescription" -msgstr "" -"Luodaksesi tai muokataksesi julkaisijan sarjoja mene Sarjan hallinnointi " -"-kohtaan.

      Julkaisijalle kohteita lähettävät kirjoittajat " -"nimittävät..." - -msgid "manager.setup.securitySettings" -msgstr "Käyttöoikeus- ja turvallisuusasetukset" - -msgid "manager.setup.securitySettings.note" -msgstr "Muita turvallisuuteen ja käyttöoikeuksiin liittyviä valintoja voidaan määrittää Käyttöoikeudet ja turvallisuus -sivulla." - -msgid "manager.setup.selectEditorDescription" -msgstr "Toimittaja, joka on mukana toimitusprosessin alusta loppuun asti." - -msgid "manager.setup.selectSectionDescription" -msgstr "Julkaisijan sarja, johon kohdetta harkitaan." - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "Näytä aina julkaistavien tiedostojen linkit ja ilmaise rajoitettu saatavuus." - -msgid "manager.setup.siteAccess" -msgstr "Sivuston ja sisällön saatavuuden lisärajoitukset" - -msgid "manager.setup.stepsToPressSite" -msgstr "Julkaisijan verkkosivuston luonnin viisi vaihetta" - -msgid "manager.setup.subjectExamples" -msgstr "(Esim. fotosynteesi; mustat aukot; neliväriteoreema; Bayesin teoreema)" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Avainsanat" - -msgid "manager.setup.subjectProvideExamples" -msgstr "Anna esimerkkejä avainsanoista tai aiheista kirjoittajien avuksi" - -msgid "manager.setup.submissionGuidelines" -msgstr "Käsikirjoituksen lähettämisen ohjeet" - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Käsikirjoituksen lähettämisen tarkistuslista" - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "Tarkistuslistan kohta vaaditaan." - -msgid "manager.setup.workflow" -msgstr "Työnkulku" - -msgid "manager.setup.submissions.description" -msgstr "Ohjeet kirjoittajille, tekijänoikeudet ja indeksointi (sis. rekisteröinnin)." - -msgid "manager.setup.coverThumbnails" -msgstr "Kannen pikkukuvat" - -msgid "manager.setup.coverThumbnailsDescription" -msgstr "Määritä kannen pikkukuvien maksimileveys ja -korkeus. Mikäli pikkukuvien koko on näitä asetuksia suurempi, kokoa pienennetään, mutta kuvien ollessa asetuksia pienempiä, niitä ei laajenneta. Kuvia ei koskaan venytetä näihin mittoihin." - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Maksimikorkeus" - -msgid "manager.setup.coverThumbnailsMaxHeightRequired" -msgstr "Kannen pikkukuvien maksimikorkeus vaaditaan." - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Maksimileveys" - -msgid "manager.setup.coverThumbnailsMaxWidthRequired" -msgstr "Kannen pikkukuvien maksimileveys vaaditaan." - -msgid "manager.setup.coverThumbnailsResize" -msgstr "Muuta kaikkien olemassa olevien kannen pikkukuvien kokoa." - -msgid "manager.setup.typeExamples" -msgstr "(Esim. historiatutkimus; kvasikokeellinen; kirjallisuusanalyysi; kysely/haastattelu)" - -msgid "manager.setup.typeMethodApproach" -msgstr "Tyyppi (menetelmä/lähestymistapa)" - -msgid "manager.setup.typeProvideExamples" -msgstr "Anna esimerkkejä tälle alalle oleellisista tutkimustyypeistä ja -menetelmistä sekä lähestymistavoista" - -msgid "manager.setup.useCopyeditors" -msgstr "Jokaiselle käsikirjoitukselle valitaan tekninen toimittaja." - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "Julkaisija käyttää toimitus-/arviointineuvostoa." - -msgid "manager.setup.useImageTitle" -msgstr "Nimekkeen kuva" - -msgid "manager.setup.useStyleSheet" -msgstr "Julkaisijan tyylitiedosto" - -msgid "manager.setup.useLayoutEditors" -msgstr "Sähköisen julkaisun HTML-, PDF- ja muiden tiedostojen valmisteluun valitaan taittaja." - -msgid "manager.setup.useProofreaders" -msgstr "Julkaistavien tiedostojen tarkistamiseen (yhdessä kirjoittajien kanssa) ennen julkaisua valitaan oikolukija." - -msgid "manager.setup.userRegistration" -msgstr "Käyttäjärekisteröinti" - -msgid "manager.setup.useTextTitle" -msgstr "Nimekkeen teksti" - -msgid "manager.setup.volumePerYear" -msgstr "Nidettä vuodessa" - -msgid "manager.setup.publicationFormat.code" -msgstr "Muoto" - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "Muoto on valittava." - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "Tälle muodolle on annettava nimi." - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "Onko tämä fyysinen (ei digitaalinen) muoto?" - -msgid "manager.setup.publicationFormat.inUse" -msgstr "" -"Tätä julkaisumuotoa ei voi poistaa, koska se on tällä hetkellä yhden kirjan " -"käytössä." - -msgid "manager.setup.newPublicationFormat" -msgstr "Uusi julkaisumuoto" - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "Luo uusi julkaisumuoto täyttämällä alla oleva lomake ja klikkaamalla ”Luo”-painiketta." - -msgid "manager.setup.genresDescription" -msgstr "Näitä lajityyppejä käytetään tiedostojen nimeämistarkoituksiin ja ne näytetään vetovalikossa tiedostojen lataamisen yhteydessä. ##-merkityt lajityypit mahdollistavat sen, että käyttäjät voivat yhdistää tiedoston joko koko kirjaan 99Z tai vain tiettyyn lukuun numerolla (esim. 02)." - -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "Toimittajat lähettävät arvioijille arviointipyynnön sähköpostilla, jonka liitteenä käsikirjoitus on. Arvioijat ilmoittavat sähköpostitse joko hyväksyvänsä tai hylkäävänsä arviointipyynnön. Samoin itse arviointi ja suositus toimitetaan sähköpostitse. Toimittajat syöttävät arvioijan suostumuksen/kieltäytymisen, arvioinnin sekä suosituksen käsikirjoituksen Arviointi-sivulle, jotta arviointiprosessi tallentuu järjestelmään." - -msgid "manager.setup.genres" -msgstr "Lajityypit" - -msgid "manager.setup.newGenre" -msgstr "Uusi kirjan lajityyppi" - -msgid "manager.setup.newGenreDescription" -msgstr "Luo uusi lajityyppi täyttämällä alla oleva lomake ja klikkaamalla ”Luo”-painiketta." - -msgid "manager.setup.deleteSelected" -msgstr "Poista valitut" - -msgid "manager.setup.restoreDefaults" -msgstr "Palauta oletusasetukset" - -msgid "manager.setup.prospectus" -msgstr "Esiteopas" - -msgid "manager.setup.prospectusDescription" -msgstr "" -"Esiteopas on julkaisijan laatima asiakirja. Sen tarkoitus on auttaa " -"kirjoittajaa kuvailemaan lähetettyjä materiaaleja tavalla, joka mahdollistaa " -"sen, että julkaisija voi määritellä käsikirjoituksen arvon. Esite voi " -"sisältää paljon kohtia aina markkinointipotentiaalista teoreettiseen arvoon. " -"Julkaisijan tulisi luoda sellainen esiteopas, joka täydentää sen " -"julkaisutavoitteita." - -msgid "manager.setup.submitToCategories" -msgstr "Salli käsikirjoitusten lähetys kategoriaan" - -msgid "manager.setup.submitToSeries" -msgstr "Salli käsikirjoitusten lähetys sarjaan" - -msgid "manager.setup.issnDescription" -msgstr "ISSN (International Standard Serial Number) on kahdeksannumeroinen tunnus, joka toimii aikakausjulkaisujen, mukaan lukien sähköiset kausijulkaisut, tunnuksena. Tunnuksen saa Suomen ISSN-keskuksesta." - -msgid "manager.setup.cataloguingMetadata" -msgstr "Metatietojen luettelointi" - -msgid "manager.setup.currentFormats" -msgstr "Nykyiset muodot" - -msgid "manager.setup.categoriesAndSeries" -msgstr "Kategoriat ja sarjat" - -msgid "manager.setup.categories.description" -msgstr "" -"Voit luoda luettelon kategorioista helpottaaksesi julkaisuidesi järjestelyä. " -"Kategoriat ovat aihealueittaisia (esim. taloustiede; kirjallisuus; runous " -"jne.) kirjaryhmittymiä. Pääkategorioihin voidaan sisällyttää toisia " -"kategorioita, esimerkiksi Taloustiede-pääkategoria voi sisältää erilliset " -"Mikro- ja Makrotaloustieteiden kategoriat. Kävijät voivat hakea ja selailla " -"sisältöä kategorioiden mukaan." - -msgid "manager.setup.series.description" -msgstr "" -"Voit luoda sarjoja helpottaaksesi julkaisuidesi järjestelyä. Sarja edustaa " -"erityistä kirjojen joukkoa, jotka käsittelevät jonkun, yleensä yhden tai " -"useamman tiedekunnan jäsenen, ehdottamaa ja valvomaa teemaa tai aiheita. " -"Kävijät voivat hakea ja selailla sisältöä sarjojen mukaan." - -msgid "manager.setup.reviewForms" -msgstr "Arviointilomakkeet" - -msgid "manager.setup.roleType" -msgstr "Roolityyppi" - -msgid "manager.setup.authorRoles" -msgstr "Kirjoittajaroolit" - -msgid "manager.setup.managerialRoles" -msgstr "Hallinnon roolit" - -msgid "manager.setup.availableRoles" -msgstr "Käytettävissä olevat roolit" - -msgid "manager.setup.currentRoles" -msgstr "Nykyiset roolit" - -msgid "manager.setup.internalReviewRoles" -msgstr "Sisäisen arvioinnin roolit" - -msgid "manager.setup.masthead" -msgstr "Tunnuslaatikko" - -msgid "manager.setup.editorialTeam" -msgstr "Toimituskunta" - -msgid "manager.setup.editorialTeam.description" -msgstr "" -"Lista toimittajista, toimitusjohtajista ja muista julkaisijaan liittyvistä " -"henkilöistä." - -msgid "manager.setup.files" -msgstr "Tiedostot" - -msgid "manager.setup.productionTemplates" -msgstr "Tuotannon mallipohjat" - -msgid "manager.files.note" -msgstr "" -"Huom! Tiedostoselain (Files Browser) on erikoisominaisuus, jonka avulla " -"julkaisijaan liittyviä tiedostoja ja hakemistoja voidaan katsoa ja käsitellä " -"suoraan." - -msgid "manager.setup.authorCopyrightNotice.sample" -msgstr "" -"

      Ehdotetut Creative Commons -tekijänoikeushuomautukset

      \n" -"

      Ehdotettu käytäntö painoille, jotka tarjoavat avoimen saatavuuden (Open Access)

      \n" -"Tässä painossa julkaisevat kirjoittajat hyväksyvät seuraavat ehdot:\n" -"
        \n" -"\t
      1. Kirjoittajat säilyttävät tekijänoikeuden ja myöntävät painolle oikeuden julkaista työn ensimmäisenä. Samanaikaisesti työ lisensoidaan Creative Commons Attribution License -lisenssillä, joka sallii muiden jakaa työtä vain, jos työn alkuperäinen tekijä sekä sen ensijulkaisu tässä painossa mainitaan.
      2. \n" -"\t
      3. Kirjoittajat voivat tehdä erillisiä, muita sopimuksellisia sarjoja työn tässä painossa julkaistun version levittämiseksi ilman yksityisoikeutta (esim. lähettää sen julkaisuarkistoon tai julkaista sen kirjassa) vain, jos työn ensijulkaisu tässä painossa mainitaan.
      4. \n" -"\t
      5. Kirjoittajilla on lupa lähettää työnsä verkkoon (esim. julkaisuarkistoihin tai omille verkkosivuilleen) sekä ennen käsikirjoituksen lähetysprosessia että sen aikana. Kirjoittajia myös kannustetaan toimimaan näin, koska se voi johtaa hyödyllisiin kanssakäymisiin sekä siihen, että julkaistuun työhön viitataan jo aikaisessa vaiheessa ja enemmän. (Lisää avoimen saatavuuden vaikutuksesta).
      6. \n" -"
      \n" -"\n" -"

      Ehdotettu käytäntö painoille, jotka tarjoavat viiveellisen avoimen saatavuuden (Delayed Open Access)

      \n" -"Tässä painossa julkaisevat kirjoittajat hyväksyvät seuraavat ehdot:\n" -"
        \n" -"\t
      1. Kirjoittajat säilyttävät tekijänoikeuden ja myöntävät painolle oikeuden julkaista työn ensimmäisenä. [MÄÄRITÄ AJANJAKSO] julkaisemisen jälkeen työ samanaikaisesti lisensoidaan Creative Commons Attribution License -lisenssillä, joka sallii muiden jakaa työtä vain, jos työn alkuperäinen tekijä sekä sen ensijulkaisu tässä painossa mainitaan.
      2. \n" -"\t
      3. Kirjoittajat voivat tehdä erillisiä, muita sopimuksellisia sarjoja työn tässä painossa julkaistun version levittämiseksi ilman yksityisoikeutta (esim. lähettää sen julkaisuarkistoon tai julkaista sen kirjassa) vain, jos työn ensijulkaisu tässä painossa mainitaan.
      4. \n" -"\t
      5. Kirjoittajilla on lupa lähettää työnsä verkkoon (esim. julkaisuarkistoihin tai omille verkkosivuilleen) sekä ennen käsikirjoituksen lähetysprosessia että sen aikana. Kirjoittajia myös kannustetaan toimimaan näin, koska se voi johtaa hyödyllisiin kanssakäymisiin sekä siihen, että julkaistuun työhön viitataan jo aikaisemmassa vaiheessa ja enemmän. (Lisää avoimen saatavuuden vaikutuksesta).
      6. \n" -"
      " - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "" -"Vaiheet: Käsikirjoitusjono > Käsikirjoituksen arviointi > " -"Käsikirjoituksen toimittaminen > Sisällysluettelo.

      \n" -"Valitse malli näiden toimitusprosessin kohtien käsittelyä varten. (" -"Valitaksesi hallinnoivan toimittajan ja sarjan toimittajat mene Toimittajat-" -"kohtaan Julkaisijan hallinnointi -sivulla.)" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "" -"

      Kun lukijoiden halutaan löytävän verkkoversiot töistä, joihin kirjoittaja " -"viittaa, seuraavat vaihtoehdot ovat käytettävissä.

      \n" -"\n" -"
        \n" -"\t
      1. Lisää lukutyökalu

        Julkaisijan sivuston hallinnoija " -"voi lisätä “Etsi lähdeviitteitä” julkaistujen kohteiden lukutyökaluihin, " -"mahdollistaen sen, että lukijat voivat liittää lähdeviitteen nimekkeen ja " -"hakea viitattua työtä etukäteen valituista tieteellisistä " -"tietokannoista.

      2. \n" -"\t
      3. Upota linkit lähdeviitteisiin

        Taittaja voi lisätä " -"linkin verkosta löytyviin lähdeviitteisiin seuraamalla seuraavia ohjeita (" -"joita voidaan muokata).

      4. \n" -"
      " - -msgid "manager.publication.library" -msgstr "Julkaisijan kirjasto" - -msgid "manager.setup.resetPermissions" -msgstr "Palauta kirjojen käyttöoikeudet" - -msgid "manager.setup.resetPermissions.confirm" -msgstr "Haluatko varmasti palauttaa oletusarvoisiksi käyttöoikeustiedot, jotka on jo liitetty kirjoihin?" - -msgid "manager.setup.resetPermissions.description" -msgstr "" -"Tekijänoikeusilmauksen ja -suojan tiedot liitetään pysyvästi julkaistuun " -"sisältöön. Tämä varmistaa sen, että kyseiset tiedot eivät muutu, vaikka " -"julkaisija muuttaisi toimintaperiaatteitaan uusia käsikirjoituksia koskien. " -"Palauttaaksesi tallennetut käyttöoikeustiedot, jotka on jo liitetty " -"julkaistuun sisältöön, käytä alla olevaa painiketta." - -msgid "grid.genres.title.short" -msgstr "Osat" - -msgid "grid.genres.title" -msgstr "Kirjan osat" - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "" -"Lähetä kopio ensisijaiselle yhteyshenkilölle, joka on mainittu julkaisijan " -"asetuksissa." - -msgid "grid.category.add" -msgstr "Lisää kategoria" - -msgid "grid.category.edit" -msgstr "Muokkaa kategoriaa" - -msgid "grid.category.name" -msgstr "Nimi" - -msgid "grid.category.path" -msgstr "Polku" - -msgid "grid.category.urlWillBe" -msgstr "Kategorian URL-osoitteeksi tulee: {$sampleUrl}" - -msgid "grid.series.urlWillBe" -msgstr "Sarjan URL-osoitteeksi tulee: {$sampleUrl}" - -msgid "grid.category.pathAlphaNumeric" -msgstr "Kategorian polku saa sisältää vain kirjaimia ja numeroita." - -msgid "grid.category.pathExists" -msgstr "Kategorian polku on jo olemassa. Anna yksilöllinen polku." - -msgid "grid.category.description" -msgstr "Kuvaus" - -msgid "grid.category.parentCategory" -msgstr "Pääkategoria" - -msgid "grid.category.removeText" -msgstr "Haluatko varmasti poistaa tämän kategorian?" - -msgid "grid.category.nameRequired" -msgstr "Anna kategorian nimi." - -msgid "grid.category.categoryDetails" -msgstr "Kategorian tiedot" - -msgid "grid.series.pathAlphaNumeric" -msgstr "Sarjan polku saa sisältää vain kirjaimia ja numeroita." - -msgid "grid.series.pathExists" -msgstr "Sarjan polku on jo olemassa. Anna yksilöllinen polku." - -msgid "manager.navigationMenus.form.navigationMenuItem.series" -msgstr "Valitse sarja" - -msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" -msgstr "Valitse sarja, jonka haluat linkittää tähän valikon kohtaan." - -msgid "manager.navigationMenus.form.navigationMenuItem.category" -msgstr "Valitse kategoria" - -msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" -msgstr "Valitse kategoria, jonka haluat linkittää tähän valikon kohtaan." - -msgid "manager.setup.announcements.success" -msgstr "Ilmoitusasetukset päivitetty." - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "Tämä ei ole kelvollinen julkaisijan koodityyppi." - -msgid "manager.settings.publisher.identity.description" -msgstr "" -"Tämä on pakollinen tieto kelvollisten ONIX-kuvailutietojen julkaisemiseksi." - -msgid "manager.settings.publisher.identity" -msgstr "Julkaisijan tiedot" - -msgid "manager.payment.success" -msgstr "Maksutoimintojen asetukset päivitetty." - -msgid "manager.setup.copyrightNotice.sample" -msgstr "" -"

      Ehdotetut Creative Commons-tekijänoikeushuomautukset

      \n" -"

      1. Ehdotettu käytäntö julkaisijoille, jotka tarjoavat avoimen " -"saatavuuden (Open Access)

      \n" -"Tämän julkaisijan kirjoittajat hyväksyvät seuraavat ehdot:\n" -"
        \n" -"\t
      1. Kirjoittajat säilyttävät tekijänoikeuden ja myöntävät julkaisulle " -"oikeuden julkaista työn ensimmäisenä. Samanaikaisesti työ lisensoidaan " -"Creative Commons Attribution License -lisenssillä, joka sallii muiden " -"jakaa työtä vain, jos työn alkuperäinen tekijä sekä sen ensijulkaisu tämän " -"julkaisijan kirjassa mainitaan.
      2. \n" -"\t
      3. Kirjoittajat voivat tehdä erillisiä, muita sopimuksia työn tässä " -"julkaisussa julkaistun version levittämisestä ilman yksityisoikeutta (esim. " -"lähettää sen julkaisuarkistoon tai julkaista sen muualla) vain, jos työn " -"ensijulkaisu tämän julkaisijan kirjassa mainitaan.
      4. \n" -"\t
      5. Kirjoittajilla on lupa lähettää työnsä verkkoon (esim. " -"julkaisuarkistoihin tai omille verkkosivuilleen) sekä ennen käsikirjoituksen " -"lähetysprosessia että sen aikana. Kirjoittajia myös kannustetaan toimimaan " -"näin, koska se voi johtaa hyödyllisiin kanssakäymisiin sekä siihen, että " -"julkaistuun työhön viitataan jo aikaisessa vaiheessa ja enemmän. (Lisää " -"avoimen saatavuuden vaikutuksesta).
      6. \n" -"
      \n" -"\n" -"

      Ehdotettu käytäntö julkaisijoille, jotka tarjoavat viiveellisen avoimen " -"saatavuuden (Delayed Open Access)

      \n" -"Tämän julkaisijan kirjoittajat hyväksyvät seuraavat ehdot:\n" -"
        \n" -"\t
      1. Kirjoittajat säilyttävät tekijänoikeuden ja myöntävät julkaisijalle " -"oikeuden julkaista työn ensimmäisenä. [MÄÄRITÄ AJANJAKSO] julkaisemisen " -"jälkeen työ samanaikaisesti lisensoidaan Creative Commons Attribution " -"License-lisenssillä, joka sallii muiden jakaa työtä vain, jos työn " -"alkuperäinen tekijä sekä sen ensijulkaisu tämän julkaisijan kirjassa " -"mainitaan.
      2. \n" -"\t
      3. Kirjoittajat voivat tehdä erillisiä, muita sopimuksia työn tässä " -"julkaisussa julkaistun versio levittämisestä ilman yksityisoikeutta (esim. " -"lähettää sen julkaisuarkistoon tai julkaista sen muualla) vain, jos työn " -"ensijulkaisu tämän julkaisijan kirjassa mainitaan.
      4. \n" -"\t
      5. Kirjoittajilla on lupa lähettää työnsä verkkoon (esim. " -"julkaisuarkistoihin tai omille verkkosivuilleen) sekä ennen käsikirjoituksen " -"lähetysprosessia että sen aikana. Kirjoittajia myös kannustetaan toimimaan " -"näin, koska se voi johtaa hyödyllisiin kanssakäymisiin sekä siihen, että " -"julkaistuun työhön viitataan jo aikaisemmassa vaiheessa ja enemmän. (Lisää <" -"a target=\"_new\" href=\"http://opcit.eprints.org/oacitation-biblio.html\">" -"avoimen saatavuuden vaikutuksesta).
      6. \n" -"
      " - -msgid "manager.setup.lists.success" -msgstr "Listauksia koskevat asetukset on päivitetty." - -msgid "manager.setup.itemsPerPage.description" -msgstr "" -"Rajoita niiden kohteiden (käsikirjoitus, käyttäjä jne.) lukumäärä, jotka " -"näytetään yhdellä sivulla." - -msgid "stats.publications.abstracts" -msgstr "Luettelomerkinnät" - -msgid "stats.publications.countOfTotal" -msgstr "{$count}/{$total} kirjasta" - -msgid "stats.publications.totalGalleyViews.timelineInterval" -msgstr "Kokotekstien latausmäärät ajankohdan mukaan" - -msgid "stats.publications.totalAbstractViews.timelineInterval" -msgstr "Tiivistelmien katselukerrat ajankohdan mukaan" - -msgid "stats.publications.none" -msgstr "Annetuilla hakumääreillä ei löytynyt kirjoja." - -msgid "stats.publications.details" -msgstr "Kirjan tiedot" - -msgid "stats.publicationStats" -msgstr "Kirjatilastot" - -msgid "manager.setup.resetPermissions.success" -msgstr "Teosten lupatiedot tyhjennettiin onnistuneesti." - -msgid "manager.setup.siteAccess.viewContent" -msgstr "Näytä julkaistut teokset" - -msgid "manager.setup.siteAccess.view" -msgstr "Pääsy verkkosivulle" - -msgid "manager.setup.searchEngineIndexing.success" -msgstr "Hakukoneindeksointia koskevat asetukset on päivitetty." - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "" -"Auta Googlea ja muita hakukoneita löytämään sivustosi. Suosittelemme sinua " -"lähettämään sivustokarttasi " -"hakukoneille tiedoksi." - -msgid "manager.setup.searchDescription.description" -msgstr "" -"Anna lyhyt (50-300 merkkiä) kuvaus, jonka hakukoneet voivat näyttää " -"julkaisijan sivustoa koskevissa hakutuloksissaan." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" -msgstr "" -"Lisää automaattisen kirjautumisen mahdollistava linkki arvioijille lähtevään " -"kutsuun." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "" -"Arvioijilla on pääsy käsikirjoituksen tiedostoihin vasta pyynnön " -"hyväksymisen jälkeen." - -msgid "manager.setup.contextTitle" -msgstr "Julkaisijan sivuston nimi" - -msgid "manager.setup.pressThumbnail.description" -msgstr "" -"Pieni logo tai julkaisijaa edustava kuva, jota voidaan käyttää " -"julkaisijoiden listauksessa." - -msgid "manager.setup.pressThumbnail" -msgstr "Julkaisijan pikkukuva" - -msgid "manager.setup.contextInitials" -msgstr "Julkaisijan alkukirjaimet" - -msgid "manager.setup.privacyStatement.success" -msgstr "Tietosuojaselostetta koskevat asetukset on päivitetty." - -msgid "manager.setup.numPageLinks.description" -msgstr "Rajoita listauksessa näkyvien sivulinkkien määrää." - -msgid "manager.setup.masthead.success" -msgstr "Tunnuslaatikkoa koskevat asetukset on päivitetty." - -msgid "manager.setup.keyInfo.description" -msgstr "Anna julkaisijan lyhyt kuvaus ja esittele toimituskunnan jäsenet." - -msgid "manager.setup.keyInfo" -msgstr "Avaintiedot" - -msgid "manager.setup.itemsPerPage" -msgstr "Kohteita per sivu" - -msgid "manager.setup.information.success" -msgstr "Julkaisijan tietoja koskevat asetukset on päivitetty." - -msgid "manager.setup.information" -msgstr "Tietoa" - -msgid "manager.setup.identity" -msgstr "Julkaisijan sivuston tiedot" - -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "" -"Montako ilmoitusta näytetään kotisivulla? Jätä tyhjäksi jos et halu näyttää " -"yhtään." - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Näytä kotisivulla" - -msgid "manager.setup.enableAnnouncements.description" -msgstr "" -"Ilmoituksia julkaisemalla, lukijoille voidaan kertoa uutisista ja " -"tapahtumista. Julkaistut ilmoitukset näkyvät Ilmoitukset-sivulla." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Ota ilmoitukset käyttöön" - -msgid "manager.setup.emailSignature.description" -msgstr "" -"Valmiisiin sähköposteihin, jotka järjestelmä lähettää julkaisijan puolesta, " -"lisätään seuraava allekirjoitus." - -msgid "manager.setup.emailBounceAddress.disabled" -msgstr "" -"Aktivoidakseen tämän valinnan sivuston ylläpitäjän täytyy ottaa käyttöön " -"allow_envelope_sender -valinta OMP:n määritystiedostossa. " -"Palvelimen lisämäärityksiä saatetaan edellyttää tämän toiminnon tukemiseksi, " -"kuten OMP:n käyttöohjeissa mainitaan." - -msgid "manager.setup.emailBounceAddress.description" -msgstr "" -"Kaikki sähköpostit, jotka eivät mene perille johtavat tähän osoitteeseen " -"lähetettävään virheilmoitukseen." - -msgid "manager.setup.displayNewReleases.label" -msgstr "Uutuudet" - -msgid "manager.setup.displayInSpotlight.label" -msgstr "Nosto" - -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Esittelyssä olevat teokset" - -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" -msgstr "" -"Tätä kokoa suuremmat kuvat pienennetään tähän kokoon, mutta kokoa pienempiä " -"kuvia ei suurenneta." - -msgid "manager.setup.contextSummary" -msgstr "Julkaisijan yhteenveto" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Kerro sellaisia lisätietoja, jotka voivat kiinnostaa lukijoita, kirjoittajia " -"tai arvioijia. Esimerkiksi avoimen julkaisemisen linjaukset, tarkoitus ja " -"toimintaperiaatteet, tukijat ja julkaisijan historia." - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "" -"Kirjoita mahdolliset lisätiedot, jotka haluat esittää lukijoille Ilmoitukset-" -"sivulla." - -msgid "manager.setup.contextAbout" -msgstr "Tietoa julkaisijasta" - -msgid "manager.setup.disableSubmissions.description" -msgstr "" -"Estä käyttäjiä lähettämästä uusia teoksia julkaisijalle. Käsikirjoitukset " -"yksittäisiin julkaisijan sarjoihin voidaan estää " -"julkaisijan sarjojen asetussivulla." - -msgid "manager.setup.disableSubmissions.notAccepting" -msgstr "" -"Julkaisija ei ota vastaan käsikirjoituksia tällä hetkellä. Käy työnkulun " -"asetuksissa sallimassa käsikirjoitukset." - -msgid "manager.series.confirmDeactivateSeries.error" -msgstr "" -"Vähintään yhden sarjan tulee olla käytössä. Käy työnkulun asetuksissa " -"estämässä käsikirjoitusten lähettäminen tälle julkaisijalle." - -msgid "plugins.importexport.native.exportSubmissions" -msgstr "Vie käsikirjoituksia" - -msgid "plugins.importexport.common.invalidXML" -msgstr "Virheellinen XML:" - -msgid "plugins.importexport.common.error.validation" -msgstr "Valittuja kohteita ei voitu muuntaa." - -msgid "plugins.importexport.common.error.noObjectsSelected" -msgstr "Yhtään kohdetta ei ole valittu." diff --git a/locale/fi_FI/submission.po b/locale/fi_FI/submission.po deleted file mode 100644 index c2da397511d..00000000000 --- a/locale/fi_FI/submission.po +++ /dev/null @@ -1,492 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-13T19:56:53+00:00\n" -"PO-Revision-Date: 2020-12-11 20:34+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.submit.title" -msgstr "Lähetä käsikirjoitus" - -msgid "submission.upload.selectComponent" -msgstr "Valitse osa" - -msgid "submission.title" -msgstr "Kirjan nimeke" - -msgid "submission.select" -msgstr "Valitse käsikirjoitus" - -msgid "submission.synopsis" -msgstr "Tiivistelmä" - -msgid "submission.workflowType" -msgstr "Käsikirjoitustyyppi" - -msgid "submission.workflowType.description" -msgstr "" -"Erillisteos on yhden tai useamman kirjoittajan kokonaan kirjoittama teos. " -"Toimitetussa teoksessa jokaisella luvulla on eri kirjoittaja (lukujen tiedot " -"syötetään myöhemmin.)" - -msgid "submission.workflowType.editedVolume" -msgstr "Toimitettu teos: Jokaisella luvulla on eri kirjoittaja." - -msgid "submission.workflowType.authoredWork" -msgstr "Erillisteos: Yhden tai useamman kirjoittajan kokonaan kirjoittama teos." - -msgid "submission.editorName" -msgstr "{$editorName} (toim.)" - -msgid "submission.monograph" -msgstr "Kirja" - -msgid "submission.published" -msgstr "Valmis tuotantoon" - -msgid "submission.fairCopy" -msgstr "Puhtaaksi kirjoitettu käsikirjoitus" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.artwork.permissions" -msgstr "Luvat" - -msgid "submission.chapter" -msgstr "Luku" - -msgid "submission.chapters" -msgstr "Luvut" - -msgid "submission.chaptersDescription" -msgstr "Tässä voit luetella luvut ja valita tekijät yllä olevasta tekijälistasta. Nämä tekijät saavat pääsyn lukuihin julkaisuprosessin eri vaiheissa." - -msgid "submission.chapter.addChapter" -msgstr "Lisää luku" - -msgid "submission.chapter.editChapter" -msgstr "Muokkaa lukua" - -msgid "submission.copyedit" -msgstr "Tekninen toimittaminen" - -msgid "submission.publicationFormats" -msgstr "Julkaisumuodot" - -msgid "submission.proofs" -msgstr "Korjausvedokset" - -msgid "submission.download" -msgstr "Lataa" - -msgid "submission.sharing" -msgstr "Jaa tämä" - -msgid "manuscript.submission" -msgstr "Käsikirjoituksen lähetys" - -msgid "submission.round" -msgstr "Kierros {$round}" - -msgid "submissions.queuedReview" -msgstr "Arvioitavana" - -msgid "manuscript.submissions" -msgstr "Vastaanotetut käsikirjoitukset" - -msgid "submission.confirmSubmit" -msgstr "Oletko varma, että haluat lähettää tämän käsikirjoituksen?" - -msgid "submission.metadata" -msgstr "Metatiedot" - -msgid "submission.supportingAgencies" -msgstr "Kannattajajärjestöt" - -msgid "grid.action.addChapter" -msgstr "Luo uusi luku" - -msgid "grid.action.editChapter" -msgstr "Muokkaa tätä lukua" - -msgid "grid.action.deleteChapter" -msgstr "Poista tämä luku" - -msgid "submission.submit" -msgstr "Uuden kirjan lähetys" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Aloita käsikirjoituksen lähetys julkaisijalle" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Uusi käsikirjoitus" - -msgid "submission.submit.upload" -msgstr "Lataa käsikirjoitus" - -msgid "submission.submit.cancelSubmission" -msgstr "Voit viimeistellä tämän lähetyksen myöhemmin valitsemalla Aktiiviset käsikirjoitukset Kirjoittajan etusivulta." - -msgid "submission.submit.selectSeries" -msgstr "Valitse sarja (valinnainen)" - -msgid "author.submit.seriesRequired" -msgstr "Kelvollinen sarja vaaditaan." - -msgid "submission.submit.seriesPosition" -msgstr "Sijoitus sarjassa" - -msgid "submission.submit.seriesPosition.description" -msgstr "Esimerkiksi: Kirja 2, Nide 2" - -msgid "submission.submit.form.localeRequired" -msgstr "Valitse käsikirjoituksen kieli." - -msgid "submission.submit.privacyStatement" -msgstr "Tietosuojaseloste" - -msgid "submission.submit.contributorRole" -msgstr "Tekijän rooli" - -msgid "submission.submit.form.authorRequired" -msgstr "Vähintään yksi kirjoittaja vaaditaan." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Jokaisen kirjoittajan etunimi, sukunimi ja sähköpostiosoite vaaditaan." - -msgid "submission.submit.form.titleRequired" -msgstr "Syötä kirjasi nimeke." - -msgid "submission.submit.form.abstractRequired" -msgstr "Kirjoita lyhyt yhteenveto kirjastasi." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Valitse tekijän rooli." - -msgid "submission.submit.submissionFile" -msgstr "Käsikirjoitustiedosto" - -msgid "submission.submit.prepare" -msgstr "Valmistelu" - -msgid "submission.submit.catalog" -msgstr "Luettelo" - -msgid "submission.submit.metadata" -msgstr "Metatiedot" - -msgid "submission.submit.finishingUp" -msgstr "Viimeistely" - -msgid "submission.submit.confirmation" -msgstr "Vahvistus" - -msgid "submission.submit.nextSteps" -msgstr "Seuraavat vaiheet" - -msgid "submission.submit.coverNote" -msgstr "Saate toimittajalle" - -msgid "submission.submit.generalInformation" -msgstr "Yleisiä tietoja" - -msgid "submission.submit.whatNext.description" -msgstr "" -"Julkaisijalle on ilmoitettu käsikirjoituksestasi ja sinulle on lähetetty " -"sähköpostitse vahvistus säilytettäväksi. Toimittajan arvioitua " -"käsikirjoituksen sinuun otetaan yhteyttä." - -msgid "submission.submit.checklistErrors" -msgstr "Lue ja kuittaa käsikirjoituksen tarkistuslistan kohdat. {$itemsRemaining} kohtaa on vielä kuittaamatta." - -msgid "submission.submit.placement" -msgstr "Käsikirjoituksen sijoittaminen" - -msgid "submission.submit.placement.categories" -msgstr "Kategoriat" - -msgid "submission.submit.placement.categoriesDescription" -msgstr "Valitse painon kategorioista se, jonne tämä työ lähetetään käsiteltäväksi." - -msgid "submission.submit.userGroup" -msgstr "Lähetä roolissani..." - -msgid "submission.submit.userGroupDescription" -msgstr "Jos olet lähettämässä toimitettua teosta, sinun tulee valita niteen toimittajan rooli." - -msgid "grid.chapters.title" -msgstr "Luvut" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Poista teknisen toimittajan lataus" - -msgid "submission.complete" -msgstr "Hyväksytty" - -msgid "submission.incomplete" -msgstr "Odottaa hyväksyntää" - -msgid "submission.editCatalogEntry" -msgstr "Merkintä" - -msgid "submission.catalogEntry.new" -msgstr "Lisää merkintä" - -msgid "submission.catalogEntry.add" -msgstr "Lisää valitut luetteloon" - -msgid "submission.catalogEntry.select" -msgstr "Valitse kirjat, jotka lisätään luetteloon" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "Valitse vähintään yksi kirja, joka lisätään luetteloon." - -msgid "submission.catalogEntry.confirm" -msgstr "Lisää tämä kirja julkiseen luetteloon" - -msgid "submission.catalogEntry.confirm.required" -msgstr "Vahvista, että käsikirjoitus on valmis luetteloon sijoitettavaksi." - -msgid "submission.catalogEntry.isAvailable" -msgstr "Tämä kirja on valmis sisällytettäväksi julkiseen luetteloon." - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Näytä käsikirjoitus" - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Kirja" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Luettelo" - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Julkaisumuoto" - -msgid "submission.event.metadataPublished" -msgstr "Kirjan metatiedot on hyväksytty julkaistavaksi." - -msgid "submission.event.metadataUnpublished" -msgstr "Kirjan metatiedot eivät ole enää julkaistuna." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Julkaisumuoto ”{$publicationFormatName}” on nyt saatavissa." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Julkaisumuoto \"{$publicationFormatName}\" ei ole enää saatavissa." - -msgid "submission.event.publicationFormatPublished" -msgstr "Julkaisumuoto \"{$publicationFormatName}\" on hyväksytty julkaistavaksi." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "Julkaisumuoto \"{$publicationFormatName}\" ei ole enää julkaistuna." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Luettelon metatiedot päivitettiin." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Julkaisumuodon \"{$formatName}\" metatiedot päivitettiin." - -msgid "submission.event.publicationFormatCreated" -msgstr "Julkaisumuoto \"{$formatName}\" luotiin." - -msgid "submission.event.publicationFormatRemoved" -msgstr "Julkaisumuoto \"{$formatName}\" poistettiin." - -msgid "submission.submit.titleAndSummary" -msgstr "Nimeke ja yhteenveto" - -msgid "workflow.review.externalReview" -msgstr "Ulkopuolinen arviointi" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Lähetä ulkopuoliseen arviointiin" - -msgid "submission.upload.fileContents" -msgstr "Käsikirjoituksen osa" - -msgid "submission.dependentFiles" -msgstr "Riippuvat tiedostot" - -msgid "submission.metadataDescription" -msgstr "" -"Nämä määritykset perustuvat Dublin Core -metatietosanastostandardiin. Se on " -"kansainvälinen standardi, jolla kuvataan julkaisijan julkaisemia sisältöjä." - -msgid "section.any" -msgstr "Mikä tahansa sarja" - -msgid "submission.list.monographs" -msgstr "Kirjat" - -msgid "submission.list.countMonographs" -msgstr "{$count} kirjaa" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count}/{$total} kirjasta" - -msgid "submission.list.orderFeatures" -msgstr "Järjestä esittelyssä olevat" - -msgid "submission.list.orderingFeatures" -msgstr "Vedä ja pudota tai napauta ylös- ja alas-painikkeita muuttaaksesi esittelyssä olevien kohteiden järjestystä etusivulla." - -msgid "submission.list.orderingFeaturesSection" -msgstr "Vedä ja pudota tai napauta ylös- ja alas-painikkeita muuttaaksesi kohteen {$title} ominaisuuksien järjestystä." - -msgid "submission.list.saveFeatureOrder" -msgstr "Tallenna järjestys" - -msgid "publication.scheduledIn" -msgstr "Tullaan julkaisemaan {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "" -"Kaikki julkaisuun liittyvät vaatimukset täyttyvät. Haluatko julkaista " -"teoksen?" - -msgid "publication.publishedIn" -msgstr "Julkaistu {$issueName}." - -msgid "publication.required.issue" -msgstr "Julkaisu pitää lisätä numeroon ennen kuin sen von julkaista." - -msgid "publication.invalidSeries" -msgstr "Sarjaa ei löytynyt." - -msgid "publication.catalogEntry.success" -msgstr "Luettelomerkinnän tiedot on päivitetty." - -msgid "publication.catalogEntry" -msgstr "Luettelomerkintä" - -msgid "catalog.browseTitles" -msgstr "{$numTitles} nimikettä" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Jokaisella luvulla voi olla oma julkaisupäivä." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Kaikki luvut käyttävät teoksen julkaisupäivää." - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Julkaisupäivät" - -msgid "submission.submit.noContext" -msgstr "Käsikirjoitusta vastaavaa julkaisijaa ei löytynyt." - -msgid "author.isVolumeEditor" -msgstr "Merkitse tämä tekijä teoksen toimittajaksi." - -msgid "submission.chapter.pages" -msgstr "Sivut" - -msgid "submission.workflowType.change" -msgstr "Vaihda" - -msgid "submission.workflowType.editedVolume.label" -msgstr "Toimitettu teos" - -msgid "submission.publication" -msgstr "Julkaistu versio" - -msgid "publication.status.published" -msgstr "Julkaistu" - -msgid "submission.status.scheduled" -msgstr "Ajoitettu" - -msgid "publication.status.unscheduled" -msgstr "Ajoitus peruttu" - -msgid "submission.publications" -msgstr "Julkaistut versiot" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "Tekijänoikeusvuosi asetetaan automaattisesti julkaisun yhteydessä." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "Tekijänoikeusvuosi asetetaan automaattisesti julkaisupäivän mukaan." - -msgid "publication.datePublished" -msgstr "Julkaisupäivä" - -msgid "publication.editDisabled" -msgstr "Tämä versio on julkaistu eikä sitä voi muokata." - -msgid "publication.event.published" -msgstr "Käsikirjoitus julkaistiin." - -msgid "publication.event.scheduled" -msgstr "Käsikirjoitus ajoitettiin julkaistavaksi." - -msgid "publication.event.unpublished" -msgstr "Käsikirjoituksen julkaisu peruttiin." - -msgid "publication.event.versionPublished" -msgstr "Uusi versio julkaistiin." - -msgid "publication.event.versionScheduled" -msgstr "Uusi versio ajoitettiin julkaistavaksi." - -msgid "publication.event.versionUnpublished" -msgstr "Versio poistettiin." - -msgid "publication.invalidSubmission" -msgstr "Tälle julkaistulle versiolle ei löydy vastaavaa käsikirjoitusta." - -msgid "publication.publish" -msgstr "Julkaise" - -msgid "publication.publish.requirements" -msgstr "Seuraavat ehdot pitää täyttyä ennen julkaisua." - -msgid "publication.required.declined" -msgstr "Hylättyä käsikirjoitusta ei voi julkaista." - -msgid "publication.required.reviewStage" -msgstr "" -"Käsikirjoituksen pitää olla teknisen toimituksessa tai tuotantovaiheessa, " -"jotta sen voi julkaista." - -msgid "submission.license.description" -msgstr "" -"Lisenssiksi annetaan julkaisun yhteydessä {$licenseName}." - -msgid "submission.copyrightHolder.description" -msgstr "Tekijänoikeus osoitetaan julkaisun yhteydessä {$copyright}." - -msgid "submission.copyrightOther.description" -msgstr "" -"Osoita julkaistujen käsikirjoitusten tekijänoikeus seuraavalle osapuolelle." - -msgid "publication.unpublish" -msgstr "Peru julkaisu" - -msgid "publication.unpublish.confirm" -msgstr "Oletko varma, että haluat peruuttaa julkaisun?" - -msgid "publication.unschedule.confirm" -msgstr "Oletko varma, että et halua ajoittaa tätä julkaistavaksi?" - -msgid "publication.version.details" -msgstr "Version {$version} tiedot" - -msgid "submission.queries.production" -msgstr "Tuotantoon liittyvät keskustelut" - -msgid "publication.inactiveSeries" -msgstr "{$series} (Inactive)" - -msgid "submission.list.viewEntry" -msgstr "Näytä merkintä" diff --git a/locale/fr_CA/admin.po b/locale/fr_CA/admin.po index 31101ca20aa..632081e9750 100644 --- a/locale/fr_CA/admin.po +++ b/locale/fr_CA/admin.po @@ -1,11 +1,12 @@ +# Marie-Hélène Vézina [UdeMontréal] , 2023. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2020-06-05 16:39+0000\n" -"Last-Translator: Marie-Hélène Vézina [UdeMontréal] \n" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Marie-Hélène Vézina [UdeMontréal] \n" "Language-Team: French (Canada) \n" "Language: fr_CA\n" @@ -13,16 +14,27 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.13.1\n" msgid "admin.hostedContexts" msgstr "Presses hébergées" +msgid "admin.settings.appearance.success" +msgstr "Les paramètres d'apparence du site ont bien été mis à jour." + +msgid "admin.settings.config.success" +msgstr "Les paramètres d'apparence du site ont bien été mis à jour." + +msgid "admin.settings.info.success" +msgstr "Les informations du site ont bien été mises à jour." + msgid "admin.settings.redirect" msgstr "Réacheminement de la presse" msgid "admin.settings.redirectInstructions" -msgstr "Les requêtes envoyées au site central seront redirigées vers cette presse. Cela pourrait être utile si le site héberge une seule presse, par exemple." +msgstr "" +"Les requêtes envoyées au site central seront redirigées vers cette presse. " +"Cela pourrait être utile si le site héberge une seule presse, par exemple." msgid "admin.settings.noPressRedirect" msgstr "Ne pas rediriger" @@ -31,7 +43,14 @@ msgid "admin.languages.primaryLocaleInstructions" msgstr "Ceci sera la langue par défaut pour le site et les presses hébergées." msgid "admin.languages.supportedLocalesInstructions" -msgstr "Choisissez les paramètres qui seront supportés sur le site. Toutes les presses hébergées sur le site pourront utiliser les paramètres sélectionnés. Ces derniers feront partie du menu de sélection de la langue apparaissant sur toutes les pages du site (lesquels peuvent être remplacés sur les pages d'une presse particulière). Si plusieurs paramètres ne sont pas sélectionnés, le bouton à bascule de la langue n'apparaitra pas et les presses n'auront pas accès aux paramètres de langue étendus." +msgstr "" +"Choisissez les paramètres qui seront supportés sur le site. Toutes les " +"presses hébergées sur le site pourront utiliser les paramètres sélectionnés. " +"Ces derniers feront partie du menu de sélection de la langue apparaissant " +"sur toutes les pages du site (lesquels peuvent être remplacés sur les pages " +"d'une presse particulière). Si plusieurs paramètres ne sont pas " +"sélectionnés, le bouton à bascule de la langue n'apparaitra pas et les " +"presses n'auront pas accès aux paramètres de langue étendus." msgid "admin.locale.maybeIncomplete" msgstr "*Les paramètres marqués pourraient être incomplets." @@ -42,7 +61,12 @@ msgstr "" "presses hébergées qui l'utilisent actuellement." msgid "admin.languages.installNewLocalesInstructions" -msgstr "Choisissez les autres paramètres de support que vous souhaitez installer dans ce système. Les paramètres doivent être installés avant de pouvoir être utilisés par les presses hébergées. Consultez la documentation de l'OMP pour de plus amples renseignements sur l'ajout de support pour les nouvelles langues." +msgstr "" +"Choisissez les autres paramètres de support que vous souhaitez installer " +"dans ce système. Les paramètres doivent être installés avant de pouvoir être " +"utilisés par les presses hébergées. Consultez la documentation de l'OMP pour " +"de plus amples renseignements sur l'ajout de support pour les nouvelles " +"langues." msgid "admin.languages.confirmDisable" msgstr "" @@ -55,18 +79,12 @@ msgstr "Version OMP" msgid "admin.systemConfiguration" msgstr "Configuration OMP" -msgid "admin.systemConfigurationDescription" -msgstr "Paramètres de configuration OMP pour config.inc.php." - msgid "admin.presses.pressSettings" msgstr "Configuration de la presse" msgid "admin.presses.noneCreated" msgstr "Aucune presse n'a été créée." -msgid "admin.contexts.confirmDelete" -msgstr "Vous voulez supprimer cette presse et tout son contenu de façon permanente?" - msgid "admin.contexts.create" msgstr "Créer une presse" @@ -77,11 +95,23 @@ msgid "admin.contexts.form.pathRequired" msgstr "Vous devez choisir un chemin." msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "Le chemin ne peut contenir que des caractères alphanumériques, des traits de soulignement et des traits d'union, et doit commencer et se terminer par un caractère alphanumérique." +msgstr "" +"Le chemin ne peut contenir que des caractères alphanumériques, des traits de " +"soulignement et des traits d'union, et doit commencer et se terminer par un " +"caractère alphanumérique." msgid "admin.contexts.form.pathExists" msgstr "Le chemin choisi est déjà utilisé par une autre presse." +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" + +msgid "admin.contexts.form.create.success" +msgstr "{$name} a bien été créé-e." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} a bien été modifié-e." + msgid "admin.contexts.contextDescription" msgstr "Description de la presse" @@ -91,19 +121,46 @@ msgstr "Ajouter la presse" msgid "admin.overwriteConfigFileInstructions" msgstr "" "

      NOTE!\n" -"

      Le système ne peut pas réécrire automatiquement le fichier de configuration. Pour appliquer les modifications de configuration, vous devez ouvrir config.inc.php dans un éditeur de texte approprié et remplacer le contenu par le contenu de la zone de texte ci-dessous.

      " +"

      Le système ne peut pas réécrire automatiquement le fichier de " +"configuration. Pour appliquer les modifications de configuration, vous devez " +"ouvrir config.inc.php dans un éditeur de texte approprié et " +"remplacer le contenu par le contenu de la zone de texte ci-dessous.

      " -msgid "admin.contexts.form.edit.success" -msgstr "{$name} a bien été modifié-e." +msgid "admin.settings.enableBulkEmails.description" +msgstr "" -msgid "admin.contexts.form.create.success" -msgstr "{$name} a bien été créé-e." +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" -msgid "admin.settings.info.success" -msgstr "Les informations du site ont bien été mises à jour." +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" -msgid "admin.settings.config.success" -msgstr "Les paramètres d'apparence du site ont bien été mis à jour." +msgid "admin.siteManagement.description" +msgstr "" -msgid "admin.settings.appearance.success" -msgstr "Les paramètres d'apparence du site ont bien été mis à jour." +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +#~ msgid "admin.systemConfigurationDescription" +#~ msgstr "Paramètres de configuration OMP pour config.inc.php." + +#~ msgid "admin.contexts.confirmDelete" +#~ msgstr "" +#~ "Vous voulez supprimer cette presse et tout son contenu de façon " +#~ "permanente?" + +#, fuzzy +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Utiliser le site comme la plateforme pour toutes les revues." diff --git a/locale/fr_CA/api.po b/locale/fr_CA/api.po new file mode 100644 index 00000000000..5a4b45fceb2 --- /dev/null +++ b/locale/fr_CA/api.po @@ -0,0 +1,8 @@ +# Weblate Admin , 2023. +msgid "" +msgstr "" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" diff --git a/locale/fr_CA/author.po b/locale/fr_CA/author.po new file mode 100644 index 00000000000..5a4b45fceb2 --- /dev/null +++ b/locale/fr_CA/author.po @@ -0,0 +1,8 @@ +# Weblate Admin , 2023. +msgid "" +msgstr "" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" diff --git a/locale/fr_CA/default.po b/locale/fr_CA/default.po index 3178add8d7d..3206c3342be 100644 --- a/locale/fr_CA/default.po +++ b/locale/fr_CA/default.po @@ -4,8 +4,8 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" "PO-Revision-Date: 2020-06-05 16:39+0000\n" -"Last-Translator: Marie-Hélène Vézina [UdeMontréal] \n" +"Last-Translator: Marie-Hélène Vézina [UdeMontréal] \n" "Language-Team: French (Canada) \n" "Language: fr_CA\n" @@ -54,6 +54,15 @@ msgstr "Illustration" msgid "default.genres.other" msgstr "Autre" +msgid "default.groups.name.manager" +msgstr "Gestionnaire de la presse" + +msgid "default.groups.plural.manager" +msgstr "Gestionnaires de la presse" + +msgid "default.groups.abbrev.manager" +msgstr "MP" + msgid "default.groups.name.editor" msgstr "Rédacteur/Rédactrice en chef de la presse" @@ -72,6 +81,15 @@ msgstr "Rédacteurs en chef de la série" msgid "default.groups.abbrev.sectionEditor" msgstr "RS" +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + msgid "default.groups.name.chapterAuthor" msgstr "Auteur du chapitre" @@ -90,41 +108,36 @@ msgstr "Rédacteurs en chef du volume" msgid "default.groups.abbrev.volumeEditor" msgstr "RV" -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "Cette soumission n'a jamais été publiée et n'a pas été soumise à une autre presse (ou une explication a été ajoutée à la section Commentaires du rédacteur en chef)." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "Le fichier soumis est de format Microsoft Word, RTF ou OpenDocument." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Les adresses URL des références ont été fournies si elles étaient disponibles." - -msgid "default.contextSettings.checklist.submissionAppearance" +msgid "default.contextSettings.authorGuidelines" msgstr "" -"Le texte est publié à simple interligne ; utiliser une police de caractères " -"de 12 points ; utiliser des caractères italiques au lieu de souligner (sauf " -"pour les adresses URL) ; et toutes les illustrations, figures et tableaux " -"doivent être insérés dans le texte aux endroits appropriés plutôt qu'à la " -"fin." -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "Le texte respecte les exigences stylistiques et bibliographiques conformément aux lignes directrices à l'intention des auteurs, disponibles dans la rubrique À propos de cette presse." +msgid "default.contextSettings.checklist" +msgstr "" msgid "default.contextSettings.privacyStatement" -msgstr "

      Les noms et adresses courriel saisis sur ce site de presse seront utilisés exclusivement pour les fins convenues de cette presse. Ils ne seront pas utilisés pour d'autres fins ou transmis à une tierce partie.

      " +msgstr "" +"

      Les noms et adresses courriel saisis sur ce site de presse seront " +"utilisés exclusivement pour les fins convenues de cette presse. Ils ne " +"seront pas utilisés pour d'autres fins ou transmis à une tierce partie.

      " msgid "default.contextSettings.openAccessPolicy" -msgstr "Cette presse offre un accès libre immédiat à son contenu en partant du principe que la recherche doit être accessible au grand public, car cela favorise un meilleur échange des connaissances à l'échelle mondiale." - -msgid "default.contextSettings.emailSignature" msgstr "" -"
      \n" -"________________________________________________________________________
      " -"\n" -"{$ldelim}$contextName{$rdelim}" +"Cette presse offre un accès libre immédiat à son contenu en partant du " +"principe que la recherche doit être accessible au grand public, car cela " +"favorise un meilleur échange des connaissances à l'échelle mondiale." msgid "default.contextSettings.forReaders" -msgstr "Nous encourageons les lecteurs à s'abonner au service d'avis de publication de cette presse. Utilisez le lien d'inscription situé en haut de la page d'accueil de la presse. Cette inscription permettra au lecteur de recevoir la table des matières de chaque nouvelle monographie de cette presse par courriel. Cette liste permet également à la presse d'affirmer qu'elle compte un certain nombre de lecteurs. Consultez l'énoncé de confidentialité de la presse, lequel stipule que les noms et adresses courriel de ses lecteurs ne seront pas utilisés à d'autres fins." +msgstr "" +"Nous encourageons les lecteurs à s'abonner au service d'avis de publication " +"de cette presse. Utilisez le lien d'inscription situé en haut de la page d'accueil de la " +"presse. Cette inscription permettra au lecteur de recevoir la table des " +"matières de chaque nouvelle monographie de cette presse par courriel. Cette " +"liste permet également à la presse d'affirmer qu'elle compte un certain " +"nombre de lecteurs. Consultez l'énoncé de confidentialité de la " +"presse, lequel stipule que les noms et adresses courriel de ses lecteurs ne " +"seront pas utilisés à d'autres fins." msgid "default.contextSettings.forAuthors" msgstr "" @@ -132,30 +145,58 @@ msgstr "" "recommandons de lire la page\n" " À propos de cette presse " "pour connaitre ses règlements et la page\n" -" " -"Lignes directrices à l'intention des auteurs-es. Les auteurs-es doivent <" -"a href=\"{$indexUrl}/{$contextPath}/user/register\">s'inscrire auprès de " -"la presse avant d'envoyer une soumission. Si vous êtes déjà inscrit-e, il " -"suffit simplement d'ouvrir une " -"session pour débuter la procédure en 5 étapes." +" Lignes directrices à l'intention des auteurs-es. Les auteurs-es " +"doivent s'inscrire " +"auprès de la presse avant d'envoyer une soumission. Si vous êtes déjà " +"inscrit-e, il suffit simplement d'ouvrir " +"une session pour débuter la procédure en 5 étapes." msgid "default.contextSettings.forLibrarians" -msgstr "Nous encourageons les bibliothécaires de recherche à ajouter cette presse à la liste électronique des ressources documentaires de la bibliothèque. De plus, ce système d'édition à libre accès convient à toutes les bibliothèques et permet aux membres des facultés de l'utiliser pour les presses auxquelles ils contribuent à titre de rédacteur en chef. (voir Open Monograph Press)." - -msgid "default.groups.name.manager" -msgstr "Gestionnaire de la presse" +msgstr "" +"Nous encourageons les bibliothécaires de recherche à ajouter cette presse à " +"la liste électronique des ressources documentaires de la bibliothèque. De " +"plus, ce système d'édition à libre accès convient à toutes les bibliothèques " +"et permet aux membres des facultés de l'utiliser pour les presses auxquelles " +"ils contribuent à titre de rédacteur en chef. (voir Open Monograph Press)." -msgid "default.groups.plural.manager" -msgstr "Gestionnaires de la presse" +msgid "default.groups.name.externalReviewer" +msgstr "Évaluateur-trice externe" -msgid "default.groups.abbrev.manager" -msgstr "MP" +msgid "default.groups.plural.externalReviewer" +msgstr "Évaluateurs-trices externes" msgid "default.groups.abbrev.externalReviewer" msgstr "EvEx" -msgid "default.groups.plural.externalReviewer" -msgstr "Évaluateurs-trices externes" - -msgid "default.groups.name.externalReviewer" -msgstr "Évaluateur-trice externe" +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Cette soumission n'a jamais été publiée et n'a pas été soumise à une " +#~ "autre presse (ou une explication a été ajoutée à la section Commentaires " +#~ "du rédacteur en chef)." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Le fichier soumis est de format Microsoft Word, RTF ou OpenDocument." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Les adresses URL des références ont été fournies si elles étaient " +#~ "disponibles." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Le texte est publié à simple interligne ; utiliser une police de " +#~ "caractères de 12 points ; utiliser des caractères italiques au lieu de " +#~ "souligner (sauf pour les adresses URL) ; et toutes les illustrations, " +#~ "figures et tableaux doivent être insérés dans le texte aux endroits " +#~ "appropriés plutôt qu'à la fin." + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Le texte respecte les exigences stylistiques et bibliographiques " +#~ "conformément aux lignes directrices à " +#~ "l'intention des auteurs, disponibles dans la rubrique À propos de " +#~ "cette presse." diff --git a/locale/fr_CA/editor.po b/locale/fr_CA/editor.po index 0fe13fafcf7..6ba5fc66335 100644 --- a/locale/fr_CA/editor.po +++ b/locale/fr_CA/editor.po @@ -1,18 +1,19 @@ +# Germán Huélamo Bautista , 2023. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" +"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" +"PO-Revision-Date: 2023-06-25 13:49+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French (Canada) \n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2019-09-30T06:23:44-07:00\n" -"Language: \n" - -msgid "editor.pressSignoff" -msgstr "Fermeture de session de la presse" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" msgid "editor.submissionArchive" msgstr "Archives des soumissions" @@ -33,13 +34,17 @@ msgid "editor.monograph.recommendation" msgstr "Recommendation" msgid "editor.monograph.selectReviewerInstructions" -msgstr "Choisir un évaluateur et une presse ci-haut, cliquer sur \"Choisir un évaluateur\" pour continuer." +msgstr "" +"Choisir un évaluateur et une presse ci-haut, cliquer sur \"Choisir un " +"évaluateur\" pour continuer." msgid "editor.monograph.replaceReviewer" msgstr "Remplacer l'évaluateur" msgid "editor.monograph.editorToEnter" -msgstr "Le rédacteur en chef doit saisir sa recommandation et ses commentaires pour l'évaluateur" +msgstr "" +"Le rédacteur en chef doit saisir sa recommandation et ses commentaires pour " +"l'évaluateur" msgid "editor.monograph.uploadReviewForReviewer" msgstr "Télécharger l'évaluation" @@ -54,7 +59,10 @@ msgid "editor.monograph.internalReview" msgstr "Procéder à l'évaluation interne" msgid "editor.monograph.internalReviewDescription" -msgstr "Vous entamez le processus d'évaluation interne de cette soumission. La liste des fichiers faisant partie de cette soumission est affichée ci-dessous. Ils peuvent être sélectionnés pour être révisés." +msgstr "" +"Vous entamez le processus d'évaluation interne de cette soumission. La liste " +"des fichiers faisant partie de cette soumission est affichée ci-dessous. Ils " +"peuvent être sélectionnés pour être révisés." msgid "editor.monograph.externalReview" msgstr "Procéder à l'évaluation externe" @@ -78,25 +86,33 @@ msgid "editor.monograph.legend.submissionActionsDescription" msgstr "Actions et options de soumission générales." msgid "editor.monograph.legend.sectionActions" -msgstr "Actions de section " +msgstr "Actions de section" msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "Les options associées à une section particulière, comme le téléchargement de fichiers ou l'ajout d'utilisateurs." +msgstr "" +"Les options associées à une section particulière, comme le téléchargement de " +"fichiers ou l'ajout d'utilisateurs." msgid "editor.monograph.legend.itemActions" -msgstr "Actions des articles " +msgstr "Actions des articles" msgid "editor.monograph.legend.itemActionsDescription" msgstr "Les actions et options associées à un fichier particulier." msgid "editor.monograph.legend.catalogEntry" -msgstr "Visionner et gérer l'entrée dans le catalogue de soumission, incluant les formats des métadonnées et de publication." +msgstr "" +"Visionner et gérer l'entrée dans le catalogue de soumission, incluant les " +"formats des métadonnées et de publication." msgid "editor.monograph.legend.bookInfo" -msgstr "Visionner et gérer les métadonnées, les notes, les avis et l'historique de la soumission." +msgstr "" +"Visionner et gérer les métadonnées, les notes, les avis et l'historique de " +"la soumission." msgid "editor.monograph.legend.participants" -msgstr "Visionner et gérer la liste des personnes impliquées dans cette soumission: auteurs, évaluateurs, concepteurs et autres." +msgstr "" +"Visionner et gérer la liste des personnes impliquées dans cette soumission: " +"auteurs, évaluateurs, concepteurs et autres" msgid "editor.monograph.legend.add" msgstr "Télécharger un fichier dans la section." @@ -105,19 +121,29 @@ msgid "editor.monograph.legend.add_user" msgstr "Ajouter un utilisateur à la section" msgid "editor.monograph.legend.settings" -msgstr "Visionner et accéder aux paramètres des articles, comme les fonctions d'information et de suppression." +msgstr "" +"Visionner et accéder aux paramètres des articles, comme les fonctions " +"d'information et de suppression." msgid "editor.monograph.legend.more_info" -msgstr "Renseignements supplémentaires: notes sur les fichiers, options d'alerte et historique." +msgstr "" +"Renseignements supplémentaires: notes sur les fichiers, options d'alerte et " +"historique." msgid "editor.monograph.legend.notes_none" -msgstr "Renseignements sur le fichier: notes, options d'alerte et historique (Aucunes notes ajoutées pour le moment)" +msgstr "" +"Renseignements sur le fichier: notes, options d'alerte et historique " +"(Aucunes notes ajoutées pour le moment)" msgid "editor.monograph.legend.notes" -msgstr "Renseignements sur le fichier: notes, options d'alertes et historique (Les notes sont disponibles)" +msgstr "" +"Renseignements sur le fichier: notes, options d'alertes et historique (Les " +"notes sont disponibles)" msgid "editor.monograph.legend.notes_new" -msgstr "Renseignements sur le fichier: notes, options d'alerte et historique (Nouvelles notes ajoutées depuis la dernière visite)" +msgstr "" +"Renseignements sur le fichier: notes, options d'alerte et historique " +"(Nouvelles notes ajoutées depuis la dernière visite)" msgid "editor.monograph.legend.edit" msgstr "Modifier l'article" @@ -132,28 +158,23 @@ msgid "editor.monograph.legend.complete" msgstr "Action complétée" msgid "editor.monograph.legend.uploaded" -msgstr "Fichier téléchargé par le rôle correspondant au titre de la colonne de la grille." +msgstr "" +"Fichier téléchargé par le rôle correspondant au titre de la colonne de la " +"grille." msgid "editor.submission.introduction" -msgstr "Au moment de soumettre un fichier, le rédacteur en chef, après avoir consulté les fichiers soumis, choisit l'action appropriée (qui comprend envoyer un avis à l'auteur): Acheminer pour évaluation interne (exige la sélection des fichiers pour l'évaluation interne); Acheminer pour évaluation externe (exige la sélection des fichiers pour l'évaluation externe); Accepter la soumission (exige la sélection des fichiers pour l'étape de rédaction); ou Refuser la soumission (archivage de la soumission)." - -msgid "editor.submission.editorial.finalDraftDescription" -msgstr "Pour les ouvrages dans lesquels les chapitres ont été écrits par des auteurs différents, le fichier de soumission peut être divisé en fichiers-chapitres pour l'étape de révision. Ces fichiers seront ensuite examinés par les auteurs des chapitres après avoir été téléchargés dans Révision." +msgstr "" +"Au moment de soumettre un fichier, le rédacteur en chef, après avoir " +"consulté les fichiers soumis, choisit l'action appropriée (qui comprend " +"envoyer un avis à l'auteur): Acheminer pour évaluation interne (exige la " +"sélection des fichiers pour l'évaluation interne); Acheminer pour évaluation " +"externe (exige la sélection des fichiers pour l'évaluation externe); " +"Accepter la soumission (exige la sélection des fichiers pour l'étape de " +"rédaction); ou Refuser la soumission (archivage de la soumission)." msgid "editor.monograph.editorial.fairCopy" msgstr "Copie au net" -msgid "editor.monograph.editorial.fairCopyDescription" -msgstr "Le réviseur télécharge une copie au net de la soumission qui sera ensuite examinée par le rédacteur en chef, avant de passer à l'étape de publication." - -msgid "editor.submission.production.introduction" -msgstr "" -"À l'étape de publication, le rédacteur en chef choisit le format du livre (ex.: numérique, couverture souple, etc.) dans\n" -" Formats de publication. Le rédacteur metteur en page préparera ensuite des fichiers publiables à partir des fichiers destinés à la publication. Les fichiers publiables sont téléchargés pour chaque format dans Épreuves, où ils seront révisés. Le livre est Disponible (c'est-à-dire publié) pour chacun des formats dans Formats de publication, lorsque les Épreuves ont été vérifiées et approuvées, et on indique que l'entrée de catalogue a été ajoutée à l'entrée de catalogue du livre." - -msgid "editor.submission.production.productionReadyFilesDescription" -msgstr "Le rédacteur metteur en page prépare ces fichiers pour chaque format de publication, puis il télécharge les Épreuves appropriées pour révision." - msgid "editor.monograph.proofs" msgstr "Épreuves" @@ -161,10 +182,21 @@ msgid "editor.monograph.production.approvalAndPublishing" msgstr "Approbation et publication" msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "Les livres peuvent être publiés sous différents formats, soit avec une couverture rigide ou souple, ou en format électronique, et ces formats peuvent être téléchargés dans la section Formats de publication ci-dessous. Vous pouvez utiliser la grille de formats suivante à titre d'aide-mémoire pour savoir ce qu'il faut faire avant de publier un format particulier." +msgstr "" +"Les livres peuvent être publiés sous différents formats, soit avec une " +"couverture rigide ou souple, ou en format électronique, et ces formats " +"peuvent être téléchargés dans la section Formats de publication ci-dessous. " +"Vous pouvez utiliser la grille de formats suivante à titre d'aide-mémoire " +"pour savoir ce qu'il faut faire avant de publier un format particulier." msgid "editor.monograph.production.publicationFormatDescription" -msgstr "Ajoutez les formats de publication (ex.: numérique, couverture souple) afin que le rédacteur metteur en page prépare les épreuves qui seront révisées. On doit indiquer que les Épreuves ont été approuvées, et on doit cocher l'entrée de Catalogue pour le format en question afin d'indiquer que cette entrée a été ajoutée au catalogue d'entrée du livre, avant que le format ne soit Disponible (c'est-à-dire publié)." +msgstr "" +"Ajoutez les formats de publication (ex.: numérique, couverture souple) afin " +"que le rédacteur metteur en page prépare les épreuves qui seront révisées. " +"On doit indiquer que les Épreuves ont été approuvées, et on doit " +"cocher l'entrée de Catalogue pour le format en question afin " +"d'indiquer que cette entrée a été ajoutée au catalogue d'entrée du livre, " +"avant que le format ne soit Disponible (c'est-à-dire publié)." msgid "editor.monograph.approvedProofs.edit" msgstr "Choisir les modalités de téléchargement" @@ -175,8 +207,73 @@ msgstr "Choisir les modalités" msgid "editor.monograph.proof.addNote" msgstr "Ajouter une réponse" -msgid "editor.internalReview.introduction" -msgstr "Pendant l'évaluation interne, le rédacteur en chef choisit des évaluateurs internes pour chaque fichier soumis et tient compte de leurs commentaires avant de choisir une action appropriée (qui comprend l'envoi d'un avis à l'auteur): À réviser (les révisions ne seront examinées que par le rédacteur en chef); Soumettre à nouveau pour révision (une nouvelle série de révisions sera entreprise); Envoyer à l'évaluateur externe (il faut choisir les fichiers qui seront envoyés à l'évaluateur externe); Accepter la soumission (il faut choisir les fichiers qui seront envoyés au rédacteur en chef); ou Refuser la soumission (archiver la soumission)." +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" + +msgid "editor.submissions.assignedTo" +msgstr "" -msgid "editor.externalReview.introduction" -msgstr "Pendant l'évaluation externe, le rédacteur en chef choisit des évaluateurs qui ne font pas partie de la presse pour chaque fichier soumis et tient compte de leurs commentaires avant de choisir une action appropriée (qui comprend l'envoi d'un avis à l'auteur): À réviser (les révisions ne seront examinées que par le rédacteur en chef); Soumettre à nouveau pour révision (une nouvelle série de révisions sera entreprise); Accepter la soumission (il faut choisir les fichiers qui seront envoyés au rédacteur en chef); ou Refuser la soumission (le rédacteur en chef archive la soumission)." +#~ msgid "editor.pressSignoff" +#~ msgstr "Fermeture de session de la presse" + +#~ msgid "editor.submission.editorial.finalDraftDescription" +#~ msgstr "" +#~ "Pour les ouvrages dans lesquels les chapitres ont été écrits par des " +#~ "auteurs différents, le fichier de soumission peut être divisé en fichiers-" +#~ "chapitres pour l'étape de révision. Ces fichiers seront ensuite examinés " +#~ "par les auteurs des chapitres après avoir été téléchargés dans Révision." + +#~ msgid "editor.monograph.editorial.fairCopyDescription" +#~ msgstr "" +#~ "Le réviseur télécharge une copie au net de la soumission qui sera ensuite " +#~ "examinée par le rédacteur en chef, avant de passer à l'étape de " +#~ "publication." + +#~ msgid "editor.submission.production.introduction" +#~ msgstr "" +#~ "À l'étape de publication, le rédacteur en chef choisit le format du livre " +#~ "(ex.: numérique, couverture souple, etc.) dans\n" +#~ " Formats de publication. Le " +#~ "rédacteur metteur en page préparera ensuite des fichiers publiables à " +#~ "partir des fichiers destinés à la publication. Les fichiers publiables " +#~ "sont téléchargés pour chaque format dans Épreuves, où ils seront révisés. Le livre est Disponible (c'est-à-dire publié) pour chacun des formats dans Formats de publication, lorsque les " +#~ "Épreuves ont été vérifiées et approuvées, et on indique que " +#~ "l'entrée de catalogue a été ajoutée à l'entrée de catalogue du livre." + +#~ msgid "editor.submission.production.productionReadyFilesDescription" +#~ msgstr "" +#~ "Le rédacteur metteur en page prépare ces fichiers pour chaque format de " +#~ "publication, puis il télécharge les Épreuves appropriées pour révision." + +#~ msgid "editor.internalReview.introduction" +#~ msgstr "" +#~ "Pendant l'évaluation interne, le rédacteur en chef choisit des " +#~ "évaluateurs internes pour chaque fichier soumis et tient compte de leurs " +#~ "commentaires avant de choisir une action appropriée (qui comprend l'envoi " +#~ "d'un avis à l'auteur): À réviser (les révisions ne seront examinées que " +#~ "par le rédacteur en chef); Soumettre à nouveau pour révision (une " +#~ "nouvelle série de révisions sera entreprise); Envoyer à l'évaluateur " +#~ "externe (il faut choisir les fichiers qui seront envoyés à l'évaluateur " +#~ "externe); Accepter la soumission (il faut choisir les fichiers qui seront " +#~ "envoyés au rédacteur en chef); ou Refuser la soumission (archiver la " +#~ "soumission)." + +#~ msgid "editor.externalReview.introduction" +#~ msgstr "" +#~ "Pendant l'évaluation externe, le rédacteur en chef choisit des " +#~ "évaluateurs qui ne font pas partie de la presse pour chaque fichier " +#~ "soumis et tient compte de leurs commentaires avant de choisir une action " +#~ "appropriée (qui comprend l'envoi d'un avis à l'auteur): À réviser (les " +#~ "révisions ne seront examinées que par le rédacteur en chef); Soumettre à " +#~ "nouveau pour révision (une nouvelle série de révisions sera entreprise); " +#~ "Accepter la soumission (il faut choisir les fichiers qui seront envoyés " +#~ "au rédacteur en chef); ou Refuser la soumission (le rédacteur en chef " +#~ "archive la soumission)." diff --git a/locale/fr_CA/emails.po b/locale/fr_CA/emails.po index 5f396afd896..735d447a942 100644 --- a/locale/fr_CA/emails.po +++ b/locale/fr_CA/emails.po @@ -2,295 +2,172 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" +"PO-Revision-Date: 2019-12-03T14:14:06-08:00\n" "Last-Translator: \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" -"PO-Revision-Date: 2019-12-03T14:14:06-08:00\n" -"Language: \n" - -msgid "emails.notification.subject" -msgstr "Nouvelle notification de {$siteTitle}" - -msgid "emails.notification.body" -msgstr "" -"Vous avez reçu une nouvelle notification de {$siteTitle}:
      \n" -"
      \n" -"{$notificationContents}
      \n" -"
      \n" -"Lien: {$url}
      \n" -"
      \n" -"{$principalContactSignature}" - -msgid "emails.notification.description" -msgstr "Ce courriel est envoyé aux utilisateurs qui ont demandé qu'on leur envoie ce type de notification par courriel." msgid "emails.passwordResetConfirm.subject" msgstr "Confirmation de réinitialisation du mot de passe" msgid "emails.passwordResetConfirm.body" msgstr "" -"Nous avons reçu une requête de réinitialisation de votre mot de passe pour le site Web {$siteTitle}.
      \n" +"Nous avons reçu une requête de réinitialisation de votre mot de passe pour " +"le site Web {$siteTitle}.
      \n" "
      \n" -"Si vous n'avez pas fait cette requête, veuillez ignorer ce courriel et votre mot de passe demeurera le même. Si vous souhaitez modifier votre mot de passe, cliquez sur l'adresse URL ci-dessous.
      \n" +"Si vous n'avez pas fait cette requête, veuillez ignorer ce courriel et votre " +"mot de passe demeurera le même. Si vous souhaitez modifier votre mot de " +"passe, cliquez sur l'adresse URL ci-dessous.
      \n" "
      \n" -"Modifier mon mot de passe: {$url}
      \n" +"Modifier mon mot de passe: {$passwordResetUrl}
      \n" "
      \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.description" -msgstr "Ce courriel est envoyé à un utilisateur lorsqu'il a indiqué avoir oublié son mot de passe ou être incapable d'ouvrir une session. On lui fournit une adresse URL sur laquelle il peut cliquer pour modifier son mot de passe." +"{$siteContactName}" msgid "emails.passwordReset.subject" -msgstr "Réinitialisation du mot de passe" +msgstr "" msgid "emails.passwordReset.body" msgstr "" -"Votre mot de passe vous permettant d'avoir accès au site Web {$siteTitle} a été réinitialisé. Veuillez noter votre nom d'utilisateur et mot de passe dans vos dossiers, car vous en aurez besoin pour vos travaux auprès de la presse.
      \n" -"
      \n" -"Votre nom d'utilisateur: {$username}
      \n" -"Votre nouveau mot de passe: {$password}
      \n" -"
      \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.description" -msgstr "Ce courriel est envoyé à un utilisateur lorsque son mot de passe a été réinitialisé après avoir suivi les instructions du courriel \"PASSWORD_RESET_CONFIRM\"." msgid "emails.userRegister.subject" msgstr "Inscription à la presse" msgid "emails.userRegister.body" msgstr "" -"{$userFullName}
      \n" +"{$recipientName}
      \n" "
      \n" -"Vous êtes désormais inscrit à la presse {$contextName}. Ce courriel contient votre nom d'utilisateur et votre mot de passe, dont vous aurez besoin pour tous vos travaux au sein de la presse. Vous pouvez demander que l'on retire votre nom de la liste des utilisateurs en tout temps. Il suffit de me contacter.
      \n" +"Vous êtes désormais inscrit à la presse {$contextName}. Ce courriel contient " +"votre nom d'utilisateur et votre mot de passe, dont vous aurez besoin pour " +"tous vos travaux au sein de la presse. Vous pouvez demander que l'on retire " +"votre nom de la liste des utilisateurs en tout temps. Il suffit de me " +"contacter.
      \n" "
      \n" "
      \n" -"Nom d'utilisateur: {$username}
      \n" +"Nom d'utilisateur: {$recipientUsername}
      \n" "Mot de passe: {$password}
      \n" "
      \n" "Merci,
      \n" -"{$principalContactSignature}" +"{$signature}" -msgid "emails.userRegister.description" -msgstr "Ce courriel est envoyé à un nouvel utilisateur afin de lui souhaiter la bienvenue dans le système et lui fournir son nom d'utilisateur et son mot de passe pour ses dossiers." +msgid "emails.userValidateContext.subject" +msgstr "" -msgid "emails.userValidate.subject" -msgstr "Valider votre compte" +msgid "emails.userValidateContext.body" +msgstr "" -msgid "emails.userValidate.body" +msgid "emails.userValidateSite.subject" msgstr "" -"{$userFullName}
      \n" -"
      \n" -"Vous avez ouvert un compte chez {$contextName}. Mais avant de pouvoir l'utiliser, vous devez confirmer votre adresse courriel. Il suffit de cliquer sur le lien ci-dessous.
      \n" -"
      \n" -"
      \n" -"{$activateUrl}
      \n" -"
      \n" -"Merci,
      \n" -"{$principalContactSignature}" -msgid "emails.userValidate.description" -msgstr "Ce courriel est envoyé à un nouvel utilisateur pour lui souhaiter la bienvenue dans le système et lui fournir une confirmation écrite de son nom d'utilisateur et de son mot de passe." +msgid "emails.userValidateSite.body" +msgstr "" msgid "emails.reviewerRegister.subject" msgstr "Inscription à titre d'évaluateur pour la presse {$contextName}" msgid "emails.reviewerRegister.body" msgstr "" -"En raison de votre expertise, nous avons ajouté votre nom à notre base de données d'évaluateurs pour la presse {$contextName}. Ceci ne vous oblige à rien, mais nous permet simplement de vous approcher si nous recevons une soumission que vous pourriez évaluer. Après avoir reçu une demande d'évaluation, vous aurez la possibilité de lire le titre et le résumé de l'article en question. Vous serez toujours libre d'accepter ou de refuser l'invitation. Vous pouvez demander que l'on retire votre nom de notre liste d'évaluateurs en tout temps.
      \n" +"En raison de votre expertise, nous avons ajouté votre nom à notre base de " +"données d'évaluateurs pour la presse {$contextName}. Ceci ne vous oblige à " +"rien, mais nous permet simplement de vous approcher si nous recevons une " +"soumission que vous pourriez évaluer. Après avoir reçu une demande " +"d'évaluation, vous aurez la possibilité de lire le titre et le résumé de " +"l'article en question. Vous serez toujours libre d'accepter ou de refuser " +"l'invitation. Vous pouvez demander que l'on retire votre nom de notre liste " +"d'évaluateurs en tout temps.
      \n" "
      \n" -"Voici votre nom d'utilisateur et votre mot de passe, dont vous aurez besoin dans tous vos échanges avec la presse à travers son site Web. Vous pourriez, par exemple, mettre votre profil à jour, y compris vos champs d'intérêt en ce qui concerne l'évaluation des articles.
      \n" +"Voici votre nom d'utilisateur et votre mot de passe, dont vous aurez besoin " +"dans tous vos échanges avec la presse à travers son site Web. Vous pourriez, " +"par exemple, mettre votre profil à jour, y compris vos champs d'intérêt en " +"ce qui concerne l'évaluation des articles.
      \n" "
      \n" "
      \n" -"Nom d'utilisateur: {$username}
      \n" +"Nom d'utilisateur: {$recipientUsername}
      \n" "Mot de passe: {$password}
      \n" "
      \n" "Merci,
      \n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.description" -msgstr "Ce courriel est envoyé à un nouvel évaluateur pour lui souhaiter la bienvenue dans le système et lui fournir une confirmation écrite de son nom d'utilisateur et de son mot de passe." - -msgid "emails.publishNotify.subject" -msgstr "Nouveau livre publié" - -msgid "emails.publishNotify.body" -msgstr "" -"Chers lecteurs,
      \n" -"
      \n" -"{$contextName} a récemment publié son dernier livre au {$contextUrl}. Nous vous invitons à consulter la table des matières ici et à consulter notre site Web afin de lire les monographies et les articles qui vous intéressent.
      \n" -"
      \n" -"Merci de l'intérêt que vous portez à nos publications.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.description" -msgstr "Ce courriel est envoyé aux lecteurs par le lien d'avis aux utilisateurs qui se trouve sur la page du rédacteur en chef. Il indique aux lecteurs que l'on a récemment publié un nouveau livre et les invite à cliquer sur le lien URL de la presse." - -msgid "emails.submissionAck.subject" -msgstr "Accusé de réception d'une soumission" - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Merci d'avoir envoyé votre manuscrit "{$submissionTitle}" à la presse {$contextName}. Le système de gestion virtuel de la presse que nous utilisons vous permet de suivre les progrès de votre article tout au long du processus de publication. Il suffit d'ouvrir une session sur le site Web:
      \n" -"
      \n" -"URL du manuscrit: {$submissionUrl}
      \n" -"Nom d'utilisateur: {$authorUsername}
      \n" -"
      \n" -"Si vous avez des questions, n'hésitez pas à me contacter. Merci d'avoir envoyé votre article à cette presse.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.description" -msgstr "Lorsqu'il est activé, ce courriel est envoyé automatiquement à l'auteur lorsqu'il soumet son manuscrit à la presse. Il fournit des renseignements sur le suivi de la soumission tout au long du processus de publication et remercie l'auteur d'avoir envoyé une soumission." - -msgid "emails.submissionAckNotUser.subject" -msgstr "Accusé de réception d'une soumission" - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Bonjour,
      \n" -"
      \n" -"{$submitterName} a envoyé un manuscrit intitulé "{$submissionTitle}" à la presse {$contextName}.
      \n" -"
      \n" -"Si vous avez des questions, n'hésitez pas à me contacter. Merci d'avoir envoyé votre article à cette presse.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.description" -msgstr "Lorsqu'il est activé, ce courriel est envoyé automatiquement aux autres auteurs qui ne font pas partie des utilisateurs d'OMP identifiés pendant le processus de soumission." +"{$signature}" msgid "emails.editorAssign.subject" msgstr "Travail éditorial" msgid "emails.editorAssign.body" msgstr "" -"{$editorialContactName}:
      \n" +"{$recipientName}:
      \n" "
      \n" -"La soumission "{$submissionTitle}" à la presse {$contextName} vous a été assignée. En tant que rédacteur en chef, vous devrez superviser le processus éditorial de cette soumission.
      \n" +"La soumission "{$submissionTitle}" à la presse {$contextName} vous " +"a été assignée. En tant que rédacteur en chef, vous devrez superviser le " +"processus éditorial de cette soumission.
      \n" "
      \n" "URL de la soumission: {$submissionUrl}
      \n" -"Nom d'utilisateur: {$editorUsername}
      \n" +"Nom d'utilisateur: {$recipientUsername}
      \n" "
      \n" "Merci," -msgid "emails.editorAssign.description" -msgstr "Ce courriel indique au rédacteur en chef d'une série qu'on lui a assigné la tâche de superviser une soumission tout au long de son processus éditorial. Il contient des renseignements sur la soumission et indique comment accéder au site de la presse." - msgid "emails.reviewRequest.subject" msgstr "Requête d'évaluation d'un manuscrit" +#, fuzzy msgid "emails.reviewRequest.body" msgstr "" -"Bonjour {$reviewerName},
      \n" +"Bonjour {$recipientName},
      \n" "
      \n" "{$messageToReviewer}
      \n" "
      \n" -"Veuillez ouvrir une session sur le site Web de la presse d'ici le {$responseDueDate} pour indiquer si vous serez en mesure d'évaluer l'article ou non. Ceci vous permettra également d'accéder à la soumission, et de saisir votre évaluation et vos recommandations.
      \n" +"Veuillez ouvrir une session sur le site Web de la presse d'ici le " +"{$responseDueDate} pour indiquer si vous serez en mesure d'évaluer l'article " +"ou non. Ceci vous permettra également d'accéder à la soumission, et de " +"saisir votre évaluation et vos recommandations.
      \n" "
      \n" "
      \n" "L'évaluation doit être terminée d'ici le {$reviewDueDate}.
      \n" "
      \n" -"URL de la soumission: {$submissionReviewUrl}
      \n" +"URL de la soumission: {$reviewAssignmentUrl}
      \n" "
      \n" -"Nom d'utilisateur: {$reviewerUserName}
      \n" +"Nom d'utilisateur: {$recipientUsername}
      \n" "
      \n" "Merci de votre intérêt à évaluer des articles pour notre presse.
      \n" "
      \n" -"{$editorialContactSignature}
      \n" -"" - -msgid "emails.reviewRequest.description" -msgstr "Ce courriel est envoyé à un évaluateur par le rédacteur en chef d'une série afin de lui demander s'il accepte ou refuse d'évaluer une soumission. Il contient des informations sur la soumission comme le titre et le résumé de l'article, il indique la date d'échéance pour l'évaluation et explique comment on peut accéder à la soumission. Ce message est utilisé lorsqu'on choisit l'option Processus d'évaluation standard à l'étape 2 de la section Configuration de la presse. (Sinon, voir REVIEW_REQUEST_ATTACHED.)" +"{$signature}
      \n" -msgid "emails.reviewRequestOneclick.subject" -msgstr "Requête d'évaluation d'un manuscrit" - -msgid "emails.reviewRequestOneclick.body" +msgid "emails.reviewRequestSubsequent.subject" msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Je crois que vous seriez un excellent évaluateur pour le manuscrit "{$submissionTitle}" soumis à la presse {$contextName}. Vous trouverez ci-dessous le résumé de l'article. J'espère que vous accepterez cette tâche importante du processus de publication.
      \n" -"
      \n" -"Veuillez ouvrir une session sur le site Web d'ici le {$weekLaterDate} pour indiquer si vous acceptez ou refusez d'évaluer l'article. Ceci vous permettra également d'accéder à la soumission, et de saisir votre évaluation et vos recommandations.
      \n" -"
      \n" -"L'évaluation doit être terminée d'ici le {$reviewDueDate}.
      \n" -"
      \n" -"URL de la soumission: {$submissionReviewUrl}
      \n" -"
      \n" -"Merci de votre intérêt à évaluer des articles pour notre presse.
      \n" -"
      \n" -"
      \n" -"{$editorialContactSignature}
      \n" -"
      \n" -"
      \n" -"
      \n" -""{$submissionTitle}"
      \n" -"
      \n" -"{$abstractTermIfEnabled}
      \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.description" -msgstr "Ce courriel est envoyé à un évaluateur par le rédacteur en chef d'une série afin de lui demander s'il accepte ou refuse d'évaluer une soumission. Il fournit des informations sur la soumission comme le titre et le résumé de l'article, il indique la date d'échéance pour l'évaluation et explique comment on peut accéder à la soumission. Ce message est utilisé lorsqu'on choisit l'option Processus d'évaluation standard à l'étape 2 de la section Configuration de la presse, et que l'on a activé l'option permettant à l'évaluateur d'avoir accès à la soumission en un seul clic." -msgid "emails.reviewRequestAttached.subject" -msgstr "Requête d'évaluation d'un manuscrit" +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" -msgid "emails.reviewRequestAttached.body" +msgid "emails.reviewResponseOverdueAuto.subject" msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Je crois que vous seriez un excellent évaluateur pour le manuscrit "{$submissionTitle}" et nous vous serions reconnaissants si vous acceptiez cette tâche importante. Vous trouverez ci-dessous les lignes directrices de cette presse concernant l'évaluation. Vous trouverez également la soumission en pièce jointe. Votre évaluation de la soumission et vos recommandations devraient nous parvenir par courriel d'ici le {$reviewDueDate}.
      \n" -"
      \n" -"Veuillez répondre à ce courriel d'ici le {$weekLaterDate} pour confirmer si vous acceptez d'évaluer cet article.
      \n" -"
      \n" -"
      \n" -"Nous vous remercions à l'avance et espérons que vous accepterez cette requête.
      \n" -"
      \n" -"{$editorialContactSignature}
      \n" -"
      \n" -"
      \n" -"Lignes directrices concernant l'évaluation
      \n" -"
      \n" -"{$reviewGuidelines}
      \n" -"" -msgid "emails.reviewRequestAttached.description" -msgstr "Ce courriel est envoyé par le rédacteur en chef d'une série à un évaluateur afin de lui demander s'il accepte ou refuse d'évaluer une soumission. Il contient la soumission en pièce jointe. Ce message est utilisé lorsque vous sélectionnez l'option Processus d'évaluation par courriel avec pièce jointe à l'étape 2 de la Configuration de la presse. (Sinon, voir REVIEW_REQUEST.)" +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" msgid "emails.reviewCancel.subject" msgstr "Annulation de la requête d'évaluation" msgid "emails.reviewCancel.body" msgstr "" -"{$reviewerName}:
      \n" +"{$recipientName}:
      \n" "
      \n" "
      \n" -"Nous avons décidé d'annuler notre requête d'évaluation pour la soumission "{$submissionTitle}" de la presse {$contextName}. Nous vous prions de nous excuser pour tout inconvénient que cette décision pourrait occasionner et nous espérons que vous serez en mesure d'évaluer une soumission dans un avenir prochain.
      \n" +"Nous avons décidé d'annuler notre requête d'évaluation pour la soumission " +""{$submissionTitle}" de la presse {$contextName}. Nous vous prions " +"de nous excuser pour tout inconvénient que cette décision pourrait " +"occasionner et nous espérons que vous serez en mesure d'évaluer une " +"soumission dans un avenir prochain.
      \n" "
      \n" "Si vous avez des questions, n'hésitez pas à me contacter." -msgid "emails.reviewCancel.description" -msgstr "Ce courriel est envoyé à un évaluateur qui a entamé le processus d'évaluation d'une soumission par le rédacteur en chef d'une série afin d'informer l'évaluateur que la procédure d'évaluation a été annulée." - -msgid "emails.reviewConfirm.subject" -msgstr "En mesure d'évaluer" - -msgid "emails.reviewConfirm.body" +#, fuzzy +msgid "emails.reviewReinstate.body" msgstr "" -"Éditeurs:
      \n" -"
      \n" -"Je peux et je souhaite évaluer la soumission "{$submissionTitle}" pour la presse {$contextName}. Merci de m'avoir invité à évaluer cet article. Je prévois terminer mon évaluation d'ici le {$reviewDueDate}.
      \n" -"
      \n" -"{$reviewerName}" -msgid "emails.reviewConfirm.description" -msgstr "Ce courriel est envoyé au rédacteur en chef d'une série pour répondre à la requête d'évaluation. Il a pour but de permettre à l'évaluateur d'indiquer au rédacteur en chef qu'il a accepté d'évaluer l'article et qu'il aura terminé son évaluation dans les délais prescrits." +msgid "emails.reviewReinstate.body" +msgstr "" msgid "emails.reviewDecline.subject" msgstr "Ne peux pas évaluer" @@ -299,341 +176,261 @@ msgid "emails.reviewDecline.body" msgstr "" "Éditeurs:
      \n" "
      \n" -"Malheureusement, je ne pourrai pas évaluer "{$submissionTitle}" pour la presse {$contextName}. Merci de m'avoir invité à évaluer cet article et n'hésitez pas à me contacter dans un avenir prochain.
      \n" -"
      \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.description" -msgstr "Ce courriel est envoyé par l'évaluateur au rédacteur en chef d'une série série pour indiquer qu'il ne sera pas en mesure d'évaluer l'article en question." - -msgid "emails.reviewAck.subject" -msgstr "Accusé de réception pour l'évaluation d'un manuscrit" - -msgid "emails.reviewAck.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" +"Malheureusement, je ne pourrai pas évaluer "{$submissionTitle}" " +"pour la presse {$contextName}. Merci de m'avoir invité à évaluer cet article " +"et n'hésitez pas à me contacter dans un avenir prochain.
      \n" "
      \n" -"Merci d'avoir terminé l'évaluation de l'article "{$submissionTitle}" pour la presse {$contextName}. Grâce à vous, nous sommes en mesure de publier des articles de qualité." - -msgid "emails.reviewAck.description" -msgstr "Ce courriel est envoyé par le rédacteur en chef d'une série pour confirmer qu'il a reçu l'évaluation finale de l'article et pour le remercier de sa contribution." +"{$senderName}" +#, fuzzy msgid "emails.reviewRemind.subject" msgstr "Rappel d'évaluation" +#, fuzzy msgid "emails.reviewRemind.body" msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Nous vous remercions d'avoir accepté d'évaluer "{$submissionTitle}" pour la presse {$contextName}. Veuillez noter que cette évaluation doit nous parvenir avant le {$reviewDueDate}. Nous vous serions reconnaissants si vous pouviez nous faire parvenir votre évaluation dans les plus brefs délais.
      \n" -"
      \n" -"Si vous n'avez plus votre nom d'utilisateur et mot de passe pour le site Web, vous pouvez réinitialiser votre mot de passe en cliquant sur le lien suivant. Votre mot de passe et nom d'utilisateur vous seront envoyés par courriel. {$passwordResetUrl}
      \n" -"
      \n" -"URL de la soumission: {$submissionReviewUrl}
      \n" -"
      \n" -"Nom d'utilisateur: {$reviewerUserName}
      \n" +"{$recipientName}:
      \n" "
      \n" -"Nous vous prions de confirmer si vous êtes encore disponible pour participer à cette étape cruciale de notre processus éditorial. Nous vous prions d'agréer l'expression de nos sentiments les plus distingués.
      \n" +"Nous vous remercions d'avoir accepté d'évaluer "{$submissionTitle}" +"" pour la presse {$contextName}. Veuillez noter que cette évaluation " +"doit nous parvenir avant le {$reviewDueDate}. Nous vous serions " +"reconnaissants si vous pouviez nous faire parvenir votre évaluation dans les " +"plus brefs délais.
      \n" "
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemind.description" -msgstr "Ce courriel est envoyé par le rédacteur en chef d'une série pour rappeler à l'évaluateur qu'il doit envoyer sa soumission dès que possible." - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Rappel d'évaluation" - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"{$reviewerName}:
      \n" +"Si vous n'avez plus votre nom d'utilisateur et mot de passe pour le site " +"Web, vous pouvez réinitialiser votre mot de passe en cliquant sur le lien " +"suivant. Votre mot de passe et nom d'utilisateur vous seront envoyés par " +"courriel. {$passwordLostUrl}
      \n" "
      \n" -"Nous vous remercions d'avoir accepté d'évaluer "{$submissionTitle}" pour la presse {$contextName}. Veuillez noter que cette évaluation doit nous parvenir avant le {$reviewDueDate}. Nous vous serions reconnaissants si vous pouviez nous faire parvenir votre évaluation dans les plus brefs délais
      \n" +"URL de la soumission: {$reviewAssignmentUrl}
      \n" "
      \n" -"URL de la soumission: {$submissionReviewUrl}
      \n" +"Nom d'utilisateur: {$recipientUsername}
      \n" "
      \n" -"Nous vous prions de confirmer si vous êtes encore disponible pour participer à cette étape cruciale de notre processus éditorial. Nous vous prions d'agréer l'expression de nos sentiments les plus distingués.
      \n" +"Nous vous prions de confirmer si vous êtes encore disponible pour participer " +"à cette étape cruciale de notre processus éditorial. Nous vous prions " +"d'agréer l'expression de nos sentiments les plus distingués.
      \n" "
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.description" -msgstr "Ce courriel est envoyé par le rédacteur en chef d'une série pour rappeler à l'évaluateur qu'il doit envoyer sa soumission dès que possible." - -msgid "emails.reviewRemindAuto.subject" -msgstr "Rappel automatique d'évaluation d'une soumission" +"{$signature}" +#, fuzzy msgid "emails.reviewRemindAuto.body" msgstr "" -"{$reviewerName}:
      \n" +"{$recipientName}:
      \n" "
      \n" -"Nous vous remercions d'avoir accepté d'évaluer "{$submissionTitle}" pour la presse {$contextName}. Veuillez noter que cette évaluation doit nous parvenir avant le {$reviewDueDate}. Ce courriel a été généré et envoyé automatiquement parce que vous avez dépassé la date d'échéance. Toutefois, nous vous serions reconnaissants si vous pouviez nous faire parvenir votre évaluation dans les plus brefs délais.
      \n" +"Nous vous remercions d'avoir accepté d'évaluer "{$submissionTitle}" +"" pour la presse {$contextName}. Veuillez noter que cette évaluation " +"doit nous parvenir avant le {$reviewDueDate}. Ce courriel a été généré et " +"envoyé automatiquement parce que vous avez dépassé la date d'échéance. " +"Toutefois, nous vous serions reconnaissants si vous pouviez nous faire " +"parvenir votre évaluation dans les plus brefs délais.
      \n" "
      \n" -"Si vous n'avez plus votre nom d'utilisateur et mot de passe pour le site Web, vous pouvez réinitialiser votre mot de passe en cliquant sur le lien suivant. Votre mot de passe et nom d'utilisateur vous seront envoyés par courriel. {$passwordResetUrl}
      \n" +"Si vous n'avez plus votre nom d'utilisateur et mot de passe pour le site " +"Web, vous pouvez réinitialiser votre mot de passe en cliquant sur le lien " +"suivant. Votre mot de passe et nom d'utilisateur vous seront envoyés par " +"courriel. {$passwordLostUrl}
      \n" "
      \n" -"URL de la soumission: {$submissionReviewUrl}
      \n" +"URL de la soumission: {$reviewAssignmentUrl}
      \n" "
      \n" -"Nous vous prions de confirmer si vous êtes encore disponible pour participer à cette étape cruciale de notre processus éditorial. Veuillez agréer l'expression de nos sentiments les plus distingués.
      \n" +"Nous vous prions de confirmer si vous êtes encore disponible pour participer " +"à cette étape cruciale de notre processus éditorial. Veuillez agréer " +"l'expression de nos sentiments les plus distingués.
      \n" "
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.description" -msgstr "Ce courriel est envoyé automatiquement lorsqu'une évaluation est en retard (voir les options d'évaluation à l'étape 2 de la section Configuration de la presse) et que l'accès de l'évaluateur en un seul clic est désactivé. Les tâches prévues doivent être activées et configurée (voir le fichier de configuration du site)." - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Rappel automatique d'évaluation d'une soumission" - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
      \n" -"
      \n" -"Nous vous remercions d'avoir accepté d'évaluer "{$submissionTitle}" pour la presse {$contextName}. Veuillez noter que cette évaluation doit nous parvenir avant le {$reviewDueDate}. Ce courriel a été généré et envoyé automatiquement parce que vous avez dépassé la date d'échéance. Toutefois, nous vous serions reconnaissants si vous pouviez nous faire parvenir votre évaluation dans les plus brefs délais.
      \n" -"
      \n" -"URL de la soumission: {$submissionReviewUrl}
      \n" -"
      \n" -"Nous vous prions de confirmer si vous êtes encore disponible pour participer à cette étape cruciale de notre processus éditorial. Veuillez agréer l'expression de nos sentiments les plus distingués.
      \n" -"
      \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "Ce courriel est envoyé automatiquement lorsqu'une évaluation est en retard (voir les options d'évaluation à l'étape 2 de la section Configuration de la presse) et que l'accès de l'évaluateur en un seul clic est activé. Les tâches prévues doivent être activées et configurée (voir le fichier de configuration du site)." +"{$contextSignature}" +#, fuzzy msgid "emails.editorDecisionAccept.subject" msgstr "Décision du rédacteur en chef" +#, fuzzy msgid "emails.editorDecisionAccept.body" msgstr "" -"{$authorName}:
      \n" +"{$authors}:
      \n" "
      \n" -"Nous avons pris une décision concernant votre soumission à la presse {$contextName} intitulée "{$submissionTitle}".
      \n" +"Nous avons pris une décision concernant votre soumission à la presse " +"{$contextName} intitulée "{$submissionTitle}".
      \n" "
      \n" "Nous avons décidé de:
      \n" "
      \n" "URL du manuscrit: {$submissionUrl}" -msgid "emails.editorDecisionAccept.description" -msgstr "Ce courriel est envoyé par un rédacteur en chef à un auteur pour signaler que l'on a pris une décision finale concernant sa soumission." - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Décision du rédacteur en chef" - -msgid "emails.editorDecisionSendToExternal.body" +msgid "emails.editorDecisionSendToInternal.subject" msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Nous avons pris une décision concernant votre soumission à la presse {$contextName} intitulée "{$submissionTitle}".
      \n" -"
      \n" -"Nous avons décidé de:
      \n" -"
      \n" -"URL du manuscrit: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "Ce courriel est envoyé par un rédacteur en chef à un auteur pour l'informer que sa soumission sera envoyée à un évaluateur externe." -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Décision du rédacteur en chef" - -msgid "emails.editorDecisionSendToProduction.body" +msgid "emails.editorDecisionSendToInternal.body" msgstr "" -"{$authorName}:
      \n" -"
      \n" -"La révision de votre manuscrit "{$submissionTitle}" est terminée. Nous l'envoyons maintenant en production.
      \n" -"
      \n" -"URL du manuscrit: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "Ce courriel est envoyé par un rédacteur en chef à un auteur pour l'informer que sa soumission passera à l'étape de production." -msgid "emails.editorDecisionRevisions.subject" -msgstr "Décision du rédacteur en chef" - -msgid "emails.editorDecisionRevisions.body" +msgid "emails.editorDecisionSkipReview.subject" msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Nous avons pris une décision concernant votre soumission à la presse {$contextName} intitulée "{$submissionTitle}".
      \n" -"
      \n" -"Nous avons décidé de:
      \n" -"
      \n" -"URL du manuscrit: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.description" -msgstr "Ce courriel est envoyé par un rédacteur en chef à un auteur pour signaler que l'on a pris une décision finale concernant sa soumission." -msgid "emails.editorDecisionResubmit.subject" -msgstr "Décision du rédacteur en chef" - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Nous avons pris une décision concernant votre soumission à la presse {$contextName} intitulée "{$submissionTitle}".
      \n" -"
      \n" -"Nous avons décidé de:
      \n" -"
      \n" -"URL du manuscrit: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.description" -msgstr "Ce courriel est envoyé par un rédacteur en chef à un auteur pour signaler que l'on a pris une décision finale concernant sa soumission." - -msgid "emails.editorDecisionDecline.subject" -msgstr "Décision du rédacteur en chef" - -msgid "emails.editorDecisionDecline.body" +msgid "emails.editorDecisionSkipReview.body" msgstr "" -"{$authorName}:
      \n" -"
      \n" -"Nous avons pris une décision concernant votre soumission à la presse {$contextName} intitulée "{$submissionTitle}".
      \n" -"
      \n" -"Nous avons décidé de:
      \n" -"
      \n" -"URL du manuscrit: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.description" -msgstr "Ce courriel est envoyé par un rédacteur en chef à un auteur pour signaler que l'on a pris une décision finale concernant sa soumission." - -msgid "emails.copyeditRequest.subject" -msgstr "Requête de révision" - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$participantName}:
      \n" -"
      \n" -"J'aimerais que vous entamiez le processus de révision de l'article "{$submissionTitle}" pour la presse {$contextName}. Veuillez suivre les étapes suivantes.
      \n" -"
      \n" -"1. Cliquez sure le lien URL de la soumission ci-dessous.
      \n" -"2. Ouvrez une session sur la presse et cliquez sur le fichier qui apparait à l'étape 1.
      \n" -"3. Lisez les instructions de révision publiées sur la page Web.
      \n" -"4. Ouvrez le fichier téléchargé et débutez le processus de révision, tout en ajoutant des questions pour les auteurs, au besoin.
      \n" -"5. Sauvegardez le fichier révisé et téléchargez-le à l'étape 1 de Révision.
      \n" -"6. Envoyez le courriel COMPLET au rédacteur en chef.
      \n" -"
      \n" -"{$contextName} URL: {$contextUrl}
      \n" -"URL de la soumission: {$submissionUrl}
      \n" -"Nom d'utilisateur: {$participantUsername}" - -msgid "emails.copyeditRequest.description" -msgstr "Ce courriel est envoyé par le rédacteur en chef d'une série au réviseur de la soumission afin qu'il entame de processus de révision, lorsque l'évaluation par les pairs est terminée. Il explique comment accéder à la soumission." +#, fuzzy msgid "emails.layoutRequest.subject" msgstr "Requête des épreuves en placard" +#, fuzzy msgid "emails.layoutRequest.body" msgstr "" -"{$participantName}:
      \n" +"{$recipientName}:
      \n" "
      \n" -"Il faut maintenant préparer les épreuves en placard de la soumission "{$submissionTitle}" pour la presse {$contextName}. Pour ce faire, veuillez suivre les étapes suivantes:
      \n" +"Il faut maintenant préparer les épreuves en placard de la soumission "" +"{$submissionTitle}" pour la presse {$contextName}. Pour ce faire, " +"veuillez suivre les étapes suivantes:
      \n" "
      \n" "1. Cliquez sur le lien URL de la soumission ci-dessous.
      \n" -"2. Ouvrez une session sur la presse et utilisez le fichier Version de mise en page pour créer les épreuves en placard conformément aux normes de la presse.
      \n" +"2. Ouvrez une session sur la presse et utilisez le fichier Version de mise " +"en page pour créer les épreuves en placard conformément aux normes de la " +"presse.
      \n" "3. Envoyez le courriel COMPLET au rédacteur en chef.
      \n" "
      \n" "{$contextName} URL: {$contextUrl}
      \n" "URL de la soumission: {$submissionUrl}
      \n" -"Nom d'utilisateur: {$participantUsername}
      \n" +"Nom d'utilisateur: {$recipientUsername}
      \n" "
      \n" -"Si vous ne pouvez pas faire ce travail en ce moment ou si vous avez des questions, n'hésitez pas à me contacter. Merci d'avoir contribué à cette presse." - -msgid "emails.layoutRequest.description" -msgstr "Ce courriel est envoyé au rédacteur metteur en page par le rédacteur en chef de la série pour lui indiquer qu'on lui a demandé de faire la mise en page de la soumission. Il contient des renseignements sur la soumission et explique comment y accéder." +"Si vous ne pouvez pas faire ce travail en ce moment ou si vous avez des " +"questions, n'hésitez pas à me contacter. Merci d'avoir contribué à cette " +"presse." +#, fuzzy msgid "emails.layoutComplete.subject" msgstr "Épreuves en placard complétées" +#, fuzzy msgid "emails.layoutComplete.body" msgstr "" -"{$editorialContactName}:
      \n" +"{$recipientName}:
      \n" "
      \n" -"Les épreuves en placard du manuscrit "{$submissionTitle}" pour la presse {$contextName} ont été préparées et peuvent être révisées.
      \n" +"Les épreuves en placard du manuscrit "{$submissionTitle}" pour la " +"presse {$contextName} ont été préparées et peuvent être révisées.
      \n" "
      \n" "Si vous avez questions, n'hésitez pas à me contacter.
      \n" "
      \n" -"{$signatureFullName}" - -msgid "emails.layoutComplete.description" -msgstr "Ce courriel est envoyé par le rédacteur metteur en page au rédacteur d'une série pour l'informer que la mise en page du manuscrit est terminée." +"{$senderName}" msgid "emails.indexRequest.subject" msgstr "Requête d'indexage" msgid "emails.indexRequest.body" msgstr "" -"{$participantName}:
      \n" +"{$recipientName}:
      \n" "
      \n" -"La soumission "{$submissionTitle}" par la presse {$contextName} doit désormais être indexée. Veuillez suivre les étapes suivantes:
      \n" +"La soumission "{$submissionTitle}" par la presse {$contextName} " +"doit désormais être indexée. Veuillez suivre les étapes suivantes:
      \n" "
      \n" "1. Cliquez sur le lien URL de la soumission ci-dessous.
      \n" -"2. Ouvrez une session sur la presse et utilisez les fichiers d'épreuves de mise en page pour créer les épreuves en placard conformément aux normes de la presse.
      \n" +"2. Ouvrez une session sur la presse et utilisez les fichiers d'épreuves de " +"mise en page pour créer les épreuves en placard conformément aux normes de " +"la presse.
      \n" "3. Envoyez le courriel COMPLET au rédacteur en chef.
      \n" "
      \n" "{$contextName} URL: {$contextUrl}
      \n" "URL de la soumission: {$submissionUrl}
      \n" -"Nom d'utilisateur: {$participantUsername}
      \n" +"Nom d'utilisateur: {$recipientUsername}
      \n" "
      \n" -"Si vous ne pouvez pas faire ce travail en ce moment ou si vous avez des questions, n'hésitez pas à me contacter. Merci d'avoir contribué à cette presse.
      \n" +"Si vous ne pouvez pas faire ce travail en ce moment ou si vous avez des " +"questions, n'hésitez pas à me contacter. Merci d'avoir contribué à cette " +"presse.
      \n" "
      \n" -"{$editorialContactSignature}" - -msgid "emails.indexRequest.description" -msgstr "Ce courriel est envoyé à l'indexateur par le rédacteur en chef d'une série pour lui indiquer qu'il devra créer les index de la soumission en question. Il contient des renseignements sur la soumission et explique comment y accéder." +"{$signature}" msgid "emails.indexComplete.subject" msgstr "Indexage des épreuves en placard complété" msgid "emails.indexComplete.body" msgstr "" -"{$editorialContactName}:
      \n" +"{$recipientName}:
      \n" "
      \n" -"Les index du manuscrit "{$submissionTitle}" pour la presse {$contextName} sont prêts et peuvent être révisés.
      \n" +"Les index du manuscrit "{$submissionTitle}" pour la presse " +"{$contextName} sont prêts et peuvent être révisés.
      \n" "
      \n" "Si vous avez questions, n'hésitez pas à me contacter.
      \n" "
      \n" "{$signatureFullName}" -msgid "emails.indexComplete.description" -msgstr "Ce courriel est envoyé par l'indexateur au rédacteur en chef d'une série pour lui indiquer que l'indexage est terminé." - msgid "emails.emailLink.subject" msgstr "Manuscrit susceptible d'intéresser" msgid "emails.emailLink.body" -msgstr "Nous crayons que l'article intitulé "{$submissionTitle}" par {$authorName} publié dans le Volume {$volume}, No {$number} ({$year}) de la presse {$contextName} au "{$monographUrl}" pourrait vous intéresser." +msgstr "" +"Nous crayons que l'article intitulé "{$submissionTitle}" par " +"{$authors} publié dans le Volume {$volume}, No {$number} ({$year}) de la " +"presse {$contextName} au "{$submissionUrl}" pourrait vous " +"intéresser." msgid "emails.emailLink.description" -msgstr "Ce modèle de courriel permet à un lecteur inscrit d'envoyer des renseignements sur une monographie à une personne qui pourrait être intéressée. Il est disponible dans les Outils de lecture et peut être activé par le gestionnaire de la presse sur la page Administration des outils de lecture." +msgstr "" +"Ce modèle de courriel permet à un lecteur inscrit d'envoyer des " +"renseignements sur une monographie à une personne qui pourrait être " +"intéressée. Il est disponible dans les Outils de lecture et peut être activé " +"par le gestionnaire de la presse sur la page Administration des outils de " +"lecture." msgid "emails.notifySubmission.subject" msgstr "Avis de soumission" msgid "emails.notifySubmission.body" msgstr "" -"Vous avez reçu un message de {$sender} concernant la monographie "{$submissionTitle}" ({$monographDetailsUrl}):
      \n" +"Vous avez reçu un message de {$sender} concernant la monographie "" +"{$submissionTitle}" ({$monographDetailsUrl}):
      \n" "
      \n" "\t\t{$message}
      \n" "
      \n" "\t\t" msgid "emails.notifySubmission.description" -msgstr "Avis envoyé par un usager à partir d'un centre de renseignements sur les soumissions." +msgstr "" +"Avis envoyé par un usager à partir d'un centre de renseignements sur les " +"soumissions." msgid "emails.notifyFile.subject" msgstr "Avis de soumission d'un fichier" msgid "emails.notifyFile.body" msgstr "" -"Vous avez un message de {$sender} concernant le fichier "{$fileName}" dans "{$submissionTitle}" ({$monographDetailsUrl}):
      \n" +"Vous avez un message de {$sender} concernant le fichier "{$fileName}" +"" dans "{$submissionTitle}" ({$monographDetailsUrl}):
      \n" "
      \n" "\t\t{$message}
      \n" "
      \n" "\t\t" msgid "emails.notifyFile.description" -msgstr "Avis envoyé par un usager à partir d'un centre de renseignements sur les fichiers." +msgstr "" +"Avis envoyé par un usager à partir d'un centre de renseignements sur les " +"fichiers." + +msgid "emails.statisticsReportNotification.subject" +msgstr "" + +msgid "emails.statisticsReportNotification.body" +msgstr "" + +msgid "emails.announcement.subject" +msgstr "" + +msgid "emails.announcement.body" +msgstr "" -msgid "emails.notificationCenterDefault.subject" -msgstr "Un message à propos de la presse {$contextName}" +#~ msgid "emails.userValidate.subject" +#~ msgstr "Valider votre compte" -msgid "emails.notificationCenterDefault.body" -msgstr "Veuillez saisir votre message." +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName}
      \n" +#~ "
      \n" +#~ "Vous avez ouvert un compte chez {$contextName}. Mais avant de pouvoir " +#~ "l'utiliser, vous devez confirmer votre adresse courriel. Il suffit de " +#~ "cliquer sur le lien ci-dessous.
      \n" +#~ "
      \n" +#~ "
      \n" +#~ "{$activateUrl}
      \n" +#~ "
      \n" +#~ "Merci,
      \n" +#~ "{$signature}" -msgid "emails.notificationCenterDefault.description" -msgstr "Le message (vierge) par défaut utilisé par le centre d'alerte." +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Ce courriel est envoyé à un nouvel utilisateur pour lui souhaiter la " +#~ "bienvenue dans le système et lui fournir une confirmation écrite de son " +#~ "nom d'utilisateur et de son mot de passe." diff --git a/locale/fr_CA/locale.po b/locale/fr_CA/locale.po index 654afeca8cd..82988814e12 100644 --- a/locale/fr_CA/locale.po +++ b/locale/fr_CA/locale.po @@ -1,11 +1,11 @@ +# Germán Huélamo Bautista , 2023. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2020-06-05 16:39+0000\n" -"Last-Translator: Marie-Hélène Vézina [UdeMontréal] \n" +"PO-Revision-Date: 2023-07-22 07:37+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" "Language-Team: French (Canada) \n" "Language: fr_CA\n" @@ -13,17 +13,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "common.payments" +msgstr "" msgid "monograph.audience" msgstr "Public" +msgid "monograph.audience.success" +msgstr "Les renseignements de l'auditoire ont été mis à jour." + msgid "monograph.coverImage" msgstr "Illustration de couverture" -msgid "monograph.coverImage.uploadInstructions" -msgstr "Assurez-vous que la hauteur de l'image ne dépasse pas 150% de sa largeur car sinon, le carrousel ne présentera pas toute la couverture." - msgid "monograph.audience.rangeQualifier" msgstr "Qualificatif de l'intervalle du public" @@ -42,6 +45,15 @@ msgstr "Langues (anglais, français, espagnol)" msgid "monograph.publicationFormats" msgstr "Formats de publication " +msgid "monograph.publicationFormat" +msgstr "Format" + +msgid "monograph.publicationFormatDetails" +msgstr "" + +msgid "monograph.miscellaneousDetails" +msgstr "Renseignements à propos de cette monographie" + msgid "monograph.carousel.publicationFormats" msgstr "Formats :" @@ -54,8 +66,8 @@ msgstr "Épreuves en page" msgid "monograph.proofReadingDescription" msgstr "" "Le rédacteur ou la rédactrice responsable de la mise en page téléverse ici " -"les fichiers préparés en vue de les rendre publiables. Utiliser " -"+Assigner pour assigner les auteurs-es et les autres individus qui " +"les fichiers préparés en vue de les rendre publiables. Utiliser " +"+Assigner pour assigner les auteurs-es et les autres individus qui " "réviseront les épreuves en page. Les fichiers corrigés doivent être " "téléversés pour approbation avant la publication." @@ -110,6 +122,9 @@ msgstr "Renseignements numériques" msgid "monograph.publicationFormat.productDimensions" msgstr "Dimensions physiques" +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr "" + msgid "monograph.publicationFormat.productFileSize" msgstr "Taille du fichier en mégaoctets" @@ -144,7 +159,9 @@ msgid "monograph.publicationFormat.taxType" msgstr "Type de taxation" msgid "monograph.publicationFormat.isApproved" -msgstr "Inclure les métadonnées de ce format de publication dans l'entrée de catalogue de ce livre." +msgstr "" +"Inclure les métadonnées de ce format de publication dans l'entrée de " +"catalogue de ce livre." msgid "monograph.publicationFormat.noMarketsAssigned" msgstr "Marchés et prix manquants." @@ -156,7 +173,9 @@ msgid "monograph.publicationFormat.missingONIXFields" msgstr "Certains champs de métadonnées ont été omis." msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "

      Le format de publication que vous avez choisi n'existe plus pour cette monographie.

      " +msgstr "" +"

      Le format de publication que vous avez choisi n'existe plus pour cette " +"monographie.

      " msgid "monograph.publicationFormat.openTab" msgstr "Ouvrir l'onglet du format de publication." @@ -176,26 +195,64 @@ msgstr "Détails du format" msgid "grid.catalogEntry.physicalFormat" msgstr "Format physique" +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "" + +msgid "grid.catalogEntry.remoteURL" +msgstr "" + +msgid "grid.catalogEntry.isbn" +msgstr "" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "" + +msgid "grid.catalogEntry.isbn10.description" +msgstr "" + msgid "grid.catalogEntry.monographRequired" msgstr "Vous devez identifier la monographie." msgid "grid.catalogEntry.publicationFormatRequired" msgstr "Vous devez choisir un format de publication." +msgid "grid.catalogEntry.availability" +msgstr "" + msgid "grid.catalogEntry.isAvailable" msgstr "Disponible" +msgid "grid.catalogEntry.isNotAvailable" +msgstr "" + msgid "grid.catalogEntry.proof" msgstr "Épreuve" +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "" + msgid "grid.catalogEntry.availableRepresentation.title" msgstr "Approbation du format" msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "

      Ce format sera accessible aux lecteurs. Ils pourront consulter des fichiers téléchargeables qui apparaitront désormais dans l'entrée de catalogue du livre et/ou par le biais d'autres actions entreprises par la presse pour la distribution du livre.

      " +msgstr "" +"

      Ce format sera accessible aux lecteurs. Ils pourront consulter " +"des fichiers téléchargeables qui apparaitront désormais dans l'entrée de " +"catalogue du livre et/ou par le biais d'autres actions entreprises par la " +"presse pour la distribution du livre.

      " msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "

      Ce format ne sera plus accessible aux lecteurs par le biais de fichiers téléchargeables qui auparavant apparaissaient dans l'entrée de catalogue du livre et/ou par le biais d'autres actions entreprises par la presse pour la distribution du livre.

      " +msgstr "" +"

      Ce format ne sera plus accessible aux lecteurs par le biais de " +"fichiers téléchargeables qui auparavant apparaissaient dans l'entrée de " +"catalogue du livre et/ou par le biais d'autres actions entreprises par la " +"presse pour la distribution du livre.

      " msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" msgstr "L'entrée de catalogue n'a pas été approuvée." @@ -206,6 +263,12 @@ msgstr "Ce format n'est pas disponible dans l'entrée de catalogue." msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" msgstr "L'épreuve n'a pas été approuvée." +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "" + msgid "grid.catalogEntry.fileSizeRequired" msgstr "Pour les formats numériques, vous devez indiquer la taille du fichier." @@ -240,10 +303,15 @@ msgid "grid.catalogEntry.salesRightsROW" msgstr "Le reste du monde?" msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "Cochez cette case si vous souhaitez que cette entrée pour les droits de vente s'applique à votre format de manière générale. Vous n'avez pas à choisir des pays et des régions dans ce cas." +msgstr "" +"Cochez cette case si vous souhaitez que cette entrée pour les droits de " +"vente s'applique à votre format de manière générale. Vous n'avez pas à " +"choisir des pays et des régions dans ce cas." msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "Un type de vente \"Reste du monde\" a déjà été défini pour ce format de publication." +msgstr "" +"Un type de vente \"Reste du monde\" a déjà été défini pour ce format de " +"publication." msgid "grid.catalogEntry.countries" msgstr "Pays" @@ -282,7 +350,9 @@ msgid "grid.catalogEntry.dateFormat" msgstr "Format de date" msgid "grid.catalogEntry.dateRequired" -msgstr "Vous devez indiquer une date et celle-ci doit correspondre au format de date choisi." +msgstr "" +"Vous devez indiquer une date et celle-ci doit correspondre au format de date " +"choisi." msgid "grid.catalogEntry.representatives" msgstr "Représentants" @@ -300,7 +370,9 @@ msgid "grid.catalogEntry.agent" msgstr "Agent" msgid "grid.catalogEntry.agentTip" -msgstr "Vous pouvez nommer un agent qui vous représentera dans ce territoire, mais cela n'est pas nécessaire." +msgstr "" +"Vous pouvez nommer un agent qui vous représentera dans ce territoire, mais " +"cela n'est pas nécessaire." msgid "grid.catalogEntry.supplier" msgstr "Fournisseur" @@ -330,7 +402,9 @@ msgid "grid.catalogEntry.representativeIdType" msgstr "Type d'identification du représentant (on recommande GLN)" msgid "grid.catalogEntry.representativesDescription" -msgstr "Vous n'avez pas à remplir la section suivante si vous offrez vos propres services à vos clients." +msgstr "" +"Vous n'avez pas à remplir la section suivante si vous offrez vos propres " +"services à vos clients." msgid "grid.action.addRepresentative" msgstr "Ajouter un(e) représentant(e)" @@ -341,6 +415,9 @@ msgstr "Modifier ce(tte) représentant(e)" msgid "grid.action.deleteRepresentative" msgstr "Supprimer ce(tte) représentant(e)" +msgid "spotlight" +msgstr "" + msgid "spotlight.spotlights" msgstr "Sous les projecteurs" @@ -359,9 +436,6 @@ msgstr "Ouvrage en vedette" msgid "grid.content.spotlights.category.homepage" msgstr "Page d'accueil" -msgid "grid.content.spotlights.category.sidebar" -msgstr "Encadré" - msgid "grid.content.spotlights.form.location" msgstr "Emplacement de l'ouvrage en vedette" @@ -422,9 +496,6 @@ msgstr "Approuver l'épreuve afin qu'elle soit indexée et ajoutée au catalogue msgid "grid.action.pageProofApproved" msgstr "Le fichier d'épreuves de mise en page est prêt à être publié" -msgid "grid.action.addAnnouncement" -msgstr "Ajouter une annonce" - msgid "grid.action.newCatalogEntry" msgstr "Nouvelle entrée de catalogue" @@ -482,6 +553,9 @@ msgstr "Modifier cette date" msgid "grid.action.deleteDate" msgstr "Supprimer cette date" +msgid "grid.action.createContext" +msgstr "Créer une nouvelle presse" + msgid "grid.action.publicationFormatTab" msgstr "Afficher l'onglet du format de publication" @@ -512,38 +586,38 @@ msgstr "Fichiers disponibles" msgid "series.series" msgstr "Séries" -msgid "series.featured" -msgstr "En vedette" - msgid "series.featured.description" msgstr "Cette série s'affichera dans la navigation principale" msgid "series.path" msgstr "Chemin d'accès" -msgid "grid.series.urlWillBe" -msgstr "L'adresse URL de la série sera {$sampleUrl}. Le 'chemin d'accès' consiste en une série de caractères utilisés pour identifier une série." - msgid "catalog.manage" msgstr "Gestion du catalogue" -msgid "catalog.manage.homepage" -msgstr "Page d'accueil" - msgid "catalog.manage.newReleases" msgstr "Communiqués de presse" -msgid "catalog.published" -msgstr "Publié" - msgid "catalog.manage.category" msgstr "Catégorie" msgid "catalog.manage.series" msgstr "Série" -msgid "catalog.manage.managementIntroduction" -msgstr "Bienvenue au gestionnaire de catalogue. À partir de cette page, vous pouvez publier de nouvelles entrées de catalogue, réviser et configurer votre liste des livres 'en vedette', réviser et configurer votre liste de nouveautés, et réviser et configurer vos livres par catégorie et par série." +msgid "catalog.manage.series.issn" +msgstr "" + +msgid "catalog.manage.series.issn.validation" +msgstr "" + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "" + +msgid "catalog.manage.series.onlineIssn" +msgstr "" + +msgid "catalog.manage.series.printIssn" +msgstr "" msgid "catalog.selectSeries" msgstr "Choisir une série" @@ -551,20 +625,24 @@ msgstr "Choisir une série" msgid "catalog.selectCategory" msgstr "Choisir une catégorie" -msgid "catalog.manage.entryDescription" -msgstr "Pour ajouter un livre à la liste du catalogue, sélectionnez l'onglet 'Monographie' et fournissez les renseignements nécessaires. Vous pouvez ajouter les renseignements concernant chaque format de livre dans l'entrée de catalogue en sélectionnant l'onglet Format. Les spécifications concernant les métadonnées sont basées sur ONIX for Books, une norme internationale utilisée par l'industrie du livre pour la communication de renseignements sur les produits." - -msgid "catalog.manage.spotlightDescription" -msgstr "Trois produits vedette (ex.: livres sous les projecteurs) sont affichés sur la page d'accueil de la presse, avec leur titre, une image et du texte." - msgid "catalog.manage.homepageDescription" -msgstr "La couverture des livres choisis s'affiche vers le haut de la page d'accueil sous forme d'entrée déroulante. Cliquez \"Vedettes\", puis l'étoile pour ajouter un livre au carrousel; cliquez sur le point d'exclamation pour mettre une nouveauté en vedette; glissez et déplacez pour commander." +msgstr "" +"La couverture des livres choisis s'affiche vers le haut de la page d'accueil " +"sous forme d'entrée déroulante. Cliquez \"Vedettes\", puis l'étoile pour " +"ajouter un livre au carrousel; cliquez sur le point d'exclamation pour " +"mettre une nouveauté en vedette; glissez et déplacez pour commander." msgid "catalog.manage.categoryDescription" -msgstr "Cliquez 'En vedette', puis l'étoile pour choisir un livre en vedette dans cette catégorie; glissez et déplacez pour commander." +msgstr "" +"Cliquez 'En vedette', puis l'étoile pour choisir un livre en vedette dans " +"cette catégorie; glissez et déplacez pour commander." msgid "catalog.manage.seriesDescription" -msgstr "Cliquez 'En vedette', puis l'étoile pour choisir un livre en vedette dans cette série; glissez et déplacez pour commander. Les séries sont identifiées par leurs rédacteurs en chef et le titre de la série, au sein d'une catégorie ou de manière indépendante." +msgstr "" +"Cliquez 'En vedette', puis l'étoile pour choisir un livre en vedette dans " +"cette série; glissez et déplacez pour commander. Les séries sont identifiées " +"par leurs rédacteurs en chef et le titre de la série, au sein d'une " +"catégorie ou de manière indépendante." msgid "catalog.manage.placeIntoCarousel" msgstr "Carrousel" @@ -581,32 +659,92 @@ msgstr "Gérer les catégories" msgid "catalog.manage.noMonographs" msgstr "Aucune monographie n'a été assignée." -msgid "catalog.browseTitles" -msgstr "{$numTitles} élément(s)" +msgid "catalog.manage.featured" +msgstr "" + +msgid "catalog.manage.categoryFeatured" +msgstr "" + +msgid "catalog.manage.seriesFeatured" +msgstr "" + +msgid "catalog.manage.featuredSuccess" +msgstr "" + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "" + +msgid "catalog.manage.newReleaseSuccess" +msgstr "" + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "" + +msgid "catalog.manage.feature.newRelease" +msgstr "" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "" + +msgid "catalog.manage.nonOrderable" +msgstr "" + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "" + +msgid "catalog.manage.isFeatured" +msgstr "" + +msgid "catalog.manage.isNotFeatured" +msgstr "" + +msgid "catalog.manage.isNewRelease" +msgstr "" + +msgid "catalog.manage.isNotNewRelease" +msgstr "" + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "" + +msgid "catalog.manage.submissionsNotFound" +msgstr "" + +msgid "catalog.manage.findSubmissions" +msgstr "" + +msgid "catalog.noTitles" +msgstr "" + +msgid "catalog.noTitlesNew" +msgstr "" + +msgid "catalog.noTitlesSearch" +msgstr "" msgid "catalog.feature" msgstr "En vedette" msgid "catalog.featured" -msgstr "En vedette" +msgstr "" msgid "catalog.featuredBooks" msgstr "Livres en vedette" -msgid "catalog.category.heading" -msgstr "Tous les livres" - -msgid "catalog.categories" -msgstr "Catégories" - msgid "catalog.foundTitleSearch" -msgstr "Un titre a été trouvé correspondant à \"{$searchQuery}\"." +msgstr "" msgid "catalog.foundTitlesSearch" -msgstr "{$number} des titres ont été trouvés correspondant à \"{$searchQuery}\"." +msgstr "" + +msgid "catalog.category.heading" +msgstr "" msgid "catalog.newReleases" -msgstr "Nouvelles publications" +msgstr "" msgid "catalog.dateAdded" msgstr "Ajouté le" @@ -614,14 +752,62 @@ msgstr "Ajouté le" msgid "catalog.publicationInfo" msgstr "Renseignements sur la publication" -msgid "catalog.relatedCategories" -msgstr "Catégories connexes" +msgid "catalog.published" +msgstr "" + +msgid "catalog.forthcoming" +msgstr "" + +msgid "catalog.categories" +msgstr "" + +msgid "catalog.parentCategory" +msgstr "" + +msgid "catalog.category.subcategories" +msgstr "" msgid "catalog.aboutTheAuthor" msgstr "À propos de le {$roleName}" msgid "catalog.loginRequiredForPayment" -msgstr "Note: Pour acheter des ouvrages, vous devez d'abord ouvrir une session. Choisissez un ouvrage que vous souhaitez acheter et vous serez acheminé vers la page d'ouverture de session." +msgstr "" +"Note: Pour acheter des ouvrages, vous devez d'abord ouvrir une session. " +"Choisissez un ouvrage que vous souhaitez acheter et vous serez acheminé vers " +"la page d'ouverture de session." + +msgid "catalog.sortBy" +msgstr "" + +msgid "catalog.sortBy.seriesDescription" +msgstr "" + +msgid "catalog.sortBy.categoryDescription" +msgstr "" + +msgid "catalog.sortBy.catalogDescription" +msgstr "" + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "" + +msgid "catalog.viewableFile.title" +msgstr "" + +msgid "catalog.viewableFile.return" +msgstr "" + +msgid "submission.search" +msgstr "" + +msgid "common.publication" +msgstr "" + +msgid "common.publications" +msgstr "" msgid "common.prefix" msgstr "Préfixe" @@ -638,9 +824,6 @@ msgstr "Recherche dans le catalogue" msgid "common.moreInfo" msgstr "Informations supplémentaires" -msgid "common.plusMore" -msgstr "+ Plus" - msgid "common.listbuilder.completeForm" msgstr "Veuillez remplir le formulaire au complet." @@ -650,12 +833,6 @@ msgstr "Veuillez choisir une option valide à partir de la liste." msgid "common.listbuilder.itemExists" msgstr "Vous ne pouvez pas ajouter le même élément deux fois." -msgid "common.catalogInformation" -msgstr "Il n'est pas nécessaire de remplir les renseignements sur le catalogue lorsque le travail est soumis pour la première fois, mis à part le titre et un sommaire." - -msgid "common.prefixAndTitle.tip" -msgstr "Si le titre du livre commence par un “Un/Une” ou “Le/la” (ou quelque chose de semblable qui affecte l'ordre alphabétique), ajoutez un mot dans Préfixe." - msgid "common.software" msgstr "Open Monograph Press" @@ -671,6 +848,9 @@ msgstr "Catalogue" msgid "navigation.competingInterestPolicy" msgstr "Politique concernant les intérêts concurrentiels" +msgid "navigation.catalog.allMonographs" +msgstr "" + msgid "navigation.catalog.manage" msgstr "Gérer" @@ -710,23 +890,81 @@ msgstr "Guide intelligent" msgid "navigation.linksAndMedia" msgstr "Liens et médias sociaux" +msgid "navigation.navigationMenus.catalog.description" +msgstr "" + +msgid "navigation.skip.spotlights" +msgstr "" + +msgid "navigation.navigationMenus.series.generic" +msgstr "" + +msgid "navigation.navigationMenus.series.description" +msgstr "" + +msgid "navigation.navigationMenus.category.generic" +msgstr "" + +msgid "navigation.navigationMenus.category.description" +msgstr "" + +msgid "navigation.navigationMenus.newRelease" +msgstr "" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "" + msgid "context.contexts" msgstr "Presses" msgid "context.context" msgstr "Presse" +msgid "context.current" +msgstr "" + +msgid "context.select" +msgstr "Sélectionner une presse..." + +msgid "user.authorization.representationNotFound" +msgstr "" + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Ajouter des utilisateurs sans rôle à cette presse." + msgid "user.noRoles.submitMonograph" msgstr "Soumettre une soumission" msgid "user.noRoles.submitMonographRegClosed" -msgstr "Soumettre une monographie: l'inscription des auteurs est actuellement désactivée." +msgstr "" +"Soumettre une monographie: l'inscription des auteurs est actuellement " +"désactivée." msgid "user.noRoles.regReviewer" msgstr "S'enregistrer à titre d'évaluateur" msgid "user.noRoles.regReviewerClosed" -msgstr "S'enregistrer à titre d'évaluateur: l'inscription des évaluateurs est actuellement désactivée." +msgstr "" +"S'enregistrer à titre d'évaluateur: l'inscription des évaluateurs est " +"actuellement désactivée." + +msgid "user.reviewerPrompt" +msgstr "" + +msgid "user.reviewerPrompt.userGroup" +msgstr "" + +msgid "user.reviewerPrompt.optin" +msgstr "" + +msgid "user.register.contextsPrompt" +msgstr "" + +msgid "user.register.otherContextRoles" +msgstr "" + +msgid "user.register.noContextReviewerInterests" +msgstr "" msgid "user.role.manager" msgstr "Directeur/Directrice de la presse" @@ -734,14 +972,11 @@ msgstr "Directeur/Directrice de la presse" msgid "user.role.pressEditor" msgstr "Rédacteur/Rédactrice en chef de la presse" -msgid "user.role.copyeditor" -msgstr "Réviseur" - msgid "user.role.subEditor" msgstr "Rédacteur/Rédactrice en chef de la série" -msgid "user.role.subEditors" -msgstr "Rédacteurs en chef de la série" +msgid "user.role.copyeditor" +msgstr "Réviseur" msgid "user.role.proofreader" msgstr "Correcteur/Correctrice d'épreuves" @@ -752,6 +987,12 @@ msgstr "Directeur/Directrice de la production" msgid "user.role.managers" msgstr "Directeurs de la presse" +msgid "user.role.subEditors" +msgstr "Rédacteurs en chef de la série" + +msgid "user.role.editors" +msgstr "Éditeurs" + msgid "user.role.copyeditors" msgstr "Réviseurs" @@ -761,9 +1002,6 @@ msgstr "Correcteurs d'épreuves" msgid "user.role.productionEditors" msgstr "Directeurs de la production" -msgid "user.register.completeForm" -msgstr "Veuillez remplir ce formulaire pour vous inscrire auprès de cette presse." - msgid "user.register.selectContext" msgstr "Choisir une presse pour l'inscription" @@ -773,15 +1011,6 @@ msgstr "Vous ne pouvez vous inscrire à aucune presse sur ce site." msgid "user.register.privacyStatement" msgstr "Énoncé de confidentialité" -msgid "user.register.alreadyRegisteredOtherContext" -msgstr "Cliquez ici si vous êtes déjà inscrit(e) auprès de cette presse ou d'une autre presse sur ce site." - -msgid "user.register.notAlreadyRegisteredOtherContext" -msgstr "Cliquez ici si vous n'êtes pas déjà inscrit(e) auprès de cette presse ou d'une autre presse sur ce site." - -msgid "user.register.loginToRegister" -msgstr "Indiquez voter nom d'utilisateur et mot de passe actuels pour vous inscrire auprès de cette presse." - msgid "user.register.registrationDisabled" msgstr "Cette presse n'accepte plus d'inscriptions pour le moment." @@ -795,25 +1024,34 @@ msgid "user.register.authorDescription" msgstr "Peut soumettre des documents à la presse." msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Souhaite mener des évaluations par les pairs des articles soumis à la revue." +msgstr "" +"Souhaite mener des évaluations par les pairs des articles soumis à la revue." msgid "user.register.reviewerDescription" msgstr "Souhaite mener des évaluations par les pairs pour le site." msgid "user.register.reviewerInterests" -msgstr "Identifier les domaines d'intérêt d'évaluation (contenu et méthodes de recherche):" +msgstr "" +"Identifier les domaines d'intérêt d'évaluation (contenu et méthodes de " +"recherche):" msgid "user.register.form.userGroupRequired" msgstr "Vous devez choisir au moins un rôle" +msgid "user.register.form.privacyConsentThisContext" +msgstr "" + +msgid "site.noPresses" +msgstr "" + msgid "site.pressView" msgstr "Consulter le site Web de la presse" msgid "about.pressContact" msgstr "Pour contacter la presse" -msgid "about.aboutThePress" -msgstr "À propos de cette presse" +msgid "about.aboutContext" +msgstr "A propos de la presse" msgid "about.editorialTeam" msgstr "Équipe de rédaction" @@ -830,29 +1068,28 @@ msgstr "Politiques concernant la série et les catégories" msgid "about.submissions" msgstr "Soumissions" -msgid "about.sponsors" -msgstr "Parrains" - -msgid "about.contributors" -msgstr "Sources de financement" - msgid "about.onlineSubmissions" msgstr "Soumissions en ligne" -msgid "about.onlineSubmissions.haveAccount" -msgstr "Un nom d'utilisateur/mot de passe existe déjà pour {$pressTitle}?" - msgid "about.onlineSubmissions.login" msgstr "Accéder à l'ouverture de session" -msgid "about.onlineSubmissions.needAccount" -msgstr "Vous avez besoin d'un nom d'utilisateur/mot de passe?" - -msgid "about.onlineSubmissions.registration" -msgstr "Accéder à l'inscription" +msgid "about.onlineSubmissions.register" +msgstr "" msgid "about.onlineSubmissions.registrationRequired" -msgstr "Vous devez vous inscrire et ouvrir une session pour soumettre des articles en ligne et pour vérifier le statut des soumissions courantes." +msgstr "" +"Vous devez vous inscrire et ouvrir une session pour soumettre des articles " +"en ligne et pour vérifier le statut des soumissions courantes." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "" + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Faire une nouvelle soumission" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "voir vos soumissions en attente" msgid "about.authorGuidelines" msgstr "Lignes directrices s'adressant aux auteurs" @@ -861,7 +1098,11 @@ msgid "about.submissionPreparationChecklist" msgstr "Liste de vérification pour la préparation de la soumission" msgid "about.submissionPreparationChecklist.description" -msgstr "Dans le cadre du processus de soumission, les auteurs doivent s'assurer que leur soumission respecte les directives énoncées dans les documents suivants. Les soumissions qui ne respectent pas les lignes directrices peuvent être retournées à leur auteur." +msgstr "" +"Dans le cadre du processus de soumission, les auteurs doivent s'assurer que " +"leur soumission respecte les directives énoncées dans les documents " +"suivants. Les soumissions qui ne respectent pas les lignes directrices " +"peuvent être retournées à leur auteur." msgid "about.copyrightNotice" msgstr "Avis de droit d'auteur" @@ -887,13 +1128,24 @@ msgstr "À propos de ce système de publication" msgid "about.aboutThisPublishingSystem.altText" msgstr "Processus de redaction et de publication d'OMP" +msgid "about.aboutSoftware" +msgstr "" + #, fuzzy msgid "about.aboutOMPPress" -msgstr "Cette presse utilise Open Monograph Press {$ompVersion}, un logiciel de gestion de presse et de publication ouvert conçu, encadré et distribué gratuitement par Public Knowledge Project sous une licence publique GNU." +msgstr "" +"Cette presse utilise Open Monograph Press {$ompVersion}, un logiciel de " +"gestion de presse et de publication ouvert conçu, encadré et distribué " +"gratuitement par Public Knowledge Project " +"sous une licence publique GNU." #, fuzzy msgid "about.aboutOMPSite" -msgstr "Ce site utilise Open Monograph Press {$ompVersion}, un logiciel de gestion de presse et de publication ouvert conçu, encadré et distribué gratuitement par Public Knowledge Project sous une licence publique GNU." +msgstr "" +"Ce site utilise Open Monograph Press {$ompVersion}, un logiciel de gestion " +"de presse et de publication ouvert conçu, encadré et distribué gratuitement " +"par Public Knowledge Project sous une " +"licence publique GNU." msgid "help.searchReturnResults" msgstr "Retour aux résultats de la recherche" @@ -910,69 +1162,138 @@ msgstr "Mise à jour d'OMP" msgid "installer.installApplication" msgstr "Installer Open Monograph Press" +msgid "installer.updatingInstructions" +msgstr "" + #, fuzzy msgid "installer.installationInstructions" msgstr "" "\n" -"

      Merci d'avoir téléchargé Open Monograph Press {$version} du Public Knowledge Project. Avant de procéder, veuillez lire le fichier README qui accompagne ce logiciel. Pour de plus amples renseignements sure le Public Knowledge Project et ses projets de logiciels, veuillez consulter le site Web du PKP. Si vous rencontrez des bogues ou avez des questions d'ordre technique à poser à Open Monograph Press, consultez le forum ou consultez le système de rapport sur les bogues en ligne de PKP. Bien que le forum soit le mode préféré de communication, vous pouvez également envoyer un courriel à l'équipe au pkp.contact@gmail.com.

      \n" +"

      Merci d'avoir téléchargé Open Monograph Press {$version} " +"du Public Knowledge Project. Avant de procéder, veuillez lire le fichier README qui accompagne ce logiciel. Pour " +"de plus amples renseignements sure le Public Knowledge Project et ses " +"projets de logiciels, veuillez consulter le site Web du PKP. Si vous rencontrez des bogues ou avez " +"des questions d'ordre technique à poser à Open Monograph Press, consultez le " +"forum ou consultez " +"le système de " +"rapport sur les bogues en ligne de PKP. Bien que le forum soit le mode " +"préféré de communication, vous pouvez également envoyer un courriel à " +"l'équipe au pkp.contact@gmail.com.

      \n" "\n" "

      Upgrade

      \n" "\n" -"

      S'il s'agit d'une mise à jour d'OMP, cliquez ici pour continuer.

      " +"

      S'il s'agit d'une mise à jour d'OMP, cliquez " +"ici pour continuer.

      " msgid "installer.preInstallationInstructionsTitle" msgstr "Étapes de Pré-installation" msgid "installer.preInstallationInstructions" msgstr "" -"

      1. Les fichiers et répertoires suivants (et leur contenu) doivent être inscriptibles:

      \n" +"

      1. Les fichiers et répertoires suivants (et leur contenu) doivent être " +"inscriptibles:

      \n" "
        \n" -"\t
      • config.inc.php est inscriptible (optionnel): {$writable_config}
      • \n" +"\t
      • config.inc.php est inscriptible (optionnel): " +"{$writable_config}
      • \n" "\t
      • public/ est a inscriptible: {$writable_public}
      • \n" "\t
      • cache/ est inscriptible: {$writable_cache}
      • \n" -"\t
      • cache/t_cache/ est inscriptible: {$writable_templates_cache}
      • \n" -"\t
      • cache/t_compile/ est inscriptible: {$writable_templates_compile}
      • \n" +"\t
      • cache/t_cache/ est inscriptible: {$writable_templates_cache}\n" +"\t
      • cache/t_compile/ est inscriptible: " +"{$writable_templates_compile}
      • \n" "\t
      • cache/_db est inscriptible: {$writable_db_cache}
      • \n" "
      \n" "\n" -"

      2. Un répertoire de stockage des fichiers doit être créé et être inscriptible (voir \"Paramètres du fichier\" ci-dessous)

      " +"

      2. Un répertoire de stockage des fichiers doit être créé et être " +"inscriptible (voir \"Paramètres du fichier\" ci-dessous)

      " msgid "installer.upgradeInstructions" msgstr "" "

      OMP Version {$version}

      \n" "\n" -"

      Merci d'avoir téléchargé Open Monograph Press du Public Knowledge Project. Avant de procéder, veuillez lire les fichiers README et UPGRADE de ce logiciel. Pour de plus amples renseignements sur le Public Knowledge Project et ses projets de logiciels, veuillez consulter le site Web du PKP. Si vous rencontrez des bogues ou avez des questions d'ordre technique à poser à Open Monograph Press, consultez le forum ou consultez le système de rapport sur les bogues. Bien que le forum soit le mode préféré de communication, vous pouvez également envoyer un courriel à l'équipe au pkp.contact@gmail.com.

      \n" +"

      Merci d'avoir téléchargé Open Monograph Press du Public " +"Knowledge Project. Avant de procéder, veuillez lire les fichiers README et UPGRADE de ce logiciel. Pour de plus amples renseignements sur le " +"Public Knowledge Project et ses projets de logiciels, veuillez consulter le " +"site Web du PKP. Si " +"vous rencontrez des bogues ou avez des questions d'ordre technique à poser à " +"Open Monograph Press, consultez le forum ou consultez le système de rapport sur les bogues. Bien " +"que le forum soit le mode préféré de communication, vous pouvez également " +"envoyer un courriel à l'équipe au pkp.contact@gmail.com.

      \n" "\n" -"

      On recommande fortement que vous conserviez une copie de sauvegarde de votre base de données, de vos répertoires de fichiers et de votre répertoire d'installation OMP avant de continuer.

      \n" +"

      On recommande fortement que vous conserviez une copie de " +"sauvegarde de votre base de données, de vos répertoires de fichiers et de " +"votre répertoire d'installation OMP avant de continuer.

      \n" "\n" -"

      Si vous êtes en mode sans échec PHP, assurez-vous que la directive max_execution_time de votre fichier de configuration php.ini soit fixée à une limite élevée. Si vous atteignez cette limite de temps ou une autre limite (ex.: la directive \"Timeout\" d'Apache), le processus de mise à jour sera interrompu et vous devrez intervenir manuellement.

      " +"

      Si vous êtes en mode sans échec PHP, assurez-vous que la directive " +"max_execution_time de votre fichier de configuration php.ini soit fixée à " +"une limite élevée. Si vous atteignez cette limite de temps ou une autre " +"limite (ex.: la directive \"Timeout\" d'Apache), le processus de mise à jour " +"sera interrompu et vous devrez intervenir manuellement.

      " msgid "installer.localeSettingsInstructions" msgstr "" -"Pour un soutien Unicode (UTF-8) complet, choisissez UTF-8 pour tous les paramètres de caractères. Veuillez noter que ce soutien exige actuellement un serveur de base de données MySQL >= 4.1.1 ou PostgreSQL >= 9.1.5. Veuillez également noter qu'un support Unicode complet exige la bibliothèque mbstring (activée par défaut dans les installations PHP les plus récentes). Vous pourriez rencontrer des problèmes si vous utilisez des jeux de caractères étendus, car il est possible que votre serveur ne puisse pas satisfaire ces exigences.\n" +"Pour un soutien Unicode (UTF-8) complet, choisissez UTF-8 pour tous les " +"paramètres de caractères. Veuillez noter que ce soutien exige actuellement " +"un serveur de base de données MySQL >= 4.1.1 ou PostgreSQL >= 9.1.5. " +"Veuillez également noter qu'un support Unicode complet exige la bibliothèque " +"mbstring " +"(activée par défaut dans les installations PHP les plus récentes). Vous " +"pourriez rencontrer des problèmes si vous utilisez des jeux de caractères " +"étendus, car il est possible que votre serveur ne puisse pas satisfaire ces " +"exigences.\n" "\n" "

      \n" -"Votre serveur supporte actuellement mbstring: {$supportsMBString}" +"Votre serveur supporte actuellement mbstring: {$supportsMBString}" msgid "installer.allowFileUploads" -msgstr "Votre serveur permet de télécharger des fichiers: {$allowFileUploads}" +msgstr "" +"Votre serveur permet de télécharger des fichiers: {$allowFileUploads}" +"" msgid "installer.maxFileUploadSize" -msgstr "Votre serveur permet de télécharger des fichiers dont la taille maximale est: {$maxFileUploadSize}" +msgstr "" +"Votre serveur permet de télécharger des fichiers dont la taille maximale " +"est: {$maxFileUploadSize}" msgid "installer.localeInstructions" -msgstr "La langue principalement utilisée par ce système. Veuillez consulter le document d'OMP si vous souhaitez obtenir un soutien dans une langue qui n'apparait pas dans cette liste." +msgstr "" +"La langue principalement utilisée par ce système. Veuillez consulter le " +"document d'OMP si vous souhaitez obtenir un soutien dans une langue qui " +"n'apparait pas dans cette liste." msgid "installer.additionalLocalesInstructions" -msgstr "Sélectionnez d'autres langues qui bénéficieront d'un soutien dans ce système. Ces langues pourront être utilisées par les presses hébergées sur ce site. D'autres langues peuvent être installées en tout temps à partir de l'interface de gestion du site. Les paramètres marqués d'une étoile (*) pourraient être incomplets." +msgstr "" +"Sélectionnez d'autres langues qui bénéficieront d'un soutien dans ce " +"système. Ces langues pourront être utilisées par les presses hébergées sur " +"ce site. D'autres langues peuvent être installées en tout temps à partir de " +"l'interface de gestion du site. Les paramètres marqués d'une étoile (*) " +"pourraient être incomplets." msgid "installer.filesDirInstructions" msgstr "" -"Saisir un chemin d'accès complet vers un répertoire existant où les fichiers téléchargés seront stockés. Ce répertoire ne devrait pas être accessible directement par le Web.\n" -"Assurez-vous que ce répertoire existe et est inscriptible avant l'installation. Les noms de chemin devraient contenir des barres obliques, ex.: \"C:/mypress/files\"." +"Saisir un chemin d'accès complet vers un répertoire existant où les fichiers " +"téléchargés seront stockés. Ce répertoire ne devrait pas être accessible " +"directement par le Web.\n" +"Assurez-vous que ce répertoire existe et est inscriptible avant " +"l'installation. Les noms de chemin devraient contenir des barres " +"obliques, ex.: \"C:/mypress/files\"." msgid "installer.databaseSettingsInstructions" -msgstr "OMP requiert l'accès à une base de données SQL pour stocker ses données. Consultez les exigences système ci-haut pour obtenir la liste des bases de données supportées. Dans les champs ci-dessous, indiquez les paramètres qui seront utilisés pour brancher la base de données." +msgstr "" +"OMP requiert l'accès à une base de données SQL pour stocker ses données. " +"Consultez les exigences système ci-haut pour obtenir la liste des bases de " +"données supportées. Dans les champs ci-dessous, indiquez les paramètres qui " +"seront utilisés pour brancher la base de données." msgid "installer.upgradeApplication" msgstr "Mise à jour d'Open Monograph Press" @@ -980,34 +1301,63 @@ msgstr "Mise à jour d'Open Monograph Press" msgid "installer.overwriteConfigFileInstructions" msgstr "" "

      IMPORTANT!

      \n" -"

      Le programme d'installation n'a pas pu réécrire automatiquement le fichier de configuration. Avant de tenter d'utiliser le système, veuillez ouvrir config.inc.php dans un éditeur de texte approprié et remplacer son contenu par le contenu de la zone de texte ci-dessous.

      " +"

      Le programme d'installation n'a pas pu réécrire automatiquement le " +"fichier de configuration. Avant de tenter d'utiliser le système, veuillez " +"ouvrir config.inc.php dans un éditeur de texte approprié et " +"remplacer son contenu par le contenu de la zone de texte ci-dessous.

      " +#, fuzzy msgid "installer.installationComplete" msgstr "" "

      L'installation d'OMP est terminée.

      \n" -"

      Pour utiliser le système, ouvrez une session en utilisant le nom d'utilisateur et mot de passe saisis sur la page précédente.

      \n" -"

      Si vous souhaitez recevoir des nouvelles et des mises à jour, veuillez vous inscrire au http://pkp.sfu.ca/omp/register. Si vous avez des questions ou commentaires, veuillez consultez le forum.

      " +"

      Pour utiliser le système, ouvrez une session " +"en utilisant le nom d'utilisateur et mot de passe saisis sur la page " +"précédente.

      \n" +"

      Si vous souhaitez recevoir des nouvelles et des mises à jour, " +"veuillez vous inscrire au http://pkp.sfu.ca/omp/register. Si vous avez " +"des questions ou commentaires, veuillez consultez le forum.

      " +#, fuzzy msgid "installer.upgradeComplete" msgstr "" "

      La mise à jour de la version OMP {$version} est terminée.

      \n" -"

      N'oubliez pas de remettre le paramètre \"installed\" à On dans votre fichier de configuration config.inc.php.

      \n" -"

      Si vous n'êtes pas déjà inscrit et souhaitez recevoir des nouvelles et des mises à jour, veuillez vous inscrire au http://pkp.sfu.ca/omp/register. Si vous avez des questions ou commentaires, veuillez consultez le forum.

      " +"

      N'oubliez pas de remettre le paramètre \"installed\" à On dans " +"votre fichier de configuration config.inc.php.

      \n" +"

      Si vous n'êtes pas déjà inscrit et souhaitez recevoir des nouvelles et " +"des mises à jour, veuillez vous inscrire au http://pkp.sfu.ca/omp/register. Si vous avez des questions ou commentaires, veuillez consultez le " +"forum.

      " msgid "log.review.reviewDueDateSet" -msgstr "La date limite pour la {$round}e série de révisions de la soumission {$monographId} par {$reviewerName} est {$dueDate}." +msgstr "" +"La date limite pour la {$round}e série de révisions de la soumission " +"{$monographId} par {$reviewerName} est {$dueDate}." msgid "log.review.reviewDeclined" -msgstr "{$reviewerName} n'a pas accepté la {$round}e série de révisions de la soumission {$monographId}." +msgstr "" +"{$reviewerName} n'a pas accepté la {$round}e série de révisions de la " +"soumission {$monographId}." msgid "log.review.reviewAccepted" -msgstr "{$reviewerName} a accepté la {$round}e série de révisions de la soumission {$monographId}." +msgstr "" +"{$reviewerName} a accepté la {$round}e série de révisions de la soumission " +"{$monographId}." msgid "log.review.reviewUnconsidered" -msgstr "{$editorName} a indiqué que la {$round}e série de révisions de la soumission {$monographId} n'a pas été considérée." +msgstr "" +"{$editorName} a indiqué que la {$round}e série de révisions de la soumission " +"{$monographId} n'a pas été considérée." msgid "log.editor.decision" -msgstr "Une décision rédactionnelle ({$decision}) pour la monographie {$submissionId} a été enregistrée par {$editorName}." +msgstr "" +"Une décision rédactionnelle ({$decision}) pour la monographie " +"{$submissionId} a été enregistrée par {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" msgid "log.editor.archived" msgstr "La soumission {$monographId} a été archivée." @@ -1016,16 +1366,18 @@ msgid "log.editor.restored" msgstr "La soumission {$monographId} a été remise dans la file d'attente." msgid "log.editor.editorAssigned" -msgstr "{$editorName} a été nommé rédacteur en chef de la soumission {$monographId}." - -msgid "log.editor.submissionExpedited" -msgstr "{$editorName} a accéléré le processus rédactionnelle de la soumission {$monographId}." +msgstr "" +"{$editorName} a été nommé rédacteur en chef de la soumission {$monographId}." msgid "log.proofread.assign" -msgstr "{$assignerName} a nommé {$proofreaderName} pour corriger les épreuves de la soumission {$monographId}." +msgstr "" +"{$assignerName} a nommé {$proofreaderName} pour corriger les épreuves de la " +"soumission {$monographId}." msgid "log.proofread.complete" -msgstr "{$proofreaderName} a soumis {$monographId} pour l'établissement d'un calendrier." +msgstr "" +"{$proofreaderName} a soumis {$monographId} pour l'établissement d'un " +"calendrier." msgid "log.imported" msgstr "{$userName} a importé la monographie {$monographId}." @@ -1111,12 +1463,6 @@ msgstr "Une nouvelle monographie, \"{$title},\" a été soumise." msgid "notification.type.editing" msgstr "Modifications" -msgid "notification.type.metadataModified" -msgstr "Les métadonnées de \"{$title}\" ont été modifiées." - -msgid "notification.type.reviewerComment" -msgstr "Un évaluateur a commenté \"{$title}\"." - msgid "notification.type.reviewing" msgstr "Révisions" @@ -1129,8 +1475,13 @@ msgstr "Activités de soumission" msgid "notification.type.userComment" msgstr "Un lecteur a commenté \"{$title}\"." +msgid "notification.type.public" +msgstr "" + msgid "notification.type.editorAssignmentTask" -msgstr "Une nouvelle monographie a été soumise. On doit lui assigner un rédacteur en chef." +msgstr "" +"Une nouvelle monographie a été soumise. On doit lui assigner un rédacteur en " +"chef." msgid "notification.type.copyeditorRequest" msgstr "On vous a demandé de réviser les corrections dans \"{$file}\"." @@ -1145,28 +1496,44 @@ msgid "notification.type.editorDecisionInternalReview" msgstr "Le processus d'évaluation interne a débuté." msgid "notification.type.approveSubmission" -msgstr "Cette soumission est en attente d'approbation dans l'outil d'entrée de catalogue avant d'apparaitre dans le catalogue public." +msgstr "" +"Cette soumission est en attente d'approbation dans l'outil d'entrée de " +"catalogue avant d'apparaitre dans le catalogue public." msgid "notification.type.approveSubmissionTitle" msgstr "En attente d'approbation." +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" + msgid "notification.type.configurePaymentMethod.title" msgstr "Aucun mode de paiement n'a été configuré." msgid "notification.type.configurePaymentMethod" -msgstr "Il faut configurer un mode de paiement avant de définir les paramètre de commerce électronique." +msgstr "" +"Il faut configurer un mode de paiement avant de définir les paramètre de " +"commerce électronique." msgid "notification.type.visitCatalogTitle" msgstr "Gestion du catalogue" +msgid "notification.type.visitCatalog" +msgstr "" + msgid "user.authorization.invalidReviewAssignment" -msgstr "Vous n'avez pas accès à cette monographie car vous ne semblez pas être un évaluateur valide de ce document." +msgstr "" +"Vous n'avez pas accès à cette monographie car vous ne semblez pas être un " +"évaluateur valide de ce document." msgid "user.authorization.monographAuthor" -msgstr "Vous n'avez pas accès à cette monographie car vous ne semblez pas en être l'auteur." +msgstr "" +"Vous n'avez pas accès à cette monographie car vous ne semblez pas en être " +"l'auteur." msgid "user.authorization.monographReviewer" -msgstr "Vous n'avez pas accès à cette monographie car vous ne semblez pas figurer parmi les évaluateurs reconnus de celle-ci." +msgstr "" +"Vous n'avez pas accès à cette monographie car vous ne semblez pas figurer " +"parmi les évaluateurs reconnus de celle-ci." msgid "user.authorization.monographFile" msgstr "Vous n'avez pas accès à ce fichier associé à la monographie." @@ -1174,17 +1541,22 @@ msgstr "Vous n'avez pas accès à ce fichier associé à la monographie." msgid "user.authorization.invalidMonograph" msgstr "Vous avez demandé une monographie non valide ou inexistante!" +#, fuzzy msgid "user.authorization.noContext" msgstr "Aucune presse en contexte!" msgid "user.authorization.seriesAssignment" -msgstr "Vous tentez d'avoir accès à une monographie qui ne fait pas partie de votre série." +msgstr "" +"Vous tentez d'avoir accès à une monographie qui ne fait pas partie de votre " +"série." msgid "user.authorization.workflowStageAssignmentMissing" msgstr "Accès refusé! On ne vous a pas assigné de travail à cette étape." msgid "user.authorization.workflowStageSettingMissing" -msgstr "Accès refusé! Le groupe d'utilisateurs auquel vous appartenez n'a pas accès à cette étape du travail. Veuillez vérifier vos paramètres de presse." +msgstr "" +"Accès refusé! Le groupe d'utilisateurs auquel vous appartenez n'a pas accès " +"à cette étape du travail. Veuillez vérifier vos paramètres de presse." msgid "payment.directSales" msgstr "Télécharger à partir du site Web de la presse" @@ -1204,6 +1576,9 @@ msgstr "Approuvé" msgid "payment.directSales.priceCurrency" msgstr "Prix ({$currency})" +msgid "payment.directSales.numericOnly" +msgstr "" + msgid "payment.directSales.directSales" msgstr "Ventes directes" @@ -1220,7 +1595,11 @@ msgid "payment.directSales.openAccess" msgstr "Accès libre" msgid "payment.directSales.price.description" -msgstr "Les formats des fichiers peuvent être accessibles et téléchargeables gratuitement sur le site Web de la presse, pour les lecteurs ou les ventes directes (en utilisant un processeur de paiement en ligne, tel que configuré dans Distribution). Il faut indiquer la base de l'accès pour ce fichier." +msgstr "" +"Les formats des fichiers peuvent être accessibles et téléchargeables " +"gratuitement sur le site Web de la presse, pour les lecteurs ou les ventes " +"directes (en utilisant un processeur de paiement en ligne, tel que configuré " +"dans Distribution). Il faut indiquer la base de l'accès pour ce fichier." msgid "payment.directSales.validPriceRequired" msgstr "Il faut indiquer un prix numérique valide." @@ -1235,34 +1614,178 @@ msgid "payment.directSales.monograph.name" msgstr "Acheter la monographie ou le chapitre téléchargeable" msgid "payment.directSales.monograph.description" -msgstr "Cette transaction représente l'achat d'un téléchargement direct d'une seule monographie ou d'un chapitre." +msgstr "" +"Cette transaction représente l'achat d'un téléchargement direct d'une seule " +"monographie ou d'un chapitre." msgid "debug.notes.helpMappingLoad" -msgstr "Le fichier de mappage d'aide XML {$filename} a été téléchargé à nouveau pour trouver {$id}." - -msgid "grid.action.createContext" -msgstr "Créer une nouvelle presse" - -msgid "context.select" -msgstr "Sélectionner une presse..." +msgstr "" +"Le fichier de mappage d'aide XML {$filename} a été téléchargé à nouveau pour " +"trouver {$id}." -msgid "user.role.editors" -msgstr "Éditeurs" +msgid "rt.metadata.pkp.dctype" +msgstr "" msgid "submission.pdf.download" msgstr "Télécharger ce fichier PDF" -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Ajouter des utilisateurs sans rôle à cette presse." +msgid "user.profile.form.showOtherContexts" +msgstr "" + +msgid "user.profile.form.hideOtherContexts" +msgstr "" msgid "submission.round" msgstr "Cycle {$round}" -msgid "monograph.miscellaneousDetails" -msgstr "Renseignements à propos de cette monographie" +msgid "user.authorization.invalidPublishedSubmission" +msgstr "" -msgid "monograph.publicationFormat" -msgstr "Format" +msgid "catalog.coverImageTitle" +msgstr "" -msgid "monograph.audience.success" -msgstr "Les renseignements de l'auditoire ont été mis à jour." +msgid "grid.catalogEntry.chapters" +msgstr "" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +#~ msgid "monograph.coverImage.uploadInstructions" +#~ msgstr "" +#~ "Assurez-vous que la hauteur de l'image ne dépasse pas 150% de sa largeur " +#~ "car sinon, le carrousel ne présentera pas toute la couverture." + +#~ msgid "grid.content.spotlights.category.sidebar" +#~ msgstr "Encadré" + +#~ msgid "series.featured" +#~ msgstr "En vedette" + +#~ msgid "grid.series.urlWillBe" +#~ msgstr "" +#~ "L'adresse URL de la série sera {$sampleUrl}. Le 'chemin d'accès' consiste " +#~ "en une série de caractères utilisés pour identifier une série." + +#~ msgid "catalog.manage.homepage" +#~ msgstr "Page d'accueil" + +#~ msgid "catalog.manage.managementIntroduction" +#~ msgstr "" +#~ "Bienvenue au gestionnaire de catalogue. À partir de cette page, vous " +#~ "pouvez publier de nouvelles entrées de catalogue, réviser et configurer " +#~ "votre liste des livres 'en vedette', réviser et configurer votre liste de " +#~ "nouveautés, et réviser et configurer vos livres par catégorie et par " +#~ "série." + +#~ msgid "catalog.manage.entryDescription" +#~ msgstr "" +#~ "Pour ajouter un livre à la liste du catalogue, sélectionnez l'onglet " +#~ "'Monographie' et fournissez les renseignements nécessaires. Vous pouvez " +#~ "ajouter les renseignements concernant chaque format de livre dans " +#~ "l'entrée de catalogue en sélectionnant l'onglet Format. Les " +#~ "spécifications concernant les métadonnées sont basées sur ONIX for Books, " +#~ "une norme internationale utilisée par l'industrie du livre pour la " +#~ "communication de renseignements sur les produits." + +#~ msgid "catalog.manage.spotlightDescription" +#~ msgstr "" +#~ "Trois produits vedette (ex.: livres sous les projecteurs) sont affichés " +#~ "sur la page d'accueil de la presse, avec leur titre, une image et du " +#~ "texte." + +#~ msgid "catalog.relatedCategories" +#~ msgstr "Catégories connexes" + +#~ msgid "common.plusMore" +#~ msgstr "+ Plus" + +#~ msgid "common.catalogInformation" +#~ msgstr "" +#~ "Il n'est pas nécessaire de remplir les renseignements sur le catalogue " +#~ "lorsque le travail est soumis pour la première fois, mis à part le titre " +#~ "et un sommaire." + +#~ msgid "common.prefixAndTitle.tip" +#~ msgstr "" +#~ "Si le titre du livre commence par un “Un/Une” ou “Le/la” (ou quelque " +#~ "chose de semblable qui affecte l'ordre alphabétique), ajoutez un mot dans " +#~ "Préfixe." + +#~ msgid "user.register.completeForm" +#~ msgstr "" +#~ "Veuillez remplir ce formulaire pour vous inscrire auprès de cette presse." + +#~ msgid "user.register.alreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Cliquez ici si vous êtes déjà inscrit(e) " +#~ "auprès de cette presse ou d'une autre presse sur ce site." + +#~ msgid "user.register.notAlreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Cliquez ici si vous n'êtes pas déjà inscrit(e) auprès de cette presse ou d'une autre presse sur " +#~ "ce site." + +#~ msgid "user.register.loginToRegister" +#~ msgstr "" +#~ "Indiquez voter nom d'utilisateur et mot de passe actuels pour vous " +#~ "inscrire auprès de cette presse." + +#~ msgid "about.aboutThePress" +#~ msgstr "À propos de cette presse" + +#~ msgid "about.sponsors" +#~ msgstr "Parrains" + +#~ msgid "about.contributors" +#~ msgstr "Sources de financement" + +#~ msgid "about.onlineSubmissions.haveAccount" +#~ msgstr "Un nom d'utilisateur/mot de passe existe déjà pour {$pressTitle}?" + +#~ msgid "about.onlineSubmissions.needAccount" +#~ msgstr "Vous avez besoin d'un nom d'utilisateur/mot de passe?" + +#~ msgid "about.onlineSubmissions.registration" +#~ msgstr "Accéder à l'inscription" + +#~ msgid "log.editor.submissionExpedited" +#~ msgstr "" +#~ "{$editorName} a accéléré le processus rédactionnelle de la soumission " +#~ "{$monographId}." + +#~ msgid "notification.type.metadataModified" +#~ msgstr "Les métadonnées de \"{$title}\" ont été modifiées." + +#~ msgid "notification.type.reviewerComment" +#~ msgstr "Un évaluateur a commenté \"{$title}\"." + +msgid "section.section" +msgstr "Séries" diff --git a/locale/fr_CA/manager.po b/locale/fr_CA/manager.po index 5e4bbe487e0..85af625ea90 100644 --- a/locale/fr_CA/manager.po +++ b/locale/fr_CA/manager.po @@ -2,29 +2,32 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" +"PO-Revision-Date: 2019-09-30T06:23:44-07:00\n" "Last-Translator: \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2019-09-30T06:23:44-07:00\n" -"Language: \n" msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "Ceci remplacera tous les paramètres spécifiques aux données de la presse que vous aviez spécifiés pour ce paramètre." - -msgid "manager.languages.languageInstructions" -msgstr "Les utilisateurs peuvent utiliser différentes langues dans OMP. De plus, OMP peut être multilingue: les utilisateurs peuvent basculer d'une langue à l'autre sur chaque page et ils peuvent saisir les données dans différentes langues.

      Si une langue prise en charge par OMP n'apparait dans la liste, demandez à l'administrateur du site d'installer la langue à partir de l'interface d'administration du site. La documentation d'OMP contient des instructions sur la prise en charge de nouvelles langues." +msgstr "" +"Ceci remplacera tous les paramètres spécifiques aux données de la presse que " +"vous aviez spécifiés pour ce paramètre." msgid "manager.languages.noneAvailable" -msgstr "Désolé, aucune autre langue n'est disponible. Contactez l'administrateur du site si vous souhaitez ajouter d'autres langues à cette presse." +msgstr "" +"Désolé, aucune autre langue n'est disponible. Contactez l'administrateur du " +"site si vous souhaitez ajouter d'autres langues à cette presse." msgid "manager.languages.primaryLocaleInstructions" msgstr "Cette langue sera la langue par défaut du site de la presse." msgid "manager.series.form.mustAllowPermission" -msgstr "Assurez-vous qu'au moins une case ait été cochée pour chaque tâche assignée au rédacteur en chef de la série." +msgstr "" +"Assurez-vous qu'au moins une case ait été cochée pour chaque tâche assignée " +"au rédacteur en chef de la série." msgid "manager.series.form.reviewFormId" msgstr "Assurez-vous d'avoir choisi un formulaire d'évaluation valide." @@ -33,7 +36,9 @@ msgid "manager.series.submissionIndexing" msgstr "Ne fera pas partie de l'indexage de la presse." msgid "manager.series.editorRestriction" -msgstr "Les articles ne peuvent être soumis que par les rédacteurs en chef et les rédacteurs en chef de la série." +msgstr "" +"Les articles ne peuvent être soumis que par les rédacteurs en chef et les " +"rédacteurs en chef de la série." msgid "manager.series.confirmDelete" msgstr "Vous voulez supprimer cette série de façon permanente?" @@ -72,7 +77,14 @@ msgid "manager.series.assigned" msgstr "Rédacteurs en chef de la série" msgid "manager.series.seriesEditorInstructions" -msgstr "Ajouter un rédacteur en chef pour cette série à partir de la liste de rédacteurs en chef de série. Lorsqu'un rédacteur a été ajouté, indiquez s'il sera en charge de l'ÉVALUATION (évaluation par les pairs) et/ou du TRAVAIL ÉDITORIAL (révision, mise en page et correction d'épreuves) des soumissions de cette série. Pour ajouter un rédacteur en chef à la série, il faut cliquer Rédacteurs/Rédactrices en chef de série dans la section Rôles des administrateurs de la presse." +msgstr "" +"Ajouter un rédacteur en chef pour cette série à partir de la liste de " +"rédacteurs en chef de série. Lorsqu'un rédacteur a été ajouté, indiquez s'il " +"sera en charge de l'ÉVALUATION (évaluation par les pairs) et/ou du TRAVAIL " +"ÉDITORIAL (révision, mise en page et correction d'épreuves) des soumissions " +"de cette série. Pour ajouter un rédacteur en chef à la série, il faut " +"cliquer Rédacteurs/Rédactrices en chef de " +"série dans la section Rôles des administrateurs de la presse." msgid "manager.series.hideAbout" msgstr "Omettre cette série de la section À propos de cette presse." @@ -95,11 +107,17 @@ msgstr "Utilisateurs actuels" msgid "manager.series.seriesTitle" msgstr "Titre de la série" -msgid "manager.series.noSeriesEditors" -msgstr "Aucun rédacteur en chef n'a été choisi pour cette série. Assignez ce rôle à au moins un utilisateur en choisissant Gestion > Paramètres > Utilisateurs & Rôles." +msgid "manager.series.restricted" +msgstr "Restreint" + +msgid "manager.payment.generalOptions" +msgstr "" + +msgid "manager.payment.options.enablePayments" +msgstr "" -msgid "manager.series.noCategories" -msgstr "Il n'y a pas encore de catégories. Si vous souhaitez assigner des catégories à cette série, fermez ce modal et cliquez sur l'onglet \"Catégories\", puis créez une catégorie." +msgid "manager.payment.success" +msgstr "" msgid "manager.settings" msgstr "Paramètres" @@ -110,8 +128,14 @@ msgstr "Paramètres de la presse" msgid "manager.settings.press" msgstr "Presse" +msgid "manager.settings.publisher.identity" +msgstr "" + msgid "manager.settings.publisher.identity.description" -msgstr "Ces champs ne sont pas nécessaires pour l'usage général d'OMP, mais sont nécessaires pour créer des métadonnées ONIX valides. Veuillez les ajouter si vous souhaitez utiliser la fonctionnalité ONIX." +msgstr "" +"Ces champs ne sont pas nécessaires pour l'usage général d'OMP, mais sont " +"nécessaires pour créer des métadonnées ONIX valides. Veuillez les ajouter si " +"vous souhaitez utiliser la fonctionnalité ONIX." msgid "manager.settings.publisher" msgstr "Nom de l'éditeur de la presse" @@ -122,14 +146,42 @@ msgstr "Lieu géographique" msgid "manager.settings.publisherCode" msgstr "Code de l'éditeur" +msgid "manager.settings.publisherCodeType" +msgstr "" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "" + msgid "manager.settings.distributionDescription" -msgstr "Tous les paramètres associés au processus de distribution (avis, indexage, archivage, paiement, outils de lecture)." +msgstr "" +"Tous les paramètres associés au processus de distribution (avis, indexage, " +"archivage, paiement, outils de lecture)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Téléchargement des fichiers des monographies" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Vues du résumé de la monographie" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Résumé et téléchargements de la monographie" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Vues de la page d'accueil de la série" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Vues de la page d'accueil de la presse" msgid "manager.tools" msgstr "Outils" msgid "manager.tools.importExport" -msgstr "Tous les outils associés spécifiquement à l'importation et à l'exportation des données (presses, monographies, utilisateurs)" +msgstr "" +"Tous les outils associés spécifiquement à l'importation et à l'exportation " +"des données (presses, monographies, utilisateurs)" + +msgid "manager.tools.statistics" +msgstr "" msgid "manager.users.availableRoles" msgstr "Rôles disponibles" @@ -140,6 +192,9 @@ msgstr "Rôles actuels" msgid "manager.users.selectRole" msgstr "Choisir un rôle" +msgid "manager.people.allEnrolledUsers" +msgstr "" + msgid "manager.people.allPresses" msgstr "Toutes les presses" @@ -150,43 +205,53 @@ msgid "manager.people.allUsers" msgstr "Tous les utilisateurs inscrits" msgid "manager.people.confirmRemove" -msgstr "Vous voulez supprimer cet utilisateur de la presse? Cet utilisateur ne sera plus inscrit à aucun rôle dans cette presse." +msgstr "" +"Vous voulez supprimer cet utilisateur de la presse? Cet utilisateur ne sera " +"plus inscrit à aucun rôle dans cette presse." msgid "manager.people.enrollExistingUser" msgstr "Inscrire un utilisateur actuel" -msgid "manager.people.existingUserRequired" -msgstr "Vous devez choisir un utilisateur actuel." - msgid "manager.people.enrollSyncPress" msgstr "Avec la presse" msgid "manager.people.mergeUsers.from.description" -msgstr "Sélectionnez un utilisateur qui sera fusionné à un autre compte d'utilisateur (ex.: lorsqu'une personne a deux comptes). Le premier compte sélectionné sera supprimé et ses soumissions, tâches, etc. seront assignées au deuxième compte." +msgstr "" +"Sélectionnez un utilisateur qui sera fusionné à un autre compte " +"d'utilisateur (ex.: lorsqu'une personne a deux comptes). Le premier compte " +"sélectionné sera supprimé et ses soumissions, tâches, etc. seront assignées " +"au deuxième compte." msgid "manager.people.mergeUsers.into.description" -msgstr "Sélectionnez l'utilisateur à qui vous souhaitez attribuer les paternités d'oeuvre, les tâches d'édition, etc. de l'ancien utilisateur." +msgstr "" +"Sélectionnez l'utilisateur à qui vous souhaitez attribuer les paternités " +"d'oeuvre, les tâches d'édition, etc. de l'ancien utilisateur." msgid "manager.people.syncUserDescription" -msgstr "La synchronisation de l'inscription inscrira tous les utilisateurs de la presse spécifiée dans cette presse, et le rôle qui leur avait été assigné dans la presse spécifiée leur sera attribué dans cette presse. Cette fonction permet de synchroniser un groupe d'utilisateurs communs (ex.: évaluateurs) parmi les différentes presses." +msgstr "" +"La synchronisation de l'inscription inscrira tous les utilisateurs de la " +"presse spécifiée dans cette presse, et le rôle qui leur avait été assigné " +"dans la presse spécifiée leur sera attribué dans cette presse. Cette " +"fonction permet de synchroniser un groupe d'utilisateurs communs (ex.: " +"évaluateurs) parmi les différentes presses." msgid "manager.people.confirmDisable" -msgstr "Vous souhaitez désactiver cet utilisateur? Il ne pourra plus ouvrir une session dans le système. Vous pourriez expliquer à l'utilisateur pourquoi vous avez désactivé son compte, mais cela est optionnel." +msgstr "" +"Vous souhaitez désactiver cet utilisateur? Il ne pourra plus ouvrir une " +"session dans le système. Vous pourriez expliquer à l'utilisateur pourquoi " +"vous avez désactivé son compte, mais cela est optionnel." msgid "manager.people.noAdministrativeRights" msgstr "" -"Désolé, vous ne possédez pas les droits administratifs vous permettant de modifier cet utilisateur parce que:\n" +"Désolé, vous ne possédez pas les droits administratifs vous permettant de " +"modifier cet utilisateur parce que:\n" "\t\t
        \n" "\t\t\t
      • L'utilisateur est un administrateur du site
      • \n" -"\t\t\t
      • L'utilisateur est actif dans les presses que vous ne gérez pas
      • \n" +"\t\t\t
      • L'utilisateur est actif dans les presses que vous ne gérez pas\n" "\t\t
      \n" "\tCette tâche doit être effectuée par un administrateur du site." -msgid "settings.roles.gridDescription" -msgstr "" -"Les rôles représentent des groupes d'utilisateurs de la presse à qui l'on a donné accès à différents niveaux d'autorisation et de flux de travaux au sein de la presse. Il existe cinq niveaux d'autorisation: les directeurs de la presse ont accès à tout le contenu de la presse (contenu et paramètres); les rédacteurs en chef de la presse ont accès à tout le contenu de leur série; les adjoints de presse ont accès à toutes les monographies leur ayant été explicitement assignées par un rédacteur en chef; les évaluateurs peuvent visionner et effectuer les évaluations leur ayant été assignées; et les auteurs peuvent visionner et interagir avec un nombre restreint de renseignements concernant leurs soumissions. De plus, les tâches sont divisées en cinq étapes auxquelles les rôles peuvent avoir accès:\n" -"Soumission, Évaluation interne, Évaluation externe, Rédaction et Production." - msgid "manager.system" msgstr "Paramètres du système" @@ -202,6 +267,9 @@ msgstr "Outils de lecture" msgid "manager.system.payments" msgstr "Paiement" +msgid "user.authorization.pluginLevel" +msgstr "" + msgid "manager.pressManagement" msgstr "Administration de la presse" @@ -217,20 +285,13 @@ msgstr "Ajouter un élément dans À propos de" msgid "manager.setup.addChecklistItem" msgstr "Ajouter un point à la liste de vérification" -msgid "manager.setup.addContributor" -msgstr "Ajouter un contributeur" - msgid "manager.setup.addItem" msgstr "Ajouter un élément" msgid "manager.setup.addItemtoAboutPress" -msgstr "Ajouter un élément qui s'affichera dans la section \"À propos de cette presse\"" - -msgid "manager.setup.additionalContent" -msgstr "Contenu supplémentaire" - -msgid "manager.setup.additionalContentDescription" -msgstr "Ajouter le contenu suivant en utilisant le format texte/HTML. Il s'affichera sous l'image de la page d'accueil, si une telle page a été téléchargée." +msgstr "" +"Ajouter un élément qui s'affichera dans la section \"À propos de cette presse" +"\"" msgid "manager.setup.addNavItem" msgstr "Ajouter un élément" @@ -238,47 +299,37 @@ msgstr "Ajouter un élément" msgid "manager.setup.addSponsor" msgstr "Ajouter un organisme parrain" -msgid "manager.setup.alternateHeader" -msgstr "En-tête secondaire" - -msgid "manager.setup.alternateHeaderDescription" -msgstr "Au lieu d'un titre ou d'un logo, la version HTML de l'en-tête peut être insérée dans la zone de texte ci-dessous. Laissez cette zone vide si vous n'en avez pas besoin." - msgid "manager.setup.announcements" msgstr "Annonces" +msgid "manager.setup.announcements.success" +msgstr "" + msgid "manager.setup.announcementsDescription" -msgstr "Vous pouvez publier des annonces pour informer les lecteurs des récentes nouvelles et activités de la presse. Les annonces s'afficheront sur la page Annonces." +msgstr "" +"Vous pouvez publier des annonces pour informer les lecteurs des récentes " +"nouvelles et activités de la presse. Les annonces s'afficheront sur la page " +"Annonces." msgid "manager.setup.announcementsIntroduction" msgstr "Renseignements supplémentaires" msgid "manager.setup.announcementsIntroduction.description" -msgstr "Saisissez les renseignements supplémentaires s'adressant aux lecteurs qui devraient s'afficher sur la page Annonces." +msgstr "" +"Saisissez les renseignements supplémentaires s'adressant aux lecteurs qui " +"devraient s'afficher sur la page Annonces." msgid "manager.setup.appearInAboutPress" msgstr "(S'affichera dans À propos de cette presse) " -msgid "manager.setup.authorCopyrightNotice" -msgstr "Avis de droit d'auteur" - -msgid "manager.setup.authorCopyrightNoticeAgree" -msgstr "Le processus de soumission exige que les auteurs souscrivent à l'avis de droit d'auteur." - -msgid "manager.setup.authorCopyrightNotice.description" -msgstr "L'avis de droit d'auteur saisi ci-dessous s'affichera dans À propos de cette presse et dans les métadonnées de chaque article publié. Bien qu'il en revienne à la presse d'établir la nature de son avis de droit d'auteur, le Public Knowledge Project recommande d'utiliser la licence Creative Commons. À cette fin, on fournit un modèle suggérant la formulation de l'avis de droit d'auteur qui peut être copié-collé dans l'espace ci-dessous par les presses qui (a) offrent l'accès libre, (b), offrent l'accès libre différé, ou (c) n'offrent pas l'accès libre." - -msgid "manager.setup.authorGuidelines.description" -msgstr "Énoncer les normes bibliographiques et d'édition que les auteurs doivent utiliser lorsqu'ils soumettent un article à la presse (ex: manuel d'édition de l'American Psychological Association, 5e édition, 2001). Il est souvent utile de fournir des exemples des styles de citation couramment utilisés par les presses et les livres et qui doivent être utilisés dans les soumissions." - -msgid "manager.setup.contributor" -msgstr "Contributeur" +msgid "manager.setup.contextAbout" +msgstr "" -msgid "manager.setup.contributors" -msgstr "Sources de financement" +msgid "manager.setup.contextAbout.description" +msgstr "" -msgid "manager.setup.contributors.description" -msgstr "Les noms des agences ou organismes qui fournissent une aide financière ou en nature à la presse apparaitront dans la section À propos de cette presse et pourraient être accompagnés d'un mot de remerciement." +msgid "manager.setup.contextSummary" +msgstr "" msgid "manager.setup.copyediting" msgstr "Réviseurs de textes" @@ -287,7 +338,12 @@ msgid "manager.setup.copyeditInstructions" msgstr "Instructions pour la révision" msgid "manager.setup.copyeditInstructionsDescription" -msgstr "Les réviseurs de textes, les auteurs et les rédacteurs en chef de la section auront accès aux Instructions pour la révision à l'étape de révision de la soumission. Voici l'ensemble des instructions par défaut en HTML, qui peuvent être modifiées ou remplacées par le directeur de la presse en tout temps (en HTML ou texte clair)." +msgstr "" +"Les réviseurs de textes, les auteurs et les rédacteurs en chef de la section " +"auront accès aux Instructions pour la révision à l'étape de révision de la " +"soumission. Voici l'ensemble des instructions par défaut en HTML, qui " +"peuvent être modifiées ou remplacées par le directeur de la presse en tout " +"temps (en HTML ou texte clair)." msgid "manager.setup.copyrightNotice" msgstr "Avis de droit d'auteur" @@ -295,6 +351,15 @@ msgstr "Avis de droit d'auteur" msgid "manager.setup.coverage" msgstr "Champ couvert" +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" + msgid "manager.setup.customizingTheLook" msgstr "Étape 5. Personnaliser l'apparence" @@ -302,7 +367,9 @@ msgid "manager.setup.customTags" msgstr "Marqueurs personnalisés" msgid "manager.setup.customTagsDescription" -msgstr "Vous pouvez ajouter des marqueurs HTML personnalisés dans l'en-tête de chaque page. (ex.: marqueurs Méta)." +msgstr "" +"Vous pouvez ajouter des marqueurs HTML personnalisés dans l'en-tête de " +"chaque page. (ex.: marqueurs Méta)." msgid "manager.setup.details" msgstr "Détails" @@ -311,28 +378,67 @@ msgid "manager.setup.details.description" msgstr "Nom de la presse, coordonnées, parrains et moteurs de recherche." msgid "manager.setup.disableUserRegistration" -msgstr "Les directeurs de presse inscrivent tous les utilisateurs. Les rédacteurs en chef et rédacteurs en chef de section ne peuvent inscrire que les évaluateurs." +msgstr "" +"Les directeurs de presse inscrivent tous les utilisateurs. Les rédacteurs en " +"chef et rédacteurs en chef de section ne peuvent inscrire que les " +"évaluateurs." msgid "manager.setup.discipline" msgstr "Discipline et sous-disciplines universitaires" msgid "manager.setup.disciplineDescription" -msgstr "Utile lorsque les presses traversent les frontières des disciplines et/ou les auteurs soumettent des articles multidisciplinaires." +msgstr "" +"Utile lorsque les presses traversent les frontières des disciplines et/ou " +"les auteurs soumettent des articles multidisciplinaires." msgid "manager.setup.disciplineExamples" -msgstr "(ex.: histoire; éducation; sociologie; psychologie; études culturelles; loi)" +msgstr "" +"(ex.: histoire; éducation; sociologie; psychologie; études culturelles; loi)" msgid "manager.setup.disciplineProvideExamples" -msgstr "Fournir des exemples des disciplines universitaires normalement associées à cette presse." +msgstr "" +"Fournir des exemples des disciplines universitaires normalement associées à " +"cette presse." msgid "manager.setup.displayCurrentMonograph" -msgstr "Ajouter la table des matières de la monographie en question (si disponible)." +msgstr "" +"Ajouter la table des matières de la monographie en question (si disponible)." + +msgid "manager.setup.displayOnHomepage" +msgstr "" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "" -msgid "manager.setup.doiPrefix" -msgstr "Préfixe DOI" +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "" -msgid "manager.setup.doiPrefixDescription" -msgstr "Le préfixe DOI (Digital Object Identifier) est assigné par CrossRef sous le format 10.xxxx (ex.: 10.1234)." +msgid "manager.setup.displayInSpotlight" +msgstr "" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "" + +msgid "manager.setup.displayNewReleases" +msgstr "" + +msgid "manager.setup.displayNewReleases.label" +msgstr "" + +msgid "manager.setup.enableDois.description" +msgstr "" + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "" + +msgid "manager.dois.formatIdentifier.file" +msgstr "" msgid "manager.setup.editorDecision" msgstr "Décision du rédacteur en chef" @@ -341,7 +447,12 @@ msgid "manager.setup.emailBounceAddress" msgstr "Adresse de retour" msgid "manager.setup.emailBounceAddress.description" -msgstr "Un message d'erreur s'affichera à cette adresse lorsqu'un courriel est non délivrable." +msgstr "" +"Un message d'erreur s'affichera à cette adresse lorsqu'un courriel est non " +"délivrable." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" msgid "manager.setup.emails" msgstr "Identification de courriel" @@ -349,26 +460,46 @@ msgstr "Identification de courriel" msgid "manager.setup.emailSignature" msgstr "Signature" -msgid "manager.setup.emailSignatureDescription" -msgstr "Les courriels distribués par le système au nom de la presse contiendront le bloc-signature suivant à la fin du message. Le contenu des courriels peut être modifié dans la section ci-dessous." +msgid "manager.setup.emailSignature.description" +msgstr "" msgid "manager.setup.enableAnnouncements.enable" -msgstr "Permettre au directeur de la presse d'ajouter des annonces de la presse." +msgstr "" +"Permettre au directeur de la presse d'ajouter des annonces de la presse." + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" msgid "manager.setup.enablePressInstructions" msgstr "Afficher cette presse publiquement sur le site" msgid "manager.setup.enablePublicMonographId" -msgstr "Des identificateurs personnalisés seront utilisés pour identifier les articles publiés." +msgstr "" +"Des identificateurs personnalisés seront utilisés pour identifier les " +"articles publiés." msgid "manager.setup.enablePublicGalleyId" -msgstr "Des identificateurs personnalisés seront utilisés pour identifier les épreuves en placard (ex.: fichiers HTML ou PDF) des articles publiés." +msgstr "" +"Des identificateurs personnalisés seront utilisés pour identifier les " +"épreuves en placard (ex.: fichiers HTML ou PDF) des articles publiés." + +msgid "manager.setup.enableUserRegistration" +msgstr "" msgid "manager.setup.focusAndScope" msgstr "Objectif et portée de la presse" msgid "manager.setup.focusAndScope.description" -msgstr "Saisir un énoncé qui s'affichera dans la section À propos de cette presse et indiquera aux auteurs, aux lecteurs et aux bibliothécaires l'éventail des monographies et autres articles qui seront publiés par la presse." +msgstr "" +"Saisir un énoncé qui s'affichera dans la section À propos de cette presse et " +"indiquera aux auteurs, aux lecteurs et aux bibliothécaires l'éventail des " +"monographies et autres articles qui seront publiés par la presse." msgid "manager.setup.focusScope" msgstr "Objectif et portée" @@ -380,10 +511,20 @@ msgid "manager.setup.forAuthorsToIndexTheirWork" msgstr "Permet aux auteurs d'indexer leur travail" msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "OMP a adopté le protocole Open Archives Initiative pour la collecte de métadonnées, la norme émergente qui permet de fournir un accès mondial à des ressources de recherche électroniques indexées adéquatement. Les auteurs utiliseront un modèle semblable pour les métadonnées de leur soumission. Le directeur de la presse devrait choisir les catégories d'indexage et donner des exemples pertinents aux auteurs pour les aider à indexer leur article, en séparant les termes par un point-virgule (ex.: terme1; terme2). Les entrées devraient être précédées d'exemples en utilisant \"ex.:\" ou \"Par exemple,\"." +msgstr "" +"OMP a adopté le protocole Open Archives Initiative pour la collecte de métadonnées, la " +"norme émergente qui permet de fournir un accès mondial à des ressources de " +"recherche électroniques indexées adéquatement. Les auteurs utiliseront un " +"modèle semblable pour les métadonnées de leur soumission. Le directeur de la " +"presse devrait choisir les catégories d'indexage et donner des exemples " +"pertinents aux auteurs pour les aider à indexer leur article, en séparant " +"les termes par un point-virgule (ex.: terme1; terme2). Les entrées devraient " +"être précédées d'exemples en utilisant \"ex.:\" ou \"Par exemple,\"." msgid "manager.setup.form.contactEmailRequired" -msgstr "Vous devez ajouter l'adresse courriel de la personne-ressource principale." +msgstr "" +"Vous devez ajouter l'adresse courriel de la personne-ressource principale." msgid "manager.setup.form.contactNameRequired" msgstr "Vous devez ajouter le nom de la personne-ressource principale." @@ -409,14 +550,17 @@ msgstr "Lignes directrices" msgid "manager.setup.preparingWorkflow" msgstr "Étape 3. Préparer le flux des travaux" -msgid "manager.setup.homepageImage" -msgstr "Image de la page d'accueil" +msgid "manager.setup.identity" +msgstr "" -msgid "manager.setup.homepageImageDescription" -msgstr "Ajouter un fichier image ou graphique au milieu de la page. Si vous utilisez le modèle et CSS par défaut, l'image peut être d'une largeur maximale de 750 px pour une configuration avec une barre des menus verticale, ou de 540 px pour une configuration avec deux barres des menus verticales. Si vous utilisez un modèle ou CSS personnalisé, ces valeurs pourraient varier." +msgid "manager.setup.information" +msgstr "" msgid "manager.setup.information.description" -msgstr "De brèves descriptions de la presse pour les bibliothécaires ainsi que pour les lecteurs et les auteurs potentiels sont affichées dans la section \"Renseignements\" de la barre des menus verticale." +msgstr "" +"De brèves descriptions de la presse pour les bibliothécaires ainsi que pour " +"les lecteurs et les auteurs potentiels sont affichées dans la section " +"\"Renseignements\" de la barre des menus verticale." msgid "manager.setup.information.forAuthors" msgstr "Pour les auteurs" @@ -427,9 +571,24 @@ msgstr "Pour les bibliothécaires" msgid "manager.setup.information.forReaders" msgstr "Pour les lecteurs" +msgid "manager.setup.information.success" +msgstr "" + msgid "manager.setup.institution" msgstr "Institution" +msgid "manager.setup.itemsPerPage" +msgstr "" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" + +msgid "manager.setup.keyInfo" +msgstr "" + +msgid "manager.setup.keyInfo.description" +msgstr "" + msgid "manager.setup.labelName" msgstr "Nom d'étiquette" @@ -440,13 +599,26 @@ msgid "manager.setup.layoutInstructions" msgstr "Instructions de mise en page" msgid "manager.setup.layoutInstructionsDescription" -msgstr "Des instructions concernant la mise en page des articles publiés par cette presse peuvent être ajoutées ci-dessous en format HTML ou texte clair. Elles pourront être consultées par le responsable de la mise en page et le rédacteur en chef de section sur la page de révision de chaque soumission. (Étant donné que chaque presse utilise ses propres formats de fichiers, normes bibliographiques, feuilles de style, etc., on ne fournit pas d'instructions par défaut.)" +msgstr "" +"Des instructions concernant la mise en page des articles publiés par cette " +"presse peuvent être ajoutées ci-dessous en format HTML ou texte clair. Elles " +"pourront être consultées par le responsable de la mise en page et le " +"rédacteur en chef de section sur la page de révision de chaque soumission. " +"(Étant donné que chaque presse utilise ses propres formats de fichiers, " +"normes bibliographiques, feuilles de style, etc., on ne fournit pas " +"d'instructions par défaut.)" msgid "manager.setup.layoutTemplates" msgstr "Modèles de mise en page" msgid "manager.setup.layoutTemplatesDescription" -msgstr "Des modèles de chaque format standard publié par la presse (ex.: monographie, critique de livre, etc.) peuvent être téléchargés dans la section Mise en page, dans tous les formats (ex.: pdf, doc, etc.). Ils contiennent des annotations sur la police de caractères, la taille, les marges, etc. qui guideront les rédacteurs metteurs en page et les correcteurs d'épreuves." +msgstr "" +"Des modèles de chaque format standard publié par la presse (ex.: " +"monographie, critique de livre, etc.) peuvent être téléchargés dans la " +"section Mise en page, dans tous les formats (ex.: pdf, doc, etc.). Ils " +"contiennent des annotations sur la police de caractères, la taille, les " +"marges, etc. qui guideront les rédacteurs metteurs en page et les " +"correcteurs d'épreuves." msgid "manager.setup.layoutTemplates.file" msgstr "Fichier modèle" @@ -457,20 +629,24 @@ msgstr "Titre" msgid "manager.setup.lists" msgstr "Listes" +msgid "manager.setup.lists.success" +msgstr "" + msgid "manager.setup.look" msgstr "Aspect et convivialité" msgid "manager.setup.look.description" -msgstr "En-tête de la page d'accueil, contenu, en-tête de la presse, bas de page, barre de navigation et feuille de style." - -msgid "manager.setup.mailingAddress.description" -msgstr "L'emplacement physique et l'adresse postale de la presse." +msgstr "" +"En-tête de la page d'accueil, contenu, en-tête de la presse, bas de page, " +"barre de navigation et feuille de style." msgid "manager.setup.settings" msgstr "Paramètres" msgid "manager.setup.management.description" -msgstr "Accès et sécurité, planification, annonces, révision, mise en page et correction d'épreuves." +msgstr "" +"Accès et sécurité, planification, annonces, révision, mise en page et " +"correction d'épreuves." msgid "manager.setup.managementOfBasicEditorialSteps" msgstr "Gestion des étapes de révision de base" @@ -481,6 +657,9 @@ msgstr "Configuration de la gestion et de la publication" msgid "manager.setup.managingThePress" msgstr "Étape 4. Gestion des paramètres" +msgid "manager.setup.masthead.success" +msgstr "" + msgid "manager.setup.noImageFileUploaded" msgstr "Aucun fichier image n'a été téléchargé." @@ -490,86 +669,112 @@ msgstr "Aucune feuille de style n'a été téléchargée." msgid "manager.setup.note" msgstr "Note" -msgid "manager.setup.notifications" -msgstr "Avis de soumission d'un auteur" - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "Envoyer une copie à la principale personne-ressource telle qu'identifiée à l'étape 1, lors de la configuration." - -msgid "manager.setup.notifications.copySpecifiedAddress" -msgstr "Envoyer une copie à cette adresse courriel:" - -msgid "manager.setup.notifications.description" -msgstr "Lorsque le processus de soumission est terminé, les auteurs reçoivent automatiquement un accusé de réception par courriel (qui peut être visionné et modifié dans la section Courriels préparés). De plus, une copie de l'accusé de réception peut être envoyée ainsi:" - msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "Si vous avez choisi l'option Envoyer un avis par courriel à l'auteur, ajoutez les adresses courriel de tous les co-auteurs s'il s'agit de soumissions par de multiples auteurs, et non seulement l'adresse courriel de l'utilisateur qui envoie la soumission." +msgstr "" +"Si vous avez choisi l'option Envoyer un avis par courriel à l'auteur, " +"ajoutez les adresses courriel de tous les co-auteurs s'il s'agit de " +"soumissions par de multiples auteurs, et non seulement l'adresse courriel de " +"l'utilisateur qui envoie la soumission." msgid "manager.setup.noUseCopyeditors" -msgstr "La révision sera entreprise par le rédacteur en chef ou le rédacteur de section à qui l'on a assigné la soumission." +msgstr "" +"La révision sera entreprise par le rédacteur en chef ou le rédacteur de " +"section à qui l'on a assigné la soumission." msgid "manager.setup.noUseLayoutEditors" -msgstr "Le rédacteur en chef ou le rédacteur de section à qui l'on a assigné la soumission préparera les fichiers HTML, PDF, etc." +msgstr "" +"Le rédacteur en chef ou le rédacteur de section à qui l'on a assigné la " +"soumission préparera les fichiers HTML, PDF, etc." msgid "manager.setup.noUseProofreaders" -msgstr "Le rédacteur en chef ou le rédacteur de section à qui l'on a assigné la soumission vérifiera les épreuves en placard." +msgstr "" +"Le rédacteur en chef ou le rédacteur de section à qui l'on a assigné la " +"soumission vérifiera les épreuves en placard." msgid "manager.setup.numPageLinks" msgstr "Liens vers des pages Web" +msgid "manager.setup.numPageLinks.description" +msgstr "" + msgid "manager.setup.onlineAccessManagement" msgstr "Accès au contenu de la presse" msgid "manager.setup.onlineIssn" msgstr "ISSN en ligne" -msgid "manager.setup.openAccess" -msgstr "La presse fournit l'accès libre à son contenu." - -msgid "manager.setup.openAccessPolicy" -msgstr "Politique de libre accès" - -msgid "manager.setup.openAccessPolicy.description" -msgstr "Si la presse permet aux lecteurs d'accéder immédiatement et librement à tout le contenu qu'elle a publié, veuillez ajouter la Politique de libre accès qui s'affichera dans la section À propos de cette presse, sous la rubrique Politiques." - -msgid "manager.setup.peerReview.description" -msgstr "Présentez les grandes lignes de la politique et du processus d'évaluation par les pairs pour les lecteurs et les auteurs, y compris le nombre d'évaluateurs auquel on fait normalement appel pour évaluer une soumission, les critères utilisés par les évaluateurs pour évaluer les soumissions, les délais habituels pour mener les évaluations et les principes de recrutement des évaluateurs. Ces renseignements s'afficheront dans la section À propos de cette presse." - msgid "manager.setup.policies" msgstr "Politiques" msgid "manager.setup.policies.description" -msgstr "Centre d'intérêt, évaluation par les pairs, sections, confidentialité, sécurité et autres renseignements." +msgstr "" +"Centre d'intérêt, évaluation par les pairs, sections, confidentialité, " +"sécurité et autres renseignements." + +msgid "manager.setup.privacyStatement.success" +msgstr "" + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Différentes composantes de l'apparence de la presse peuvent être configurées " +"à partir de cette page, y compris des éléments de l'en-tête et du pied de " +"page, le style et le thème de la presse, et la manière dont les listes de " +"renseignements sont présentées aux utilisateurs." msgid "manager.setup.pressDescription" msgstr "Description de la presse" msgid "manager.setup.pressDescription.description" -msgstr "Une description générale de la presse devrait être ajoutée ici. Cette description sera disponible sur la page d'accueil de la presse." +msgstr "" +"Une description générale de la presse devrait être ajoutée ici. Cette " +"description sera disponible sur la page d'accueil de la presse." + +msgid "manager.setup.aboutPress" +msgstr "" + +msgid "manager.setup.aboutPress.description" +msgstr "" msgid "manager.setup.pressArchiving" msgstr "Archivage de la presse" +msgid "manager.setup.homepageContent" +msgstr "Contenu de la page d'accueil de la presse" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"La page d'accueil de la presse est constituée de liens de navigation par " +"défaut. Vous pouvez ajouter du contenu à la page d'accueil à l'aide d'une ou " +"plusieurs des options suivantes, qui apparaitront dans l'ordre montré à " +"l'écran." + msgid "manager.setup.pressHomepageContent" msgstr "Contenu de la page d'accueil de la presse" msgid "manager.setup.pressHomepageContentDescription" -msgstr "La page d'accueil de la presse contient les liens de navigation par défaut. Vous pouvez ajouter du texte sur la page d'accueil à l'aide d'une ou de toutes les options suivantes, qui s'afficheront dans l'ordre indiqué." +msgstr "" +"La page d'accueil de la presse contient les liens de navigation par défaut. " +"Vous pouvez ajouter du texte sur la page d'accueil à l'aide d'une ou de " +"toutes les options suivantes, qui s'afficheront dans l'ordre indiqué." msgid "manager.setup.contextInitials" msgstr "Sigles de la presse" -msgid "manager.setup.pageFooter" -msgstr "Bas de page de la presse" +msgid "manager.setup.selectCountry" +msgstr "" -msgid "manager.setup.pageFooterDescription" -msgstr "Voici le bas de page de votre presse. Pour modifier ou mettre à jour le bas de page, copiez-collez le code HTML dans la zone d'entrée de texte ci-dessous. Vous pourriez par exemple ajouter une autre barre de navigation ou un compteur. Ce bas de page apparaitra sur chaque page." +msgid "manager.setup.layout" +msgstr "Mise en page de la presse" msgid "manager.setup.pageHeader" msgstr "Page d'en-tête de la presse" msgid "manager.setup.pageHeaderDescription" -msgstr "Une version graphique du titre de la presse (fichier .gif, .jpg, ou .png), qui peut être plus petite que celle utilisée sur la page d'accueil, peut être téléchargée afin que le titre apparaisse dans l'en-tête de chaque page de la presse et remplace la version textuelle qui apparait normalement." +msgstr "" +"Une version graphique du titre de la presse (fichier .gif, .jpg, ou .png), " +"qui peut être plus petite que celle utilisée sur la page d'accueil, peut " +"être téléchargée afin que le titre apparaisse dans l'en-tête de chaque page " +"de la presse et remplace la version textuelle qui apparait normalement." msgid "manager.setup.pressPolicies" msgstr "Étape 2. Politiques de la presse" @@ -586,29 +791,28 @@ msgstr "Feuille de style non valide. Le format accepté est .css." msgid "manager.setup.pressTheme" msgstr "Thème de la presse" -msgid "manager.setup.principalContact" -msgstr "Principale personne-ressource" +msgid "manager.setup.pressThumbnail" +msgstr "" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" -msgid "manager.setup.principalContactDescription" -msgstr "Cet individu peut être rédacteur principal, rédacteur en chef, directeur de la publication ou employé administratif, et son nom apparaitra sur la page d'accueil de la presse dans la section Pour nous contacter, avec le nom du responsable du soutien technique." +msgid "manager.setup.contextTitle" +msgstr "Nom de la presse" msgid "manager.setup.printIssn" msgstr "ISSN version imprimée" -msgid "manager.setup.privacyStatement" -msgstr "Énoncé de confidentialité" - -msgid "manager.setup.privacyStatement2" -msgstr "Énoncé de confidentialité" - -msgid "manager.setup.privacyStatement.description" -msgstr "Cet énoncé s'affichera sur la page À propos de cette presse, ainsi que sur les pages d'inscription pour soumettre un article ou recevoir des notifications. Voici un énoncé de confidentialité proposé, qui peut être modifié en tout temps." - msgid "manager.setup.proofingInstructions" msgstr "Instructions pour le tirage d'épreuves" msgid "manager.setup.proofingInstructionsDescription" -msgstr "Les lecteurs d'épreuves, les auteurs, les rédacteurs metteurs en page et les rédacteurs de section pourront consulter les instructions pour le tirage d'épreuves lors de l'étape de révision des soumissions. Voici des instructions par défaut en HTML, qui peuvent être modifiées ou remplacées par le directeur de la presse en tout temps (HTML ou texte clair)." +msgstr "" +"Les lecteurs d'épreuves, les auteurs, les rédacteurs metteurs en page et les " +"rédacteurs de section pourront consulter les instructions pour le tirage " +"d'épreuves lors de l'étape de révision des soumissions. Voici des " +"instructions par défaut en HTML, qui peuvent être modifiées ou remplacées " +"par le directeur de la presse en tout temps (HTML ou texte clair)." msgid "manager.setup.proofreading" msgstr "Lecteurs d'épreuves" @@ -617,13 +821,21 @@ msgid "manager.setup.provideRefLinkInstructions" msgstr "Fournir les instructions aux rédacteurs metteurs en page." msgid "manager.setup.publicationScheduleDescription" -msgstr "Les articles peuvent être publiés collectivement, en tant qu'élément d'une monographie avec sa propre table des matières, ou bien les articles peuvent être publiés dès qu'ils sont prêts en les ajoutant à la table des matières du volume \"actuel\". Dans la section À propos de cette presse, veuillez indiquer aux lecteurs quelle méthode de publication a été choisie et la fréquence de publication prévue." +msgstr "" +"Les articles peuvent être publiés collectivement, en tant qu'élément d'une " +"monographie avec sa propre table des matières, ou bien les articles peuvent " +"être publiés dès qu'ils sont prêts en les ajoutant à la table des matières " +"du volume \"actuel\". Dans la section À propos de cette presse, veuillez " +"indiquer aux lecteurs quelle méthode de publication a été choisie et la " +"fréquence de publication prévue." msgid "manager.setup.publisher" msgstr "Éditeur" msgid "manager.setup.publisherDescription" -msgstr "Le nom de l'organisation qui publie la presse apparaitra dans la page À propos de cette presse." +msgstr "" +"Le nom de l'organisation qui publie la presse apparaitra dans la page À " +"propos de cette presse." msgid "manager.setup.referenceLinking" msgstr "Liens de référence" @@ -632,100 +844,152 @@ msgid "manager.setup.refLinkInstructions.description" msgstr "Instructions de mise en page pour les liens de référence" msgid "manager.setup.restrictMonographAccess" -msgstr "Les utilisateurs doivent s'inscrire et ouvrir une session pour visionner le contenu à libre accès." +msgstr "" +"Les utilisateurs doivent s'inscrire et ouvrir une session pour visionner le " +"contenu à libre accès." msgid "manager.setup.restrictSiteAccess" -msgstr "Les utilisateurs doivent être inscrits et ouvrir une session pour visionner le site de la presse." +msgstr "" +"Les utilisateurs doivent être inscrits et ouvrir une session pour visionner " +"le site de la presse." msgid "manager.setup.reviewGuidelines" msgstr "Lignes directrices pour l'évaluation" msgid "manager.setup.reviewGuidelinesDescription" -msgstr "Les lignes directrices pour l'évaluation fourniront aux évaluateurs les critères nécessaires pour déterminer si une soumission peut être publiée par la presse. Elles peuvent aussi contenir des instructions spéciales qui aideront l'évaluateur à rédiger une évaluation efficace et utile. Lors de l'évaluation, les évaluateurs auront accès à deux zones d'entrée de texte, la première \"pour l'auteur et le rédacteur en chef\" et la seconde \"pour le rédacteur en chef\". Ou bien, le directeur de la presse peut créer un formulaire d'évaluation dans la section Formulaires d'évaluation. Dans tous les cas, les rédacteurs pourront, s'ils le désirent, joindre les évaluations à leur correspondance avec l'auteur." +msgstr "" +"Les lignes directrices pour l'évaluation fourniront aux évaluateurs les " +"critères nécessaires pour déterminer si une soumission peut être publiée par " +"la presse. Elles peuvent aussi contenir des instructions spéciales qui " +"aideront l'évaluateur à rédiger une évaluation efficace et utile. Lors de " +"l'évaluation, les évaluateurs auront accès à deux zones d'entrée de texte, " +"la première \"pour l'auteur et le rédacteur en chef\" et la seconde \"pour " +"le rédacteur en chef\". Ou bien, le directeur de la presse peut créer un " +"formulaire d'évaluation dans la section Formulaires d'évaluation. Dans tous " +"les cas, les rédacteurs pourront, s'ils le désirent, joindre les évaluations " +"à leur correspondance avec l'auteur." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Lignes directrices concernant l'examen interne" + +msgid "manager.setup.reviewOptions" +msgstr "Options d'examen" msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Des rappels peuvent être envoyés automatiquement par courriel aux évaluateurs (disponible dans les courriels par défaut d'OMP) à deux moments, mais le rédacteur en chef peut envoyer un courriel directement à l'évaluateur en tout temps." +msgstr "" +"Des rappels peuvent être envoyés automatiquement par courriel aux " +"évaluateurs (disponible dans les courriels par défaut d'OMP) à deux moments, " +"mais le rédacteur en chef peut envoyer un courriel directement à " +"l'évaluateur en tout temps." msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "Note: Pour activer ces options, l'administrateur du site doit activer l'option scheduled_tasks dans le fichier de configuration OMP. Il pourrait s'avérer nécessaire d'intégrer d'autres configurations au serveur pour supporter cette fonctionnalité (qui n'est peut-être pas possible sur tous les serveurs), tel qu'indiqué dans les documents d'OMP." - -msgid "manager.setup.reviewOptions.noteOnModification" -msgstr "Ces valeurs par défaut peuvent être modifiées pour toute les soumissions tout au long du processus éditorial." +msgstr "" +"Note: Pour activer ces options, l'administrateur du site " +"doit activer l'option scheduled_tasks dans le fichier de " +"configuration OMP. Il pourrait s'avérer nécessaire d'intégrer d'autres " +"configurations au serveur pour supporter cette fonctionnalité (qui n'est " +"peut-être pas possible sur tous les serveurs), tel qu'indiqué dans les " +"documents d'OMP." msgid "manager.setup.reviewOptions.onQuality" -msgstr "Les rédacteurs en chef accorderont une note à l'aide d'une échelle de qualité de 1 à 5 pour chaque évaluation." +msgstr "" +"Les rédacteurs en chef accorderont une note à l'aide d'une échelle de " +"qualité de 1 à 5 pour chaque évaluation." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "" msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "Les évaluateurs auront accès au fichier de soumission uniquement s'ils acceptent de l'évaluer." +msgstr "" +"Les évaluateurs auront accès au fichier de soumission uniquement s'ils " +"acceptent de l'évaluer." msgid "manager.setup.reviewOptions.reviewerAccess" msgstr "Accès des évaluateurs" +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" + msgid "manager.setup.reviewOptions.reviewerRatings" msgstr "Cotes des évaluateurs" msgid "manager.setup.reviewOptions.reviewerReminders" msgstr "Rappels aux évaluateurs" -msgid "manager.setup.reviewOptions.reviewTime" -msgstr "Délai d'évaluation" - msgid "manager.setup.reviewPolicy" msgstr "Politique concernant l'évaluation" -msgid "manager.setup.reviewProcess" -msgstr "Processus d'évaluation" - -msgid "manager.setup.reviewProcessDescription" -msgstr "OMP offre un support pour deux modèles de gestion du processus d'évaluation. Le processus standard d'évaluation est recommandé parce qu'il permet aux évaluateurs de suivre un processus par étapes, ce qui permet de créer un historique d'évaluation complet pour chaque soumission. Il permet aussi de profiter des rappels envoyés automatiquement et des recommandations standards pour les soumissions (accepter; accepter avec révisions; soumettre pour évaluation; soumettre ailleurs; refuser; voir commentaires).

      Choisir l'une des options suivantes:" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Processus pour l'envoi de pièces jointes par courriel aux évaluateurs" - -msgid "manager.setup.reviewProcessStandard" -msgstr "Processus d'évaluation standard" - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "Les rédacteurs en chef enverront le titre et le résumé de la soumission par courriel aux évaluateurs choisis, ainsi qu'une invitation à ouvrir une session sur le site web pour évaluer la soumission. Les évaluateurs se rendent sur le site Web pour accepter l'invitation, télécharger les soumissions, envoyer leur commentaires et sélectionner une recommandation." +msgid "manager.setup.searchDescription.description" +msgstr "" msgid "manager.setup.searchEngineIndexing" msgstr "Indexage du moteur de recherche" msgid "manager.setup.searchEngineIndexing.description" -msgstr "Pour aider les utilisateurs de moteur de recherche à trouver cette presse, veuillez rédiger une brève description de la presse avec des mots-clés (séparés par un point-virgule)." +msgstr "" +"Pour aider les utilisateurs de moteur de recherche à trouver cette presse, " +"veuillez rédiger une brève description de la presse avec des mots-clés " +"(séparés par un point-virgule)." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "" msgid "manager.setup.sectionsAndSectionEditors" msgstr "Sections et rédacteurs de sections" msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "(Si aucune section n'est ajoutée, les articles seront ajoutés à la section Monographies par défaut.)" +msgstr "" +"(Si aucune section n'est ajoutée, les articles seront ajoutés à la section " +"Monographies par défaut.)" msgid "manager.setup.sectionsDescription" -msgstr "Pour créer ou modifier les sections de la presse (ex.: monographies, critiques de livre, etc.), choisissez Gestion de section.

      Les auteurs des articles soumis à la presse désigneront..." +msgstr "" +"Pour créer ou modifier les sections de la presse (ex.: monographies, " +"critiques de livre, etc.), choisissez Gestion de section.

      Les " +"auteurs des articles soumis à la presse désigneront..." msgid "manager.setup.securitySettings" msgstr "Paramètres d'accès et de sécurité" msgid "manager.setup.securitySettings.note" -msgstr "D'autres options liées à l'accès et à la sécurité peuvent être configurées à partir de la page Accès et sécurité" +msgstr "" +"D'autres options liées à l'accès et à la sécurité peuvent être configurées à " +"partir de la page Accès et sécurité" msgid "manager.setup.selectEditorDescription" -msgstr "Le rédacteur en chef de la presse qui suivra l'article tout au long du processus éditorial." +msgstr "" +"Le rédacteur en chef de la presse qui suivra l'article tout au long du " +"processus éditorial." msgid "manager.setup.selectSectionDescription" -msgstr "La section de la presse à laquelle on pourrait ajouter l'article en question." +msgstr "" +"La section de la presse à laquelle on pourrait ajouter l'article en question." msgid "manager.setup.showGalleyLinksDescription" -msgstr "Toujours afficher les liens des épreuves en placard et indiquer les réserves de consultation." +msgstr "" +"Toujours afficher les liens des épreuves en placard et indiquer les réserves " +"de consultation." -msgid "manager.setup.sponsors.description" -msgstr "Les noms des organismes (ex.: associations universitaires, départements universitaires, coopératives, etc.) qui parrainent la presse apparaitront dans la section À propos de cette presse et peuvent être accompagnés d'une note de remerciement." +msgid "manager.setup.siteAccess.view" +msgstr "" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "" msgid "manager.setup.stepsToPressSite" msgstr "Cinq étapes pour établir le site Web d'une presse" msgid "manager.setup.subjectExamples" -msgstr "(ex.: la photosynthèse; les trous noirs; le théorème des quatre couleurs; le théorème de Bayes)" +msgstr "" +"(ex.: la photosynthèse; les trous noirs; le théorème des quatre couleurs; le " +"théorème de Bayes)" msgid "manager.setup.subjectKeywordTopic" msgstr "Mots clés" @@ -736,12 +1000,6 @@ msgstr "Fournir des exemples de mots clés ou sujets pour guider les auteurs." msgid "manager.setup.submissionGuidelines" msgstr "Lignes directrices concernant les soumissions" -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Liste de vérification pour la préparation de la soumission" - -msgid "manager.setup.submissionPreparationChecklistDescription" -msgstr "Après avoir envoyé leur soumission à la presse, on demande aux auteurs de cocher tous les éléments de la liste de vérification avant d'envoyer leur soumission. La liste de vérification est aussi disponible dans la section Lignes directrices à l'intention des auteurs, dans la rubrique À propos de cette presse. La liste peut être modifiée ci-dessous, mais tous les éléments apparaissant sur la liste doivent être cochés avant que les auteurs puissent envoyer leur soumission." - msgid "maganer.setup.submissionChecklistItemRequired" msgstr "Vous devez cocher cet élément sur la liste." @@ -749,22 +1007,22 @@ msgid "manager.setup.workflow" msgstr "Flux des travaux" msgid "manager.setup.submissions.description" -msgstr "Lignes directrices à l'intention des auteurs, droit d'auteur et indexage (y compris l'inscription)." - -msgid "manager.setup.technicalSupportContact" -msgstr "Support technique" - -msgid "manager.setup.technicalSupportContactDescription" -msgstr "Le nom de cette personne sera ajouté à la page Contactez-nous pour les rédacteurs, auteurs et évaluateurs. Cette personne devrait bien connaitre le système et être en mesure de travailler sous les angles respectifs de tous les utilisateurs. Ce système exige peu de soutien technique, alors il s'agit d'un poste à temps partiel. Par exemple, il est possible qu'à l'occasion, les auteurs et les évaluateurs éprouvent des difficultés avec les instructions ou les formats de fichiers, ou qu'il soit nécessaire de s'assurer que la presse est sauvegardée régulièrement sur le serveur." +msgstr "" +"Lignes directrices à l'intention des auteurs, droit d'auteur et indexage (y " +"compris l'inscription)." msgid "manager.setup.typeExamples" -msgstr "(ex.: recherche historique; quasi-expérimental; analyse littéraire; sondage/entrevue)" +msgstr "" +"(ex.: recherche historique; quasi-expérimental; analyse littéraire; sondage/" +"entrevue)" msgid "manager.setup.typeMethodApproach" msgstr "Type (Méthode/Approche)" msgid "manager.setup.typeProvideExamples" -msgstr "Fournir des exemples qui représentent bien les différents types, méthodes et approches de recherche dans ce domaine" +msgstr "" +"Fournir des exemples qui représentent bien les différents types, méthodes et " +"approches de recherche dans ce domaine" msgid "manager.setup.useCopyeditors" msgstr "Un réviseur de texte sera assigné à chaque soumission." @@ -772,20 +1030,21 @@ msgstr "Un réviseur de texte sera assigné à chaque soumission." msgid "manager.setup.useEditorialReviewBoard" msgstr "La presse fera appel à un comité de rédaction/d'évaluation." -msgid "manager.setup.useImageLogo" -msgstr "Logo de la presse" - -msgid "manager.setup.useImageLogoDescription" -msgstr "Il est possible de télécharger le logo de la presse et de l'utiliser avec la version graphique ou textuelle du titre configuré ci-dessus." - msgid "manager.setup.useImageTitle" msgstr "Image de titre" +msgid "manager.setup.useStyleSheet" +msgstr "Feuille de style de la presse" + msgid "manager.setup.useLayoutEditors" -msgstr "Un rédacteur metteur en page sera nommé pour préparer les fichiers HTML, PDF, etc. pour la publication électronique." +msgstr "" +"Un rédacteur metteur en page sera nommé pour préparer les fichiers HTML, " +"PDF, etc. pour la publication électronique." msgid "manager.setup.useProofreaders" -msgstr "Un lecteur d'épreuves sera nommé pour vérifier (avec les auteurs) les épreuves en placard avant la publication." +msgstr "" +"Un lecteur d'épreuves sera nommé pour vérifier (avec les auteurs) les " +"épreuves en placard avant la publication." msgid "manager.setup.userRegistration" msgstr "Inscription des utilisateurs" @@ -796,9 +1055,6 @@ msgstr "Texte du titre" msgid "manager.setup.volumePerYear" msgstr "Volumes par année" -msgid "manager.setup.registerPressForIndexing" -msgstr "Enregistrer une presse pour l'indexage (collecte de métadonnées)" - msgid "manager.setup.publicationFormat.code" msgstr "Format" @@ -812,19 +1068,30 @@ msgid "manager.setup.publicationFormat.physicalFormat" msgstr "S'agit-il d'un format physique (non numérique)?" msgid "manager.setup.publicationFormat.inUse" -msgstr "Le format de cette publication est actuellement utilisé par une monographie de votre presse et ne peut donc pas être supprimé." +msgstr "" +"Le format de cette publication est actuellement utilisé par une monographie " +"de votre presse et ne peut donc pas être supprimé." msgid "manager.setup.newPublicationFormat" msgstr "Nouveau format de publication" msgid "manager.setup.newPublicationFormatDescription" -msgstr "Pour créer un nouveau format de publication, veuillez remplir le formulaire ci-dessous et cliquer sur le bouton \"Créer\"." +msgstr "" +"Pour créer un nouveau format de publication, veuillez remplir le formulaire " +"ci-dessous et cliquer sur le bouton \"Créer\"." msgid "manager.setup.genresDescription" -msgstr "Ces genres sont utilisés pour nommer les fichiers et présentés dans un menu déroulant lorsque les fichiers sont téléchargés. Les genres ## permettent à l'utilisateur d'associer le fichier au livre entier 99Z ou à un chapitre particulier par un chiffre (ex.: 02)." +msgstr "" +"Ces genres sont utilisés pour nommer les fichiers et présentés dans un menu " +"déroulant lorsque les fichiers sont téléchargés. Les genres ## permettent à " +"l'utilisateur d'associer le fichier au livre entier 99Z ou à un chapitre " +"particulier par un chiffre (ex.: 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "Les rédacteurs en chef envoient les demandes d'évaluation aux évaluateurs par courriel ainsi que la soumission en pièce jointe. Les évaluateurs répondent aux rédacteurs en chef par courriel pour indiquer s'ils acceptent ou s'ils refusent l'invitation. Ils envoient également leur évaluation et leur recommandation par courriel. Les rédacteurs en chef saisiront les réponses des évaluateurs ainsi que l'évaluation et la recommandation sur la page d'évaluation de la soumission pour conserver un registre du processus d'évaluation." +msgid "manager.setup.disableSubmissions.description" +msgstr "" msgid "manager.setup.genres" msgstr "Genres" @@ -833,7 +1100,9 @@ msgid "manager.setup.newGenre" msgstr "Nouveau genre de monographie" msgid "manager.setup.newGenreDescription" -msgstr "Pour créer un nouveau genre, veuillez remplir le formulaire ci-dessous et cliquer le bouton \"Créer\"." +msgstr "" +"Pour créer un nouveau genre, veuillez remplir le formulaire ci-dessous et " +"cliquer le bouton \"Créer\"." msgid "manager.setup.deleteSelected" msgstr "Supprimer la sélection" @@ -845,7 +1114,13 @@ msgid "manager.setup.prospectus" msgstr "Prospectus" msgid "manager.setup.prospectusDescription" -msgstr "Le prospectus est un document rédigé par la presse qui aide les auteurs à décrire les documents soumis de façon à ce que la presse puisse déterminer la valeur de la soumission. Un prospectus peut contenir plusieurs éléments, comme les débouchés commerciaux ou la valeur théorique. Dans tous les cas, la presse devrait rédiger un prospectus qui s'ajoutera à son agenda de publication." +msgstr "" +"Le prospectus est un document rédigé par la presse qui aide les auteurs à " +"décrire les documents soumis de façon à ce que la presse puisse déterminer " +"la valeur de la soumission. Un prospectus peut contenir plusieurs éléments, " +"comme les débouchés commerciaux ou la valeur théorique. Dans tous les cas, " +"la presse devrait rédiger un prospectus qui s'ajoutera à son agenda de " +"publication." msgid "manager.setup.submitToCategories" msgstr "Accepter les soumissions par catégorie" @@ -854,7 +1129,14 @@ msgid "manager.setup.submitToSeries" msgstr "Accepter les soumissions de série" msgid "manager.setup.issnDescription" -msgstr "L'indice ISSN (International Standard Serial Number) est un nombre de huit chiffres qui identifie les publications périodiques en tant que telles, y compris les journaux électroniques. Il est géré par un réseau international de centres nationaux coordonnés par un centre international basé à Paris, et appuyé par l'Unesco et le gouvernement de la France. Pour obtenir un indice ISSN, vous devez consulter ce site Web. Ceci peut être fait à tout moment." +msgstr "" +"L'indice ISSN (International Standard Serial Number) est un nombre de huit " +"chiffres qui identifie les publications périodiques en tant que telles, y " +"compris les journaux électroniques. Il est géré par un réseau international " +"de centres nationaux coordonnés par un centre international basé à Paris, et " +"appuyé par l'Unesco et le gouvernement de la France. Pour obtenir un indice " +"ISSN, vous devez consulter ce site Web. Ceci peut être fait à tout moment." msgid "manager.setup.currentFormats" msgstr "Formats actuels" @@ -863,10 +1145,22 @@ msgid "manager.setup.categoriesAndSeries" msgstr "Catégories et séries" msgid "manager.setup.categories.description" -msgstr "Vous pouvez créer une liste de catégories pour vous aider à organiser vos publications. Les catégories sont des groupements de livres par sujet, comme l'économie, la littérature, la poésie, etc. Les catégories peuvent être encastrées dans des \"catégories mères\". Par exemple, une catégorie mère Économie peut contenir les catégories microéconomie et macroéconomie. Les visiteurs pourront effectuer une recherche et naviguer le site de la presse par catégorie." +msgstr "" +"Vous pouvez créer une liste de catégories pour vous aider à organiser vos " +"publications. Les catégories sont des groupements de livres par sujet, comme " +"l'économie, la littérature, la poésie, etc. Les catégories peuvent être " +"encastrées dans des \"catégories mères\". Par exemple, une catégorie mère " +"Économie peut contenir les catégories microéconomie et macroéconomie. Les " +"visiteurs pourront effectuer une recherche et naviguer le site de la presse " +"par catégorie." msgid "manager.setup.series.description" -msgstr "Vous pouvez créer différentes séries pour vous aider à organiser vos publications. Une série est un ensemble de livres traitant du même thème ou sujet proposé par des individus, habituellement un ou deux membres du corps enseignant, qui superviseront la série. Les visiteurs peuvent effectuer une recherche ou naviguer le site par série." +msgstr "" +"Vous pouvez créer différentes séries pour vous aider à organiser vos " +"publications. Une série est un ensemble de livres traitant du même thème ou " +"sujet proposé par des individus, habituellement un ou deux membres du corps " +"enseignant, qui superviseront la série. Les visiteurs peuvent effectuer une " +"recherche ou naviguer le site par série." msgid "manager.setup.reviewForms" msgstr "Formulaires d'évaluation" @@ -896,7 +1190,11 @@ msgid "manager.setup.editorialTeam" msgstr "Équipe de rédaction" msgid "manager.setup.editorialTeam.description" -msgstr "Le bloc générique devrait contenir la liste des rédacteurs en chef, directeurs généraux et autres individus associés à la presse. Les renseignements saisis ici s'afficheront dans la section À propos de cette presse." +msgstr "" +"Le bloc générique devrait contenir la liste des rédacteurs en chef, " +"directeurs généraux et autres individus associés à la presse. Les " +"renseignements saisis ici s'afficheront dans la section À propos de cette " +"presse." msgid "manager.setup.files" msgstr "Fichier" @@ -905,112 +1203,724 @@ msgid "manager.setup.productionTemplates" msgstr "Modèles de production" msgid "manager.files.note" -msgstr "Note: Le navigateur Fichiers est une fonctionnalité avancée qui permet de visionner et de manipuler directement les fichiers et les répertoires associés à la presse." +msgstr "" +"Note: Le navigateur Fichiers est une fonctionnalité avancée qui permet de " +"visionner et de manipuler directement les fichiers et les répertoires " +"associés à la presse." msgid "manager.setup.copyrightNotice.sample" msgstr "" "

      Avis de droit d'auteur proposés par Creative Commons

      \n" "

      Politique proposée pour les presses offrant l'accès libre

      \n" -"Les auteurs dont les articles seront publiés par cette presse acceptent les conditions suivantes:\n" +"Les auteurs dont les articles seront publiés par cette presse acceptent les " +"conditions suivantes:\n" "
        \n" -"\t
      1. Les auteurs conservent leur droit d'auteur et accordent le droit de première impression à la presse. Les articles seront simultanément sous une licence Creative Commons Attribution qui permet à des tierces parties de partager l'oeuvre d'un auteur en autant qu'elles mentionnent son nom, et sous une licence pour la première impression dans la presse en question.
      2. \n" -"\t
      3. Les auteurs peuvent signer une entente contractuelle complémentaire distincte pour la distribution non exclusive de la version de leur oeuvre publiée par la presse (ex.: déposer l'oeuvre auprès d'un service d'archivage d'établissement ou la publier dans un livre), avec une attestation de sa première impression dans cette presse.
      4. \n" -"\t
      5. On permet et on encourage les auteurs à publier leur article en ligne (ex.: dans un service d'archivage d'établissement ou sur leur site Web) avant et pendant le processus de soumission, car il pourrait en résulter des échanges productifs avec leurs pairs, et l'article pourrait être cité plus tôt et plus fréquemment lorsqu'il sera publié (voir Les effets positifs d'un libre accès).
      6. \n" +"\t
      7. Les auteurs conservent leur droit d'auteur et accordent le droit de " +"première impression à la presse. Les articles seront simultanément sous une " +"licence Creative Commons Attribution qui permet à des tierces parties " +"de partager l'oeuvre d'un auteur en autant qu'elles mentionnent son nom, et " +"sous une licence pour la première impression dans la presse en question.\n" +"\t
      8. Les auteurs peuvent signer une entente contractuelle complémentaire " +"distincte pour la distribution non exclusive de la version de leur oeuvre " +"publiée par la presse (ex.: déposer l'oeuvre auprès d'un service d'archivage " +"d'établissement ou la publier dans un livre), avec une attestation de sa " +"première impression dans cette presse.
      9. \n" +"\t
      10. On permet et on encourage les auteurs à publier leur article en ligne " +"(ex.: dans un service d'archivage d'établissement ou sur leur site Web) " +"avant et pendant le processus de soumission, car il pourrait en résulter des " +"échanges productifs avec leurs pairs, et l'article pourrait être cité plus " +"tôt et plus fréquemment lorsqu'il sera publié (voir Les effets positifs " +"d'un libre accès).
      11. \n" "
      \n" "\n" -"

      Politique proposée pour les presses dont le libre accès est différé

      \n" -"Les auteurs dont les articles seront publiés par cette presse acceptent les conditions suivantes:\n" +"

      Politique proposée pour les presses dont le libre accès est différé\n" +"Les auteurs dont les articles seront publiés par cette presse acceptent les " +"conditions suivantes:\n" "
        \n" -"\t
      1. Les auteurs conservent leur droit d'auteur et accordent le droit de première impression à la presse. [SPÉCIFIER LA DURÉE] après la publication, les articles seront simultanément sous une licence Creative Commons Attribution qui permet à des tierces parties de partager l'oeuvre d'un auteur en autant qu'elles mentionnent son nom, et sous une licence pour la première impression dans la presse en question.
      2. \n" -"\t
      3. Les auteurs peuvent signer une entente contractuelle complémentaire distincte pour la distribution non exclusive de la version de leur oeuvre publiée par la presse (ex.: déposer l'oeuvre auprès d'un service d'archivage d'établissement ou la publier dans un livre), avec une attestation de sa première impression dans cette presse.\n" -"\t
      4. On permet et on encourage les auteurs à publier leur article en ligne (ex.: dans un service d'archivage d'établissement ou sur leur site Web) avant et pendant le processus de soumission, car il pourrait en résulter des échanges productifs avec leurs pairs, et l'article pourrait être cité plus tôt et plus fréquemment lorsqu'il sera publié (voir Les effets positifs d'un libre accès).
      5. \n" +"\t
      6. Les auteurs conservent leur droit d'auteur et accordent le droit de " +"première impression à la presse. [SPÉCIFIER LA DURÉE] après la publication, " +"les articles seront simultanément sous une licence Creative Commons Attribution " +" qui permet à des tierces parties de partager l'oeuvre d'un auteur en " +"autant qu'elles mentionnent son nom, et sous une licence pour la première " +"impression dans la presse en question.
      7. \n" +"\t
      8. Les auteurs peuvent signer une entente contractuelle complémentaire " +"distincte pour la distribution non exclusive de la version de leur oeuvre " +"publiée par la presse (ex.: déposer l'oeuvre auprès d'un service d'archivage " +"d'établissement ou la publier dans un livre), avec une attestation de sa " +"première impression dans cette presse.\n" +"\t
      9. On permet et on encourage les auteurs à publier leur article en ligne " +"(ex.: dans un service d'archivage d'établissement ou sur leur site Web) " +"avant et pendant le processus de soumission, car il pourrait en résulter des " +"échanges productifs avec leurs pairs, et l'article pourrait être cité plus " +"tôt et plus fréquemment lorsqu'il sera publié (voir Les effets " +"positifs d'un libre accès).
      10. \n" "
      " msgid "manager.setup.basicEditorialStepsDescription" msgstr "" -"Étapes: Soumission en attente > évaluation de la soumission > révision de la soumission > table des matières.

      \n" -"Choisissez un modèle pour gérer ces aspects du processus éditorial. (Pour nommer un éditeur en chef et les rédacteurs de série, allez dans la rubrique Rédacteurs de Gestion de la presse.)" +"Étapes: Soumission en attente > évaluation de la soumission > révision " +"de la soumission > table des matières.

      \n" +"Choisissez un modèle pour gérer ces aspects du processus éditorial. (Pour " +"nommer un éditeur en chef et les rédacteurs de série, allez dans la rubrique " +"Rédacteurs de Gestion de la presse.)" msgid "manager.setup.referenceLinkingDescription" msgstr "" -"

      Pour permettre aux lecteurs de trouver les articles cités par l'auteur sur Internet, vous pouvez utiliser les options suivantes.

      \n" +"

      Pour permettre aux lecteurs de trouver les articles cités par l'auteur " +"sur Internet, vous pouvez utiliser les options suivantes.

      \n" "\n" "
        \n" -"\t
      1. Ajouter un outil de lecture

        Le directeur de la presse peut ajouter \"Trouver les références\" aux outils de lecture qui accompagnent les articles publiés, ce qui permet aux lecteurs de faire un copier-coller du titre d'un article cité par l'auteur et d'effectuer une recherche dans les bases de données de recherche présélectionnées.

      2. \n" -"\t
      3. Intégrer des liens dans les références

        Le rédacteur metteur en page peut ajouter un lien vers les références disponibles en ligne à l'aide des instructions suivantes (qui peuvent être modifiées).

      4. \n" +"\t
      5. Ajouter un outil de lecture

        Le directeur de la " +"presse peut ajouter \"Trouver les références\" aux outils de lecture qui " +"accompagnent les articles publiés, ce qui permet aux lecteurs de faire un " +"copier-coller du titre d'un article cité par l'auteur et d'effectuer une " +"recherche dans les bases de données de recherche présélectionnées.

      6. \n" +"\t
      7. Intégrer des liens dans les références

        Le rédacteur " +"metteur en page peut ajouter un lien vers les références disponibles en " +"ligne à l'aide des instructions suivantes (qui peuvent être modifiées).

        \n" "
      " -msgid "manager.setup.logo" -msgstr "Logo de la presse" +msgid "manager.publication.library" +msgstr "Bibliothèque de la presse" -msgid "manager.setup.logo.altText" -msgstr "Logo de la presse" +msgid "manager.setup.resetPermissions" +msgstr "" -msgid "manager.setup.contextTitle" -msgstr "Nom de la presse" +msgid "manager.setup.resetPermissions.confirm" +msgstr "" -msgid "manager.series.restricted" -msgstr "Restreint" +msgid "manager.setup.resetPermissions.description" +msgstr "" -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Téléchargement des fichiers des monographies" +msgid "manager.setup.resetPermissions.success" +msgstr "" -msgid "manager.setup.homepageContent" -msgstr "Contenu de la page d'accueil de la presse" +msgid "grid.genres.title.short" +msgstr "" -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Vues du résumé de la monographie" +msgid "grid.genres.title" +msgstr "" -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Résumé et téléchargements de la monographie" +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Envoyer une copie à la principale personne-ressource telle qu'identifiée à " +"l'étape 1, lors de la configuration." -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Vues de la page d'accueil de la série" +msgid "grid.series.pathAlphaNumeric" +msgstr "" -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Vues de la page d'accueil de la presse" +msgid "grid.series.pathExists" +msgstr "" -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Limiter les résultats par contexte (série et/ou monographie)." +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "" -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "Limiter les résultats selon le type d'objet (presse, série, monographie, type de fichier) et/ou selon une ou plusieurs identification d'objet." +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" -msgid "manager.setup.editorialProcess3" -msgstr "L'éditeur en chef est en charge des soumissions en attente, de la révision des soumissions et de la table des matières, tandis que les éditeurs de section sont en charge de l'examen des soumissions." +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "" -msgid "manager.setup.appearanceDescription" -msgstr "Différentes composantes de l'apparence de la presse peuvent être configurées à partir de cette page, y compris des éléments de l'en-tête et du pied de page, le style et le thème de la presse, et la manière dont les listes de renseignements sont présentées aux utilisateurs." +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" -msgid "manager.setup.homepageContentDescription" -msgstr "La page d'accueil de la presse est constituée de liens de navigation par défaut. Vous pouvez ajouter du contenu à la page d'accueil à l'aide d'une ou plusieurs des options suivantes, qui apparaitront dans l'ordre montré à l'écran." +msgid "grid.series.urlWillBe" +msgstr "" -msgid "manager.setup.layout" -msgstr "Mise en page de la presse" +msgid "stats.contextStats" +msgstr "" -msgid "manager.setup.internalReviewGuidelines" -msgstr "Lignes directrices concernant l'examen interne" +msgid "stats.context.tooltip.text" +msgstr "" -msgid "manager.setup.internalReviewGuidelinesDescription" -msgstr "Tout comme dans le cas des lignes directrices concernant l'examen externe, ces instructions contiennent des renseignements qui permettront aux utilisateurs d'évaluer la soumission. Ces instructions s'adressent aux examinateurs internes, qui mènent généralement un processus d'examen en faisant appel aux examinateurs internes de cette presse." +msgid "stats.context.tooltip.label" +msgstr "" -msgid "manager.setup.reviewOptions" -msgstr "Options d'examen" +msgid "stats.context.downloadReport.description" +msgstr "" -msgid "manager.setup.useStyleSheet" -msgstr "Feuille de style de la presse" +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" -msgid "manager.setup.registerForIndexing" -msgstr "Inscription de la presse pour l'indexage (collecte de métadonnées)" +msgid "stats.context.downloadReport.downloadContext" +msgstr "" -msgid "manager.publication.library" -msgstr "Bibliothèque de la presse" +msgid "stats.publications.downloadReport.description" +msgstr "" -msgid "manager.setup.registerForIndexingDescription" +msgid "stats.publications.downloadReport.downloadSubmissions" msgstr "" -"Pour que le contenu de cette presse soit indexé dans un système de base de données de recherche distribué à l'échelle mondiale, inscrivez l'adresse URL de votre presse avec les métadonnées du récolteur du Public Knowledge Project (PKP). Cet outil recueille les métadonnées de chaque item indexé dans cette presse, permettant ainsi une recherche précise et collective parmi les sites de recherche inscrits au protocole Open Archives Initiative pour la cueillette des métadonnées.\n" -"

      \n" -"\n" -"Veuillez noter que si l'administrateur de votre site a déjà inscrit ce site auprès du récolteur PKP, votre presse sera indexée automatiquement et vous n'avez pas à inscrire votre presse.\n" -"

      \n" -"Cliquez ici et entrez {$siteUrl} sous l'URL du site, et {$oaiUrl} sous la base URL pour les archives OAI ." + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "" + +msgid "stats.publications.details" +msgstr "" + +msgid "stats.publications.none" +msgstr "" + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "" + +msgid "stats.publications.countOfTotal" +msgstr "" + +msgid "stats.publications.abstracts" +msgstr "" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "" + +msgid "plugins.importexport.common.error.validation" +msgstr "" + +msgid "plugins.importexport.common.invalidXML" +msgstr "" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "" + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "" + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "" + +msgid "emailTemplate.variable.context.contextName" +msgstr "" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "" + +msgid "emailTemplate.variable.context.contactName" +msgstr "" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "" + +msgid "mailable.validateEmailContext.name" +msgstr "" + +msgid "mailable.validateEmailContext.description" +msgstr "" + +msgid "doi.displayName" +msgstr "" + +msgid "doi.manager.displayName" +msgstr "" + +msgid "doi.description" +msgstr "" + +msgid "doi.readerDisplayName" +msgstr "" + +msgid "doi.manager.settings.description" +msgstr "" + +msgid "doi.manager.settings.explainDois" +msgstr "" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "" + +msgid "doi.manager.settings.doiPrefix" +msgstr "" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiReassign" +msgstr "" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "" + +msgid "doi.editor.doi" +msgstr "" + +msgid "doi.editor.doi.description" +msgstr "" + +msgid "doi.editor.doi.assignDoi" +msgstr "" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "" + +msgid "doi.editor.customSuffixMissing" +msgstr "" + +msgid "doi.editor.missingParts" +msgstr "" + +msgid "doi.editor.patternNotResolved" +msgstr "" + +msgid "doi.editor.canBeAssigned" +msgstr "" + +msgid "doi.editor.assigned" +msgstr "" + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" + +msgid "doi.editor.clearObjectsDoi" +msgstr "" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "" + +msgid "doi.editor.assignDoi" +msgstr "" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "" + +msgid "doi.editor.assignDoi.pattern" +msgstr "" + +msgid "doi.editor.assignDoi.assigned" +msgstr "" + +msgid "doi.editor.missingPrefix" +msgstr "" + +msgid "doi.editor.preview.publication" +msgstr "" + +msgid "doi.editor.preview.publication.none" +msgstr "" + +msgid "doi.editor.preview.chapters" +msgstr "" + +msgid "doi.editor.preview.publicationFormats" +msgstr "" + +msgid "doi.editor.preview.files" +msgstr "" + +msgid "doi.editor.preview.objects" +msgstr "" + +msgid "doi.manager.submissionDois" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.languages.languageInstructions" +#~ msgstr "" +#~ "Les utilisateurs peuvent utiliser différentes langues dans OMP. De plus, " +#~ "OMP peut être multilingue: les utilisateurs peuvent basculer d'une langue " +#~ "à l'autre sur chaque page et ils peuvent saisir les données dans " +#~ "différentes langues.

      Si une langue prise en charge par OMP " +#~ "n'apparait dans la liste, demandez à l'administrateur du site d'installer " +#~ "la langue à partir de l'interface d'administration du site. La " +#~ "documentation d'OMP contient des instructions sur la prise en charge de " +#~ "nouvelles langues." + +#~ msgid "manager.series.noSeriesEditors" +#~ msgstr "" +#~ "Aucun rédacteur en chef n'a été choisi pour cette série. Assignez ce rôle " +#~ "à au moins un utilisateur en choisissant Gestion > Paramètres > " +#~ "Utilisateurs & Rôles." + +#~ msgid "manager.series.noCategories" +#~ msgstr "" +#~ "Il n'y a pas encore de catégories. Si vous souhaitez assigner des " +#~ "catégories à cette série, fermez ce modal et cliquez sur l'onglet " +#~ "\"Catégories\", puis créez une catégorie." + +#~ msgid "manager.people.existingUserRequired" +#~ msgstr "Vous devez choisir un utilisateur actuel." + +#~ msgid "settings.roles.gridDescription" +#~ msgstr "" +#~ "Les rôles représentent des groupes d'utilisateurs de la presse à qui l'on " +#~ "a donné accès à différents niveaux d'autorisation et de flux de travaux " +#~ "au sein de la presse. Il existe cinq niveaux d'autorisation: les " +#~ "directeurs de la presse ont accès à tout le contenu de la presse (contenu " +#~ "et paramètres); les rédacteurs en chef de la presse ont accès à tout le " +#~ "contenu de leur série; les adjoints de presse ont accès à toutes les " +#~ "monographies leur ayant été explicitement assignées par un rédacteur en " +#~ "chef; les évaluateurs peuvent visionner et effectuer les évaluations leur " +#~ "ayant été assignées; et les auteurs peuvent visionner et interagir avec " +#~ "un nombre restreint de renseignements concernant leurs soumissions. De " +#~ "plus, les tâches sont divisées en cinq étapes auxquelles les rôles " +#~ "peuvent avoir accès:\n" +#~ "Soumission, Évaluation interne, Évaluation externe, Rédaction et " +#~ "Production." + +#~ msgid "manager.setup.addContributor" +#~ msgstr "Ajouter un contributeur" + +#~ msgid "manager.setup.additionalContent" +#~ msgstr "Contenu supplémentaire" + +#~ msgid "manager.setup.additionalContentDescription" +#~ msgstr "" +#~ "Ajouter le contenu suivant en utilisant le format texte/HTML. Il " +#~ "s'affichera sous l'image de la page d'accueil, si une telle page a été " +#~ "téléchargée." + +#~ msgid "manager.setup.alternateHeader" +#~ msgstr "En-tête secondaire" + +#~ msgid "manager.setup.alternateHeaderDescription" +#~ msgstr "" +#~ "Au lieu d'un titre ou d'un logo, la version HTML de l'en-tête peut être " +#~ "insérée dans la zone de texte ci-dessous. Laissez cette zone vide si vous " +#~ "n'en avez pas besoin." + +#~ msgid "manager.setup.authorCopyrightNotice" +#~ msgstr "Avis de droit d'auteur" + +#~ msgid "manager.setup.authorCopyrightNoticeAgree" +#~ msgstr "" +#~ "Le processus de soumission exige que les auteurs souscrivent à l'avis de " +#~ "droit d'auteur." + +#~ msgid "manager.setup.authorCopyrightNotice.description" +#~ msgstr "" +#~ "L'avis de droit d'auteur saisi ci-dessous s'affichera dans À propos de " +#~ "cette presse et dans les métadonnées de chaque article publié. Bien qu'il " +#~ "en revienne à la presse d'établir la nature de son avis de droit " +#~ "d'auteur, le Public Knowledge Project recommande d'utiliser la licence Creative Commons. À cette fin, on fournit un modèle suggérant la formulation de l'avis de droit d'auteur qui " +#~ "peut être copié-collé dans l'espace ci-dessous par les presses qui (a) " +#~ "offrent l'accès libre, (b), offrent l'accès libre différé, ou (c) " +#~ "n'offrent pas l'accès libre." + +#~ msgid "manager.setup.authorGuidelines.description" +#~ msgstr "" +#~ "Énoncer les normes bibliographiques et d'édition que les auteurs doivent " +#~ "utiliser lorsqu'ils soumettent un article à la presse (ex: manuel " +#~ "d'édition de l'American Psychological Association, 5e édition, " +#~ "2001). Il est souvent utile de fournir des exemples des styles de " +#~ "citation couramment utilisés par les presses et les livres et qui doivent " +#~ "être utilisés dans les soumissions." + +#~ msgid "manager.setup.contributor" +#~ msgstr "Contributeur" + +#~ msgid "manager.setup.contributors" +#~ msgstr "Sources de financement" + +#~ msgid "manager.setup.contributors.description" +#~ msgstr "" +#~ "Les noms des agences ou organismes qui fournissent une aide financière ou " +#~ "en nature à la presse apparaitront dans la section À propos de cette " +#~ "presse et pourraient être accompagnés d'un mot de remerciement." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Préfixe DOI" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "Le préfixe DOI (Digital Object Identifier) est assigné par CrossRef sous le format " +#~ "10.xxxx (ex.: 10.1234)." + +#~ msgid "manager.setup.emailSignatureDescription" +#~ msgstr "" +#~ "Les courriels distribués par le système au nom de la presse contiendront " +#~ "le bloc-signature suivant à la fin du message. Le contenu des courriels " +#~ "peut être modifié dans la section ci-dessous." + +#~ msgid "manager.setup.homepageImage" +#~ msgstr "Image de la page d'accueil" + +#~ msgid "manager.setup.homepageImageDescription" +#~ msgstr "" +#~ "Ajouter un fichier image ou graphique au milieu de la page. Si vous " +#~ "utilisez le modèle et CSS par défaut, l'image peut être d'une largeur " +#~ "maximale de 750 px pour une configuration avec une barre des menus " +#~ "verticale, ou de 540 px pour une configuration avec deux barres des menus " +#~ "verticales. Si vous utilisez un modèle ou CSS personnalisé, ces valeurs " +#~ "pourraient varier." + +#~ msgid "manager.setup.mailingAddress.description" +#~ msgstr "L'emplacement physique et l'adresse postale de la presse." + +#~ msgid "manager.setup.notifications" +#~ msgstr "Avis de soumission d'un auteur" + +#~ msgid "manager.setup.notifications.copySpecifiedAddress" +#~ msgstr "Envoyer une copie à cette adresse courriel:" + +#~ msgid "manager.setup.notifications.description" +#~ msgstr "" +#~ "Lorsque le processus de soumission est terminé, les auteurs reçoivent " +#~ "automatiquement un accusé de réception par courriel (qui peut être " +#~ "visionné et modifié dans la section Courriels préparés). De plus, une " +#~ "copie de l'accusé de réception peut être envoyée ainsi:" + +#~ msgid "manager.setup.openAccess" +#~ msgstr "La presse fournit l'accès libre à son contenu." + +#~ msgid "manager.setup.openAccessPolicy" +#~ msgstr "Politique de libre accès" + +#~ msgid "manager.setup.openAccessPolicy.description" +#~ msgstr "" +#~ "Si la presse permet aux lecteurs d'accéder immédiatement et librement à " +#~ "tout le contenu qu'elle a publié, veuillez ajouter la Politique de libre " +#~ "accès qui s'affichera dans la section À propos de cette presse, sous la " +#~ "rubrique Politiques." + +#~ msgid "manager.setup.peerReview.description" +#~ msgstr "" +#~ "Présentez les grandes lignes de la politique et du processus d'évaluation " +#~ "par les pairs pour les lecteurs et les auteurs, y compris le nombre " +#~ "d'évaluateurs auquel on fait normalement appel pour évaluer une " +#~ "soumission, les critères utilisés par les évaluateurs pour évaluer les " +#~ "soumissions, les délais habituels pour mener les évaluations et les " +#~ "principes de recrutement des évaluateurs. Ces renseignements " +#~ "s'afficheront dans la section À propos de cette presse." + +#~ msgid "manager.setup.pageFooter" +#~ msgstr "Bas de page de la presse" + +#~ msgid "manager.setup.pageFooterDescription" +#~ msgstr "" +#~ "Voici le bas de page de votre presse. Pour modifier ou mettre à jour le " +#~ "bas de page, copiez-collez le code HTML dans la zone d'entrée de texte ci-" +#~ "dessous. Vous pourriez par exemple ajouter une autre barre de navigation " +#~ "ou un compteur. Ce bas de page apparaitra sur chaque page." + +#~ msgid "manager.setup.principalContact" +#~ msgstr "Principale personne-ressource" + +#~ msgid "manager.setup.principalContactDescription" +#~ msgstr "" +#~ "Cet individu peut être rédacteur principal, rédacteur en chef, directeur " +#~ "de la publication ou employé administratif, et son nom apparaitra sur la " +#~ "page d'accueil de la presse dans la section Pour nous contacter, avec le " +#~ "nom du responsable du soutien technique." + +#~ msgid "manager.setup.privacyStatement" +#~ msgstr "Énoncé de confidentialité" + +#~ msgid "manager.setup.privacyStatement2" +#~ msgstr "Énoncé de confidentialité" + +#~ msgid "manager.setup.privacyStatement.description" +#~ msgstr "" +#~ "Cet énoncé s'affichera sur la page À propos de cette presse, ainsi que " +#~ "sur les pages d'inscription pour soumettre un article ou recevoir des " +#~ "notifications. Voici un énoncé de confidentialité proposé, qui peut être " +#~ "modifié en tout temps." + +#~ msgid "manager.setup.reviewOptions.noteOnModification" +#~ msgstr "" +#~ "Ces valeurs par défaut peuvent être modifiées pour toute les soumissions " +#~ "tout au long du processus éditorial." + +#~ msgid "manager.setup.reviewOptions.reviewTime" +#~ msgstr "Délai d'évaluation" + +#~ msgid "manager.setup.sponsors.description" +#~ msgstr "" +#~ "Les noms des organismes (ex.: associations universitaires, départements " +#~ "universitaires, coopératives, etc.) qui parrainent la presse apparaitront " +#~ "dans la section À propos de cette presse et peuvent être accompagnés " +#~ "d'une note de remerciement." + +#~ msgid "manager.setup.technicalSupportContact" +#~ msgstr "Support technique" + +#~ msgid "manager.setup.technicalSupportContactDescription" +#~ msgstr "" +#~ "Le nom de cette personne sera ajouté à la page Contactez-nous pour les " +#~ "rédacteurs, auteurs et évaluateurs. Cette personne devrait bien connaitre " +#~ "le système et être en mesure de travailler sous les angles respectifs de " +#~ "tous les utilisateurs. Ce système exige peu de soutien technique, alors " +#~ "il s'agit d'un poste à temps partiel. Par exemple, il est possible qu'à " +#~ "l'occasion, les auteurs et les évaluateurs éprouvent des difficultés avec " +#~ "les instructions ou les formats de fichiers, ou qu'il soit nécessaire de " +#~ "s'assurer que la presse est sauvegardée régulièrement sur le serveur." + +#~ msgid "manager.setup.useImageLogo" +#~ msgstr "Logo de la presse" + +#~ msgid "manager.setup.useImageLogoDescription" +#~ msgstr "" +#~ "Il est possible de télécharger le logo de la presse et de l'utiliser avec " +#~ "la version graphique ou textuelle du titre configuré ci-dessus." + +#~ msgid "manager.setup.registerPressForIndexing" +#~ msgstr "Enregistrer une presse pour l'indexage (collecte de métadonnées)" + +#~ msgid "manager.setup.logo" +#~ msgstr "Logo de la presse" + +#~ msgid "manager.setup.logo.altText" +#~ msgstr "Logo de la presse" + +#~ msgid "manager.setup.editorialProcess3" +#~ msgstr "" +#~ "L'éditeur en chef est en charge des soumissions en attente, de la " +#~ "révision des soumissions et de la table des matières, tandis que les " +#~ "éditeurs de section sont en charge de l'examen des soumissions." + +#~ msgid "manager.setup.internalReviewGuidelinesDescription" +#~ msgstr "" +#~ "Tout comme dans le cas des lignes directrices concernant l'examen " +#~ "externe, ces instructions contiennent des renseignements qui permettront " +#~ "aux utilisateurs d'évaluer la soumission. Ces instructions s'adressent " +#~ "aux examinateurs internes, qui mènent généralement un processus d'examen " +#~ "en faisant appel aux examinateurs internes de cette presse." + +#~ msgid "manager.setup.registerForIndexing" +#~ msgstr "Inscription de la presse pour l'indexage (collecte de métadonnées)" + +#~ msgid "manager.setup.registerForIndexingDescription" +#~ msgstr "" +#~ "Pour que le contenu de cette presse soit indexé dans un système de base " +#~ "de données de recherche distribué à l'échelle mondiale, inscrivez l'adresse " +#~ "URL de votre presse avec les métadonnées du récolteur du Public Knowledge Project " +#~ "(PKP). Cet outil recueille les métadonnées de chaque item indexé dans " +#~ "cette presse, permettant ainsi une recherche précise et collective parmi " +#~ "les sites de recherche inscrits au protocole " +#~ "Open Archives Initiative pour la cueillette des métadonnées.\n" +#~ "

      \n" +#~ "\n" +#~ "Veuillez noter que si l'administrateur de votre site a déjà inscrit ce " +#~ "site auprès du récolteur PKP, votre presse sera indexée automatiquement " +#~ "et vous n'avez pas à inscrire votre presse.\n" +#~ "

      \n" +#~ "Cliquez " +#~ "ici et entrez {$siteUrl} sous " +#~ "l'URL du site, et {$oaiUrl} sous la base URL pour les archives OAI ." diff --git a/locale/fr_CA/submission.po b/locale/fr_CA/submission.po index 54ddaf5bf2c..df41b98baea 100644 --- a/locale/fr_CA/submission.po +++ b/locale/fr_CA/submission.po @@ -2,14 +2,20 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" +"PO-Revision-Date: 2019-09-30T06:23:44-07:00\n" "Last-Translator: \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T06:23:44-07:00\n" -"PO-Revision-Date: 2019-09-30T06:23:44-07:00\n" -"Language: \n" + +msgid "submission.upload.selectComponent" +msgstr "" + +msgid "submission.title" +msgstr "Titre du livre" msgid "submission.select" msgstr "Choisir une soumission" @@ -21,7 +27,13 @@ msgid "submission.workflowType" msgstr "Type de livre" msgid "submission.workflowType.description" -msgstr "Une monographie est un ouvrage écrit par un ou plusieurs auteurs. Un volume édité est un livre dont les chapitres ont été écrits par différents auteurs (les renseignements sur les chapitres sont ajoutés plus tard)." +msgstr "" +"Une monographie est un ouvrage écrit par un ou plusieurs auteurs. Un volume " +"édité est un livre dont les chapitres ont été écrits par différents auteurs " +"(les renseignements sur les chapitres sont ajoutés plus tard)." + +msgid "submission.workflowType.editedVolume.label" +msgstr "" msgid "submission.workflowType.editedVolume" msgstr "Volume édité" @@ -29,6 +41,12 @@ msgstr "Volume édité" msgid "submission.workflowType.authoredWork" msgstr "Monographie" +msgid "submission.workflowType.change" +msgstr "" + +msgid "submission.editorName" +msgstr "" + msgid "submission.monograph" msgstr "Monographie" @@ -38,6 +56,9 @@ msgstr "Prêt pour la production" msgid "submission.fairCopy" msgstr "Copie au net" +msgid "submission.authorListSeparator" +msgstr "" + msgid "submission.artwork.permissions" msgstr "Permissions" @@ -47,15 +68,15 @@ msgstr "Chapitre" msgid "submission.chapters" msgstr "Chapitres" -msgid "submission.chaptersDescription" -msgstr "Vous pouvez ajouter la liste des chapitres ici et assigner des contributeurs à la liste des contributeurs ci-dessus. Ces contributeurs auront accès au chapitre pendant différentes étapes du processus de publication." - msgid "submission.chapter.addChapter" msgstr "Ajouter un chapitre" msgid "submission.chapter.editChapter" msgstr "Modifier un chapitre" +msgid "submission.chapter.pages" +msgstr "" + msgid "submission.copyedit" msgstr "Réviser" @@ -83,9 +104,6 @@ msgstr "En cours d'évaluation" msgid "manuscript.submissions" msgstr "Manuscrits soumis" -msgid "submission.confirmSubmit" -msgstr "Vous souhaitez soumettre ce manuscrit à la presse?" - msgid "submission.metadata" msgstr "Métadonnées" @@ -113,23 +131,17 @@ msgstr "Commencer une nouvelle soumission" msgid "submission.submit.upload" msgstr "Télécharger" -msgid "submission.submit.upload.description" -msgstr "Les fichiers téléchargés associés à cette soumision, y compris le manuscrit, le prospectus, la lettre de présentation, les illustrations, etc. Pour les volumes édités, ainsi que pour les monographies, téléchargez le manuscrit en un seul fichier, si possible." - -msgid "submission.submit.cancelSubmission" -msgstr "Vous pouvez compléter cette soumission plus tard. Il suffit de sélectionner Soumissions actives à partir de la page Auteur." - -msgid "submission.submit.copyrightNoticeAgree" -msgstr "J'accepte de respecter les conditions stipulées dans l'énonce concernant le droit d'auteur." +msgid "author.volumeEditor" +msgstr "" -msgid "submission.submit.selectSeries" -msgstr "Choisir une série..." +msgid "author.isVolumeEditor" +msgstr "" msgid "submission.submit.seriesPosition" msgstr "Position dans cette série (ex: livre 2 ou Volume 2)" -msgid "submission.submit.form.localeRequired" -msgstr "Veuillez choisir une langue pour la soumission." +msgid "submission.submit.seriesPosition.description" +msgstr "" msgid "submission.submit.privacyStatement" msgstr "Énoncé de confidentialité" @@ -137,21 +149,6 @@ msgstr "Énoncé de confidentialité" msgid "submission.submit.contributorRole" msgstr "Rôle du contributeur" -msgid "submission.submit.form.authorRequired" -msgstr "Il faut ajouter au moins un auteur." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Vous devez indiquer le prénom, le nom de famille et l'adresse courriel de chaque auteur." - -msgid "submission.submit.form.titleRequired" -msgstr "Veuillez saisir le titre de votre monographie." - -msgid "submission.submit.form.abstractRequired" -msgstr "Veuillez saisir un bref résumé de votre monographie." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Veuillez sélectionner le rôle du contributeur." - msgid "submission.submit.submissionFile" msgstr "Fichier de soumission" @@ -167,6 +164,9 @@ msgstr "Métadonnées" msgid "submission.submit.finishingUp" msgstr "Terminer" +msgid "submission.submit.confirmation" +msgstr "" + msgid "submission.submit.nextSteps" msgstr "Prochaines étapes" @@ -177,31 +177,24 @@ msgid "submission.submit.generalInformation" msgstr "Renseignements généraux" msgid "submission.submit.whatNext.description" -msgstr "La presse a été informée de votre soumission et un accusé de réception vous a été envoyé par courriel. Lorsque le rédacteur en chef aura évalué votre soumission, il entrera en contact avec vous." +msgstr "" +"La presse a été informée de votre soumission et un accusé de réception vous " +"a été envoyé par courriel. Lorsque le rédacteur en chef aura évalué votre " +"soumission, il entrera en contact avec vous." msgid "submission.submit.checklistErrors" -msgstr "Veuillez lire et cocher les éléments sur votre liste de vérification. {$itemsRemaining} éléments n'ont pas été cochés." +msgstr "" +"Veuillez lire et cocher les éléments sur votre liste de vérification. " +"{$itemsRemaining} éléments n'ont pas été cochés." msgid "submission.submit.placement" msgstr "Place de la soumission" -msgid "submission.submit.placement.seriesDescription" -msgstr "Si le livre pourrait aussi faire partie d'une série..." - -msgid "submission.submit.placement.seriesPositionDescription" -msgstr "Les livres d'une série sont généralement conservés dans l'ordre inverse de celui dans lequel ils sont publiés. Ainsi, on montre que la série progresse et les articles les plus récents apparaissent au début." - msgid "submission.submit.userGroup" msgstr "Soumettre selon mon rôle à titre de..." -msgid "submission.submit.userGroupDescription" -msgstr "S'il s'agit d'un volume édité, vous devriez choisir le rôle de rédacteur en chef du volume." - -msgid "submission.submit.titleAndSummary" -msgstr "Titre et sommaire" - -msgid "submission.upload.selectBookElement" -msgstr "Choisir un élément du livre" +msgid "submission.submit.noContext" +msgstr "" msgid "grid.chapters.title" msgstr "Chapitres" @@ -209,8 +202,11 @@ msgstr "Chapitres" msgid "grid.copyediting.deleteCopyeditorResponse" msgstr "Supprimer le téléchargement du réviseur" -msgid "publication.catalogEntry" -msgstr "Catalogue" +msgid "submission.complete" +msgstr "" + +msgid "submission.incomplete" +msgstr "" msgid "submission.editCatalogEntry" msgstr "Entrée" @@ -218,15 +214,39 @@ msgstr "Entrée" msgid "submission.catalogEntry.new" msgstr "Nouvelle entrée de catalogue" +msgid "submission.catalogEntry.add" +msgstr "" + +msgid "submission.catalogEntry.select" +msgstr "" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" + msgid "submission.catalogEntry.confirm" -msgstr "Créer une entrée de catalogue pour ce livre en fonction des métadonnées ci-dessous." +msgstr "" +"Créer une entrée de catalogue pour ce livre en fonction des métadonnées ci-" +"dessous." msgid "submission.catalogEntry.confirm.required" -msgstr "Veuillez confirmer que la soumission est prête à être ajoutée au catalogue." +msgstr "" +"Veuillez confirmer que la soumission est prête à être ajoutée au catalogue." msgid "submission.catalogEntry.isAvailable" msgstr "Cette monographie est prête à être ajoutée au catalogue public." +msgid "submission.catalogEntry.viewSubmission" +msgstr "" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "" + msgid "submission.catalogEntry.monographMetadata" msgstr "Monographie" @@ -237,7 +257,8 @@ msgid "submission.catalogEntry.publicationMetadata" msgstr "Format de publication" msgid "submission.event.metadataPublished" -msgstr "Les métadonnées de la monographie ont été approuvées pour la publication." +msgstr "" +"Les métadonnées de la monographie ont été approuvées pour la publication." msgid "submission.event.metadataUnpublished" msgstr "Les métadonnées de la monographie ne sont plus publiées." @@ -246,19 +267,25 @@ msgid "submission.event.publicationFormatMadeAvailable" msgstr "Le format de publication \"{$publicationFormatName}\" est disponible." msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Le format de publication \"{$publicationFormatName}\" n'est plus disponible." +msgstr "" +"Le format de publication \"{$publicationFormatName}\" n'est plus disponible." msgid "submission.event.publicationFormatPublished" -msgstr "Le format de publication \"{$publicationFormatName}\" a été approuvé pour publication." +msgstr "" +"Le format de publication \"{$publicationFormatName}\" a été approuvé pour " +"publication." msgid "submission.event.publicationFormatUnpublished" -msgstr "Le format de publication \"{$publicationFormatName}\" n'est plus publié." +msgstr "" +"Le format de publication \"{$publicationFormatName}\" n'est plus publié." msgid "submission.event.catalogMetadataUpdated" msgstr "Les métadonnées du catalogue ont été mises à jour." msgid "submission.event.publicationMetadataUpdated" -msgstr "Les métadonnées du format de publication pour \"{$formatName}\" ont été mises à jour." +msgstr "" +"Les métadonnées du format de publication pour \"{$formatName}\" ont été " +"mises à jour." msgid "submission.event.publicationFormatCreated" msgstr "Le format de publication \"{$formatName}\" a été créé." @@ -266,14 +293,74 @@ msgstr "Le format de publication \"{$formatName}\" a été créé." msgid "submission.event.publicationFormatRemoved" msgstr "Le format de publication \"{$formatName}\" a été supprimé." -msgid "submission.submit.title" -msgstr "Soumettre une monographie" +msgid "editor.submission.decision.sendExternalReview" +msgstr "" -msgid "submission.title" -msgstr "Titre du livre" +msgid "workflow.review.externalReview" +msgstr "" + +msgid "submission.upload.fileContents" +msgstr "" + +msgid "submission.dependentFiles" +msgstr "" + +msgid "submission.metadataDescription" +msgstr "" + +msgid "section.any" +msgstr "" + +msgid "submission.list.monographs" +msgstr "" + +msgid "submission.list.countMonographs" +msgstr "" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "" + +msgid "submission.list.orderFeatures" +msgstr "" + +msgid "submission.list.orderingFeatures" +msgstr "" + +msgid "submission.list.orderingFeaturesSection" +msgstr "" + +msgid "submission.list.saveFeatureOrder" +msgstr "" + +msgid "submission.list.viewEntry" +msgstr "" + +msgid "catalog.browseTitles" +msgstr "" + +msgid "publication.catalogEntry" +msgstr "Catalogue" + +msgid "publication.catalogEntry.success" +msgstr "" + +msgid "publication.invalidSeries" +msgstr "" + +msgid "publication.inactiveSeries" +msgstr "" + +msgid "publication.required.issue" +msgstr "" + +msgid "publication.publishedIn" +msgstr "" + +msgid "publication.publish.confirmation" +msgstr "" -msgid "submission.submit.confirmExpedite" -msgstr "Confirmer les métadonnées pour une soumission accélérée" +msgid "publication.scheduledIn" +msgstr "" msgid "submission.publication" msgstr "Publication" @@ -375,5 +462,152 @@ msgstr "Renseignements de publication pour la version {$version}" msgid "submission.queries.production" msgstr "Discussions sur la production" -msgid "submission.editorName" -msgstr "{$editorName} (ed.)" +msgid "publication.chapter.landingPage" +msgstr "" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" + +#~ msgid "submission.submit.upload.description" +#~ msgstr "" +#~ "Les fichiers téléchargés associés à cette soumision, y compris le " +#~ "manuscrit, le prospectus, la lettre de présentation, les illustrations, " +#~ "etc. Pour les volumes édités, ainsi que pour les monographies, " +#~ "téléchargez le manuscrit en un seul fichier, si possible." + +#~ msgid "submission.submit.copyrightNoticeAgree" +#~ msgstr "" +#~ "J'accepte de respecter les conditions stipulées dans l'énonce concernant " +#~ "le droit d'auteur." + +#~ msgid "submission.submit.placement.seriesDescription" +#~ msgstr "Si le livre pourrait aussi faire partie d'une série..." + +#~ msgid "submission.submit.placement.seriesPositionDescription" +#~ msgstr "" +#~ "Les livres d'une série sont généralement conservés dans l'ordre inverse " +#~ "de celui dans lequel ils sont publiés. Ainsi, on montre que la série " +#~ "progresse et les articles les plus récents apparaissent au début." + +#~ msgid "submission.upload.selectBookElement" +#~ msgstr "Choisir un élément du livre" + +#~ msgid "submission.submit.confirmExpedite" +#~ msgstr "Confirmer les métadonnées pour une soumission accélérée" diff --git a/locale/fr_FR/admin.po b/locale/fr_FR/admin.po new file mode 100644 index 00000000000..10bb4b95440 --- /dev/null +++ b/locale/fr_FR/admin.po @@ -0,0 +1,211 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +# Germán Huélamo Bautista , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-24 20:28+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French " +"\n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "admin.hostedContexts" +msgstr "Maisons d’édition hébergées" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

      NOTE!\n" +"

      Le système ne peut pas écraser automatiquement le fichier de " +"configuration. Pour appliquer les modifications de configuration, vous devez " +"ouvrir config.inc.php dans un éditeur de texte approprié et " +"remplacer son contenu par le contenu de la zone de texte ci-dessous.

      " + +msgid "admin.settings.config.success" +msgstr "Les paramètres de configuration du site ont bien été mis à jour." + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Les requêtes envoyées au site principal seront redirigées vers cette maison " +"d’édition. Cela peut par exemple être utile si le site n’héberge qu’une " +"seule maison d’édition." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Sélectionnez tous les paramètres régionaux qui seront supportés sur le site. " +"Les paramètres régionaux sélectionnés seront disponibles pour toutes les " +"maisons d’édition installées sur le site et apparaîtront dans le menu de " +"sélection de langue visible sur toutes les pages du site (lesquels peuvent " +"être remplacés sur les pages d’une maison d’édition particulière). Si seul " +"un paramètre régional est sélectionné, le menu de bascule de la langue n’" +"apparaîtra pas et les maisons d’édition n’auront pas accès aux paramètres de " +"langue étendus." + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Sélectionnez les maisons d’édition hébergées qui doivent être autorisées à " +"effectuer des envois massifs de courriels. Lorsque cette fonctionnalité est " +"activée, un·e gestionnaire peut envoyer un courriel à tous·tes les " +"utilisateur·rice·s enregistrés auprès de sa maison d’édition. L’utilisation " +"abusive de cette fonctionnalité pour envoyer des courriels non sollicités " +"peut enfreindre les lois anti-spam dans certaines juridictions et entraîner " +"le blocage des courriels envoyés depuis votre serveur en tant que courriers " +"indésirables. Demandez un avis technique avant d’activer cette " +"fonctionnalité et envisagez de consulter les responsables éditoriaux pour " +"vous assurer qu’elle est utilisée de manière appropriée. D’autres " +"restrictions de cette fonctionnalité peuvent être activées pour chaque " +"maison d’édition en visitant son assistant de configuration dans la liste " +"des Maisons d’édition hébergées." + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Sélectionnez le type de statistiques géographiques d’utilisation pouvant " +"être collectées par les maisons d’édition sur ce site. Des statistiques " +"géographiques plus détaillées peuvent augmenter considérablement la taille " +"de votre base de données et, dans de rares cas, peuvent porter atteinte à l’" +"anonymat de vos visiteurs. Chaque maison d’édition peut configurer ce " +"paramètre différemment, mais une maison d’édition ne peut jamais collecter " +"des enregistrements plus détaillés que ce qui est configuré ici. Par " +"exemple, si le site ne prend en charge que le pays et la région, la maison d’" +"édition peut sélectionner le pays et la région ou uniquement le pays. La " +"maison d’édition ne pourra pas suivre le pays, la région et la ville." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Rendre ou non les points de terminaison [endpoints] de l’API SUSHI " +"accessibles publiquement pour toutes les maisons d’édition sur ce site. Si " +"vous activez l’API publique, chaque maison d’édition peut remplacer ce " +"paramètre pour rendre ses statistiques privées. Cependant, si vous " +"désactivez l’API publique, les maisons d’édition ne peuvent pas rendre leur " +"propre API publique." + +msgid "admin.settings.appearance.success" +msgstr "Les paramètres d’apparence du site ont bien été mis à jour." + +msgid "admin.settings.info.success" +msgstr "Les informations du site ont bien été mises à jour." + +msgid "admin.settings.redirect" +msgstr "Redirection de la maison d’édition" + +msgid "admin.settings.noPressRedirect" +msgstr "Ne pas rediriger" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Ceci sera la langue par défaut pour le site et les maisons d’édition " +"hébergées." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Les paramètres régionaux marqués peuvent être incomplets." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Voulez-vous vraiment désinstaller ce paramètre régional ? Cela pourrait " +"affecter toutes les maisons d’édition hébergées qui l’utiliseraient " +"actuellement." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Sélectionnez les autres paramètres régionaux que vous souhaitez installer " +"sur ce système. Les paramètres régionaux doivent être installés avant de " +"pouvoir être utilisés par les maisons d’édition hébergées. Consultez la " +"documentation OMP pour plus d’informations sur l’ajout de support pour de " +"nouvelles langues." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Voulez-vous vraiment désactiver ce paramètre régional ? Cela pourrait " +"affecter toutes les maisons d’édition hébergées qui l’utiliseraient " +"actuellement." + +msgid "admin.systemVersion" +msgstr "Version d’OMP" + +msgid "admin.systemConfiguration" +msgstr "Configuration d’OMP" + +msgid "admin.presses.pressSettings" +msgstr "Paramètres de la maison d’édition" + +msgid "admin.presses.noneCreated" +msgstr "Aucune maison d’édition n’a été créée." + +msgid "admin.contexts.create" +msgstr "Créer une maison d’édition" + +msgid "admin.contexts.form.titleRequired" +msgstr "Un titre est requis." + +msgid "admin.contexts.form.pathRequired" +msgstr "Un chemin est requis." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Le chemin ne peut contenir que des caractères alphanumériques plus _ et -. " +"Il doit commencer et se terminer par un caractère alphanumérique." + +msgid "admin.contexts.form.pathExists" +msgstr "Le chemin choisi est déjà utilisé par une autre maison d’édition." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Le paramètre régional principal doit être un de ceux pris en charge par la " +"maison d’édition." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} a bien été créé." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} a bien été modifié." + +msgid "admin.contexts.contextDescription" +msgstr "Description de la maison d’édition" + +msgid "admin.presses.addPress" +msgstr "Ajouter une maison d’édition" + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Un·e gestionnaire ne pourra pas effectuer d’envoi massif de courriels à l’un " +"des rôles sélectionnés ci-dessous. Utilisez ce paramètre pour limiter les " +"abus de la fonction de notification par courriel. Par exemple, il peut être " +"plus sûr de désactiver l’envoi massif de courriels à des groupes " +"d’utilisateur·rice·s qui n’ont pas consenti à recevoir de tels " +"messages.

      La fonction d’envoi massif de courriels peut être " +"complètement désactivée pour cette maison d’édition dans Admin > Paramètres du site." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"La fonctionnalité d’envoi massif de courriels a été désactivée pour cette " +"maison d’édition. Activez cette fonctionnalité dans Admin > Paramètres du site." + +msgid "admin.siteManagement.description" +msgstr "" +"Ajouter, modifier ou supprimer des maisons d’édition de ce site et gérer les " +"paramètres au niveau du site." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "L’ID du chapitre n’est pas un nombre entier" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "L’ID de la collection n’est pas un nombre entier" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Activez les statistiques institutionnelles si vous souhaitez que les maisons " +"d’édition de ce site puissent collecter des statistiques d’utilisation par " +"établissement. Les maisons d’édition devront ajouter l’établissement et ses " +"plages d’adresses IP afin d’utiliser cette fonctionnalité. L’activation des " +"statistiques institutionnelles peut augmenter considérablement la taille de " +"votre base de données." + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "" +"Utiliser ce site comme plateforme pour toutes les revues, tous les éditeurs." diff --git a/locale/fr_FR/api.po b/locale/fr_FR/api.po new file mode 100644 index 00000000000..642b8e830f9 --- /dev/null +++ b/locale/fr_FR/api.po @@ -0,0 +1,49 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-24 08:49+0000\n" +"Last-Translator: Rudy Hahusseau \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "" +"La publication que vous avez demandée ne fait pas partie de cette soumission." + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Vous devez fournir un ou plusieurs identifiants de soumission à ajouter au " +"catalogue." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "" +"Une ou plusieurs soumissions que vous avez spécifiées n'ont pas pu être " +"trouvées." + +msgid "api.submissions.400.wrongContext" +msgstr "La soumission que vous avez demandée n'est pas dans cette presse." + +msgid "api.emails.403.disabled" +msgstr "" +"La fonctionnalité de notification par courriel n'a pas été activée pour " +"cette presse." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"Vous n'êtes pas autorisé à déplacer ce modèle d'e-mail vers une autre presse." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "" +"La publication que vous avez demandée ne fait pas partie de cette presse." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Vous ne pouvez pas changer la presse d'une soumission." + +msgid "api.submission.400.inactiveSection" +msgstr "Cette section ne reçoit plus de soumissions." diff --git a/locale/fr_FR/author.po b/locale/fr_FR/author.po new file mode 100644 index 00000000000..55868b6ab7e --- /dev/null +++ b/locale/fr_FR/author.po @@ -0,0 +1,21 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +# Germán Huélamo Bautista , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-07-30 17:58+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "author.submit.notAccepting" +msgstr "Cette maison d’édition n’accepte pas les soumissions pour le moment." + +msgid "author.submit" +msgstr "Nouvelle soumission" diff --git a/locale/fr_FR/default.po b/locale/fr_FR/default.po new file mode 100644 index 00000000000..16709267612 --- /dev/null +++ b/locale/fr_FR/default.po @@ -0,0 +1,198 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +# Germán Huélamo Bautista , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-07-25 17:06+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

      Les auteur·e·s sont invité·e·s à effectuer une soumission à cette maison " +"d’édition. Les soumissions considérées comme adaptées seront envoyées pour " +"évaluation par les pairs avant de déterminer si elles seront acceptées ou " +"rejetées.

      Avant de déposer une soumission, les auteur·e·s sont tenus d’" +"obtenir l’autorisation de publier tout matériel inclus dans la soumission, " +"tel que des photos, des documents et des ensembles de données. L'ensemble " +"des auteur·e·s identifié·e·s dans la soumission doivent consentir à être " +"identifié·e·s en tant qu’auteur·e·s. Le cas échéant, la recherche doit être " +"approuvée par un comité d’éthique approprié conformément aux exigences " +"légales du pays de l’étude.

      Un·e éditeur·rice peut rejeter une " +"proposition si elle ne répond pas aux normes minimales de qualité. Avant de " +"soumettre une proposition, assurez-vous que le champ d’application et les " +"grandes lignes de l’ouvrage sont structurés et articulés correctement. Le " +"titre doit être concis et le résumé doit pouvoir se suffire à lui-même. Cela " +"augmentera la probabilité que les évaluateur·rice·s acceptent d’évaluer l’" +"ouvrage. Une fois que vous avez la certitude que votre soumission répond à " +"ces critères, veuillez suivre la liste de contrôle ci-dessous pour préparer " +"votre soumission.

      " + +msgid "default.contextSettings.checklist" +msgstr "" +"

      Toutes les soumissions doivent répondre aux exigences suivantes.

      • Cette soumission répond aux exigences décrites dans les Consignes aux auteur·e·s.
      • Cette " +"soumission n’a pas encore été publiée et n’est pas en cours d’examen par un " +"autre éditeur.
      • Toutes les références ont été vérifiées pour leur " +"exactitude et leur exhaustivité.
      • Tous les tableaux et figures ont " +"été numérotés et nommés.
      • Les permissions requises ont été obtenues " +"pour publier toutes les photographies, ensembles de données et autres " +"éléments fournis avec cette soumission.
      " + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Vous souhaitez soumettre une contribution à cette maison d’édition ? Nous " +"vous recommandons de lire la page À propos de cette maison d’édition pour connaitre sa politique " +"éditoriale ainsi que la page Consignes aux auteur·e·s. Les auteur·e·s " +"doivent s’inscrire " +"auprès de l’éditeur avant d’envoyer une soumission ou, s’ils sont déjà " +"inscrits, simplement se connecter et " +"débuter la procédure (en 5 étapes)." + +msgid "default.genres.bibliography" +msgstr "Bibliographie" + +msgid "default.genres.manuscript" +msgstr "Manuscrit de livre" + +msgid "default.genres.chapter" +msgstr "Manuscrit de chapitre" + +msgid "default.genres.glossary" +msgstr "Glossaire" + +msgid "default.genres.index" +msgstr "Index" + +msgid "default.genres.preface" +msgstr "Préface" + +msgid "default.genres.prospectus" +msgstr "Plan" + +msgid "default.genres.table" +msgstr "Tableau" + +msgid "default.genres.figure" +msgstr "Figure" + +msgid "default.genres.photo" +msgstr "Photographie" + +msgid "default.genres.illustration" +msgstr "Illustration" + +msgid "default.genres.other" +msgstr "Autre" + +msgid "default.groups.plural.manager" +msgstr "Gestionnaires" + +msgid "default.groups.name.manager" +msgstr "Gestionnaire" + +msgid "default.genres.appendix" +msgstr "Annexes" + +msgid "default.groups.name.chapterAuthor" +msgstr "Auteur·e du chapitre" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Auteur·e·s du chapitre" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "AC" + +msgid "default.groups.name.volumeEditor" +msgstr "Directeur·rice d’ouvrage" + +msgid "default.groups.plural.volumeEditor" +msgstr "Directeur·rice·s d’ouvrage" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "DO" + +msgid "default.groups.abbrev.manager" +msgstr "RP" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

      Les noms et adresses courriel saisis sur le site de cette maison d’" +"édition seront utilisés exclusivement pour les fins convenues de celle-ci. " +"Ils ne seront pas utilisés pour d’autres fins ou transmis à une tierce " +"partie.

      " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Cette maison d’édition fournit l’accès libre immédiat à son contenu se " +"basant sur le principe que rendre la recherche disponible au public " +"gratuitement facilite un plus grand échange du savoir, à l’échelle de la " +"planète." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Nous encourageons les lecteur·rice·s à s’abonner au service de notification " +"de cette maison d'édition. Utilisez le lien d’inscription situé en haut de la page d’accueil de " +"cette maison d'édition. Cette inscription permet de recevoir par courriel la " +"table des matières de chaque nouvelle publication de cette maison d'édition. " +"Cette liste permet également à la maison d'édition de revendiquer un certain " +"niveau de soutien ou de lectorat. Vous pouvez consulter la " +"déclaration de confidentialité de la maison d'édition qui stipule que " +"les noms et adresses courriel de ses lecteur·rice·s ne seront pas utilisés à " +"d’autres fins." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Nous encourageons les personnels des bibliothèques de recherche à ajouter " +"cet éditeur à la liste des ressources numériques de leurs bibliothèques. De " +"plus, ce système de publication open source peut répondre aux besoins des " +"bibliothèques souhaitant héberger une solution d’édition pour leurs " +"chercheurs (voir Open Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Évaluateur·rice externe" + +msgid "default.groups.plural.externalReviewer" +msgstr "Évaluateur·rice·s externes" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "ÉvEx" + +msgid "default.groups.name.editor" +msgstr "Responsable d'édition" + +msgid "default.groups.plural.editor" +msgstr "Responsables d'édition" + +msgid "default.groups.abbrev.editor" +msgstr "RE" + +msgid "default.groups.name.sectionEditor" +msgstr "Responsable de collection" + +msgid "default.groups.plural.sectionEditor" +msgstr "Responsables de collection" + +msgid "default.groups.name.subscriptionManager" +msgstr "Responsable des abonnements" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Responsables des abonnements" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "RespAB" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "EC" diff --git a/locale/fr_FR/editor.po b/locale/fr_FR/editor.po new file mode 100644 index 00000000000..62c4dce2d13 --- /dev/null +++ b/locale/fr_FR/editor.po @@ -0,0 +1,218 @@ +# Weblate Admin , 2023. +# Germán Huélamo Bautista , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-09-07 16:58+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "editor.monograph.cancelReview" +msgstr "Annuler la requête" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Actions et options globales de la soumission." + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Actions et options propres à un fichier individuel." + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Choisissez un évaluateur·rice ci-dessus et cliquez sur le bouton « Choisir " +"l’évaluateur·rice » pour continuer." + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Vous entamez le processus d’évaluation interne de cette soumission. La liste " +"des fichiers faisant partie de cette soumission est affichée ci-dessous. Ils " +"peuvent être sélectionnés pour être révisés." + +msgid "editor.monograph.legend.participants" +msgstr "" +"Afficher et gérer les participants à cette soumission : auteur·e·s, " +"responsables, designers, etc." + +msgid "editor.submission.introduction" +msgstr "" +"Lors de la soumission, l’éditeur ou l’éditrice, après avoir consulté les " +"fichiers soumis, choisit l’action appropriée (qui inclut la notification à " +"l’auteur·e) : Envoyer à évaluation interne (sélection des fichiers pour " +"évaluation interne) ; Envoyer à évaluation externe (sélection des fichiers " +"pour évaluation externe) ; Accepter la soumission (sélection des fichiers " +"pour l’étape éditoriale) ; ou Refuser la soumission (archivage de la " +"soumission)." + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Tous les fichiers qui ont déjà été téléchargés à n’importe quelle étape de " +"la soumission peuvent être ajoutés à la liste de vérification des épreuves " +"en cochant la case « Inclure » ci-dessous et en cliquant sur « Rechercher ». " +"Tous les fichiers disponibles seront répertoriés et pourront être " +"sélectionnés pour inclusion." + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Différents formats de publication, tels que couverture rigide, couverture " +"souple et format numérique, peuvent être téléchargés dans la section Formats " +"de publication ci-dessous. Vous pouvez utiliser la grille des formats de " +"publication suivante comme aide-mémoire pour savoir ce qu’il reste à faire " +"pour publier un format de publication." + +msgid "editor.submissionArchive" +msgstr "Archives des soumissions" + +msgid "editor.monograph.clearReview" +msgstr "Supprimer l’évaluateur·rice" + +msgid "editor.monograph.enterRecommendation" +msgstr "Saisir la recommandation" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Saisir la recommendation de l’évaluateur·rice" + +msgid "editor.monograph.recommendation" +msgstr "Recommandation" + +msgid "editor.monograph.replaceReviewer" +msgstr "Remplacer l’évaluateur·rice" + +msgid "editor.monograph.editorToEnter" +msgstr "Recommandations/commentaires de l’éditeur pour l’évaluateur·rice" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Téléverser l’évaluation" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Options d’évaluation par les pairs" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Fichiers d’épreuves" + +msgid "editor.monograph.internalReview" +msgstr "Procéder à l’évaluation interne" + +msgid "editor.monograph.externalReview" +msgstr "Procéder à l’évaluation externe" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Choisir les fichiers d’épreuves finales" + +msgid "editor.monograph.final.currentFiles" +msgstr "Fichiers d’épreuves finales actuels" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Fichiers en cours" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Message à l’utilisateur" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Actions de soumission" + +msgid "editor.monograph.legend.sectionActions" +msgstr "Actions de section" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Les options associées à une section particulière, comme le téléchargement de " +"fichiers ou l’ajout d’utilisateurs." + +msgid "editor.monograph.legend.itemActions" +msgstr "Actions de l’élément" + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Visualiser et gérer l’entrée du catalogue de soumission, y compris les " +"métadonnées et les formats de publication" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Visualiser et gérer les métadonnées, les notes, les notifications et l’" +"historique des soumissions" + +msgid "editor.monograph.legend.add" +msgstr "Téléverser un fichier dans la section" + +msgid "editor.monograph.legend.add_user" +msgstr "Ajouter un utilisateur à la section" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Afficher et accéder aux paramètres de l’élément, tels que les informations " +"et les options de suppression" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"Plus d’informations : notes sur les fichiers, options de notification et " +"historique" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Informations sur le fichier : notes, options de notification et historique (" +"aucune note n’a encore été ajoutée)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Informations sur le fichier : notes, options de notification et historique (" +"notes disponibles)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Informations sur le fichier : notes, options de notification et historique (" +"nouvelles notes ajoutées depuis la dernière visite)" + +msgid "editor.monograph.legend.edit" +msgstr "Modifier l’élément" + +msgid "editor.monograph.legend.delete" +msgstr "Supprimer l’élément" + +msgid "editor.monograph.legend.complete" +msgstr "Action terminée" + +msgid "editor.monograph.legend.in_progress" +msgstr "Action en cours ou non encore terminée" + +msgid "editor.monograph.legend.uploaded" +msgstr "Fichier téléchargé par le rôle dans le titre de la colonne de la grille" + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Copie au propre" + +msgid "editor.monograph.proofs" +msgstr "Épreuves" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Approbation et publication" + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Ajoutez les formats de publication (par exemple, numérique, livre de poche) " +"pour lesquels le maquettiste prépare des épreuves pour relecture. Avant qu’" +"un format ne soit rendu Disponible (c’est-à-dire publié), les " +"Épreuves doivent être cochées comme approuvées et l’entrée de " +"Catalogue pour le format doit être cochée comme publiée." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Choisir les modalités de téléchargement" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Choisir les modalités" + +msgid "editor.monograph.proof.addNote" +msgstr "Ajouter une réponse" + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Le public identifié comme ’{$publicIdentifier}’ existe déjà pour un autre " +"objet du même type. Veuillez choisir des identifiants uniques pour les " +"objets du même type dans votre maison d’édition." + +msgid "editor.submissions.assignedTo" +msgstr "Assigné à un·e éditeur·rice" diff --git a/locale/fr_FR/emails.po b/locale/fr_FR/emails.po new file mode 100644 index 00000000000..098c215d7ba --- /dev/null +++ b/locale/fr_FR/emails.po @@ -0,0 +1,517 @@ +# Weblate Admin , 2023. +# Germán Huélamo Bautista , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-07-30 15:56+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Nous avons reçu une requête de réinitialisation de votre mot de passe pour " +"le site Web {$siteTitle}.
      \n" +"
      \n" +"Si vous n’avez pas fait cette requête, veuillez ignorer ce courriel et votre " +"mot de passe ne sera pas modifié. Si vous souhaitez modifier votre mot de " +"passe, cliquez sur l’adresse URL ci-dessous.
      \n" +"
      \n" +"Modifier mon mot de passe : {$passwordResetUrl}
      \n" +"
      \n" +"{$siteContactName}" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Confirmation de la réinitialisation du mot de passe" + +msgid "emails.userRegister.subject" +msgstr "Inscription à la maison d’édition" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName},
      \n" +"
      \n" +"Ce courriel contient votre nom d’utilisateur et votre mot de passe, qui sont " +"nécessaires pour tout travail avec cette maison d’édition par le biais de " +"son site web. Vous pouvez à tout moment me contacter pour demander à être " +"retiré de la liste des utilisateur·rice·s.
      \n" +"
      \n" +"Nom d’utilisateur : {$recipientUsername}
      \n" +"Mot de passe : {$password}
      \n" +"
      \n" +"Merci,
      \n" +"{$signature}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"En raison de votre expertise, nous avons ajouté votre nom à notre base de " +"données d’évaluateurs et d’évaluatrices pour {$contextName}. Cela ne vous " +"oblige à rien, mais nous permet simplement de vous contacter si nous " +"recevons une soumission que vous pourriez évaluer. Après avoir reçu une " +"demande d’évaluation, vous aurez la possibilité de lire le titre et le " +"résumé de la soumission et vous pourrez accepter ou refuser l’invitation. " +"Vous pouvez également demander à tout moment que votre nom soit retiré de " +"cette liste.
      \n" +"
      \n" +"Vous disposez d’un nom d’utilisateur et d’un mot de passe, qui sont utilisés " +"dans toutes les échanges avec la maison d’édition via son site web. Il se " +"peut que vous souhaitiez, par exemple, mettre à jour votre profil, y compris " +"vos intérêts en matière d’évaluation.
      \n" +"
      \n" +"Nom d’utilisateur : {$recipientUsername}
      \n" +"Mot de passe : {$password}
      \n" +"
      \n" +"Merci,
      \n" +"{$signature}" + +msgid "emails.editorAssign.body" +msgstr "" +"

      Cher·ère {$recipientName},

      La soumission suivante vous a été " +"assignée pour que vous la suiviez tout au long du processus éditorial :

      {$submissionTitle}
      {$authors}

      Abstract

      {$submissionAbstract}

      Si vous " +"trouvez que la soumission est pertinente pour {$contextName}, veuillez l’" +"envoyer à l’étape d’évaluation en sélectionnant « Envoyer pour évaluation " +"interne », puis désignez des évaluateurs ou des évaluatrices en cliquant sur " +"« Ajouter un évaluateur·rice ».

      Si la soumission n’est pas appropriée " +"pour cette maison d’édition, veuillez la refuser.

      Merci d’avance.

      Bien à vous,

      {$contextSignature}" + +msgid "emails.reviewRequest.body" +msgstr "" +"

      Cher·ère {$recipientName},

      Nous estimons que vous seriez un·e " +"excellent·e évaluateur·rice pour cette soumission à {$contextName}. Vous " +"trouverez ci-dessous le titre et le résumé de la soumission. Nous espérons " +"que vous envisagerez d’entreprendre cette tâche si importante pour nous.

      Si vous êtes disponible pour évaluer la soumission, la date limite pour " +"compléter l’évaluation est le {$reviewDueDate}. Vous pouvez consulter la " +"soumission, téléverser des fichiers et soumettre votre évaluation en vous " +"connectant au site de cette maison d’édition et en suivant les étapes " +"indiquées dans le lien ci-dessous.

      {$submissionTitle}

      Résumé

      {$submissionAbstract}" +"

      Veuillez accepter ou refuser cette " +"évaluation avant le {$responseDueDate}.

      Si vous avez des " +"questions concernant la soumission ou la procédure d’évaluation, n’hésitez " +"pas à nous contacter.

      Nous vous remercions de prendre en considération " +"cette demande. Votre aide est très appréciée.

      Bien " +"cordialement,

      {$signature}" + +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

      Cher·ère {$recipientName},

      Nous vous remercions de votre évaluation " +"de « {$submissionTitle} ». Les " +"auteur·e·s ont pris en compte les commentaires des évaluations et ont " +"maintenant soumis une version révisée de leur travail. Je vous écris pour " +"savoir si vous pouvez procéder à une deuxième évaluation pour cette " +"soumission.

      Si vous êtes en mesure d’évaluer cette soumission, votre " +"évaluation est attendue au plus tard le {$reviewDueDate}. Vous pouvez suivre les étapes d’évaluation pour " +"consulter la soumission, téléverser des fichiers d’évaluation et soumettre " +"vos commentaires d’évaluation.

      {$submissionTitle}

      Résumé

      {$submissionAbstract}" +"

      Veuillez accepter ou refuser l’" +"évaluation avant le {$responseDueDate}.

      N’hésitez pas à me " +"contacter pour toute question concernant la soumission ou le processus " +"d’évaluation.

      Nous vous remercions de prendre en considération cette " +"demande. Votre aide est très appréciée.

      Bien " +"cordialement,

      {$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Validez votre compte" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Vous avez créé un compte avec {$contextName}, mais avant de pouvoir " +"commencer à l’utiliser, vous devez valider votre compte de messagerie. Pour " +"ce faire, il vous suffit de suivre le lien ci-dessous :
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Merci,
      \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Validez votre compte" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Vous avez créé un compte avec {$siteTitle}, mais avant de pouvoir commencer " +"à l’utiliser, vous devez valider votre compte e-mail. Pour ce faire, il vous " +"suffit de suivre le lien ci-dessous :
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Merci,
      \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Inscription en tant qu’évaluateur·rice de {$contextName}" + +msgid "emails.editorAssign.subject" +msgstr "" +"Vous avez été désigné comme éditeur·rice pour une soumission à {$contextName}" + +msgid "emails.reviewRequest.subject" +msgstr "Demande d’évaluation d’un manuscrit" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Demande d’évaluation d’une soumission évaluée" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Demande d’évaluation d’un manuscrit" + +msgid "emails.indexComplete.body" +msgstr "" +"Cher·ère {$recipientName}:
      \n" +"
      \n" +"Les index du manuscrit « {$submissionTitle} » pour {$contextName} sont prêts " +"et peuvent être révisés.
      \n" +"
      \n" +"Si vous avez questions, n’hésitez pas à me contacter.
      \n" +"
      \n" +"{$signatureFullName}" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Cher·ère {$reviewerName},
      \n" +"Ceci n’est qu’un petit rappel de notre demande d’évaluation de la soumission " +"« {$submissionTitle} » for {$contextName}. Nous espérions recevoir votre " +"réponse pour le {$responseDueDate}, et ce courriel a été automatiquement " +"généré et envoyé suite au passage de cette date.\n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"Veuillez vous connecter au site web de cette maison d’édition pour indiquer " +"si vous pouvez procéder à l’évaluation ou non, ainsi que pour accéder à la " +"soumission et pour enregistrer votre évaluation et votre recommandation.
      \n" +"
      \n" +"L’évaluation elle-même est attendue le {$reviewDueDate}.
      \n" +"
      \n" +"URL de la soumission : {$reviewAssignmentUrl}
      \n" +"
      \n" +"Nom d’utilisateur : {$recipientUsername}
      \n" +"
      \n" +"Merci de prendre en compte cette demande.
      \n" +"
      \n" +"
      \n" +"Cordialement,
      \n" +"{$contextSignature}
      \n" + +msgid "emails.reviewRemind.body" +msgstr "" +"

      Cher·ère {$recipientName},

      Ceci n’est qu’un petit rappel de notre " +"demande d’évaluation de la soumission « {$submissionTitle} » pour " +"{$contextName}. Nous attendions cette évaluation pour le {$reviewDueDate} et " +"nous vous serions donc reconnaissants de bien vouloir nous l’envoyer dès qu’" +"elle sera prête.

      Vous pouvez vous " +"connecter à notre site et suivre les étapes d’évaluation pour visualiser " +"la soumission, téléverser des fichiers et soumettre vos commentaires " +"d’évaluation.

      Si vous avez besoin de reporter la date limite, veuillez " +"nous contacter. Nous espérons avoir bientôt de vos nouvelles et vous " +"remercions d’avance pour votre aide.

      Bien cordialement,

      {$signature}" + +msgid "emails.reviewRemindAuto.body" +msgstr "" +"

      Cher·ère {$recipientName}:

      Ce courriel est un rappel automatique de " +"la part de {$contextName} concernant notre demande d’évaluation de la " +"soumission « {$submissionTitle} ».

      L’évaluation était attendue pour le " +"{$reviewDueDate}, nous vous prions donc de bien vouloir nous l’envoyer dès " +"qu’elle sera prête.

      Vous pouvez vous connecter à notre site et suivre les étapes d’évaluation pour " +"visualiser la soumission, téléverser des fichiers et soumettre vos " +"commentaires d’évaluation.

      Si vous avez besoin de reporter la date " +"limite, veuillez nous contacter. Nous espérons avoir bientôt de vos " +"nouvelles et vous remercions d’avance pour votre aide.

      Bien " +"cordialement,

      {$signature}" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

      Cher·ère {$recipientName},

      Nous avons le plaisir de vous informer " +"que nous avons décidé d’accepter votre soumission sans autre évaluation. " +"Après un examen attentif, nous avons constaté que votre soumission, « " +"{$submissionTitle} », répond à nos attentes, voire les dépasse. " +"{$contextName} se réjouit de publier votre travail et nous vous remercions d’" +"avoir choisi cette maison d’édition.

      Votre soumission sera bientôt " +"publiée sur le site web de {$contextName} et nous vous invitons à l’inclure " +"dans votre liste de publications. Nous sommes conscients du travail " +"considérable que représente chaque soumisison réussie et nous tenons à vous " +"féliciter d’avoir atteint ce stade.

      Votre soumission va maintenant " +"faire l’objet d’un processus de correction et de mise en forme afin de la " +"préparer à la publication.

      Vous recevrez d’autres instructions sous " +"peu.

      Si vous avez des questions, n’hésitez pas à nous contacter à " +"partir de votre tableau de bord.

      Bien cordialement,

      {$signature}" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

      Cher·ère {$recipientName},

      \n" +"

      J’ai le plaisir de vous informer que nous avons décidé d’accepter votre " +"soumission sans évaluation par les pairs. Votre soumission, " +"{$submissionTitle}, répond à nos attentes et nous n’exigeons pas que les " +"travaux de ce type fassent l’objet une évaluation par les pairs. Nous sommes " +"ravis de publier votre texte dans {$contextName} et nous vous remercions d’" +"avoir choisi notre maison d’édition pour publier votre travail.)

      \n" +"

      Votre soumission sera bientôt publiée sur le site de {$contextName} et " +"vous pouvez l’inclure dans votre liste de publications. Nous sommes " +"conscients du travail considérable que représente chaque soumission réussie " +"et nous tenons à vous féliciter pour vos efforts.

      \n" +"

      Votre soumission sera alors soumise à un travail d’édition et de mise en " +"forme afin de la préparer à la publication.

      \n" +"

      Vous recevrez prochainement des instructions à ce sujet.

      \n" +"

      Si vous avez des questions, veuillez me contacter depuis votre tableau de bord de soumissions.

      \n" +"

      Bien cordialement,

      \n" +"

      {$signature}

      \n" + +msgid "emails.layoutRequest.body" +msgstr "" +"

      Cher·ère {$recipientName},

      Une nouvelle soumission est prête à être " +"mise en page :

      {$submissionId} " +"{$submissionTitle}
      {$contextName}

      1. Cliquez sur l’URL de " +"la soumission ci-dessus.
      2. Téléchargez les fichiers prêts pour la " +"production et utilisez-les pour créer les épreuves selon les normes de la " +"maison d’édition.
      3. Chargez les épreuves dans la section Formats de " +"publication de la soumission.
      4. Utilisez les discussions de production " +"pour informer l’éditeur·rice que les épreuves sont prêtes.

      Si " +"vous n’êtes pas en mesure d’entreprendre ce travail pour le moment ou si " +"vous avez des questions, n’hésitez pas à me contacter. Je vous remercie de " +"votre contribution à cette maison d’édition.

      Bien " +"cordialement,

      {$signature}" + +msgid "emails.indexRequest.body" +msgstr "" +"Cher·ère {$recipientName},
      \n" +"
      \n" +"La soumission « {$submissionTitle} » à {$contextName} a maintenant besoin d’" +"index créés en suivant ces étapes :
      \n" +"1. Cliquez sur l’URL de la soumission ci-dessous.
      \n" +"2. Connectez-vous à la maison d’édition et utilisez le fichier des épreuves " +"de page pour créer les épreuves conformément aux normes de la maison d’" +"édition.
      \n" +"3. Envoyez le courriel COMPLET au/à la responsable éditorial.
      \n" +"
      \n" +"{$contextName} URL : {$contextUrl}
      \n" +"URL de la soumission : {$submissionUrl}
      \n" +"Nom d’utilisateur : {$recipientUsername}
      \n" +"
      \n" +"Si vous n’êtes pas en mesure d’entreprendre ce travail pour le moment ou si " +"vous avez des questions, n’hésitez pas à me contacter. Je vous remercie de " +"votre contribution à cette maison d’édition.
      \n" +"
      \n" +"{$signature}" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

      Cher·ère {$recipientName},

      L’auteur·e a téléchargé des révisions " +"pour la soumission {$authorsShort} — {$submissionTitle}.

      En tant " +"qu’éditeur·rice assigné·e, nous vous demandons de vous connecter, de consulter les révisions et prendre la décision d’" +"accepter, de refuser ou de renvoyer la soumission pour une nouvel " +"évaluation.




      Ceci est un message automatisé de {$contextName}." + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

      Cher·ère {$recipientName},

      La soumission suivante vous a été " +"confiée pour que vous la suiviez tout au long de la phase de production.

      {$submissionTitle}
      {$authors}

      Résumé

      {$submissionAbstract}

      Veuillez vous " +"connecter pour voir la soumission. Lorsque " +"les fichiers prêts pour production sont disponibles, chargez-les dans la " +"section Publication > Formats de publication.

      Merci " +"d’avance.

      Bien cordialement,

      {$signature}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
      \n" +"
      \n" +"{$announcementSummary}
      \n" +"
      \n" +"Visitez notre site pour consulter l’annonce " +"complète." + +msgid "emails.editorAssignReview.body" +msgstr "" +"

      Cher·ère {$recipientName},

      La soumission suivante vous a été " +"assignée pour que vous la suiviez pendant l’étape d’évaluation.

      {$submissionTitle}
      {$authors}

      Résumé

      {$submissionAbstract}

      Veuillez vous " +"connecter pour voir la soumission et pour " +"désigner des évaluateur·rice·s qualifié.e.s. Vous pouvez assigner un·e " +"évaluateur·rice en cliquant sur « Assigner un·e évaluateur·rice ».

      Merci d’avance.

      Bien à vous,

      {$signature}" + +msgid "emails.reviewCancel.subject" +msgstr "Annulation de la demande d’évaluation" + +msgid "emails.reviewCancel.body" +msgstr "" +"Cher·ère {$recipientName},
      \n" +"
      \n" +"Nous avons décidé d’annuler notre demande d’évaluation de la soumission « " +"{$submissionTitle} » pour {$contextName}. Nous nous excusons pour la gêne " +"occasionnée et espérons que nous pourrons faire appel à vous à l’avenir pour " +"nous aider dans d’autres processus d’évaluation.
      \n" +"
      \n" +"Si vous avez des questions, n’hésitez pas à nous contacter." + +msgid "emails.reviewReinstate.subject" +msgstr "" +"Êtes-vous toujours disponible pour évaluer des textes pour {$contextName} ?" + +msgid "emails.reviewDecline.subject" +msgstr "Refus d’évaluation" + +msgid "emails.reviewDecline.body" +msgstr "" +"{$recipientName},
      \n" +"
      \n" +"Pour le moment, il m’est impossible d’évaluer la soumission intitulée « " +"{$submissionTitle} » pour {$contextName}. Je vous remercie d’avoir pensé à " +"moi. N’hésitez pas à communiquer avec moi pour un autre projet.
      \n" +"
      \n" +"{$senderName}" + +msgid "emails.reviewReinstate.body" +msgstr "" +"

      Cher·ère {$recipientName,

      Nous avons récemment annulé notre demande " +"d’évaluation d’une soumission, « {$submissionTitle} », pour {$contextName}. " +"Néanmoins, nous avons renversé cette décision et nous espérons que vous " +"serez toujours en mesure de procéder à l’évaluation.

      Si vous pouvez " +"contribuer à l’évaluation de cette soumission, veuillez vous connecter à notre site pour consulter la " +"soumission, téléverser des fichiers et envoyer votre évaluation.

      Si " +"vous avez des questions, n’hésitez pas à me contacter.

      Bien " +"cordialement,

      {$signature}" + +msgid "emails.reviewRemind.subject" +msgstr "Rappel pour compléter l’évaluation" + +msgid "emails.editorDecisionAccept.subject" +msgstr "Votre soumission pour {$contextName} a été acceptée" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Votre soumission a été envoyée pour évaluation interne" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

      Cher·ère {$recipientName},

      J’ai le plaisir de vous informer que " +"votre soumission, « {$submissionTitle} », a été transmise pour évaluation " +"interne. Nous vous communiquerons le résultat de cette évaluation.

      Veuillez noter que l’envoi de la soumission pour évaluation interne ne " +"garantit pas qu’elle sera publiée. Il se peut que nous vous demandions d’" +"apporter des modifications ou de répondre à des questions soulevées lors de " +"l’évaluation avant de prendre une décision finle.

      Si vous avez des " +"questions, veuillez me contacter à partir de votre tableau de bord de " +"soumissions.

      {$signature}

      " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Votre soumission a été envoyée pour édition" + +msgid "emails.layoutRequest.subject" +msgstr "" +"La soumission {$submissionId} est prête pour la production à " +"{$contextAcronym}" + +msgid "emails.layoutComplete.subject" +msgstr "Épreuves terminées" + +msgid "emails.layoutComplete.body" +msgstr "" +"

      Cher·ère {$recipientName},

      Les épreuves pour la soumission suivante " +"ont été préparées et sont prêtes pour la révision finale.

      {$submissionTitle}
      {$contextName}

      Si vous " +"avez des questions, n’hésitez pas à me contacter.

      Bien " +"cordialement,

      {$senderName}

      " + +msgid "emails.indexRequest.subject" +msgstr "Demande d’indexation" + +msgid "emails.indexComplete.subject" +msgstr "Épreuves d’indexation terminées" + +msgid "emails.emailLink.subject" +msgstr "Manuscrit susceptible d’intéresser" + +msgid "emails.emailLink.body" +msgstr "" +"Nous avons pensé que « {$submissionTitle} », de {$authors}, publié dans le " +"volume {$volume}, numéro {$number} ({$year}) de {$contextName} à « " +"{$submissionUrl} » pourrait vous intéresser." + +msgid "emails.notifySubmission.subject" +msgstr "Notification de soumission" + +msgid "emails.notifyFile.description" +msgstr "" +"Notification d’un·e utilisateur/trice envoyée à partir d’un centre d’" +"information sur les fichiers" + +msgid "emails.notifyFile.body" +msgstr "" +"Vous avez un message de {$sender} concernant le fichier « {$fileName} » dans " +"« {$submissionTitle} » ({$monographDetailsUrl}) :
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifySubmission.body" +msgstr "" +"Vous avez reçu un message de {$sender} concernant « {$submissionTitle} » " +"({$monographDetailsUrl}) :
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Notification d’un·e utilisateur/trice envoyée à partir d’un centre d’" +"information sur les soumissions." + +msgid "emails.notifyFile.subject" +msgstr "Notification de soumission d’un fichier" + +msgid "emails.revisedVersionNotify.subject" +msgstr "Version révisée chargée" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Activité éditoriale pour {$month} {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
      \n" +"
      \n" +"Le rapport d’activité éditoriale pour {$month} {$year} est maintenant " +"disponible. Les principales statistiques pour ce mois sont affichées ci-" +"dessous.
      \n" +"
        \n" +"\t
      • Nouvelles soumissions pour ce mois : {$newSubmissions}
      • \n" +"\t
      • Soumissions refusées pour ce mois : {$declinedSubmissions}
      • \n" +"\t
      • Soumissions acceptées pour ce mois : {$acceptedSubmissions}
      • \n" +"\t
      • Nombre total de soumissions dans la plateforme : {$totalSubmissions} " +"
      • \n" +"
      \n" +"Connectez-vous au site de la maison d’édition pour voir davantage de tendances dans l’activité éditoriale ainsi que " +"des statistiques relatives aux livres " +"publiés. Le rapport complet des tendances de l’activité éditoriale de ce " +"mois-ci est joint au présent envoi.
      \n" +"
      \n" +"Cordialement,
      \n" +"{$contextSignature}" diff --git a/locale/fr_FR/locale.po b/locale/fr_FR/locale.po new file mode 100644 index 00000000000..2cbc4843af3 --- /dev/null +++ b/locale/fr_FR/locale.po @@ -0,0 +1,1727 @@ +# Weblate Admin , 2023. +# Germán Huélamo Bautista , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-05-31 17:17+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "common.payments" +msgstr "Paiements" + +msgid "monograph.audience" +msgstr "Public" + +msgid "monograph.audience.success" +msgstr "Les détails du public ont été mis à jour." + +msgid "monograph.coverImage" +msgstr "Image de la page de couverture" + +msgid "monograph.audience.rangeFrom" +msgstr "Intervalle du public (de)" + +msgid "monograph.audience.rangeQualifier" +msgstr "Qualificatif de l’intervalle du public" + +msgid "monograph.audience.rangeTo" +msgstr "Intervalle du public (à)" + +msgid "submission.round" +msgstr "Cycle {$round}" + +msgid "monograph.publicationFormatDetails" +msgstr "Détails sur le format de publication disponible : {$format}" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Le·La maquettiste transfère ici les fichiers qui sont prêts pour " +"publication. Utiliser Assigner un vérificateur pour identifier les " +"auteur·e·s et les autres personnes qui reliront les épreuves et chargerons " +"les fichiers corrigés pour approbation avant la publication." + +msgid "monograph.task.addNote" +msgstr "Ajouter à la tâche" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Ce format sera disponible sur un site web distinct" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Non disponible" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Composition du produit" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Indicateur des retours" + +msgid "grid.catalogEntry.proof" +msgstr "Épreuve" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Approbation du format" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Indiquer votre propre valeur pour la taille du fichier ?" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Poids" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Mesures techniques de protection numérique" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Inclure les métadonnées de ce format de publication dans l’entrée de " +"catalogue de ce livre." + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

      Approuver les métadonnées pour ce format. Les métadonnées peuvent être " +"vérifiées dans le panneau d’édition de chaque format.

      " + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

      Rendre ce format disponible pour les lecteur·rice·s. Les " +"fichiers téléchargeables et toute autre distribution apparaîtront dans l’" +"entrée du catalogue du livre.

      " + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Un code de composition du produit doit être choisi." + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Reste du monde ?" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Une date est requise et la valeur de la date doit correspondre au format de " +"date choisi." + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Vous pouvez nommer un agent qui vous représentera dans ce territoire, mais " +"cela n’est pas nécessaire." + +msgid "grid.action.manageSeries" +msgstr "Configurer les collections de cette maison d’édition" + +msgid "user.role.editors" +msgstr "Éditeur·rice·s" + +msgid "grid.action.approveProofs" +msgstr "Voir la grille des épreuves" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Fichiers disponibles" + +msgid "catalog.manage.seriesFeatured" +msgstr "A la une dans la collection" + +msgid "catalog.viewableFile.return" +msgstr "Retournez pour voir les détails sur {$monographTitle}" + +msgid "common.homePageHeader.altText" +msgstr "En-tête de la page d’accueil" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Collections" + +msgid "context.select" +msgstr "Changer de maison d’édition :" + +msgid "user.noRoles.regReviewerClosed" +msgstr "S’inscrire en tant qu’évaluateur·rice : l’inscription est désactivée." + +msgid "user.role.proofreader" +msgstr "Correcteur·rice d’épreuves" + +msgid "navigation.catalog.administration.categories" +msgstr "Catégories" + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "La monographie n’est pas marquée comme une nouveauté." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Inclure les utilisateurs sans rôle dans cette maison d’édition." + +msgid "user.reviewerPrompt" +msgstr "" +"Seriez-vous volontaire pour évaluer des soumissions à cette maison d’édition " +"?" + +msgid "user.register.noContexts" +msgstr "Vous ne pouvez vous inscrire à aucune maison d’édition sur ce site." + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Cochez cette case si vous souhaitez que cette entrée pour les droits de " +"vente s’applique à votre format de manière générale. Vous n’avez pas à " +"choisir des pays et des régions dans ce cas." + +msgid "catalog.manage.homepageDescription" +msgstr "" +"L’image de couverture des livres sélectionnés est affichée en haut de la " +"page d’accueil sous la forme d’un ensemble défilant. Cliquez sur « À la une »" +", puis sur l’étoile pour ajouter un livre au carrousel ; cliquez sur le " +"signe d’exclamation pour mettre une nouvelle parutionà la une ; faites " +"glisser le livre pour le trier." + +msgid "catalog.manage.isFeatured" +msgstr "" +"Cette monographie est à la une. Retirer cette monographie de la sélection de " +"titres à la une." + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Note : Pour acheter des articles, vous devez d’abord vous connecter. En " +"sélectionnant un article à acheter, vous serez dirigé vers la page de " +"connexion. Tout article marqué d’une icône de libre accès peut être " +"téléchargé gratuitement, sans avoir à se connecter." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Oui, je souhaite être contacté(e) pour évaluer des soumissions à cette " +"maison d’édition." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Cette monographie n’est pas une nouveauté. Faire de cette monographie une " +"nouveauté." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Le mot de passe que vous avez saisi n’est pas assez long." + +msgid "catalog.noTitlesNew" +msgstr "Aucune nouveauté n’est disponible pour l’instant." + +msgid "catalog.foundTitleSearch" +msgstr "" +"Un titre correspondant à votre recherche « {$searchQuery} » a été trouvé." + +msgid "user.register.reviewerDescription" +msgstr "" +"Disposé à faire des évaluations par les pairs des soumissions au web site." + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Oui, j’accepte que mes données soient collectées et stockées conformément à " +"la déclaration de " +"confidentialité de cette maison d’édition." + +msgid "monograph.audience.rangeExact" +msgstr "Plage d’audience (exact)" + +msgid "monograph.languages" +msgstr "Langues (anglais, français, espagnol)" + +msgid "monograph.publicationFormats" +msgstr "Formats de publication" + +msgid "monograph.publicationFormat" +msgstr "Format" + +msgid "monograph.miscellaneousDetails" +msgstr "Informations sur cette monographie" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formats :" + +msgid "monograph.type" +msgstr "Type de soumission" + +msgid "submission.pageProofs" +msgstr "Épreuves" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Accès libre" + +msgid "monograph.publicationFormat.imprint" +msgstr "Marque d’éditeur (nom commercial)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Nombre de pages" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Textes préliminaires" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Parties annexes" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Détails du produit (n’est pas requis)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identification du produit" + +msgid "monograph.publicationFormat.price" +msgstr "Prix" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Un prix est requis." + +msgid "monograph.publicationFormat.priceType" +msgstr "Type de prix" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Pourcentage de remise, le cas échéant" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Disponibilité du produit" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Information numérique" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Dimensions physiques" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Taille du fichier en Mo" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Hauteur" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Épaisseur" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Largeur" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Pays de fabrication" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Région de distribution du produit" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Taux de taxation" + +msgid "monograph.publicationFormat.taxType" +msgstr "Type de taxation" + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Marchés et prix manquants." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Code d’identification manquant." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Champs de métadonnées manquants." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

      Le format de publication que vous avez choisi n’existe plus pour cette " +"monographie.

      " + +msgid "monograph.publicationFormat.openTab" +msgstr "Ouvrir l’onglet du format de publication." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Format de publication" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Un nom est requis." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Un prix valide est requis." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Détails du format" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Format physique" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL du contenu hébergé à distance" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "Un code ISBN à 13 chiffres, tel que 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "Un code ISBN à 10 chiffres, tel que 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Un identifiant de la monographie est requis." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Vous devez choisir un format de publication." + +msgid "grid.catalogEntry.availability" +msgstr "Disponibilité" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Disponible" + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "" +"

      Indiquer que les métadonnées de ce format n’ont pas été approuvées.

      " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Disponibilité du format" + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

      Ce format ne sera pas disponible pour les lecteur·rice·s. Les " +"fichiers téléchargeables ou autres distributions n’apparaîtront plus dans l’" +"entrée du catalogue du livre.

      " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "L’entrée de catalogue n’a pas été approuvée." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Format non disponible dans l’entrée du catalogue." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Épreuve non approuvée." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Accepté" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "En attente d’approbation" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Pour les formats numériques, vous devez indiquer la taille du fichier." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Un code de disponibilité du produit est requis." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Valeur du code" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Type de code ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Un code d’identification est requis." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Une valeur est requise." + +msgid "grid.catalogEntry.salesRights" +msgstr "Droits de vente" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Valeur du code" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Type de droits de vente" + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Un type de vente « Reste du monde » a déjà été défini pour ce format de " +"publication." + +msgid "grid.catalogEntry.countries" +msgstr "Pays" + +msgid "grid.catalogEntry.regions" +msgstr "Régions" + +msgid "grid.catalogEntry.included" +msgstr "Inclus" + +msgid "grid.catalogEntry.excluded" +msgstr "Exclus" + +msgid "grid.catalogEntry.markets" +msgstr "Territoires du marché" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Territoire" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Dates de publication" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Un rôle de représentant est requis." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Un format de date est requis." + +msgid "grid.catalogEntry.dateValue" +msgstr "Date" + +msgid "grid.catalogEntry.dateRole" +msgstr "Rôle" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Format de date" + +msgid "grid.catalogEntry.representatives" +msgstr "Représentants" + +msgid "grid.catalogEntry.representativeType" +msgstr "Type de représentant" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agents" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Fournisseurs" + +msgid "grid.catalogEntry.agent" +msgstr "Agent" + +msgid "grid.catalogEntry.supplier" +msgstr "Fournisseur" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Choisir un rôle :" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Rôle" + +msgid "grid.catalogEntry.representativeName" +msgstr "Nom" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Téléphone" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Adresse de courriel" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Site Web" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Identification du représentant" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Type d’identifiant du représentant (GLN recommandé)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Vous n’avez pas à remplir la section suivante si vous offrez vos propres " +"services à vos clients." + +msgid "grid.action.addRepresentative" +msgstr "Ajouter un(e) représentant(e)" + +msgid "grid.action.editRepresentative" +msgstr "Modifier ce(tte) représentant(e)" + +msgid "grid.action.deleteRepresentative" +msgstr "Supprimer ce(tte) représentant(e)" + +msgid "spotlight" +msgstr "À la une" + +msgid "spotlight.spotlights" +msgstr "À la une" + +msgid "spotlight.noneExist" +msgstr "Il n’y a pas de livres à la une actuellement." + +msgid "spotlight.title.homePage" +msgstr "À la une" + +msgid "spotlight.author" +msgstr "Auteur, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Ouvrage à la une" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Page d’accueil" + +msgid "grid.content.spotlights.form.location" +msgstr "Emplacement à la une" + +msgid "grid.content.spotlights.form.item" +msgstr "Saisir le titre à la une (remplissage automatique)" + +msgid "grid.content.spotlights.form.title" +msgstr "Titre de l’ouvrage à la une" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Livre" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Un élément est requis." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Un titre à la une est requis." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Veuillez choisir un emplacement pour ce titre à la une." + +msgid "grid.action.editSpotlight" +msgstr "Modifier les titres à la une" + +msgid "grid.action.deleteSpotlight" +msgstr "Retirer un titre de la rubrique À la une" + +msgid "grid.action.addSpotlight" +msgstr "Ajouter un titre à la rubrique À la une" + +msgid "manager.series.open" +msgstr "Soumissions actives" + +msgid "manager.series.indexed" +msgstr "Indexé" + +msgid "grid.libraryFiles.column.files" +msgstr "Fichiers" + +msgid "grid.action.catalogEntry" +msgstr "Voir le formulaire de saisie du catalogue" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Le format apparait dans l’entrée de catalogue" + +msgid "grid.action.editFormat" +msgstr "Modifier ce format" + +msgid "grid.action.deleteFormat" +msgstr "Supprimer ce format" + +msgid "grid.action.addFormat" +msgstr "Ajouter un format de publication" + +msgid "grid.action.approveProof" +msgstr "Approuver l’épreuve afin qu’elle soit indexée et ajoutée au catalogue" + +msgid "grid.action.pageProofApproved" +msgstr "Le fichier d’épreuves de mise en page est prêt à être publié" + +msgid "grid.action.newCatalogEntry" +msgstr "Nouvelle entrée dans le catalogue" + +msgid "grid.action.publicCatalog" +msgstr "Voir ce titre dans le catalogue" + +msgid "grid.action.feature" +msgstr "Basculer l’affichage des caractéristiques" + +msgid "grid.action.featureMonograph" +msgstr "Présenter ceci dans le carrousel du catalogue" + +msgid "grid.action.releaseMonograph" +msgstr "Marquer cette soumission comme « nouveauté »" + +msgid "grid.action.manageCategories" +msgstr "Configurer les catégories pour cette maison d’édition" + +msgid "grid.action.addCode" +msgstr "Ajouter un code" + +msgid "grid.action.editCode" +msgstr "Modifier ce code" + +msgid "grid.action.deleteCode" +msgstr "Supprimer ce code" + +msgid "grid.action.addRights" +msgstr "Ajouter les droits de vente" + +msgid "grid.action.editRights" +msgstr "Modifier ces droits" + +msgid "grid.action.deleteRights" +msgstr "Supprimer ces droits" + +msgid "grid.action.addMarket" +msgstr "Ajouter un marché" + +msgid "grid.action.editMarket" +msgstr "Modifier ce marché" + +msgid "grid.action.deleteMarket" +msgstr "Supprimer ce marché" + +msgid "grid.action.addDate" +msgstr "Ajouter une date de publication" + +msgid "grid.action.editDate" +msgstr "Modifier cette date" + +msgid "grid.action.deleteDate" +msgstr "Supprimer cette date" + +msgid "grid.action.createContext" +msgstr "Créer une nouvelle maison d’édition" + +msgid "grid.action.publicationFormatTab" +msgstr "Afficher l’onglet du format de publication" + +msgid "grid.action.moreAnnouncements" +msgstr "Consulter la page des communiqués de presse" + +msgid "grid.action.submissionEmail" +msgstr "Cliquer pour lire ce courriel" + +msgid "grid.action.proofApproved" +msgstr "Le format a été vérifié" + +msgid "grid.action.availableRepresentation" +msgstr "Approuver/refuser ce format" + +msgid "grid.action.formatAvailable" +msgstr "Activer ou désactiver la disponibilité de ce format" + +msgid "grid.reviewAttachments.add" +msgstr "Ajouter une pièce jointe à l’évaluation" + +msgid "series.series" +msgstr "Collections" + +msgid "series.featured.description" +msgstr "Cette collection apparaîtra sur la page de navigation principale" + +msgid "series.path" +msgstr "Chemin d’accès" + +msgid "catalog.manage" +msgstr "Gestion du catalogue" + +msgid "catalog.manage.newReleases" +msgstr "Nouveautés" + +msgid "catalog.manage.category" +msgstr "Catégorie" + +msgid "catalog.manage.series" +msgstr "Collection" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Veuillez saisir un ISSN valide." + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN imprimé" + +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN numérique" + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "L’ISSN numérique et l’ISSN imprimé ne doivent pas être identiques." + +msgid "catalog.selectSeries" +msgstr "Sélectionner une collection" + +msgid "catalog.selectCategory" +msgstr "Sélectionner une catégorie" + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Cliquez sur « A la une », puis sur l’étoile pour sélectionner un livre à la " +"une dans cette catégorie ; faites glisser le livre pour le trier." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Cliquez sur « À la une », puis sur l’étoile pour sélectionner un livre à la " +"une de cette collection ; glissez-déposez pour l’ordonner. Les collections " +"sont identifiées par un ou plusieurs éditeur(s) et un titre de collection, " +"au sein d’une catégorie ou indépendamment." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Carrousel" + +msgid "catalog.manage.newRelease" +msgstr "Lancement" + +msgid "catalog.manage.manageSeries" +msgstr "Gérer la collection" + +msgid "catalog.manage.manageCategories" +msgstr "Gérer les catégories" + +msgid "catalog.manage.noMonographs" +msgstr "Aucune monographie n’a été assignée." + +msgid "catalog.manage.featured" +msgstr "À la une" + +msgid "catalog.manage.categoryFeatured" +msgstr "À la une dans la catégorie" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monographie à la une." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monographie pas à la une." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "La monographie est marquée comme une nouveauté." + +msgid "catalog.manage.feature.newRelease" +msgstr "Nouveauté" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Nouveauté dans la catégorie" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Nouveauté dans la collection" + +msgid "catalog.manage.nonOrderable" +msgstr "" +"Cette monographie ne peut être commandée tant qu’elle n’est pas publiée." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Recherche par titre ou par auteur·e" + +msgid "catalog.manage.isNotFeatured" +msgstr "" +"Cette monographie n’est pas à la une. Mettre cette monographie à la une." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Cette monographie est une nouveauté. Faire que cette monographie ne soit pas " +"une nouveauté." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Aucune soumission n’a été sélectionnée pour être ajoutée au catalogue." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Une ou plusieurs soumissions n’ont pas pu être trouvées." + +msgid "catalog.manage.findSubmissions" +msgstr "Trouver des monographies à ajouter au catalogue" + +msgid "catalog.noTitles" +msgstr "Aucun titre n’a encore été publié." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Aucun titre correspondant à votre recherche pour « {$searchQuery} » n’a été " +"trouvé." + +msgid "catalog.feature" +msgstr "À la une" + +msgid "catalog.featured" +msgstr "À la une" + +msgid "catalog.featuredBooks" +msgstr "Livres à la une" + +msgid "catalog.foundTitlesSearch" +msgstr "" +"{$number} titres correspondant à votre recherche « {$searchQuery} » ont été " +"trouvés." + +msgid "catalog.category.heading" +msgstr "Tous les livres" + +msgid "catalog.newReleases" +msgstr "Nouveautés" + +msgid "catalog.dateAdded" +msgstr "Ajouté le" + +msgid "catalog.publicationInfo" +msgstr "Informations sur la publication" + +msgid "catalog.published" +msgstr "Publié" + +msgid "catalog.forthcoming" +msgstr "À paraître" + +msgid "catalog.categories" +msgstr "Catégories" + +msgid "catalog.parentCategory" +msgstr "Catégorie mère" + +msgid "catalog.category.subcategories" +msgstr "Sous-catégories" + +msgid "catalog.aboutTheAuthor" +msgstr "À propos de : {$roleName}" + +msgid "catalog.sortBy" +msgstr "Ordre des monographies" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Choisissez comment commander les livres de cette collection." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Choisissez comment commander les livres de cette catégorie." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Choisissez comment commander les livres dans le catalogue." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Position des collections (inférieure d’abord)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Position des collections (supérieure d’abord)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} vue du fichier {$title}" + +msgid "submission.search" +msgstr "Recherche de livres" + +msgid "common.publication" +msgstr "Monographie" + +msgid "common.publications" +msgstr "Monographies" + +msgid "common.prefix" +msgstr "Préfixe" + +msgid "common.preview" +msgstr "Aperçu" + +msgid "common.feature" +msgstr "À la une" + +msgid "common.searchCatalog" +msgstr "Recherche dans le catalogue" + +msgid "common.moreInfo" +msgstr "Plus d’information" + +msgid "common.listbuilder.completeForm" +msgstr "Veuillez remplir le formulaire dans son intégralité." + +msgid "common.listbuilder.selectValidOption" +msgstr "Veuillez choisir une option valide à partir de la liste." + +msgid "common.listbuilder.itemExists" +msgstr "Vous ne pouvez pas ajouter le même élément deux fois." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "navigation.catalog" +msgstr "Catalogue" + +msgid "navigation.competingInterestPolicy" +msgstr "Politique en matière de conflits d’intérêts" + +msgid "navigation.catalog.allMonographs" +msgstr "Toutes les monographies" + +msgid "navigation.catalog.manage" +msgstr "Gérer" + +msgid "navigation.catalog.administration.short" +msgstr "Administration" + +msgid "navigation.catalog.administration" +msgstr "Administration du catalogue" + +msgid "navigation.catalog.administration.series" +msgstr "Collection" + +msgid "navigation.infoForAuthors" +msgstr "Pour les auteur·e·s" + +msgid "navigation.infoForLibrarians" +msgstr "Pour les bibliothécaires" + +msgid "navigation.infoForAuthors.long" +msgstr "Information pour les auteur·e·s" + +msgid "navigation.infoForLibrarians.long" +msgstr "Information pour les bibliothécaires" + +msgid "navigation.newReleases" +msgstr "Nouveautés" + +msgid "navigation.published" +msgstr "Publié" + +msgid "navigation.wizard" +msgstr "Assistant" + +msgid "navigation.linksAndMedia" +msgstr "Liens et réseaux sociaux" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Lien vers votre catalogue." + +msgid "navigation.skip.spotlights" +msgstr "Passer aux titres à la une" + +msgid "navigation.navigationMenus.series.description" +msgstr "Lien vers une collection." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Catégorie" + +msgid "navigation.navigationMenus.category.description" +msgstr "Lien vers une catégorie." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Nouveautés" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Lien vers vos nouvelles parutions." + +msgid "context.contexts" +msgstr "Maisons d’édition" + +msgid "context.context" +msgstr "Maison d’édition" + +msgid "context.current" +msgstr "Maison d’édition actuelle :" + +msgid "user.authorization.representationNotFound" +msgstr "Le format de publication demandé n’a pas été trouvé." + +msgid "user.noRoles.submitMonograph" +msgstr "Soumettre une proposition" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Soumettre une monographie : l’enregistrement des auteur·e·s est actuellement " +"désactivé." + +msgid "user.noRoles.regReviewer" +msgstr "S’inscrire en tant qu’évaluateur·rice" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Oui, demande du rôle {$userGroup}." + +msgid "user.register.contextsPrompt" +msgstr "Auprès de quelles maisons d’édition souhaitez-vous vous enregistrer ?" + +msgid "user.register.otherContextRoles" +msgstr "Demander les rôles suivants." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Si vous avez demandé à être évaluateur ou évaluatrice pour une maison d’" +"édition, veuillez indiquer vos domaines d’intérêt." + +msgid "user.role.manager" +msgstr "Gestionnaire" + +msgid "user.role.pressEditor" +msgstr "Responsable d’édition" + +msgid "user.role.subEditor" +msgstr "Responsable de collection" + +msgid "user.role.copyeditor" +msgstr "Éditeur·rice" + +msgid "user.role.productionEditor" +msgstr "Responsable de production" + +msgid "user.role.managers" +msgstr "Gestionnaires" + +msgid "user.role.subEditors" +msgstr "Responsables de collection" + +msgid "user.role.copyeditors" +msgstr "Éditeur·rice·s" + +msgid "user.role.proofreaders" +msgstr "Correcteurs/trices d’épreuves" + +msgid "user.role.productionEditors" +msgstr "Responsables de production" + +msgid "user.register.selectContext" +msgstr "Sélectionner une maison d’édition à laquelle vous enregistrer :" + +msgid "user.register.privacyStatement" +msgstr "Déclaration de confidentialité" + +msgid "user.register.registrationDisabled" +msgstr "" +"Cette maison d’édition n’accepte pas pour l’instant d’inscriptions " +"d’utilisateurs." + +msgid "user.register.readerDescription" +msgstr "Notifié par courriel lors de la publication d’une monographie." + +msgid "user.register.authorDescription" +msgstr "Possibilité de soumettre des éléments à la maison d’édition." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "" +"Disposé à faire des évaluations par les pairs des soumissions à la maison " +"d’édition." + +msgid "user.register.reviewerInterests" +msgstr "" +"Identifier les intérêts d’évaluation (questions de fond et méthodes de " +"recherche) :" + +msgid "user.register.form.userGroupRequired" +msgstr "Vous devez sélectionner au moins un rôle" + +msgid "site.noPresses" +msgstr "Il n’y a pas de maison d’édition disponible." + +msgid "site.pressView" +msgstr "Voir le site de l’éditeur" + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} ou {$viewSubmissions}." + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Dans le cadre de ce processus, les auteur·e·s doivent vérifier que leur " +"soumission est conforme aux directives suivantes. Les propositions qui ne " +"les respectent pas peuvent être renvoyées à leurs auteur·e·s." + +msgid "about.aboutOMPPress" +msgstr "" +"Cette maison d’édition utilise Open Monograph Press {$ompVersion}, un " +"logiciel de gestion et d’édition à code source libre développé, pris en " +"charge et distribué librement par le Public Knowledge Project sous la " +"license publique générale GNU. Visitez le site Web de PKP pour en apprendre plus sur l’application. Veuillez contacter la maison d’édition directement pour " +"toute question sur les publications ou les soumissions." + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Pour une prise en charge complète d’Unicode (UTF-8), sélectionner UTF-8 pour " +"tous les paramètres de jeux de caractères. Veuillez noter que cette prise en " +"charge exige actuellement un serveur de base de données MySQL >= 4.1.1 ou " +"PostgreSQL >= 7.1. Veuillez aussi noter que la prise en charge complète d’" +"Unicode exige PHP >= 4.3.0 compilé avec le soutien pour la bibliothèquembstring(activée " +"par défaut dans les plus récentes installations PHP). Vous aurez peut-être " +"des problèmes à utiliser les jeux de caractères étendus si votre serveur ne " +"répond pas à ces exigences.\n" +"

      \n" +"Actuellement, votre serveur prend en charge mbstring : " +"{$supportsMBString}" + +msgid "log.review.reviewDueDateSet" +msgstr "" +"La date d’échéance pour le cycle {$round} d’évaluation de la soumission " +"{$submissionId} par {$reviewerName} a été établie à {$dueDate}." + +msgid "log.editor.restored" +msgstr "La soumission {$submissionId} a été replacé en file d’attente." + +msgid "notification.removedPublicationDate" +msgstr "La date de publication a été supprimée." + +msgid "about.aboutOMPSite" +msgstr "" +"Cette maison d’édition utilise Open Monograph Press {$ompVersion}, un " +"logiciel de gestion et d’édition à code source libre développé, pris en " +"charge et distribué librement par le Public Knowledge Project sous la " +"license publique générale GNU. Visitez le site Web de PKP pour en apprendre plus sur l’application. Veuillez " +"contacter directement le site pour toute question concernant ses maisons d’" +"édition et les soumissions." + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

      IMPORTANT!

      \n" +"

      L’installateur n’a pas pu écraser automatiquement le fichier de " +"configuration. Avant de tenter d’utiliser le système, veuillez ouvrir " +"config.inc.php dans un éditeur de texte approprié et remplacer son " +"contenu par le contenu de la zone de texte ci-dessous.

      " + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} a marqué le cycle {$round} d’évaluation pour la soumission " +"{$submissionId} comme non considéré." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} a assigné {$proofreaderName} à la correction d’épreuves de " +"la soumission {$submissionId}." + +msgid "notification.removedPublicationFormat" +msgstr "Le format de publication a été supprimé." + +msgid "notification.removedSalesRights" +msgstr "Les droits de vente ont été supprimés." + +msgid "installer.preInstallationInstructions" +msgstr "" +"

      1. Les fichiers et répertoires suivants (et leur contenu) doivent être " +"accessibles en écriture :

      \n" +"\t\t
        \n" +"\t\t\t
      • config.inc.php est accessible en écriture (optionnel) : " +"{$writable_config}
      • \n" +"\t\t\t
      • public/ est accessible en écriture : " +"{$writable_public}
      • \n" +"\t\t\t
      • cache/ est accessible en écriture : {$writable_cache}
      • " +"\n" +"\t\t\t
      • cache/t_cache/ est accessible en écriture : " +"{$writable_templates_cache}
      • \n" +"\t\t\t
      • cache/t_compile/ est accessible en écriture : " +"{$writable_templates_compile}
      • \n" +"\t\t\t
      • cache/_db est accessible en écriture : " +"{$writable_db_cache}
      • \n" +"\t\t
      \n" +"\n" +"\t\t

      2. Vous devez créer un répertoire pour conserver les fichiers " +"téléchargés et il doit être accessible en écriture (voir « Paramètres du " +"fichier » ci-dessous).

      " + +msgid "installer.installationComplete" +msgstr "" +"

      L’installation de l’OMP s’est achevée avec succès.

      \n" +"

      Pour commencer à utiliser le système, connectez-" +"vous avec le nom d’utilisateur et le mot de passe saisis à la page " +"précédente.

      \n" +"

      Visitez notre forum " +"communautaire ou inscrivez-vous à notre bulletin d’information pour les " +"développeurs afin de recevoir des avis de sécurité et des mises à jour " +"sur les prochaines versions, les nouveaux modules et les fonctionnalités " +"prévues.

      " + +msgid "notification.removedMarket" +msgstr "Le marché a été supprimé." + +msgid "notification.savedCatalogMetadata" +msgstr "Les métadonnées du catalogue ont été sauvegardées." + +msgid "notification.type.submissionSubmitted" +msgstr "Une nouvelle monographie, « {$title} », a été soumise." + +msgid "notification.type.submissions" +msgstr "Événements de soumission" + +msgid "notification.type.editorAssignmentTask" +msgstr "" +"Une nouvelle monographie a été soumise et un·e éditeur·rice doit être " +"assigné." + +msgid "notification.type.approveSubmission" +msgstr "" +"Cette soumission est en attente d’approbation dans l’outil d’entrée de " +"catalogue avant d’apparaitre dans le catalogue public." + +msgid "payment.directSales.price.description" +msgstr "" +"Les formats de fichiers peuvent être disponibles pour le téléchargement à " +"partir du site web de la maison d’édition, en accès libre sans frais pour " +"les lecteur·rice·s ou en vente directe (à l’aide d’un système de paiement en " +"ligne, tel que configuré dans la section Distribution). Pour ce fichier, " +"indiquez la base d’accès." + +msgid "search.results.orderBy.press" +msgstr "Nom de la maison d’édition" + +msgid "installer.installationInstructions" +msgstr "" +"

      Merci d’avoir téléchargé Open Monograph Press {$version} " +"du Public Knowledge Project. Avant de poursuivre, veuillez lire le fichier " +"README inclus dans ce logiciel. Pour " +"plus d’informations sur le Public Knowledge Project et ses projets " +"logiciels, veuillez consulter le site web PKP. Si vous avez des rapports de bogues ou des " +"demandes d’assistance technique concernant Open Monograph Press, consultez " +"le forum " +"d’assistance ou le système de rapport de bogues en ligne de PKP. Bien que " +"le forum d’assistance soit la méthode de contact préférée, vous pouvez " +"également envoyer un courriel à l’équipe à l’adresse pkp.contact@gmail.com.

      " + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"La monographie ne sera pas répertoriée dans le catalogue tant qu’elle n’aura " +"pas été publiée. Pour ajouter ce livre au catalogue, cliquez sur l’onglet " +"Publication." + +msgid "payment.directSales.monograph.name" +msgstr "Acheter la monographie ou télecharger le chapitre" + +msgid "user.authorization.monographReviewer" +msgstr "" +"L’accès vous a été refusé car vous ne semblez pas être un évaluateur ou une " +"évaluatrice désignée pour cette monographie." + +msgid "payment.directSales.monograph.description" +msgstr "" +"Cette transaction concerne l’achat d’un téléchargement direct d’une " +"monographie ou d’un chapitre de monographie." + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Vous essayez d’accéder à une monographie qui ne fait pas partie de votre " +"collection." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Accès refusé ! Le groupe d’utilisateurs sous lequel vous agissez " +"actuellement n’a pas été assigné à cette étape du flux de travail. Veuillez " +"vérifier les paramètres de votre maison d’édition." + +msgid "installer.upgradeInstructions" +msgstr "" +"

      OMP Version {$version}

      \n" +"\n" +"

      Merci d’avoir téléchargé Open Monograph Press du Public " +"Knowledge Project. Avant de procéder, veuillez lire les fichiers README et UPGRADE de ce logiciel. Pour de plus amples renseignements sur le " +"Public Knowledge Project et ses projets de logiciels, veuillez consulter le " +"site Web du PKP. Si " +"vous rencontrez des bogues ou avez des questions d’ordre technique à poser à " +"Open Monograph Press, consultez le forum ou consultez le système de rapport sur les bogues. " +"Bien que le forum soit le mode préféré de communication, vous pouvez " +"également envoyer un courriel à l’équipe au pkp.contact@gmail.com.

      \n" +"

      On recommande fortement que vous conserviez une copie de " +"sauvegarde de votre base de données, de vos répertoires de fichiers et de " +"votre répertoire d’installation OMP avant de continuer.

      " + +msgid "about.pressContact" +msgstr "Contacter l’éditeur" + +msgid "about.aboutContext" +msgstr "À propos de la maison d’édition" + +msgid "about.editorialTeam" +msgstr "Équipe éditoriale" + +msgid "about.editorialPolicies" +msgstr "Politiques éditoriales" + +msgid "about.focusAndScope" +msgstr "Énoncé de mission" + +msgid "about.seriesPolicies" +msgstr "Politiques relatives aux collections et aux catégories" + +msgid "about.submissions" +msgstr "Soumissions" + +msgid "about.onlineSubmissions" +msgstr "Soumissions en ligne" + +msgid "about.onlineSubmissions.login" +msgstr "Se connecter" + +msgid "about.onlineSubmissions.register" +msgstr "Enregistrer" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "" +"{$login} à un compte existant ou {$register} un nouveau compte pour faire " +"une soumission." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Faire une nouvelle soumission" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "Voir vos soumissions en attente" + +msgid "about.authorGuidelines" +msgstr "Directives aux auteures et auteurs" + +msgid "about.submissionPreparationChecklist" +msgstr "Liste de vérification de la soumission" + +msgid "about.copyrightNotice" +msgstr "Mention de droit d’auteur" + +msgid "about.privacyStatement" +msgstr "Déclaration de confidentialité" + +msgid "about.reviewPolicy" +msgstr "Processus d’évaluation par les pairs" + +msgid "about.publicationFrequency" +msgstr "Périodicité" + +msgid "about.openAccessPolicy" +msgstr "Politiques sur le libre accès" + +msgid "about.pressSponsorship" +msgstr "Parrainage de la maison d’édition" + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Processus éditorial et d’édition d’OMP" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Plus d’informations sur le système de publication, la plate-forme et le flux " +"de travail d’OMP/PKP." + +msgid "about.aboutSoftware" +msgstr "À propos d’Open Monograph Press" + +msgid "help.searchReturnResults" +msgstr "Retourner aux résultats de recherche" + +msgid "help.goToEditPage" +msgstr "Ouvrir une nouvelle page pour modifier ces informations" + +msgid "installer.appInstallation" +msgstr "Installation d’OMP" + +msgid "installer.ompUpgrade" +msgstr "Mise à jour d’OMP" + +msgid "installer.installApplication" +msgstr "Installer Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Si vous mettez à niveau une installation existante d’OMP, Cliquez ici ." + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Étapes de pré-installation" + +msgid "installer.allowFileUploads" +msgstr "" +"Votre serveur permet actuellement le téléchargement de fichiers : " +"{$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Votre serveur permet actuellement le téléchargement de fichiers : " +"{$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"La langue principale à utiliser dans ce système. Veuillez consulter la " +"documentation d’OMP si vous êtes intéressé par la prise en charge de langues " +"qui ne figurent pas dans cette liste." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Sélectionnez les langues supplémentaires à prendre en charge dans ce " +"système. Ces langues seront disponibles pour les maisons d’édition hébergées " +"sur le site. Des langues supplémentaires peuvent également être installées à " +"tout moment à partir de l’interface d’administration du site. Les langues " +"marquées d’un astérisque (*) peuvent être incomplètes." + +msgid "installer.filesDirInstructions" +msgstr "" +"Saisir le chemin d’accès complet à un répertoire existant dans lequel les " +"fichiers téléchargés doivent être conservés. Ce répertoire ne doit pas être " +"directement accessible par le web. Veuillez vous assurer que ce " +"répertoire existe et qu’il est accessible en écriture avant l’installation. Les noms de chemin Windows doivent utiliser des barres obliques, " +"par exemple « C:/mypress/files »." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP nécessite l’accès à une base de données SQL pour stocker ses données. " +"Voir la configuration nécessaire ci-dessus pour une liste des base de " +"données prises en charge. Dans les champs ci-dessus, fournir les paramètres " +"à utiliser pour se connecter à la base de données." + +msgid "installer.upgradeApplication" +msgstr "Mise à jour d’Open Monograph Press" + +msgid "installer.upgradeComplete" +msgstr "" +"

      La mise à jour d’OMP vers la version {$version} a été effectuée avec " +"succès.

      \n" +"

      N’oubliez pas de remettre le paramètre « installed » dans votre fichier " +"de configuration config.inc.php sur On.

      \n" +"

      Visitez notre forum " +"communautaire ou inscrivez-vous à notre bulletin d’information pour les " +"développeurs afin de recevoir des avis de sécurité et des mises à jour " +"sur les prochaines versions, les nouveaux modules et les fonctionnalités " +"prévues.

      " + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} a refusé le cycle {$round} d’évaluation de la soumission " +"{$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} a accepté le cycle {$round} d’évaluation de la soumission " +"{$submissionId}." + +msgid "log.editor.decision" +msgstr "" +"Une décision de l’éditeur·rice ({$decision}) pour la monographie " +"{$submissionId} a été enregistré par {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"Une recommendation de l’éditeur·rice ({$decision}) pour la monographie " +"{$submissionId} a été enregistré par {$editorName}." + +msgid "log.editor.archived" +msgstr "La soumission {$submissionId} a été archivée." + +msgid "log.editor.editorAssigned" +msgstr "" +"{$editorName} a été assigné comme éditeur·rice de la soumission " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "" +"{$proofreaderName} a soumis {$submissionId} pour sa planification au " +"calendrier." + +msgid "log.imported" +msgstr "{$userName} a importé la monographie {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Un code d’identification a été ajouté." + +msgid "notification.editedIdentificationCode" +msgstr "Le code d’identification a été modifié." + +msgid "notification.removedIdentificationCode" +msgstr "Le code d’identification a été supprimé." + +msgid "notification.addedPublicationDate" +msgstr "Une date de publication a été ajoutée." + +msgid "notification.editedPublicationDate" +msgstr "La date de publication a été modifiée." + +msgid "notification.addedPublicationFormat" +msgstr "Le format de publication a été ajouté." + +msgid "notification.editedPublicationFormat" +msgstr "Le format de publication a été modifié." + +msgid "notification.addedSalesRights" +msgstr "Des droits de vente ont été ajoutés." + +msgid "notification.editedSalesRights" +msgstr "Les droits de vente ont été modifiés." + +msgid "notification.addedRepresentative" +msgstr "Un représentant a été ajouté." + +msgid "notification.editedRepresentative" +msgstr "Le représentant a été modifié." + +msgid "notification.removedRepresentative" +msgstr "Le représentant a été supprimé." + +msgid "notification.addedMarket" +msgstr "Un marché a été ajouté." + +msgid "notification.editedMarket" +msgstr "Le marché a été modifié." + +msgid "notification.addedSpotlight" +msgstr "Ajout à la rubrique « À la une »." + +msgid "notification.editedSpotlight" +msgstr "Un titre à la une a été modifié." + +msgid "notification.removedSpotlight" +msgstr "Un titre à la une a été supprimé." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Les métadonnées du format de publication ont été sauvegardées." + +msgid "notification.proofsApproved" +msgstr "Épreuves approuvées." + +msgid "notification.removedSubmission" +msgstr "La soumission a été supprimée." + +msgid "notification.type.editing" +msgstr "Événements d’édition" + +msgid "notification.type.reviewing" +msgstr "Événements d’évaluation" + +msgid "notification.type.site" +msgstr "Événements du site" + +msgid "notification.type.public" +msgstr "Annonces publiques" + +msgid "notification.type.copyeditorRequest" +msgstr "On vous a demandé de réviser les corrections dans « {$file} »." + +msgid "notification.type.layouteditorRequest" +msgstr "" +"Vous avez été invité à réviser la mise en page pour le titre « {$title} »." + +msgid "notification.type.indexRequest" +msgstr "Vous avez été invité à créer un index pour « {$title} »." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Le processus d’évaluation interne a commencé." + +msgid "notification.type.approveSubmissionTitle" +msgstr "En attente d’approbation." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Aucun mode de paiement n’a été configuré." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Il faut configurer un mode de paiement avant de définir les paramètres de " +"commerce électronique." + +msgid "notification.type.visitCatalogTitle" +msgstr "Gestion du catalogue" + +msgid "notification.type.visitCatalog" +msgstr "" +"La monographie a été approuvée. Veuillez consulter la page Marketing et " +"Publication pour gérer ses détails dans le catalogue, en utilisant les liens " +"ci-dessus." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"L'accès vous a été refusé car il apparaît que vous n'êtes pas un évaluateur " +"ou une évaluatrice valide pour cette monographie." + +msgid "user.authorization.monographAuthor" +msgstr "" +"L’accès vous a été refusé car vous ne semblez pas être l’auteur·e de cette " +"monographie." + +msgid "user.authorization.monographFile" +msgstr "L’accès au fichier de la monographie spécifiée vous a été refusé." + +msgid "user.authorization.invalidMonograph" +msgstr "Vous avez demandé une monographie non valide ou inexistante !" + +msgid "user.authorization.noContext" +msgstr "Aucune maison d’édition correspondant à votre demande n’a été trouvée." + +msgid "notification.type.userComment" +msgstr "Un·e lecteur·rice a fait un commentaire sur « $title} »." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" +"Accès refusé ! Vous n’avez pas été assigné à cette étape du flux de travail." + +msgid "payment.directSales" +msgstr "Télécharger à partir du site de la maison d’édition" + +msgid "payment.directSales.price" +msgstr "Prix" + +msgid "payment.directSales.availability" +msgstr "Disponibilité" + +msgid "payment.directSales.catalog" +msgstr "Catalogue" + +msgid "payment.directSales.approved" +msgstr "Approuvé" + +msgid "payment.directSales.priceCurrency" +msgstr "Prix ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "" +"Les prix doivent être uniquement numériques. Ne pas inclure de symboles " +"monétaires." + +msgid "payment.directSales.directSales" +msgstr "Ventes directes" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Pas disponible" + +msgid "payment.directSales.notSet" +msgstr "Non configuré" + +msgid "payment.directSales.openAccess" +msgstr "Accès libre" + +msgid "payment.directSales.validPriceRequired" +msgstr "Un prix numérique valide est requis." + +msgid "payment.directSales.purchase" +msgstr "Achat ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Télécharger {$format}" + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Rechargement du fichier de correspondance de l’aide XML {$filename} à la " +"recherche de {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Livre" + +msgid "submission.pdf.download" +msgstr "Télécharger ce document PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Enregistrement auprès d’autres maisons d’édition" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Masquer les autres maisons d’édition" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Une soumission publiée non valide a été spécifiée." + +msgid "catalog.coverImageTitle" +msgstr "Image de la page de couverture" + +msgid "grid.catalogEntry.chapters" +msgstr "Chapitres" + +msgid "search.results.orderBy.article" +msgstr "Titre de l’article" + +msgid "search.results.orderBy.author" +msgstr "Auteur·e" + +msgid "search.results.orderBy.date" +msgstr "Date de publication" + +msgid "search.results.orderBy.monograph" +msgstr "Titre de la monographie" + +msgid "search.results.orderBy.popularityAll" +msgstr "Popularité (global)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Popularité (dernier mois)" + +msgid "search.results.orderBy.relevance" +msgstr "Pertinence" + +msgid "search.results.orderDir.asc" +msgstr "Croissant" + +msgid "search.results.orderDir.desc" +msgstr "Décroissant" + +msgid "section.section" +msgstr "Collection" + +msgid "search.cli.rebuildIndex.indexing" +msgstr "Indexation de « {$pressName} »" + +msgid "search.cli.rebuildIndex.unknownPress" +msgstr "" +"Le chemin d'accès à la maison d'édition « {$pressPath} » n'a pas pu être " +"résolu en une maison d'édition." + +msgid "search.cli.rebuildIndex.indexingByPressNotSupported" +msgstr "" +"Cette fonctionnalité de recherche ne permet pas la réindexation par éditeur." diff --git a/locale/fr_FR/manager.po b/locale/fr_FR/manager.po new file mode 100644 index 00000000000..6536a2e1e16 --- /dev/null +++ b/locale/fr_FR/manager.po @@ -0,0 +1,1787 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +# Germán Huélamo Bautista , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-05-31 17:17+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Ceci remplacera tous les éventuels paramètres régionaux de la maison d’" +"édition précédemment spécifiés pour ce paramètre régional" + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Assurez-vous qu’au moins une case a été cochée pour chaque tâche assignée au/" +"à la responsable de collection." + +msgid "manager.languages.noneAvailable" +msgstr "" +"Désolé, aucune autre langue n’est disponible. Contactez l’administrateur du " +"site si vous souhaitez ajouter d’autres langues à cette maison d’édition." + +msgid "manager.series.submissionsToThisSection" +msgstr "Soumissions envoyées pour cette collection" + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Cette langue sera la langue par défaut du site de la maison d’édition." + +msgid "manager.series.form.reviewFormId" +msgstr "" +"Merci de vérifier que vous avez choisi un formulaire d’évaluation valide." + +msgid "manager.series.submissionIndexing" +msgstr "Ne sera pas inclus dans l’index de la maison d’édition" + +msgid "manager.series.editorRestriction" +msgstr "" +"Seuls les responsables éditoriaux et les responsables de collection peuvent " +"soumettre de nouveaux éléments." + +msgid "manager.series.confirmDelete" +msgstr "Voulez-vous vraiment supprimer définitivement cette collection ?" + +msgid "manager.series.indexed" +msgstr "Indexé" + +msgid "manager.series.open" +msgstr "Soumissions actives" + +msgid "manager.series.readingTools" +msgstr "Outils de lecture" + +msgid "manager.series.submissionReview" +msgstr "Ne sera pas évalué par les pairs" + +msgid "manager.series.abstractsNotRequired" +msgstr "N’exige pas de résumé" + +msgid "manager.series.disableComments" +msgstr "Désactiver les commentaires des lecteur·rice·s pour cette collection." + +msgid "manager.series.book" +msgstr "Collection de livres" + +msgid "manager.series.create" +msgstr "Créer une collection" + +msgid "manager.series.policy" +msgstr "Description de la collection" + +msgid "manager.series.assigned" +msgstr "Responsables pour cette collection" + +msgid "emailTemplate.variable.context.contextAcronym" +msgstr "Initiales de la maison d’édition" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "L’adresse mail du contact principal de la maison d’édition" + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "L’adresse postale de la maison d’édition" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "Nom du type de paiement" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Montant dû" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "Monnaie du montant dû, par exemple EUR" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Nom du site web lorsque plusieurs maisons d’édition sont hébergées" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "Le lien vers la page des statistiques sur les livres" + +msgid "mailable.validateEmailContext.name" +msgstr "Valider l’e-mail (enregistrement auprès de la maison d’édition)" + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "DOI" + +msgid "doi.description" +msgstr "" +"Ce module permet d’attribuer des identifiants d’objets numériques (DOI) aux " +"monographies, chapitres, formats de publication et fichiers dans OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI :" + +msgid "doi.manager.settings.description" +msgstr "" +"Veuillez configurer le module DOI afin de gérer et utiliser les DOI dans OMP " +":" + +msgid "doi.manager.settings.explainDois" +msgstr "Veuillez choisir les objets publiés auxquels seront attribués des DOI :" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monographies" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Chapitres" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Formats de publication" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Fichiers" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Préfixe DOI" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "Le préfixe DOI est obligatoire et doit être sous la forme 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Par exemple, press%ppub%r pourrait créer un DOI tel que 10.1234/" +"pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "pour des livres" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "pour des chapitres" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "pour des formats de publication" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "pour des fichiers" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Merci de saisir le modèle de suffixe DOI pour les livres." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Merci de saisir le modèle de suffixe DOI pour les chapitres." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "" +"Merci de saisir le modèle du suffixe DOI pour les formats de publication." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Merci de saisir le modèle du suffixe DOI pour les fichiers." + +msgid "doi.manager.settings.doiReassign" +msgstr "Réassigner les DOI" + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Voulez-vous supprimer l’ensemble des DOI existants ?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "Le DOI doit commencer par {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Attribuer" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "chapitre" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "format de publication" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "livre" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "fichier" + +msgid "doi.editor.customSuffixMissing" +msgstr "" +"Le DOI ne peut pas être attribué car le suffixe personnalisé est manquant." + +msgid "doi.editor.missingParts" +msgstr "" +"Vous ne pouvez pas générer un DOI parce qu’il manque des données dans une ou " +"plusieurs parties du modèle de DOI." + +msgid "doi.editor.patternNotResolved" +msgstr "Le DOI ne peut pas être attribué car il contient un modèle non résolu." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Ce que vous voyez est un aperçu du DOI. Cochez la case et enregistrez le " +"formulaire pour attribuer le DOI." + +msgid "doi.editor.assigned" +msgstr "Le DOI est attribué à cet objet : {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Le suffixe DOI attribué est déjà utilisé pour un autre élément publié. " +"Veuillez entrer un suffixe DOI unique pour chaque élément." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Supprimer" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Voulez-vous vraiment supprimer le DOI existant ?" + +msgid "doi.editor.assignDoi" +msgstr "Attribuer le DOI {$pubId} à cet objet de type {$pubObjectType}" + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"Le DOI {$pubId} ne peut pas être attribué car il contient un modèle non " +"résolu." + +msgid "doi.editor.assignDoi.assigned" +msgstr "Le DOI {$pubId} a été attribué." + +msgid "doi.editor.missingPrefix" +msgstr "Le DOI doit commencer par {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "Le DOI pour cette publication sera {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "Un DOI n’a pas été attribué pour cette publication." + +msgid "doi.editor.preview.chapters" +msgstr "Chapitre : {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Format de publication : {$title}" + +msgid "doi.editor.preview.files" +msgstr "Fichier : {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Élément" + +msgid "doi.manager.submissionDois" +msgstr "DOI de livres" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Ce courriel informe l’auteur·e que sa soumission est envoyée à l’étape d’" +"évaluation interne." + +msgid "manager.institutions.noContext" +msgstr "La maison d’édition de cet établissement n’a pas été trouvée." + +msgid "manager.manageEmails.description" +msgstr "" +"Modifier les messages envoyés dans les courriels de cette maison d’édition." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Envoyer pour évaluation interne" + +msgid "mailable.indexRequest.name" +msgstr "Index demandé" + +msgid "mailable.indexComplete.name" +msgstr "Index complété" + +msgid "mailable.layoutComplete.name" +msgstr "Épreuves terminées" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Nouvelle version créée" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" +"Ce courriel informe automatiquement les éditeur·rice·s désigné·e·s lorsqu’" +"une nouvelle version de la soumission a été créée." + +msgid "manager.series.unassigned" +msgstr "Responsables de collection disponibles" + +msgid "manager.sections.alertDelete" +msgstr "" +"Avant de pouvoir supprimer cette collection, vous devez déplacer les " +"soumissions associées à cette collection vers d’autres collections." + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Ces champs sont obligatoires pour publier des métadonnées ONIX valides." + +msgid "manager.people.allSiteUsers" +msgstr "Inscrire un utilisateur à cette maison d’édition à partir de ce site" + +msgid "manager.series.form.abbrevRequired" +msgstr "Un titre abrégé est requis pour cette collection." + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Les paiements seront activés pour cette maison d’édition. Veuillez noter que " +"les utilisateurs devront se connecter pour effectuer des paiements." + +msgid "manager.settings.publisherCodeType" +msgstr "Type de code de la maison d’édition" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Ce n’est pas un type de code éditeur valide." + +msgid "manager.people.confirmRemove" +msgstr "" +"Supprimer cet utilisateur de cette maison d’édition ? Cette action " +"désinscrira l’utilisateur de tous les rôles dans cette maison d’édition." + +msgid "manager.setup.details.description" +msgstr "" +"Nom de la maison d’édition, contacts, commanditaires, et moteurs de " +"recherche." + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Vues du résumé de la monographie" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Sélectionner un utilisateur à fusionner au compte d’un autre utilisateur (" +"par ex. : lorsque quelqu’un possède deux comptes utilisateur). Le compte " +"sélectionné en premier sera supprimé et ses soumissions, assignations, etc. " +"seront affectées au second compte." + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Veuillez inclure toute information sur votre maison d’édition susceptible d’" +"intéresser les lecteur·rice·s, les auteur·e·s ou les évaluateur·rice·s. Il " +"peut s’agir de votre politique de libre accès, de la portée et de l’objectif " +"de la maison d’édition, de la divulgation des sponsors et de l’histoire de " +"la maison d’édition." + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Afficher les livres à la une sur la page d’accueil" + +msgid "manager.tools.importExport" +msgstr "" +"Tous les outils associés spécifiquement à l’importation et à l’exportation " +"des données (maisons d’édition, monographies, utilisateurs)" + +msgid "manager.people.syncUserDescription" +msgstr "" +"La synchronisation de l’inscription inscrira tous·tes les utilisateur·rice·s " +"de la maison d’édition spécifiée dans cette maison d’édition, et le rôle qui " +"leur avait été assigné dans la maison d’édition spécifiée leur sera attribué " +"dans cette maison d’édition. Cette fonction permet de synchroniser un groupe " +"d’utilisateurs communs (ex. : évaluateur·rice·s) parmi les différentes " +"maisons d’édition." + +msgid "manager.setup.contextSummary" +msgstr "Résumé de la maison d’édition" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Utile lorsque la maison d’édition va au-delà des limites de la discipline ou " +"lorsque les auteur·e·s présentent des soumissions multidisciplinaires." + +msgid "manager.setup.enableDois.description" +msgstr "" +"Permettre l’attribution d’identificateurs d’objets numériques (DOI) aux " +"travaux publiés par cette maison d’édition." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Sélectionnez les types de travaux publiés par cette maison d’édition " +"auxquels des DOI doivent être attribués. La plupart des maisons d’édition " +"attribuent des DOI aux monographies/chapitres, mais il se peut que vous " +"souhaitiez attribuer des DOI à tous les documents publiés." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Afin d’envoyer des courriels non livrés à une adresse de rebond, l" +"’administrateur-trice du site Web doit activer l’option " +"allow_envelope_sender dans le fichier de configuration. Une " +"configuration particulière du serveur pourrait être requise, tel qu’indiqué " +"dans la documentation d’OMP." + +msgid "manager.people.confirmDisable" +msgstr "" +"Désactiver cet utilisateur ? Ceci empêchera l’utilisateur de se connecter au " +"système.\n" +"\n" +"Vous pouvez éventuellement fournir à l’utilisateur une raison expliquant la " +"désactivation de son compte." + +msgid "manager.setup.copyediting" +msgstr "Éditeur·rice·s" + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Vous ne possédez pas les droits administratifs vous permettant de modifier " +"cet utilisateur parce que :\n" +"\t\t
        \n" +"\t\t\t
      • L’utilisateur est un administrateur du site
      • \n" +"\t\t\t
      • L’utilisateur est actif dans des maisons d’édition que vous ne " +"gérez pas
      • \n" +"\t\t
      \n" +"\tCette tâche doit être effectuée par un administrateur du site.\n" +"\t" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Les directives pour la correction d’épreuves seront mises à la disposition " +"des éditeur·rice·s, auteur·e·s, maquettistes et responsables de collection à " +"l’étape d’édition de la soumission. Vous trouverez ci-dessous un ensemble de " +"directives par défaut en HTML, qui peuvent être modifiées ou remplacées par " +"le·la gestionnaire en tout temps (en HTML ou texte brut)." + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Des identifiants personnalisés seront utilisés pour identifier les éléments " +"publiés." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Des identifiants personnalisés seront utilisés pour identifier les épreuves (" +"par exemple, les fichiers HTML ou PDF) des articles publiés." + +msgid "manager.setup.information.description" +msgstr "" +"De brèves descriptions de la maison d’édition à l’intention des " +"bibliothécaires et des auteur·e·s et lecteur·rice·s potentiels. Elles sont " +"disponibles dans la barre latérale du site lorsque le bloc d’information a " +"été ajouté." + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Décrire aux auteur·e·s, aux lecteur·rice·s et aux bibliothécaires la gamme " +"de monographies et d’autres documents que publie la maison d’édition." + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Décrivez brièvement votre maison d’édition et identifiez les responsables " +"éditoriaux, les éditeur·rice·s et les autres membres de l’équipe éditoriale." + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Les instructions de mise en page peuvent être préparées pour la mise en " +"forme des livres publiés dans la maison d’édition et être saisies ci-dessous " +"en HTML ou en texte brut. Elles seront mises à la disposition du·de la " +"maquettiste et du·de la responsable de collection sur la page d’édition de " +"chaque soumission. Étant donné que chaque maison d’édition peut utiliser ses " +"propres formats de fichiers, normes bibliographiques, feuilles de style, " +"etc., aucun ensemble d’instructions par défaut n’est fourni." + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP se conforme à l’Open Archives Initiative Protocol for Metadata Harvesting, qui " +"constitue, à l’échelle mondiale, la nouvelle norme d’indexation des " +"ressources numériques issues de la recherche. Les auteur·e·s utiliseront un " +"modèle semblable pour fournir des métadonnées pour leur soumission. Le·La " +"gestionnaire devra sélectionner les catégories pour l’indexation et " +"présenter aux auteur·e·s et auteures des exemples pertinents afin de les " +"aider à indexer leur travail." + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Des modèles de chaque format standard publié par la maison d’édition (par " +"exemple, monographie, critique de livre, etc.) peuvent être téléchargés dans " +"la section Mise en page, dans tous les formats (par exemple, pdf, doc, etc.)" +". Ils contiennent des annotations sur la police de caractères, la taille, " +"les marges, etc. qui guideront les maquettistes et les correcteur·rice·s " +"d’épreuves." + +msgid "manager.setup.management.description" +msgstr "" +"Accès et sécurité, planification, annonces, édition, mise en page et " +"correction d’épreuves." + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Lorsque vous utilisez l’option Notifier l’auteur, ajoutez les adresses " +"électroniques de tous les coauteur·e·s pour les soumissions à auteur·e·s " +"multiples, et pas seulement celle de l’utilisateur qui envoie la soumission." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Le·La responsable éditorial ou de collection assigné·e à la soumission " +"vérifiera les épreuves." + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Veuillez inclure toute information sur votre maison d’édition susceptible d’" +"intéresser les lecteur·rice·s, les auteur·e·s ou les évaluateur·rice·s. Il " +"peut s’agir de votre politique de libre accès, de la portée et de l’objectif " +"de la maison d’édition, de la notice sur les droits d’auteur, de la " +"divulgation des sponsors et de l’histoire de la maison d’édition." + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Les directives pour la correction d’épreuves seront mises à la disposition " +"des correcteur·rice·s, auteur·e·s, maquettistes et responsables de " +"collection à l’étape d’édition de la soumission. Vous trouverez ci-dessous " +"un ensemble de directives par défaut en HTML, qui peuvent être modifiées ou " +"remplacées par le·la gestionnaire en tout temps (en HTML ou texte brut)." + +msgid "manager.setup.policies.description" +msgstr "" +"Orientation, évaluation par les pairs, rubriques, confidentialité, sécurité " +"et autres sujets connexes." + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"La page d’accueil de la maison d’édition est constituée par défaut de liens " +"de navigation. Il est possible d’ajouter du contenu à la page d’accueil en " +"utilisant une ou toutes les options suivantes, qui apparaîtront dans l’ordre " +"indiqué." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Cette page permet de configurer différents éléments de l’apparence de la " +"maison d’édition, notamment les éléments de l’en-tête et du pied de page, le " +"style et le thème de la maison d’édition, ainsi que la manière dont les " +"listes d’informations sont présentées aux utilisateurs." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Les éléments de la publication peuvent être publiés collectivement, dans le " +"cadre d’une monographie dotée de sa propre table des matières. Il est " +"également possible de publier des articles individuels dès qu’ils sont " +"prêts, en les ajoutant à la table des matières du volume « en cours ». Dans " +"la section « À propos de la maison d’édition », veuillez fournir aux " +"lecteur·rice·s une déclaration sur le système utilisé par la maison d’" +"édition et sur la fréquence de publication prévue." + +msgid "manager.setup.reviewPolicy" +msgstr "Politique d’évaluation" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Pour activer ces options, l’administrateur du site doit activer l’option " +"scheduled_tasks dans le fichier de configuration OMP. Il pourrait s’" +"avérer nécessaire d’intégrer d’autres configurations au serveur pour " +"supporter cette fonctionnalité (qui n’est peut-être pas possible sur tous " +"les serveurs), tel qu’indiqué dans les documents d’OMP." + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Fournir une brève description de la maison d’édition (entre 50 et 300 " +"caractères) que les moteurs de recherche peuvent afficher lorsqu’ils " +"incluent la maison d’édition dans les résultats de la recherche." + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Aider les moteurs de recherche comme Google à découvrir et à afficher votre " +"site. Nous vous encourageons à envoyer votre plan de site (sitemap)." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "Toujours afficher les liens des épreuves et indiquer l’accès restreint." + +msgid "manager.setup.stepsToPressSite" +msgstr "Cinq étapes pour configurer le site Web d’une maison d’édition" + +msgid "manager.setup.typeExamples" +msgstr "" +"(par exemple : Enquête historique ; Quasi-expérimental ; Analyse littéraire ;" +" Sondage/Entrevue)" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Un.e maquettiste sera nommé.e pour préparer les fichiers HTML, PDF, etc. " +"pour la publication électronique." + +msgid "manager.setup.subjectExamples" +msgstr "" +"(Par exemple : Photosynthèse ; Trous noirs ; Cartes en quadrichromie ; " +"Théorème de Bayes)" + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "S’agit-il d’un format physique (non numérique) ?" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Pour créer un nouveau format de publication, veuillez remplir le formulaire " +"ci-dessous et cliquer sur le bouton « Créer »." + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Liste des responsables éditoriaux et d’autres personnes associées à la " +"maison d’édition." + +msgid "manager.setup.genresDescription" +msgstr "" +"Ces genres sont utilisés pour nommer les fichiers et présentés dans un menu " +"déroulant lorsque les fichiers sont téléchargés. Les genres ## permettent à " +"l’utilisateur d’associer le fichier au livre entier 99Z ou à un chapitre " +"particulier par un chiffre (par exemple, 02)." + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Le prospectus est un document rédigé par la maison d’édition qui aide les " +"auteur·e·s à décrire les documents soumis de façon à ce que l’éditeur puisse " +"déterminer la valeur de la soumission. Un prospectus peut contenir plusieurs " +"éléments, comme les débouchés commerciaux ou la valeur théorique. Dans tous " +"les cas, la maison d’édition devrait rédiger un prospectus qui s’ajoutera à " +"son agenda de publication." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

      Mentions de droit d’auteurs de Creative Commons proposés

      \n" +"

      1. Politique proposée pour les maisons d’édition qui offrent l’accès " +"libre

      \n" +"Les auteur·e·s qui publient dans cette maison d’édition acceptent les termes " +"suivants :\n" +"
        \n" +"\t
      1. Les auteur·e·s conservent le droit d’auteur et accordent à la maison d’" +"édition le droit de première publication, l’ouvrage étant alors disponible " +"simultanément, sous la licence Licence d’attribution Creative " +"Commons permettant à d’autres de partager l’ouvrage tout en " +"reconnaissant la paternité et la publication initiale dans cette maison " +"d’édition.
      2. \n" +"\t
      3. Les auteur·e·s peuvent conclure des ententes contractuelles " +"additionnelles et séparées pour la diffusion non exclusive de la version de " +"l’ouvrage publiée par la maison d’édition (par ex., le dépôt institutionnel " +"ou la publication dans un livre), accompagné d’une mention reconnaissant sa " +"publication initiale dans cette maison d’édition.
      4. \n" +"\t
      5. Les auteur·e·s ont le droit et sont encouragés à publier leur ouvrage " +"en ligne (par ex., dans un dépôt institutionnel ou sur le site Web d’un " +"établissement) avant et pendant le processus de soumission, car cela peut " +"mener à des échanges fructueux ainsi qu’à un nombre plus important, plus " +"rapidement, de références à l’ouvrage publié (Voir The Effect of Open " +"Access).
      6. \n" +"
      \n" +"\n" +"

      Politique suggérée aux maison d’édition offrant l’accès libre " +"différé

      \n" +"Les auteurs publiant dans cette maison d’édition acceptent les termes " +"suivants :\n" +"
        \n" +"\t
      1. Les auteur·e·s détiennent le droit d’auteur et accordent à la maison d’" +"édition le droit de première publication, avec l’ouvrage disponible " +"simultanément [SPÉCIFIER LA PÉRIODE DE TEMPS] après publication, sous la " +"licence Licence d’attribution Creative Commons qui permet à d’autres de " +"partager l’ouvrage en reconnaissant la paternité et la publication initiale " +"dans cette revue.
      2. \n" +"\t
      3. Les auteur·e·s peuvent conclure des ententes contractuelles " +"additionnelles et séparées pour la diffusion non exclusive de la version de " +"l’ouvrage publiée par la maison d’édition (par ex., le dépôt institutionnel " +"ou la publication dans un livre), accompagné d’une mention reconnaissant sa " +"publication initiale dans cette maison d’édition.
      4. \n" +"\t
      5. Les auteur·e·s ont le droit et sont encouragés à publier leur ouvrage " +"en ligne (par ex., dans un dépôt institutionnel ou sur le site Web d’un " +"établissement) avant et pendant le processus de soumission, car cela peut " +"mener à des échanges fructueux ainsi qu’à un nombre plus important, plus " +"rapidement, de références à l’ouvrage publié (Consulter The Effect of Open Access).
      6. \n" +"
      " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Étapes : Soumission en attente > Soumission en évaluation > Soumission " +"en édition > Table des matières.

      \n" +"Choisissez un modèle pour gérer ces aspects du processus éditorial. Pour " +"nommer un·e responsable éditorial et les responsables de collection, allez " +"dans la rubrique Éditeurs dans Gestion de la maison d’édition." + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

      Afin de permettre aux lecteur·rice·s de repérer les versions en ligne de " +"l’ouvrage cité par un·e auteur·e, les options suivantes sont disponibles.

      " +"\n" +"\n" +"
        \n" +"\t
      1. Ajouter un outil de lecture

        Le·La responsable " +"éditorial peut ajouter « Trouver des références » aux Outils de lecture " +"accompagnant les articles publiés, pour permettre aux lecteur·rice·s d’" +"insérer le titre d’une référence et de rechercher l’ouvrage cité dans des " +"bases de données universitaires présélectionnées.

      2. \n" +"\t
      3. Liens incorporés dans les références

        Le·La " +"maquettiste peut ajouter un lien à des références en ligne, en suivant les " +"instructions suivantes (qui peuvent être modifiées).

      4. \n" +"
      " + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Le·La gestionnaire inscrit tous·tes les utilisateur·rice·s, alors que les " +"responsables éditoriaux et les responsables de collection ne peuvent " +"inscrire que les évaluateur·rice·s." + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "" +"Des rappels automatiques par courriel (disponibles dans les Courriels par " +"défaut d’OMP) peuvent être envoyés aux évaluateur·rice·s à deux moments " +"précis (à tout moment, le·la responsable éditorial peut également envoyer un " +"courriel à l’évaluateur·rice directement)" + +msgid "manager.setup.categories.description" +msgstr "" +"Vous pouvez créer une liste de catégories pour vous aider à organiser vos " +"publications. Les catégories sont des groupements de livres par sujet, comme " +"l’économie, la littérature, la poésie, etc. Les catégories peuvent être " +"encastrées dans des « catégories mères ». Par exemple, une catégorie mère " +"Économie peut contenir les catégories microéconomie et macroéconomie. Les " +"visiteurs pourront effectuer une recherche et naviguer le site de la maison " +"d’édition par catégorie." + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" +"Veuillez sélectionner la collection à laquelle vous souhaitez que cet " +"élément de menu soit lié." + +msgid "stats.context.tooltip.text" +msgstr "" +"Nombre de visiteurs ayant consulté la page d’index de la maison d’édition et " +"du catalogue." + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" +"Le nombre de pages vues de l’index de la maison d’édition et du catalogue." + +msgid "stats.publications.downloadReport.description" +msgstr "" +"Téléchargez une feuille de calcul CSV/Excel contenant les statistiques d’" +"utilisation des monographies correspondant aux paramètres suivants." + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Ce courriel est envoyé automatiquement chaque mois aux responsables de la " +"maison d’édition pour leur fournir un aperçu de l’intégrité du système." + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "" +"Un enregistrement de droit de vente a été ignoré parce qu’aucun pays ou " +"région ne lui a été attribué." + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Ce courriel est automatiquement envoyé à un nouvel utilisateur lors de son " +"inscription sur le site lorsque les paramètres exigent la validation de l’" +"adresse de courriel." + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Envoyer une copie de l’accusé de réception de la soumission au contact " +"principal de la maison d’édition." + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Si vous modifiez votre configuration DOI, les DOI ayant déjà été assignés ne " +"seront pas affectés. Une fois la configuration DOI sauvegardée, utilisez ce " +"bouton pour effacer tous les DOI existants afin que les nouveaux paramètres " +"puissent prendre effet à l’égard des objets existants." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Ce courriel informe l’auteur·e que sa soumission est refusée, avant d’être " +"envoyée pour évaluation, parce qu’elle ne remplit pas les conditions " +"requises pour être publiée par la maison d’édition." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"Cet courriel est envoyé aux responsables éditoriaux lorsqu’une nouvelle " +"soumission est faite et qu’aucun.e secrétaire d’édition n’est assigné·e." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Saisissez un modèle de suffixe DOI personnalisé pour chaque type de " +"publication. Le modèle de suffixe personnalisé peut utiliser les symboles " +"suivants :

      %p pour les initiales de la maison " +"d’édition
      %m pour l’identifiant de la " +"monographie
      %c pour l’identifiant du chapitre
      %f pour l’identifiant du format de publication
      %s pour l’" +"identifiant du fichier
      %x pour un numéro " +"personnalisé.

      Attention, les suffixes personnalisés entraînent " +"souvent des problèmes de génération et de dépôt des DOI. Lorsque vous " +"utilisez un modèle de suffixe personnalisé, vérifiez soigneusement que les " +"éditeurs peuvent générer des DOI et les déposer auprès d’une agence d’" +"enregistrement telle que Crossref. " + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Ajouter un·e responsable à cette collection à partir de la liste de " +"responsables de collection. Une fois ajouté, indiquez si le·la responsable " +"sera en charge de l’ÉVALUATION (évaluation par les pairs) et/ou du TRAVAIL " +"ÉDITORIAL (révision, mise en page et correction d’épreuves) des soumissions " +"de cette collection. Pour ajouter un·e responsable à la collection, il faut " +"cliquer Responsables de collection dans " +"la section Rôles des administrateurs de la maison d’édition." + +msgid "manager.series.hideAbout" +msgstr "" +"Omettre cette collection dans la rubrique « A propos de la maison d’édition " +"»." + +msgid "manager.series.form.titleRequired" +msgstr "Un titre est requis pour la collection." + +msgid "manager.series.noneCreated" +msgstr "Aucune collection n’a été créée." + +msgid "manager.series.existingUsers" +msgstr "Utilisateurs actuels" + +msgid "manager.series.seriesTitle" +msgstr "Titre de la collection" + +msgid "manager.series.restricted" +msgstr "" +"Ne pas autoriser les auteur·e·s à soumettre directement leurs textes à cette " +"collection." + +msgid "manager.payment.generalOptions" +msgstr "Options générales" + +msgid "manager.payment.success" +msgstr "Les paramètres de paiement ont été mis à jour." + +msgid "manager.settings" +msgstr "Paramètres" + +msgid "manager.settings.pressSettings" +msgstr "Paramètres de la maison d’édition" + +msgid "manager.settings.press" +msgstr "Maison d’édition" + +msgid "manager.settings.publisher.identity" +msgstr "Identité de la maison d’édition" + +msgid "manager.settings.publisher" +msgstr "Marque de la maison d’édition" + +msgid "manager.settings.location" +msgstr "Situation géographique" + +msgid "manager.settings.publisherCode" +msgstr "Code de la maison d’édition" + +msgid "manager.settings.distributionDescription" +msgstr "" +"Tous les paramètres associés au processus de distribution (avis, indexage, " +"archivage, paiement, outils de lecture)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Téléchargement des fichiers des monographies" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Résumé et téléchargements de la monographie" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Vues de la page d’accueil de la collection" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Vues de la page d’accueil de la maison d’édition" + +msgid "manager.tools" +msgstr "Outils" + +msgid "manager.tools.statistics" +msgstr "" +"Outils permettant de générer des rapports relatifs aux statistiques d’" +"utilisation (pages vues de l’index du catalogue, pages vues des résumés de " +"monographies, téléchargements de fichiers de monographies)" + +msgid "manager.users.availableRoles" +msgstr "Rôles disponibles" + +msgid "manager.users.currentRoles" +msgstr "Rôles actuels" + +msgid "manager.users.selectRole" +msgstr "Choisir un rôle" + +msgid "manager.people.allEnrolledUsers" +msgstr "Utilisateurs inscrits à cette maison d’édition" + +msgid "manager.people.allPresses" +msgstr "Toutes les maison d’édition" + +msgid "manager.people.allUsers" +msgstr "Tous les utilisateurs inscrits" + +msgid "manager.people.enrollExistingUser" +msgstr "Inscrire un utilisateur actuel" + +msgid "manager.people.enrollSyncPress" +msgstr "Avec la maison d’édition" + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Sélectionner un utilisateur à qui attribuer la paternité des textes, les " +"assignations d’édition etc. de l’utilisateur précédent." + +msgid "manager.system" +msgstr "Paramètres du système" + +msgid "manager.system.archiving" +msgstr "Archivage" + +msgid "manager.system.reviewForms" +msgstr "Formulaires d’évaluation" + +msgid "manager.system.readingTools" +msgstr "Outils de lecture" + +msgid "manager.system.payments" +msgstr "Paiements" + +msgid "user.authorization.pluginLevel" +msgstr "Vous n’avez pas de droits suffisants pour gérer ce module." + +msgid "manager.pressManagement" +msgstr "Administration de la maison d’édition" + +msgid "manager.setup" +msgstr "Configuration" + +msgid "manager.setup.aboutItemContent" +msgstr "Contenu" + +msgid "manager.setup.addAboutItem" +msgstr "Ajouter un élément À propos" + +msgid "manager.setup.addChecklistItem" +msgstr "Ajouter un élément à la liste de vérification" + +msgid "manager.setup.addItem" +msgstr "Ajouter un élément" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Ajouter un élément à afficher dans « À propos de la maison d’édition »" + +msgid "manager.setup.addNavItem" +msgstr "Ajouter un élément" + +msgid "manager.setup.addSponsor" +msgstr "Ajouter un commanditaire" + +msgid "manager.setup.announcements" +msgstr "Annonces" + +msgid "manager.setup.announcements.success" +msgstr "Les paramètres des annonces ont été mis à jour." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Des annonces peuvent être publiées pour informer les lecteur·rice·s de " +"nouvelles et d’événements relatifs à la maison d’édition. Les annonces " +"publiées apparaîtront sur la page des Annonces." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Informations complémentaires" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Saisissez toute information supplémentaire qui doit être affichée aux " +"lecteur·rice·s sur la page Annonces." + +msgid "manager.setup.appearInAboutPress" +msgstr "(À paraître dans « À propos de la maison d’édition ») " + +msgid "manager.setup.contextAbout" +msgstr "À propos de la maison d’édition" + +msgid "manager.setup.copyeditInstructions" +msgstr "Instructions d’édition" + +msgid "manager.setup.copyrightNotice" +msgstr "Avis de droits d’auteur" + +msgid "manager.setup.coverage" +msgstr "Couverture" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Hauteur maximale de l’image de la couverture" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Largeur maximale de l’image de la couverture" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Les images seront réduites si elles dépassent cette taille, mais ne seront " +"jamais agrandies ou étirées pour s’adapter à ces dimensions." + +msgid "manager.setup.customizingTheLook" +msgstr "Étape 5. Personnaliser l’apparence" + +msgid "manager.setup.customTags" +msgstr "Balises personnalisées" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Balises d’en-tête HTML personnalisées à insérer dans l’en-tête de chaque " +"page (par exemple, balises META)." + +msgid "manager.setup.details" +msgstr "Détails" + +msgid "manager.setup.discipline" +msgstr "Discipline et sous-disciplines académiques" + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(Par exemple : Histoire ; Éducation ; Sociologie ; Psychologie ; Études " +"culturelles ; Droit)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Donner des exemples de disciplines académiques pertinentes pour cette maison " +"d’édition" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Ajouter le sommaire pour la monographie courante (si disponible)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Contenu de la page d’accueil" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Livres à la une" + +msgid "manager.setup.displayInSpotlight" +msgstr "Afficher les livres à la une sur la page d’accueil" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "À la une" + +msgid "manager.setup.displayNewReleases" +msgstr "Afficher les nouvelles publications sur la page d’accueil" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Nouveautés" + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Utiliser les modèles par défaut :
      %p.%m pour des livres
      %p.%m.c%c " +"pour des chapitres
      %p.%m.%f pour des formats de publication
      %p.%m.%f.%s pour des fichiers." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "À l’étape de la correction d’épreuves" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Format / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Décision du·de la responsable éditorial" + +msgid "manager.setup.emailBounceAddress" +msgstr "Adresse de courriel pour les messages non délivrés" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Tout courriel non délivré entraînera un message d’erreur envoyé à cette " +"adresse." + +msgid "manager.setup.emails" +msgstr "Identification par courriel" + +msgid "manager.setup.emailSignature" +msgstr "Signature" + +msgid "manager.setup.emailSignature.description" +msgstr "" +"Les courriers électroniques envoyés automatiquement au nom de la maison d’" +"édition porteront la signature suivante." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Activer les annonces" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Des annonces peuvent être publiées pour informer les lecteur·rice·s de " +"nouvelles et d’événements. Les annonces publiées apparaîtront sur la page " +"Annonces." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Afficher sur la page d’accueil" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Préciser combien d’annonces doivent être affichées sur la page d’accueil. " +"Laissez ce champ vide pour n’en afficher aucune." + +msgid "manager.setup.enablePressInstructions" +msgstr "Permettre à cette revue d’apparaître publiquement sur le site" + +msgid "manager.setup.enableUserRegistration" +msgstr "" +"Les utilisateurs et utilisatrices peuvent s’inscrire eux-mêmes et elles-" +"mêmes à la maison d’édition." + +msgid "manager.setup.focusAndScope" +msgstr "Mission de la maison d’édition" + +msgid "manager.setup.focusScopeDescription" +msgstr "EXEMPLE DE DONNÉES HTML" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Aide aux auteur·e·s pour l’indexation de leur travail" + +msgid "manager.setup.form.contactEmailRequired" +msgstr "L’adresse de courriel du contact principal est obligatoire." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Le nom du contact principal est obligatoire." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Le courriel du soutien est obligatoire." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Le nom du soutien est obligatoire." + +msgid "manager.setup.generalInformation" +msgstr "Information générale" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Étape 1. Consignation des détails" + +msgid "manager.setup.guidelines" +msgstr "Directives" + +msgid "manager.setup.preparingWorkflow" +msgstr "Étape 3. Préparation du flux de travail" + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Le nombre d’évaluateur·rice·s par soumission est requis." + +msgid "manager.setup.focusScope" +msgstr "Objectif et portée" + +msgid "manager.setup.identity" +msgstr "Identité de la maison d’édition" + +msgid "manager.setup.information" +msgstr "Information" + +msgid "manager.setup.information.forAuthors" +msgstr "Pour les auteur·e·s" + +msgid "manager.setup.information.forLibrarians" +msgstr "Pour les bibliothécaires" + +msgid "manager.setup.information.forReaders" +msgstr "Pour les lecteur·rice·s" + +msgid "manager.setup.information.success" +msgstr "" +"Les informations relatives à cette maison d’édition ont été mises à jour." + +msgid "manager.setup.institution" +msgstr "Institution" + +msgid "manager.setup.itemsPerPage" +msgstr "Éléments par page" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Limiter le nombre d’éléments (par exemple : soumissions, utilisateurs ou " +"utilisatrices, ou assignations) à afficher dans une liste avant d’afficher " +"les éléments subséquents dans une autre page." + +msgid "manager.setup.keyInfo" +msgstr "Renseignements de base" + +msgid "manager.setup.labelName" +msgstr "Nom de l’étiquette" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Maquettistes" + +msgid "manager.setup.layoutInstructions" +msgstr "Instructions de mise en page" + +msgid "manager.setup.layoutTemplates" +msgstr "Modèles de mise en page" + +msgid "manager.setup.layoutTemplates.file" +msgstr "Fichier modèle" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Titre" + +msgid "manager.setup.lists" +msgstr "Listes" + +msgid "manager.setup.lists.success" +msgstr "Les paramètres de liste ont été mis à jour." + +msgid "manager.setup.look" +msgstr "Apparence" + +msgid "manager.setup.look.description" +msgstr "" +"En-tête de la page d’accueil, contenu, en-tête de la maison d’édition, pied " +"de page, barre de navigation, et feuille de style." + +msgid "manager.setup.settings" +msgstr "Paramètres" + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Gestion des étapes éditoriales de base" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Configuration de la gestion et de la publication" + +msgid "manager.setup.managingThePress" +msgstr "Étape 4. Gestion des paramètres" + +msgid "manager.setup.masthead.success" +msgstr "Les détails de l’en-tête de cette maison d’édition ont été mis à jour." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Aucun fichier d’image téléchargé." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Aucune feuille de style téléchargée." + +msgid "manager.setup.note" +msgstr "Note" + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"La révision est effectuée par l'éditeur·rice ou le·la responsable de " +"collection assigné·e à la soumission." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Le·La responsable éditorial ou le·la responsable de collection assigné·e à " +"la soumission préparera les fichiers HTML, PDF, etc." + +msgid "manager.setup.numPageLinks" +msgstr "Liens" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Limiter le nombre de liens à afficher sur les pages subséquentes dans une " +"liste." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Accéder au contenu de la maison d’édition" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN en ligne" + +msgid "manager.setup.policies" +msgstr "Politiques" + +msgid "manager.setup.privacyStatement.success" +msgstr "La déclaration de confidentialité a été mise à jour." + +msgid "manager.setup.pressDescription" +msgstr "Description de la maison d’édition" + +msgid "manager.setup.pressDescription.description" +msgstr "Une brève description de votre maison d’édition." + +msgid "manager.setup.aboutPress" +msgstr "À propos de la maison d’édition" + +msgid "manager.setup.pressArchiving" +msgstr "Archivage de la maison d’édition" + +msgid "manager.setup.homepageContent" +msgstr "Contenu de la page d’accueil de la maison d’édition" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"La page d’accueil de la maison d’édition est constituée par défaut de liens " +"de navigation. Il est possible d’ajouter du contenu à la page d’accueil en " +"utilisant une ou toutes les options suivantes, qui apparaîtront dans l’ordre " +"indiqué." + +msgid "manager.setup.pressHomepageContent" +msgstr "Contenu de la page d’accueil de la maison d’édition" + +msgid "manager.setup.contextInitials" +msgstr "Initiales de la maison d’édition" + +msgid "manager.setup.selectCountry" +msgstr "" +"Sélectionnez le pays où est domiciliée cette maison d’édition, ou le pays " +"correspondant à l’adresse postale de la maison d’édition ou de l’éditeur." + +msgid "manager.setup.layout" +msgstr "Mise en page de la maison d’édition" + +msgid "manager.setup.pageHeader" +msgstr "En-tête de la page de la maison d’édition" + +msgid "manager.setup.pressPolicies" +msgstr "Étape 2. Politiques de la maison d’édition" + +msgid "manager.setup.pressSetup" +msgstr "Paramètres de la maison d’édition" + +msgid "manager.setup.pressSetupUpdated" +msgstr "La configuration de votre maison d’édition a été mise à jour." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Feuille de style non valide. Le format accepté est .css." + +msgid "manager.setup.pressTheme" +msgstr "Thème de la maison d’édition" + +msgid "manager.setup.pressThumbnail" +msgstr "Miniature de la maison d’édition" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Un petit logo de la maison d’édition qui peut être utilisé dans les listes " +"de maisons d’édition." + +msgid "manager.setup.contextTitle" +msgstr "Nom de la maison d’édition" + +msgid "manager.setup.printIssn" +msgstr "ISSN imprimé" + +msgid "manager.setup.proofingInstructions" +msgstr "Directives pour la correction d’épreuves" + +msgid "manager.setup.proofreading" +msgstr "Correcteurs/trices d’épreuves" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Fournir des instructions aux maquettistes." + +msgid "manager.setup.publisher" +msgstr "Éditeur" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Le nom de l’organisation qui gère la maison d’édition apparaitra dans la " +"page À propos de cette maison d’édition ." + +msgid "manager.setup.referenceLinking" +msgstr "Lien de référence" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Instructions de mise en page pour les liens de référence" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Les utilisateurs doivent être inscrits et se connecter pour afficher le " +"contenu en accès libre." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Les utilisateurs doivent être inscrits et se connecter pour afficher le site " +"de la maison d’édition." + +msgid "manager.setup.reviewGuidelines" +msgstr "Lignes directrices pour l’évaluation externe" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Les lignes directrices pour l’évaluation fourniront aux évaluateur·rice·s " +"les critères nécessaires pour déterminer si une soumission peut être publiée " +"par la maison d’édition. Elles peuvent aussi contenir des instructions " +"spéciales qui aideront l’évaluateur·rice à rédiger une évaluation efficace " +"et utile. Lors de l’évaluation, les évaluateur·rice·s auront accès à deux " +"zones d’entrée de texte, la première « pour l’auteur·e et le·la responsable " +"éditorial » et la seconde « pour le·la responsable éditorial ». Ou bien, le " +"responsable éditorial peut créer un formulaire d’évaluation dans la section " +"Formulaires d’évaluation. Dans tous les cas, les responsables éditoriaux " +"pourront, s’ils le désirent, joindre les évaluations à leur correspondance " +"avec l’auteur." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Lignes directrices pour l’évaluation interne" + +msgid "manager.setup.reviewOptions" +msgstr "Options d’évaluation" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Restreindre l’accès aux fichiers" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Les évaluateur·rice·s auront accès au fichier de soumission uniquement s’ils " +"acceptent de l’évaluer." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Accès pour l’évaluateur·rice" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Activer l’accès en un clic pour l’évaluateur·rice" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" +"Insérer un lien sécurisé dans l’invitation par courriel aux " +"évaluateur·rice·s." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Notation de l’évaluateur·rice" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Rappels aux évaluateur·rice·s" + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Les responsables éditoriaux noteront les évaluateur·rice·s sur une échelle " +"qualitative de cinq points après chaque évaluation." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Indexation par les moteurs de recherche" + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Les paramètres d’indexation du moteur de recherche ont été mis à jour." + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Si aucune section n’est ajoutée, les éléments seront ajoutés par défaut à " +"la section Monographies.)" + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Sections et éditeur·rice·s de sections" + +msgid "manager.setup.securitySettings" +msgstr "Paramètres d’accès et de sécurité" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"D’autres options liées à l’accès et à la sécurité peuvent être configurées à " +"partir de la page Accès et sécurité." + +msgid "manager.setup.selectEditorDescription" +msgstr "" +"Le·La responsable éditorial de la maison d’édition qui suivra le processus " +"éditorial." + +msgid "manager.setup.selectSectionDescription" +msgstr "" +"La collection de la maison d’édition pour laquelle l’élément sera pris en " +"considération." + +msgid "manager.setup.siteAccess.view" +msgstr "Accès au site" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Voir le contenu de la monographie" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Mots-clés" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Donner des exemples de mots-clés ou de sujets comme guide pour les auteur·e·s" + +msgid "manager.setup.submissionGuidelines" +msgstr "Directives pour la soumission" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "L’élément de la liste de contrôle est obligatoire." + +msgid "manager.setup.workflow" +msgstr "Flux des travaux" + +msgid "manager.setup.submissions.description" +msgstr "" +"Directives à l’intention des auteur·e·s, droits d’auteur et indexation (y " +"compris l’enregistrement)." + +msgid "manager.setup.typeMethodApproach" +msgstr "Type (méthode/approche)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Proposer des exemples pertinents de types de recherche, méthodes, et " +"approches pertinents pour ce domaine" + +msgid "manager.setup.useCopyeditors" +msgstr "Un·e éditeur·rice sera assigné·e à chaque soumission." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "La maison d’édition aura recours à un comité éditorial/d’évaluation." + +msgid "manager.setup.useImageTitle" +msgstr "Image du titre" + +msgid "manager.setup.useStyleSheet" +msgstr "Feuille de style de la maison d’édition" + +msgid "manager.setup.useProofreaders" +msgstr "" +"Un·e correcteur·rice d’épreuves sera désigné·e pour vérifier (avec les " +"auteur·e·s) les épreuves avant la publication." + +msgid "manager.setup.userRegistration" +msgstr "Inscription de l’utilisateur" + +msgid "manager.setup.useTextTitle" +msgstr "Texte du titre" + +msgid "manager.setup.volumePerYear" +msgstr "Volumes par année" + +msgid "manager.setup.publicationFormat.code" +msgstr "Format" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Vous devez choisir un format." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Vous devez nommer ce format." + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Le format de cette publication est actuellement utilisé par une monographie " +"de votre maison d’édition et ne peut donc pas être supprimé." + +msgid "manager.setup.newPublicationFormat" +msgstr "Nouveau format de publication" + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Cette maison d’édition n’accepte pas de soumissions actuellement. Visitez " +"les paramètres du flux de travaux pour autoriser les soumissions." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Empêchez les utilisateurs de soumettre de nouvelles soumissions à la maison " +"d’édition. Les soumissions peuvent être désactivées par collection dans la " +"page de paramètres des collections." + +msgid "manager.setup.genres" +msgstr "Genres" + +msgid "manager.setup.newGenre" +msgstr "Nouveau genre de monographie" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Pour créer un nouveau genre, veuillez remplir le formulaire ci-dessous et " +"cliquer le bouton « Créer »." + +msgid "manager.setup.deleteSelected" +msgstr "Supprimer la sélection" + +msgid "manager.setup.restoreDefaults" +msgstr "Rétablir les paramètres par défaut" + +msgid "manager.setup.prospectus" +msgstr "Prospectus" + +msgid "manager.setup.submitToCategories" +msgstr "Accepter les soumissions par catégorie" + +msgid "manager.setup.submitToSeries" +msgstr "Accepter les soumissions par collection" + +msgid "manager.setup.issnDescription" +msgstr "" +"L’ISSN (International Standard Serial Number) est un numéro à huit chiffres " +"qui identifie les publications périodiques, y compris les journaux " +"numériques. Ce numéro peut être obtenu auprès du Centre international de l’ISSN." + +msgid "manager.setup.currentFormats" +msgstr "Formats actuels" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Catégories et collections" + +msgid "manager.setup.series.description" +msgstr "" +"Vous pouvez créer autant de collections que vous le souhaitez pour organiser " +"vos publications. Une collection représente un ensemble spécial de livres " +"consacrés à un thème ou à des sujets que quelqu’un a proposé, généralement " +"un ou deux membres de la faculté, et dont elle/il assure la supervision. Les " +"visiteurs pourront rechercher et parcourir la maison d’édition par " +"collection." + +msgid "manager.setup.reviewForms" +msgstr "Formulaires d’évaluation" + +msgid "manager.setup.roleType" +msgstr "Type de rôle" + +msgid "manager.setup.authorRoles" +msgstr "Rôles de l’auteur·e" + +msgid "manager.setup.managerialRoles" +msgstr "Rôles de gestion" + +msgid "manager.setup.availableRoles" +msgstr "Rôles disponibles" + +msgid "manager.setup.currentRoles" +msgstr "Rôles actuels" + +msgid "manager.setup.internalReviewRoles" +msgstr "Rôles des évaluateur·rice·s internes" + +msgid "manager.setup.masthead" +msgstr "Bloc générique" + +msgid "manager.setup.editorialTeam" +msgstr "Équipe éditoriale" + +msgid "manager.setup.files" +msgstr "Fichiers" + +msgid "manager.setup.productionTemplates" +msgstr "Modèles de production" + +msgid "manager.files.note" +msgstr "" +"Note : L’explorateur de fichiers est une fonction avancée qui permet aux " +"fichiers et aux répertoires associés à une maison d’édition d’être affichés " +"et manipulés directement." + +msgid "manager.publication.library" +msgstr "Bibliothèque de la maison d’édition" + +msgid "manager.setup.resetPermissions" +msgstr "Réinitialiser les permissions sur les monographies" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Êtes-vous sûr de vouloir réinitialiser les données relatives aux permissions " +"déjà attachées aux monographies ?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Les informations relatives aux droits d’auteur et aux licences seront " +"attachées de manière permanente au contenu publié, ce qui garantit que ces " +"données ne changeront pas si la maison d’édition modifie ses politiques pour " +"les nouvelles soumissions. Pour réinitialiser les informations relatives aux " +"permissions stockées et déjà jointes au contenu publié, utilisez le bouton " +"ci-dessous." + +msgid "manager.setup.resetPermissions.success" +msgstr "Les permissions de la monographie ont été réinitialisées avec succès." + +msgid "grid.genres.title.short" +msgstr "Éléments" + +msgid "grid.genres.title" +msgstr "Éléments de la monographie" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Envoyer une copie au contact principal, identifié dans les paramètres de la " +"maison d’édition." + +msgid "grid.series.pathAlphaNumeric" +msgstr "" +"Le chemin d’accès de la collection ne peut contenir que des caractères " +"alphanumériques." + +msgid "grid.series.pathExists" +msgstr "" +"Le chemin d’accès de la collection existe déjà. Veuillez entrer un chemin d’" +"accès unique." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Sélectionner une collection" + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Sélectionner une catégorie" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" +"Veuillez sélectionner la catégorie à laquelle vous souhaitez que cet élément " +"de menu soit lié." + +msgid "grid.series.urlWillBe" +msgstr "L’URL de la collection sera la suivante : {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "Statistiques de la maison d’édition" + +msgid "stats.context.tooltip.label" +msgstr "A propos des statistiques de la maison d’édition" + +msgid "stats.context.downloadReport.description" +msgstr "" +"Télécharger une feuille de calcul CSV/Excel avec les statistiques d’" +"utilisation de cette maison d’édition correspondant aux paramètres suivants." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Téléchargements de l’éditeur" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Téléchargements de monographies" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" +"Le nombre de consultations de résumés et de téléchargements de fichiers pour " +"chaque monographie." + +msgid "stats.publicationStats" +msgstr "Statistiques de la monographie" + +msgid "stats.publications.details" +msgstr "Détails de la monographie" + +msgid "stats.publications.none" +msgstr "" +"Aucune monographie n’a été trouvée avec des statistiques d’utilisation " +"correspondant à ces paramètres." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Nombre total de consultations du catalogue par date" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Total des consultations de fichiers par date" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} de {$total} monographies" + +msgid "stats.publications.abstracts" +msgstr "Entrées de catalogue" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Aucun objet sélectionné." + +msgid "plugins.importexport.common.error.validation" +msgstr "Impossible de convertir les objets sélectionnés." + +msgid "plugins.importexport.common.invalidXML" +msgstr "XML invalide :" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Exporter les soumissions" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.disabled.description" +msgstr "" +"Aucun contact principal n’a été défini pour cette maison d’édition. Vous " +"pouvez le faire dans les paramètres de la maison " +"d’édition." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Les objets spécifiés sont introuvables." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "L’utilisateur spécifié, « {$userName} », n’existe pas." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Le processus n’a pas réussi à analyser les formats de publication" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Le processus n’a pas réussi à analyser les chapitres" + +msgid "emailTemplate.variable.context.contextName" +msgstr "Le nom de la maison d’édition" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "L’URL de la page d’accueil de la maison d’édition" + +msgid "emailTemplate.variable.context.contactName" +msgstr "Le nom du contact principal de la maison d’édition" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "La signature mail de la maison d’édition pour les mails automatiques" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "" +"Le DOI ne peut pas être attribué car le suffixe personnalisé est manquant." diff --git a/locale/fr_FR/submission.po b/locale/fr_FR/submission.po new file mode 100644 index 00000000000..b7aed4fbb56 --- /dev/null +++ b/locale/fr_FR/submission.po @@ -0,0 +1,644 @@ +# Weblate Admin , 2023. +# Germán Huélamo Bautista , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-05-31 17:17+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "submission.workflowType.description" +msgstr "" +"Une monographie est un ouvrage entièrement rédigé par une ou plusieurs " +"personnes. Un ouvrage collectif est composé de contributions rédigées par " +"des personnes différentes (les détails de chaque contribution seront " +"introduits plus tard)." + +msgid "submission.artwork.permissions" +msgstr "Autorisations" + +msgid "submission.chapter.editChapter" +msgstr "Modifier le chapitre" + +msgid "submission.supportingAgencies" +msgstr "Organismes de soutien" + +msgid "author.volumeEditor" +msgstr "Directeur·rice d’ouvrage" + +msgid "submission.submit.coverNote" +msgstr "Note de présentation pour l’éditeur" + +msgid "submission.event.publicationFormatCreated" +msgstr "Le format de publication « {$formatName} » a été créé." + +msgid "submission.submit.seriesPosition.description" +msgstr "Exemples : Livre 2, Volume 2" + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Envoyer à l’évaluation externe" + +msgid "submission.catalogEntry.new" +msgstr "Nouvelle entrée de catalogue" + +msgid "submission.metadataDescription" +msgstr "" +"Ces spécifications sont basées sur le jeu de métadonnées Dublin Core, une " +"norme internationale utilisée pour décrire du contenu éditorial." + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" +"Vous devez sélectionner au moins une monographie à ajouter au catalogue." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Glissez-déposez ou cliquez sur les boutons haut et bas pour modifier l’ordre " +"des éléments dans {$title}." + +msgid "publication.version.details" +msgstr "Renseignements de publication pour la version {$version}" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Afficher ce chapitre sur sa propre page et créez un lien vers cette page à " +"partir de la table des matières du livre." + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "" +"Tous les chapitres utiliseront la date de publication de la monographie." + +msgid "submission.license.description" +msgstr "" +"La licence sera automatiquement définie comme {$licenseName} lorsque ceci sera publié." + +msgid "publication.publish.confirmation" +msgstr "" +"Toutes les exigences de publication ont été remplies‎. Êtes-vous sûr de " +"vouloir rendre publique cette entrée du catalogue ?" + +msgid "publication.event.versionScheduled" +msgstr "Une nouvelle version a été programmée pour publication." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Le format de publication « {$publicationFormatName} » a été approuvé pour " +"publication." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Envoyer un message aux auteur·e·s pour leur faire savoir que cette " +"soumission va être envoyée pour évaluation interne. Donner si possible aux " +"auteur·e·s des indications sur la durée approximative du processus d’" +"évaluation et sur la date à laquelle les éditeurs les recontacteront." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Envoi d’un ouvrage collectif en " +"{$language}." + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "La soumission, « {$title} », a été renvoyée à l’étape d’évaluation." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Envoyer un message aux auteur·e·s pour les faire savoir que leur soumission " +"est renvoyée à l’étape d’évaluation. Expliquer les raisons de cette décision " +"et informer l’auteur·e de ce qu’une évaluation supplémentaire va être faite." + +msgid "submission.submit.whatNext.description" +msgstr "" +"La maison d’édition a été informée de votre soumission et vous a envoyé par " +"courriel une confirmation à archiver. L’éditeur·rice vous contactera une " +"fois que votre soumission aura été examinée." + +msgid "submission.submit.noContext" +msgstr "La maison d’édition associée à cette soumission est introuvable." + +msgid "publication.scheduledIn" +msgstr "" +"Publication programmée dans le {$issueName}." + +msgid "publication.publish.requirements" +msgstr "" +"Les conditions suivantes doivent être remplies avant que ceci ne puisse être " +"publié." + +msgid "submission.title" +msgstr "Titre du livre" + +msgid "submission.select" +msgstr "Choisir une soumission" + +msgid "submission.upload.selectComponent" +msgstr "Choisir un composant" + +msgid "submission.synopsis" +msgstr "Résumé" + +msgid "submission.workflowType" +msgstr "Type de livre" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Ouvrage collectif" + +msgid "submission.workflowType.editedVolume" +msgstr "Ouvrage collectif." + +msgid "submission.workflowType.authoredWork" +msgstr "Monographie." + +msgid "submission.workflowType.change" +msgstr "Modifier" + +msgid "submission.editorName" +msgstr "{$editorName} (éd.)" + +msgid "submission.monograph" +msgstr "Monographie" + +msgid "submission.published" +msgstr "Prêt pour la production" + +msgid "submission.fairCopy" +msgstr "Copie au propre" + +msgid "submission.authorListSeparator" +msgstr " ; " + +msgid "submission.chapter" +msgstr "Chapitre" + +msgid "submission.chapters" +msgstr "Chapitres" + +msgid "submission.chapter.addChapter" +msgstr "Ajouter un chapitre" + +msgid "submission.chapter.pages" +msgstr "Pages" + +msgid "submission.copyedit" +msgstr "Réviser" + +msgid "submission.publicationFormats" +msgstr "Formats de publication" + +msgid "submission.proofs" +msgstr "Épreuves" + +msgid "submission.download" +msgstr "Télécharger" + +msgid "submission.sharing" +msgstr "Partager" + +msgid "manuscript.submission" +msgstr "Manuscrit soumis" + +msgid "submission.round" +msgstr "Cycle {$round}" + +msgid "manuscript.submissions" +msgstr "Manuscrits soumis" + +msgid "submission.metadata" +msgstr "Métadonnées" + +msgid "grid.action.addChapter" +msgstr "Créer un nouveau chapitre" + +msgid "grid.action.editChapter" +msgstr "Modifier ce chapitre" + +msgid "grid.action.deleteChapter" +msgstr "Supprimer ce chapitre" + +msgid "submission.submit" +msgstr "Commencer une nouvelle soumission" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Commencer une nouvelle soumission dans" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Nouvelle soumission" + +msgid "submissions.queuedReview" +msgstr "En évaluation" + +msgid "author.isVolumeEditor" +msgstr "" +"Identifier ce contributeur ou cette contributrice comme responsable du " +"volume." + +msgid "submission.submit.seriesPosition" +msgstr "Position dans cette collection (ex : livre 2 ou Volume 2)" + +msgid "submission.submit.privacyStatement" +msgstr "Déclaration de confidentialité" + +msgid "submission.submit.contributorRole" +msgstr "Rôle du contributeur" + +msgid "submission.submit.prepare" +msgstr "Préparer" + +msgid "submission.submit.catalog" +msgstr "Catalogue" + +msgid "submission.submit.metadata" +msgstr "Métadonnées" + +msgid "submission.submit.finishingUp" +msgstr "Terminer" + +msgid "submission.submit.confirmation" +msgstr "Confirmer" + +msgid "submission.submit.nextSteps" +msgstr "Étapes suivantes" + +msgid "submission.submit.checklistErrors" +msgstr "" +"Veuillez lire et cocher les éléments de la liste de vérification de votre " +"soumission. {$itemsRemaining} éléments n’ont pas été cochés." + +msgid "submission.submit.placement" +msgstr "Placement de la soumission" + +msgid "submission.submit.upload" +msgstr "Transférer" + +msgid "submission.submit.submissionFile" +msgstr "Fichier de soumission" + +msgid "submission.submit.generalInformation" +msgstr "Information générale" + +msgid "submission.submit.userGroup" +msgstr "Soumettre en qualité de …" + +msgid "grid.chapters.title" +msgstr "Chapitres" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Supprimer le téléchargement de l'éditeur·rice" + +msgid "submission.editCatalogEntry" +msgstr "Entrée" + +msgid "submission.catalogEntry.add" +msgstr "Ajouter la sélection au catalogue" + +msgid "submission.catalogEntry.select" +msgstr "Choisissez les monographies à ajouter au catalogue" + +msgid "submission.catalogEntry.confirm" +msgstr "Ajouter ce livre au catalogue public" + +msgid "submission.catalogEntry.confirm.required" +msgstr "" +"Veuillez confirmer que la soumission est prête à être ajoutée au catalogue." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Cette monographie est prête à être ajoutée au catalogue public." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Voir la soumission" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Dates de publication" + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Chaque chapitre peut avoir sa propre date de publication." + +msgid "submission.complete" +msgstr "Approuvé" + +msgid "submission.incomplete" +msgstr "En attente d’approbation" + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monographie" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Catalogue" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Format de publication" + +msgid "submission.event.metadataPublished" +msgstr "" +"Les métadonnées de la monographie ont été approuvées pour la publication." + +msgid "submission.event.metadataUnpublished" +msgstr "Les métadonnées de la monographie ne sont plus publiées." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Le format de publication « {$publicationFormatName} » est disponible." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" +"Le format de publication « {$publicationFormatName} » n’est plus disponible." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"Le format de publication « {$publicationFormatName} » n’est plus publié." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Les métadonnées du catalogue ont été mises à jour." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"Les métadonnées du format de publication « {$formatName} » ont été mises à " +"jour." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Le format de publication « {$formatName} » a été supprimé." + +msgid "workflow.review.externalReview" +msgstr "Évaluation externe" + +msgid "submission.upload.fileContents" +msgstr "Composant de soumission" + +msgid "submission.dependentFiles" +msgstr "Fichiers dépendants" + +msgid "section.any" +msgstr "Toute collection" + +msgid "submission.list.monographs" +msgstr "Monographies" + +msgid "submission.list.countMonographs" +msgstr "{$count} monographies" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} de {$total} monographies" + +msgid "submission.list.orderFeatures" +msgstr "Trier les éléments" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Glissez-déposez ou cliquez sur les boutons haut et bas pour modifier l’ordre " +"des éléments de la page d’accueil." + +msgid "submission.list.saveFeatureOrder" +msgstr "Enregistrer la commande" + +msgid "submission.list.viewEntry" +msgstr "Voir l’entrée" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} titres" + +msgid "publication.catalogEntry" +msgstr "Entrée de catalogue" + +msgid "publication.catalogEntry.success" +msgstr "Les détails de l’entrée dans le catalogue ont été mis à jour." + +msgid "publication.inactiveSeries" +msgstr "{$series} (inactive)" + +msgid "publication.invalidSeries" +msgstr "Impossible de trouver la collection de cette publication." + +msgid "publication.required.issue" +msgstr "" +"La publication doit être assignée à un numéro avant de pouvoir être publiée." + +msgid "publication.publishedIn" +msgstr "Publié dans le {$issueName}." + +msgid "submission.publication" +msgstr "Publication" + +msgid "publication.status.published" +msgstr "Publié" + +msgid "submission.status.scheduled" +msgstr "Programmé" + +msgid "publication.status.unscheduled" +msgstr "Non programmé" + +msgid "submission.publications" +msgstr "Publications" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"L’année de copyright sera fixée automatiquement lors de la publication dans " +"un numéro." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"L’année de copyright sera fixée automatiquement en fonction de la date de " +"publication." + +msgid "publication.datePublished" +msgstr "Date de publication" + +msgid "publication.editDisabled" +msgstr "Cette version a été publiée et ne peut pas être modifiée." + +msgid "publication.event.published" +msgstr "La soumission a été publiée." + +msgid "publication.event.scheduled" +msgstr "La soumission a été programmée pour publication." + +msgid "publication.event.unpublished" +msgstr "La soumission a été dépubliée." + +msgid "publication.event.versionPublished" +msgstr "Une nouvelle version a été publiée." + +msgid "publication.event.versionUnpublished" +msgstr "Une version a été dépubliée." + +msgid "publication.invalidSubmission" +msgstr "La soumission pour cette publication n’a pas pu être trouvée." + +msgid "publication.publish" +msgstr "Publier" + +msgid "publication.required.declined" +msgstr "Une soumission refusée ne peut pas être publiée." + +msgid "publication.required.reviewStage" +msgstr "" +"La soumission doit passer par l’étape d’édition ou de production avant d’" +"être publiée." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Les droits d’auteur seront automatiquement attribués à {$copyright} lorsque " +"ceci sera publié." + +msgid "submission.copyrightOther.description" +msgstr "" +"Attribuer à la partie suivante les droits d’auteur pour les soumissions " +"publiées." + +msgid "publication.unpublish" +msgstr "Dépublier" + +msgid "publication.unpublish.confirm" +msgstr "Avez-vous la certitude de ne pas vouloir que ceci soit publié ?" + +msgid "publication.unschedule.confirm" +msgstr "" +"Avez-vous la certitude de ne pas vouloir programmer ceci pour publication ?" + +msgid "submission.queries.production" +msgstr "Discussions sur la production" + +msgid "publication.chapter.landingPage" +msgstr "Page du chapitre" + +msgid "publication.publish.success" +msgstr "L’état de la publication a été modifié avec succès." + +msgid "chapter.volume" +msgstr "Volume" + +msgid "submission.withoutChapter" +msgstr "{$name} - Sans ce chapitre" + +msgid "submission.chapterCreated" +msgstr " — Chapitre créé" + +msgid "chapter.pages" +msgstr "Pages" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Envoyer à l’évaluation interne" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "Cette soumission est prête à être envoyée pour évaluation interne." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} a envoyé cette soumission à l’étape d’évaluation interne." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Envoyé pour évaluation interne" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"La soumission, « {$title} », a été envoyée à l'étape d'évaluation interne. " +"Une notification a été envoyée à l'auteur·e, à moins que vous n'ayez choisi " +"d'ignorer ce courriel." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" +"Sélectionnez les fichiers qui doivent être envoyés à l’étape d’évaluation " +"interne." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "{$editorName} a envoyé cette soumission à l’étape d’évaluation externe." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Envoyé pour évaluation externe" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" +"La soumission, « {$title} », a été renvoyée à l’étape d’évaluation externe." + +msgid "editor.submission.decision.backToReview" +msgstr "Retour à l’évaluation" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Revenir sur la décision d’accepter cette soumission et la renvoyer à l’étape " +"d’évaluation." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} a annulé la décision d’accepter cette soumission et l’a " +"renvoyée à l’étape d’évaluation." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Renvoyer en évaluation" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Envoyer un message aux auteur·e·s pour leur faire savoir que cette " +"soumission va être envoyée pour évaluation externe. Donner si possible aux " +"auteur·e·s des indications sur la durée approximative du processus d’" +"évaluation et sur la date à laquelle les éditeurs les recontacteront." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Sélectionnez les fichiers à envoyer à l’évaluation." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Recommander l’envoi à évaluation externe" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" +"Recommander que cette soumission soit envoyée à l’étape d’évaluation externe." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} a recommandé que cette soumission soit envoyée à l’étape d’" +"évaluation externe." + +msgid "doi.submission.incorrectContext" +msgstr "" +"Impossible de créer un DOI pour la soumission suivante : {$pubObjectTitle}. " +"Elle n’existe pas dans l’environnement actuel de la maison d’édition." + +msgid "publication.chapter.licenseUrl" +msgstr "URL de la licence" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "URL par défaut de la licence du chapitre" + +msgid "submission.copyright.description" +msgstr "" +"Veuillez lire et comprendre les termes du droit d’auteur pour les " +"soumissions à cette maison d’édition." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Vous n’êtes pas autorisé(e) à soumettre à cette maison d’édition parce que " +"les auteur·e·s doivent être enregistré(e)s par l’équipe éditoriale. S’il s’" +"agit selon vous d’une erreur, veuillez contacter {$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} n’accepte pas de soumissions à la collection {$section}. Si " +"vous avez besoin d’aide pour récupérer votre soumission, veuillez contacter " +"{$name}." + +msgid "submission.sectionNotFound" +msgstr "Impossible de trouver la collection de cette soumission." + +msgid "submission.sectionRestrictedToEditors" +msgstr "" +"Seule l’équipe éditoriale est autorisée à soumettre dans cette collection." + +msgid "submission.wizard.submitting.monograph" +msgstr "Envoi d’une monographie." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" +"Envoi d’une monographie en {$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Envoi d’un ouvrage collectif." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Veuillez fournir tous les chapitres de cette soumission. Si vous soumettez " +"un ouvrage collectif, veillez à ce que chaque chapitre indique ses " +"contributeurs et/ou contributrices." diff --git a/locale/gd/author.po b/locale/gd/author.po new file mode 100644 index 00000000000..f5924e07c73 --- /dev/null +++ b/locale/gd/author.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-16 20:31+0000\n" +"Last-Translator: Michael Bauer \n" +"Language-Team: Gaelic \n" +"Language: gd_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " +"(n > 2 && n < 20) ? 2 : 3;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "author.submit.notAccepting" +msgstr "Chan eil an clò seo a’ gabhail ri tagraidhean aig an àm seo." + +msgid "author.submit" +msgstr "" diff --git a/locale/gd/default.po b/locale/gd/default.po new file mode 100644 index 00000000000..02fb14d7b2d --- /dev/null +++ b/locale/gd/default.po @@ -0,0 +1,196 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-16 20:31+0000\n" +"Last-Translator: Michael Bauer \n" +"Language-Team: Gaelic \n" +"Language: gd_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " +"(n > 2 && n < 20) ? 2 : 3;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "default.genres.appendix" +msgstr "Eàrr-ràdh" + +msgid "default.genres.bibliography" +msgstr "Leabhar-chlàr" + +msgid "default.genres.manuscript" +msgstr "Sgrìobhainn leabhair" + +msgid "default.genres.chapter" +msgstr "Sgrìobhainn caibideil" + +msgid "default.genres.glossary" +msgstr "Briathrachan" + +msgid "default.genres.index" +msgstr "Clàr-amais" + +msgid "default.genres.preface" +msgstr "Ro-ràdh" + +msgid "default.genres.prospectus" +msgstr "Prospectus" + +msgid "default.genres.table" +msgstr "Clàr" + +msgid "default.genres.figure" +msgstr "Figear" + +msgid "default.genres.photo" +msgstr "Dealbh" + +msgid "default.genres.illustration" +msgstr "Sgead-dhealbh" + +msgid "default.genres.other" +msgstr "Eile" + +msgid "default.groups.name.manager" +msgstr "Manaidsear clò" + +msgid "default.groups.plural.manager" +msgstr "Manaidsearan clò" + +msgid "default.groups.abbrev.manager" +msgstr "PM" + +msgid "default.groups.name.editor" +msgstr "Deasaiche clò" + +msgid "default.groups.plural.editor" +msgstr "Deasaichean clò" + +msgid "default.groups.abbrev.editor" +msgstr "PE" + +msgid "default.groups.name.sectionEditor" +msgstr "Deasaiche sreatha" + +msgid "default.groups.plural.sectionEditor" +msgstr "Deasaichean sreatha" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "AcqE" + +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + +msgid "default.groups.name.chapterAuthor" +msgstr "Ùghdar caibideil" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Ùghdaran caibideil" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "CA" + +msgid "default.groups.name.volumeEditor" +msgstr "Deasaiche mòr-thomaid" + +msgid "default.groups.plural.volumeEditor" +msgstr "Deasaichean mòr-thomaid" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "VE" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

      Cha chleachdar na h-ainmean is seòlaidhean puist-d a chuirear a-steach " +"air làrach a’ chlò seo ach airson amasan foillsichte an a’ chlò seo agus cha " +"chuirear ri làimh pàrtaidh sam bith eile iad no airson adhbhar sam bith eile." +"

      " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Tha an clò seo a’ toirt cothrom fosgailte air an t-susbaint ann a chionn ’s " +"gu bheil sinn dhen bheachd gun tig àrdachadh air eadar-mhalairt eòlais eadar-" +"nàiseanta ma chuirear rannsachadh ri làimh a’ phobaill gun chuingeachadh." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Mholamaid do leughadairean clàradh airson seirbheis brathan foillseachadh a’ " +"chlò seo. Cleachd an ceangal Clàraich aig bàrr duilleag-dhachaigh a’ chlò. Ma nì an " +"leughadair clàradh, gheibh iad clàr-innse gach monograf ùr a’ chlò air a’ " +"phost-d. Ri linn sin, ’s urrainn dhan chlò tagradh gu bheil ìre de thaic no " +"luchd-leughaidh aca. Faic poileasaidh prìobhaideachd a’ chlò a " +"dhearbhas dha na leughadairean nach cleachd iad an ainmean is seòlaidhean " +"puist-d airson adhbhar sam bith eile." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"A bheil ùidh agad ann an com-pàirteachas sa chlò seo? Mholamaid dhut sùil a " +"thoirt air an duilleag Mun chlò " +"seo airson poileasaidh earrannan a’ chlò agus air an stiùireadh " +"do dh’ùghdaran. Feumaidh ùghdaran clàradh aig a’ chlò mus cuir iad tagradh no, ma tha iad " +"clàraichte mu thràth, faodaidh iad clàradh a-steach agus tòiseachadh air na còig ceuman a tha ri " +"choileanadh." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Tha sinn a’ brosnachadh leabhar-lannaichean an clò seo a chur am measg iris-" +"leabhraichean dealain na leabhar-lainn aca. A bharrachd air sin, faodaidh " +"leabhar-lannan an siostam foillseachaidh a tha stèidhichte air còd fosgailte " +"aig a’ chlò seo a chur air òstaireachd iad fhèin airson buill nan roinnean " +"aca a tha an sàs deasachadh chlòthan (Open " +"Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Lèirmheasaiche air an taobh a-muigh" + +msgid "default.groups.plural.externalReviewer" +msgstr "Lèirmheasaichean air an taobh a-muigh" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "ER" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Tha an teacsa seo a’ leantainn nan riaghailtean san stiùireadh do dh’ùghdaran a thaobh stoidhle is leabhar-eòlais a " +#~ "gheibhear fon earrann “Mun chlò”." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Cha deach an tagradh fhoillseachadh roimhe agus chan eil e aig clò eile " +#~ "airson beachdachadh (no chaidh mìneachadh a thoirt seachad sna beachdan " +#~ "dhan deasaiche)." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Tha am faidhle tagraidh san fhòrmat Microsoft Word, RTF no OpenDocument." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Far a bheil iad ri làimh, chaidh URLaichean airson nan reifreansan a " +#~ "thoirt seachad." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Tha an teacsa air beàrnadh singilte; a’ cleachdadh cruth-clò aig 12 " +#~ "phuing; a’ cleachdadh clò Eadailteach seach fo-loidhnichean (ach ann an " +#~ "seòlaidhean URL); agus tha gach dealbh, figear is clàr sna h-àitichean " +#~ "iomchaidh san teacsa seach aig an deireadh." diff --git a/locale/gd/locale.po b/locale/gd/locale.po new file mode 100644 index 00000000000..0027c4b1476 --- /dev/null +++ b/locale/gd/locale.po @@ -0,0 +1,1724 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-18 20:49+0000\n" +"Last-Translator: Michael Bauer \n" +"Language-Team: Gaelic \n" +"Language: gd_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " +"(n > 2 && n < 20) ? 2 : 3;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "common.payments" +msgstr "" + +msgid "monograph.audience" +msgstr "Luchd-leughaidh" + +msgid "monograph.audience.success" +msgstr "Chaidh mion-fhiosrachadh nan ìrean leughaidh ùrachadh." + +msgid "monograph.coverImage" +msgstr "Dealbh a’ chòmhdachaidh" + +msgid "monograph.audience.rangeQualifier" +msgstr "Adhbhar na h-ìre leughaidh" + +msgid "monograph.audience.rangeFrom" +msgstr "Ìre leughaidh (agus nas àirde)" + +msgid "monograph.audience.rangeTo" +msgstr "Ìre leughaidh (gu ruige)" + +msgid "monograph.audience.rangeExact" +msgstr "Ìre leughaidh (pongail)" + +msgid "monograph.languages" +msgstr "Cànain (Beurla, Fraingis, Spàinntis)" + +msgid "monograph.publicationFormats" +msgstr "Fòrmatan foillseachaidh" + +msgid "monograph.publicationFormat" +msgstr "Fòrmat" + +msgid "monograph.publicationFormatDetails" +msgstr "" +"Mion-fhiosrachadh mun fhòrmatan an fhoillseachaidh a tha ri fhaighinn: " +"{$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Mion-fhiosrachadh mun mhonograf seo" + +msgid "monograph.carousel.publicationFormats" +msgstr "Fòrmatan:" + +msgid "monograph.type" +msgstr "Seòrsa an tagraidh" + +msgid "submission.pageProofs" +msgstr "Dearbhan dhuilleagan" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Bidh deasaiche na co-dhealbhachd a’ luchdadh suas faidhlichean a tha deiseil " +"airson foillseachadh an-seo. Cleachd +Iomruin airson ùghdaran agus " +"daoine eile ainmeachadh a nì dearbh-leughadh air dearbhan nan duilleagan; " +"thèid na faidhlichean dearbhte a luchdadh suas airson aontachadh mus tèid am " +"foillseachadh." + +msgid "monograph.task.addNote" +msgstr "Cuir ris an t-saothair" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Inntrigeadh fosgailte" + +msgid "monograph.publicationFormat.imprint" +msgstr "Fiosrachadh mun fhoillseachadh (Ainm a’ bhrannd/an fhoillsicheir)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Cunntas nan duilleagan" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Stuthan a’ bheulaibh" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Stuthan a’ chùlaibh" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Co-chur a’ bhathair" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Mion-fhiosrachadh mun bhathar (chan eil seo riatanach)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Dearbh-aithneachadh a’ bhathair" + +msgid "monograph.publicationFormat.price" +msgstr "A’ phrìs" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Tha feum air prìs." + +msgid "monograph.publicationFormat.priceType" +msgstr "Seòrsa na prìse" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Ceudad an ìsleachaidh, ma bhios seo iomchaidh" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Faotainneachd a’ bhathair" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Tilleadh bathair" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Fiosrachadh digiteach" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Meud fiosaigeach" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Meud an fhaidhle ann am Mbytes" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "A bheil thu airson meud faidhle a chur a-steach thu fhèin?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Àirde" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Tiughad" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Cudrom" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Leud" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Dùthaich an t-saothrachaidh" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Dìon digiteach" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Roinn-dùthcha sgaoileadh a’ bhathair" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Reat na cìse" + +msgid "monograph.publicationFormat.taxType" +msgstr "Seòrsa na cìse" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Gabh a-staigh am meata-dàta airson an fhòrmait fhoillseachaidh seo ann an " +"innteart catalog an leabhair seo." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Tha margaidean is prìsean a dhìth." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Tha còd dearbh-aithneachaidh a dhìth." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Tha cuid dhen mheata-dàta a dhìth." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

      Chan eil am fòrmat foillseachaidh a thagh thu ri làimh airson a’ " +"mhonograf seo tuilleadh.

      " + +msgid "monograph.publicationFormat.openTab" +msgstr "Fosgail taba fòrmat an fhoillseachaidh." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Fòrmat foillseachaidh" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Tha feum air ainm." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Tha feum air prìs dhligheach." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Mion-fhiosrachadh mun fhòrmat" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Fòrmat fiosaigeach" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Bidh am fòrmat seo ri làimh air làrach-lìn fa leth" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL de shusbaint air òstair cèin" + +msgid "grid.catalogEntry.isbn" +msgstr "" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "" + +msgid "grid.catalogEntry.isbn10.description" +msgstr "" + +msgid "grid.catalogEntry.monographRequired" +msgstr "Tha feum air ID airson a’ mhonograf." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Feumaidh tu fòrmat foillseachaidh a thaghadh." + +msgid "grid.catalogEntry.availability" +msgstr "Faotainneachd" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Ri fhaighinn" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Chan eil seo ri làimh" + +msgid "grid.catalogEntry.proof" +msgstr "Dearbhadh" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Aonta an fhòrmait" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

      Thoir aonta dhan mheata-dàta airson an fhòrmait seo. Gabhaidh am meata-" +"dàta a sgrùdadh on phanail deasachaidh airson gach fòrmat.

      " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

      Nochd nach d’fhuair meata-dàta an fhòrmait seo aonta fhathast.

      " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Faotainneachd an fhòrmait" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

      Cuir am fòrmat seo ri làimh leughadairean. Nochdaidh " +"faidhlichean a bha ri luchdadh a-nuas agus sgaoilidhean eile ann an innteart " +"catalog an leabhair.

      " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

      Cha bhi am fòrmat seo ri làimh leughadairean. Cha nochd " +"faidhlichean a bha ri luchdadh a-nuas no sgaoileadh sam bith eile ann an " +"innteart catalog an leabhair tuilleadh.

      " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Cha d’fhuair innteart a’ chatalog aonta." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Chan eil am fòrmat ann an innteart a’ chatalog." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Cha d’fhuair an dearbh aonta." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Air aontachadh" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "A’ feitheamh ri aonta" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Tha feum air meud an fhaidhle mu choinneamh fhòrmatan digiteach." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Tha feum air còd a dh’innseas a bheil am bathar ri fhaighinn." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Feumaidh tu còd co-chur bathair a thaghadh." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Luach a’ chòd" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Seòrsa de chòd ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Tha feum air còd dearbh-aithneachaidh." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Tha feum air luach." + +msgid "grid.catalogEntry.salesRights" +msgstr "Còraichean reic" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Luach a’ chòd" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Seòrsa de chòraichean reic" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "An còrr dhen t-saoghal?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Cuir cromag sa bhogsa seo airson innteart nan còraichean reic seo a " +"chleachdadh anns gach suidheachadh dhan fhòrmat agad. Cha leigear a leas " +"dùthchannan is roinnean-dùthcha a thaghadh ma nì thu sin." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Chaidh seòrsa de reicean ROW a shònrachadh dhan fhòrmat fhoillseachaidh seo " +"mu thràth." + +msgid "grid.catalogEntry.countries" +msgstr "Dùthchannan" + +msgid "grid.catalogEntry.regions" +msgstr "Roinnean-dùthcha" + +msgid "grid.catalogEntry.included" +msgstr "Ga ghabhail a-staigh" + +msgid "grid.catalogEntry.excluded" +msgstr "Air dùnadh a-mach" + +msgid "grid.catalogEntry.markets" +msgstr "Ranntairean margaide" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Ranntair" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Chinn-là foillseachaidh" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Tha feum air dreuchd dhan neach-ionaid." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Tha feum air fòrmat airson a’ chinn-là." + +msgid "grid.catalogEntry.dateValue" +msgstr "Ceann-là" + +msgid "grid.catalogEntry.dateRole" +msgstr "Dreuchd" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Fòrmat a’ chinn-là" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Tha feum air ceann-là agus feumaidh luach a’ chinn-là a bhith a-rèir fòrmat " +"a’ chinn-là a thagh thu." + +msgid "grid.catalogEntry.representatives" +msgstr "Luchd-ionaid" + +msgid "grid.catalogEntry.representativeType" +msgstr "Seòrsa an neach-ionaid" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Àidseantan" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Solaraichean" + +msgid "grid.catalogEntry.agent" +msgstr "Àidseant" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"’S urrainn dhut àidseant ainmeachadh a bhios gad riochdachadh san ranntair " +"seo. Chan eil seo riatanach." + +msgid "grid.catalogEntry.supplier" +msgstr "Solaraiche" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Tagh dreuchd:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Dreuchd" + +msgid "grid.catalogEntry.representativeName" +msgstr "Ainm" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Fòn" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Seòladh puist-d" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Làrach-lìn" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "ID an neach-ionaid" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Seòrsa ID an neach-ionaid (mholamaid GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Faodaidh tu an earrann a leanas fhàgail bàn ma bhios tu a’ solarachadh do " +"sheirbheisean fhèin dha na custamairean agad." + +msgid "grid.action.addRepresentative" +msgstr "Cuir neach-ionaid ris" + +msgid "grid.action.editRepresentative" +msgstr "Deasaich an neach-ionaid seo" + +msgid "grid.action.deleteRepresentative" +msgstr "Sguab an neach-ionaid seo às" + +msgid "spotlight" +msgstr "Prosbaig" + +msgid "spotlight.spotlights" +msgstr "Prosbaigean" + +msgid "spotlight.noneExist" +msgstr "Chan eil prosbaig ann aig an àm seo." + +msgid "spotlight.title.homePage" +msgstr "Fon phrosbaig" + +msgid "spotlight.author" +msgstr "Ùghdar, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Nì fon phrosbaig" + +msgid "grid.content.spotlights.category.homepage" +msgstr "An duilleag-dhachaigh" + +msgid "grid.content.spotlights.form.location" +msgstr "Ionad na prosbaig" + +msgid "grid.content.spotlights.form.item" +msgstr "Cuir a-steach tiotal airson na prosbaig (le fèin-choileanadh)" + +msgid "grid.content.spotlights.form.title" +msgstr "Tiotal na prosbaig" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Leabhar" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Tha feum air nì." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Tha feum air tiotal airson na prosbaig." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Tagh ionad dhan phrosbaig seo." + +msgid "grid.action.editSpotlight" +msgstr "Deasaich a’ phrosbaig seo" + +msgid "grid.action.deleteSpotlight" +msgstr "Sguab a’ phrosbaig seo às" + +msgid "grid.action.addSpotlight" +msgstr "Cuir prosbaig ris" + +msgid "manager.series.open" +msgstr "Tagraidhean fosgailte" + +msgid "manager.series.indexed" +msgstr "Air inneacsadh" + +msgid "grid.libraryFiles.column.files" +msgstr "Faidhlichean" + +msgid "grid.action.catalogEntry" +msgstr "Seall foirm innteart a’ chatalog" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Tha am fòrmat a’ nochdadh ann an innteart a’ chatalog" + +msgid "grid.action.editFormat" +msgstr "Deasaich am fòrmat seo" + +msgid "grid.action.deleteFormat" +msgstr "Sguab am fòrmat seo às" + +msgid "grid.action.addFormat" +msgstr "Cuir fòrmat foillseachaidh ris" + +msgid "grid.action.approveProof" +msgstr "" +"Thoir aonta dhan dearbh a thaobh inneacsaidh agus airson a ghabhail a-staigh " +"sa chatalog" + +msgid "grid.action.pageProofApproved" +msgstr "Tha faidhle dearbhan nan duilleagan deiseil airson foillseachadh" + +msgid "grid.action.newCatalogEntry" +msgstr "Innteart ùr sa chatalog" + +msgid "grid.action.publicCatalog" +msgstr "Seall an nì seo sa chatalog" + +msgid "grid.action.feature" +msgstr "Toglaich taisbeanadh nan gleus" + +msgid "grid.action.featureMonograph" +msgstr "Nochd seo air timcheallan a’ chatalog" + +msgid "grid.action.releaseMonograph" +msgstr "Comharraich an tagradh seo mar “sgaoileadh ùr”" + +msgid "grid.action.manageCategories" +msgstr "Rèitich an roinn-seòrsa seo dhan chlò seo" + +msgid "grid.action.manageSeries" +msgstr "Rèitich an sreath seo dhan chlò seo" + +msgid "grid.action.addCode" +msgstr "Cuir còd ris" + +msgid "grid.action.editCode" +msgstr "Deasaich an còd seo" + +msgid "grid.action.deleteCode" +msgstr "Sguab an còd seo às" + +msgid "grid.action.addRights" +msgstr "Cuir còraichean reic ris" + +msgid "grid.action.editRights" +msgstr "Deasaich na còraichean seo" + +msgid "grid.action.deleteRights" +msgstr "Sguab na còraichean seo às" + +msgid "grid.action.addMarket" +msgstr "Cuir margaid ris" + +msgid "grid.action.editMarket" +msgstr "Deasaich a’ mhargaid seo" + +msgid "grid.action.deleteMarket" +msgstr "Sguab a’ mhargaid seo às" + +msgid "grid.action.addDate" +msgstr "Cuir ceann-là foillseachaidh ris" + +msgid "grid.action.editDate" +msgstr "Deasaich an ceann-là seo" + +msgid "grid.action.deleteDate" +msgstr "Sguab an ceann-là seo às" + +msgid "grid.action.createContext" +msgstr "Cruthaich clò ùr" + +msgid "grid.action.publicationFormatTab" +msgstr "Seall taba fòrmat an fhoillseachaidh" + +msgid "grid.action.moreAnnouncements" +msgstr "Tadhail air duilleag fiosan-naidheachd a’ chlòtha" + +msgid "grid.action.submissionEmail" +msgstr "Dèan briogadh airson am post-d seo a leughadh" + +msgid "grid.action.approveProofs" +msgstr "Seall griod nan dearbhan" + +msgid "grid.action.proofApproved" +msgstr "Chaidh am fòrmat a dhearbhadh" + +msgid "grid.action.availableRepresentation" +msgstr "Thoir aonta ris an fhòrmat seo no thoirt air falbh an t-aonta" + +msgid "grid.action.formatAvailable" +msgstr "Toglaich faotainneachd an fhòrmat air is dheth" + +msgid "grid.reviewAttachments.add" +msgstr "Cuir ceanglachan ris an lèirmheas" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Faidhlichean a tha ri làimh" + +msgid "series.series" +msgstr "Sreath" + +msgid "series.featured.description" +msgstr "Nochdaidh an sreath seo sa phrìomh sheòladaireachd" + +msgid "series.path" +msgstr "Slighe" + +msgid "catalog.manage" +msgstr "Stiùireadh a’ chatalog" + +msgid "catalog.manage.newReleases" +msgstr "Air ùr-fhoillseachadh" + +msgid "catalog.manage.category" +msgstr "Roinn-seòrsa" + +msgid "catalog.manage.series" +msgstr "Sreath" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Cuir a-steach ISSN dligheach." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "" +"Chan fhaod an ISSN clò-bhualaidh agus an ISSN air loidhne a bhith co-ionann." + +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN air loidhne" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN clò-bhualaidh" + +msgid "catalog.selectSeries" +msgstr "Tagh sreath" + +msgid "catalog.selectCategory" +msgstr "Tagh roinn-seòrsa" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Nochdaidh dealbh còmhdachadh nan leabhraichean a thagh thu mu bhàrr na " +"duilleige-dachaigh ann an seata as urrainnear sgroladh tromhpa. Briog air " +"“Brosnaich” agus an uairsin air an rionnag airson leabhar a chur ris an " +"timcheallan; briog air a’ chlisg-phuing airson a bhrosnachadh mar sgaoileadh " +"ùr; dèan slaodadh is leigeil às airson an t-òrdugh atharrachadh." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Briog air “Brosnaich” agus an uairsin air an rionnag airson leabhar " +"brosnaichte a thaghadh dhan roinn-seòrsa seo; dèan slaodadh is leigeil às " +"airson an t-òrdugh atharrachadh." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Briog air “Brosnaich” agus an uairsin air an rionnag airson leabhar " +"brosnaichte a thaghadh dhan t-sreath seo; dèan slaodadh is leigeil às airson " +"an t-òrdugh atharrachadh. Tha deasaiche(an) agus tiotal an t-sreatha co-" +"cheangailte ri sreath, am broinn roinn-seòrsa no an neo-eisimeileachd." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "An timcheallan" + +msgid "catalog.manage.newRelease" +msgstr "Sgaoil" + +msgid "catalog.manage.manageSeries" +msgstr "Stiùirich an sreath" + +msgid "catalog.manage.manageCategories" +msgstr "Stiùirich na roinnean-seòrsa" + +msgid "catalog.manage.noMonographs" +msgstr "Chan eil monograf ann a chaidh iomruineadh." + +msgid "catalog.manage.featured" +msgstr "Brosnaichte" + +msgid "catalog.manage.categoryFeatured" +msgstr "Brosnaichte san roinn-seòrsa" + +msgid "catalog.manage.seriesFeatured" +msgstr "Brosnaichte san t-sreath" + +msgid "catalog.manage.featuredSuccess" +msgstr "’S e monograf brosnaichte a tha seo." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Chan e monograf brosnaichte a tha seo." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Chaidh am monograf a chomharradh mar sgaoileadh ùr." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Cha deach am monograf a chomharradh mar sgaoileadh ùr." + +msgid "catalog.manage.feature.newRelease" +msgstr "Air ùr-fhoillseachadh" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Sgaoileadh ùr san roinn-seòrsa" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Sgaoileadh ùr san t-sreath" + +msgid "catalog.manage.nonOrderable" +msgstr "" +"Chan urrainnear òrdan a chur airson a’ mhonograf seo gus am bi e na " +"mhonograf brosnaichte." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Lorg a-rèir tiotail no ùghdair" + +msgid "catalog.manage.isFeatured" +msgstr "" +"’S e monograf brosnaichte a tha seo. Na brosnaich am monograf seo tuilleadh." + +msgid "catalog.manage.isNotFeatured" +msgstr "" +"Chan e monograf brosnaichte a tha seo. Dèan monograf brosnaichte dheth." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"’S e sgaoileadh ùr a tha sa mhonograf seo. Comharraich nach e sgaoileadh ùr " +"a sa mhonograf seo." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Chan e sgaoileadh ùr a tha sa mhonograf seo. Dèan sgaoileadh ùr dhen " +"mhonograf seo." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "" + +msgid "catalog.manage.submissionsNotFound" +msgstr "" + +msgid "catalog.manage.findSubmissions" +msgstr "" + +msgid "catalog.noTitles" +msgstr "Cha deach tiotal sam bith fhoillseachadh fhathast." + +msgid "catalog.noTitlesNew" +msgstr "Chan eil foillseachadh ùr sam bith ri fhaighinn aig an àm seo." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Cha deach tiotalan a lorg a fhreagair air na lorg thu ({$searchQuery})." + +msgid "catalog.feature" +msgstr "Gleus" + +msgid "catalog.featured" +msgstr "Brosnaichte" + +msgid "catalog.featuredBooks" +msgstr "Leabhraichean brosnaichte" + +msgid "catalog.foundTitleSearch" +msgstr "Chaidh aon tiotal a lorg a fhreagair air na lorg thu ({$searchQuery})." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"Chaidh tiotalan a lorg ({$number} dhiubh) a fhreagair air na lorg thu " +"({$searchQuery})." + +msgid "catalog.category.heading" +msgstr "A h-uile leabhar" + +msgid "catalog.newReleases" +msgstr "Air ùr-fhoillseachadh" + +msgid "catalog.dateAdded" +msgstr "Air a chur ris" + +msgid "catalog.publicationInfo" +msgstr "Fiosrachadh mun fhoillseachadh" + +msgid "catalog.published" +msgstr "Foillsichte" + +msgid "catalog.forthcoming" +msgstr "Ri thighinn" + +msgid "catalog.categories" +msgstr "Roinnean-seòrsa" + +msgid "catalog.parentCategory" +msgstr "Roinn-seòrsa pàrant" + +msgid "catalog.category.subcategories" +msgstr "Fo-roinnean-seòrsa" + +msgid "catalog.aboutTheAuthor" +msgstr "Mu dhèidhinn {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Thoir an aire: Feumaidh tu clàradh a-steach an toiseach mus urrainn dhut " +"rudan a cheannach. Ma thaghas tu rud airson a cheannach, thèid d’ ath-" +"stiùireadh gu duilleag far an clàraich thu a-steach. Ma tha ìomhaigheag " +"“Inntrigeadh fosgailte” ri rud, gabhaidh a luchdadh a-nuas saor ’s an-" +"asgaidh gun fheum air clàradh a-steach." + +msgid "catalog.sortBy" +msgstr "Òrdugh nam monograf" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Tagh òrdugh dha na leabhraichean san t-sreath seo." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Tagh òrdugh dha na leabhraichean san roinn-seòrsa seo." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Tagh òrdugh dha na leabhraichean sa chatalog." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "An t-ionad san t-sreath (feadhainn as ìsle an toiseach)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "An t-ionad san t-sreath (feadhainn as àirde an toiseach)" + +msgid "catalog.viewableFile.title" +msgstr "Sealladh ({$type}) dhen fhaidhle {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Till chun a’ mhion-fhiosrachaidh mu dhèidhinn {$monographTitle}" + +msgid "submission.search" +msgstr "Lorg leabhar" + +msgid "common.publication" +msgstr "Monograf" + +msgid "common.publications" +msgstr "Monografaichean" + +msgid "common.prefix" +msgstr "Ro-leasachan" + +msgid "common.preview" +msgstr "Ro-shealladh" + +msgid "common.feature" +msgstr "Gleus" + +msgid "common.searchCatalog" +msgstr "Lorg sa chatalog" + +msgid "common.moreInfo" +msgstr "Barrachd fiosrachaidh" + +msgid "common.listbuilder.completeForm" +msgstr "Lìon am foirm gu lèir." + +msgid "common.listbuilder.selectValidOption" +msgstr "Tagh roghainn dhligheach on liosta." + +msgid "common.listbuilder.itemExists" +msgstr "Chan urrainn dhut an aon rud a chur ris dà thuras." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Bann-cinn na duilleige-dachaigh" + +msgid "navigation.catalog" +msgstr "Catalog" + +msgid "navigation.competingInterestPolicy" +msgstr "Am poileasaidh mu chòmhstri ùidhean" + +msgid "navigation.catalog.allMonographs" +msgstr "A h-uile monograf" + +msgid "navigation.catalog.manage" +msgstr "Stiùirich" + +msgid "navigation.catalog.administration.short" +msgstr "Ball sgioba rianachd LibreOffice" + +msgid "navigation.catalog.administration" +msgstr "Rianachd a’ chatalog" + +msgid "navigation.catalog.administration.categories" +msgstr "Roinnean-seòrsa" + +msgid "navigation.catalog.administration.series" +msgstr "Sreath" + +msgid "navigation.infoForAuthors" +msgstr "Do dh’ùghdaran" + +msgid "navigation.infoForLibrarians" +msgstr "Do leabhar-lannaichean" + +msgid "navigation.infoForAuthors.long" +msgstr "Fiosrachadh do dh’ùghdaran" + +msgid "navigation.infoForLibrarians.long" +msgstr "Fiosrachadh do leabhar-lannaichean" + +msgid "navigation.newReleases" +msgstr "Air ùr-fhoillseachadh" + +msgid "navigation.published" +msgstr "Foillsichte" + +msgid "navigation.wizard" +msgstr "An draoidh" + +msgid "navigation.linksAndMedia" +msgstr "Ceanglaichean is meadhanan sòisealta" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Ceangail ris a’ chatalog agad." + +msgid "navigation.skip.spotlights" +msgstr "Leum chun nam prosbaigean" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Sreath" + +msgid "navigation.navigationMenus.series.description" +msgstr "Ceangail ri sreath." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Roinn-seòrsa" + +msgid "navigation.navigationMenus.category.description" +msgstr "Ceangail ri roinn-seòrsa." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Air ùr-fhoillseachadh" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Ceanglaichean ris na sgaoilidhean ùra agad." + +msgid "context.contexts" +msgstr "Clòthan" + +msgid "context.context" +msgstr "Brùth" + +msgid "context.current" +msgstr "An clò làithreach:" + +msgid "context.select" +msgstr "Geàrr leum gu clò eile:" + +msgid "user.authorization.representationNotFound" +msgstr "" + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Gabh a-staigh cleachdaichean aig nach eil dreuchd sa chlò seo." + +msgid "user.noRoles.submitMonograph" +msgstr "Cuir moladh" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "Cuir monograf: Tha clàradh ùghdaran à comas aig an àm seo." + +msgid "user.noRoles.regReviewer" +msgstr "Clàraich mar lèirmheasaiche" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Clàraich mar lèirmheasaiche: Tha clàradh lèirmheasaichean à comas aig an àm " +"seo." + +msgid "user.reviewerPrompt" +msgstr "" +"A bheil ùidh agad ann a bhith a’ dèanamh lèirmheasan air tagraidhean dhan " +"chlò seo?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Tha, iarr dreuchd {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Tha, tha mi ag iarraidh gun cuirear fios thugam ma bhios iarrtas ann airson " +"lèirmheas tagraidh dhan chlò seo." + +msgid "user.register.contextsPrompt" +msgstr "Dè na clòthan air an làrach seo bu toil leat clàradh aca?" + +msgid "user.register.otherContextRoles" +msgstr "Iarr na dreuchdan a leanas." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Ma dh’iarr thu inbhe lèirmheasaiche airson clò sam bith, cuir a-steach na " +"cuspairean sa bheil ùidh agad." + +msgid "user.role.manager" +msgstr "Manaidsear a’ chlòtha" + +msgid "user.role.pressEditor" +msgstr "Deasaiche a’ chlòtha" + +msgid "user.role.subEditor" +msgstr "Deasaiche an t-sreatha" + +msgid "user.role.copyeditor" +msgstr "Grinn-deasaiche" + +msgid "user.role.proofreader" +msgstr "Dearbh-leughadair" + +msgid "user.role.productionEditor" +msgstr "Deasaiche saothrachaidh" + +msgid "user.role.managers" +msgstr "Manaidsearan a’ chlòtha" + +msgid "user.role.subEditors" +msgstr "Deasaichean an t-sreatha" + +msgid "user.role.editors" +msgstr "Deasaichean" + +msgid "user.role.copyeditors" +msgstr "Grinn-deasaichean" + +msgid "user.role.proofreaders" +msgstr "Dearbh-leughadairean" + +msgid "user.role.productionEditors" +msgstr "Deasaichean saothrachaidh" + +msgid "user.register.selectContext" +msgstr "Tagh clò airson clàradh aige:" + +msgid "user.register.noContexts" +msgstr "Chan eil clò sam bith air an làrach seo as urrainn dhut clàradh aige." + +msgid "user.register.privacyStatement" +msgstr "An aithris prìobhaideachd" + +msgid "user.register.registrationDisabled" +msgstr "Chan eil an clò seo a’ clàradh chleachdaichean aig an àm seo." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Chan eil am facal-faire a chuir thu a-steach fada gu leòr." + +msgid "user.register.readerDescription" +msgstr "Gheibhear fios air a’ phost-d nuair a thèid monograf fhoillseachadh." + +msgid "user.register.authorDescription" +msgstr "Comasach air nithean a chur dhan chlò." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Deònach lèirmheas seise a dhèanamh air tagraidhean dhan chlò." + +msgid "user.register.reviewerDescription" +msgstr "Deònach lèirmheas seise a dhèanamh air tagraidhean dhan làrach." + +msgid "user.register.reviewerInterests" +msgstr "" +"Aithneachadh de dh’ùidhean lèirmheis (raointean chuspairean agus dòighean " +"rannsachaidh):" + +msgid "user.register.form.userGroupRequired" +msgstr "Feumaidh tu co-dhiù aon dreuchd a thaghadh" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Tha, tha mi ag aontachadh gun tèid an dàta agam a chruinneachadh is a " +"stòradh a rèir aithris " +"prìobhaideachd a’ chlò seo." + +msgid "site.noPresses" +msgstr "Chan eil clòth sam bith ri fhaighinn." + +msgid "site.pressView" +msgstr "Seall làrach-lìn a’ chlòtha" + +msgid "about.pressContact" +msgstr "Conaltradh leis a’ chlò" + +msgid "about.aboutContext" +msgstr "Mun chlò" + +msgid "about.editorialTeam" +msgstr "An sgioba deasachaidh" + +msgid "about.editorialPolicies" +msgstr "Poileasaidhean deasachaidh" + +msgid "about.focusAndScope" +msgstr "Fòcas is sgòp" + +msgid "about.seriesPolicies" +msgstr "Poileasaidhean a thaobh shreathan is roinnean-seòrsa" + +msgid "about.submissions" +msgstr "Tagraidhean" + +msgid "about.onlineSubmissions" +msgstr "Tagraidhean air loidhne" + +msgid "about.onlineSubmissions.login" +msgstr "Clàraich a-steach" + +msgid "about.onlineSubmissions.register" +msgstr "Clàraich" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} no {$register} a dhèanamh tagradh." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} no {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Dèan tagradh ùr" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "coimhead air na tagraidhean agad a tha ri dhèiligeadh" + +msgid "about.authorGuidelines" +msgstr "Riaghailtean dha na h-ùghdaran" + +msgid "about.submissionPreparationChecklist" +msgstr "Liosta-chromagan ullachadh an tagraidh" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Mar phàirt dhen phròiseas tagraidh, bidh aig na h-ùghdaran cromag a chur ris " +"na nithean a leanas air fad a dh’innse gu bheil an tagradh aca a’ gèilleadh " +"ri gach aon dhiubh agus mur eil tagradh a’ gèilleadh ris na riaghailtean " +"seo, dh’fhaoidte gun tèid a thilleadh dha na h-ùghdaran." + +msgid "about.copyrightNotice" +msgstr "Brath na còrach-lethbhreac" + +msgid "about.privacyStatement" +msgstr "An aithris prìobhaideachd" + +msgid "about.reviewPolicy" +msgstr "Pròiseas nan lèirmheas le seise" + +msgid "about.publicationFrequency" +msgstr "Tricead an fhoillseachaidh" + +msgid "about.openAccessPolicy" +msgstr "Poileasaidh an inntrigidh fhosgailte" + +msgid "about.pressSponsorship" +msgstr "Sponsaireachd a’ chlòtha" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Barrachd fiosrachaidh mu na siostaman foillseachaidh, mun ùrlar agus sruth-" +"obrach le OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Pròiseas foillseachadh is deasachadh OMP" + +msgid "about.aboutSoftware" +msgstr "" + +#, fuzzy +msgid "about.aboutOMPPress" +msgstr "" +"Tha an clò seo a’ cleachdadh Open Monograph Press {$ompVersion}, bathar-bog " +"le còd fosgailte airson stiùireadh chlòthan is foillseachadh, le taic a’ Public Knowledge Project agus ga sgaoileadh " +"gu saor fo cheadachas coitcheann poblach GNU." + +#, fuzzy +msgid "about.aboutOMPSite" +msgstr "" +"Tha an làrach seo a’ cleachdadh Open Monograph Press {$ompVersion}, bathar-" +"bog le còd fosgailte airson stiùireadh clòthan is foillseachadh, le taic a’ " +"Public Knowledge Project agus ga " +"sgaoileadh gu saor fo cheadachas coitcheann poblach GNU." + +msgid "help.searchReturnResults" +msgstr "Till gu toraidhean an luirg" + +msgid "help.goToEditPage" +msgstr "Fosgail duilleag ùr gus am fiosrachadh seo a dheasachadh" + +msgid "installer.appInstallation" +msgstr "Stàladh OMP" + +msgid "installer.ompUpgrade" +msgstr "Àrdachadh OMP" + +msgid "installer.installApplication" +msgstr "Stàlaich Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" + +#, fuzzy +msgid "installer.installationInstructions" +msgstr "" +"\n" +"

      Mòran taing airson Open Monograph Press {$version} aig " +"a’ Public Knowledge Project a luchdadh a-nuas. Mus lean thu air adhart, " +"leugh am faidhle README a tha ga " +"ghabhail a-staigh leis a’ bhathar-bhog seo. Airson barrachd fiosrachaidh mun " +"Public Knowledge Project agus na pròiseactan bathair-bhog aca, tadhail air " +"làrach-lìn PKP. Ma tha " +"thu airson aithris a dhèanamh aig buga no ma tha ceist agad mu Open " +"Monograph Press, faic am fòram taice no tadhail air an t-siostam aig PKP airson aithris a dhèanamh aig " +"bugaichean. Ge b’ fheàrr leinn cluinntinn o dhaoine slighe an fhòraim, " +"’s urrainn dhut post-d a chur chun an sgioba cuideachd pkp.contact@gmail.com.

      \n" +"\n" +"

      Àrdachadh

      \n" +"\n" +"

      Ma tha thu ag àrdachadh stàladh làithreach de OMP, briog an-seo a leantainn air adhart.

      " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Ceuman ro-stàlaidh" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

      1. Feumaidh tu na faidhlichean is pasganan a leans (agus an t-susbaint " +"annta) a dhèanamh so-sgrìobhte:

      \n" +"
        \n" +"\t
      • Tha config.inc.php so-sgrìobhte (roghainneil): " +"{$writable_config}\n" +"
      • \n" +"\t
      • Tha public/ so-sgrìobhte: {$writable_public}\n" +"
      • \n" +"\t
      • Tha cache/ so-sgrìobhte: {$writable_cache}\n" +"
      • \n" +"\t
      • Tha cache/t_cache/ so-sgrìobhte: {$writable_templates_cache}\n" +"
      • \n" +"\t
      • Tha cache/t_compile/ so-sgrìobhte: " +"{$writable_templates_compile}\n" +"
      • \n" +"\t
      • Tha cache/_db so-sgrìobhte: {$writable_db_cache}\n" +"
      • \n" +"
      \n" +"\n" +"

      2. Feumaidh tu pasgan a chruthachadh far an cumar na faidhlichean a thèid " +"a luchdadh suas agus feumaidh e a bhith so-sgrìobhte (faic “Roghainnean " +"faidhle” gu h-ìosal.

      " + +msgid "installer.upgradeInstructions" +msgstr "" +"

      Tionndadh OMP {$version}

      \n" +"\n" +"

      Mòran taing airson Open Monograph Press aig a’ Public " +"Knowledge Project a luchdadh a-nuas. Mus lean thu air adhart, leugh na " +"faidhlichean README agus UPGRADE a tha gan gabhail a-staigh leis a’ " +"bhathar-bhog seo. Airson barrachd fiosrachaidh mun Public Knowledge Project " +"agus na pròiseactan bathair-bhog aca, tadhail air làrach-lìn PKP. Ma tha thu airson aithris a " +"dhèanamh aig buga no ma tha ceist agad mu Open Monograph Press, faic am fòram taice no " +"tadhail air an t-siostam aig PKP airson aithris a dhèanamh aig bugaichean. Ge b’ fheàrr " +"leinn cluinntinn o dhaoine slighe an fhòraim, ’s urrainn dhut post-d a chur " +"chun an sgioba cuideachd aig pkp." +"contact@gmail.com.

      \n" +"

      Mholamaid dhut gu mòr gun dèan thu lethbhreac-glèidhidh " +"dhen stòr-dàta, pasgan nam faidhlichean agus pasgan stàladh OMP agad mus " +"lean thu air adhart.

      \n" +"

      Ma tha thu a’ ruith sa mhodh sàbhailte PHP, dèan cinnteach gu bheil crìoch " +"àrd aig steòrnadh max_execution_time san fhaidhle rèiteachaidh php.ini " +"agad.\n" +"Ma ruigear a’ chrìoch-ama seo no tè sam bith eile (m.e. an steòrnadh " +"“Timeout” aig Apache) agus ma bhriseas sin a-steach air an àrdachadh, bidh " +"agad ris a chur ceart de làimh.

      " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Airson làn-taic Unicode (UTF-8), tagh UTF-8 airson gach roghainn a thaobh " +"nan seataichean charactaran. Thoir an aire gum feum an taic seo " +"frithealaiche stòir-dhàta MySQL >= 4.1.1 no PostgreSQL >= 9.1.5 aig an àm " +"seo. Thoir an aire cuideachd gum feum làn-taic Unicode leabhar-lann mbstring (rud a bhios " +"an comas a ghnàth anns gach stàladh PHP o chionn greis). Dh’fhaoidte gum bi " +"duilgheadasas agad le seataichean charactaran sònraichte mur eil am " +"frithealaiche agad a’ coileanadh nan riatanasan seo.\n" +"

      \n" +"Tha taic aig an fhrithealaiche agad ri mbstring: {$supportsMBString}" +"" + +msgid "installer.allowFileUploads" +msgstr "" +"Tha am frithealaiche agad a’ ceadachadh luchdadh suas de dh’fhaidhlichean " +"aig an àm seo: {$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Tha am frithealaiche agad a’ ceadachadh luchdadh suas de dh’fhaidhlichean " +"suas chun a’ mheud a leanas aig an àm seo: {$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Am prìomh-chànan a chleachdas an siostam seo. Thoir sùil air an stiùireadh " +"airson OMP ma tha cànan a dhìth ort nach fhaic thu an-seo." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Tagh na cànain eile a thèid a chleachdadh san t-siostam seo. Bidh na cànain " +"seo ri làimh chlòthan aig am bi air òstaireachd air an làrach. Gabhaidh " +"cànain a stàladh o eadar-aghaidh rianachd na làraich uair sam bith " +"cuideachd. Dh’fhaoidte gu bheil sgeamaichean ionadail ris a bheil * gun " +"choileanadh." + +msgid "installer.filesDirInstructions" +msgstr "" +"Cuir a-steach ainm slàn na slighe gu pasgan làithreach far an tèid na " +"faidhlichean a chumail a thèid a luchdadh suas. Cha bu chòir dha a bhith na " +"phasgan a ruigear calg-dhìreach on lìon. Dèan cinnteach gu bheil am " +"pasgan seo ann agus gun gabh sgrìobhadh ann mus tòisich thu air an stàladh. Bu chòir do shlaisichean air adhart a bhith ann an ainmean slighean " +"Windows, m.e. “C:/mypress/files”." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"Feumaidh OMP cothrom air stòr-dàta SQL far an cùm e an dàta aige. Faic " +"riatanasan an t-siostaim gu h-àrd airson liosta nan stòr-dàta ris a bheil " +"taic. Cuir na roghainnean a thèid a chleachdadh airson ceangal a dhèanamh " +"ris an stòr-dàta sna raointean gu h-ìosal." + +msgid "installer.upgradeApplication" +msgstr "Àrdaich Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

      CUDROMACH!

      \n" +"

      Cha b’ urrainn dhan stàlaichear sgrìobhadh thairis air an fhaidhle " +"rèiteachaidh. Mus cleachd thu an siostam, fosgail config.inc.php " +"ann an deasaiche teacsa iomchaidh agus cuir na tha san raon teacsa gu h-" +"ìosal an àite na susbaint ann.

      " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

      Chaidh OMP a stàladh.

      \n" +"

      Airson tòiseachadh air an siostam a chleachdadh, clàraich a-steach leis an ainm-chleachdaiche is facal-" +"faire a chuir thu a-steach air an duilleag roimhpe.

      \n" +"

      Ma tha thu airson naidheachdan is ùrachaidhean fhaighinn, dèan " +"clàradh aig http://pkp.sfu.ca/omp/register. Ma tha ceistean no beachdan " +"agad mu dhèidhinn, tadhail air an fhòram taice.

      " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

      Chaidh tionndadh {$version} de OMP a stàladh.

      \n" +"

      Na dìochuimhnich an roghainn “stàlaichte” a chur gu Air a-" +"rithist san fhaidhle rèiteachaidh config.inc.php agad.

      \n" +"

      Mur eil thu air clàradh agus ma tha thu ag iarraidh naidheachdan is " +"ùrachaidhean fhaighinn, dèan clàradh aig http://pkp.sfu.ca/omp/register. Ma tha ceistean no beachdan agad mu dhèidhinn, tadhail air an fhòram taice.

      " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Chaidh {$dueDate} a shuidheachadh le {$reviewerName} mar cheann-là " +"lìbhrigidh airson lèirmheas cuairt {$round} dhen tagradh {$submissionId}." + +msgid "log.review.reviewDeclined" +msgstr "" +"Dhiùlt {$userName} lèirmheas cuairt {$round} mu choinneamh tagradh " +"{$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"Ghabh {$reviewerName} ri lèirmheas cuairt {$round} mu choinneamh tagraidh " +"{$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"Chomharraich {$userName} gu bheil lèirmheas cuairt {$round} mu choinneamh " +"tagradh {$submissionId} gun chnuasachadh." + +msgid "log.editor.decision" +msgstr "" +"Chaidh co-dhùnadh le deasaiche ({$decision}) mu choinneamh a’ mhonograf " +"{$submissionId} a chlàradh le {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"Chaidh moladh le deasaiche ({$decision}) mu choinneamh a’ mhonograf " +"{$submissionId} a chlàradh le {$editorName}." + +msgid "log.editor.archived" +msgstr "Chaidh an tagradh {$submissionId} a chur dhan tasg-lann." + +msgid "log.editor.restored" +msgstr "Chaidh an tagradh {$submissionId} aiseag dhan chiutha." + +msgid "log.editor.editorAssigned" +msgstr "" +"Chaidh {$editorName} iomruineadh dhan tagradh {$submissionId} mar dheasaiche." + +msgid "log.proofread.assign" +msgstr "" +"Dh’iomruin {$assignerName} {$proofreaderName} airson dearbh-leughadh a " +"dhèanamh air an tagradh {$submissionId}." + +msgid "log.proofread.complete" +msgstr "Chuir {$proofreaderName} {$submissionId} airson sgeidealachadh." + +msgid "log.imported" +msgstr "Thug {$userName} a-steach am monograf {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Chaidh an còd ID a chur ris." + +msgid "notification.editedIdentificationCode" +msgstr "Chaidh an còd ID a dheasachadh." + +msgid "notification.removedIdentificationCode" +msgstr "Chaidh an còd ID a thoirt air falbh." + +msgid "notification.addedPublicationDate" +msgstr "Chaidh ceann-là an fhoillseachaidh a chur ris." + +msgid "notification.editedPublicationDate" +msgstr "Chaidh ceann-là an fhoillseachaidh a dheasachadh." + +msgid "notification.removedPublicationDate" +msgstr "Chaidh ceann-là an fhoillseachaidh a thoirt air falbh." + +msgid "notification.addedPublicationFormat" +msgstr "Chaidh fòrmat an fhoillseachaidh a chur ris." + +msgid "notification.editedPublicationFormat" +msgstr "Chaidh fòrmat an fhoillseachaidh a dheasachadh." + +msgid "notification.removedPublicationFormat" +msgstr "Chaidh fòrmat an fhoillseachaidh a thoirt air falbh." + +msgid "notification.addedSalesRights" +msgstr "Chaidh na còraichean reic a chur ris." + +msgid "notification.editedSalesRights" +msgstr "Chaidh na còraichean reic a dheasachadh." + +msgid "notification.removedSalesRights" +msgstr "Chaidh na còraichean reic a thoirt air falbh." + +msgid "notification.addedRepresentative" +msgstr "Chaidh an neach-ionaid a chur ris." + +msgid "notification.editedRepresentative" +msgstr "Chaidh an neach-ionaid a dheasachadh." + +msgid "notification.removedRepresentative" +msgstr "Chaidh an neach-ionaid a thoirt air falbh." + +msgid "notification.addedMarket" +msgstr "Chaidh a’ mhargaid a chur ris." + +msgid "notification.editedMarket" +msgstr "Chaidh a’ mhargaid a dheasachadh." + +msgid "notification.removedMarket" +msgstr "Chaidh a’ mhargaid a thoirt air falbh." + +msgid "notification.addedSpotlight" +msgstr "Chaidh prosbaig a chur ris." + +msgid "notification.editedSpotlight" +msgstr "Chaidh a’ phrosbaig a dheasachadh." + +msgid "notification.removedSpotlight" +msgstr "Chaidh a’ phrosbaig a thoirt air falbh." + +msgid "notification.savedCatalogMetadata" +msgstr "Chaidh meata-dàta a’ chatalog a shàbhaladh." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Chaidh meata-dàta fòrmat an fhoillseachaidh a shàbhaladh." + +msgid "notification.proofsApproved" +msgstr "Fhuair na dearbhan aonta." + +msgid "notification.removedSubmission" +msgstr "Chaidh an tagradh a sguabadh às." + +msgid "notification.type.submissionSubmitted" +msgstr "Chaidh monograf ùr, “{$title}”, a chur." + +msgid "notification.type.editing" +msgstr "Tachartasan deasachaidh" + +msgid "notification.type.reviewing" +msgstr "Lèirmheasadh thachartasan" + +msgid "notification.type.site" +msgstr "Tachartasan na làraich" + +msgid "notification.type.submissions" +msgstr "Tachartas tagraidh" + +msgid "notification.type.userComment" +msgstr "Thug leughadair seachad beachd air “{$title}”." + +msgid "notification.type.public" +msgstr "Fiosan-naidheachd poblach" + +msgid "notification.type.editorAssignmentTask" +msgstr "Chaidh monograf ùr a chur agus tha e feumach air deasaiche." + +msgid "notification.type.copyeditorRequest" +msgstr "" +"Chaidh iarraidh ort lèirmheas a dhèanamh air a’ ghrinn-deasachadh a rinneadh " +"air “{$title}”." + +msgid "notification.type.layouteditorRequest" +msgstr "" +"Chaidh iarraidh ort lèirmheas a dhèanamh air a’ cho-dhealbhachd aig " +"“{$title}”." + +msgid "notification.type.indexRequest" +msgstr "Chaidh iarraidh ort clàr-amais a chruthachadh dha “{$title}”." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Thòisich an lèirmheas inntearnail." + +msgid "notification.type.approveSubmission" +msgstr "" +"Tha an tagradh seo a’ feitheamh ri aonta fhathast ann an inneal innteartan " +"a’ chatalog agus nochdaidh e sa chatalog phoblach an uairsin." + +msgid "notification.type.approveSubmissionTitle" +msgstr "A’ feitheamh ri aonta." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Cha nochd am monograf sa chatalog gus an deach fhoillseachadh. Airson an " +"leabhar seo a chur ris a’ chatalog, briog air an taba “Foillseachadh”." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Cha deach dòigh pàighidh a rèiteachadh." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Feumaidh tu dòigh pàighidh a rèiteachadh mus urrainn dhut roghainnean " +"malairt-d a shònrachadh." + +msgid "notification.type.visitCatalogTitle" +msgstr "Stiùireadh a’ chatalog" + +#, fuzzy +msgid "notification.type.visitCatalog" +msgstr "" +"Fhuair am monograf aonta. Tadhail air a’ chatalog a stiùireadh mion-" +"fhiosrachadh a’ chatalog leis na ceanglaichean gu h-àrd." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Chaidh inntrigeadh dha diùltadh ort oir chan eil coltas gu bheil thu nad " +"lèirmheasaiche dligheach airson a’ mhonograf seo." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Chaidh inntrigeadh dha diùltadh ort oir chan eil coltas gu bheil thu nad " +"ùghdar a’ mhonograf seo." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Chaidh inntrigeadh dha diùltadh ort oir chan eil coltas nach deach d’ " +"iomruineadh mar lèirmheasaiche airson a’ mhonograf seo." + +msgid "user.authorization.monographFile" +msgstr "" +"Chaidh inntrigeadh do dh’fhaidhle a’ mhonograf a dh’iarr thu diùltadh ort." + +msgid "user.authorization.invalidMonograph" +msgstr "" +"Chan eil am monograf dligheach no cha deach monograf sam bith iarraidh!" + +#, fuzzy +msgid "user.authorization.noContext" +msgstr "Chan eil clò sa cho-theacsa!" + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Tha thu a’ feuchainn ri cothrom fhaighinn air monograf nach eil na phàirt " +"dhen t-sreath agad-sa." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" +"Chaidh inntrigeadh a dhiùltadh! Cha deach d’ iomruineadh do cheum seo an t-" +"sruth-obrach." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Chaidh inntrigeadh a dhiùltadh! Tha comas gnìomh agad ann am buidheann " +"chleachdaichean nach deach iomruineadh do cheum seo an t-sruth-obrach. Thoir " +"sùil air roghainnean a’ chlòtha agad." + +msgid "payment.directSales" +msgstr "Luchdaich a-nuas o làrach-lìn a’ chlòtha" + +msgid "payment.directSales.price" +msgstr "Prìs" + +msgid "payment.directSales.availability" +msgstr "Faotainneachd" + +msgid "payment.directSales.catalog" +msgstr "Catalog" + +msgid "payment.directSales.approved" +msgstr "Air aontachadh" + +msgid "payment.directSales.priceCurrency" +msgstr "A’ phrìs ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Feumaidh prìs a bhith na àireamh. Na cuir ann samhla an airgeadra." + +msgid "payment.directSales.directSales" +msgstr "Reicean dìreach" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Chan eil seo ri làimh" + +msgid "payment.directSales.notSet" +msgstr "Cha deach a shuidheachadh" + +msgid "payment.directSales.openAccess" +msgstr "Inntrigeadh fosgailte" + +msgid "payment.directSales.price.description" +msgstr "" +"Gabhaidh fòrmatan faidhle a chur ri làimh airson luchdadh a-nuas o làrach-" +"lìn a’ chlòtha slighe inntrigidh fhosgailte gun chosgais sam bith do " +"leughadairean no slighe reicean dìreach (a’ cleachdadh làimhsichear pàighidh " +"air loidhne mar a chaidh a rèiteachadh ann an roghainn an sgaoilidh). " +"Sònraich an dòigh inntrigidh airson an fhaidhle seo." + +msgid "payment.directSales.validPriceRequired" +msgstr "Tha feum air prìs mar àireamh dhligheach." + +msgid "payment.directSales.purchase" +msgstr "Ceannaich {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Luchdaich a-nuas {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Ceannaich monograf no luchdadh a-nuas de chaibideil" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Bidh tu a’ ceannach luchdadh a-nuas dìreach de mhonograf no caibideil de " +"mhonograf leis an tar-chur seo." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Chaidh faidhle mapadh XML na cobharach “{$filename}” ath-luchdadh an tòir " +"{$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Leabhar" + +msgid "submission.pdf.download" +msgstr "Luchdaich a-nuas am faidhle PDF seo" + +msgid "user.profile.form.showOtherContexts" +msgstr "Clàraich aig clòthan eile" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Falaich na clòthan eile" + +msgid "submission.round" +msgstr "Cuairt {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Chaidh tagradh foillsichte mì-dhligheach a shònrachadh." + +msgid "catalog.coverImageTitle" +msgstr "Dealbh a’ chòmhdachaidh" + +msgid "grid.catalogEntry.chapters" +msgstr "" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +#~ msgid "debug.notes.currencyListLoad" +#~ msgstr "Chaidh liosta nan airgeadra “{$filename}” on XML" + +msgid "section.section" +msgstr "Sreath" diff --git a/locale/gd/submission.po b/locale/gd/submission.po new file mode 100644 index 00000000000..e8673b67c44 --- /dev/null +++ b/locale/gd/submission.po @@ -0,0 +1,583 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-17 02:12+0000\n" +"Last-Translator: Michael Bauer \n" +"Language-Team: Gaelic \n" +"Language: gd_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " +"(n > 2 && n < 20) ? 2 : 3;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Tagh co-phàirt" + +msgid "submission.title" +msgstr "Tiotal leabhair" + +msgid "submission.select" +msgstr "Tagh tagradh" + +msgid "submission.synopsis" +msgstr "Geàrr-chunntas" + +msgid "submission.workflowType" +msgstr "Seòrsa an tagraidh" + +msgid "submission.workflowType.description" +msgstr "" +"’S e obair a rinn co-dhiù aon ùghdar a tha ann am monograf. Tha ùghdar eile " +"aig gach caibideil ann an iom-leabhar deasaichte (le mion-fhiosrachadh nan " +"caibideilean gan cur a-steach rè ceann thall a’ phròiseis.)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Iom-leabhar deasaichte" + +msgid "submission.workflowType.editedVolume" +msgstr "" +"Iom-leabhar deasaichte: Thèid na h-ùghdaran a cho-cheangal ris a’ chaibideil " +"aca fhèin." + +msgid "submission.workflowType.authoredWork" +msgstr "Monograf: Thèid na h-ùghdaran a cho-cheangal ris an leabhar air fad." + +msgid "submission.workflowType.change" +msgstr "Atharraich" + +msgid "submission.editorName" +msgstr "{$editorName} (deas.)" + +msgid "submission.monograph" +msgstr "Monograf" + +msgid "submission.published" +msgstr "Deiseil airson saothrachadh" + +msgid "submission.fairCopy" +msgstr "Lethbhreac grinn" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Ceadan" + +msgid "submission.chapter" +msgstr "Caibideil" + +msgid "submission.chapters" +msgstr "Caibideilean" + +msgid "submission.chapter.addChapter" +msgstr "Cuir caibideil ris" + +msgid "submission.chapter.editChapter" +msgstr "Deasaich a’ chaibideil" + +msgid "submission.chapter.pages" +msgstr "Duilleagan" + +msgid "submission.copyedit" +msgstr "Grinn-deasachadh" + +msgid "submission.publicationFormats" +msgstr "Fòrmatan foillseachaidh" + +msgid "submission.proofs" +msgstr "Dearbhaidhean" + +msgid "submission.download" +msgstr "Luchdaich a-nuas" + +msgid "submission.sharing" +msgstr "Co-roinn seo" + +msgid "manuscript.submission" +msgstr "Tagradh sgrìobhainn" + +msgid "submission.round" +msgstr "Cuairt {$round}" + +msgid "submissions.queuedReview" +msgstr "Fo lèirmheas" + +msgid "manuscript.submissions" +msgstr "Tagraidhean sgrìobhainnean" + +msgid "submission.metadata" +msgstr "Meata-dàta" + +msgid "submission.supportingAgencies" +msgstr "Buidhnean a tha a’ cur taic ris" + +msgid "grid.action.addChapter" +msgstr "Cruthaich caibideil ùr" + +msgid "grid.action.editChapter" +msgstr "Deasaich a’ chaibideil seo" + +msgid "grid.action.deleteChapter" +msgstr "Sguab a’ chaibideil seo às" + +msgid "submission.submit" +msgstr "Tòisich air tagradh de leabhar ùr" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Tòisich air tagradh ùr ann an" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Tagradh ùr" + +msgid "submission.submit.upload" +msgstr "Luchdaich an tagradh suas" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "Comharraich an com-pàirtiche seo mar dheasaiche an iom-leabhair seo." + +msgid "submission.submit.seriesPosition" +msgstr "Ionad san t-sreath" + +msgid "submission.submit.seriesPosition.description" +msgstr "Mar eisimpleir: Leabhar 2, Iom-leabhar 2" + +msgid "submission.submit.privacyStatement" +msgstr "An aithris prìobhaideachd" + +msgid "submission.submit.contributorRole" +msgstr "Dreuchd neach-pàirteachaidh" + +msgid "submission.submit.submissionFile" +msgstr "Faidhle tagraidh" + +msgid "submission.submit.prepare" +msgstr "Ullaich" + +msgid "submission.submit.catalog" +msgstr "Catalog" + +msgid "submission.submit.metadata" +msgstr "Meata-dàta" + +msgid "submission.submit.finishingUp" +msgstr "Ga chrìochnachadh" + +msgid "submission.submit.confirmation" +msgstr "Dearbhadh" + +msgid "submission.submit.nextSteps" +msgstr "Na h-ath-cheuman" + +msgid "submission.submit.coverNote" +msgstr "Nòta còmhdachaidh dhan deasaiche" + +msgid "submission.submit.generalInformation" +msgstr "Fiosrachadh coitcheann" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Chaidh fios mun tagradh agad a chur chun a’ chlòtha agus chaidh post-d a " +"chur thugad a dhearbhas gun d’fhuair iad e. Turas a rinn an lèirmheasaiche " +"lèirmheas air an tagradh, cuiridh iad fios thugad." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Leugh na rudan air liosta-chromagan an tagraidh is cuir cromagan riutha. Tha " +"uiread a nithean gun chromag fhathast: {$itemsRemaining}." + +msgid "submission.submit.placement" +msgstr "Suidheachadh an tagraidh" + +msgid "submission.submit.userGroup" +msgstr "Cuir e ’s mi nam dhreuchd a leanas…" + +msgid "submission.submit.noContext" +msgstr "Cha b’ urrainn dhuinn clò an tagraidh seo a lorg." + +msgid "grid.chapters.title" +msgstr "Caibideilean" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Sguab às na luchdaich an grinn-deasaiche suas" + +msgid "submission.complete" +msgstr "Air aontachadh" + +msgid "submission.incomplete" +msgstr "A’ feitheamh ri aonta" + +msgid "submission.editCatalogEntry" +msgstr "Innteart" + +msgid "submission.catalogEntry.new" +msgstr "Cuir innteart ris" + +msgid "submission.catalogEntry.add" +msgstr "Cuir na thagh thu ris a’ chatalog" + +msgid "submission.catalogEntry.select" +msgstr "Tagh monografaichean airson an cur ris a’ chatalog" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" +"Feumaidh tu co-dhiù aon mhonograf a thaghadh airson a chur ris a’ chatalog." + +msgid "submission.catalogEntry.confirm" +msgstr "Cuir an leabhar seo ris a’ chatalog phoblach" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Dearbh gu bheil an tagradh deiseil airson a chur dhan chatalog." + +msgid "submission.catalogEntry.isAvailable" +msgstr "" +"Tha am monograf seo deiseil airson a ghabhail a-staigh sa chatalog phoblach." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Seall an tagradh" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Chinn-là foillseachaidh" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Cleachdaidh gach caibideil ceann-là foillseachadh a’ mhonograf." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Faodaidh ceann-là foillseachaidh fa leth a bhith aig gach caibideil." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monograf" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Catalog" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Fòrmat foillseachaidh" + +msgid "submission.event.metadataPublished" +msgstr "Fhuair meata-dàta a’ mhonograf aonta airson foillseachadh." + +msgid "submission.event.metadataUnpublished" +msgstr "Chan eil meata-dàta a’ mhonograf ga fhoillseachadh tuilleadh." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "" +"Chaidh am fòrmat foillseachaidh “{$publicationFormatName}” a chur ri làimh." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" +"Chan eil am fòrmat foillseachaidh “{$publicationFormatName}” ri làimh " +"tuilleadh." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Fhuair am fòrmat foillseachaidh “{$publicationFormatName}” aonta airson " +"foillseachadh." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"Chan eil am fòrmat foillseachaidh “{$publicationFormatName}” ga " +"fhoillseachadh tuilleadh." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Chaidh meata-dàta a’ chatalog ùrachadh." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"Chaidh meata-dàta an fhòrmait fhoillseachaidh “{$formatName}” ùrachadh." + +msgid "submission.event.publicationFormatCreated" +msgstr "Chaidh am fòrmat foillseachaidh “{$formatName}” a chruthachadh." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Chaidh am fòrmat foillseachaidh “{$formatName}” a thoirt air falbh." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Cuir airson lèirmheas air an taobh a-muigh" + +msgid "workflow.review.externalReview" +msgstr "Lèirmheas air an taobh a-muigh" + +msgid "submission.upload.fileContents" +msgstr "Co-phàirt tagraidh" + +msgid "submission.dependentFiles" +msgstr "Faidhlichean eisimeileach" + +msgid "submission.metadataDescription" +msgstr "" +"Tha na riatanasan seo stèidhichte air seata meata-dàta Dublin Core, stannard " +"eadar-nàiseanta airson tuairisgeul a thoirt air susbaint clòtha." + +msgid "section.any" +msgstr "Sreath sam bith" + +msgid "submission.list.monographs" +msgstr "Monografaichean" + +msgid "submission.list.countMonographs" +msgstr "Monografaichean ({$count})" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} dhe na monografaichean uile ({$total})" + +msgid "submission.list.orderFeatures" +msgstr "Gleusan an òrduigh" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Dèan slaodadh is leigeil às no thoir gnogag air na putanan suas is sìos " +"airson òrdugh nan gleusan air an duilleag-dhachaigh atharrachadh." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Dèan slaodadh is leigeil às no thoir gnogag air na putanan suas is sìos " +"airson òrdugh nan gleusan ann an {$title} atharrachadh." + +msgid "submission.list.saveFeatureOrder" +msgstr "An t-òrdugh sàbhalaidh" + +msgid "submission.list.viewEntry" +msgstr "" + +msgid "catalog.browseTitles" +msgstr "Tiotalan ({$numTitles})" + +msgid "publication.catalogEntry" +msgstr "Innteart a’ chatalog" + +msgid "publication.catalogEntry.success" +msgstr "Chaidh mion-fhiosrachadh an innteirt seo dhen chatalog ùrachadh." + +msgid "publication.invalidSeries" +msgstr "Cha b’ urrainn dhuinn an sreath dhen fhoillseachadh seo a lorg." + +msgid "publication.inactiveSeries" +msgstr "" + +msgid "publication.required.issue" +msgstr "" +"Feumar am foillseachadh iomruineadh do dh’iris mus gabh fhoillseachadh." + +msgid "publication.publishedIn" +msgstr "Air fhoillseachadh ann an {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Chaidh gach riatanas foillseachaidh a choileanadh. A bheil thu cinnteach gu " +"bheil thu airson an t-innteart seo dhen chatalog a dhèanamh poblach?" + +msgid "publication.scheduledIn" +msgstr "" +"Gu bhith fhoillseachadh ann an {$issueName}." + +msgid "submission.publication" +msgstr "" + +msgid "publication.status.published" +msgstr "" + +msgid "submission.status.scheduled" +msgstr "" + +msgid "publication.status.unscheduled" +msgstr "" + +msgid "submission.publications" +msgstr "" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" + +msgid "publication.datePublished" +msgstr "" + +msgid "publication.editDisabled" +msgstr "" + +msgid "publication.event.published" +msgstr "" + +msgid "publication.event.scheduled" +msgstr "" + +msgid "publication.event.unpublished" +msgstr "" + +msgid "publication.event.versionPublished" +msgstr "" + +msgid "publication.event.versionScheduled" +msgstr "" + +msgid "publication.event.versionUnpublished" +msgstr "" + +msgid "publication.invalidSubmission" +msgstr "" + +msgid "publication.publish" +msgstr "" + +msgid "publication.publish.requirements" +msgstr "" + +msgid "publication.required.declined" +msgstr "" + +msgid "publication.required.reviewStage" +msgstr "" + +msgid "submission.license.description" +msgstr "" + +msgid "submission.copyrightHolder.description" +msgstr "" + +msgid "submission.copyrightOther.description" +msgstr "" + +msgid "publication.unpublish" +msgstr "" + +msgid "publication.unpublish.confirm" +msgstr "" + +msgid "publication.unschedule.confirm" +msgstr "" + +msgid "publication.version.details" +msgstr "" + +msgid "submission.queries.production" +msgstr "" + +msgid "publication.chapter.landingPage" +msgstr "" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/gd_GB/author.po b/locale/gd_GB/author.po deleted file mode 100644 index eec0a200925..00000000000 --- a/locale/gd_GB/author.po +++ /dev/null @@ -1,16 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-16 20:31+0000\n" -"Last-Translator: Michael Bauer \n" -"Language-Team: Gaelic \n" -"Language: gd_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " -"(n > 2 && n < 20) ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "author.submit.notAccepting" -msgstr "Chan eil an clò seo a’ gabhail ri tagraidhean aig an àm seo." diff --git a/locale/gd_GB/default.po b/locale/gd_GB/default.po deleted file mode 100644 index f76cd2b702a..00000000000 --- a/locale/gd_GB/default.po +++ /dev/null @@ -1,188 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-16 20:31+0000\n" -"Last-Translator: Michael Bauer \n" -"Language-Team: Gaelic \n" -"Language: gd_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " -"(n > 2 && n < 20) ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "AcqE" - -msgid "default.genres.prospectus" -msgstr "Prospectus" - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Tha sinn a’ brosnachadh leabhar-lannaichean an clò seo a chur am measg iris-" -"leabhraichean dealain na leabhar-lainn aca. A bharrachd air sin, faodaidh " -"leabhar-lannan an siostam foillseachaidh a tha stèidhichte air còd fosgailte " -"aig a’ chlò seo a chur air òstaireachd iad fhèin airson buill nan roinnean " -"aca a tha an sàs deasachadh chlòthan (Open " -"Monograph Press)." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"A bheil ùidh agad ann an com-pàirteachas sa chlò seo? Mholamaid dhut sùil a " -"thoirt air an duilleag Mun chlò " -"seo airson poileasaidh earrannan a’ chlò agus air an stiùireadh " -"do dh’ùghdaran. Feumaidh ùghdaran clàradh aig a’ chlò mus cuir iad tagradh no, ma tha iad " -"clàraichte mu thràth, faodaidh iad " -"clàradh a-steach agus tòiseachadh air na còig ceuman a tha ri " -"choileanadh." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Mholamaid do leughadairean clàradh airson seirbheis brathan foillseachadh a’ " -"chlò seo. Cleachd an ceangal Clàraich aig bàrr duilleag-dhachaigh a’ chlò. Ma nì an " -"leughadair clàradh, gheibh iad clàr-innse gach monograf ùr a’ chlò air a’ " -"phost-d. Ri linn sin, ’s urrainn dhan chlò tagradh gu bheil ìre de thaic no " -"luchd-leughaidh aca. Faic poileasaidh prìobhaideachd a’ chlò a " -"dhearbhas dha na leughadairean nach cleachd iad an ainmean is seòlaidhean " -"puist-d airson adhbhar sam bith eile." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
      \n" -"________________________________________________________________________
      " -"\n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

      Cha chleachdar na h-ainmean is seòlaidhean puist-d a chuirear a-steach " -"air làrach a’ chlò seo ach airson amasan foillsichte an a’ chlò seo agus cha " -"chuirear ri làimh pàrtaidh sam bith eile iad no airson adhbhar sam bith " -"eile.

      " - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "" -"Tha an teacsa seo a’ leantainn nan riaghailtean san stiùireadh do dh’ùghdaran a thaobh stoidhle is leabhar-eòlais a " -"gheibhear fon earrann “Mun chlò”." - -msgid "default.genres.appendix" -msgstr "Eàrr-ràdh" - -msgid "default.genres.bibliography" -msgstr "Leabhar-chlàr" - -msgid "default.genres.manuscript" -msgstr "Sgrìobhainn leabhair" - -msgid "default.genres.chapter" -msgstr "Sgrìobhainn caibideil" - -msgid "default.genres.glossary" -msgstr "Briathrachan" - -msgid "default.genres.index" -msgstr "Clàr-amais" - -msgid "default.genres.preface" -msgstr "Ro-ràdh" - -msgid "default.genres.table" -msgstr "Clàr" - -msgid "default.genres.figure" -msgstr "Figear" - -msgid "default.genres.photo" -msgstr "Dealbh" - -msgid "default.genres.illustration" -msgstr "Sgead-dhealbh" - -msgid "default.genres.other" -msgstr "Eile" - -msgid "default.groups.name.manager" -msgstr "Manaidsear clò" - -msgid "default.groups.plural.manager" -msgstr "Manaidsearan clò" - -msgid "default.groups.abbrev.manager" -msgstr "PM" - -msgid "default.groups.name.editor" -msgstr "Deasaiche clò" - -msgid "default.groups.plural.editor" -msgstr "Deasaichean clò" - -msgid "default.groups.abbrev.editor" -msgstr "PE" - -msgid "default.groups.name.sectionEditor" -msgstr "Deasaiche sreatha" - -msgid "default.groups.plural.sectionEditor" -msgstr "Deasaichean sreatha" - -msgid "default.groups.name.chapterAuthor" -msgstr "Ùghdar caibideil" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Ùghdaran caibideil" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "CA" - -msgid "default.groups.name.volumeEditor" -msgstr "Deasaiche mòr-thomaid" - -msgid "default.groups.plural.volumeEditor" -msgstr "Deasaichean mòr-thomaid" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "VE" - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"Cha deach an tagradh fhoillseachadh roimhe agus chan eil e aig clò eile " -"airson beachdachadh (no chaidh mìneachadh a thoirt seachad sna beachdan dhan " -"deasaiche)." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "" -"Tha am faidhle tagraidh san fhòrmat Microsoft Word, RTF no OpenDocument." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "" -"Far a bheil iad ri làimh, chaidh URLaichean airson nan reifreansan a thoirt " -"seachad." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"Tha an teacsa air beàrnadh singilte; a’ cleachdadh cruth-clò aig 12 phuing; " -"a’ cleachdadh clò Eadailteach seach fo-loidhnichean (ach ann an seòlaidhean " -"URL); agus tha gach dealbh, figear is clàr sna h-àitichean iomchaidh san " -"teacsa seach aig an deireadh." - -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Tha an clò seo a’ toirt cothrom fosgailte air an t-susbaint ann a chionn ’s " -"gu bheil sinn dhen bheachd gun tig àrdachadh air eadar-mhalairt eòlais eadar-" -"nàiseanta ma chuirear rannsachadh ri làimh a’ phobaill gun chuingeachadh." - -msgid "default.groups.name.externalReviewer" -msgstr "Lèirmheasaiche air an taobh a-muigh" - -msgid "default.groups.plural.externalReviewer" -msgstr "Lèirmheasaichean air an taobh a-muigh" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "ER" diff --git a/locale/gd_GB/locale.po b/locale/gd_GB/locale.po deleted file mode 100644 index 9f5c830ab42..00000000000 --- a/locale/gd_GB/locale.po +++ /dev/null @@ -1,1658 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-18 20:49+0000\n" -"Last-Translator: Michael Bauer \n" -"Language-Team: Gaelic \n" -"Language: gd_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " -"(n > 2 && n < 20) ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.round" -msgstr "Cuairt {$round}" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.catalog" -msgstr "Catalog" - -msgid "installer.installationComplete" -msgstr "" -"

      Chaidh OMP a stàladh.

      \n" -"

      Airson tòiseachadh air an siostam a chleachdadh, " -"clàraich a-steach leis an ainm-chleachdaiche is facal-faire a chuir thu " -"a-steach air an duilleag roimhpe.

      \n" -"

      Ma tha thu airson naidheachdan is ùrachaidhean fhaighinn, dèan " -"clàradh aig http://pkp.sfu.ca/omp/register. Ma tha ceistean no beachdan " -"agad mu dhèidhinn, tadhail air an fhòram taice.

      " - -msgid "navigation.catalog" -msgstr "Catalog" - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "installer.upgradeComplete" -msgstr "" -"

      Chaidh tionndadh {$version} de OMP a stàladh.

      \n" -"

      Na dìochuimhnich an roghainn “stàlaichte” a chur gu Air a-" -"rithist san fhaidhle rèiteachaidh config.inc.php agad.

      \n" -"

      Mur eil thu air clàradh agus ma tha thu ag iarraidh naidheachdan is " -"ùrachaidhean fhaighinn, dèan clàradh aig http://pkp.sfu.ca/omp/register." -" Ma tha ceistean no beachdan agad mu dhèidhinn, tadhail air an fhòram taice.

      " - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

      CUDROMACH!

      \n" -"

      Cha b’ urrainn dhan stàlaichear sgrìobhadh thairis air an fhaidhle " -"rèiteachaidh. Mus cleachd thu an siostam, fosgail config.inc.php " -"ann an deasaiche teacsa iomchaidh agus cuir na tha san raon teacsa gu h-" -"ìosal an àite na susbaint ann.

      " - -msgid "installer.filesDirInstructions" -msgstr "" -"Cuir a-steach ainm slàn na slighe gu pasgan làithreach far an tèid na " -"faidhlichean a chumail a thèid a luchdadh suas. Cha bu chòir dha a bhith na " -"phasgan a ruigear calg-dhìreach on lìon. Dèan cinnteach gu bheil am " -"pasgan seo ann agus gun gabh sgrìobhadh ann mus tòisich thu air an " -"stàladh. Bu chòir do shlaisichean air adhart a bhith ann an ainmean " -"slighean Windows, m.e. “C:/mypress/files”." - -msgid "installer.maxFileUploadSize" -msgstr "" -"Tha am frithealaiche agad a’ ceadachadh luchdadh suas de dh’fhaidhlichean " -"suas chun a’ mheud a leanas aig an àm seo: " -"{$maxFileUploadSize}" - -msgid "installer.allowFileUploads" -msgstr "" -"Tha am frithealaiche agad a’ ceadachadh luchdadh suas de dh’fhaidhlichean " -"aig an àm seo: {$allowFileUploads}" - -msgid "installer.localeSettingsInstructions" -msgstr "" -"Airson làn-taic Unicode (UTF-8), tagh UTF-8 airson gach roghainn a thaobh " -"nan seataichean charactaran. Thoir an aire gum feum an taic seo " -"frithealaiche stòir-dhàta MySQL >= 4.1.1 no PostgreSQL >= 9.1.5 aig an àm " -"seo. Thoir an aire cuideachd gum feum làn-taic Unicode leabhar-lann mbstring (rud a bhios " -"an comas a ghnàth anns gach stàladh PHP o chionn greis). Dh’fhaoidte gum bi " -"duilgheadasas agad le seataichean charactaran sònraichte mur eil am " -"frithealaiche agad a’ coileanadh nan riatanasan seo.\n" -"

      \n" -"Tha taic aig an fhrithealaiche agad ri mbstring: " -"{$supportsMBString}" - -msgid "installer.upgradeInstructions" -msgstr "" -"

      Tionndadh OMP {$version}

      \n" -"\n" -"

      Mòran taing airson Open Monograph Press aig a’ Public " -"Knowledge Project a luchdadh a-nuas. Mus lean thu air adhart, leugh na " -"faidhlichean README agus UPGRADE a tha gan gabhail a-staigh leis a’ " -"bhathar-bhog seo. Airson barrachd fiosrachaidh mun Public Knowledge Project " -"agus na pròiseactan bathair-bhog aca, tadhail air làrach-lìn PKP. Ma tha thu airson aithris a " -"dhèanamh aig buga no ma tha ceist agad mu Open Monograph Press, faic am fòram taice no " -"tadhail air an t-siostam aig PKP airson aithris a dhèanamh aig bugaichean. Ge b’ fheàrr " -"leinn cluinntinn o dhaoine slighe an fhòraim, ’s urrainn dhut post-d a chur " -"chun an sgioba cuideachd aig pkp.contact@gmail.com.

      \n" -"

      Mholamaid dhut gu mòr gun dèan thu lethbhreac-glèidhidh " -"dhen stòr-dàta, pasgan nam faidhlichean agus pasgan stàladh OMP agad mus " -"lean thu air adhart.

      \n" -"

      Ma tha thu a’ ruith sa mhodh sàbhailte PHP, dèan cinnteach gu bheil crìoch " -"àrd aig steòrnadh max_execution_time san fhaidhle rèiteachaidh php.ini agad." -"\n" -"Ma ruigear a’ chrìoch-ama seo no tè sam bith eile (m.e. an steòrnadh " -"“Timeout” aig Apache) agus ma bhriseas sin a-steach air an àrdachadh, bidh " -"agad ris a chur ceart de làimh.

      " - -msgid "installer.preInstallationInstructions" -msgstr "" -"

      1. Feumaidh tu na faidhlichean is pasganan a leans (agus an t-susbaint " -"annta) a dhèanamh so-sgrìobhte:

      \n" -"
        \n" -"\t
      • Tha config.inc.php so-sgrìobhte (roghainneil): " -"{$writable_config}\n" -"
      • \n" -"\t
      • Tha public/ so-sgrìobhte: {$writable_public}\n" -"
      • \n" -"\t
      • Tha cache/ so-sgrìobhte: {$writable_cache}\n" -"
      • \n" -"\t
      • Tha cache/t_cache/ so-sgrìobhte: {$writable_templates_cache}\n" -"
      • \n" -"\t
      • Tha cache/t_compile/ so-sgrìobhte: " -"{$writable_templates_compile}\n" -"
      • \n" -"\t
      • Tha cache/_db so-sgrìobhte: {$writable_db_cache}\n" -"
      • \n" -"
      \n" -"\n" -"

      2. Feumaidh tu pasgan a chruthachadh far an cumar na faidhlichean a thèid " -"a luchdadh suas agus feumaidh e a bhith so-sgrìobhte (faic “Roghainnean " -"faidhle” gu h-ìosal.

      " - -msgid "series.featured.description" -msgstr "Nochdaidh an sreath seo sa phrìomh sheòladaireachd" - -msgid "series.path" -msgstr "Slighe" - -msgid "catalog.manage" -msgstr "Stiùireadh a’ chatalog" - -msgid "catalog.manage.newReleases" -msgstr "Air ùr-fhoillseachadh" - -msgid "catalog.manage.category" -msgstr "Roinn-seòrsa" - -msgid "catalog.manage.series" -msgstr "Sreath" - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series.issn.validation" -msgstr "Cuir a-steach ISSN dligheach." - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "" -"Chan fhaod an ISSN clò-bhualaidh agus an ISSN air loidhne a bhith co-ionann." - -msgid "catalog.manage.series.onlineIssn" -msgstr "ISSN air loidhne" - -msgid "catalog.manage.series.printIssn" -msgstr "ISSN clò-bhualaidh" - -msgid "catalog.selectSeries" -msgstr "Tagh sreath" - -msgid "catalog.selectCategory" -msgstr "Tagh roinn-seòrsa" - -msgid "catalog.manage.homepageDescription" -msgstr "" -"Nochdaidh dealbh còmhdachadh nan leabhraichean a thagh thu mu bhàrr na " -"duilleige-dachaigh ann an seata as urrainnear sgroladh tromhpa. Briog air " -"“Brosnaich” agus an uairsin air an rionnag airson leabhar a chur ris an " -"timcheallan; briog air a’ chlisg-phuing airson a bhrosnachadh mar sgaoileadh " -"ùr; dèan slaodadh is leigeil às airson an t-òrdugh atharrachadh." - -msgid "catalog.manage.categoryDescription" -msgstr "" -"Briog air “Brosnaich” agus an uairsin air an rionnag airson leabhar " -"brosnaichte a thaghadh dhan roinn-seòrsa seo; dèan slaodadh is leigeil às " -"airson an t-òrdugh atharrachadh." - -msgid "catalog.manage.seriesDescription" -msgstr "" -"Briog air “Brosnaich” agus an uairsin air an rionnag airson leabhar " -"brosnaichte a thaghadh dhan t-sreath seo; dèan slaodadh is leigeil às airson " -"an t-òrdugh atharrachadh. Tha deasaiche(an) agus tiotal an t-sreatha co-" -"cheangailte ri sreath, am broinn roinn-seòrsa no an neo-eisimeileachd." - -msgid "catalog.manage.placeIntoCarousel" -msgstr "An timcheallan" - -msgid "catalog.manage.newRelease" -msgstr "Sgaoil" - -msgid "catalog.manage.manageSeries" -msgstr "Stiùirich an sreath" - -msgid "catalog.manage.manageCategories" -msgstr "Stiùirich na roinnean-seòrsa" - -msgid "catalog.manage.noMonographs" -msgstr "Chan eil monograf ann a chaidh iomruineadh." - -msgid "catalog.manage.featured" -msgstr "Brosnaichte" - -msgid "catalog.manage.categoryFeatured" -msgstr "Brosnaichte san roinn-seòrsa" - -msgid "catalog.manage.seriesFeatured" -msgstr "Brosnaichte san t-sreath" - -msgid "catalog.manage.featuredSuccess" -msgstr "’S e monograf brosnaichte a tha seo." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Chan e monograf brosnaichte a tha seo." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Chaidh am monograf a chomharradh mar sgaoileadh ùr." - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Cha deach am monograf a chomharradh mar sgaoileadh ùr." - -msgid "catalog.manage.feature.newRelease" -msgstr "Air ùr-fhoillseachadh" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Sgaoileadh ùr san roinn-seòrsa" - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Sgaoileadh ùr san t-sreath" - -msgid "catalog.manage.nonOrderable" -msgstr "" -"Chan urrainnear òrdan a chur airson a’ mhonograf seo gus am bi e na " -"mhonograf brosnaichte." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Lorg a-rèir tiotail no ùghdair" - -msgid "catalog.manage.isFeatured" -msgstr "" -"’S e monograf brosnaichte a tha seo. Na brosnaich am monograf seo tuilleadh." - -msgid "catalog.manage.isNotFeatured" -msgstr "Chan e monograf brosnaichte a tha seo. Dèan monograf brosnaichte dheth." - -msgid "catalog.manage.isNewRelease" -msgstr "" -"’S e sgaoileadh ùr a tha sa mhonograf seo. Comharraich nach e sgaoileadh ùr " -"a sa mhonograf seo." - -msgid "catalog.manage.isNotNewRelease" -msgstr "" -"Chan e sgaoileadh ùr a tha sa mhonograf seo. Dèan sgaoileadh ùr dhen " -"mhonograf seo." - -msgid "catalog.noTitles" -msgstr "Cha deach tiotal sam bith fhoillseachadh fhathast." - -msgid "notification.type.reviewing" -msgstr "Lèirmheasadh thachartasan" - -msgid "notification.type.site" -msgstr "Tachartasan na làraich" - -msgid "notification.type.submissions" -msgstr "Tachartas tagraidh" - -msgid "notification.type.userComment" -msgstr "Thug leughadair seachad beachd air “{$title}”." - -msgid "notification.type.public" -msgstr "Fiosan-naidheachd poblach" - -msgid "notification.type.editorAssignmentTask" -msgstr "Chaidh monograf ùr a chur agus tha e feumach air deasaiche." - -msgid "notification.type.copyeditorRequest" -msgstr "" -"Chaidh iarraidh ort lèirmheas a dhèanamh air a’ ghrinn-deasachadh a rinneadh " -"air “{$title}”." - -msgid "notification.type.layouteditorRequest" -msgstr "" -"Chaidh iarraidh ort lèirmheas a dhèanamh air a’ cho-dhealbhachd aig " -"“{$title}”." - -msgid "notification.type.indexRequest" -msgstr "Chaidh iarraidh ort clàr-amais a chruthachadh dha “{$title}”." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Thòisich an lèirmheas inntearnail." - -msgid "notification.type.approveSubmission" -msgstr "" -"Tha an tagradh seo a’ feitheamh ri aonta fhathast ann an inneal innteartan a’" -" chatalog agus nochdaidh e sa chatalog phoblach an uairsin." - -msgid "notification.type.approveSubmissionTitle" -msgstr "A’ feitheamh ri aonta." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "" -"Cha nochd am monograf sa chatalog gus an deach fhoillseachadh. Airson an " -"leabhar seo a chur ris a’ chatalog, briog air an taba “Foillseachadh”." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Cha deach dòigh pàighidh a rèiteachadh." - -msgid "notification.type.configurePaymentMethod" -msgstr "" -"Feumaidh tu dòigh pàighidh a rèiteachadh mus urrainn dhut roghainnean " -"malairt-d a shònrachadh." - -msgid "notification.type.visitCatalogTitle" -msgstr "Stiùireadh a’ chatalog" - -#, fuzzy -msgid "notification.type.visitCatalog" -msgstr "" -"Fhuair am monograf aonta. Tadhail air a’ chatalog a stiùireadh mion-" -"fhiosrachadh a’ chatalog leis na ceanglaichean gu h-àrd." - -msgid "user.authorization.invalidReviewAssignment" -msgstr "" -"Chaidh inntrigeadh dha diùltadh ort oir chan eil coltas gu bheil thu nad " -"lèirmheasaiche dligheach airson a’ mhonograf seo." - -msgid "user.authorization.monographAuthor" -msgstr "" -"Chaidh inntrigeadh dha diùltadh ort oir chan eil coltas gu bheil thu nad " -"ùghdar a’ mhonograf seo." - -msgid "user.authorization.monographReviewer" -msgstr "" -"Chaidh inntrigeadh dha diùltadh ort oir chan eil coltas nach deach d’ " -"iomruineadh mar lèirmheasaiche airson a’ mhonograf seo." - -msgid "user.authorization.monographFile" -msgstr "" -"Chaidh inntrigeadh do dh’fhaidhle a’ mhonograf a dh’iarr thu diùltadh ort." - -msgid "user.authorization.invalidMonograph" -msgstr "Chan eil am monograf dligheach no cha deach monograf sam bith iarraidh!" - -msgid "user.authorization.noContext" -msgstr "Chan eil clò sa cho-theacsa!" - -msgid "user.authorization.seriesAssignment" -msgstr "" -"Tha thu a’ feuchainn ri cothrom fhaighinn air monograf nach eil na phàirt " -"dhen t-sreath agad-sa." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "" -"Chaidh inntrigeadh a dhiùltadh! Cha deach d’ iomruineadh do cheum seo an t" -"-sruth-obrach." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "" -"Chaidh inntrigeadh a dhiùltadh! Tha comas gnìomh agad ann am buidheann " -"chleachdaichean nach deach iomruineadh do cheum seo an t-sruth-obrach. Thoir " -"sùil air roghainnean a’ chlòtha agad." - -msgid "payment.directSales" -msgstr "Luchdaich a-nuas o làrach-lìn a’ chlòtha" - -msgid "payment.directSales.price" -msgstr "Prìs" - -msgid "payment.directSales.availability" -msgstr "Faotainneachd" - -msgid "payment.directSales.approved" -msgstr "Air aontachadh" - -msgid "payment.directSales.priceCurrency" -msgstr "A’ phrìs ({$currency})" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Roinn-dùthcha sgaoileadh a’ bhathair" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Reat na cìse" - -msgid "monograph.publicationFormat.taxType" -msgstr "Seòrsa na cìse" - -msgid "monograph.publicationFormat.isApproved" -msgstr "" -"Gabh a-staigh am meata-dàta airson an fhòrmait fhoillseachaidh seo ann an " -"innteart catalog an leabhair seo." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Tha margaidean is prìsean a dhìth." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Tha còd dearbh-aithneachaidh a dhìth." - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Tha cuid dhen mheata-dàta a dhìth." - -msgid "monograph.publicationFormat.openTab" -msgstr "Fosgail taba fòrmat an fhoillseachaidh." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Fòrmat foillseachaidh" - -msgid "grid.catalogEntry.nameRequired" -msgstr "Tha feum air ainm." - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Tha feum air prìs dhligheach." - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Mion-fhiosrachadh mun fhòrmat" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Fòrmat fiosaigeach" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Bidh am fòrmat seo ri làimh air làrach-lìn fa leth" - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL de shusbaint air òstair cèin" - -msgid "grid.catalogEntry.monographRequired" -msgstr "Tha feum air ID airson a’ mhonograf." - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Feumaidh tu fòrmat foillseachaidh a thaghadh." - -msgid "grid.catalogEntry.availability" -msgstr "Faotainneachd" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Ri fhaighinn" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Chan eil seo ri làimh" - -msgid "grid.catalogEntry.proof" -msgstr "Dearbhadh" - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Aonta an fhòrmait" - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Faotainneachd an fhòrmait" - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Cha d’fhuair innteart a’ chatalog aonta." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Chan eil am fòrmat ann an innteart a’ chatalog." - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Cha d’fhuair an dearbh aonta." - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Air aontachadh" - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "A’ feitheamh ri aonta" - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Tha feum air meud an fhaidhle mu choinneamh fhòrmatan digiteach." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Tha feum air còd a dh’innseas a bheil am bathar ri fhaighinn." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Feumaidh tu còd co-chur bathair a thaghadh." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Luach a’ chòd" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "Seòrsa de chòd ONIX" - -msgid "grid.catalogEntry.codeRequired" -msgstr "Tha feum air còd dearbh-aithneachaidh." - -msgid "grid.catalogEntry.valueRequired" -msgstr "Tha feum air luach." - -msgid "grid.catalogEntry.salesRights" -msgstr "Còraichean reic" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Luach a’ chòd" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Seòrsa de chòraichean reic" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "An còrr dhen t-saoghal?" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "" -"Cuir cromag sa bhogsa seo airson innteart nan còraichean reic seo a " -"chleachdadh anns gach suidheachadh dhan fhòrmat agad. Cha leigear a leas " -"dùthchannan is roinnean-dùthcha a thaghadh ma nì thu sin." - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "" -"Chaidh seòrsa de reicean ROW a shònrachadh dhan fhòrmat fhoillseachaidh seo " -"mu thràth." - -msgid "grid.catalogEntry.countries" -msgstr "Dùthchannan" - -msgid "grid.catalogEntry.regions" -msgstr "Roinnean-dùthcha" - -msgid "grid.catalogEntry.included" -msgstr "Ga ghabhail a-staigh" - -msgid "grid.catalogEntry.excluded" -msgstr "Air dùnadh a-mach" - -msgid "grid.catalogEntry.markets" -msgstr "Ranntairean margaide" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Ranntair" - -msgid "grid.catalogEntry.publicationDates" -msgstr "Chinn-là foillseachaidh" - -msgid "grid.catalogEntry.roleRequired" -msgstr "Tha feum air dreuchd dhan neach-ionaid." - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Tha feum air fòrmat airson a’ chinn-là." - -msgid "grid.catalogEntry.dateValue" -msgstr "Ceann-là" - -msgid "grid.catalogEntry.dateRole" -msgstr "Dreuchd" - -msgid "grid.catalogEntry.dateFormat" -msgstr "Fòrmat a’ chinn-là" - -msgid "grid.catalogEntry.dateRequired" -msgstr "" -"Tha feum air ceann-là agus feumaidh luach a’ chinn-là a bhith a-rèir fòrmat " -"a’ chinn-là a thagh thu." - -msgid "grid.catalogEntry.representatives" -msgstr "Luchd-ionaid" - -msgid "grid.catalogEntry.representativeType" -msgstr "Seòrsa an neach-ionaid" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Àidseantan" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Solaraichean" - -msgid "grid.catalogEntry.agent" -msgstr "Àidseant" - -msgid "grid.catalogEntry.agentTip" -msgstr "" -"’S urrainn dhut àidseant ainmeachadh a bhios gad riochdachadh san ranntair " -"seo. Chan eil seo riatanach." - -msgid "grid.catalogEntry.supplier" -msgstr "Solaraiche" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Tagh dreuchd:" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Dreuchd" - -msgid "grid.catalogEntry.representativeName" -msgstr "Ainm" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Fòn" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "Seòladh puist-d" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Làrach-lìn" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "ID an neach-ionaid" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Seòrsa ID an neach-ionaid (mholamaid GLN)" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "" -"Faodaidh tu an earrann a leanas fhàgail bàn ma bhios tu a’ solarachadh do " -"sheirbheisean fhèin dha na custamairean agad." - -msgid "grid.action.addRepresentative" -msgstr "Cuir neach-ionaid ris" - -msgid "grid.action.editRepresentative" -msgstr "Deasaich an neach-ionaid seo" - -msgid "grid.action.deleteRepresentative" -msgstr "Sguab an neach-ionaid seo às" - -msgid "spotlight" -msgstr "Prosbaig" - -msgid "spotlight.spotlights" -msgstr "Prosbaigean" - -msgid "spotlight.noneExist" -msgstr "Chan eil prosbaig ann aig an àm seo." - -msgid "spotlight.title.homePage" -msgstr "Fon phrosbaig" - -msgid "spotlight.author" -msgstr "Ùghdar, " - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Nì fon phrosbaig" - -msgid "grid.content.spotlights.category.homepage" -msgstr "An duilleag-dhachaigh" - -msgid "grid.content.spotlights.form.location" -msgstr "Ionad na prosbaig" - -msgid "grid.content.spotlights.form.item" -msgstr "Cuir a-steach tiotal airson na prosbaig (le fèin-choileanadh)" - -msgid "grid.content.spotlights.form.title" -msgstr "Tiotal na prosbaig" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Leabhar" - -msgid "grid.content.spotlights.itemRequired" -msgstr "Tha feum air nì." - -msgid "grid.content.spotlights.titleRequired" -msgstr "Tha feum air tiotal airson na prosbaig." - -msgid "grid.content.spotlights.locationRequired" -msgstr "Tagh ionad dhan phrosbaig seo." - -msgid "grid.action.editSpotlight" -msgstr "Deasaich a’ phrosbaig seo" - -msgid "grid.action.deleteSpotlight" -msgstr "Sguab a’ phrosbaig seo às" - -msgid "grid.action.addSpotlight" -msgstr "Cuir prosbaig ris" - -msgid "manager.series.open" -msgstr "Tagraidhean fosgailte" - -msgid "manager.series.indexed" -msgstr "Air inneacsadh" - -msgid "grid.libraryFiles.column.files" -msgstr "Faidhlichean" - -msgid "grid.action.catalogEntry" -msgstr "Seall foirm innteart a’ chatalog" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Tha am fòrmat a’ nochdadh ann an innteart a’ chatalog" - -msgid "grid.action.editFormat" -msgstr "Deasaich am fòrmat seo" - -msgid "grid.action.deleteFormat" -msgstr "Sguab am fòrmat seo às" - -msgid "grid.action.addFormat" -msgstr "Cuir fòrmat foillseachaidh ris" - -msgid "grid.action.approveProof" -msgstr "" -"Thoir aonta dhan dearbh a thaobh inneacsaidh agus airson a ghabhail a-staigh " -"sa chatalog" - -msgid "grid.action.pageProofApproved" -msgstr "Tha faidhle dearbhan nan duilleagan deiseil airson foillseachadh" - -msgid "grid.action.addAnnouncement" -msgstr "Cuir fios-naidheachd ris" - -msgid "grid.action.newCatalogEntry" -msgstr "Innteart ùr sa chatalog" - -msgid "grid.action.publicCatalog" -msgstr "Seall an nì seo sa chatalog" - -msgid "grid.action.feature" -msgstr "Toglaich taisbeanadh nan gleus" - -msgid "grid.action.featureMonograph" -msgstr "Nochd seo air timcheallan a’ chatalog" - -msgid "grid.action.releaseMonograph" -msgstr "Comharraich an tagradh seo mar “sgaoileadh ùr”" - -msgid "grid.action.manageCategories" -msgstr "Rèitich an roinn-seòrsa seo dhan chlò seo" - -msgid "grid.action.manageSeries" -msgstr "Rèitich an sreath seo dhan chlò seo" - -msgid "grid.action.addCode" -msgstr "Cuir còd ris" - -msgid "grid.action.editCode" -msgstr "Deasaich an còd seo" - -msgid "grid.action.deleteCode" -msgstr "Sguab an còd seo às" - -msgid "grid.action.addRights" -msgstr "Cuir còraichean reic ris" - -msgid "grid.action.editRights" -msgstr "Deasaich na còraichean seo" - -msgid "grid.action.deleteRights" -msgstr "Sguab na còraichean seo às" - -msgid "grid.action.addMarket" -msgstr "Cuir margaid ris" - -msgid "grid.action.editMarket" -msgstr "Deasaich a’ mhargaid seo" - -msgid "grid.action.deleteMarket" -msgstr "Sguab a’ mhargaid seo às" - -msgid "grid.action.addDate" -msgstr "Cuir ceann-là foillseachaidh ris" - -msgid "catalog.noTitlesNew" -msgstr "Chan eil foillseachadh ùr sam bith ri fhaighinn aig an àm seo." - -msgid "catalog.noTitlesSearch" -msgstr "Cha deach tiotalan a lorg a fhreagair air na lorg thu ({$searchQuery})." - -msgid "catalog.feature" -msgstr "Gleus" - -msgid "catalog.featured" -msgstr "Brosnaichte" - -msgid "catalog.featuredBooks" -msgstr "Leabhraichean brosnaichte" - -msgid "catalog.foundTitleSearch" -msgstr "Chaidh aon tiotal a lorg a fhreagair air na lorg thu ({$searchQuery})." - -msgid "catalog.foundTitlesSearch" -msgstr "" -"Chaidh tiotalan a lorg ({$number} dhiubh) a fhreagair air na lorg thu " -"({$searchQuery})." - -msgid "catalog.category.heading" -msgstr "A h-uile leabhar" - -msgid "catalog.newReleases" -msgstr "Air ùr-fhoillseachadh" - -msgid "catalog.dateAdded" -msgstr "Air a chur ris" - -msgid "catalog.publicationInfo" -msgstr "Fiosrachadh mun fhoillseachadh" - -msgid "catalog.published" -msgstr "Foillsichte" - -msgid "catalog.forthcoming" -msgstr "Ri thighinn" - -msgid "catalog.categories" -msgstr "Roinnean-seòrsa" - -msgid "catalog.parentCategory" -msgstr "Roinn-seòrsa pàrant" - -msgid "catalog.category.subcategories" -msgstr "Fo-roinnean-seòrsa" - -msgid "catalog.aboutTheAuthor" -msgstr "Mu dhèidhinn {$roleName}" - -msgid "catalog.loginRequiredForPayment" -msgstr "" -"Thoir an aire: Feumaidh tu clàradh a-steach an toiseach mus urrainn dhut " -"rudan a cheannach. Ma thaghas tu rud airson a cheannach, thèid d’ ath-" -"stiùireadh gu duilleag far an clàraich thu a-steach. Ma tha ìomhaigheag “" -"Inntrigeadh fosgailte” ri rud, gabhaidh a luchdadh a-nuas saor ’s an-asgaidh " -"gun fheum air clàradh a-steach." - -msgid "catalog.sortBy" -msgstr "Òrdugh nam monograf" - -msgid "catalog.sortBy.seriesDescription" -msgstr "Tagh òrdugh dha na leabhraichean san t-sreath seo." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Tagh òrdugh dha na leabhraichean san roinn-seòrsa seo." - -msgid "catalog.sortBy.catalogDescription" -msgstr "Tagh òrdugh dha na leabhraichean sa chatalog." - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "An t-ionad san t-sreath (feadhainn as ìsle an toiseach)" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "An t-ionad san t-sreath (feadhainn as àirde an toiseach)" - -msgid "catalog.viewableFile.title" -msgstr "Sealladh ({$type}) dhen fhaidhle {$title}" - -msgid "catalog.viewableFile.return" -msgstr "Till chun a’ mhion-fhiosrachaidh mu dhèidhinn {$monographTitle}" - -msgid "submission.search" -msgstr "Lorg leabhar" - -msgid "common.publication" -msgstr "Monograf" - -msgid "common.publications" -msgstr "Monografaichean" - -msgid "common.prefix" -msgstr "Ro-leasachan" - -msgid "common.preview" -msgstr "Ro-shealladh" - -msgid "common.feature" -msgstr "Gleus" - -msgid "common.searchCatalog" -msgstr "Lorg sa chatalog" - -msgid "common.moreInfo" -msgstr "Barrachd fiosrachaidh" - -msgid "common.listbuilder.completeForm" -msgstr "Lìon am foirm gu lèir." - -msgid "common.listbuilder.selectValidOption" -msgstr "Tagh roghainn dhligheach on liosta." - -msgid "common.listbuilder.itemExists" -msgstr "Chan urrainn dhut an aon rud a chur ris dà thuras." - -msgid "common.omp" -msgstr "OMP" - -msgid "common.homePageHeader.altText" -msgstr "Bann-cinn na duilleige-dachaigh" - -msgid "navigation.competingInterestPolicy" -msgstr "Am poileasaidh mu chòmhstri ùidhean" - -msgid "navigation.catalog.allMonographs" -msgstr "A h-uile monograf" - -msgid "navigation.catalog.manage" -msgstr "Stiùirich" - -msgid "navigation.catalog.administration.short" -msgstr "Ball sgioba rianachd LibreOffice" - -msgid "navigation.catalog.administration" -msgstr "Rianachd a’ chatalog" - -msgid "navigation.catalog.administration.categories" -msgstr "Roinnean-seòrsa" - -msgid "navigation.catalog.administration.series" -msgstr "Sreath" - -msgid "navigation.infoForAuthors" -msgstr "Do dh’ùghdaran" - -msgid "navigation.infoForLibrarians" -msgstr "Do leabhar-lannaichean" - -msgid "navigation.infoForAuthors.long" -msgstr "Fiosrachadh do dh’ùghdaran" - -msgid "navigation.infoForLibrarians.long" -msgstr "Fiosrachadh do leabhar-lannaichean" - -msgid "navigation.newReleases" -msgstr "Air ùr-fhoillseachadh" - -msgid "navigation.published" -msgstr "Foillsichte" - -msgid "navigation.wizard" -msgstr "An draoidh" - -msgid "navigation.linksAndMedia" -msgstr "Ceanglaichean is meadhanan sòisealta" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Ceangail ris a’ chatalog agad." - -msgid "navigation.skip.spotlights" -msgstr "Leum chun nam prosbaigean" - -msgid "navigation.navigationMenus.series.generic" -msgstr "Sreath" - -msgid "navigation.navigationMenus.series.description" -msgstr "Ceangail ri sreath." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Roinn-seòrsa" - -msgid "navigation.navigationMenus.category.description" -msgstr "Ceangail ri roinn-seòrsa." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Air ùr-fhoillseachadh" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Ceanglaichean ris na sgaoilidhean ùra agad." - -msgid "context.contexts" -msgstr "Clòthan" - -msgid "context.context" -msgstr "Brùth" - -msgid "context.current" -msgstr "An clò làithreach:" - -msgid "context.select" -msgstr "Geàrr leum gu clò eile:" - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Gabh a-staigh cleachdaichean aig nach eil dreuchd sa chlò seo." - -msgid "user.noRoles.submitMonograph" -msgstr "Cuir moladh" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Cuir monograf: Tha clàradh ùghdaran à comas aig an àm seo." - -msgid "user.noRoles.regReviewer" -msgstr "Clàraich mar lèirmheasaiche" - -msgid "user.noRoles.regReviewerClosed" -msgstr "" -"Clàraich mar lèirmheasaiche: Tha clàradh lèirmheasaichean à comas aig an àm " -"seo." - -msgid "user.reviewerPrompt" -msgstr "" -"A bheil ùidh agad ann a bhith a’ dèanamh lèirmheasan air tagraidhean dhan " -"chlò seo?" - -msgid "user.reviewerPrompt.userGroup" -msgstr "Tha, iarr dreuchd {$userGroup}." - -msgid "user.reviewerPrompt.optin" -msgstr "" -"Tha, tha mi ag iarraidh gun cuirear fios thugam ma bhios iarrtas ann airson " -"lèirmheas tagraidh dhan chlò seo." - -msgid "user.register.contextsPrompt" -msgstr "Dè na clòthan air an làrach seo bu toil leat clàradh aca?" - -msgid "user.register.otherContextRoles" -msgstr "Iarr na dreuchdan a leanas." - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Ma dh’iarr thu inbhe lèirmheasaiche airson clò sam bith, cuir a-steach na " -"cuspairean sa bheil ùidh agad." - -msgid "user.role.manager" -msgstr "Manaidsear a’ chlòtha" - -msgid "user.role.pressEditor" -msgstr "Deasaiche a’ chlòtha" - -msgid "user.role.subEditor" -msgstr "Deasaiche an t-sreatha" - -msgid "user.role.copyeditor" -msgstr "Grinn-deasaiche" - -msgid "user.role.proofreader" -msgstr "Dearbh-leughadair" - -msgid "user.role.productionEditor" -msgstr "Deasaiche saothrachaidh" - -msgid "user.role.managers" -msgstr "Manaidsearan a’ chlòtha" - -msgid "user.role.subEditors" -msgstr "Deasaichean an t-sreatha" - -msgid "user.role.editors" -msgstr "Deasaichean" - -msgid "user.role.copyeditors" -msgstr "Grinn-deasaichean" - -msgid "user.role.proofreaders" -msgstr "Dearbh-leughadairean" - -msgid "user.role.productionEditors" -msgstr "Deasaichean saothrachaidh" - -msgid "user.register.selectContext" -msgstr "Tagh clò airson clàradh aige:" - -msgid "user.register.noContexts" -msgstr "Chan eil clò sam bith air an làrach seo as urrainn dhut clàradh aige." - -msgid "user.register.privacyStatement" -msgstr "An aithris prìobhaideachd" - -msgid "user.register.registrationDisabled" -msgstr "Chan eil an clò seo a’ clàradh chleachdaichean aig an àm seo." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Chan eil am facal-faire a chuir thu a-steach fada gu leòr." - -msgid "user.register.readerDescription" -msgstr "Gheibhear fios air a’ phost-d nuair a thèid monograf fhoillseachadh." - -msgid "user.register.authorDescription" -msgstr "Comasach air nithean a chur dhan chlò." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Deònach lèirmheas seise a dhèanamh air tagraidhean dhan chlò." - -msgid "user.register.reviewerDescription" -msgstr "Deònach lèirmheas seise a dhèanamh air tagraidhean dhan làrach." - -msgid "user.register.reviewerInterests" -msgstr "" -"Aithneachadh de dh’ùidhean lèirmheis (raointean chuspairean agus dòighean " -"rannsachaidh):" - -msgid "user.register.form.userGroupRequired" -msgstr "Feumaidh tu co-dhiù aon dreuchd a thaghadh" - -msgid "site.noPresses" -msgstr "Chan eil clòth sam bith ri fhaighinn." - -msgid "site.pressView" -msgstr "Seall làrach-lìn a’ chlòtha" - -msgid "about.pressContact" -msgstr "Conaltradh leis a’ chlò" - -msgid "about.aboutContext" -msgstr "Mun chlò" - -msgid "about.editorialTeam" -msgstr "An sgioba deasachaidh" - -msgid "about.editorialPolicies" -msgstr "Poileasaidhean deasachaidh" - -msgid "about.focusAndScope" -msgstr "Fòcas is sgòp" - -msgid "about.seriesPolicies" -msgstr "Poileasaidhean a thaobh shreathan is roinnean-seòrsa" - -msgid "about.submissions" -msgstr "Tagraidhean" - -msgid "about.onlineSubmissions" -msgstr "Tagraidhean air loidhne" - -msgid "about.onlineSubmissions.login" -msgstr "Clàraich a-steach" - -msgid "about.onlineSubmissions.register" -msgstr "Clàraich" - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} no {$register} a dhèanamh tagradh." - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} no {$viewSubmissions}." - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Dèan tagradh ùr" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "coimhead air na tagraidhean agad a tha ri dhèiligeadh" - -msgid "about.authorGuidelines" -msgstr "Riaghailtean dha na h-ùghdaran" - -msgid "about.submissionPreparationChecklist" -msgstr "Liosta-chromagan ullachadh an tagraidh" - -msgid "about.submissionPreparationChecklist.description" -msgstr "" -"Mar phàirt dhen phròiseas tagraidh, bidh aig na h-ùghdaran cromag a chur ris " -"na nithean a leanas air fad a dh’innse gu bheil an tagradh aca a’ gèilleadh " -"ri gach aon dhiubh agus mur eil tagradh a’ gèilleadh ris na riaghailtean " -"seo, dh’fhaoidte gun tèid a thilleadh dha na h-ùghdaran." - -msgid "about.copyrightNotice" -msgstr "Brath na còrach-lethbhreac" - -msgid "about.privacyStatement" -msgstr "An aithris prìobhaideachd" - -msgid "about.reviewPolicy" -msgstr "Pròiseas nan lèirmheas le seise" - -msgid "about.publicationFrequency" -msgstr "Tricead an fhoillseachaidh" - -msgid "about.openAccessPolicy" -msgstr "Poileasaidh an inntrigidh fhosgailte" - -msgid "about.pressSponsorship" -msgstr "Sponsaireachd a’ chlòtha" - -msgid "about.aboutThisPublishingSystem" -msgstr "" -"Barrachd fiosrachaidh mu na siostaman foillseachaidh, mun ùrlar agus sruth-" -"obrach le OMP/PKP." - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "Pròiseas foillseachadh is deasachadh OMP" - -msgid "help.searchReturnResults" -msgstr "Till gu toraidhean an luirg" - -msgid "help.goToEditPage" -msgstr "Fosgail duilleag ùr gus am fiosrachadh seo a dheasachadh" - -msgid "installer.appInstallation" -msgstr "Stàladh OMP" - -msgid "installer.ompUpgrade" -msgstr "Àrdachadh OMP" - -msgid "installer.installApplication" -msgstr "Stàlaich Open Monograph Press" - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Ceuman ro-stàlaidh" - -msgid "installer.localeInstructions" -msgstr "" -"Am prìomh-chànan a chleachdas an siostam seo. Thoir sùil air an stiùireadh " -"airson OMP ma tha cànan a dhìth ort nach fhaic thu an-seo." - -msgid "installer.additionalLocalesInstructions" -msgstr "" -"Tagh na cànain eile a thèid a chleachdadh san t-siostam seo. Bidh na cànain " -"seo ri làimh chlòthan aig am bi air òstaireachd air an làrach. Gabhaidh " -"cànain a stàladh o eadar-aghaidh rianachd na làraich uair sam bith " -"cuideachd. Dh’fhaoidte gu bheil sgeamaichean ionadail ris a bheil * gun " -"choileanadh." - -msgid "installer.databaseSettingsInstructions" -msgstr "" -"Feumaidh OMP cothrom air stòr-dàta SQL far an cùm e an dàta aige. Faic " -"riatanasan an t-siostaim gu h-àrd airson liosta nan stòr-dàta ris a bheil " -"taic. Cuir na roghainnean a thèid a chleachdadh airson ceangal a dhèanamh " -"ris an stòr-dàta sna raointean gu h-ìosal." - -msgid "installer.upgradeApplication" -msgstr "Àrdaich Open Monograph Press" - -msgid "log.review.reviewDueDateSet" -msgstr "" -"Chaidh {$dueDate} a shuidheachadh le {$reviewerName} mar cheann-là " -"lìbhrigidh airson lèirmheas cuairt {$round} dhen tagradh {$submissionId}." - -msgid "log.review.reviewDeclined" -msgstr "" -"Dhiùlt {$userName} lèirmheas cuairt {$round} mu choinneamh tagradh " -"{$submissionId}." - -msgid "log.review.reviewAccepted" -msgstr "" -"Ghabh {$reviewerName} ri lèirmheas cuairt {$round} mu choinneamh tagraidh " -"{$submissionId}." - -msgid "log.review.reviewUnconsidered" -msgstr "" -"Chomharraich {$userName} gu bheil lèirmheas cuairt {$round} mu choinneamh " -"tagradh {$submissionId} gun chnuasachadh." - -msgid "log.editor.decision" -msgstr "" -"Chaidh co-dhùnadh le deasaiche ({$decision}) mu choinneamh a’ mhonograf " -"{$submissionId} a chlàradh le {$editorName}." - -msgid "log.editor.recommendation" -msgstr "" -"Chaidh moladh le deasaiche ({$decision}) mu choinneamh a’ mhonograf " -"{$submissionId} a chlàradh le {$editorName}." - -msgid "log.editor.archived" -msgstr "Chaidh an tagradh {$submissionId} a chur dhan tasg-lann." - -msgid "log.editor.restored" -msgstr "Chaidh an tagradh {$submissionId} aiseag dhan chiutha." - -msgid "log.editor.editorAssigned" -msgstr "" -"Chaidh {$editorName} iomruineadh dhan tagradh {$submissionId} mar dheasaiche." - -msgid "log.proofread.assign" -msgstr "" -"Dh’iomruin {$assignerName} {$proofreaderName} airson dearbh-leughadh a " -"dhèanamh air an tagradh {$submissionId}." - -msgid "log.proofread.complete" -msgstr "Chuir {$proofreaderName} {$submissionId} airson sgeidealachadh." - -msgid "log.imported" -msgstr "Thug {$userName} a-steach am monograf {$submissionId}." - -msgid "notification.addedIdentificationCode" -msgstr "Chaidh an còd ID a chur ris." - -msgid "notification.editedIdentificationCode" -msgstr "Chaidh an còd ID a dheasachadh." - -#, fuzzy -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

      Mòran taing airson Open Monograph Press {$version} aig a’" -" Public Knowledge Project a luchdadh a-nuas. Mus lean thu air adhart, leugh " -"am faidhle README a tha ga ghabhail a-" -"staigh leis a’ bhathar-bhog seo. Airson barrachd fiosrachaidh mun Public " -"Knowledge Project agus na pròiseactan bathair-bhog aca, tadhail air làrach-lìn PKP. Ma tha thu " -"airson aithris a dhèanamh aig buga no ma tha ceist agad mu Open Monograph " -"Press, faic am fòram " -"taice no tadhail air an t-siostam aig PKP airson aithris a dhèanamh aig " -"bugaichean. Ge b’ fheàrr leinn cluinntinn o dhaoine slighe an fhòraim, ’" -"s urrainn dhut post-d a chur chun an sgioba cuideachd pkp.contact@gmail.com.

      \n" -"\n" -"

      Àrdachadh

      \n" -"\n" -"

      Ma tha thu ag àrdachadh stàladh làithreach de OMP, briog an-seo a leantainn air adhart.

      " - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "" -"Tha an làrach seo a’ cleachdadh Open Monograph Press {$ompVersion}, bathar-" -"bog le còd fosgailte airson stiùireadh clòthan is foillseachadh, le taic a’ <" -"a href=\"http://pkp.sfu.ca/\">Public Knowledge Project agus ga " -"sgaoileadh gu saor fo cheadachas coitcheann poblach GNU." - -#, fuzzy -msgid "about.aboutOMPPress" -msgstr "" -"Tha an clò seo a’ cleachdadh Open Monograph Press {$ompVersion}, bathar-bog " -"le còd fosgailte airson stiùireadh chlòthan is foillseachadh, le taic a’ Public Knowledge Project agus ga sgaoileadh " -"gu saor fo cheadachas coitcheann poblach GNU." - -msgid "user.register.form.privacyConsentThisContext" -msgstr "" -"Tha, tha mi ag aontachadh gun tèid an dàta agam a chruinneachadh is a " -"stòradh a rèir aithris " -"prìobhaideachd a’ chlò seo." - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

      Cha bhi am fòrmat seo ri làimh leughadairean. Cha nochd " -"faidhlichean a bha ri luchdadh a-nuas no sgaoileadh sam bith eile ann an " -"innteart catalog an leabhair tuilleadh.

      " - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "" -"

      Cuir am fòrmat seo ri làimh leughadairean. Nochdaidh " -"faidhlichean a bha ri luchdadh a-nuas agus sgaoilidhean eile ann an innteart " -"catalog an leabhair.

      " - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

      Nochd nach d’fhuair meata-dàta an fhòrmait seo aonta fhathast.

      " - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" -"

      Thoir aonta dhan mheata-dàta airson an fhòrmait seo. Gabhaidh am meata-" -"dàta a sgrùdadh on phanail deasachaidh airson gach fòrmat.

      " - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "" -"

      Chan eil am fòrmat foillseachaidh a thagh thu ri làimh airson a’ " -"mhonograf seo tuilleadh.

      " - -msgid "monograph.proofReadingDescription" -msgstr "" -"Bidh deasaiche na co-dhealbhachd a’ luchdadh suas faidhlichean a tha deiseil " -"airson foillseachadh an-seo. Cleachd +Iomruin airson ùghdaran agus " -"daoine eile ainmeachadh a nì dearbh-leughadh air dearbhan nan duilleagan; " -"thèid na faidhlichean dearbhte a luchdadh suas airson aontachadh mus tèid am " -"foillseachadh." - -msgid "monograph.audience" -msgstr "Luchd-leughaidh" - -msgid "monograph.audience.success" -msgstr "Chaidh mion-fhiosrachadh nan ìrean leughaidh ùrachadh." - -msgid "monograph.coverImage" -msgstr "Dealbh a’ chòmhdachaidh" - -msgid "monograph.audience.rangeQualifier" -msgstr "Adhbhar na h-ìre leughaidh" - -msgid "monograph.audience.rangeFrom" -msgstr "Ìre leughaidh (agus nas àirde)" - -msgid "monograph.audience.rangeTo" -msgstr "Ìre leughaidh (gu ruige)" - -msgid "monograph.audience.rangeExact" -msgstr "Ìre leughaidh (pongail)" - -msgid "monograph.languages" -msgstr "Cànain (Beurla, Fraingis, Spàinntis)" - -msgid "monograph.publicationFormats" -msgstr "Fòrmatan foillseachaidh" - -msgid "monograph.publicationFormat" -msgstr "Fòrmat" - -msgid "monograph.publicationFormatDetails" -msgstr "" -"Mion-fhiosrachadh mun fhòrmatan an fhoillseachaidh a tha ri fhaighinn: " -"{$format}" - -msgid "monograph.miscellaneousDetails" -msgstr "Mion-fhiosrachadh mun mhonograf seo" - -msgid "monograph.carousel.publicationFormats" -msgstr "Fòrmatan:" - -msgid "monograph.type" -msgstr "Seòrsa an tagraidh" - -msgid "submission.pageProofs" -msgstr "Dearbhan dhuilleagan" - -msgid "monograph.task.addNote" -msgstr "Cuir ris an t-saothair" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Inntrigeadh fosgailte" - -msgid "monograph.publicationFormat.imprint" -msgstr "Fiosrachadh mun fhoillseachadh (Ainm a’ bhrannd/an fhoillsicheir)" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Cunntas nan duilleagan" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Stuthan a’ bheulaibh" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Stuthan a’ chùlaibh" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Co-chur a’ bhathair" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Mion-fhiosrachadh mun bhathar (chan eil seo riatanach)" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Dearbh-aithneachadh a’ bhathair" - -msgid "monograph.publicationFormat.price" -msgstr "A’ phrìs" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Tha feum air prìs." - -msgid "monograph.publicationFormat.priceType" -msgstr "Seòrsa na prìse" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Ceudad an ìsleachaidh, ma bhios seo iomchaidh" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Faotainneachd a’ bhathair" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Tilleadh bathair" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Fiosrachadh digiteach" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Meud fiosaigeach" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Meud an fhaidhle ann am Mbytes" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "A bheil thu airson meud faidhle a chur a-steach thu fhèin?" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Àirde" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Tiughad" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Cudrom" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Leud" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Dùthaich an t-saothrachaidh" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Dìon digiteach" - -msgid "grid.action.editDate" -msgstr "Deasaich an ceann-là seo" - -msgid "grid.action.deleteDate" -msgstr "Sguab an ceann-là seo às" - -msgid "grid.action.createContext" -msgstr "Cruthaich clò ùr" - -msgid "grid.action.publicationFormatTab" -msgstr "Seall taba fòrmat an fhoillseachaidh" - -msgid "grid.action.moreAnnouncements" -msgstr "Tadhail air duilleag fiosan-naidheachd a’ chlòtha" - -msgid "grid.action.submissionEmail" -msgstr "Dèan briogadh airson am post-d seo a leughadh" - -msgid "grid.action.approveProofs" -msgstr "Seall griod nan dearbhan" - -msgid "grid.action.proofApproved" -msgstr "Chaidh am fòrmat a dhearbhadh" - -msgid "grid.action.availableRepresentation" -msgstr "Thoir aonta ris an fhòrmat seo no thoirt air falbh an t-aonta" - -msgid "grid.action.formatAvailable" -msgstr "Toglaich faotainneachd an fhòrmat air is dheth" - -msgid "grid.reviewAttachments.add" -msgstr "Cuir ceanglachan ris an lèirmheas" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Faidhlichean a tha ri làimh" - -msgid "submissionGroup.assignedSubEditors" -msgstr "Deasaichean iomruinte" - -msgid "series.series" -msgstr "Sreath" - -msgid "notification.removedIdentificationCode" -msgstr "Chaidh an còd ID a thoirt air falbh." - -msgid "notification.addedPublicationDate" -msgstr "Chaidh ceann-là an fhoillseachaidh a chur ris." - -msgid "notification.editedPublicationDate" -msgstr "Chaidh ceann-là an fhoillseachaidh a dheasachadh." - -msgid "notification.removedPublicationDate" -msgstr "Chaidh ceann-là an fhoillseachaidh a thoirt air falbh." - -msgid "notification.addedPublicationFormat" -msgstr "Chaidh fòrmat an fhoillseachaidh a chur ris." - -msgid "notification.editedPublicationFormat" -msgstr "Chaidh fòrmat an fhoillseachaidh a dheasachadh." - -msgid "notification.removedPublicationFormat" -msgstr "Chaidh fòrmat an fhoillseachaidh a thoirt air falbh." - -msgid "notification.addedSalesRights" -msgstr "Chaidh na còraichean reic a chur ris." - -msgid "notification.editedSalesRights" -msgstr "Chaidh na còraichean reic a dheasachadh." - -msgid "notification.removedSalesRights" -msgstr "Chaidh na còraichean reic a thoirt air falbh." - -msgid "notification.addedRepresentative" -msgstr "Chaidh an neach-ionaid a chur ris." - -msgid "notification.editedRepresentative" -msgstr "Chaidh an neach-ionaid a dheasachadh." - -msgid "notification.removedRepresentative" -msgstr "Chaidh an neach-ionaid a thoirt air falbh." - -msgid "notification.addedMarket" -msgstr "Chaidh a’ mhargaid a chur ris." - -msgid "notification.editedMarket" -msgstr "Chaidh a’ mhargaid a dheasachadh." - -msgid "notification.removedMarket" -msgstr "Chaidh a’ mhargaid a thoirt air falbh." - -msgid "notification.addedSpotlight" -msgstr "Chaidh prosbaig a chur ris." - -msgid "notification.editedSpotlight" -msgstr "Chaidh a’ phrosbaig a dheasachadh." - -msgid "notification.removedSpotlight" -msgstr "Chaidh a’ phrosbaig a thoirt air falbh." - -msgid "notification.savedCatalogMetadata" -msgstr "Chaidh meata-dàta a’ chatalog a shàbhaladh." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Chaidh meata-dàta fòrmat an fhoillseachaidh a shàbhaladh." - -msgid "notification.proofsApproved" -msgstr "Fhuair na dearbhan aonta." - -msgid "notification.removedSubmission" -msgstr "Chaidh an tagradh a sguabadh às." - -msgid "notification.type.submissionSubmitted" -msgstr "Chaidh monograf ùr, “{$title}”, a chur." - -msgid "notification.type.editing" -msgstr "Tachartasan deasachaidh" - -msgid "payment.directSales.numericOnly" -msgstr "Feumaidh prìs a bhith na àireamh. Na cuir ann samhla an airgeadra." - -msgid "payment.directSales.directSales" -msgstr "Reicean dìreach" - -msgid "payment.directSales.notAvailable" -msgstr "Chan eil seo ri làimh" - -msgid "payment.directSales.notSet" -msgstr "Cha deach a shuidheachadh" - -msgid "payment.directSales.openAccess" -msgstr "Inntrigeadh fosgailte" - -msgid "payment.directSales.price.description" -msgstr "" -"Gabhaidh fòrmatan faidhle a chur ri làimh airson luchdadh a-nuas o làrach-" -"lìn a’ chlòtha slighe inntrigidh fhosgailte gun chosgais sam bith do " -"leughadairean no slighe reicean dìreach (a’ cleachdadh làimhsichear pàighidh " -"air loidhne mar a chaidh a rèiteachadh ann an roghainn an sgaoilidh). " -"Sònraich an dòigh inntrigidh airson an fhaidhle seo." - -msgid "payment.directSales.validPriceRequired" -msgstr "Tha feum air prìs mar àireamh dhligheach." - -msgid "payment.directSales.purchase" -msgstr "Ceannaich {$format} ({$amount} {$currency})" - -msgid "payment.directSales.download" -msgstr "Luchdaich a-nuas {$format}" - -msgid "payment.directSales.monograph.name" -msgstr "Ceannaich monograf no luchdadh a-nuas de chaibideil" - -msgid "payment.directSales.monograph.description" -msgstr "" -"Bidh tu a’ ceannach luchdadh a-nuas dìreach de mhonograf no caibideil de " -"mhonograf leis an tar-chur seo." - -msgid "debug.notes.currencyListLoad" -msgstr "Chaidh liosta nan airgeadra “{$filename}” on XML" - -msgid "debug.notes.helpMappingLoad" -msgstr "" -"Chaidh faidhle mapadh XML na cobharach “{$filename}” ath-luchdadh an tòir " -"{$id}." - -msgid "rt.metadata.pkp.dctype" -msgstr "Leabhar" - -msgid "submission.pdf.download" -msgstr "Luchdaich a-nuas am faidhle PDF seo" - -msgid "user.profile.form.showOtherContexts" -msgstr "Clàraich aig clòthan eile" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Falaich na clòthan eile" - -msgid "user.authorization.invalidPublishedSubmission" -msgstr "Chaidh tagradh foillsichte mì-dhligheach a shònrachadh." - -msgid "catalog.coverImageTitle" -msgstr "Dealbh a’ chòmhdachaidh" diff --git a/locale/gd_GB/submission.po b/locale/gd_GB/submission.po deleted file mode 100644 index c95fdad3064..00000000000 --- a/locale/gd_GB/submission.po +++ /dev/null @@ -1,417 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-17 02:12+0000\n" -"Last-Translator: Michael Bauer \n" -"Language-Team: Gaelic \n" -"Language: gd_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " -"(n > 2 && n < 20) ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.round" -msgstr "Cuairt {$round}" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Catalog" - -msgid "submission.submit.catalog" -msgstr "Catalog" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.submit.title" -msgstr "Cuir monograf" - -msgid "submission.upload.selectComponent" -msgstr "Tagh co-phàirt" - -msgid "submission.title" -msgstr "Tiotal leabhair" - -msgid "submission.select" -msgstr "Tagh tagradh" - -msgid "submission.synopsis" -msgstr "Geàrr-chunntas" - -msgid "submission.workflowType" -msgstr "Seòrsa an tagraidh" - -msgid "submission.workflowType.description" -msgstr "" -"’S e obair a rinn co-dhiù aon ùghdar a tha ann am monograf. Tha ùghdar eile " -"aig gach caibideil ann an iom-leabhar deasaichte (le mion-fhiosrachadh nan " -"caibideilean gan cur a-steach rè ceann thall a’ phròiseis.)" - -msgid "submission.workflowType.editedVolume.label" -msgstr "Iom-leabhar deasaichte" - -msgid "submission.workflowType.editedVolume" -msgstr "" -"Iom-leabhar deasaichte: Thèid na h-ùghdaran a cho-cheangal ris a’ chaibideil " -"aca fhèin." - -msgid "submission.workflowType.authoredWork" -msgstr "Monograf: Thèid na h-ùghdaran a cho-cheangal ris an leabhar air fad." - -msgid "submission.workflowType.change" -msgstr "Atharraich" - -msgid "submission.editorName" -msgstr "{$editorName} (deas.)" - -msgid "submission.monograph" -msgstr "Monograf" - -msgid "submission.published" -msgstr "Deiseil airson saothrachadh" - -msgid "submission.fairCopy" -msgstr "Lethbhreac grinn" - -msgid "submission.artwork.permissions" -msgstr "Ceadan" - -msgid "submission.chapter" -msgstr "Caibideil" - -msgid "submission.chapters" -msgstr "Caibideilean" - -msgid "submission.chaptersDescription" -msgstr "" -"’S urrainn dhut liosta dhe na caibideilean a dhèanamh an-seo agus luchd-" -"pàirteachaidh iomruineadh on liosta gu h-àrd. ’S urrainn dhan luchd-" -"phàirteachaidh cothrom fhaighinn air a’ chaibideil rè ceumannan a’ phròiseis " -"fhoillseachaidh." - -msgid "submission.chapter.addChapter" -msgstr "Cuir caibideil ris" - -msgid "submission.chapter.editChapter" -msgstr "Deasaich a’ chaibideil" - -msgid "submission.chapter.pages" -msgstr "Duilleagan" - -msgid "submission.copyedit" -msgstr "Grinn-deasachadh" - -msgid "submission.publicationFormats" -msgstr "Fòrmatan foillseachaidh" - -msgid "submission.proofs" -msgstr "Dearbhaidhean" - -msgid "submission.download" -msgstr "Luchdaich a-nuas" - -msgid "submission.sharing" -msgstr "Co-roinn seo" - -msgid "manuscript.submission" -msgstr "Tagradh sgrìobhainn" - -msgid "submissions.queuedReview" -msgstr "Fo lèirmheas" - -msgid "manuscript.submissions" -msgstr "Tagraidhean sgrìobhainnean" - -msgid "submission.confirmSubmit" -msgstr "" -"A bheil thu cinnteach gu bheil thu airson an sgrìobhainn seo a chur dhan " -"chlò?" - -msgid "submission.metadata" -msgstr "Meata-dàta" - -msgid "submission.supportingAgencies" -msgstr "Buidhnean a tha a’ cur taic ris" - -msgid "grid.action.addChapter" -msgstr "Cruthaich caibideil ùr" - -msgid "grid.action.editChapter" -msgstr "Deasaich a’ chaibideil seo" - -msgid "grid.action.deleteChapter" -msgstr "Sguab a’ chaibideil seo às" - -msgid "submission.submit" -msgstr "Tòisich air tagradh de leabhar ùr" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Tòisich air tagradh ùr ann an" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Tagradh ùr" - -msgid "submission.submit.upload" -msgstr "Luchdaich an tagradh suas" - -msgid "submission.submit.cancelSubmission" -msgstr "" -"’S urrainn dhut an tagradh seo a choileanadh uaireigin eile le bhith a’ " -"taghadh “Tagraidhean gnìomhach” o dhachaigh an ùghdair." - -msgid "submission.submit.selectSeries" -msgstr "Tagh sreath (roghainneil)" - -msgid "author.isVolumeEditor" -msgstr "Comharraich an com-pàirtiche seo mar dheasaiche an iom-leabhair seo." - -msgid "author.submit.seriesRequired" -msgstr "Tha feum air sreath dligheach." - -msgid "submission.submit.seriesPosition" -msgstr "Ionad san t-sreath" - -msgid "submission.submit.seriesPosition.description" -msgstr "Mar eisimpleir: Leabhar 2, Iom-leabhar 2" - -msgid "submission.submit.form.localeRequired" -msgstr "Tagh cànan an tagraidh." - -msgid "submission.submit.privacyStatement" -msgstr "An aithris prìobhaideachd" - -msgid "submission.submit.contributorRole" -msgstr "Dreuchd neach-pàirteachaidh" - -msgid "submission.submit.form.authorRequired" -msgstr "Tha feum air co-dhiù aon ùghdar." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Tha ainm, sloinneadh is post-d gach ùghdar riatanach." - -msgid "submission.submit.form.titleRequired" -msgstr "Cuir a-steach tiotal a’ mhonograf seo." - -msgid "submission.submit.form.abstractRequired" -msgstr "Cuir a-steach geàrr-chunntas air a’ mhonograf agad." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Tagh dreuchd neach-pàirteachaidh." - -msgid "submission.submit.submissionFile" -msgstr "Faidhle tagraidh" - -msgid "submission.submit.prepare" -msgstr "Ullaich" - -msgid "submission.submit.metadata" -msgstr "Meata-dàta" - -msgid "submission.submit.finishingUp" -msgstr "Ga chrìochnachadh" - -msgid "submission.submit.confirmation" -msgstr "Dearbhadh" - -msgid "submission.submit.nextSteps" -msgstr "Na h-ath-cheuman" - -msgid "submission.submit.coverNote" -msgstr "Nòta còmhdachaidh dhan deasaiche" - -msgid "submission.submit.generalInformation" -msgstr "Fiosrachadh coitcheann" - -msgid "submission.submit.whatNext.description" -msgstr "" -"Chaidh fios mun tagradh agad a chur chun a’ chlòtha agus chaidh post-d a " -"chur thugad a dhearbhas gun d’fhuair iad e. Turas a rinn an lèirmheasaiche " -"lèirmheas air an tagradh, cuiridh iad fios thugad." - -msgid "submission.submit.checklistErrors" -msgstr "" -"Leugh na rudan air liosta-chromagan an tagraidh is cuir cromagan riutha. Tha " -"uiread a nithean gun chromag fhathast: {$itemsRemaining}." - -msgid "submission.submit.placement" -msgstr "Suidheachadh an tagraidh" - -msgid "submission.submit.userGroup" -msgstr "Cuir e ’s mi nam dhreuchd a leanas…" - -msgid "submission.submit.userGroupDescription" -msgstr "" -"Ma tha thu a’ cur iom-leabhar deasaichte, bu chòir dhut dreuchd deasaiche " -"iom-leabhair a thaghadh." - -msgid "submission.submit.noContext" -msgstr "Cha b’ urrainn dhuinn clò an tagraidh seo a lorg." - -msgid "grid.chapters.title" -msgstr "Caibideilean" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Sguab às na luchdaich an grinn-deasaiche suas" - -msgid "submission.complete" -msgstr "Air aontachadh" - -msgid "submission.incomplete" -msgstr "A’ feitheamh ri aonta" - -msgid "submission.editCatalogEntry" -msgstr "Innteart" - -msgid "submission.catalogEntry.new" -msgstr "Cuir innteart ris" - -msgid "submission.catalogEntry.add" -msgstr "Cuir na thagh thu ris a’ chatalog" - -msgid "submission.catalogEntry.select" -msgstr "Tagh monografaichean airson an cur ris a’ chatalog" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "" -"Feumaidh tu co-dhiù aon mhonograf a thaghadh airson a chur ris a’ chatalog." - -msgid "submission.catalogEntry.confirm" -msgstr "Cuir an leabhar seo ris a’ chatalog phoblach" - -msgid "submission.catalogEntry.confirm.required" -msgstr "Dearbh gu bheil an tagradh deiseil airson a chur dhan chatalog." - -msgid "submission.catalogEntry.isAvailable" -msgstr "" -"Tha am monograf seo deiseil airson a ghabhail a-staigh sa chatalog phoblach." - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Seall an tagradh" - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Chinn-là foillseachaidh" - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Cleachdaidh gach caibideil ceann-là foillseachadh a’ mhonograf." - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Faodaidh ceann-là foillseachaidh fa leth a bhith aig gach caibideil." - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monograf" - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Fòrmat foillseachaidh" - -msgid "submission.event.metadataPublished" -msgstr "Fhuair meata-dàta a’ mhonograf aonta airson foillseachadh." - -msgid "submission.event.metadataUnpublished" -msgstr "Chan eil meata-dàta a’ mhonograf ga fhoillseachadh tuilleadh." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "" -"Chaidh am fòrmat foillseachaidh “{$publicationFormatName}” a chur ri làimh." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "" -"Chan eil am fòrmat foillseachaidh “{$publicationFormatName}” ri làimh " -"tuilleadh." - -msgid "submission.event.publicationFormatPublished" -msgstr "" -"Fhuair am fòrmat foillseachaidh “{$publicationFormatName}” aonta airson " -"foillseachadh." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "" -"Chan eil am fòrmat foillseachaidh “{$publicationFormatName}” ga " -"fhoillseachadh tuilleadh." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Chaidh meata-dàta a’ chatalog ùrachadh." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Chaidh meata-dàta an fhòrmait fhoillseachaidh “{$formatName}” ùrachadh." - -msgid "submission.event.publicationFormatCreated" -msgstr "Chaidh am fòrmat foillseachaidh “{$formatName}” a chruthachadh." - -msgid "submission.event.publicationFormatRemoved" -msgstr "Chaidh am fòrmat foillseachaidh “{$formatName}” a thoirt air falbh." - -msgid "submission.submit.titleAndSummary" -msgstr "An tiotal is geàrr-chunntas" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Cuir airson lèirmheas air an taobh a-muigh" - -msgid "workflow.review.externalReview" -msgstr "Lèirmheas air an taobh a-muigh" - -msgid "submission.upload.fileContents" -msgstr "Co-phàirt tagraidh" - -msgid "submission.dependentFiles" -msgstr "Faidhlichean eisimeileach" - -msgid "submission.metadataDescription" -msgstr "" -"Tha na riatanasan seo stèidhichte air seata meata-dàta Dublin Core, stannard " -"eadar-nàiseanta airson tuairisgeul a thoirt air susbaint clòtha." - -msgid "section.any" -msgstr "Sreath sam bith" - -msgid "submission.list.monographs" -msgstr "Monografaichean" - -msgid "submission.list.countMonographs" -msgstr "Monografaichean ({$count})" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} dhe na monografaichean uile ({$total})" - -msgid "submission.list.orderFeatures" -msgstr "Gleusan an òrduigh" - -msgid "submission.list.orderingFeatures" -msgstr "" -"Dèan slaodadh is leigeil às no thoir gnogag air na putanan suas is sìos " -"airson òrdugh nan gleusan air an duilleag-dhachaigh atharrachadh." - -msgid "submission.list.orderingFeaturesSection" -msgstr "" -"Dèan slaodadh is leigeil às no thoir gnogag air na putanan suas is sìos " -"airson òrdugh nan gleusan ann an {$title} atharrachadh." - -msgid "submission.list.saveFeatureOrder" -msgstr "An t-òrdugh sàbhalaidh" - -msgid "catalog.browseTitles" -msgstr "Tiotalan ({$numTitles})" - -msgid "publication.catalogEntry" -msgstr "Innteart a’ chatalog" - -msgid "publication.catalogEntry.success" -msgstr "Chaidh mion-fhiosrachadh an innteirt seo dhen chatalog ùrachadh." - -msgid "publication.invalidSeries" -msgstr "Cha b’ urrainn dhuinn an sreath dhen fhoillseachadh seo a lorg." - -msgid "publication.required.issue" -msgstr "Feumar am foillseachadh iomruineadh do dh’iris mus gabh fhoillseachadh." - -msgid "publication.publishedIn" -msgstr "Air fhoillseachadh ann an {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "" -"Chaidh gach riatanas foillseachaidh a choileanadh. A bheil thu cinnteach gu " -"bheil thu airson an t-innteart seo dhen chatalog a dhèanamh poblach?" - -msgid "publication.scheduledIn" -msgstr "" -"Gu bhith fhoillseachadh ann an {$issueName}." diff --git a/locale/gl/admin.po b/locale/gl/admin.po new file mode 100644 index 00000000000..6c9a4a5c1bc --- /dev/null +++ b/locale/gl/admin.po @@ -0,0 +1,174 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Galician " +"\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Editoriais aloxadas" + +msgid "admin.settings.appearance.success" +msgstr "A configuración do aspecto do sitio actualizouse correctamente." + +msgid "admin.settings.config.success" +msgstr "A configuración do sitio actualizouse correctamente." + +msgid "admin.settings.info.success" +msgstr "A información do sitio actualizouse con éxito." + +msgid "admin.settings.redirect" +msgstr "Redirección das editoriais" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"As solicitudes da páxina principal redirixiranse a esta editorial. Isto pode " +"ser útil se o sitio só aloxa unha editorial, por exemplo." + +msgid "admin.settings.noPressRedirect" +msgstr "Non redirixir" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Este será o idioma predeterminado para o sitio e as editoriais aloxadas." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Seleccione todas as configuracións locais que admite no sitio. As " +"configuracións seleccionadas estarán dispoñibles para o seu uso en todas as " +"editoriais aloxadas e tamén aparecerán no menú de selección de idioma que " +"figura en cada páxina (que se pode anular nas páxinas específicas da " +"editorial). Se non se seleccionan varias configuracións locais, o menú de " +"alternancia de idioma non aparecerá e os axustes de idioma estendidos non " +"estarán dispoñibles para as editoriais." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Os idiomas marcados poden estar incompletos." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Seguro que queres desinstalar este idioma? Isto pode afectar as editoriais " +"aloxadas que empregan actualmente o idioma." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Seleccione calquera idioma para instalar soporte neste sistema. Os idiomas " +"deben instalarse antes de que poidan ser empregados polas editoriais " +"aloxadas. Consulte a documentación OMP para obter información sobre como " +"engadir soporte para novos idiomas." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Seguro que queres desactivar este idioma? Isto pode afectar as editoriais " +"aloxadas que o empregan actualmente." + +msgid "admin.systemVersion" +msgstr "Versión OMP" + +msgid "admin.systemConfiguration" +msgstr "Configuración OMP" + +msgid "admin.presses.pressSettings" +msgstr "Axustes da editorial" + +msgid "admin.presses.noneCreated" +msgstr "Non se creou ningunha editorial." + +msgid "admin.contexts.create" +msgstr "Crear editorial" + +msgid "admin.contexts.form.titleRequired" +msgstr "É necesario un título." + +msgid "admin.contexts.form.pathRequired" +msgstr "É necesaria unha ruta." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"A ruta só pode incluír letras, números, guións e guións baixos. Debe comezar " +"e rematar cunha letra ou número." + +msgid "admin.contexts.form.pathExists" +msgstr "A ruta seleccionada xa está a ser usada por outra editorial." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "O idioma principal debe ser un dos idiomas compatibles coa editorial." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} creouse correctamente." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} modificouse correctamente." + +msgid "admin.contexts.contextDescription" +msgstr "Detalles da editorial" + +msgid "admin.presses.addPress" +msgstr "Engadir editorial" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

      NOTA!

      \n" +"

      O sistema non puido sobrescribir o arquivo de configuración. Para " +"aplicar os cambios da configuración debe abrir config.inc.php nun " +"editor de texto axeitado e substituír o seu contido polo contido do campo de " +"texto a continuación.

      " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Seleccione as editoriais aloxadas ás que se debería permitir enviar correos " +"electrónicos masivos. Cando esta función estea habilitada, un xestor " +"editorial poderá enviar un correo electrónico a todos os usuarios " +"rexistrados na súa editorial.

      O uso indebido desta función para " +"enviar correos electrónicos non solicitados pode violar as leis anti-spam " +"nalgunhas xurisdicións e os correos electrónicos poden quedar bloqueados " +"como spam. Busque asesoramento técnico antes de habilitar esta función e " +"considere a posibilidade de consultar cos xestores da editorial para " +"asegurarse de que se usa adecuadamente.

      Pódense activar máis " +"restricións nesta función para cada editorial visitando o seu asistente de " +"configuración na lista de Editoriais " +"aloxadas." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Un xestor editorial non poderá enviar correos electrónicos masivos a ningún " +"dos roles seleccionados a continuación. Use esta configuración para limitar " +"o abuso da función de notificación por correo electrónico. Por exemplo, pode " +"ser máis seguro deshabilitar os correos electrónicos masivos para lectores, " +"autores ou outros grandes grupos de usuarios que non consentiron recibir " +"tales correos electrónicos.

      A función de correo electrónico masivo " +"pode deshabilitarse completamente para esta editorial en Administrador > Configuración do sitio." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"A función de correo electrónico masivo desactivouse para esta editorial. " +"Habilita esta función en Administrador > " +"Configuración do sitio." + +msgid "admin.siteManagement.description" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "" diff --git a/locale/gl/api.po b/locale/gl/api.po new file mode 100644 index 00000000000..822e7b70262 --- /dev/null +++ b/locale/gl/api.po @@ -0,0 +1,45 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:22+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Debes proporcionar un ou máis identificadores de envío para engadilos ao " +"catálogo." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "Non se puido atopar un ou máis dos envíos que especificaches." + +msgid "api.submissions.400.wrongContext" +msgstr "" + +msgid "api.emails.403.disabled" +msgstr "" +"A notificación por correo electrónico non está habilitada para esta " +"editorial." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"Non tes permiso para mover este modelo de correo electrónico a outra " +"editorial." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "A publicación que solicitaches non forma parte desta editorial." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "A publicación que solicitaches non forma parte deste envío." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Non podes cambiar a editorial dun envío." + +msgid "api.submission.400.inactiveSection" +msgstr "" diff --git a/locale/gl/author.po b/locale/gl/author.po new file mode 100644 index 00000000000..f20af002283 --- /dev/null +++ b/locale/gl/author.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:22+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "author.submit.notAccepting" +msgstr "Esta editorial non acepta envíos neste momento." + +msgid "author.submit" +msgstr "" diff --git a/locale/gl/default.po b/locale/gl/default.po new file mode 100644 index 00000000000..95ccce044ae --- /dev/null +++ b/locale/gl/default.po @@ -0,0 +1,198 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:23+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "default.genres.appendix" +msgstr "Apéndice" + +msgid "default.genres.bibliography" +msgstr "Bibliografía" + +msgid "default.genres.manuscript" +msgstr "Manuscrito do libro" + +msgid "default.genres.chapter" +msgstr "Manuscrito de capítulo" + +msgid "default.genres.glossary" +msgstr "Glosario" + +msgid "default.genres.index" +msgstr "Índice" + +msgid "default.genres.preface" +msgstr "Prefacio" + +msgid "default.genres.prospectus" +msgstr "Folleto" + +msgid "default.genres.table" +msgstr "Táboa" + +msgid "default.genres.figure" +msgstr "Figura" + +msgid "default.genres.photo" +msgstr "Foto" + +msgid "default.genres.illustration" +msgstr "Ilustración" + +msgid "default.genres.other" +msgstr "Outros" + +msgid "default.groups.name.manager" +msgstr "Xefe/a editorial" + +msgid "default.groups.plural.manager" +msgstr "Xefes/as editoriais" + +msgid "default.groups.abbrev.manager" +msgstr "JE" + +msgid "default.groups.name.editor" +msgstr "Editor/a" + +msgid "default.groups.plural.editor" +msgstr "Editores/as" + +msgid "default.groups.abbrev.editor" +msgstr "Ed" + +msgid "default.groups.name.sectionEditor" +msgstr "Editor/a da serie" + +msgid "default.groups.plural.sectionEditor" +msgstr "Editores/as da serie" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "ES" + +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + +msgid "default.groups.name.chapterAuthor" +msgstr "Autor/a de capítulo" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Autores/as de capítulo" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "AC" + +msgid "default.groups.name.volumeEditor" +msgstr "Editor/a de volume" + +msgid "default.groups.plural.volumeEditor" +msgstr "Editores/as de volume" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "EV" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

      Os nomes e enderezos de correo electrónico inseridos nesta editorial " +"utilizaranse exclusivamente para os fins indicados e non estarán dispoñibles " +"para ningún outro propósito nin para terceiras partes.

      " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Esta editorial fornece acceso aberto inmediato ao seu contido seguindo o " +"principio de que facer que a investigación estea dispoñible gratuitamente " +"para o público apoia un maior intercambio global de coñecemento." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Animamos aos lectores a rexistrarse no servizo de notificación desta " +"editorial. Use a ligazón Rexistrarse na parte superior da páxina de inicio. Este rexistro " +"permitirá que o lector reciba por correo electrónico a táboa de contidos " +"para cada nova monografía da editorial. Vexa a Declaración de " +"privacidade que garante aos lectores que o seu nome e enderezo de correo " +"electrónico non se usarán para outros fins." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Estás interesado/a en facer un envío a esta editorial? Recomendámoslle que " +"revise a páxina Acerca da " +"editorial para ver as políticas da editorial e as Directrices aos autores/" +"as. Os autores/as precisan rexistrarse na editorial antes de facer un envío ou, se xa " +"están rexistrados, poden simplemente iniciar sesión e comezar o proceso de 5 pasos." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Animamos aos bibliotecarios/as a que listen esta editorial nos seus " +"catálogos de recursos electrónicos. Ademais, este sistema de publicación de " +"código aberto é adecuado para bibliotecas que queiran aloxar editoriais para " +"os membros que están implicados en procesos de edición e publicación " +"(consulte Open Monograph Press )." + +msgid "default.groups.name.externalReviewer" +msgstr "Revisor/a externo" + +msgid "default.groups.plural.externalReviewer" +msgstr "Revisores/as externos" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "RE" + +#~ msgid "default.contextSettings.emailSignature" +#~ msgstr "" +#~ "
      \n" +#~ "________________________________________________________________________
      \n" +#~ "{$ldelim}$contextName{$rdelim}" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "O texto adhírese aos requirimentos estilísticos e bibliográficos " +#~ "descritos nas Directrices aos autores, que se atopan en Sobre a Editorial." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "O texto está formatado con interliñado simple, usa unha fonte de 12 " +#~ "puntos, emprega cursiva, en lugar de subliñado (excepto con enderezos " +#~ "URL), e todas as ilustracións, figuras e táboas colócanse dentro do texto " +#~ "nos puntos apropiados en lugar de ao final." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "Cando estean dispoñibles proporcionáronse URL para as referencias." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "O arquivo de envío está en formato de ficheiro Microsoft Word, RTF ou " +#~ "OpenDocument." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "O envío non se publicou previamente e non está noutra editora para a súa " +#~ "consideración (ou se proporcionou unha explicación en Comentarios ao " +#~ "editor)." diff --git a/locale/gl/editor.po b/locale/gl/editor.po new file mode 100644 index 00000000000..0b1c0585eeb --- /dev/null +++ b/locale/gl/editor.po @@ -0,0 +1,209 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-17 09:58+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Arquivo de envíos" + +msgid "editor.monograph.cancelReview" +msgstr "Cancelar solicitude" + +msgid "editor.monograph.clearReview" +msgstr "Eliminar revisor/a" + +msgid "editor.monograph.enterRecommendation" +msgstr "Inserir recomendación" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Inserir a recomendación do revisor/a" + +msgid "editor.monograph.recommendation" +msgstr "Recomendación" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Seleccione un revisor/a na lista e prema no botón \"Seleccionar revisor\" " +"para continuar." + +msgid "editor.monograph.replaceReviewer" +msgstr "Substituir revisor/a" + +msgid "editor.monograph.editorToEnter" +msgstr "Recomendacións/comentarios do editor/a para o revisor/a" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Cargar revisión" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Opcións de evaluación por pares" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Corrección de arquivos" + +msgid "editor.monograph.internalReview" +msgstr "Iniciar revisión interna" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Seleccione abaixo os arquivos para envialos á fase de revisión interna." + +msgid "editor.monograph.externalReview" +msgstr "Iniciar revisión externa" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Seleccionar os arquivos do borrador final" + +msgid "editor.monograph.final.currentFiles" +msgstr "Arquivos actuais do borrador final" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Arquivos actuais" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Mensaxe ao usuario" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Accións de envío" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Opcións e accións xerais do envío." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Accións da sección" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Opcións específicas dunha sección determinada, por exemplo, cargar arquivos " +"ou engadir usuarios." + +msgid "editor.monograph.legend.itemActions" +msgstr "Accións de elemento" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Accións e opcións específicas dun arquivo individual." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Ver e xestionar a entrada do envío no catálogo, incluídos os metadatos e os " +"formatos de publicación" + +msgid "editor.monograph.legend.bookInfo" +msgstr "Ver e xestionar metadatos, notas, notificacións e historial do envío" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Ver e xestionar os participantes deste envío: autores/as, editores/as, " +"deseñadores/as e outros/as" + +msgid "editor.monograph.legend.add" +msgstr "Cargar un arquivo á sección" + +msgid "editor.monograph.legend.add_user" +msgstr "Engadir un usuario/a á sección" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Ver e acceder á configuración do elemento, como información e opcións de " +"eliminación" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"Máis información: notas de arquivos, opcións de notificación e historial" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Información do arquivo: notas, opcións de notificación e historial (aínda " +"non se engadiron notas)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Información do arquivo: notas, opcións de notificación e historial (as notas " +"están dispoñibles)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Información do arquivo: notas, opcións de notificación e historial (novas " +"notas engadidas dende a última visita)" + +msgid "editor.monograph.legend.edit" +msgstr "Editar elemento" + +msgid "editor.monograph.legend.delete" +msgstr "Eliminar elemento" + +msgid "editor.monograph.legend.in_progress" +msgstr "Acción en curso ou aínda non finalizada" + +msgid "editor.monograph.legend.complete" +msgstr "Acción completa" + +msgid "editor.monograph.legend.uploaded" +msgstr "Arquivo cargado polo rol no título da columna da grade" + +msgid "editor.submission.introduction" +msgstr "" +"No envío, o editor/a, despois de consultar os arquivos enviados, selecciona " +"a acción axeitada (que inclúe a notificación ao autor): Enviar a revisión " +"interna (implica a selección dos arquivos para a revisión interna); Enviar a " +"revisión externa (implica a selección dos arquivos para revisión externa); " +"Aceptar envío (implica a selección dos arquivos para a fase editorial); ou " +"Rexeitar o envío (arquivado do envío)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Copia limpa" + +msgid "editor.monograph.proofs" +msgstr "Probas" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Aprobación e publicación" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Diferentes formatos de publicación, como a tapa dura, a tapa branda e a " +"dixital, pódense cargar na sección Formatos de publicación. Podes usar a " +"grade de formatos de publicación como lista de verificación do que aínda hai " +"que facer para publicar un formato." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Engade formatos de publicación (por exemplo, dixitais, en rústica) para os " +"que o maquetador/a prepara probas de páxina para a corrección. As " +"Probas deben ser verificadas e aprobadas e a entrada no " +"Catálogo para o formato debe ser marcada como publicada na entrada " +"do catálogo do libro, antes de que se poida facer Dispoñible un " +"formato (é dicir, publicado)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Establecer as condicións para a descarga" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Establecer condicións" + +msgid "editor.monograph.proof.addNote" +msgstr "Engadir resposta" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Calquera arquivo que xa se cargou a calquera fase do envío pódese engadir á " +"lista de arquivos de proba marcando a caixa de verificación \"Engadir\" e " +"facendo clic en \"Buscar\": listaranse todos os arquivos dispoñibles e " +"pódense incluir." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"O identificador público \"{$publicIdentifier}\" xa existe para outro obxecto " +"do mesmo tipo. Escolla identificadores únicos para os obxectos do mesmo tipo " +"na súa editorial." + +msgid "editor.submissions.assignedTo" +msgstr "Asignado ao editor/a" diff --git a/locale/gl/emails.po b/locale/gl/emails.po new file mode 100644 index 00000000000..1e379a32850 --- /dev/null +++ b/locale/gl/emails.po @@ -0,0 +1,366 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-09 16:08+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Confirmación de restablecemento do contrasinal" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Recibimos unha solicitude para restablecer o seu contrasinal no sitio web de " +"{$siteTitle}.
      \n" +"
      \n" +"Se non enviou esta solicitude, ignore este correo electrónico e o seu " +"contrasinal non se cambiará. Se desexa restablecer o seu contrasinal, faga " +"clic no seguinte URL.
      \n" +"
      \n" +"Restablecer o meu contrasinal: {$passwordResetUrl}
      \n" +"
      \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Rexistro na editorial" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Rexistrouse como usuario/a con {$contextName}. Incluímos o seu nome de " +"usuario e contrasinal neste correo electrónico, que son necesarios para todo " +"o traballo con esta editorial a través do seu sitio web. En calquera " +"momento, pode solicitar que se elimine da lista de usuarios contactando " +"comigo.
      \n" +"
      \n" +"Nome de usuario: {$recipientUsername}
      \n" +"Contrasinal: {$password}
      \n" +"
      \n" +"Grazas,
      \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "" + +msgid "emails.userValidateContext.body" +msgstr "" + +msgid "emails.userValidateSite.subject" +msgstr "" + +msgid "emails.userValidateSite.body" +msgstr "" + +msgid "emails.reviewerRegister.subject" +msgstr "Rexistro como revisor/a en {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Á vista da túa experiencia, tomámonos a liberdade de rexistrar o teu nome na " +"base de datos de revisores para {$contextName}. Isto non implica ningun " +"compromiso pola súa parte, senón que simplemente nos permite achegarnos " +"cunha presentación para eventualmente revisala. Ao ser convidado a revisar, " +"terá a oportunidade de ver o título e resumo do traballo en cuestión e " +"sempre estará en condicións de aceptar ou rexeitar a invitación. Podes " +"solicitar en calquera momento que se elimine o teu nome desta lista de " +"revisores.
      \n" +"
      \n" +"Proporcionámoslle un nome de usuario e un contrasinal, que se usan en todas " +"as interaccións coa publicación a través do seu sitio web. Pode que desexe, " +"por exemplo, actualizar o seu perfil, incluídos os seus intereses de " +"revisión.
      \n" +"
      \n" +"Nome de usuario: {$recipientUsername}
      \n" +"Contrasinal: {$password}
      \n" +"
      \n" +"Grazas,
      \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Tarefa editorial" + +msgid "emails.editorAssign.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"O envío, " {$submissionTitle}, " a {$contextName} asignóuselle " +"como Editor para levar a cabo o proceso editorial completo.
      \n" +"
      \n" +"URL do envío: {$submissionUrl}
      \n" +"Nome de usuario: {$recipientUsername}
      \n" +"
      \n" +"Grazas," + +msgid "emails.reviewRequest.subject" +msgstr "Solicitude de revisión do manuscrito" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Estimado {$recipientName},
      \n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"Inicie sesión no sitio web da publicación antes do {$responseDueDate} para " +"indicar se realizará ou non a revisión, así como para acceder ó envío e " +"rexistrar a súa revisión e recomendación.
      \n" +"
      \n" +"Prazo de envío da revisión {$reviewDueDate}.
      \n" +"
      \n" +"URL do envío: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Nome de usuario: {$recipientUsername}
      \n" +"
      \n" +"Grazas por considerar esta solicitude.
      \n" +"
      \n" +"
      \n" +"Atentamente,
      \n" +"{$signature}
      \n" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Solicitude de revisión do manuscrito" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Estimado {$recipientName},
      \n" +"Só un recordatorio da nosa solicitude de revisión do envío, "" +"{$submissionTitle}" para {$contextName}. Esperabamos ter a túa resposta " +"antes do {$responseDueDate}, e este correo electrónico xerouse e enviouse " +"automaticamente co paso desa data.\n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"Inicie sesión no sitio web de publicación para indicar se realizará ou non a " +"revisión, así como para acceder á presentación e rexistrar a súa revisión e " +"recomendación.
      \n" +"
      \n" +"O prazo de envío da revisión é {$reviewDueDate}.
      \n" +"
      \n" +"URL do envío: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Nome de usuario: {$recipientUsername}
      \n" +"
      \n" +"Grazas por considerar esta solicitude.
      \n" +"
      \n" +"
      \n" +"Atentamente,
      \n" +"{$contextSignature}
      \n" + +msgid "emails.reviewCancel.subject" +msgstr "Solicitude de revisión cancelada" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Neste momento decidimos cancelar a nosa solicitude para que revises o envío, " +""{$submissionTitle}" para {$contextName}. Desculpa as molestias " +"que isto poida causarte e esperamos que poidamos chamarte para que poidas " +"axudar noutro proceso de revisión no futuro.
      \n" +"
      \n" +"Se tes algunha dúbida, ponte en contacto con nos." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Solicitude de revisión restablecida" + +msgid "emails.reviewReinstate.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Queremos restablecer a solicitude para que revises o envío, "" +"{$submissionTitle}" para {$contextName}. Agardamos que poidas axudar no " +"proceso de revisión desta publicación.
      \n" +"
      \n" +"Se tes algunha dúbida, ponte en contacto con nos." + +msgid "emails.reviewDecline.subject" +msgstr "Non dispoñibel para revisar" + +msgid "emails.reviewDecline.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Temo que neste momento non podo revisar o envío "{$submissionTitle}" +"" para {$contextName}. Grazas por pensar en min e noutra ocasión non " +"dubides en chamarme.
      \n" +"
      \n" +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Recordatorio de revisión do envío" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Só un recordatorio da solicitude de revisión do envío "" +"{$submissionTitle}" para {$contextName}. Agardabamos recibir esta " +"revisión antes do {$reviewDueDate} e estaríamos encantados de recibila en " +"canto poida preparala.
      \n" +"
      \n" +"Se non ten o seu nome de usuario e contrasinal para o sitio web, pode usar " +"esta ligazón para restablecer o seu contrasinal (que logo se lle enviará por " +"correo electrónico xunto co seu nome de usuario). {$passwordLostUrl}
      \n" +"
      \n" +"URL do envío: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Nome de usuario: {$recipientUsername}
      \n" +"
      \n" +"Confirme a súa capacidade para completar esta contribución ao traballo da " +"editorial. Ficamos a espera do seu contacto..
      \n" +"
      \n" +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Só un recordatorio da solicitude de revisión do envío "" +"{$submissionTitle}" para {$contextName}. Agardabamos recibir esta " +"revisión antes do {$reviewDueDate}, e este correo electrónico xerouse e " +"enviouse automaticamente co paso desa data. Aínda estaremos encantados de " +"recibilo en canto o teña preparado.
      \n" +"
      \n" +"Se non ten o seu nome de usuario e contrasinal para o sitio web, pode usar " +"esta ligazón para restablecer o seu contrasinal (que logo se lle enviará por " +"correo electrónico xunto co seu nome de usuario). {$passwordLostUrl}
      \n" +"
      \n" +"URL do envío: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Nome de usuario: {$recipientUsername}
      \n" +"
      \n" +"Confirme a súa capacidade para completar esta contribución ao traballo da " +"editorial. Ficamos a espera do seu contacto.
      \n" +"
      \n" +"{$contextSignature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "" + +msgid "emails.editorDecisionAccept.body" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" + +msgid "emails.layoutRequest.subject" +msgstr "" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" + +msgid "emails.layoutComplete.subject" +msgstr "" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" + +msgid "emails.indexRequest.subject" +msgstr "" + +msgid "emails.indexRequest.body" +msgstr "" + +msgid "emails.indexComplete.subject" +msgstr "" + +msgid "emails.indexComplete.body" +msgstr "" + +msgid "emails.emailLink.subject" +msgstr "" + +msgid "emails.emailLink.body" +msgstr "" + +msgid "emails.emailLink.description" +msgstr "" + +msgid "emails.notifySubmission.subject" +msgstr "" + +msgid "emails.notifySubmission.body" +msgstr "" + +msgid "emails.notifySubmission.description" +msgstr "" + +msgid "emails.notifyFile.subject" +msgstr "" + +msgid "emails.notifyFile.body" +msgstr "" + +msgid "emails.notifyFile.description" +msgstr "" + +msgid "emails.statisticsReportNotification.subject" +msgstr "" + +msgid "emails.statisticsReportNotification.body" +msgstr "" + +msgid "emails.announcement.subject" +msgstr "" + +msgid "emails.announcement.body" +msgstr "" + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Este correo electrónico envíase a un usuario/a recentemente rexistrado/a " +#~ "para darlle a benvida ao sistema e fornecerlle do seu nome de usuario e " +#~ "contrasinal." + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName}
      \n" +#~ "
      \n" +#~ "Creaches unha conta con {$contextName}. Antes de comezar a usala debes " +#~ "validar a túa conta de correo electrónico. Para iso, só tes que seguir a " +#~ "seguinte ligazón:
      \n" +#~ "
      \n" +#~ "{$activateUrl}
      \n" +#~ "
      \n" +#~ "Grazas,
      \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Validar a túa conta" diff --git a/locale/gl/locale.po b/locale/gl/locale.po new file mode 100644 index 00000000000..55cf06578b0 --- /dev/null +++ b/locale/gl/locale.po @@ -0,0 +1,1671 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-06-10 11:45+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "common.payments" +msgstr "Pagamentos" + +msgid "monograph.audience" +msgstr "Público" + +msgid "monograph.audience.success" +msgstr "Actualizáronse os detalles do público." + +msgid "monograph.coverImage" +msgstr "Imaxe da portada" + +msgid "monograph.audience.rangeQualifier" +msgstr "Cualificador de rango de público" + +msgid "monograph.audience.rangeFrom" +msgstr "Rango de público (desde)" + +msgid "monograph.audience.rangeTo" +msgstr "Rango de público (ata)" + +msgid "monograph.audience.rangeExact" +msgstr "Rango de público (exacto)" + +msgid "monograph.languages" +msgstr "Idiomas (castelán, inglés, francés)" + +msgid "monograph.publicationFormats" +msgstr "Formatos de publicación" + +msgid "monograph.publicationFormat" +msgstr "Formato" + +msgid "monograph.publicationFormatDetails" +msgstr "Detalles sobre o formato de publicación dispoñible: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Detalles sobre esta monografía" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formatos:" + +msgid "monograph.type" +msgstr "Tipo de envío" + +msgid "submission.pageProofs" +msgstr "Galeradas" + +msgid "monograph.proofReadingDescription" +msgstr "" +"O maquetador/a carga aquí os arquivos listos para a produción que se " +"prepararon para a súa publicación. Use + Asignar para designar os " +"autores/as e outras persoas para corrixir as probas das galeragas, cos " +"arquivos corrixidos cargados para a súa aprobación antes da publicación." + +msgid "monograph.task.addNote" +msgstr "Engadir á tarefa" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Acceso aberto" + +msgid "monograph.publicationFormat.imprint" +msgstr "Imprimir (nome comercial)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Número de páxinas" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Limiar" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Epílogo" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Composición do produto" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Detalle do produto (opcional)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identificación do produto" + +msgid "monograph.publicationFormat.price" +msgstr "Prezo" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "É necesario un prezo." + +msgid "monograph.publicationFormat.priceType" +msgstr "Tipo de prezo" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Porcentaxe de desconto, se procede" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Dispoñibilidade do produto" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Indicador de devolución" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Información dixital" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Dimensións físicas" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Tamaño do arquivo en Mbytes" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Introduces o teu propio valor do tamaño do arquivo?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Altura" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Grosor" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Peso" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Ancho" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "País de fabricación" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Protección técnica dixital" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Rexión de distribución do produto" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Taxa impositiva" + +msgid "monograph.publicationFormat.taxType" +msgstr "Tipo de taxa" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Inclúa os metadatos deste formato de publicación na entrada do catálogo " +"deste libro." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Faltan mercados e prezos." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Falta un código de identificación." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Faltan algúns campos de metadatos." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

      O formato de publicación que escolleu para esta monografía xa non existe. " +"

      " + +msgid "monograph.publicationFormat.openTab" +msgstr "Abrir a lapela do formato de publicación." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Formato de publicación" + +msgid "grid.catalogEntry.nameRequired" +msgstr "É necesario un nome." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "É necesario un prezo válido." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Detalles do formato" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Formato físico" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Este formato estará dispoñible nun sitio web aparte" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL do contido aloxado remotamente" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "Código ISBN con 13 díxitos, por exemplo 978-84-17807-84-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "Código ISBN con 10 díxitos, por exemplo 84-17807-84-2." + +msgid "grid.catalogEntry.monographRequired" +msgstr "É necesario un ID da monografía." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Debe escoller un formato de publicación." + +msgid "grid.catalogEntry.availability" +msgstr "Dispoñibilidade" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Dispoñibel" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Non dispoñibel" + +msgid "grid.catalogEntry.proof" +msgstr "Proba" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Aprobación do formato" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

      Aprobe os metadatos deste formato. Os metadatos pódense comprobar no " +"panel Editar para cada formato.

      " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

      Indicar que os metadatos deste formato non foron aprobados.

      " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Dispoñibilidade do formato" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

      Este formato estará agora dispoñible para os lectores. Os " +"arquivos descargables e calquera outra distribución aparecerán na entrada do " +"catálogo do libro.

      " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

      Este formato non estará dispoñible para os lectores. Os arquivos " +"descargables ou outras distribucións xa non aparecerán na entrada do " +"catálogo do libro.

      " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Entrada do catálogo non aprobada." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "O formato non está dispoñibel na entrada do catálogo." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Proba non aceptada." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Aprobado" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Esperando aprobación" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Requírese un tamaño de arquivo para formatos dixitais." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "É necesario un código de dispoñibilidade do produto." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Debe elixirse un código de composición do produto." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Valor do código" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Tipo de código ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "É necesario un código de identificación." + +msgid "grid.catalogEntry.valueRequired" +msgstr "É necesario un valor." + +msgid "grid.catalogEntry.salesRights" +msgstr "Dereitos de venda" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Valor do código" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Tipo de dereitos de venda" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Resto do mundo?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Marque a opción para usar esta entrada de Dereitos de Venda como regra xeral " +"para o formato. Non é preciso escoller países e rexións neste caso." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Xa hai un tipo de venda RdM (Resto do mundo) definido para este formato de " +"publicación." + +msgid "grid.catalogEntry.countries" +msgstr "Países" + +msgid "grid.catalogEntry.regions" +msgstr "Rexións" + +msgid "grid.catalogEntry.included" +msgstr "Incluidos" + +msgid "grid.catalogEntry.excluded" +msgstr "Excluidos" + +msgid "grid.catalogEntry.markets" +msgstr "Territorios de mercado" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Territorio" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Datas de publicación" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Requírese un rol de representante." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "É necesario un formato de data." + +msgid "grid.catalogEntry.dateValue" +msgstr "Data" + +msgid "grid.catalogEntry.dateRole" +msgstr "Rol" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Formato de data" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"É necesaria unha data e o valor da data debe coincidir co formato de data " +"escollido." + +msgid "grid.catalogEntry.representatives" +msgstr "Representantes" + +msgid "grid.catalogEntry.representativeType" +msgstr "Tipo de representante" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Axentes" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Provedores" + +msgid "grid.catalogEntry.agent" +msgstr "Axente" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Podes asignar un axente para representarte no territorio definido. Non é " +"obrigatorio." + +msgid "grid.catalogEntry.supplier" +msgstr "Provedor" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Elixir un rol:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Rol" + +msgid "grid.catalogEntry.representativeName" +msgstr "Nome" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Teléfono" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Enderezo de correo electrónico" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Páxina web" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "ID do representante" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Tipo de ID do representante (recoméndase GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Podes deixar a seguinte sección baleira se forneces os teus propios servizos " +"aos teus clientes." + +msgid "grid.action.addRepresentative" +msgstr "Engadir representante" + +msgid "grid.action.editRepresentative" +msgstr "Editar este representante" + +msgid "grid.action.deleteRepresentative" +msgstr "Borrar este representante" + +msgid "spotlight" +msgstr "Destaque" + +msgid "spotlight.spotlights" +msgstr "Destaques" + +msgid "spotlight.noneExist" +msgstr "Non existen destaques." + +msgid "spotlight.title.homePage" +msgstr "En destaque" + +msgid "spotlight.author" +msgstr "Autor, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Elemento destacado" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Páxina de inicio" + +msgid "grid.content.spotlights.form.location" +msgstr "Ubicación dos destaques" + +msgid "grid.content.spotlights.form.item" +msgstr "Inserir título do destaque (autocompletar)" + +msgid "grid.content.spotlights.form.title" +msgstr "Título do destaque" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Libro" + +msgid "grid.content.spotlights.itemRequired" +msgstr "É necesario un elemento." + +msgid "grid.content.spotlights.titleRequired" +msgstr "É necesario un título do destaque." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Elixe unha ubicación para este destaque." + +msgid "grid.action.editSpotlight" +msgstr "Editar este destaque" + +msgid "grid.action.deleteSpotlight" +msgstr "Borrar este destaque" + +msgid "grid.action.addSpotlight" +msgstr "Engadir destaque" + +msgid "manager.series.open" +msgstr "Envíos abertos" + +msgid "manager.series.indexed" +msgstr "Indexado" + +msgid "grid.libraryFiles.column.files" +msgstr "Arquivos" + +msgid "grid.action.catalogEntry" +msgstr "Ver o formulario de entrada do catálogo" + +msgid "grid.action.formatInCatalogEntry" +msgstr "O formato aparece no catálogo" + +msgid "grid.action.editFormat" +msgstr "Editar este formato" + +msgid "grid.action.deleteFormat" +msgstr "Borrar este formato" + +msgid "grid.action.addFormat" +msgstr "Engadir formato de publicación" + +msgid "grid.action.approveProof" +msgstr "Aceptar a proba de indexación e inclusión no catálogo" + +msgid "grid.action.pageProofApproved" +msgstr "O ficheiro de galeradas está listo para a súa publicación" + +msgid "grid.action.newCatalogEntry" +msgstr "Nova entrada no catálogo" + +msgid "grid.action.publicCatalog" +msgstr "Ver este elemento no catalogo" + +msgid "grid.action.feature" +msgstr "Alternar a función de visualización" + +msgid "grid.action.featureMonograph" +msgstr "Destacar no carrusel do catálogo" + +msgid "grid.action.releaseMonograph" +msgstr "Marcar este envío como \"Novidade\"" + +msgid "grid.action.manageCategories" +msgstr "Configurar categorías para a editorial" + +msgid "grid.action.manageSeries" +msgstr "Configurar categorías para esta editorial" + +msgid "grid.action.addCode" +msgstr "Engadir código" + +msgid "grid.action.editCode" +msgstr "Editar código" + +msgid "grid.action.deleteCode" +msgstr "Borrar código" + +msgid "grid.action.addRights" +msgstr "Engadir dereitos de venda" + +msgid "grid.action.editRights" +msgstr "Editar dereitos" + +msgid "grid.action.deleteRights" +msgstr "Borrar estes dereitos" + +msgid "grid.action.addMarket" +msgstr "Engadir mercado" + +msgid "grid.action.editMarket" +msgstr "Editar mercado" + +msgid "grid.action.deleteMarket" +msgstr "Borrar este mercado" + +msgid "grid.action.addDate" +msgstr "Engadir data de publicación" + +msgid "grid.action.editDate" +msgstr "Editar data" + +msgid "grid.action.deleteDate" +msgstr "Borrar esta data" + +msgid "grid.action.createContext" +msgstr "Crear unha nova editorial" + +msgid "grid.action.publicationFormatTab" +msgstr "Mostrar a lapela de formato de publicación" + +msgid "grid.action.moreAnnouncements" +msgstr "Ir á páxina de avisos da editora" + +msgid "grid.action.submissionEmail" +msgstr "Fai clic para ler este correo electrónico" + +msgid "grid.action.approveProofs" +msgstr "Ver a grella das probas" + +msgid "grid.action.proofApproved" +msgstr "O formato foi probado" + +msgid "grid.action.availableRepresentation" +msgstr "Aceptar/rexeitar este formato" + +msgid "grid.action.formatAvailable" +msgstr "Activa e desactiva a dispoñibilidade deste formato" + +msgid "grid.reviewAttachments.add" +msgstr "Engadir arquivo á revisión" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Arquivos dispoñibeis" + +msgid "series.series" +msgstr "Colección" + +msgid "series.featured.description" +msgstr "Esta colección aparecerá no menú principal" + +msgid "series.path" +msgstr "Ruta" + +msgid "catalog.manage" +msgstr "Xestión do catálogo" + +msgid "catalog.manage.newReleases" +msgstr "Novidades" + +msgid "catalog.manage.category" +msgstr "Categorías" + +msgid "catalog.manage.series" +msgstr "Colección" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Insira un ISSN válido." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "O ISSN en liña e o de impresión non debe ser o mesmo." + +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN en liña" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN de impresión" + +msgid "catalog.selectSeries" +msgstr "Seleccionar colección" + +msgid "catalog.selectCategory" +msgstr "Seleccionar categoría" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"A imaxe de portada dos libros seleccionados aparece cara á parte superior da " +"páxina de inicio como un conxunto desprazable. Fai clic en \"Destacar\" e " +"despois na estrela para engadir un libro ao carrusel; fai clic no signo de " +"exclamación para destacalo como unha novidade e arrastre e solte para " +"ordenalo." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Fai clic en \"Destacar\" e logo na estrela para destacar un libro desta " +"categoría; arrastra e solta para ordenar." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Fai clic en \"Destacar\" e despois na estrela para destacar un libro desta " +"colección; arrastra e solta para ordenalo. As coleccións identifícanse cun " +"editor/a e un título da colección, dentro dunha categoría ou de forma " +"independente." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Carrusel" + +msgid "catalog.manage.newRelease" +msgstr "Publicación" + +msgid "catalog.manage.manageSeries" +msgstr "Xestionar coleccións" + +msgid "catalog.manage.manageCategories" +msgstr "Xestionar categorías" + +msgid "catalog.manage.noMonographs" +msgstr "Non hai monografías asignadas." + +msgid "catalog.manage.featured" +msgstr "Destaque" + +msgid "catalog.manage.categoryFeatured" +msgstr "Destaque na categoría" + +msgid "catalog.manage.seriesFeatured" +msgstr "Destaque na colección" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monografía destacada." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monografía non destacada." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Monografía marcada como novidade." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Monografía desmarcada como novidade." + +msgid "catalog.manage.feature.newRelease" +msgstr "Novidade" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Novidade na categoría" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Novidade na colección" + +msgid "catalog.manage.nonOrderable" +msgstr "Esta monografía non se pode solicitar ata que sexa publicada." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Buscar por título ou autor" + +msgid "catalog.manage.isFeatured" +msgstr "Esta monografía é un destaque. Facer que non o sexa." + +msgid "catalog.manage.isNotFeatured" +msgstr "Esta monografía non é un destaque. Facer que o sexa." + +msgid "catalog.manage.isNewRelease" +msgstr "Esta monografía é unha novidade. Facer que non o sexa." + +msgid "catalog.manage.isNotNewRelease" +msgstr "Esta monografía non é unha novidade. Facer que o sexa." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Non se seleccionou ningún envío para engadir ao catálogo." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Non se puido atopar un ou máis envíos." + +msgid "catalog.manage.findSubmissions" +msgstr "Atopar monografías para engadilas ao catálogo" + +msgid "catalog.noTitles" +msgstr "Aínda non se publicaron títulos." + +msgid "catalog.noTitlesNew" +msgstr "Non hai novidades dispoñibles neste momento." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Non se atoparon títulos que coincidan coa túa procura \"{$searchQuery}\"." + +msgid "catalog.feature" +msgstr "Destacar" + +msgid "catalog.featured" +msgstr "Destaque" + +msgid "catalog.featuredBooks" +msgstr "Libros destacados" + +msgid "catalog.foundTitleSearch" +msgstr "Atopouse un título que coincide coa túa procura \"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"Atopáronse {$number} títulos que coinciden coa túa procura " +"\"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Todos os libros" + +msgid "catalog.newReleases" +msgstr "Novidades" + +msgid "catalog.dateAdded" +msgstr "Engadido" + +msgid "catalog.publicationInfo" +msgstr "Información da publicación" + +msgid "catalog.published" +msgstr "Publicado" + +msgid "catalog.forthcoming" +msgstr "Próximamente" + +msgid "catalog.categories" +msgstr "Categorías" + +msgid "catalog.parentCategory" +msgstr "Categoría pai" + +msgid "catalog.category.subcategories" +msgstr "Subcategorías" + +msgid "catalog.aboutTheAuthor" +msgstr "Acerca de {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Ten en conta que: para mercar artigos, primeiro terás que iniciar sesión. Se " +"selecciona un elemento para mercar, dirixirase á páxina de inicio de sesión. " +"Calquera elemento marcado cunha icona de acceso aberto pódese descargar de " +"balde sen iniciar sesión." + +msgid "catalog.sortBy" +msgstr "Orden das monografías" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Escolle como ordenar os libros destas coleccións." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Escolle como ordenar os libros desta categoría." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Escolle como ordenar os libros no catálogo." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Posición das coleccións (menores primeiro)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Posición das coleccións (maiores primeiro)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} vista do arquivo {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Volver para ver detalles sobre {$monographTitle}" + +msgid "submission.search" +msgstr "Procura de libros" + +msgid "common.publication" +msgstr "Monografía" + +msgid "common.publications" +msgstr "Monografías" + +msgid "common.prefix" +msgstr "Prefixo" + +msgid "common.preview" +msgstr "Previsualizar" + +msgid "common.feature" +msgstr "Destacar" + +msgid "common.searchCatalog" +msgstr "Buscar no catálogo" + +msgid "common.moreInfo" +msgstr "Máis información" + +msgid "common.listbuilder.completeForm" +msgstr "Encha o formulario completamente." + +msgid "common.listbuilder.selectValidOption" +msgstr "Seleccione unha opción válida da lista." + +msgid "common.listbuilder.itemExists" +msgstr "Non podes engadir o mesmo elemento dúas veces." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Cabeceira da páxina de inicio" + +msgid "navigation.catalog" +msgstr "Catálogo" + +msgid "navigation.competingInterestPolicy" +msgstr "Política de conflito de intereses" + +msgid "navigation.catalog.allMonographs" +msgstr "Todas as monografías" + +msgid "navigation.catalog.manage" +msgstr "Administrar" + +msgid "navigation.catalog.administration.short" +msgstr "Administración" + +msgid "navigation.catalog.administration" +msgstr "Administración do catálogo" + +msgid "navigation.catalog.administration.categories" +msgstr "Categorías" + +msgid "navigation.catalog.administration.series" +msgstr "Coleccións" + +msgid "navigation.infoForAuthors" +msgstr "Para os autores/as" + +msgid "navigation.infoForLibrarians" +msgstr "Para os bibliotecarios/as" + +msgid "navigation.infoForAuthors.long" +msgstr "Información para autores/as" + +msgid "navigation.infoForLibrarians.long" +msgstr "Información para bibliotecarios/as" + +msgid "navigation.newReleases" +msgstr "Novidades" + +msgid "navigation.published" +msgstr "Publicado" + +msgid "navigation.wizard" +msgstr "Asistente" + +msgid "navigation.linksAndMedia" +msgstr "Ligazóns e Redes Sociais" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Ligazón ao seu catálogo." + +msgid "navigation.skip.spotlights" +msgstr "Ir aos destaques" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Coleccións" + +msgid "navigation.navigationMenus.series.description" +msgstr "Ligazón as coleccións." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Categoría" + +msgid "navigation.navigationMenus.category.description" +msgstr "Ligazón a unha categoría." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Novidades" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Ligazón ás Novidades." + +msgid "context.contexts" +msgstr "Editoriais" + +msgid "context.context" +msgstr "Editorial" + +msgid "context.current" +msgstr "Editorial actual:" + +msgid "context.select" +msgstr "Cambiar a outra editorial:" + +msgid "user.authorization.representationNotFound" +msgstr "Non se puido atopar o formato de publicación solicitado." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Inclúe usuarios sen roles nesta editorial." + +msgid "user.noRoles.submitMonograph" +msgstr "Enviar unha proposta" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Enviar unha monografía: o rexistro de autores/as está desactivado " +"actualmente." + +msgid "user.noRoles.regReviewer" +msgstr "Rexistrarse como revisor" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Rexistrarse como revisor/a: o rexistro de revisores/as está desactivado " +"actualmente." + +msgid "user.reviewerPrompt" +msgstr "Estarías disposto/a a revisar os envíos a esta editorial?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Sí, solicitar o rol de {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Si, gustaríame que me contactasen con solicitudes de revisión de envíos a " +"esta editorial." + +msgid "user.register.contextsPrompt" +msgstr "Con que editorial deste sitio desexa rexistrarse?" + +msgid "user.register.otherContextRoles" +msgstr "Solicita os seguintes roles." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Se solicitaches ser revisor dalgunha editorial, introduce os teus temas de " +"interés." + +msgid "user.role.manager" +msgstr "Xestor editorial" + +msgid "user.role.pressEditor" +msgstr "Editor" + +msgid "user.role.subEditor" +msgstr "Editor/a da colección" + +msgid "user.role.copyeditor" +msgstr "Corrector/a" + +msgid "user.role.proofreader" +msgstr "Corrector/a de probas" + +msgid "user.role.productionEditor" +msgstr "Editor/a de produción" + +msgid "user.role.managers" +msgstr "Xestores/as editoriais" + +msgid "user.role.subEditors" +msgstr "Editores/as da colección" + +msgid "user.role.editors" +msgstr "Editores/as" + +msgid "user.role.copyeditors" +msgstr "Correctores/as" + +msgid "user.role.proofreaders" +msgstr "Correctores/as de probas" + +msgid "user.role.productionEditors" +msgstr "Editores/as de produción" + +msgid "user.register.selectContext" +msgstr "Seleccione unha editorial na que rexistrarse:" + +msgid "user.register.noContexts" +msgstr "Non hai ningunha editorial coa que poida rexistrarse neste sitio." + +msgid "user.register.privacyStatement" +msgstr "Declaración de privacidade" + +msgid "user.register.registrationDisabled" +msgstr "Esta editorial actualmente non acepta rexistros de usuarios." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "O contrasinal que introduciches non é o suficientemente longo." + +msgid "user.register.readerDescription" +msgstr "Notificado por correo electrónico na publicación dunha monografía." + +msgid "user.register.authorDescription" +msgstr "Permitido o envío de elementos á editorial." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Dispoñibel para realizar revisións por pares dos envíos á editorial." + +msgid "user.register.reviewerDescription" +msgstr "Dispoñibel para realizar revisións por pares dos envíos á páxina." + +msgid "user.register.reviewerInterests" +msgstr "" +"Identificar os intereses de revisión (áreas sustantivas e métodos de " +"investigación):" + +msgid "user.register.form.userGroupRequired" +msgstr "Debe seleccionar polo menos un rol" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Si, estou de acordo en que os meus datos sexan recollidos e almacenados " +"segundo a
      declaración de " +"privacidade desta editorial." + +msgid "site.noPresses" +msgstr "Non hai editoriais dispoñibeis." + +msgid "site.pressView" +msgstr "Ver a página web da editorial" + +msgid "about.pressContact" +msgstr "Contacto da editorial" + +msgid "about.aboutContext" +msgstr "Sobre a editorial" + +msgid "about.editorialTeam" +msgstr "Equipo editorial" + +msgid "about.editorialPolicies" +msgstr "Políticas editoriais" + +msgid "about.focusAndScope" +msgstr "Orientación e ámbito da actividade" + +msgid "about.seriesPolicies" +msgstr "Políticas de categorías e coleccións" + +msgid "about.submissions" +msgstr "Propostas" + +msgid "about.onlineSubmissions" +msgstr "Envíos en liña" + +msgid "about.onlineSubmissions.login" +msgstr "Inicio de sesión" + +msgid "about.onlineSubmissions.register" +msgstr "Rexistrar" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} ou {$register} para facer un envío." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} o {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Facer un novo envío" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "Ver os seus envíos pendentes" + +msgid "about.authorGuidelines" +msgstr "Directrices para autores/as" + +msgid "about.submissionPreparationChecklist" +msgstr "Lista de verificación de envíos" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Como parte do proceso de envío, os autores están obrigados a comprobar o " +"cumprimento do seu envío con todos os seguintes elementos, e os envíos que " +"non cumpran estas directrices poden devolverse aos autores." + +msgid "about.copyrightNotice" +msgstr "Aviso de dereitos de autor/a" + +msgid "about.privacyStatement" +msgstr "Declaración de privacidade" + +msgid "about.reviewPolicy" +msgstr "Proceso de revisión por pares" + +msgid "about.publicationFrequency" +msgstr "Periodicidade da publicación" + +msgid "about.openAccessPolicy" +msgstr "Política de acceso aberto" + +msgid "about.pressSponsorship" +msgstr "Patrocinio da editorial" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Máis información sobre o sistema de publicación, a plataforma e o fluxo de " +"traballo de OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Proceso editorial e de publicación de OMP" + +msgid "about.aboutSoftware" +msgstr "Acerca de Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"Esta editorial usa OMP {$ompVersion}, que é un software de xestión e " +"publicación de código aberto, soportado e distribuído libremente polo Public " +"Knowledge Project baixo a licenza pública xeral GNU. Visita o sitio web de " +"PKP para obter máis información sobre o " +"software. póñase en contacto directamente coa " +"editorial para preguntas sobre a editorial ou os envíos á mesma." + +msgid "about.aboutOMPSite" +msgstr "" +"Este sitio usa OMP {$ompVersion}, que é un software de xestión e publicación " +"de código aberto, soportado e distribuído polo Public Knowledge Project " +"baixo a Licenza pública xeral de GNU. Visita o sitio web de PKP para obter máis información sobre o software." + +msgid "help.searchReturnResults" +msgstr "Volver a Procura de resultados" + +msgid "help.goToEditPage" +msgstr "Abre unha nova páxina para editar esta información" + +msgid "installer.appInstallation" +msgstr "Instalación de OMP" + +msgid "installer.ompUpgrade" +msgstr "Actualización de OMP" + +msgid "installer.installApplication" +msgstr "Instalar Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Se está a actualizar unha instalación existente de OMP, faga clic aquí para continuar." + +msgid "installer.installationInstructions" +msgstr "" +"\n" +"

      Grazas por descargar Open Monograph Press {$version} do " +"Public Knowledge Project. Antes de continuar, lea o arquivo README incluído neste software. Para obter " +"máis información sobre o Public Knowledge Project e os seus proxectos, " +"visite o sitio web de PKP. Se tes informes de erros ou consultas de asistencia técnica sobre Open " +"Monograph Press, consulta o foro de asistencia ou visita o sistema de notificación de erros. Aínda " +"que o foro de asistencia é o método de contacto preferido, tamén podes " +"enviar un correo electrónico ao equipo en pkp.contact@gmail.com.

      \n" + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Antes da instalación" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

      1. Os seguintes arquivos e cartafoles (e o seu contido) deben ser " +"editables:

      \n" +"
        \n" +"\t
      • config.inc.php é editable (opcional): {$writable_config}\n" +"\t
      • public/ é editable: {$writable_public}
      • \n" +"\t
      • cache/ é editable: {$writable_cache}
      • \n" +"\t
      • cache/t_cache/ é editable: {$writable_templates_cache}
      • \n" +"\t
      • cache/t_compile/ é editable: {$writable_templates_compile}\n" +"\t
      • cache/_db é editable: {$writable_db_cache}
      • \n" +"
      \n" +"\n" +"

      2. Débese crear un cartafol para almacenar os archivos cargados e debe " +"ser editable (consulte \"Configuracións de arquivo\" a continuación).

      " + +msgid "installer.upgradeInstructions" +msgstr "" +"

      Versión OMP {$version}

      \n" +"\n" +"

      Grazas por descargar Open Monograph Press do Public Knowledge " +"Project. Antes de continuar, lea os README e ACTUALIZAR incluídos " +"con este software. Para obter máis información sobre o PKP e os seus " +"proxectos visite o sitio " +"web de PKP. Se tes informes de erros ou consultas de asistencia técnica " +"sobre OMP, consulta o foro de asistencia ou visita < a href = \"http://pkp.sfu.ca/bugzilla/" +"\" target = \"_blank\">sistema de notificación de erros. Aínda que o " +"foro de asistencia é o método de contacto preferido, tamén podes enviar un " +"correo electrónico ao equipo en pkp." +"contact@gmail.com.

      \n" +"

      É moi recomendable facer unha copia de seguridade da túa " +"base de datos, cartafol de arquivos e o cartafol de instalación de OMP antes " +"de continuar.

      \n" +"

      Se estás executando o Modo seguro de PHP, asegúrate de que a directiva " +"max_execution_time no arquivo de configuración php.ini ten un límite alto. " +"Se se alcanza este ou calquera outro límite de tempo (por exemplo, a " +"directiva \"Tempo de espera\" de Apache) e se interrompe o proceso de " +"actualización, requirirase dunha intervención manual.

      " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Para obter soporte completo de Unicode (UTF-8), seleccione UTF-8 para todos " +"os axustes do conxunto de caracteres. Teña en conta que este soporte require " +"actualmente un servidor de base de datos MySQL> = 4.1.1 ou PostgreSQL> = " +"9.1.5. Ten en conta tamén que o soporte completo de Unicode require a " +"biblioteca mbstring (habilitada por defecto nas instalacións máis recentes de " +"PHP). Pode que teña problemas ao usar conxuntos de caracteres estendidos se " +"o servidor non cumpre estes requisitos.\n" +"

      \n" +"O seu servidor admite actualmente mbstring: {$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"O seu servidor actualmente permite a carga de arquivos: " +"{$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Actualmente o seu servidor permite un tamaño máximo de arquivos para cargar " +"de: {$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"A lingua principal que se empregará neste sistema. Consulte a documentación " +"do OMP se está interesado no soporte para idiomas non mencionados aquí." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Seleccione calquera idioma adicional que admita neste sistema. Estes idiomas " +"estarán dispoñibles para o seu uso nas editoriais aloxadas no sitio. Tamén " +"se poden instalar idiomas adicionais en calquera momento desde a interface " +"de administración do sitio. Os idiomas marcados con * poden estar " +"incompletos." + +msgid "installer.filesDirInstructions" +msgstr "" +"Introduza a ruta completa a un cartafol existente onde se gardarán os " +"arquivos cargados. Este cartafol non debería ser accesible directamente " +"dende a web. Asegúrese de que este cartafol existe e se pode " +"escribir nel antes da instalación. Os nomes das rutas de Windows " +"deben empregar barras directas, por exemplo. \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP require acceso a unha base de datos SQL para almacenar os seus datos. " +"Vexa os requisitos do sistema para obter unha lista de bases de datos " +"compatibles. Nos campos de abaixo, indique a configuración que se usará para " +"conectarse á base de datos." + +msgid "installer.upgradeApplication" +msgstr "Actualizar Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

      IMPORTANTE!

      \n" +"

      O instalador non puido sobrescribir automaticamente o arquivo de " +"configuración. Antes de intentar usar o sistema, abra config.inc.php nun editor de texto plano e substitúa o seu contido polo contido do " +"campo de texto seguinte.

      " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

      A instalación de OMP completouse correctamente.

      \n" +"

      Para comezar a usar o sistema inicia sesión " +"co nome de usuario e o contrasinal introducidos na páxina anterior.

      \n" +"

      Se desexas recibir novas e actualizacións rexístrate en http://pkp.sfu .ca/omp/" +"register. Se tes preguntas ou comentarios, visita o foro de asistencia.

      " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

      A actualización de OMP á versión {$version} completouse correctamente.\n" +"

      Non esquezas establecer a configuración \"instalada\" no ficheiro de " +"configuración config.inc.php de novo en Activado.

      \n" +"

      Se aínda non te rexistraches e desexas recibir novas e actualizacións, " +"rexístrate en http://pkp.sfu.ca/omp/register. Se tes preguntas ou " +"comentarios, visita o foro de asistencia.

      " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"A data límite da rolda {$round} de revisión do envío {$submissionId} por " +"{$reviewerName} estableceuse en {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} rexeitou a revisión da rolda {$round} para o envío " +"{$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} aceptou a revisión da rolda {$round} para o envío " +"{$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} marcou a rolda {$round} de revisión do envío {$submissionId} " +"como non considerada." + +msgid "log.editor.decision" +msgstr "" +"{$editorName} rexistrou unha decisión ({$decision}) para a monografía " +"{$submissionId}." + +msgid "log.editor.recommendation" +msgstr "" +"{$editorName} rexistrou unha recomendación ({$decision}) para a monografía " +"{$submissionId}." + +msgid "log.editor.archived" +msgstr "Arquivouse o envío {$submissionId}." + +msgid "log.editor.restored" +msgstr "O envío {$submissionId} restaurouse á cola." + +msgid "log.editor.editorAssigned" +msgstr "{$editorName} asignouse como editor/a ao envío {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} asignou a {$proofreaderName} á revisión do envío " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} enviou {$submissionId} para a súa programación." + +msgid "log.imported" +msgstr "{$userName} importou a monografía {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Engadido Código de Identifiación." + +msgid "notification.editedIdentificationCode" +msgstr "Código de Identificación editado." + +msgid "notification.removedIdentificationCode" +msgstr "Código de identificación eliminado." + +msgid "notification.addedPublicationDate" +msgstr "Engadida data de publicación." + +msgid "notification.editedPublicationDate" +msgstr "Data de publicación editada." + +msgid "notification.removedPublicationDate" +msgstr "Eliminada data de publicación." + +msgid "notification.addedPublicationFormat" +msgstr "Engadido formato de publicación." + +msgid "notification.editedPublicationFormat" +msgstr "Formato de publicación editado." + +msgid "notification.removedPublicationFormat" +msgstr "Eliminado formato de publicación." + +msgid "notification.addedSalesRights" +msgstr "Engadidos dereitos de venda." + +msgid "notification.editedSalesRights" +msgstr "Dereitos de venda editados." + +msgid "notification.removedSalesRights" +msgstr "Eliminados dereitos de venda." + +msgid "notification.addedRepresentative" +msgstr "Engadido representante." + +msgid "notification.editedRepresentative" +msgstr "Representante editado." + +msgid "notification.removedRepresentative" +msgstr "Representante eliminado." + +msgid "notification.addedMarket" +msgstr "Engadido mercado." + +msgid "notification.editedMarket" +msgstr "Mercado editado." + +msgid "notification.removedMarket" +msgstr "Mercado eliminado." + +msgid "notification.addedSpotlight" +msgstr "Engadido destaque." + +msgid "notification.editedSpotlight" +msgstr "Destaque editado." + +msgid "notification.removedSpotlight" +msgstr "Destaque eliminado." + +msgid "notification.savedCatalogMetadata" +msgstr "Catálogo de metadatos gardado." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Gardáronse os metadatos do formato de publicación." + +msgid "notification.proofsApproved" +msgstr "Galeradas aprobadas." + +msgid "notification.removedSubmission" +msgstr "Proposta eliminada." + +msgid "notification.type.submissionSubmitted" +msgstr "Enviouse unha nova monografía, \"{$title}\"." + +msgid "notification.type.editing" +msgstr "Editar eventos" + +msgid "notification.type.reviewing" +msgstr "Revisando eventos" + +msgid "notification.type.site" +msgstr "Eventos do sitio Web" + +msgid "notification.type.submissions" +msgstr "Eventos do envío" + +msgid "notification.type.userComment" +msgstr "Un lector/a fixo un comentario sobre \"{$title}\"." + +msgid "notification.type.public" +msgstr "Anuncios públicos" + +msgid "notification.type.editorAssignmentTask" +msgstr "Enviouse unha nova monografía á que hai que asignar un editor/a." + +msgid "notification.type.copyeditorRequest" +msgstr "Pedíronche que revises as correccións de \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "Pedíronche que revises os deseños de \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "Pedíronche que crees un índice para \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Comezou o proceso de revisión interna." + +msgid "notification.type.approveSubmission" +msgstr "" +"Este envío está pendente de aprobación na ferramenta de Entrada de catálogo " +"antes de que apareza no catálogo público." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Agardando a aprobación." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"A monografía non figurará no catálogo ata que non se publique. Para engadir " +"este libro ao catálogo, fai clic na lapela Publicación." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Non se configurou ningunha forma de pagamento." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Para poder definir a configuración do comercio electrónico é necesario " +"configurar unha forma de pagamento." + +msgid "notification.type.visitCatalogTitle" +msgstr "Xestión do catálogo" + +msgid "notification.type.visitCatalog" +msgstr "" +"A monografía foi aprobada. Visita o catálogo para xestionar os detalles " +"usando as ligazóns que aparecen enriba." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Rexeitóuselle o acceso porque non parece ser un revisor válido para esta " +"monografía." + +msgid "user.authorization.monographAuthor" +msgstr "Rexeitóuselle o acceso porque non parece ser o autor desta monografía." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Denegóuselle o acceso porque non parece ser un revisor asignado a esta " +"monografía." + +msgid "user.authorization.monographFile" +msgstr "Rexeitóuselle o acceso ao arquivo da monografía especificado." + +msgid "user.authorization.invalidMonograph" +msgstr "Monografía non válida ou non se solicitou ningunha!" + +#, fuzzy +msgid "user.authorization.noContext" +msgstr "Non hai editorial no contexto!" + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Estás intentando acceder a unha monografía que non forma parte da túa " +"colección." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Acceso denegado! Non foi asignado a esta etapa do fluxo de traballo." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Acceso denegado! O grupo de usuarios no que está actualmente non foi " +"asignado a esta etapa do fluxo de traballo. Comprobe a configuración da " +"editorial." + +msgid "payment.directSales" +msgstr "Descargar do sitio web de editorial" + +msgid "payment.directSales.price" +msgstr "Prezo" + +msgid "payment.directSales.availability" +msgstr "Dispoñibilidade" + +msgid "payment.directSales.catalog" +msgstr "Catálogo" + +msgid "payment.directSales.approved" +msgstr "Aprobado" + +msgid "payment.directSales.priceCurrency" +msgstr "Prezo ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Os prezos deben ser só numéricos. Non inclúa símbolos de moeda." + +msgid "payment.directSales.directSales" +msgstr "Vendas directas" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Non dispoñibel" + +msgid "payment.directSales.notSet" +msgstr "Non configurado" + +msgid "payment.directSales.openAccess" +msgstr "Acceso aberto" + +msgid "payment.directSales.price.description" +msgstr "" +"Os formatos do arquivo pódense facer dispoñibles para a descarga desde o " +"sitio web da editorial mediante acceso aberto sen custo para os lectores ou " +"vendas directas (mediante un proceso de pagamentos en liña, tal e como está " +"configurado en Distribución). Para este arquivo indique a base de acceso." + +msgid "payment.directSales.validPriceRequired" +msgstr "Precísase un prezo numérico válido." + +msgid "payment.directSales.purchase" +msgstr "Compra {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Descargar {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Comprar monografía ou descargar capítulo" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Esta transacción é para a compra dunha descarga directa dunha única " +"monografía ou dun capítulo dunha monografía." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Volveuse cargar o arquivo {$filename} de mapeado da axuda XML na procura de " +"{$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Libro" + +msgid "submission.pdf.download" +msgstr "Descargar o arquivo PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Rexistrar noutras editoriais" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Ocultar outras editoriais" + +msgid "submission.round" +msgstr "Rolda {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Especificouse un envío publicado non válido." + +msgid "catalog.coverImageTitle" +msgstr "Imaxe da capa" + +msgid "grid.catalogEntry.chapters" +msgstr "" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +msgid "section.section" +msgstr "Colección" diff --git a/locale/gl/manager.po b/locale/gl/manager.po new file mode 100644 index 00000000000..de9ee0656ea --- /dev/null +++ b/locale/gl/manager.po @@ -0,0 +1,1675 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-06-19 08:03+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Isto substituirá calquera configuración específica de esta editorial para " +"este idioma" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Non hai idiomas adicionais dispoñibles. Póñase en contacto co administrador/" +"a do sitio se desexa empregar idiomas adicionais con esta editorial." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Este será o idioma predeterminado para o sitio da editorial." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Asegúrese de que está marcada polo menos unha caixa de verificación para " +"cada tarefa do Editor de Coleccións." + +msgid "manager.series.form.reviewFormId" +msgstr "Asegúrese de que escolleu un formulario de revisión válido." + +msgid "manager.series.submissionIndexing" +msgstr "Non se incluirá na indexación da editorial" + +msgid "manager.series.editorRestriction" +msgstr "Só os Editores/as e os Editores/as de Coleccións poden enviar artigos." + +msgid "manager.series.confirmDelete" +msgstr "Seguro que queres eliminar permanentemente esta colección?" + +msgid "manager.series.indexed" +msgstr "Indexado" + +msgid "manager.series.open" +msgstr "Envíos abertos" + +msgid "manager.series.readingTools" +msgstr "Ferramentas de lectura" + +msgid "manager.series.submissionReview" +msgstr "Non será revisado por pares" + +msgid "manager.series.submissionsToThisSection" +msgstr "Envíos feitos a esta colección" + +msgid "manager.series.abstractsNotRequired" +msgstr "Non se precisan resumos" + +msgid "manager.series.disableComments" +msgstr "Desactiva os comentarios dos lectores/as desta colección." + +msgid "manager.series.book" +msgstr "Coleccións de libros" + +msgid "manager.series.create" +msgstr "Crear colección" + +msgid "manager.series.policy" +msgstr "Descrición da colección" + +msgid "manager.series.assigned" +msgstr "Editores desta colección" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Engade un editor/a de colección a esta serie dos Editores/as de Colección " +"dispoñibles. Unha vez engadido, designe se o Editor/a da colección " +"supervisará a REVISIÓN (revisión por pares) e/ou a EDICIÓN (redacción, " +"maquetación e corrección de probas) dos envíos a esta colección. Os editores/" +"as de colección créanse facendo clic en Editores de Coleccións en Roles na xestión de " +"editorial." + +msgid "manager.series.hideAbout" +msgstr "Omite esta colección na páxina Sobre a editorial." + +msgid "manager.series.unassigned" +msgstr "Editores de Coleccións dispoñibeis" + +msgid "manager.series.form.abbrevRequired" +msgstr "É necesario un título abreviado para a colección." + +msgid "manager.series.form.titleRequired" +msgstr "É necesario un título para a colección." + +msgid "manager.series.noneCreated" +msgstr "Non se creou ningunha colección." + +msgid "manager.series.existingUsers" +msgstr "Usuarios existentes" + +msgid "manager.series.seriesTitle" +msgstr "Título da colección" + +msgid "manager.series.restricted" +msgstr "Non permitir aos autores enviar directamente a esta colección." + +msgid "manager.payment.generalOptions" +msgstr "Opcións xerais" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Os pagamentos habilitaranse para esta editorial. Ten en conta que os " +"usuarios terán que iniciar sesión para realizar pagamentos." + +msgid "manager.payment.success" +msgstr "Actualizáronse as opcións de pagamento." + +msgid "manager.settings" +msgstr "Configuraciones" + +msgid "manager.settings.pressSettings" +msgstr "Configuraciones da editorial" + +msgid "manager.settings.press" +msgstr "Editorial" + +msgid "manager.settings.publisher.identity" +msgstr "Identidade da editorial" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Estes campos son necesarios para publicar metadatos ONIX válidos." + +msgid "manager.settings.publisher" +msgstr "Nome da Editorial" + +msgid "manager.settings.location" +msgstr "Localización xeográfica" + +msgid "manager.settings.publisherCode" +msgstr "Código da Editorial" + +msgid "manager.settings.publisherCodeType" +msgstr "Tipo de código da editorial" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Este non é un tipo de código editorial válido." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Todas as opcións específicas do proceso de distribución (notificación, " +"indexación, arquivo, pago, ferramentas de lectura)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Descargar o arquivo da monografía" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Visualizacións da páxina do resumo da monografía" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Resumo e descargas da monografía" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Visualizacións da páxina principal da colección" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Visualizacións da páxina principal da editorial" + +msgid "manager.tools" +msgstr "Ferramentas" + +msgid "manager.tools.importExport" +msgstr "" +"Todas as ferramentas específicas para importar e exportar datos " +"(publicacións, monografías, usuarios)" + +msgid "manager.tools.statistics" +msgstr "" +"Ferramentas para xerar informes relacionados coas estatísticas de uso " +"(visualizacións da páxina indice de catálogo, visualizacións da páxina do " +"resumo de monografía, descargas do arquivo da monografía)" + +msgid "manager.users.availableRoles" +msgstr "Roles dispoñibeis" + +msgid "manager.users.currentRoles" +msgstr "Roles actuais" + +msgid "manager.users.selectRole" +msgstr "Seleccionar rol" + +msgid "manager.people.allEnrolledUsers" +msgstr "Usuarios/as inscritos/as nesta editorial" + +msgid "manager.people.allPresses" +msgstr "Todas as editoriais" + +msgid "manager.people.allSiteUsers" +msgstr "Inscriba un usuario deste sitio nesta editorial" + +msgid "manager.people.allUsers" +msgstr "Todos os usuarios inscritos" + +msgid "manager.people.confirmRemove" +msgstr "" +"Queres eliminar este usuario/a desta publicación? Esta acción cancelará a " +"inscrición do usuario/a de todos os roles na publicación." + +msgid "manager.people.enrollExistingUser" +msgstr "Inscribir un usuario existente" + +msgid "manager.people.enrollSyncPress" +msgstr "Con editorial" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Selecciona un usuario para fusionalo noutra conta de usuario (por exemplo, " +"se alguén ten dúas contas). Eliminarase a conta seleccionada primeiro e os " +"seus envíos, tarefas, etc. atribuiranse á segunda conta." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Seleccione un usuario ao que atribuirlle as autorías do usuario anterior, as " +"tarefas de edición, etc." + +msgid "manager.people.syncUserDescription" +msgstr "" +"A sincronización da inscrición atribuirá a todos os usuarios/as inscritos " +"nun rol específico na publicación no mesmo rol nesta publicación. Esta " +"función permite sincronizar un conxunto común de usuarios (por exemplo, " +"revisores) entre publicacións." + +msgid "manager.people.confirmDisable" +msgstr "" +"Deshabilitar ao usuario/a? Isto evitará que o usuario inicie sesión no " +"sistema.\n" +"\n" +"Opcionalmente, pode proporcionarlle ao usuario unha razón para desactivar a " +"súa conta." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Non tes dereitos administrativos sobre este usuario/a. Isto pode ser " +"porque:\n" +"\t\t
        \n" +"\t\t\t
      • O usuario/a é administrador do sitio
      • \n" +"\t\t\t
      • O usuario/a está activo en publicacións que ti non xestionas
      • \n" +"\t\t
      \n" +"\tEsta tarefa debe ser realizada por un administrador do sitio.\n" +"\t" + +msgid "manager.system" +msgstr "Configuración do sistema" + +msgid "manager.system.archiving" +msgstr "Arquivado" + +msgid "manager.system.reviewForms" +msgstr "Formularios de revisión" + +msgid "manager.system.readingTools" +msgstr "Ferramentas de lectura" + +msgid "manager.system.payments" +msgstr "Pagamentos" + +msgid "user.authorization.pluginLevel" +msgstr "Non tes privilexios suficientes para xestionar este complemento." + +msgid "manager.pressManagement" +msgstr "Administración da editorial" + +msgid "manager.setup" +msgstr "Configuración" + +msgid "manager.setup.aboutItemContent" +msgstr "Contido" + +msgid "manager.setup.addAboutItem" +msgstr "Engadir un elemento \"Acerca de\"" + +msgid "manager.setup.addChecklistItem" +msgstr "Engadir un elemento \"Lista de verificación\"" + +msgid "manager.setup.addItem" +msgstr "Engadir elemento" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Engadir elemento para aparecer en \"Acerca da editorial\"" + +msgid "manager.setup.addNavItem" +msgstr "Engadir elemento" + +msgid "manager.setup.addSponsor" +msgstr "Engadir patrocinador" + +msgid "manager.setup.announcements" +msgstr "Anuncios" + +msgid "manager.setup.announcements.success" +msgstr "Actualizáronse os axustes dos anuncios." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Pódense publicar anuncios para informar aos lectores de noticias e eventos " +"da editorial. Os anuncios publicados aparecerán na páxina de anuncios." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Información adicional" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Introduza calquera información adicional que debe mostrarse aos lectores na " +"páxina de anuncios." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Para aparecer en Acerca da editorial) " + +msgid "manager.setup.contextAbout" +msgstr "Acerca da publicación" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Inclúa calquera información sobre a editorial que poida interesar aos " +"lectores/as, autores/as ou revisores/as. Isto podería incluír a súa política " +"de acceso aberto, o enfoque e alcance da mesma, a divulgación do patrocinio " +"e a historia da editorial." + +msgid "manager.setup.contextSummary" +msgstr "Resumo da publicación" + +msgid "manager.setup.copyediting" +msgstr "Correctores/as" + +msgid "manager.setup.copyeditInstructions" +msgstr "Instrucións para a corrección dos orixinais" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"As instrucións de corrección estarán dispoñibles para correctores/as, " +"autores/as e editores/as de seccións na fase de edición do envío. A " +"continuación móstrase un conxunto predeterminado de instrucións en HTML, que " +"pode ser modificado ou substituído polo xefe editorial en calquera momento " +"(en HTML ou texto plano)." + +msgid "manager.setup.copyrightNotice" +msgstr "Aviso de dereitos de autor" + +msgid "manager.setup.coverage" +msgstr "Cobertura" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Altura máxima da imaxe da capa" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Ancho máximo da imaxe da capa" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"As imaxes reduciranse cando sexan maiores que este tamaño, pero nunca serán " +"ampliadas ou estiradas para axustalas a estas dimensións." + +msgid "manager.setup.customizingTheLook" +msgstr "Paso 5. Personalización do aspecto" + +msgid "manager.setup.customTags" +msgstr "Etiquetas personalizadas" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Etiquetas de cabeceira HTML personalizadas que se inserirán na cabeceira de " +"cada páxina (por exemplo, etiquetas META)." + +msgid "manager.setup.details" +msgstr "Detalles" + +msgid "manager.setup.details.description" +msgstr "Nome da editorial, contactos, patrocinadores e motores de busca." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"O xestor/a editorial rexistrará todas as contas de usuario/a. Os editores/as " +"ou os editores/as de sección poden rexistrar aos revisores/as." + +msgid "manager.setup.discipline" +msgstr "Disciplina académica e subdisciplinas" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Útil cando a editorial traspasa os límites dunha disciplinaria e/ou os " +"autores/as envían elementos multidisciplinares." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(P.ex., historia; educación; socioloxía; psicoloxía; estudos culturais; " +"dereito)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Proporcione exemplos de disciplinas académicas relevantes para esta editorial" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Engade a táboa de contidos da monografía actual (se está dispoñibel)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Contido da páxina de inicio" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Mostrar libros destacados na páxina de inicio" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Libros destacados" + +msgid "manager.setup.displayInSpotlight" +msgstr "Mostrar libros no destaque na páxina de inicio" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Destaque" + +msgid "manager.setup.displayNewReleases" +msgstr "Mostrar novidades na páxina de inicio" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Novidades" + +msgid "manager.setup.enableDois.description" +msgstr "" + +#, fuzzy +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "Escolla os elementos aos que se deben asignar o DOI." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "" + +msgid "manager.dois.formatIdentifier.file" +msgstr "" + +msgid "manager.setup.editorDecision" +msgstr "Decisión do editor/a" + +msgid "manager.setup.emailBounceAddress" +msgstr "Remitente" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Calquera correo electrónico que non se poida entregar enviará unha mensaxe " +"de erro a este enderezo." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Para enviar os correos electrónicos que non puideron entregarse a un " +"enderezo de rebote, o administrador do sitio debe habilitar a opción " +"allow_envelope_sender no arquivo de configuración do sitio. " +"Pode ser necesaria a configuración do servidor, como se indica na " +"documentación de OMP." + +msgid "manager.setup.emails" +msgstr "Identificación de correo electrónico" + +msgid "manager.setup.emailSignature" +msgstr "Sinatura" + +#, fuzzy +msgid "manager.setup.emailSignature.description" +msgstr "" +"Os correos electrónicos predefinidos que o sistema envíe en nome da " +"editorial engadirán ao final a seguinte sinatura." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Habilitar avisos" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Pódense publicar avisos para informar aos lectores de novas e eventos. Os " +"anuncios publicados aparecerán na páxina de avisos." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Amosar na páxina principal" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Cantos anuncios se amosan na páxina de inicio. Deixa isto baleiro para non " +"mostrar ningún." + +msgid "manager.setup.enablePressInstructions" +msgstr "Permite que esta editorial apareza publicamente no sitio" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Usaranse identificadores personalizados para identificar os elementos " +"publicados." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Usaranse identificadores personalizados para identificar as galeradas (por " +"exemplo, arquivos HTML ou PDF) dos elementos publicados." + +msgid "manager.setup.enableUserRegistration" +msgstr "Os visitantes poden rexistrar unha conta de usuario coa editorial." + +msgid "manager.setup.focusAndScope" +msgstr "Enfoque e alcance da editorial" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Describa aos autores, lectores e bibliotecarios a temática das monografías e " +"outros elementos que publicará a editorial." + +msgid "manager.setup.focusScope" +msgstr "Enfoque e alcance" + +msgid "manager.setup.focusScopeDescription" +msgstr "EXEMPLO DE DATOS HTML" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Para que os autores indexen o seu traballo" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP adhírese ao protocolo Open Archives Initiative para a recolección de metadatos, que " +"é o estándar emerxente para proporcionar acceso ben indexado a recursos " +"electrónicos de investigación a escala mundial. Os autores utilizarán un " +"modelo similar para proporcionar metadatos para o seu envío. O xefe/a " +"editorial debería seleccionar as categorías para indexar, e presentar aos " +"autores exemplos relevantes para axudalos a indexar o seu traballo, " +"separando os termos cun punto e coma (por exemplo, term1; term2). As " +"entradas deben introducirse como exemplos usando \"P. ex.\" ou \"Por exemplo" +"\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "É necesario o correo electrónico do contacto principal." + +msgid "manager.setup.form.contactNameRequired" +msgstr "O nome do contacto principal é obrigatorio." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "É necesario o número de revisores por envío." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "É necesario un correo electrónico de soporte técnico." + +msgid "manager.setup.form.supportNameRequired" +msgstr "É obrigatorio o nome do soporte técnico." + +msgid "manager.setup.generalInformation" +msgstr "Información xeral" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Paso 1. Detalles" + +msgid "manager.setup.guidelines" +msgstr "Directrices" + +msgid "manager.setup.preparingWorkflow" +msgstr "Paso 3. Preparando o fluxo de traballo" + +msgid "manager.setup.identity" +msgstr "Identidade da editorial" + +msgid "manager.setup.information" +msgstr "Información" + +msgid "manager.setup.information.description" +msgstr "" +"Breves descricións da editorial para bibliotecarios e futuros autores e " +"lectores. Están dispoñibles na barra lateral do sitio na sección de " +"\"Información\"." + +msgid "manager.setup.information.forAuthors" +msgstr "Para autores/as" + +msgid "manager.setup.information.forLibrarians" +msgstr "Para bibliotecarios/as" + +msgid "manager.setup.information.forReaders" +msgstr "Para lectores/as" + +msgid "manager.setup.information.success" +msgstr "A información desta editorial actualizouse." + +msgid "manager.setup.institution" +msgstr "Institución" + +msgid "manager.setup.itemsPerPage" +msgstr "Elementos por páxina" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Limita o número de elementos (por exemplo, envíos, usuarios ou tarefas de " +"edición) para mostrar nunha lista antes de amosar os elementos posteriores " +"noutra páxina." + +msgid "manager.setup.keyInfo" +msgstr "Información clave" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Ofrece unha breve descrición da túa editorial e identifica aos membros do " +"teu equipo editorial." + +msgid "manager.setup.labelName" +msgstr "Nome da etiqueta" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Maquetadores" + +msgid "manager.setup.layoutInstructions" +msgstr "Instrucións de maquetación" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"As instrucións de maquetación pódense preparar para o formato dos elementos " +"publicados na editorial e introducirse a continuación en HTML ou texto " +"plano. Estarán dispoñibles para o maquetador e o editor de sección na páxina " +"de edición de cada envío. (Como cada editorial pode empregar os seus propios " +"formatos de arquivo, estándares bibliográficos, follas de estilo, etc., non " +"se fornece un conxunto de instrucións predeterminado.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Modelos de maquetación" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Os modelos pódense cargar para que aparezan na maquetación para cada un dos " +"formatos estándar publicados na editorial (por exemplo, monografía, revisión " +"de libros, etc.) empregando calquera formato de arquivo (por exemplo, pdf, " +"doc, etc.) con anotacións engadidas especificando a fonte, o tamaño , " +"marxes, etc. para servir de guía para os maquetadores/as e correctores/as de " +"probas." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Arquivo de modelo" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Título" + +msgid "manager.setup.lists" +msgstr "Listas" + +msgid "manager.setup.lists.success" +msgstr "A configuración da lista actualizouse." + +msgid "manager.setup.look" +msgstr "Visualización" + +msgid "manager.setup.look.description" +msgstr "" +"Cabeceira da páxina de inicio, contido, cabeceira da editorial, pé de " +"páxina, barra de navegación e folla de estilo." + +msgid "manager.setup.settings" +msgstr "Configuración" + +msgid "manager.setup.management.description" +msgstr "" +"Acceso e seguridade, programación, anuncios, corrección, maquetación e " +"corrección de probas." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Xestión dos pasos editoriais básicos" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Configuración da administración e publicación" + +msgid "manager.setup.managingThePress" +msgstr "Paso 4. Administración da configuración" + +msgid "manager.setup.masthead.success" +msgstr "Actualizáronse os detalles da cabeceira desta editorial." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Non se cargou ningún arquivo de imaxe." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Non se cargou ningunha folla de estilo." + +msgid "manager.setup.note" +msgstr "Nota" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Ao usar o correo electrónico de Notificación ao autor, inclúe os enderezos " +"de correo electrónico de todos os coautores, non só o do usuario que fai o " +"envío." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"A corrección dos orixinais correrá a cargo dun editor/a ou editor/a de " +"sección asignado ao envío." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Un editor/a ou editor/a de sección asignado ao envío preparará os ficheiros " +"HTML, PDF, etc." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Un editor/a ou un editor/a de sección asignado ao envío comprobará as " +"galeradas." + +msgid "manager.setup.numPageLinks" +msgstr "Ligazóns da páxina" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Limitar o número de ligazóns que se amosarán nas páxinas sucesivas dunha " +"lista." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Acceso ao contido da editorial" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN en liña" + +msgid "manager.setup.policies" +msgstr "Políticas" + +msgid "manager.setup.policies.description" +msgstr "" +"Obxecto da publicación, proceso de revisión por pares, seccións, " +"privacidade, seguridade e outros." + +msgid "manager.setup.privacyStatement.success" +msgstr "A declaración de privacidade actualizouse." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Desde esta páxina pódense configurar varios compoñentes do aspecto da " +"editorial, incluídos os elementos da cabeceira e pé de páxina, o estilo e o " +"tema e como se presentan as listas de información aos usuarios/as." + +msgid "manager.setup.pressDescription" +msgstr "Descrición da editorial" + +msgid "manager.setup.pressDescription.description" +msgstr "Unha breve descrición da súa editorial." + +msgid "manager.setup.aboutPress" +msgstr "Sobre a editorial" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Inclúe calquera información sobre a túa editorial que poida interesar aos " +"lectores/as, autores/as ou revisores/as. Isto podería incluír a política de " +"acceso aberto, a temática e o alcance da editorial, o aviso de copyright, a " +"divulgación de patrocinios, o historial e unha declaración de privacidade." + +msgid "manager.setup.pressArchiving" +msgstr "Arquivamento da publicación" + +msgid "manager.setup.homepageContent" +msgstr "Contido de páxina de inicio da editorial" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"A páxina de inicio de editorial consiste de forma predeterminada en ligazóns " +"de navegación. Pódese engadir contido adicional á páxina de inicio usando " +"unha ou todas as seguintes opcións, que aparecerán na orde mostrada." + +msgid "manager.setup.pressHomepageContent" +msgstr "Contido de páxina de inicio da editorial" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"A páxina de inicio de editorial consiste de forma predeterminada en ligazóns " +"de navegación. Pódese engadir contido adicional á páxina de inicio usando " +"unha ou todas as seguintes opcións, que aparecerán na orde mostrada." + +msgid "manager.setup.contextInitials" +msgstr "Sigla da editorial" + +msgid "manager.setup.selectCountry" +msgstr "" +"Selecione o país onde está a editorial ou o país do enderezo da " +"correspondencia." + +msgid "manager.setup.layout" +msgstr "Maquetación da publicación" + +msgid "manager.setup.pageHeader" +msgstr "Cabeceira da páxina da publicación" + +msgid "manager.setup.pageHeaderDescription" +msgstr "" + +msgid "manager.setup.pressPolicies" +msgstr "Paso 2. Políticas da editorial" + +msgid "manager.setup.pressSetup" +msgstr "Configuración" + +msgid "manager.setup.pressSetupUpdated" +msgstr "A configuración da editorial actualizouse." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Formato de folla de estilo non válido. O formato aceptado é .css." + +msgid "manager.setup.pressTheme" +msgstr "Tema" + +msgid "manager.setup.pressThumbnail" +msgstr "Miniatura da editorial" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Un pequeno logotipo ou representación da editorial que se pode empregar nas " +"listaxes de editoriais." + +msgid "manager.setup.contextTitle" +msgstr "Nome da editorial" + +msgid "manager.setup.printIssn" +msgstr "ISSN de impresión" + +msgid "manager.setup.proofingInstructions" +msgstr "Instrucións de corrección de probas" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"As instrucións de corrección de probas estarán dispoñibles para correctores/" +"as, autores/as, editores/as na etapa de edición do envío. A continuación " +"móstrase un conxunto predeterminado de instrucións en HTML, que pode ser " +"editado ou substituído polo xefe/a editorial en calquera momento (en HTML ou " +"texto plano)." + +msgid "manager.setup.proofreading" +msgstr "Correctores de probas" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Proporcione instrucións aos maquetadores." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Os elementos da publicación pódense publicar colectivamente, como parte " +"dunha monografía coa súa propia táboa de contidos. Como alternativa, pódense " +"publicar elementos individuais en canto estean listos engadíndoos á táboa de " +"contidos do volume \"actual\". Proporcione aos lectores, en Acerca da " +"editorial, unha declaración sobre o sistema que empregará esta prensa e a " +"súa frecuencia de publicación prevista." + +msgid "manager.setup.publisher" +msgstr "Editor" + +msgid "manager.setup.publisherDescription" +msgstr "" +"O nome da organización que publica aparecerá na páxina Acerca da editorial." + +msgid "manager.setup.referenceLinking" +msgstr "Ligazóns de referencia" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Instrucións de maquetación para as ligazóns de referencia" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Os usuarios/as deben estar rexistrados e iniciar sesión para ver o contido " +"de acceso aberto." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Os usuarios deben estar rexistrados e iniciar sesión para ver o sitio da " +"editorial." + +msgid "manager.setup.reviewGuidelines" +msgstr "Directrices de revisión externa" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Proporcione aos revisores/as externos/as criterios para xulgar a idoneidade " +"dun envío para a súa publicación, que poden incluír instrucións para " +"preparar unha revisión eficaz e útil. Os revisores/as terán a oportunidade " +"de proporcionar comentarios destinados ao autor/a e ao editor/a, así como " +"comentarios separados só para o editor/a." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Directrices de revisión interna" + +msgid "manager.setup.reviewOptions" +msgstr "Opcións de revisión" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Recordatorios de correo electrónico automatizados" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Para activar estas opcións, o administrador/a do sitio debe habilitar a " +"opción scheduled_tasks no arquivo de configuración de OMP. É " +"posible que sexa necesaria unha configuración no servidor para soportar esta " +"funcionalidade (que pode non ser posible en todos os servidores), como se " +"indica na documentación OMP." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Despois de cada revisión os editores/as valorarán aos revisores/as nunha " +"escala de cinco puntos." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Restrinxir o acceso ao arquivo" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Os revisores/as só terán acceso ao arquivo de envío despois de acordar " +"revisalo." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Acceso para os revisores/as" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Acceso do revisor/a cun clic" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Aos revisores/as pódeselles enviar unha ligazón segura na invitación por " +"correo electrónico, que lles permitirá acceder á revisión sen iniciar " +"sesión. Para acceder a outras páxinas, é necesario que inicien sesión." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" +"Inclúe unha ligazón segura na invitación por correo electrónico aos " +"revisores/as." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Calificación dos revisores/as" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Recordatorios para os revisores/as" + +msgid "manager.setup.reviewPolicy" +msgstr "Política de evaluación" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Proporcione unha breve descrición (50-300 caracteres) da editorial que os " +"motores de busca poden mostrar ao listar a nos resultados da busca." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Indexación nos motores de busca" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Axude aos motores de busca como Google a descubrir e amosar o seu sitio. " +"Animámosche a enviar o teu mapa " +"do sitio." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "A configuración da indexación do motor de busca actualizouse." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Seccións e editores/as de sección" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Se non se engaden seccións, os elementos envíanse á sección Monografías por " +"defecto.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Para crear ou modificar seccións da editorial (por exemplo, monografías, " +"comentarios de libros, etc.), vaia a Administración de seccións.

      Os autores/as que envíen elementos designarán..." + +msgid "manager.setup.securitySettings" +msgstr "Configuración de acceso e seguridade" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Outras opcións relacionadas coa seguridade e o acceso pódense configurar " +"desde a páxina Acceso e seguridade." + +msgid "manager.setup.selectEditorDescription" +msgstr "O editor/a o verá a través do proceso editorial." + +msgid "manager.setup.selectSectionDescription" +msgstr "A sección da publicación para a que se considerará o elemento." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Amosa sempre as ligazóns das galeradas e indica que o acceso é restrinxido." + +msgid "manager.setup.siteAccess.view" +msgstr "Acceso ao sitio" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Ver o contido da monografía" + +msgid "manager.setup.stepsToPressSite" +msgstr "Cinco pasos para crear o sitio web da editorial" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(Por exemplo, fotosíntese; buratos negros; Teorema de los cuatro colores; " +"Teorema de Bayes)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Palabras clave" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Proporcione exemplos de palabras clave ou temas como guía para os autores/as" + +msgid "manager.setup.submissionGuidelines" +msgstr "Directrices para o envío" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "O elemento da lista de verificación é necesario." + +msgid "manager.setup.workflow" +msgstr "Fluxo de traballo" + +msgid "manager.setup.submissions.description" +msgstr "" +"Directrices para o autor/a, dereitos de autor/a e indexación (incluído o " +"rexistro)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(Por exemplo, investigación histórica; case-experimental; análise literaria; " +"enquisa/entrevista)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Tipo (método/enfoque)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Proporcione exemplos de tipos, métodos e enfoques de investigación " +"relevantes para este campo" + +msgid "manager.setup.useCopyeditors" +msgstr "Asignarase un corrector/a para traballar con cada envío." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "A editorial empregará un consello editorial/de revisión." + +msgid "manager.setup.useImageTitle" +msgstr "Imaxe do título" + +msgid "manager.setup.useStyleSheet" +msgstr "Folla de estilo da editorial" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Asignarase un maquetador para preparar os arquivos HTML, PDF, etc. para a " +"publicación electrónica." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Asignarase un corrector/a de probas para comprobar (xunto cos autores/as) as " +"galeradas antes da publicación." + +msgid "manager.setup.userRegistration" +msgstr "Rexistro de usuarios/as" + +msgid "manager.setup.useTextTitle" +msgstr "Título" + +msgid "manager.setup.volumePerYear" +msgstr "Volumes por ano" + +msgid "manager.setup.publicationFormat.code" +msgstr "Formato" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Debe escollerse un formato." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Debe asignar un nome a este formato." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "É este un formato físico (non dixital)?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Debido a que este formato de publicación está a ser usado actualmente por " +"unha monografía na súa editorial, non se pode eliminar." + +msgid "manager.setup.newPublicationFormat" +msgstr "Novo formato de publicación" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Para crear un novo formato de publicación, enche o seguinte formulario e " +"preme no botón \"Crear\"." + +msgid "manager.setup.genresDescription" +msgstr "" +"Estes xéneros úsanse con fins de nomeamento de arquivos e preséntanse nun " +"menú despregable ao cargarlos. Os xéneros designados ## permiten ao usuario " +"asociar o arquivo con todo o libro 99Z ou cun capítulo concreto por número " +"(por exemplo, 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Esta editorial non acepta envíos neste momento. Visita a configuración do " +"fluxo de traballo para permitir envíos." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Evitar que os usuarios envíen novos artigos á editorial. Os envíos pódense " +"desactivar para cada serie editorial na páxina de configuración de series editoriais." + +msgid "manager.setup.genres" +msgstr "Xéneros" + +msgid "manager.setup.newGenre" +msgstr "Novo xénero de monografía" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Para crear un novo xénero, enche o seguinte formulario e preme no botón " +"\"Crear\"." + +msgid "manager.setup.deleteSelected" +msgstr "Eliminar selección" + +msgid "manager.setup.restoreDefaults" +msgstr "Restaurar a configuración por defecto" + +msgid "manager.setup.prospectus" +msgstr "Guía do folleto" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"O folleto guía é un documento preparado pola editorial que axuda ao autor/a " +"a describir os materiais enviados de xeito que permite a unha editorial " +"determinar o valor do envío. Un folleto pode incluír moitos elementos, desde " +"o potencial de mercado ata o valor teórico; en calquera caso, unha editorial " +"debería crear un folleto guía que complemente a súa axenda de publicación." + +msgid "manager.setup.submitToCategories" +msgstr "Permitir envíos por categoría" + +msgid "manager.setup.submitToSeries" +msgstr "Permitir envíos a coleccións" + +msgid "manager.setup.issnDescription" +msgstr "" +"O ISSN (International Standard Serial Number) é un número de oito díxitos " +"que identifica publicacións incluíndo series electrónicas. Pódese obter un " +"número no ISSN " +"International Center." + +msgid "manager.setup.currentFormats" +msgstr "Formatos actuais" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Categorías e Coleccións" + +msgid "manager.setup.categories.description" +msgstr "" +"Podes crear unha lista de categorías para axudarche a organizar as túas " +"publicacións. As categorías son agrupacións de libros segundo a materia, por " +"exemplo Economía, Literatura, Poesía, etcétera. As categorías pódense anidar " +"dentro de categorías \"pais\": por exemplo, unha categoría principal de " +"Economía pode incluír categorías individuais de Microeconomía e " +"Macroeconomía. Os visitantes poderán buscar e navegar pola editorial por " +"categoría." + +msgid "manager.setup.series.description" +msgstr "" +"Podes crear calquera número de coleccións para axudarche a organizar as túas " +"publicacións. Unha colección representa un conxunto especial de libros " +"dedicados a un tema ou temas. Os visitantes poderán buscar e navegar pola " +"editorial por coleccións." + +msgid "manager.setup.reviewForms" +msgstr "Formularios de revisión" + +msgid "manager.setup.roleType" +msgstr "Tipo de rol" + +msgid "manager.setup.authorRoles" +msgstr "Roles de autor/a" + +msgid "manager.setup.managerialRoles" +msgstr "Roles administrativos" + +msgid "manager.setup.availableRoles" +msgstr "Roles dispoñibeis" + +msgid "manager.setup.currentRoles" +msgstr "Roles actuais" + +msgid "manager.setup.internalReviewRoles" +msgstr "Roles de revisión interna" + +msgid "manager.setup.masthead" +msgstr "Cabeceira" + +msgid "manager.setup.editorialTeam" +msgstr "Equipo editorial" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Lista de editores/as, directores/as e outras persoas asociadas á editorial." + +msgid "manager.setup.files" +msgstr "Arquivos" + +msgid "manager.setup.productionTemplates" +msgstr "Modelos de produción" + +msgid "manager.files.note" +msgstr "" +"Nota: O explorador de arquivos é unha función avanzada que permite ver e " +"manipular directamente os arquivos e cartafoles asociados a unha editorial." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

      Avisos de dereitos de autor de Creative Commons

      \n" +"

      Política para publicacións que ofrecen acceso aberto

      \n" +"Os autores/as que publican nesta editorial aceptan os seguintes termos:\n" +"
        \n" +"\t
      1. Os autores/as conservan os dereitos de autor e outorgan á editorial o " +"dereito á primeira publicación do traballo baixo unha licenza de " +"recoñecemento Creative Commons que permite a outros compartir a obra cun " +"recoñecemento da autoría da obra e a publicación inicial nesta prensa.
      2. \n" +"\t
      3. Os autores/as poden subscribir series contractuais adicionais " +"separadas para a distribución non exclusiva da versión da obra publicada " +"pola editorial (por exemplo, publicala nun repositorio institucional ou " +"publicala nun libro), cun recoñecemento da inicial publicación nesta " +"editorial.
      4. \n" +"\t
      5. Permíteselles aos autores/as a publicar o seu traballo en liña (por " +"exemplo, en repositorios institucionais ou no seu sitio web) antes e durante " +"o proceso de envío, xa que pode levar a intercambios produtivos, así como " +"unha maior citación dos traballos publicados (Ver O efecto do acceso " +"aberto).
      6. \n" +"
      \n" +"\n" +"

      Política para editoriais que ofrecen un acceso aberto adiado

      \n" +"Os autores/as que publican con esta editorial aceptan os seguintes termos:\n" +"
        \n" +"\t
      1. Os autores/as conservan os dereitos de autor e outorgan á editorial o " +"dereito á primeira publicación do traballo [ESPECIFICAR O PERÍODO DE TEMPO] " +"despois da publicación baixo Licenza Creative Commons " +"Attribution que permite a outras persoas compartir a obra cun " +"recoñecemento da autoría e publicación inicial nesta editorial.
      2. \n" +"\t
      3. Os autores/as poden subscribir series contractuais adicionais " +"separadas para a distribución non exclusiva da versión da obra publicada " +"pola editorial (por exemplo, publicala nun repositorio institucional ou " +"publicala nun libro), cun recoñecemento da súa inicial publicación nesta " +"editorial.
      4. \n" +"\t
      5. Permíteselles aos autores/as a publicar o seu traballo en liña (por " +"exemplo, en repositorios institucionais ou no seu sitio web) antes e durante " +"o proceso de envío, xa que pode levar a intercambios produtivos, así como " +"unha maior citación dos traballos publicados (Ver O efecto do acceso " +"aberto).
      6. \n" +"
      " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Pasos: Cola de envío > Revisión de envíos > Edición de envíos > " +"Táboa de contidos.

      \n" +"Seleccione un modelo para tratar estes aspectos do proceso editorial. (Para " +"designar un editor/a de xestión ou editores/as de series, vaia a Editores en " +"Xestión da editorial.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

      Para permitir aos lectores localizar versións en liña da obra citada por " +"un autor, están dispoñibles as seguintes opcións.

      \n" +"\n" +"
        \n" +"\t
      1. Engadir unha ferramenta de lectura

        O xefe/a " +"editorial pode engadir \"Buscar referencias\" ás ferramentas de lectura que " +"acompañan os elementos publicados, o que permite aos lectores/as pegar o " +"título dunha referencia e buscar en bases de datos académicas " +"preseleccionadas o traballo citado.

      2. \n" +"\t
      3. Inserir ligazóns nas referencias

        O maquetador/a " +"pode engadir unha ligazón ás referencias que se poden atopar en liña " +"empregando as seguintes instrucións (que se poden editar).

      4. \n" +"
      " + +msgid "manager.publication.library" +msgstr "Biblioteca da publicación" + +msgid "manager.setup.resetPermissions" +msgstr "Reiniciar os permisos da monografía" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Seguro/a que desexas restablecer os datos de permisos xa asociados ás " +"monografías?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"A declaración de dereitos de autor e a información da licenza xuntaranse " +"permanentemente ao contido publicado, asegurando que estes datos non " +"cambiarán no caso de que a editorial cambie as políticas para os novos " +"envíos. Para restablecer a información de permisos almacenados xa unida ao " +"contido publicado, use o botón seguinte." + +msgid "manager.setup.resetPermissions.success" +msgstr "Restablecéronse correctamente os permisos da monografía." + +msgid "grid.genres.title.short" +msgstr "Compoñentes" + +msgid "grid.genres.title" +msgstr "Compoñentes da monografía" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Envíe unha copia ao contacto principal, identificado na Configuración da " +"editorial." + +msgid "grid.series.pathAlphaNumeric" +msgstr "A ruta da serie debe consistir só en letras e números." + +msgid "grid.series.pathExists" +msgstr "A ruta da serie xa existe. Insira unha ruta única." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Seleccionar Series" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Seleccione a serie á que desexa ligar este elemento do menú." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Seleccionar Categoría" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "Seleccione a categoría á que desexa ligar este elemento do menú." + +msgid "grid.series.urlWillBe" +msgstr "O URL da serie será: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "Estatísticas da monografía" + +msgid "stats.publications.details" +msgstr "Detalles da monografía" + +msgid "stats.publications.none" +msgstr "" +"Non se atoparon monografías con estatísticas de uso que coincidan con estes " +"parámetros." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Vistas totais do catálogo por data" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Total de visualizacións de arquivos por data" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} de {$total} monografías" + +msgid "stats.publications.abstracts" +msgstr "Entradas do catálogo" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Non hai obxectos seleccionados." + +msgid "plugins.importexport.common.error.validation" +msgstr "Non se puideron converter os obxectos seleccionados." + +msgid "plugins.importexport.common.invalidXML" +msgstr "XML non válido:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Exportar envíos" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Envia unha cópia do correo electrónico de confirmación do envío ao contacto " +"principal desta editorial." + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"Ningún contacto principal foi definido para esta editorial. Vostede pode " +"inserir o contacto principal na configuración da " +"editorial." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Non se atoparon os obxectos especificados." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "O usuario \"{$userName}\" non existe." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "O proceso fallou ao analizar os formatos de publicación" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "O proceso fallou ao analizar capítulos" + +msgid "emailTemplate.variable.context.contextName" +msgstr "" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "" + +msgid "emailTemplate.variable.context.contactName" +msgstr "" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "" + +msgid "mailable.validateEmailContext.name" +msgstr "" + +msgid "mailable.validateEmailContext.description" +msgstr "" + +msgid "doi.displayName" +msgstr "Identificador de obxecto dixital (DOI)" + +msgid "doi.manager.displayName" +msgstr "" + +msgid "doi.description" +msgstr "" +"Este complemento permite a asignación dos DOI a monografías, capítulos, " +"formatos de publicación e arquivos en OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Configure o complemento DOI para poder xestionar e usar os DOIs en OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "Seleccione os obxectos publicados que terán asignado DOI:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monografías" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Capítulos" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Formatos de publicación" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Arquivos" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Prefixo DOI" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "O prefixo DOI é obrigatorio e debe ter a forma 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Use o patrón que se introduce a continuación para xerar sufixos DOI. Use %p " +"para as iniciais de prensa, %m para o id da monografía, %c para o id do " +"capítulo, %f para o ID do formato de publicación, %s para o ID do arquivo e " +"%x para \"Identificador personalizado\"." + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Por exemplo, press%ppub%r podería crear un DOI como 10.1234/pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "para monografías" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "para capítulos" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "para formatos de publicación" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "para arquivos" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Insira o padrón do sufixo DOI para as monografías." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Insira o padrón do sufixo DOI para os capítulos." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Insira o padrón do sufixo DOI para os formatos de publicación." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Insira o padrón do sufixo DOI para os arquivos." + +msgid "doi.manager.settings.doiReassign" +msgstr "Asignar os DOI de novo" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Se cambia a configuración do DOI, os DOI xa asignados non se verán " +"afectados. Unha vez gardada a configuración do DOI, use este botón para " +"borrar todos os DOIs existentes para que a nova configuración teña efecto en " +"todos os obxectos existentes." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Estás seguro/a de que desexas eliminar todos os DOIs existentes?" + +msgid "doi.editor.doi" +msgstr "Identificador de obxecto dixital (DOI)" + +msgid "doi.editor.doi.description" +msgstr "O DOI debe comezar con {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Asignar" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "monografía" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "capítulo" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "formato de publicación" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "arquivo" + +msgid "doi.editor.customSuffixMissing" +msgstr "Non se pode asignar o DOI porque falta o sufixo personalizado." + +msgid "doi.editor.missingParts" +msgstr "" +"Non podes xerar un DOI porque faltan datos nunha ou máis partes do padrón " +"DOI." + +msgid "doi.editor.patternNotResolved" +msgstr "Non se pode asignar o DOI porque contén un padrón sen resolver." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"O que ves é unha vista previa do DOI. Marque a caixa de verificación e garde " +"o formulario para asignar o DOI." + +msgid "doi.editor.assigned" +msgstr "O DOI é asignado a este {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"O sufixo DOI indicado xa está en uso en outro elemento publicado. Insira un " +"sufixo DOI único para cada elemento." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Limpar" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Estás seguro/a de que desexas eliminar o DOI existente?" + +msgid "doi.editor.assignDoi" +msgstr "Asignar o DOI {$pubId} a este {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "Non se pode asignar o DOI porque falta o sufixo personalizado." + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"Non se pode asignar o DOI {$pubId} porque contén un padrón sen resolver." + +msgid "doi.editor.assignDoi.assigned" +msgstr "Asignouse o DOI {$pubId}." + +msgid "doi.editor.missingPrefix" +msgstr "O DOI debe comezar con {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "O DOI desta publicación será {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "Non se asignou un DOI a esta publicación." + +msgid "doi.editor.preview.chapters" +msgstr "Capítulo: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Formato de publicación: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Arquivo: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Elemento" + +msgid "doi.manager.submissionDois" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "O prefixo DOI (Digital Object Identifier) está asignado por CrossRef e ten o " +#~ "formato 10.xxxx (por exemplo, 10.1234)." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Prefixo DOI" diff --git a/locale/gl/submission.po b/locale/gl/submission.po new file mode 100644 index 00000000000..f9e5d1aeb5b --- /dev/null +++ b/locale/gl/submission.po @@ -0,0 +1,586 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-20 17:54+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Seleccionar compoñente" + +msgid "submission.title" +msgstr "Título do libro" + +msgid "submission.select" +msgstr "Seleccionar proposta" + +msgid "submission.synopsis" +msgstr "Resumo" + +msgid "submission.workflowType" +msgstr "Tipo de fluxo de traballo editorial" + +msgid "submission.workflowType.description" +msgstr "" +"Unha monografía é unha obra creada integramente por un ou máis autores. Unha " +"obra colectiva ten diferentes autores para cada capítulo (os detalles do " +"capítulo introducense máis adiante neste proceso)." + +msgid "submission.workflowType.editedVolume.label" +msgstr "Obra colectiva" + +msgid "submission.workflowType.editedVolume" +msgstr "Obra colectiva: os autores están asociados ao seu propio capítulo." + +msgid "submission.workflowType.authoredWork" +msgstr "Monografía: os autores están asociados ao libro completo." + +msgid "submission.workflowType.change" +msgstr "Cambiar" + +msgid "submission.editorName" +msgstr "{$editorName} (ed)" + +msgid "submission.monograph" +msgstr "Monografía" + +msgid "submission.published" +msgstr "Preparado para a produción" + +msgid "submission.fairCopy" +msgstr "Copia limpa" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Permisos" + +msgid "submission.chapter" +msgstr "Capítulo" + +msgid "submission.chapters" +msgstr "Capítulos" + +msgid "submission.chapter.addChapter" +msgstr "Engadir capítulo" + +msgid "submission.chapter.editChapter" +msgstr "Editar capítulo" + +msgid "submission.chapter.pages" +msgstr "Páxinas" + +msgid "submission.copyedit" +msgstr "Corrixir o estilo" + +msgid "submission.publicationFormats" +msgstr "Formatos de publicación" + +msgid "submission.proofs" +msgstr "Probas" + +msgid "submission.download" +msgstr "Descargar" + +msgid "submission.sharing" +msgstr "Compartir" + +msgid "manuscript.submission" +msgstr "Proposta de manuscrito" + +msgid "submission.round" +msgstr "Rolda {$round}" + +msgid "submissions.queuedReview" +msgstr "En revisión" + +msgid "manuscript.submissions" +msgstr "Envíos de manuscritos" + +msgid "submission.metadata" +msgstr "Metadatos" + +msgid "submission.supportingAgencies" +msgstr "Axencias de apoio" + +msgid "grid.action.addChapter" +msgstr "Crear un novo capítulo" + +msgid "grid.action.editChapter" +msgstr "Editar este capítulo" + +msgid "grid.action.deleteChapter" +msgstr "Eliminar este capítulo" + +msgid "submission.submit" +msgstr "Comezar o envío dun novo libro" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Comezar un novo envío a" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Novo envío" + +msgid "submission.submit.upload" +msgstr "Cargar" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "Identificar a este colaborador/a como editor/a deste volume." + +msgid "submission.submit.seriesPosition" +msgstr "Posición na serie" + +msgid "submission.submit.seriesPosition.description" +msgstr "Exemplos: libro 2, volumen 2" + +msgid "submission.submit.privacyStatement" +msgstr "Declaración de privacidade" + +msgid "submission.submit.contributorRole" +msgstr "Rol de colaborador" + +msgid "submission.submit.submissionFile" +msgstr "Arquivo do envío" + +msgid "submission.submit.prepare" +msgstr "Preparar" + +msgid "submission.submit.catalog" +msgstr "Catálogo" + +msgid "submission.submit.metadata" +msgstr "Metadatos" + +msgid "submission.submit.finishingUp" +msgstr "Rematar" + +msgid "submission.submit.confirmation" +msgstr "Confirmación" + +msgid "submission.submit.nextSteps" +msgstr "Seguintes pasos" + +msgid "submission.submit.coverNote" +msgstr "Nota para o Editor" + +msgid "submission.submit.generalInformation" +msgstr "Información xeral" + +msgid "submission.submit.whatNext.description" +msgstr "" +"A editorial recibiu unha notificación do teu envío e recibiches por correo " +"electrónico unha confirmación dos teus rexistros. Unha vez que o editor/a " +"revise o envío, porase en contacto convosco." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Lea e marque os elementos da lista de verificación do envío. Quedan " +"{$itemsRemaining} elementos sen marcar." + +msgid "submission.submit.placement" +msgstr "Colocación do envío" + +msgid "submission.submit.userGroup" +msgstr "Enviar no meu rol de..." + +msgid "submission.submit.noContext" +msgstr "Non se puido atopar a editorial deste envío." + +msgid "grid.chapters.title" +msgstr "Capítulos" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Eliminar o arquivo do corrector" + +msgid "submission.complete" +msgstr "Aprobado" + +msgid "submission.incomplete" +msgstr "Esperando aprobación" + +msgid "submission.editCatalogEntry" +msgstr "Rexistro" + +msgid "submission.catalogEntry.new" +msgstr "Nova entrada no catálogo" + +msgid "submission.catalogEntry.add" +msgstr "Engadir os seleccionados ao catálogo" + +msgid "submission.catalogEntry.select" +msgstr "Seleccione as monografías a engadir ao catálogo" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Debes seleccionar polo menos unha monografía para engadir ao catálogo." + +msgid "submission.catalogEntry.confirm" +msgstr "Engade este libro ao catálogo público" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Confirma que o envío está listo para colocarse no catálogo." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Esta monografía está lista para ser incluída no catálogo público." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Ver envío" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Datas de publicación" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Todos os capítulos utilizarán a data de publicación da monografía." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Cada capítulo pode ter a súa propia data de publicación." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografía" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Catálogo" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Formato de publicación" + +msgid "submission.event.metadataPublished" +msgstr "Os metadatos da monografía están aprobados para a súa publicación." + +msgid "submission.event.metadataUnpublished" +msgstr "Os metadatos da monografía xa non están publicados." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "O formato de publicación \"{$publicationFormatName}\" está dispoñible." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" +"O formato de publicación \"{$publicationFormatName}\" xa non está dispoñible." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"O formato de publicación \"{$publicationFormatName}\" está aprobado para a " +"súa publicación." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"O formato de publicación \"{$publicationFormatName}\" xa non está publicado." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Actualizáronse os metadatos do catálogo." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"Actualizáronse os metadatos do formato de publicación \"{$formatName}\"." + +msgid "submission.event.publicationFormatCreated" +msgstr "Creouse o formato de publicación \"{$formatName}\"." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Eliminouse o formato de publicación \"{$formatName}\"." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Enviar para revisión externa" + +msgid "workflow.review.externalReview" +msgstr "Revisión externa" + +msgid "submission.upload.fileContents" +msgstr "Compoñente do envío" + +msgid "submission.dependentFiles" +msgstr "Arquivos dependentes" + +msgid "submission.metadataDescription" +msgstr "" +"Estas especificacións están baseadas no conxunto de metadatos Dublin Core, " +"un estándar internacional usado para describir o contido editorial." + +msgid "section.any" +msgstr "Calquera serie" + +msgid "submission.list.monographs" +msgstr "Monografías" + +msgid "submission.list.countMonographs" +msgstr "{$count} monografías" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} de {$total} monografías" + +msgid "submission.list.orderFeatures" +msgstr "Ordenar elementos" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Arrastra e solta ou prema os botóns arriba e abaixo para cambiar a orde dos " +"elementoss na páxina de inicio." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Arrastra e solta ou prema os botóns arriba e abaixo para cambiar a orde dos " +"elementos no {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Gardar la orde" + +msgid "submission.list.viewEntry" +msgstr "Ver entrada" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} títulos" + +msgid "publication.catalogEntry" +msgstr "Catálogo" + +msgid "publication.catalogEntry.success" +msgstr "Actualizáronse os detalles da entrada do catálogo." + +msgid "publication.invalidSeries" +msgstr "Non se puido atopar a serie desta publicación." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Inactivo)" + +msgid "publication.required.issue" +msgstr "" +"A publicación debe asignarse a un número antes de que poida ser publicada." + +msgid "publication.publishedIn" +msgstr "Publicado en {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Cumpríronse todos os requisitos de publicación. Seguro que queres facer " +"pública esta entrada no catálogo?" + +msgid "publication.scheduledIn" +msgstr "" +"Programado para a súa publicación en {$issueName}." + +msgid "submission.publication" +msgstr "Publicación" + +msgid "publication.status.published" +msgstr "Publicado" + +msgid "submission.status.scheduled" +msgstr "Programado" + +msgid "publication.status.unscheduled" +msgstr "Desprogramado" + +msgid "submission.publications" +msgstr "Publicacións" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"O ano dos dereitos de autor establecerase automaticamente cando se publique " +"nun número." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"O ano do copyright establecerase automaticamente en función da data de " +"publicación." + +msgid "publication.datePublished" +msgstr "Data de publicación" + +msgid "publication.editDisabled" +msgstr "Esta versión publicouse e non se pode editar." + +msgid "publication.event.published" +msgstr "O envío publicouse." + +msgid "publication.event.scheduled" +msgstr "O envío programouse para a súa publicación." + +msgid "publication.event.unpublished" +msgstr "O envio retirouse da publicación." + +msgid "publication.event.versionPublished" +msgstr "Publicouse unha nova versión." + +msgid "publication.event.versionScheduled" +msgstr "Unha nova versión foi programada para a sua spublicación." + +msgid "publication.event.versionUnpublished" +msgstr "Eliminouse unha versión da publicación." + +msgid "publication.invalidSubmission" +msgstr "Non se puido atopar o envío desta publicación." + +msgid "publication.publish" +msgstr "Publicar" + +msgid "publication.publish.requirements" +msgstr "Para poder publicar isto débense cumprir os seguintes requisitos." + +msgid "publication.required.declined" +msgstr "Non se pode publicar un envío rexeitado." + +msgid "publication.required.reviewStage" +msgstr "" +"O envío debe estar nas fases de corrección ou produción antes de que poida " +"ser publicado." + +msgid "submission.license.description" +msgstr "" +"A licenza establecerase automaticamente en {$licenseName} cando se publique." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Os dereitos de autor asignaranse automaticamente a {$copyright} cando se " +"publique." + +msgid "submission.copyrightOther.description" +msgstr "Asignar dereitos de autor para os envíos publicados á seguinte parte." + +msgid "publication.unpublish" +msgstr "Retirar da publicación" + +msgid "publication.unpublish.confirm" +msgstr "Seguro/a que non queres que se publique?" + +msgid "publication.unschedule.confirm" +msgstr "Seguro/a que non queres que isto se programe para a súa publicación?" + +msgid "publication.version.details" +msgstr "Detalles da publicación da versión {$version}" + +msgid "submission.queries.production" +msgstr "Debates de producción" + +msgid "publication.chapter.landingPage" +msgstr "" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/hr/admin.po b/locale/hr/admin.po new file mode 100644 index 00000000000..58a3e379958 --- /dev/null +++ b/locale/hr/admin.po @@ -0,0 +1,192 @@ +# Boris Badurina , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-23 08:15+0000\n" +"Last-Translator: Boris Badurina \n" +"Language-Team: Croatian " +"\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Mediji" + +msgid "admin.settings.appearance.success" +msgstr "Postavke izgleda stranice uspješno su ažurirane." + +msgid "admin.settings.config.success" +msgstr "Postavke konfiguracije stranice uspješno su ažurirane." + +msgid "admin.settings.redirect" +msgstr "Preusmjeravanje na nakladnika" + +msgid "admin.siteManagement.description" +msgstr "" +"Dodajte, uredite ili uklonite medije s ove stranice i upravljajte postavkama " +"na cijeloj stranici." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Učiniti SUSHI API krajnje točke javno dostupne za sve medije na ovoj " +"stranici ili ne. Ako omogućite javni API, svaki medij može nadjačati ovu " +"postavku kako bi njegova statistika postala privatnom. Međutim, ako " +"onemogućite javni API, mediji ne mogu učiniti svoj API javnim." + +msgid "admin.settings.info.success" +msgstr "Podaci o stranici uspješno su ažurirani." + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Zahtjevi za glavnu stranicu bit će preusmjereni na ovog nakladnika. Ovo može " +"biti korisno ako web mjesto, na primjer, samo jednog nakladnika ugošćuje." + +msgid "admin.settings.noPressRedirect" +msgstr "Ne preusmjeravati" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "Ovo će biti zadani jezik za stranicu i sve ugošćene nakladnike." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Označene lokacije mogu biti nepotpune." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Odaberite sve lokalne postavke za podršku na web mjestu. Odabrane postavke " +"bit će dostupne za korištenje svim medijima koji se nalaze na stranici, a " +"također će se pojaviti u izborniku za odabir jezika koji će se pojaviti na " +"svakoj stranici web-mjesta (što se može nadjačati na stranicama specifičnim " +"za medije). Ako nije odabrano više jezika, izbornik za prebacivanje jezika " +"neće se pojaviti, a proširene jezične postavke neće biti dostupne medijima." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Jeste li sigurni da želite deinstalirati ove lokalne postavke? To može " +"utjecati na bilo koji medij koji trenutno koristi ove postavke." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Odaberite sve dodatne lokalne postavke za instaliranje podrške u ovom " +"sustavu. Lokacije moraju biti instalirane prije nego što ih mogu koristiti " +"mediji. Pogledajte OMP dokumentaciju za informacije o dodavanju podrške za " +"nove jezike." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Jeste li sigurni da želite onemogućiti ove lokalne postavke? To može " +"utjecati na bilo koji medij koji trenutno koristi lokalne postavke." + +msgid "admin.systemVersion" +msgstr "OMP verzija" + +msgid "admin.systemConfiguration" +msgstr "OMP konfiguracija" + +msgid "admin.presses.pressSettings" +msgstr "Postavke za medije" + +msgid "admin.presses.noneCreated" +msgstr "Nisu još stvoreni mediji." + +msgid "admin.contexts.create" +msgstr "Stvori medij" + +msgid "admin.contexts.form.titleRequired" +msgstr "Potreban je naslov." + +msgid "admin.contexts.form.pathRequired" +msgstr "Potrebna je putanja." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Putanja može sadržavati samo slova, brojeve i znakove _ i -. Mora započeti i " +"završiti slovom ili brojem." + +msgid "admin.contexts.form.pathExists" +msgstr "Odabranu putanju već koristi drugi medij." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Primarne lokalne postavke moraju biti jedne od podržanih lokalnih postavki." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} uspješno je kreiran." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} uspješno je uređen." + +msgid "admin.contexts.contextDescription" +msgstr "Opis medija" + +msgid "admin.presses.addPress" +msgstr "Dodaj medij" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

      NAPOMENA!\n" +"

      Sustav nije mogao automatski prebrisati konfiguracijsku datoteku. Da " +"biste primijenili svoje konfiguracijske promjene, morate otvoriti config." +"inc.php u odgovarajućem uređivaču teksta i zamijeniti njegov sadržaj " +"sadržajem tekstualnog polja ispod.

      " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Odaberite medije kojima bi se trebalo dopustiti skupno slanje e-pošte. Kada " +"je ova značajka omogućena, upravitelj medija moći će poslati e-poštu svim " +"korisnicima koji su registrirani u njihovom mediju.

      Zlouporaba ove " +"značajke za slanje neželjene e-pošte može kršiti zakone protiv neželjene " +"pošte u nekim jurisdikcijama i može rezultirati da je e-pošta vašeg " +"poslužitelja blokirana kao neželjena pošta. Zatražite tehnički savjet prije " +"nego što omogućite ovu značajku i razmislite o savjetovanju s voditeljima " +"medija kako biste osigurali da se koristi na odgovarajući " +"način.

      Daljnja ograničenja ove značajke mogu se omogućiti za svaki " +"medij posjetom čarobnjaka za postavke na popisu Mediji." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Voditelj medija neće moći slati skupne poruke e-pošte nijednoj od dolje " +"odabranih uloga. Koristite ovu postavku za ograničavanje zlouporabe značajke " +"obavijesti e-poštom. Na primjer, možda bi bilo sigurnije onemogućiti skupnu " +"e-poštu čitateljima, autorima ili drugim velikim grupama korisnika koji nisu " +"pristali primati takve e-poruke.

      Značajka skupne e-pošte može se " +"potpuno onemogućiti za ovaj medij u Administrator > Postavke web-mjesta." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Značajka skupne e-pošte onemogućena je za ovaj medij. Omogućite ovu značajku " +"u Administrator > Postavke web-mjesta." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "Poglavlje ID nije cijeli broj" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "Serija ID nije cijeli broj" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Odaberite vrstu zemljopisne statistike korištenja koju mogu prikupiti mediji " +"na ovoj stranici. Detaljnija geografska statistika može značajno povećati " +"veličinu vaše baze podataka i u nekim rijetkim slučajevima može potkopati " +"anonimnost vaših posjetitelja. Svaki medij može drugačije konfigurirati ovu " +"postavku, ali medij nikada ne može prikupiti detaljnije zapise od onih koji " +"su ovdje konfigurirani. Na primjer, ako stranica podržava samo zemlju i " +"regiju, medij može odabrati zemlju i regiju ili samo zemlju. Medij neće moći " +"pratiti državu, regiju i grad." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Omogućite institucionalnu statistiku ako želite da mediji na ovoj stranici " +"mogu prikupljati statistiku korištenja po instituciji. Mediji će morati " +"dodati ustanovu i njezine IP raspone kako bi koristili ovu značajku. " +"Omogućavanje institucionalne statistike može značajno povećati veličinu vaše " +"baze podataka." + +#, fuzzy +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Koristite stranicu kao platformu za sve časopise." diff --git a/locale/hr/api.po b/locale/hr/api.po new file mode 100644 index 00000000000..6c8653333f6 --- /dev/null +++ b/locale/hr/api.po @@ -0,0 +1,40 @@ +# Boris Badurina , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-23 07:58+0000\n" +"Last-Translator: Boris Badurina \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "api.emails.403.disabled" +msgstr "Notifikacija e-poštom nije umogućena za ovu nakladu." + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "Treba osigurati barem jednu prijavu za unos u katalog." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "Jedna ili više odabranih prijava koje ne mogu biti pronađene." + +msgid "api.submissions.400.wrongContext" +msgstr "Prijava koju ste zatražili nije ovdje." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "Nemate dozvolu prebacivanja obrasca e-pošte u druge naklade." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "Publikacija koju ste zatražili nije dio ove naklade." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "Publikacija koju ste zatražili nije dio ove prijave." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Ne možete promijeniti nakladu prijave." + +msgid "api.submission.400.inactiveSection" +msgstr "Ova sekcija više ne prima prijave." diff --git a/locale/hr/author.po b/locale/hr/author.po new file mode 100644 index 00000000000..7c7da855d07 --- /dev/null +++ b/locale/hr/author.po @@ -0,0 +1,21 @@ +# Melita Aleksa Varga , 2023. +# Sara Rapp , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-01-14 11:02+0000\n" +"Last-Translator: Sara Rapp \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "author.submit.notAccepting" +msgstr "Ovaj tisak trenutno ne prihvaća prijave." + +msgid "author.submit" +msgstr "Novi rukopis" diff --git a/locale/hr/default.po b/locale/hr/default.po new file mode 100644 index 00000000000..d5fd12ab03c --- /dev/null +++ b/locale/hr/default.po @@ -0,0 +1,187 @@ +# Karla Zapalac , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-01-28 18:48+0000\n" +"Last-Translator: Karla Zapalac \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "default.genres.appendix" +msgstr "Prilog" + +msgid "default.genres.bibliography" +msgstr "Literatura" + +msgid "default.genres.manuscript" +msgstr "Rukopis knjige" + +msgid "default.genres.chapter" +msgstr "Rukopis poglavlja" + +msgid "default.genres.glossary" +msgstr "Glosar" + +msgid "default.genres.index" +msgstr "Registar" + +msgid "default.genres.preface" +msgstr "Predgovor" + +msgid "default.genres.prospectus" +msgstr "Skica" + +msgid "default.genres.table" +msgstr "Tablica" + +msgid "default.genres.figure" +msgstr "Grafička ilustracija" + +msgid "default.genres.photo" +msgstr "Slika" + +msgid "default.genres.illustration" +msgstr "Ilustracija" + +msgid "default.genres.other" +msgstr "Drugo" + +msgid "default.groups.name.manager" +msgstr "Voditelj/ica izdavaštva" + +msgid "default.groups.plural.manager" +msgstr "Voditelji/ce izdavaštva" + +msgid "default.groups.abbrev.manager" +msgstr "VI" + +msgid "default.groups.name.editor" +msgstr "Urednik/ca" + +msgid "default.groups.plural.editor" +msgstr "Urednici/e" + +msgid "default.groups.abbrev.editor" +msgstr "Ur." + +msgid "default.groups.name.sectionEditor" +msgstr "Urednik/ca serije" + +msgid "default.groups.plural.sectionEditor" +msgstr "Urednici/e serije" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "US" + +msgid "default.groups.name.subscriptionManager" +msgstr "Upravitelj/ica pretplata" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Upravitelji/ce pretplata" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "UprPret" + +msgid "default.groups.name.chapterAuthor" +msgstr "Autor/ica poglavlja" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Autori/ce poglavlja" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "AP" + +msgid "default.groups.name.volumeEditor" +msgstr "Urednik/ca zbornika" + +msgid "default.groups.plural.volumeEditor" +msgstr "Urednici/e zbornika" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "UZ" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

      Autori su pozvani napraviti podnesak svojih radova za ovaj tisak. Oni " +"podnesci za koje se smatra da su prikladni bit će poslani na recenziju kod " +"kolega prije nego što se utvrdi hoće li biti prihvaćeni ili odbijeni.

      Prije podnošenja podneska, autori su odgovorni za dobivanje dopuštenja " +"za objavljivanje bilo kojeg materijala uključenog u podnesak, npr. kao što " +"su fotografije, dokumenti i skupovi podataka. Svi autori navedeni u podnesku " +"moraju pristati biti identificirani kao autori. Gdje je prikladno, " +"istraživanje bi trebalo odobriti odgovarajuće etičko povjerenstvo u skladu " +"sa pravnim zahtjevima zemlje u kojoj se studija provodi.

      Urednik može " +"odbiti podnesak ako ne zadovoljava minimalne standarde kvalitete. Prije " +"podnošenja, molimo provjerite jesu li opseg i nacrt knjige pravilno " +"strukturirani i artikulirani. Naslov bi trebao biti sažet, a sažetak bi " +"trebao biti samostalan. To će povećati vjerojatnost da recenzenti pristanu " +"recenzirati knjigu. Kada budete mislili da vaš podnesak zadovoljava ovaj " +"standard, molimo slijedite kontrolni popis u nastavku da biste pripremili " +"svoj podnesak.

      " + +msgid "default.contextSettings.checklist" +msgstr "" +"

      Svi podnesci moraju ispunjavati sljedeće zahtjeve.

      • Ovaj " +"podnesak ispunjava zahtjeve navedene u Smjernicama za autore.
      • Ovaj " +"podnesak nije prethodno objavljen, niti je pred drugim tiskom na razmatranju." +"
      • Sve reference su provjerene radi točnosti i potpunosti.
      • Sve " +"tablice i brojevi su numerirani i označeni.
      • Dobijeno je dopuštenje " +"za objavljivanje svih fotografija, skupova podataka i drugih materijala koji " +"su priloženi u ovom podnesku.
      " + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

      Imena i adrese e-pošte unesene na ovoj web-stranici koristit će se samo u " +"navedene svrhe i neće se prosljeđivati trećim stranama.

      " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Ovaj izdavač nudi besplatan pristup (Open Access) svom sadržaju, u skladu s " +"osnovnom pretpostavkom da besplatna javna dostupnost istraživanja koristi " +"svjetskoj razmjeni znanja." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Želite li biti u tijeku s novostima naše izdavačke kuće? Kao registrirani/a " +"čitatelj/ica sadržaj svake novoobjavljene monografije dobit ćete na e-poštu. " +"Da biste se prijavili za ovu uslugu, slijedite vezu Registracija u gornjem desnom kutu " +"početne stranice. Naravno, uvjeravamo vas da se vaše ime i adresa e-pošte " +"neće koristiti u druge svrhe (pogledajte Pravila o privatnosti." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Zainnteresirani ste uručiti nam rukopis? Onda bismo Vas htjeli uputiti na " +"stranicu O nama. Ondje ćete " +"pronaći smjernice izdavača. Također pogledajte Smjernice za autore/ice. Autori/ce se moraju registrirati prije slanja knjige ili antologijskog priloga. Ako ste " +"već registrirani, možete se prijaviti i slijediti pet \"koraka za uručivanje\"." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Potičemo akademske knjižničare/ke da ovog izdavača uključe u digitalni " +"inventar svoje knjižnice. Knjižnice također mogu koristiti ovaj otvoreni " +"publikacijski sustav izdavanja za ugošćavanje izdavača u čiji su rad " +"uključeni njihovi istraživači/ce (pogledajte Open Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Vanjski/a recenzent/ica" + +msgid "default.groups.plural.externalReviewer" +msgstr "Vanjski/e recenzenti/ce" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "VR" diff --git a/locale/hr/editor.po b/locale/hr/editor.po new file mode 100644 index 00000000000..7cca5cde7be --- /dev/null +++ b/locale/hr/editor.po @@ -0,0 +1,213 @@ +# paola , 2022. +# Melita Aleksa Varga , 2023. +# Maja Jurić , 2023. +# Karla Zapalac , 2023. +# Boris Badurina , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-23 08:15+0000\n" +"Last-Translator: Boris Badurina \n" +"Language-Team: Croatian " +"\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "editor.submissionArchive" +msgstr "Arhiva rukopisa" + +msgid "editor.monograph.cancelReview" +msgstr "Odbaci upit" + +msgid "editor.monograph.clearReview" +msgstr "Obriši recenzenta/icu" + +msgid "editor.monograph.enterRecommendation" +msgstr "Unesi prijedlog" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Unesi prijedlog recenzenta/ice" + +msgid "editor.monograph.recommendation" +msgstr "Prijedlog" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Odaberi recenzenta/icu iznad i pritisni gumb 'Odaberi recenzenta/icu' za " +"nastavak." + +msgid "editor.monograph.replaceReviewer" +msgstr "Zamijeni recenzenta/icu" + +msgid "editor.monograph.editorToEnter" +msgstr "Urednici/e unosi/e prijedloge/komentare za recenzenta/icu" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Učitaj recenziju" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Opcije stručnog mišljenja" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Datoteke za lekturu" + +msgid "editor.monograph.internalReview" +msgstr "Pokreni interni pregled" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Započinjete postupak internog pregleda. Odaberi datoteke, koje su dio " +"predanog rukopisa, u nastavku da biste ih poslali u fazu pregleda." + +msgid "editor.monograph.externalReview" +msgstr "Započni vanjski pregled" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Odaberi konačne verzije" + +msgid "editor.monograph.final.currentFiles" +msgstr "Trenutne konačne verzije" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Trenutne datoteke" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Poruka korisniku/ci" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Radnje za podnošenje" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Za vrijeme podnošenja moguće radnje i opcije." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Radnje odlomka" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Za specifične opcije određenog odjeljka , npr. učitavanje datoteka ili " +"dodavanje korisnika/ca." + +msgid "editor.monograph.legend.itemActions" +msgstr "Radnje vezane uz naziv" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Specifične radnje i opcije za individualnu datoteku." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Pogledaj i upravljaj kataloškim unosom (uključujući metapodatke i formate)" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Pogledaj i upravljaj metapodacima, bilješkama, obavijestima i povijesti za " +"unos" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Pogledaj i upravljaj onima koji su uključeni u uređivanje rukopisa, kao npr. " +"autori/ce, urednici/e, dizajneri/ce" + +msgid "editor.monograph.legend.add" +msgstr "Učitaj datoteku u ovom odjeljku" + +msgid "editor.monograph.legend.add_user" +msgstr "Dodaj korisnika ovom odjeljku" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Pogledaj i pristupi postavkama kao što su postavke informacije i brisanja" + +msgid "editor.monograph.legend.more_info" +msgstr "Više informacija: bilješke o datotekama, opcije obavijesti i povijest" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Podaci o datoteci: bilješke, opcije obavijesti i povijest (još nisu dodane " +"nikakve bilješke)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Informacije o datoteci: bilješke, opcije obavijesti i povijest (bilješke " +"postoje)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Podaci o datoteci: bilješke, opcije obavijesti i povijest (komentari su " +"dodani od posljednjeg posjeta)" + +msgid "editor.monograph.legend.edit" +msgstr "Uredi stavku" + +msgid "editor.monograph.legend.delete" +msgstr "Izbriši stavku" + +msgid "editor.monograph.legend.in_progress" +msgstr "Radnja se još provodi ili još nije dovršena" + +msgid "editor.monograph.legend.complete" +msgstr "Radnja je izvršena" + +msgid "editor.monograph.legend.uploaded" +msgstr "Datoteku je učitala funkcija navedena u naslovu stupca" + +msgid "editor.submission.introduction" +msgstr "" +"U fazi predaje, odgovorni/a izdavač/ica nakon pregleda predanih rukopisa (o " +"čemu je autor/ica uvijek obaviješten/a) određuje odgovarajuću radnju: " +"poslati na interni pregled (tada je potrebno odabrati datoteke namijenjene " +"internom pregledu); poslati na vanjski pregled (tada je potrebno odabrati " +"datoteke namijenjene vanjskom pregledu); prihvatiti unos (tada je potrebno " +"odabrati datoteke za uređivanje) ili odbiti unos (bit će arhiviran)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Odobrena je verzija rukopisa spremna" + +msgid "editor.monograph.proofs" +msgstr "Ispis namjenjen lekturi" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Odobrenje i publikacija" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Različiti formati kao što su tvrdi uvez, meki uvez i digitalni formati mogu " +"se učitati pod 'Formati' u nastavku. Tablicu formata možete koristiti kao " +"popis za provjeru što još treba učiniti za objavljivanje u odabranom formatu." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Dodajte formate (npr. digitalni, meki uvez) za koje urednik treba napraviti " +"ispis za lekturu. Datoteke za provjeru moraju biti označene kao " +"\"prihvaćene\", a metapodaci uključeni u katalog i odobreni za " +"objavljivanje kako bi se knjiga prikazala kao dostupna (to znači " +"'objavljeno')." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Uvjeti preuzimanja" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Postavi uvjete" + +msgid "editor.monograph.proof.addNote" +msgstr "Dodaj odgovor" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Sve datoteke koje su već učitane u bilo kojoj fazi podnošenja mogu se dodati " +"na popis za ispis u svrhu lekture označavanjem potvrdnog kvadratića za " +"uključivanje u nastavku, a zatim klikom na pretraživanje: prikazat će se sve " +"dostupne datoteke i moći će se odabrati da ih se uključi u popis." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Public identifier '{$publicIdentifier}' već postoji za drugi objekt iste " +"vrste. Odaberite jedinstvene identifikatore za objekte iste vrste unutar " +"svoje izdavačke kuće." + +msgid "editor.submissions.assignedTo" +msgstr "Dodijeljeno uredniku/ci" diff --git a/locale/hr/emails.po b/locale/hr/emails.po new file mode 100644 index 00000000000..e05124370fa --- /dev/null +++ b/locale/hr/emails.po @@ -0,0 +1,525 @@ +# Melita Aleksa Varga , 2023. +# Sara Rapp , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-01-27 17:48+0000\n" +"Last-Translator: Sara Rapp \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Potvrda ponovnog postavljanja lozinke" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Primili smo zahtjev za ponovno postavljanje Vaše lozinke za web mjesto " +"{$siteTitle}.
      \n" +"
      \n" +"Ako niste podnijeli ovaj zahtjev, zanemarite ovu e-poštu i vaša lozinka neće " +"biti promijenjena. Ako želite poništiti lozinku, kliknite na donji URL.
      \n" +"
      \n" +"Poništi moju lozinku: {$passwordResetUrl}
      \n" +"
      \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Registracija" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Sada ste registrirani kao korisnik s {$contextName}. U ovu e-poruku " +"uključili smo Vaše korisničko ime i lozinku, koji su potrebni za sav rad s " +"ovim medijem putem njegove web stranice. U svakom trenutku možete zatražiti " +"brisanje s popisa korisnika tako da me kontaktirate.
      \n" +"
      \n" +"Korisničko ime: {$recipientUsername}
      \n" +"Lozinka: {$password}
      \n" +"
      \n" +"Hvala,
      \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Potvrdite svoj račun" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Napravili ste račun s {$contextName}, ali prije nego što ga počnete " +"koristiti, morate potvrditi svoj račun e-pošte. Da biste to učinili, " +"jednostavno slijedite poveznicu u nastavku:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Hvala,
      \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Potvrdite svoj račun" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Napravili ste račun na {$siteTitle}, ali prije nego što ga počnete " +"koristiti, morate potvrditi svoj račun e-pošte. Da biste to učinili, " +"jednostavno slijedite poveznicu u nastavku:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Hvala,
      \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Registriranje kao ocjenjivač s {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"U svjetlu vaše stručnosti, uzeli smo si tu slobodu registrirati Vaše ime u " +"bazi podataka ocjenjivača za {$contextName}. To ne podrazumijeva bilo kakav " +"oblik obveze s Vaše strane, već nam jednostavno omogućuje da Vam pristupimo " +"s podneskom na mogući pregled. Kada budete pozvani na recenziju, imat ćete " +"priliku vidjeti naslov i sažetak dotičnog rada i uvijek ćete biti u poziciji " +"prihvatiti ili odbiti poziv. Također možete zatražiti u bilo kojem trenutku " +"da se Vaše ime ukloni s ovog popisa ocjenjivača.
      \n" +"
      \n" +"Dajemo Vam korisničko ime i lozinku, koji se koriste u svim interakcijama s " +"medijima putem web stranice. Možda biste željeli, na primjer, ažurirati svoj " +"profil, uključujući svoje interese za pregled.
      \n" +"
      \n" +"Korisničko ime: {$recipientUsername}
      \n" +"Lozinka: {$password}
      \n" +"
      \n" +"Hvala,
      \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Dodijeljeni ste kao urednik na podnesku za {$contextName}" + +msgid "emails.editorAssign.body" +msgstr "" +"

      Poštovani {$recipientName},

      Sljedeći podnesak dodijeljen Vam je da " +"ga pregledate kroz urednički postupak.

      { $submissionTitle}
      {$authors}

      Sažetak

      {$submissionAbstract}

      Ako smatrate da je podnesak " +"relevantan za {$contextName}, proslijedite podnesak u fazu pregleda odabirom " +"\"Pošalji na interni pregled\", a zatim dodijelite ocjenjivače klikom na " +"\"Dodaj ocjenjivača\".

      Ako podnesak nije prikladan za ovaj medij, " +"odbijte predaju.

      Unaprijed hvala.

      Lijep pozdrav,{$contextSignature}" + +msgid "emails.reviewRequest.subject" +msgstr "Zahtjev za recenziju rukopisa" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Poštovani {$recipientName},
      \n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"Prijavite se na web stranicu za medij do {$responseDueDate} kako biste " +"naznačili hoćete li pristupiti recenziji ili ne, kao i kako biste pristupili " +"podnesku i zabilježili svoju recenziju i preporuku.
      \n" +"
      \n" +"Rok za sam pregled je {$reviewDueDate}.
      \n" +"
      \n" +"URL prijave: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Korisničko ime: {$recipientUsername}
      \n" +"
      \n" +"Hvala što ste razmotrili ovaj zahtjev.
      \n" +"
      \n" +"
      \n" +"S poštovanjem,
      \n" +"{$signature}
      \n" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Zahtjev za pregled revidiranog podneska" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

      Dragi {$recipientName},

      Hvala Vam na recenziji {$submissionTitle}. Autori su razmotrili " +"povratne informacije ocjenjivača i sada su poslali revidiranu verziju svog " +"rada. Pišem kako bih Vas pitao biste li proveli drugi krug recenzije za ovaj " +"podnesak. {$contextName}.

      Ako ste u mogućnosti pregledati ovaj " +"podnesak, rok za pregled je {$reviewDueDate}. Možete slijediti korake pregleda da biste pregledali " +"podnesak, prenijeli datoteke pregleda i poslali svoje komentare na pregled." +"

      {$submissionTitle}

      Sažetak

      {$submissionAbstract}

      Prihvatite ili odbijte recenziju do " +"{$responseDueDate}.

      Molim slobodno me kontaktirajte sa svim pitanjima " +"o podnošenju ili postupku pregleda.

      Hvala Vam što ćete razmotriti ovaj " +"zahtjev. Cijeni se Vaša pomoć.

      Lijep pozdrav,

      {$signature}" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Zahtjev za recenziju rukopisa" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Poštovani {$recipientName},
      \n" +"Samo blagi podsjetnik na naš zahtjev za Vaš pregled podneska, "" +"{$submissionTitle}," za {$contextName}. Nadali smo se da ćemo dobiti " +"Vaš odgovor do {$responseDueDate}, a ova poruka e-pošte automatski je " +"generirana i poslana nakon što je datum prošao.\n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"Prijavite se na web stranicu kako biste naznačili hoćete li pristupiti " +"recenziji ili ne, kao i kako biste pristupili podnesku i zabilježili svoju " +"recenziju i preporuku.
      \n" +"
      \n" +"Rok za sam pregled je {$reviewDueDate}.
      \n" +"
      \n" +"URL prijave: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Korisničko ime: {$recipientUsername}
      \n" +"
      \n" +"Hvala što ćete razmotriti ovaj zahtjev.
      \n" +"
      \n" +"
      \n" +"S poštovanjem,
      \n" +"{$contextSignature}
      \n" + +msgid "emails.reviewCancel.subject" +msgstr "Zahtjev za pregled je otkazan" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Odlučili smo u ovom trenutku poništiti naš zahtjev da pregledate podnesak, " +""{$submissionTitle}," za {$contextName}. Ispričavamo se zbog " +"neugodnosti koje bi Vam ovo moglo prouzročiti i nadamo se da ćemo Vas u " +"budućnosti moći pozvati da nam pomognete u ovom postupku pregleda.
      \n" +"
      \n" +"Ako imate pitanja, slobodno me kontaktirajte." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Zahtjev za pregled ponovno postavljen" + +msgid "emails.reviewReinstate.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Željeli bismo ponovno postaviti naš zahtjev da pregledate podnesak, "" +"{$submissionTitle}," za {$contextName}. Nadamo se da ćete moći pomoći u " +"procesu pregleda medija.
      \n" +"
      \n" +"Ako imate pitanja, slobodno me kontaktirajte." + +msgid "emails.reviewDecline.subject" +msgstr "Nemogućnost pregleda" + +msgid "emails.reviewDecline.body" +msgstr "" +"Urednik(i):
      \n" +"
      \n" +"Bojim se da u ovom trenutku ne mogu pregledati podnesak, "" +"{$submissionTitle}," za {$contextName}. Hvala vam što mislite na mene, " +"a neki drugi put slobodno me nazovite.
      \n" +"
      \n" +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Podsjetnik za pregled podneska" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Samo blagi podsjetnik na naš zahtjev za Vaš pregled podneska, "" +"{$submissionTitle}," za {$contextName}. Nadali smo se da ćemo ovu " +"recenziju dobiti do {$reviewDueDate} i bilo bi nam drago primiti je čim je " +"budete mogli pripremiti.
      \n" +"
      \n" +"Ako nemate svoje korisničko ime i zaporku za web stranicu, možete koristiti " +"ovu poveznicu za ponovno postavljanje zaporke (koja će Vam biti poslana e-" +"poštom zajedno s vašim korisničkim imenom). {$passwordLostUrl}
      \n" +"
      \n" +"URL prijave: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Korisničko ime: {$recipientUsername}
      \n" +"
      \n" +"Molimo potvrdite svoju mogućnost dovršavanja ovog vitalnog doprinosa radu " +"medija. Veselim se Vašem odgovoru.
      \n" +"
      \n" +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Samo blagi podsjetnik na naš zahtjev za Vaš pregled podneska, "" +"{$submissionTitle}," za {$contextName}. Nadali smo se da ćemo ovu " +"recenziju imati do {$reviewDueDate}, a ova e-poruka automatski je generirana " +"i poslana nakon što je taj datum prošao. Bilo bi nam drago primiti ga čim ga " +"budete mogli pripremiti.
      \n" +"
      \n" +"Ako nemate svoje korisničko ime i zaporku za web stranicu, možete koristiti " +"ovu poveznicu za ponovno postavljanje zaporke (koja će Vam biti poslana e-" +"poštom zajedno s Vašim korisničkim imenom). {$passwordLostUrl}
      \n" +"
      \n" +"URL prijave: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Korisničko ime: {$recipientUsername}
      \n" +"
      \n" +"Molimo potvrdite svoju mogućnost dovršavanja ovog vitalnog doprinosa radu " +"medija. Veselim se Vašem odgovoru.
      \n" +"
      \n" +"{$contextSignature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "Vaš podnesak prihvaćen je za {$contextName}" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

      Poštovani {$recipientName},

      Zadovoljstvo mi je obavijestiti Vas da " +"smo odlučili prihvatiti Vaš podnesak bez daljnjih izmjena. Nakon pažljivog " +"pregleda, utvrdili smo da Vaš podnesak, {$submissionTitle}, ispunjava ili " +"premašuje naša očekivanja. Uzbuđeni smo što možemo objaviti Vaš članak u " +"{$contextName} i zahvaljujemo Vam što ste odabrali naš medij kao mjesto za " +"svoj rad.

      Vaš će podnesak uskoro biti objavljen na web mjestu za medij " +"za {$contextName} i slobodno ga uključite u svoj popis publikacija. " +"Prepoznajemo naporan rad koji je uložen u svaki uspješni podnesak i želimo " +"Vam čestitati na dostizanju ove faze.

      Vaš će podnesak sada biti " +"podvrgnut uređivanju kopije i oblikovanju kako bi se pripremio za " +"objavljivanje.

      Uskoro ćete dobiti daljnje upute.

      Ako imate " +"pitanja, kontaktirajte me sa svoje nadzorne ploče za slanje.

      Lijep " +"pozdrav,

      {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Vaš je podnesak poslan na interni pregled" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

      Poštovani {$recipientName},

      sa zadovoljstvom Vas mogu obavijestiti " +"da je urednik pregledao Vaš podnesak, {$submissionTitle}, i odlučio ga " +"poslati na interni pregled. Javit ćemo Vam se s povratnim informacijama " +"ocjenjivača i informacijama o sljedećim koracima.

      Imajte na umu da " +"slanje podneska na interni pregled ne jamči da će biti objavljen. Razmotrit " +"ćemo preporuke ocjenjivača prije nego što odlučimo prihvatiti podnesak za " +"objavljivanje. Od Vas se može tražiti da izvršite izmjene i odgovorite na " +"komentare ocjenjivača prije donošenja konačne odluke.

      Ako imate bilo " +"kakvih pitanja, kontaktirajte me s nadzorne ploče za slanje.

      { $potpis}" +"

      " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Vaš je podnesak poslan na uređivanje" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

      Poštovani {$recipientName},

      \n" +"

      zadovoljstvo mi je obavijestiti Vas da smo odlučili prihvatiti Vaš " +"podnesak bez pregleda. Utvrdili smo da Vaš podnesak, {$submissionTitle}, " +"ispunjava naša očekivanja i ne zahtijevamo da se rad ove vrste podvrgne " +"stručnoj recenziji. Uzbuđeni smo što možemo objaviti Vaš članak u " +"{$contextName} i zahvaljujemo Vam što ste odabrali naš medij kao mjesto za " +"svoj rad.

      \n" +"

      Vaš će podnesak uskoro biti objavljen na stranici za {$contextName} pa ga " +"slobodno uključite u svoj popis publikacija. Prepoznajemo naporan rad koji " +"je uložen u svaki uspješan podnesak i želimo Vam čestitati na vašem trudu.\n" +"

      Vaš će podnesak sada biti podvrgnut uređivanju kopije i oblikovanju kako " +"bi se pripremio za objavljivanje.

      \n" +"

      Uskoro ćete dobiti daljnje upute.

      \n" +"

      Ako imate pitanja, kontaktirajte me sa svoje nadzorne ploče za slanje.

      \n" +"

      Lijep pozdrav,

      \n" +"

      {$signature}

      \n" + +msgid "emails.layoutRequest.subject" +msgstr "" +"Podnesak {$submissionId} spreman je za proizvodnju na {$contextAcronym}" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" +"

      Poštovani {$recipientName},

      novi podnesak spreman je za uređivanje " +"izgleda:

      {$submissionId} " +"{$submissionTitle }
      {$contextName}

      1. 1. Kliknite gornji " +"URL za slanje.
      2. 2. Preuzmite datoteke spremne za proizvodnju i " +"upotrijebite ih za izradu galija u skladu sa standardima medija.
      3. 3. " +"Učitajte galije u odjeljak Formati publikacije podneska.
      4. 4. " +"Upotrijebite Rasprave o proizvodnji da biste obavijestili urednika da su " +"kuhinje spremne.

      Ako trenutno niste u mogućnosti obaviti ovaj " +"posao ili imate bilo kakvih pitanja, kontaktirajte me. Hvala Vam na " +"doprinosu ovom mediju.

      Lijep pozdrav,

      {$signature}" + +msgid "emails.layoutComplete.subject" +msgstr "Galije dovršene" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" +"

      Poštovani {$recipientName},

      Galije su sada pripremljene za sljedeću " +"predaju i spremne su za konačni pregled.

      { $submissionTitle}
      {$contextName}

      Ako " +"imate pitanja, kontaktirajte me.

      Lijep pozdrav,

      { $senderName}" + +msgid "emails.indexRequest.subject" +msgstr "Zahtijevanje indeksa" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Podnesak "{$submissionTitle}" za {$contextName} sada treba indekse " +"kreirane slijedeći ove korake.
      \n" +"1. Kliknite donji URL za podnošenje.
      \n" +"2. Prijavite se u medij i upotrijebite datoteku s probnim stranicama za " +"izradu galija u skladu s medijskim standardima.
      \n" +"3. Pošaljite POTPUNI e-mail uredniku.
      \n" +"
      \n" +"{$contextName} URL: {$contextUrl}
      \n" +"URL prijave: {$submissionUrl}
      \n" +"Korisničko ime: {$recipientUsername}
      \n" +"
      \n" +"Ako trenutno niste u mogućnosti obaviti ovaj posao ili imate bilo kakvih " +"pitanja, kontaktirajte me. Hvala Vam na doprinosu ovom mediju.
      \n" +"
      \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Indeks dovršen" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Sada su pripremljeni indeksi za rukopis, "{$submissionTitle}," za " +"{$contextName} i spremni su za lekturu.
      \n" +"
      \n" +"Ako imate pitanja, slobodno me kontaktirajte.
      \n" +"
      \n" +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "Rukopis od mogućeg interesa" + +msgid "emails.emailLink.body" +msgstr "" +"Mislio sam da bi Vas moglo zanimati "{$submissionTitle}" autora " +"{$authors} objavljeno u svesku {$volume}, br. {$number} ({$year}) od " +"{$contextName} na "{$submissionUrl}"." + +msgid "emails.emailLink.description" +msgstr "" +"Ovaj predložak e-pošte daje registriranom čitatelju mogućnost slanja " +"informacija o monografiji nekome tko bi mogao biti zainteresiran. Dostupan " +"je putem alata za čitanje i mora ga omogućiti urednik medija na stranici za " +"administraciju alata za čitanje." + +msgid "emails.notifySubmission.subject" +msgstr "Obavijest o podnesku" + +msgid "emails.notifySubmission.body" +msgstr "" +"Imate poruku od {$sender} u svezi s "{$submissionTitle}" " +"({$monographDetailsUrl}):
      \n" +"
      \n" +"{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Obavijest od korisnika poslana iz modalnog informacijskog centra za podneske." + +msgid "emails.notifyFile.subject" +msgstr "Obavijest o podnešenoj datoteci" + +msgid "emails.notifyFile.body" +msgstr "" +"Imate poruku od {$sender} u svezi s datotekom "{$fileName}" u " +""{$submissionTitle}" ({$monographDetailsUrl}):
      \n" +"
      \n" +"{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"Obavijest od korisnika poslana iz modalnog centra za informacije o datotekama" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Urednička aktivnost za {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
      \n" +"
      \n" +"Vaše izvješće o stanju medija za {$month}, {$year} sada je dostupno. Vaša " +"ključna statistika za ovaj mjesec je ispod.
      \n" +"

        \n" +"
      • Novi podnesci ovog mjeseca: {$newSubmissions}
      • \n" +"
      • Odbijeni podnesci ovog mjeseca: {$declinedSubmissions}
      • \n" +"
      • Prihvaćeni podnesci ovog mjeseca: {$acceptedSubmissions}
      • \n" +"
      • Ukupan broj podnesaka u sustavu: {$totalSubmissions}
      • \n" +"
      \n" +"Prijavite se u medij kako biste vidjeli detaljnije uredničke trendove i statistiku objavljenih knjiga. Potpuni " +"primjerak ovomjesečnih uređivačkih trendova nalazi se u prilogu.
      \n" +"
      \n" +"S poštovanjem,
      \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
      \n" +"
      \n" +"{$announcementSummary}
      \n" +"
      \n" +"Posjetite našu web stranicu kako biste pročitali cjelovitu najavu." + +msgid "emails.editorAssignReview.body" +msgstr "" +"

      Dragi {$recipientName},

      Sljedeći podnesak dodijeljen Vam je kako " +"bi prošao kroz fazu pregleda.

      { $submissionTitle}
      {$authors}

      Sažetak

      {$submissionAbstract}

      Molimo prijavite se na pogledajte podnesak i dodijelite " +"kvalificirane ocjenjivače. Možete dodijeliti ocjenjivača klikom na " +"\"Dodaj ocjenjivača\".

      Unaprijed zahvaljujemo.

      Lijep pozdrav," +"

      {$signature}" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

      Dragi {$recipientName},

      Sljedeći podnesak dodijeljen Vam je da " +"ga pregledate kroz fazu proizvodnje.

      { $submissionTitle}
      {$authors}

      Sažetak

      {$submissionAbstract}

      Molimo prijavite se na pogledajte podnesak. Kada datoteke spremne " +"za proizvodnju budu dostupne, prenesite ih u odjeljku Publikacije " +"> Formati publikacija.

      Unaprijed zahvaljujemo.

      Lijep " +"pozdrav,

      {$signature}" diff --git a/locale/hr/locale.po b/locale/hr/locale.po new file mode 100644 index 00000000000..2a489ebce14 --- /dev/null +++ b/locale/hr/locale.po @@ -0,0 +1,1627 @@ +# Boris Badurina , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-23 08:15+0000\n" +"Last-Translator: Boris Badurina \n" +"Language-Team: Croatian " +"\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Naslovna stranica" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Odjavnica" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Sastav proizvoda" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Podaci o proizvodu (nije potrebno)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Šifra proizvoda" + +msgid "monograph.publicationFormat.price" +msgstr "Cijena" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Cijena je obavezna." + +msgid "monograph.publicationFormat.priceType" +msgstr "Tip cijene" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Posto popusta, ako ga ima" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Dostupnost" + +msgid "grid.catalogEntry.availability" +msgstr "Dostupnost" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Dostupno" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Nije dostupno" + +msgid "grid.catalogEntry.proof" +msgstr "Dokaz" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Odobrenje formata" + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Dostupnost formata" + +msgid "grid.catalogEntry.salesRights" +msgstr "Uvjeti prodaje" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Vrijednost koda" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Uvjeti prodaje" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Ostatak svijeta?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Označite ovaj kvadratić kako biste koristili ovaj unos o prodajnim pravima " +"kao sveobuhvatni za vaš format. U ovom slučaju ne morate birati zemlje i " +"regije." + +msgid "grid.catalogEntry.countries" +msgstr "Zemlje" + +msgid "grid.catalogEntry.agent" +msgstr "Agent" + +msgid "grid.content.spotlights.form.item" +msgstr "Unesite istaknuti naslov (automatsko dovršavanje)" + +msgid "grid.content.spotlights.form.title" +msgstr "Ime središta pažnje" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Knjiga" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Potreban je predmet." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Potrebno je ime središta pažnje." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Molimo odaberite mjesto za ovo središte pažnje." + +msgid "grid.action.editSpotlight" +msgstr "Uredi ovo središte pažnje" + +msgid "grid.action.deleteSpotlight" +msgstr "Izbriši ovo središte pažnje" + +msgid "grid.action.addSpotlight" +msgstr "Dodaj središte pažnje" + +msgid "manager.series.open" +msgstr "Otvorene prijave" + +msgid "catalog.featuredBooks" +msgstr "Istaknute knjige" + +msgid "catalog.foundTitleSearch" +msgstr "" +"Pronađen je jedan naslov koji odgovara vašoj pretrazi za \"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"Pronađeno je {$number} naslova koji odgovaraju vašoj pretrazi za \"" +"{$searchQuery}\"." + +msgid "submission.search" +msgstr "Pretraživanje knjiga" + +msgid "navigation.published" +msgstr "Objavljeno" + +msgid "navigation.wizard" +msgstr "Čarobnjak" + +msgid "navigation.linksAndMedia" +msgstr "Društvene mreže" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Poveznica na katalog." + +msgid "navigation.skip.spotlights" +msgstr "Prijeđi na središta pažnje" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Nizovi" + +msgid "navigation.navigationMenus.series.description" +msgstr "Link na niz." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Kategorija" + +msgid "navigation.navigationMenus.category.description" +msgstr "Poveži sa kategorijom." + +msgid "context.current" +msgstr "Trenutni tisak:" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "Pošaljite monografiju: Registracija autora trenutno je onemogućena." + +msgid "user.noRoles.regReviewer" +msgstr "Registriraj se kao recenzent" + +msgid "user.reviewerPrompt" +msgstr "Biste li bili voljni pregledati prijave za ovaj tisak?" + +msgid "installer.filesDirInstructions" +msgstr "" +"Unesite punu putanju do postojećeg direktorija u kojem će se čuvati učitane " +"datoteke. Ovaj direktorij ne bi trebao biti izravno dostupan webu. " +"Uvjerite se da ovaj direktorij postoji i da je u njega moguće pisati " +"prije instalacije. Windows nazivi putanja trebaju koristiti kose " +"crte, npr. \"C:/mypress/files\"." + +msgid "installer.upgradeApplication" +msgstr "Nadogradi Open Monograph Press" + +msgid "payment.directSales.notAvailable" +msgstr "Nije dostupno" + +msgid "search.results.orderDir.desc" +msgstr "Silazni" + +msgid "common.payments" +msgstr "Plaćanja" + +msgid "monograph.audience" +msgstr "Ciljna skupina" + +msgid "monograph.audience.success" +msgstr "Podaci o ciljnoj skupini su ažurirani." + +msgid "monograph.coverImage" +msgstr "Naslovna fotografija" + +msgid "monograph.audience.rangeQualifier" +msgstr "Osnova za sužavanje ciljne skupine" + +msgid "monograph.audience.rangeFrom" +msgstr "Razina obrazovanja (od)" + +msgid "monograph.audience.rangeTo" +msgstr "Razina obrazovanja (do)" + +msgid "monograph.audience.rangeExact" +msgstr "(Točan) raspon ciljne publike" + +msgid "monograph.languages" +msgstr "Jezici (engleski, francuski, španjolski)" + +msgid "monograph.publicationFormats" +msgstr "Formati izdanja" + +msgid "monograph.publicationFormat" +msgstr "Format" + +msgid "monograph.publicationFormatDetails" +msgstr "Pojedinosti o dostupnom formatu publikacije: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Podaci o monografiji" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formati:" + +msgid "monograph.type" +msgstr "Tip prijave" + +msgid "submission.pageProofs" +msgstr "Korektura" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Uređivač izgleda učitava datoteke spremne za proizvodnju koje su " +"pripremljene za objavljivanje ovdje. Upotrijebite +Assign za " +"određivanje autora i drugih za lektoriranje stranica, s ispravljenim " +"datotekama učitanim na odobrenje prije objavljivanja." + +msgid "monograph.task.addNote" +msgstr "Dodaj u zadatke" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Otvori Access" + +msgid "monograph.publicationFormat.imprint" +msgstr "Impresum (ime robne marke/izdavača)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Broj stranica" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Povratni indikator" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Digitalne informacije" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Dimenzije" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Veličina datoteke u MB" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Želite li unijeti vlastitu veličinu datoteke?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Visina" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Debljina" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Težina" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Širina" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Zemlja proizvodnje" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Digitalna tehnička zaštita" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Regija distribucije proizvoda" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Porezna stopa" + +msgid "monograph.publicationFormat.taxType" +msgstr "Vrsta poreza" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Uključite metapodatke za ovaj format publikacije u kataloški unos za ovu " +"knjigu." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Nedostaju informacije o tržištu i cijenama." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Nedostaje identifikacijski kod." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Neka polja metapodataka nisu popunjena." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

      Format publikacije koji ste odabrali više ne postoji za ovu " +"monografiju.

      " + +msgid "monograph.publicationFormat.openTab" +msgstr "Otvorite karticu formata publikacije." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Format" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Potrebno je ime." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Potrebna je valjana ponuda." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Više informacija za ovaj format" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Fizički format" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Ovaj će format biti dostupan na zasebnoj web stranici" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL udaljenog sadržaja" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "13-znamenkasti ISBN kod, npr. 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "10-znamenkasti ISBN kod, npr. 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Za monografiju je potreban identifikator." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Mora se odabrati format objave." + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

      Odobrite metapodatke za ovaj format. Metapodatke je moguće provjeriti na " +"ploči za uređivanje za svaki format.

      " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

      Naznačite da metapodaci za ovaj format nisu odobreni.

      " + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

      Učinite ovaj format dostupnim čitateljima. Datoteke za " +"preuzimanje i sve druge distribucije pojavit će se u kataloškom unosu " +"knjige.

      " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

      Ovaj format neće biti dostupan čitateljima. Sve datoteke za " +"preuzimanje ili druge distribucije više se neće pojavljivati u kataloškom " +"unosu knjige.

      " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Kataloški unos nije prihvaćen." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Format nije u kataloškom unosu." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Dokaz nije odobren." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Prihvaćeno" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Čeka se odobrenje" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Za digitalne formate potrebna je veličina datoteke." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Molimo naznačite dostupnost proizvoda." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Odaberite šifru sastava proizvoda." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Vrijednost" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Vrsta ONIX koda" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Potreban je kôd." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Molimo unesite vrijednost." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "Već postoji tip prodaje ROW definiran za ovaj format publikacije." + +msgid "grid.catalogEntry.regions" +msgstr "Regije" + +msgid "grid.catalogEntry.included" +msgstr "Obuhvaćeno" + +msgid "grid.catalogEntry.excluded" +msgstr "Isključen" + +msgid "grid.catalogEntry.markets" +msgstr "Tržišni teritorij" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Teritorij" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Datum objave" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Potrebna je reprezentativna uloga." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Unesite format datuma." + +msgid "grid.catalogEntry.dateValue" +msgstr "Datum" + +msgid "grid.catalogEntry.dateRole" +msgstr "Datum se odnosi na..." + +msgid "grid.catalogEntry.dateFormat" +msgstr "Oblik datuma" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Datum je obavezan i vrijednost datuma mora odgovarati odabranom formatu " +"datuma." + +msgid "grid.catalogEntry.representatives" +msgstr "Prodajni partner" + +msgid "grid.catalogEntry.representativeType" +msgstr "Reprezentativni tip" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Predstavnici" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Davatelj usluga" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Možete dodijeliti agenta da vas predstavlja na ovom definiranom području. " +"Nije potrebno." + +msgid "grid.catalogEntry.supplier" +msgstr "Davatelj usluga" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Odaberite funkciju:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Funkcija" + +msgid "grid.catalogEntry.representativeName" +msgstr "Ime" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Telefon" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Email adresa" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Web stranica" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Identifikacijski broj tvrtke" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Vrsta ID-a predstavnika (preporučuje se GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Sljedeći odjeljak možete ostaviti praznim ako svojim klijentima pružate " +"vlastite usluge." + +msgid "grid.action.addRepresentative" +msgstr "Dodaj predstavnika" + +msgid "grid.action.editRepresentative" +msgstr "Uredite ovog predstavnika" + +msgid "grid.action.deleteRepresentative" +msgstr "Izbriši ovog predstavnika" + +msgid "spotlight" +msgstr "Središte pažnje" + +msgid "spotlight.spotlights" +msgstr "Središta pažnje" + +msgid "spotlight.noneExist" +msgstr "Trenutno nema središta pažnje." + +msgid "spotlight.title.homePage" +msgstr "U središtu pažnje" + +msgid "spotlight.author" +msgstr "Autor, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Predmet središta pažnje" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Početna stranica" + +msgid "grid.content.spotlights.form.location" +msgstr "Mjesto središta pažnje" + +msgid "manager.series.indexed" +msgstr "Indeksirano" + +msgid "grid.libraryFiles.column.files" +msgstr "Datoteke" + +msgid "grid.action.catalogEntry" +msgstr "Pogledajte obrazac za unos u katalog" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Format se pojavljuje u kataloškom unosu" + +msgid "grid.action.editFormat" +msgstr "Uredite ovaj format" + +msgid "grid.action.deleteFormat" +msgstr "Izbriši ovaj format" + +msgid "grid.action.addFormat" +msgstr "Dodaj format publikacije" + +msgid "grid.action.approveProof" +msgstr "Odobri dokaz za indeksiranje i uvrštavanje u katalog" + +msgid "grid.action.pageProofApproved" +msgstr "Datoteka za provjeru stranice spremna je za objavljivanje" + +msgid "grid.action.newCatalogEntry" +msgstr "Novi unos u katalog" + +msgid "grid.action.publicCatalog" +msgstr "Pogledajte ovaj predmet u katalogu" + +msgid "grid.action.feature" +msgstr "Uključi/isključi prikaz značajki" + +msgid "grid.action.featureMonograph" +msgstr "Istaknite ovo na kataloškom vrtuljku" + +msgid "grid.action.releaseMonograph" +msgstr "Označi ovu prijavu kao 'novo izdanje'" + +msgid "grid.action.manageCategories" +msgstr "Konfigurirajte kategorije za ovaj tisak" + +msgid "grid.action.manageSeries" +msgstr "Konfigurirajte seriju za ovaj tisak" + +msgid "grid.action.addCode" +msgstr "Dodaj kod" + +msgid "grid.action.editCode" +msgstr "Uredi kod" + +msgid "grid.action.deleteCode" +msgstr "Izbriši kod" + +msgid "grid.action.addRights" +msgstr "Dodaj prava prodaje" + +msgid "grid.action.editRights" +msgstr "Uredi ova prava" + +msgid "grid.action.deleteRights" +msgstr "Izbriši ova prava" + +msgid "grid.action.addMarket" +msgstr "Dodaj tržište" + +msgid "grid.action.editMarket" +msgstr "Uredi ovo tržište" + +msgid "grid.action.deleteMarket" +msgstr "Izbriši ovo tržište" + +msgid "grid.action.addDate" +msgstr "Dodaj datum objave" + +msgid "grid.action.editDate" +msgstr "Uredi ovaj datum" + +msgid "grid.action.deleteDate" +msgstr "Izbriši ovaj datum" + +msgid "grid.action.createContext" +msgstr "Stvori novi tisak" + +msgid "grid.action.publicationFormatTab" +msgstr "Prikaži karticu formata publikacije" + +msgid "grid.action.approveProofs" +msgstr "Pogledaj tablicu s dokazima" + +msgid "grid.action.moreAnnouncements" +msgstr "Idi na stranicu s najavama za tisak" + +msgid "grid.action.proofApproved" +msgstr "Format je provjeren" + +msgid "grid.action.availableRepresentation" +msgstr "Odobravanje/odbijanje ovog formata" + +msgid "grid.action.formatAvailable" +msgstr "Uključi/isključi dostupnost ovog formata" + +msgid "grid.action.submissionEmail" +msgstr "Kliknite da biste pročitali ovu e-poruku" + +msgid "grid.reviewAttachments.add" +msgstr "Dodaj privitak recenziji" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Dostupne datoteke" + +msgid "series.series" +msgstr "Nizovi" + +msgid "series.featured.description" +msgstr "Ovaj niz će se pojaviti na glavnoj navigaciji" + +msgid "series.path" +msgstr "Putanja" + +msgid "catalog.manage" +msgstr "Uređivanje kataloga" + +msgid "catalog.manage.newReleases" +msgstr "Nova izdanja" + +msgid "catalog.manage.category" +msgstr "Kategorija" + +msgid "catalog.manage.series" +msgstr "Nizovi" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Unesite važeći ISSN." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Online i print ISSN ne smiju biti isti." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Online ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "Print ISSN" + +msgid "catalog.selectSeries" +msgstr "Odaberi niz" + +msgid "catalog.selectCategory" +msgstr "Odaberi kategoriju" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Slika naslovnice odabranih knjiga pojavljuje se prema vrhu početne stranice " +"kao set koji se može pomicati. Pritisnite 'Feature', zatim zvjezdicu za " +"dodavanje knjige na vrtuljak; kliknite na uskličnik da biste ga prikazali " +"kao novo izdanje; povucite i ispustite kako biste naručili." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Pritisnite 'Feature', zatim zvjezdicu za odabir istaknute knjige za ovu " +"kategoriju; povucite i ispustite kako biste naručili." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Pritisnite 'Feature', zatim zvjezdicu za odabir istaknute knjige za ovaj niz;" +" povucite i ispustite kako biste naručili. Nizovi su identificirani " +"urednikom(ima) i naslovom niza, unutar kategorije ili neovisno." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Vrtuljak" + +msgid "catalog.manage.newRelease" +msgstr "Nova izdanja" + +msgid "catalog.manage.manageSeries" +msgstr "Upravljaj nizovima" + +msgid "catalog.manage.manageCategories" +msgstr "Upravljaj kategorijama" + +msgid "catalog.manage.noMonographs" +msgstr "Nema dodijeljenih monografija." + +msgid "catalog.manage.featured" +msgstr "Istaknuto" + +msgid "catalog.manage.categoryFeatured" +msgstr "Istaknuto u kategoriji" + +msgid "catalog.manage.seriesFeatured" +msgstr "Istaknuto u nizu" + +msgid "catalog.manage.featuredSuccess" +msgstr "Istaknuta je monografija." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monografija nije istaknuta." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Monografija je označena kao novo izdanje." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Monografija nije označena kao novo izdanje." + +msgid "catalog.manage.feature.newRelease" +msgstr "Novo izdanje" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Novo izdanje u kategoriji" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Novo izdanje u nizu" + +msgid "catalog.manage.nonOrderable" +msgstr "Ovu monografiju nije moguće naručiti dok ne bude istaknuta." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Pretraži po naslovu ili autoru" + +msgid "catalog.manage.isFeatured" +msgstr "Ova monografija je istaknuta. Neka se ova monografija ne prikazuje." + +msgid "catalog.manage.isNotFeatured" +msgstr "Ova monografija nije predstavljena. Učinite ovu monografiju istaknutom." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Ova monografija je novo izdanje. Neka ova monografija ne bude novo izdanje." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Ova monografija nije novo izdanje. Neka ova monografija bude novo izdanje." + +msgid "catalog.feature" +msgstr "Istakni" + +msgid "catalog.featured" +msgstr "Istaknuto" + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Nije odabrana nijedna prijava za dodavanje u katalog." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Jednu ili više prijava nije bilo moguće pronaći." + +msgid "catalog.manage.findSubmissions" +msgstr "Pronađite monografije koje želite dodati u katalog" + +msgid "catalog.noTitles" +msgstr "Nema objavljenih naslova." + +msgid "catalog.noTitlesNew" +msgstr "Trenutno nema novih objavljenih naslova." + +msgid "catalog.noTitlesSearch" +msgstr "Nema pronađenih naslova za traženo pretraživanje - \"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Sve knjige" + +msgid "catalog.newReleases" +msgstr "Nova izdanja" + +msgid "catalog.dateAdded" +msgstr "Dodano" + +msgid "catalog.publicationInfo" +msgstr "Informacije o publikaciji" + +msgid "catalog.published" +msgstr "Objavljeno" + +msgid "catalog.forthcoming" +msgstr "Nadolazeće" + +msgid "catalog.categories" +msgstr "Kategorije" + +msgid "catalog.parentCategory" +msgstr "Nadređena kategorija" + +msgid "catalog.category.subcategories" +msgstr "Potkategorije" + +msgid "catalog.aboutTheAuthor" +msgstr "O ulozi {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Napomena: Da biste kupili artikle, morate se prvo prijaviti. Odabir artikla " +"za kupnju preusmjerit će vas na stranicu za prijavu. Sve stavke označene " +"ikonom otvorenog pristupa mogu se preuzeti besplatno, bez prijave." + +msgid "catalog.sortBy" +msgstr "Redoslijed monografija" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Odaberite kako naručiti knjige iz ovog niza." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Odaberite kako naručiti knjige u ovoj kategoriji." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Odaberite način naručivanja knjiga u katalogu." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Pozicija niza (najniža prva)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Pozicija u nizu (najviši prvi)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} prikaz datoteke {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Povratak na pregled pojedinosti o {$monographTitle}" + +msgid "common.publication" +msgstr "Monografija" + +msgid "common.publications" +msgstr "Monografije" + +msgid "common.prefix" +msgstr "Prefiks" + +msgid "common.preview" +msgstr "Pregled" + +msgid "common.feature" +msgstr "Značajka" + +msgid "common.searchCatalog" +msgstr "Pretraži katalog" + +msgid "common.moreInfo" +msgstr "Više informacija" + +msgid "common.listbuilder.completeForm" +msgstr "Molimo ispunite obrazac do kraja." + +msgid "common.listbuilder.selectValidOption" +msgstr "Molimo odaberite valjanu opciju s popisa." + +msgid "common.listbuilder.itemExists" +msgstr "Ne možete dodati isti predmet dva puta." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Zaglavlje početne stranice" + +msgid "navigation.catalog" +msgstr "Katalog" + +msgid "navigation.competingInterestPolicy" +msgstr "Politika konkurentskih interesa" + +msgid "navigation.catalog.allMonographs" +msgstr "Sve monografije" + +msgid "navigation.catalog.manage" +msgstr "Upravljaj" + +msgid "navigation.catalog.administration.short" +msgstr "Administracija" + +msgid "navigation.catalog.administration" +msgstr "Administracija kataloga" + +msgid "navigation.catalog.administration.categories" +msgstr "Kategorije" + +msgid "navigation.catalog.administration.series" +msgstr "Nizovi" + +msgid "navigation.infoForAuthors" +msgstr "Za autore" + +msgid "navigation.infoForLibrarians" +msgstr "Za knjižničare" + +msgid "navigation.infoForAuthors.long" +msgstr "Informacije za autore" + +msgid "navigation.infoForLibrarians.long" +msgstr "Informacije za knjižničare" + +msgid "navigation.newReleases" +msgstr "Nova izdanja" + +msgid "navigation.navigationMenus.newRelease" +msgstr "Nova izdanja" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Poveži sa svojim novim izdanjima." + +msgid "context.contexts" +msgstr "Tiskovi" + +msgid "context.context" +msgstr "Tisak" + +msgid "context.select" +msgstr "Prijeđi na drugi tisak:" + +msgid "user.authorization.representationNotFound" +msgstr "Traženi format publikacije nije pronađen." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Uključite korisnike bez uloga u ovaj tisak." + +msgid "user.noRoles.submitMonograph" +msgstr "Pošalji prijedlog" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Registriraj se kao recenzent: registracija recenzenta trenutno je " +"onemogućena." + +msgid "user.reviewerPrompt.userGroup" +msgstr "Da, zatraži ulogu {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Da, želio/la bih da me se kontaktira sa zahtjevima za pregled prijava za " +"ovaj tisak." + +msgid "user.register.contextsPrompt" +msgstr "Putem kojeg tiska na ovoj stranici biste se željeli registrirati?" + +msgid "user.register.otherContextRoles" +msgstr "Zatražite sljedeće uloge." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Ako ste zatražili da budete recenzent za bilo koji tisak, unesite svoje " +"interese." + +msgid "user.role.manager" +msgstr "Menadžer tiska" + +msgid "user.role.pressEditor" +msgstr "Urednik tiska" + +msgid "user.role.subEditor" +msgstr "Urednik niza" + +msgid "user.role.copyeditor" +msgstr "Uređivač" + +msgid "user.role.proofreader" +msgstr "Korektor" + +msgid "user.role.productionEditor" +msgstr "Urednik produkcije" + +msgid "user.role.managers" +msgstr "Menadžeri tiska" + +msgid "user.role.subEditors" +msgstr "Urednici niza" + +msgid "user.role.editors" +msgstr "Urednici" + +msgid "user.role.copyeditors" +msgstr "Uređivači" + +msgid "user.role.proofreaders" +msgstr "Korektori" + +msgid "user.role.productionEditors" +msgstr "Urednici produkcije" + +msgid "user.register.selectContext" +msgstr "Odaberite tisak za registraciju:" + +msgid "user.register.noContexts" +msgstr "Nema tiskova putem kojih se možete registrirati na ovoj stranici." + +msgid "user.register.privacyStatement" +msgstr "Izjava o privatnosti" + +msgid "user.register.registrationDisabled" +msgstr "Ovaj tisak trenutno ne prihvaća registracije korisnika." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Lozinka koju ste unijeli nije dovoljno duga." + +msgid "user.register.readerDescription" +msgstr "Obavijest e-poštom o izdavanju monografije." + +msgid "user.register.authorDescription" +msgstr "Sposobnost slanja predmeta u tisak." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Spremni izvršiti recenziju prijava za tisak." + +msgid "user.register.reviewerDescription" +msgstr "Spremni izvršiti recenziju prijava na stranici." + +msgid "user.register.reviewerInterests" +msgstr "" +"Identificirajte recenzentske interese (sadržajna područja i metode " +"istraživanja):" + +msgid "user.register.form.userGroupRequired" +msgstr "Morate odabrati barem jednu ulogu" + +msgid "about.onlineSubmissions" +msgstr "Online prijave" + +msgid "about.onlineSubmissions.login" +msgstr "Login" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Da, slažem se da se moji podaci prikupljaju i pohranjuju u skladu s izjavom o privatnosti ovog tiska." + +msgid "site.noPresses" +msgstr "Nema dostupnih tisaka." + +msgid "site.pressView" +msgstr "Pogledajte web stranicu tiska" + +msgid "about.pressContact" +msgstr "Kontakt" + +msgid "about.aboutContext" +msgstr "O nakladi" + +msgid "about.editorialTeam" +msgstr "Uredništvo" + +msgid "about.editorialPolicies" +msgstr "Urednička politika" + +msgid "about.focusAndScope" +msgstr "Fokus i opseg" + +msgid "about.seriesPolicies" +msgstr "Pravila nizova i kategorija" + +msgid "about.submissions" +msgstr "Prijave" + +msgid "about.onlineSubmissions.register" +msgstr "Prijava" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} ili {$register} za prijavu." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} ili {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Napravi novu prijavu" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "pogledajte svoje prijave na čekanju" + +msgid "about.authorGuidelines" +msgstr "Upute za autore" + +msgid "about.submissionPreparationChecklist" +msgstr "Kontrolni popis za pripremu prijava" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Kao dio procesa prijava, autori moraju provjeriti usklađenost svoje prijave " +"sa svim sljedećim predmetima, a prijave se mogu vratiti autorima koji se ne " +"pridržavaju ovih smjernica." + +msgid "about.copyrightNotice" +msgstr "Obavijest o autorskim pravima" + +msgid "about.privacyStatement" +msgstr "Izjava o privatnosti" + +msgid "about.reviewPolicy" +msgstr "Proces recenzije" + +msgid "about.publicationFrequency" +msgstr "Učestalost objavljivanja" + +msgid "about.openAccessPolicy" +msgstr "Politika otvorenog pristupa" + +msgid "about.pressSponsorship" +msgstr "Sponzorstvo tiska" + +msgid "about.aboutThisPublishingSystem" +msgstr "Više informacija o sustavu izdavaštva, platformi i tijeku rada OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "OMP uređivački i izdavački proces" + +msgid "about.aboutSoftware" +msgstr "O Open Monograph Press-u" + +msgid "about.aboutOMPPress" +msgstr "" +"Ovaj tisak koristi Open Monograph Press {$ompVersion}, koji je softver " +"otvorenog koda za upravljanje tiskom i izdavaštvo koji je razvio, podržava i " +"besplatno distribuira Public Knowledge Project pod GNU General Public " +"License. Posjetite web stranicu PKP-a kako biste saznali više o softveru. Molimo Vas " +"kontaktirajte medije izravno s pitanjima o tisku i prijavama za tisak." + +msgid "about.aboutOMPSite" +msgstr "" +"Ovaj tisak koristi Open Monograph Press {$ompVersion}, koji je softver " +"otvorenog koda za upravljanje tiskom i izdavaštvo koji je razvio, podržava i " +"besplatno distribuira Public Knowledge Project pod GNU General Public " +"License. Posjetite web stranicu PKP-a kako biste saznali više o softveru. Kontaktirajte stranicu izravno s " +"pitanjima o njezinim tiskovnim izdanjima i prijavama za tisak." + +msgid "help.searchReturnResults" +msgstr "Povratak na rezultate pretraživanja" + +msgid "help.goToEditPage" +msgstr "Otvorite novu stranicu za uređivanje ovih informacija" + +msgid "installer.appInstallation" +msgstr "OMP instalacija" + +msgid "installer.ompUpgrade" +msgstr "OMP nadogradnja" + +msgid "installer.installApplication" +msgstr "Instaliraj Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Ako nadograđujete postojeću instalaciju OMP-a, kliknite ovdje za nastavak." + +msgid "installer.installationInstructions" +msgstr "" +"

      Hvala što ste preuzeli Open Monograph Press {$version} " +"projekta Public Knowledge Project. Prije nastavka pročitajte datoteku README koja je uključena u ovaj " +"softver. Za više informacija o Projektu javnog znanja i njegovim softverskim " +"projektima posjetite web-" +"mjesto PKP-a. Ako imate izvješća o greškama ili upite o tehničkoj " +"podršci za Open Monograph Press, pogledajte forum za podršku ili posjetite PKP-ov online < " +"href=\"https://github.com/pkp/pkp-lib/issues/\" target=\"_blank\">sustav za " +"prijavu grešaka. Iako je forum za podršku preferirani način " +"kontaktiranja, timu također možete poslati e-poruku na pkp.contact@gmail.com.

      " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Koraci prije instalacije" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

      1. Sljedeće datoteke i direktoriji (i njihov sadržaj) moraju biti " +"omogućeni za pisanje:

      \n" +"
        \n" +"
      • config.inc.php može se pisati (izborno): {$writable_config}
      • " +"\n" +"
      • public/ može se pisati: {$writable_public}
      • \n" +"U
      • cache/ se može pisati: {$writable_cache}
      • \n" +"
      • cache/t_cache/ može se pisati: {$writable_templates_cache}
      • " +"\n" +"
      • cache/t_compile/ može se pisati: " +"{$writable_templates_compile}
      • \n" +"
      • cache/_db može se pisati: {$writable_db_cache}
      • \n" +"
      \n" +"\n" +"

      2. Imenik za pohranjivanje učitanih datoteka mora biti kreiran i u njega " +"moguće pisati (vidi \"Postavke datoteke\" u nastavku).

      " + +msgid "installer.upgradeInstructions" +msgstr "" +"

      OMP verzija {$version}

      \n" +"\n" +"

      Hvala što ste preuzeli Open Monograph Press Public " +"Knowledge Project. Prije nego nastavite, pročitajte README i NADOGRADNJU datoteke uključene u ovaj softver. Za više informacija o " +"Projektu javnog znanja i njegovim softverskim projektima posjetite web-mjesto PKP-a. Ako imate " +"izvješća o greškama ili upite o tehničkoj podršci za Open Monograph Press, " +"pogledajte forum za " +"podršku ili posjetite PKP-ov online < href=\"https://github.com/pkp/" +"pkp-lib/issues\" target=\"_blank\">sustav za prijavu grešaka. Iako je " +"forum za podršku preferirani način kontaktiranja, timu također možete " +"poslati e-poruku na pkp." +"contact@gmail.com.

      \n" +"

      Snažno se preporučuje da napravite sigurnosnu kopiju " +"svoje baze podataka, direktorija datoteka i OMP instalacijskog direktorija " +"prije nastavka.

      " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Za potpunu Unicode podršku PHP mora biti kompajliran s podrškom za " +"biblioteku mbstring (omogućena prema zadanim postavkama u najnovijim PHP " +"instalacijama ). Mogući su problemi s korištenjem proširenih skupova znakova " +"ako vaš poslužitelj ne ispunjava ove zahtjeve.\n" +"

      \n" +"Vaš poslužitelj trenutno podržava mbstring: " +"{$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Vaš poslužitelj trenutno dopušta učitavanje datoteka: " +"{$allowFileUploads}" + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Rok za pregled kruga {$round} prijave {$submissionId} od strane " +"{$reviewerName} postavljen je na {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} je odbio krug {$round} recenzije za prijavu {$submissionId}." + +msgid "installer.maxFileUploadSize" +msgstr "" +"Vaš poslužitelj trenutno dopušta maksimalnu veličinu datoteke za učitavanje " +"od: {$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Primarni jezik koji se koristi za ovaj sustav. Molimo pogledajte OMP " +"dokumentaciju ako ste zainteresirani za podršku za jezike koji nisu ovdje " +"navedeni." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Odaberite dodatne jezike za podršku u ovom sustavu. Ti će jezici biti " +"dostupni za korištenje u tiskovnim medijima koji se nalaze na stranici. " +"Dodatni jezici također se mogu instalirati u bilo kojem trenutku iz " +"administrativnog sučelja stranice. Lokacije označene * mogu biti nepotpune." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP zahtijeva pristup SQL bazi podataka za pohranu svojih podataka. " +"Pogledajte gornje sistemske zahtjeve za popis podržanih baza podataka. U " +"donjim poljima unesite postavke koje će se koristiti za povezivanje s bazom " +"podataka." + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

      VAŽNO!

      \n" +"

      Instalacijski program nije mogao automatski prebrisati konfiguracijsku " +"datoteku. Prije nego pokušate koristiti sustav, otvorite config.inc.php u odgovarajućem uređivaču teksta i zamijenite njegov sadržaj sadržajem " +"tekstualnog polja ispod.

      " + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} je prihvatio krug {$round} recenziju za prijavu " +"{$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} je označio krug {$round} recenzije za prijavu {$submissionId} " +"kao nerazmotrenu." + +msgid "log.editor.decision" +msgstr "" +"Odluku urednika ({$decision}) za monografiju {$submissionId} zabilježio je " +"{$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"Preporuku urednika ({$decision}) za monografiju {$submissionId} zabilježio " +"je {$editorName}." + +msgid "log.editor.archived" +msgstr "Prijava {$submissionId} je arhivirana." + +msgid "log.editor.restored" +msgstr "Prijava {$submissionId} je vraćena u red čekanja." + +msgid "log.editor.editorAssigned" +msgstr "{$editorName} je određen kao urednik prijave {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} je dodijelio {$proofreaderName} da lektorira prijavu " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} je prijavio/la {$submissionId} na zakazivanje." + +msgid "log.imported" +msgstr "{$userName} je prenio/la monografiju {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Dodan identifikacijski kod." + +msgid "notification.editedIdentificationCode" +msgstr "Uređen identifikacijski kod." + +msgid "notification.removedIdentificationCode" +msgstr "Uklonjen identifikacijski kod." + +msgid "notification.addedPublicationDate" +msgstr "Dodan datum objave." + +msgid "notification.editedPublicationDate" +msgstr "Uređen datum objave." + +msgid "notification.removedPublicationDate" +msgstr "Uklonjen datum objave." + +msgid "notification.addedPublicationFormat" +msgstr "Dodan format publikacije." + +msgid "notification.editedPublicationFormat" +msgstr "Uređen format publikacije." + +msgid "notification.removedPublicationFormat" +msgstr "Uklonjen format publikacije." + +msgid "notification.addedSalesRights" +msgstr "Dodana prava prodaje." + +msgid "notification.editedSalesRights" +msgstr "Uređena prava prodaje." + +msgid "notification.removedSalesRights" +msgstr "Uklonjena prava prodaje." + +msgid "notification.addedRepresentative" +msgstr "Dodan predstavnik." + +msgid "notification.editedRepresentative" +msgstr "Uređen predstavnik." + +msgid "notification.removedRepresentative" +msgstr "Uklonjen predstavnik." + +msgid "notification.addedMarket" +msgstr "Dodano tržište." + +msgid "notification.editedMarket" +msgstr "Uređeno tržište." + +msgid "notification.removedMarket" +msgstr "Uklonjeno tržište." + +msgid "notification.addedSpotlight" +msgstr "Dodano središte pažnje." + +msgid "notification.editedSpotlight" +msgstr "Uređeno središte pažnje." + +msgid "notification.removedSpotlight" +msgstr "Uklonjeno središte pažnje." + +msgid "notification.savedCatalogMetadata" +msgstr "Metapodaci kataloga spremljeni." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Metapodaci formata publikacije spremljeni." + +msgid "notification.proofsApproved" +msgstr "Dokazi odobreni." + +msgid "notification.removedSubmission" +msgstr "Prijave uklonjene." + +msgid "notification.type.submissionSubmitted" +msgstr "Nova monografija \"{$title}\" je predana." + +msgid "notification.type.visitCatalog" +msgstr "" +"Monografija je odobrena. Posjetite Marketing and Publication kako biste " +"upravljali pojedinostima kataloga, koristeći veze iznad." + +msgid "notification.type.editing" +msgstr "Uređivanje događaja" + +msgid "notification.type.reviewing" +msgstr "Pregledavanje događaja" + +msgid "notification.type.site" +msgstr "Događaji na stranici" + +msgid "notification.type.submissions" +msgstr "Događaji prijava" + +msgid "notification.type.userComment" +msgstr "Čitatelj je komentirao \"{$title}\"." + +msgid "notification.type.public" +msgstr "Javne objave" + +msgid "notification.type.editorAssignmentTask" +msgstr "Prijavljena je nova monografija kojoj je potrebno odrediti urednika." + +msgid "notification.type.copyeditorRequest" +msgstr "Zamoljeni ste da pregledate kopije za \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "Zamoljeni ste da pregledate izglede za \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "Zamoljeni ste da izradite indeks za \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Započet je postupak interne provjere." + +msgid "notification.type.approveSubmission" +msgstr "" +"Ova prijava trenutno čeka odobrenje u alatu za unos kataloga prije nego što " +"se pojavi u javnom katalogu." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Čeka odobrenje." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Monografija neće biti uvrštena u katalog do objave. Za dodavanje ove knjige " +"u katalog kliknite na karticu Publikacije." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Nijedan način plaćanja još nije konfiguriran." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Prije definiranja postavki e-trgovine potreban je konfigurirani način " +"plaćanja." + +msgid "notification.type.visitCatalogTitle" +msgstr "Upravljanje katalogom" + +msgid "user.authorization.invalidReviewAssignment" +msgstr "Pristup vam je odbijen jer niste važeći recenzent za ovu monografiju." + +msgid "user.authorization.monographAuthor" +msgstr "Pristup vam je odbijen jer se niste autor ove monografije." + +msgid "user.authorization.monographReviewer" +msgstr "Pristup vam je odbijen jer niste dodijeljeni recenzent ove monografije." + +msgid "user.authorization.monographFile" +msgstr "Odbijen vam je pristup navedenoj datoteci monografije." + +msgid "user.authorization.invalidMonograph" +msgstr "Nevažeća monografija ili monografija nije tražena!" + +msgid "user.authorization.noContext" +msgstr "Nije pronađen nijedan tisak koji odgovara vašem zahtjevu." + +msgid "user.authorization.seriesAssignment" +msgstr "Pokušavate pristupiti monografiji koja nije dio vašeg niza." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Pristup odbijen! Niste dodijeljeni ovoj fazi tijeka rada." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Pristup odbijen! Grupa korisnika pod kojom trenutno djelujete nije " +"dodijeljena ovoj fazi tijeka rada. Provjerite postavke tiska." + +msgid "payment.directSales" +msgstr "Preuzmite s web stranice izdavača" + +msgid "payment.directSales.price" +msgstr "Cijena" + +msgid "payment.directSales.availability" +msgstr "Dostupnost" + +msgid "payment.directSales.catalog" +msgstr "Katalog" + +msgid "payment.directSales.approved" +msgstr "Prihvaćeno" + +msgid "payment.directSales.priceCurrency" +msgstr "Cijena ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Cijene trebaju biti samo numeričke. Nemojte uključivati simbole valuta." + +msgid "payment.directSales.directSales" +msgstr "Izravna prodaja" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notSet" +msgstr "Nije postavljeno" + +msgid "payment.directSales.validPriceRequired" +msgstr "Unesite valjanu cijenu (kao broj)." + +msgid "payment.directSales.purchase" +msgstr "Kupi {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Preuzmi {$format}" + +msgid "payment.directSales.openAccess" +msgstr "Otvori Access" + +msgid "payment.directSales.price.description" +msgstr "" +"Formati datoteka mogu biti dostupni za preuzimanje s web stranice za tisak " +"putem otvorenog pristupa bez troškova za čitatelje ili izravne prodaje (" +"koristeći online procesor plaćanja, kako je konfigurirano u Distribuciji). " +"Za ovu datoteku navedite osnovu pristupa." + +msgid "payment.directSales.monograph.name" +msgstr "Kupi monografiju ili preuzmi poglavlje" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Ova se transakcija odnosi na kupnju izravnog preuzimanja jedne monografije " +"ili monografskog poglavlja." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Ponovno učitana XML datoteka za mapiranje pomoći {$filename} u potrazi za " +"{$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Knjiga" + +msgid "submission.pdf.download" +msgstr "Preuzmi PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Prikaži druge izdavače" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Sakrij druge izdavače" + +msgid "submission.round" +msgstr "Krug {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Naveden je nevažeća objavljena prijava." + +msgid "catalog.coverImageTitle" +msgstr "Naslovna fotografija" + +msgid "grid.catalogEntry.chapters" +msgstr "Poglavlje" + +msgid "search.results.orderBy.article" +msgstr "Naslov članka" + +msgid "search.results.orderBy.author" +msgstr "Autor/ica" + +msgid "search.results.orderBy.date" +msgstr "Datum objavljivanja" + +msgid "search.results.orderBy.monograph" +msgstr "Naslov monografije" + +msgid "search.results.orderBy.press" +msgstr "Naslov tiska" + +msgid "search.results.orderBy.popularityAll" +msgstr "Popularnost (sva vremena)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Popularnost (prošli mjesec)" + +msgid "search.results.orderBy.relevance" +msgstr "Relevantnost" + +msgid "search.results.orderDir.asc" +msgstr "Uzlazni" + +msgid "section.section" +msgstr "Nizovi" diff --git a/locale/hr/manager.po b/locale/hr/manager.po new file mode 100644 index 00000000000..0217064ec46 --- /dev/null +++ b/locale/hr/manager.po @@ -0,0 +1,1682 @@ +# Boris Badurina , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-03 16:22+0000\n" +"Last-Translator: Boris Badurina \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "manager.settings" +msgstr "Postavke" + +msgid "manager.users.currentRoles" +msgstr "Trenutne funkcije" + +msgid "manager.users.selectRole" +msgstr "Odaberite funkciju" + +msgid "manager.setup.copyeditInstructions" +msgstr "Smjernice za korekturu" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Smjernice za korekturu dostupne su urednicima, autorima i urednicima rubrika " +"u fazi 'redakcijske obrade'. Na dnu stranice nalazi se skup zadanih HTML " +"unaprijed postavljenih postavki. Upravitelj izdavanja može ih promijeniti " +"ili zamijeniti u bilo kojem trenutku (u HTML-u ili u običnom tekstu)." + +msgid "manager.setup.copyrightNotice" +msgstr "Obavijest o autorskim pravima" + +msgid "manager.setup.details.description" +msgstr "Ime izdavača, kontakt osoba, sponzori i tražilice." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Direktori izdavača registriraju sve korisnike. Zajedno s urednicima i " +"urednicima rubrika, oni jedini mogu prijaviti recenzente." + +msgid "manager.setup.discipline" +msgstr "Znanstvene discipline i poddiscipline" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Ovo je korisno kada izdavač prelazi granice discipline i/ili autori predaju " +"interdisciplinarne radove." + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Prikaži istaknute knjige na početnoj stranici" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Istaknute knjige" + +msgid "manager.setup.emailSignature" +msgstr "Potpis" + +msgid "manager.setup.emailSignature.description" +msgstr "" +"E-pošta poslana automatski u ime izdavača imat će dodan sljedeći potpis." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Omogući obavijesti" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Obavijesti se mogu objavljivati kako bi se čitatelji informirali o novostima " +"i događajima. Objavljene obavijesti pojavit će se na stranici Obavijesti." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Ime primarnog kontakta je obavezno." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Molimo navedite broj recenzenata po rukopisu." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "E-pošta podrške je obavezna." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Ime podrške je obavezno." + +msgid "manager.setup.generalInformation" +msgstr "Opće informacije" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "1. korak: upoznajte se sa sustavom" + +msgid "manager.setup.guidelines" +msgstr "Smjernice" + +msgid "manager.setup.preparingWorkflow" +msgstr "3. korak: priprema radnog tijeka" + +msgid "manager.setup.identity" +msgstr "Identitet izdavača" + +msgid "manager.setup.information" +msgstr "Informacije" + +msgid "manager.setup.information.forAuthors" +msgstr "Za autore" + +msgid "manager.setup.information.forLibrarians" +msgstr "Za knjižničare" + +msgid "manager.setup.keyInfo" +msgstr "Glavne informacije" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Uključite kratak opis svog izdavača i identificirajte urednike, upravne " +"direktore i druge članove uredničkog tima." + +msgid "manager.setup.labelName" +msgstr "Naziv oznake" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Urednici layouta" + +msgid "manager.setup.management.description" +msgstr "" +"Pristup i sigurnost, zakazivanje rokova, najave, uređivanje, layout i " +"lektura." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Upravljanje osnovnim redakcijskim koracima" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Postavljanje administrativnog i objavljivačkog postupka" + +msgid "manager.setup.managingThePress" +msgstr "4. korak: Upravljanje postavkama" + +msgid "manager.setup.noImageFileUploaded" +msgstr "Nije učitana nijedna slika." + +msgid "manager.setup.pageHeader" +msgstr "Zaglavlje stranice" + +msgid "manager.setup.pressPolicies" +msgstr "2. korak: smjernice za izdavače" + +msgid "manager.setup.pressSetup" +msgstr "Postavke izdavača" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Postavke izdavača su ažurirane" + +msgid "manager.setup.styleSheetInvalid" +msgstr "Nevažeći format stilova. Prihvaćeni format je .css." + +msgid "manager.setup.pressTheme" +msgstr "Tema izdavača" + +msgid "manager.setup.pressThumbnail" +msgstr "Thumbnail izdavača" + +msgid "manager.setup.pageHeaderDescription" +msgstr "Opis zaglavlja stranice" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Smjernice za ispravke dostupne su lektorima, autorima, urednicima layouta i " +"izdavačima rubrika u fazi 'uredničke obrade'. Ispod su standardne smjernice " +"u HTML-u koje voditelj izdavaštva može uređivati ili mijenjati (u HTML-u ili " +"običnom tekstu)." + +msgid "manager.setup.proofreading" +msgstr "Lektori" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Urednicima layouta pružite upute." + +msgid "manager.setup.reviewOptions" +msgstr "Opcije recenzije" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Automatski podsjetnici putem e-pošte" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Ograničenje pristupa datoteci" + +msgid "manager.setup.useTextTitle" +msgstr "Naslov" + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN (International Standard Serial Number) je osmeroznamenkasti broj koji " +"identificira periodične publikacije uključujući elektroničke serijske " +"publikacije. Broj se može dobiti u ISSN Međunarodnom centru." + +msgid "manager.setup.currentFormats" +msgstr "Trenutni formati" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Kategorije i serije" + +msgid "manager.setup.series.description" +msgstr "" +"Možete stvoriti bilo koji broj serija kako biste organizirali svoje " +"publikacije. Serija predstavlja poseban skup knjiga posvećen temi ili temama " +"koje je netko predložio, obično jedan ili dva akademika, koji ih zatim " +"nadzire. Posjetitelji će moći pretraživati i pregledavati tisak po serijama." + +msgid "manager.setup.reviewForms" +msgstr "Recenzijski obrasci" + +msgid "stats.publicationStats" +msgstr "Statistika monografije" + +msgid "stats.publications.abstracts" +msgstr "Unosi u katalog" + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "Adresa e-pošte naklade" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "Poveznica na stranicu statistike za knjigu" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Poglavlja" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Formati publikacije" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Datoteke" + +msgid "mailable.indexRequest.name" +msgstr "Indeks zatražen" + +msgid "mailable.indexComplete.name" +msgstr "Indeks završen" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Ovo zamjenjuje sve prethodno napravljene prilagodbe za ove regionalne " +"postavke" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Nažalost, drugi jezici nisu dostupni. Obratite se svom administratoru " +"stranice ako želite koristiti dodatne jezike." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Ovaj jezik će biti zadani jezik za web stranicu izdavača." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Provjerite je li barem jedno polje za označavanje kvačicom označeno za svaki " +"zadatak urednika serije." + +msgid "manager.series.form.reviewFormId" +msgstr "Provjerite jeste li odabrali važeći obrazac za pregled." + +msgid "manager.series.submissionIndexing" +msgstr "Neće biti uključeno u indeksiranje" + +msgid "manager.series.editorRestriction" +msgstr "Naslove mogu slati samo urednici i urednici serijala." + +msgid "manager.series.confirmDelete" +msgstr "Jeste li sigurni da želite trajno izbrisati ovu seriju?" + +msgid "manager.series.indexed" +msgstr "Indeksirano" + +msgid "manager.series.open" +msgstr "Otvorene prijave" + +msgid "manager.series.readingTools" +msgstr "Alati za čitanje" + +msgid "manager.series.submissionReview" +msgstr "Nema recenzije" + +msgid "manager.series.submissionsToThisSection" +msgstr "Rukopisi predani u ovoj seriji" + +msgid "manager.series.abstractsNotRequired" +msgstr "Sažeci nisu potrebni" + +msgid "manager.series.disableComments" +msgstr "Onemogući komentare čitatelja za ovu seriju." + +msgid "manager.series.book" +msgstr "Serija knjiga" + +msgid "manager.series.create" +msgstr "Stvori seriju" + +msgid "manager.series.policy" +msgstr "Opis serije" + +msgid "manager.series.assigned" +msgstr "Urednici ove serije" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Dodajte urednika serije s popisa dostupnih urednika serije. Zatim odredite " +"treba li urednik serije koordinirati postupak recenziranja i preuzeti " +"uređivanje (uređivanje, raspored i lekturu) rukopisa u ovoj seriji ili samo " +"jedno od dva područja odgovornosti. Ako želite stvoriti novog urednika " +"serije, idite na \"Administracija\" > \"Postavke i funkcije\" na \"Funkcije\"" +" i kliknite na Uređivači serije ." + +msgid "manager.series.hideAbout" +msgstr "Ne prikazujte ovu seriju pod \"O nama\"." + +msgid "manager.series.unassigned" +msgstr "Dostupni urednici serije" + +msgid "manager.series.form.abbrevRequired" +msgstr "Za seriju je potreban skraćeni naslov." + +msgid "manager.series.form.titleRequired" +msgstr "Za seriju je potreban naslov." + +msgid "manager.series.noneCreated" +msgstr "Nijedna serija nije stvorena." + +msgid "manager.series.existingUsers" +msgstr "Postojeći korisnici" + +msgid "manager.series.seriesTitle" +msgstr "Naslov serije" + +msgid "manager.series.restricted" +msgstr "Nemojte dopustiti autorima da se izravno prijave za ovu seriju." + +msgid "manager.payment.generalOptions" +msgstr "Opće postavke" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Plaćanja će biti omogućena za ovog izdavača. Imajte na umu da se korisnici " +"moraju prijaviti za plaćanje." + +msgid "manager.payment.success" +msgstr "Postavke plaćanja su ažurirane." + +msgid "manager.settings.pressSettings" +msgstr "Postavke izdavača" + +msgid "manager.settings.press" +msgstr "Izdavač" + +msgid "manager.settings.publisher.identity" +msgstr "Identitet izdavača" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Iako ova polja nisu inherentno potrebna za korištenje OMP-a, potrebna su za " +"generiranje valjanih ONIX metapodataka. Uključite ih ako želite koristiti ONIX " +"funkcionalnost." + +msgid "manager.settings.publisher" +msgstr "Ime izdavača" + +msgid "manager.settings.location" +msgstr "Mjesto" + +msgid "manager.settings.publisherCode" +msgstr "Kod izdavača" + +msgid "manager.settings.publisherCodeType" +msgstr "Vrsta koda izdavača" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Ovo nije ispravna vrsta koda izdavača." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Postavke koje utječu na distribuciju (obavijest, indeksiranje, arhiviranje, " +"plaćanje, alati za čitanje)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Preuzimanje datoteka monografije" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Prikaz stranice sa sažetkom monografije" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Sažetak monografije i preuzimanja" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Pregledi glavne stranice serije" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Pregledi glavne stranice izdavača" + +msgid "manager.tools" +msgstr "Alati" + +msgid "manager.tools.importExport" +msgstr "" +"Svi alati specifični za uvoz i izvoz podataka (izdavači, monografije, " +"korisnici)" + +msgid "manager.tools.statistics" +msgstr "" +"Alati za generiranje izvješća vezanih uz statistiku korištenja (prikaz " +"stranice indeksa kataloga, prikaz stranice sa sažetkom monografije, " +"preuzimanje datoteka monografije)" + +msgid "manager.users.availableRoles" +msgstr "Dostupne funkcije" + +msgid "manager.people.allEnrolledUsers" +msgstr "Korisnici registrirani kod ovog izdavača" + +msgid "manager.people.allPresses" +msgstr "Svi izdavači" + +msgid "manager.people.allSiteUsers" +msgstr "Registrirajte korisnika ove web stranice za ovog izdavača" + +msgid "manager.people.allUsers" +msgstr "Svi registrirani korisnici" + +msgid "manager.people.confirmRemove" +msgstr "" +"Jeste li sigurni da želite ukloniti ovog korisnika iz ovog izdavača? Ova " +"radnja uklanja osobu iz svih uloga koje su joj dodijeljene." + +msgid "manager.people.enrollExistingUser" +msgstr "Unesite postojećeg korisnika" + +msgid "manager.people.enrollSyncPress" +msgstr "Kod izdavača" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Odaberite korisnika čiji se podaci trebaju spojiti s drugim računom (npr. " +"ako netko ima dva računa). Prvi odabrani račun bit će izbrisan, njegovi " +"doprinosi, zadaci itd. bit će pripisani drugom računu." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Odaberite korisnički račun na koji želite prenijeti postojeća autorstva, " +"zadatke i sl." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Ovom sinkronizacijom svi korisnici koji su registrirani u određenoj funkciji " +"kod određenog izdavača također su registrirani u istoj funkciji kod ovog " +"izdavača. To omogućuje sinkronizaciju zajedničke korisničke grupe (npr. " +"recenzenti) između izdavača." + +msgid "manager.people.confirmDisable" +msgstr "" +"Želite li deaktivirati ovog korisnika? Korisnik se tada više neće moći " +"prijaviti.\n" +"\n" +"Korisniku možete reći razlog za deaktivaciju računa (nije obavezno)." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Nemate administrativna prava za ovaj korisnički račun. Razlog tome može biti " +"sljedeći:\n" +"
        \n" +"
      • korisnik je administrator stranice
      • \n" +"
      • korisnik je aktivan u izdavaču kojim ne upravljate
      • \n" +"
      \n" +"Ovaj zadatak mora izvršiti administrator web stranice.\n" +"\t" + +msgid "manager.system" +msgstr "Postavke sustava" + +msgid "manager.system.archiving" +msgstr "Arhivirati" + +msgid "manager.system.reviewForms" +msgstr "Obrasci recenzije" + +msgid "manager.system.readingTools" +msgstr "Alati za čitanje" + +msgid "manager.system.payments" +msgstr "Način plaćanja" + +msgid "user.authorization.pluginLevel" +msgstr "Nemate dovoljno ovlasti za upravljanje ovim dodatkom." + +msgid "manager.pressManagement" +msgstr "Izdavačka uprava" + +msgid "manager.setup" +msgstr "Postavke" + +msgid "manager.setup.aboutItemContent" +msgstr "Sadržaj" + +msgid "manager.setup.addAboutItem" +msgstr "Dodajte stavku \"O nama\"" + +msgid "manager.setup.addChecklistItem" +msgstr "Dodajte stavku \"kontrolna lista\"" + +msgid "manager.setup.addItem" +msgstr "Dodaj stavku" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Dodajte stavku koja se pojavljuje pod \"O nama\"" + +msgid "manager.setup.addNavItem" +msgstr "Dodaj stavku" + +msgid "manager.setup.addSponsor" +msgstr "Dodajte sponzorsku organizaciju" + +msgid "manager.setup.announcements" +msgstr "Obavijesti" + +msgid "manager.setup.announcements.success" +msgstr "Postavke obavijesti su ažurirane." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Uz pomoć obavijesti možete informirati čitatelje o novostima i skrenuti " +"pozornost na događanja izdavača. Obavijesti se pojavljuju na stranici " +"\"Obavijesti\"." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Dodatne informacije" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Unesite sve dodatne informacije koje bi trebale biti prikazane čitateljima " +"na stranici s obavijestima." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Pojavljuje se u 'O nama') " + +msgid "manager.setup.contextAbout" +msgstr "O nama" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Uključite sve informacije o svom izdavaču koje bi mogle zanimati čitatelje, " +"autore ili recenzente. To može uključivati vašu politiku otvorenog pristupa, " +"fokus i doseg izdavača, sponzore i povijest vašeg izdavača." + +msgid "manager.setup.contextSummary" +msgstr "Opis izdavača" + +msgid "manager.setup.copyediting" +msgstr "Urednici" + +msgid "manager.setup.coverage" +msgstr "Opseg sadržaja" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Maksimalna visina naslovne slike" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Maksimalna širina naslovne slike" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Slike će biti smanjene ako su veće od dopuštenih. Nikada se ne povećavaju " +"ili rastežu kako bi odgovarale dimenzijama." + +msgid "manager.setup.customizingTheLook" +msgstr "Korak 5. Prilagodite Look & Fell" + +msgid "manager.setup.customTags" +msgstr "Prilagođene oznake" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Prilagođene HTML oznake zaglavlja umetnute u zaglavlje svake stranice (npr. " +"meta oznake)." + +msgid "manager.setup.details" +msgstr "Detalji" + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(npr. povijest; obrazovna znanost; sociologija; psihologija; kulturalni " +"studiji; pravo)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "Navedite primjere relevantnih akademskih disciplina vaše izdavačke kuće" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Uključite sadržaj sadašnje monografije (ako je dostupan)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Sadržaj početne stranice" + +msgid "manager.setup.displayInSpotlight" +msgstr "Prikažite knjige na početnoj stranici tako da budu u centru pažnje" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Centar pažnje" + +msgid "manager.setup.displayNewReleases" +msgstr "Prikaži nova izdanja na početnoj stranici" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Nova izdanja" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Dodijelite identifikatore digitalnih objekata (DOI) monografijama, " +"poglavljima, formatima publikacija i datotekama." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Odaberite vrste radova koje je objavio ovaj izdavač kojima treba dodijeliti " +"DOI. Većina izdavača dodjeljuje DOI monografijama/poglavljima, ali možda " +"ćete htjeti dodijeliti DOI svim objavljenim stavkama." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Koristite standardne obrasce.
      %p.%m za monografije
      %p.%m.c%c za " +"poglavlja
      %p.%m.%f za formate publikacija
      %p. %m.%f.%s za datoteke." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "U koraku \"Uređivanje\"" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Format / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Odluka urednika" + +msgid "manager.setup.emailBounceAddress" +msgstr "Adresa e-pošte za povratne poruke (bounce poruke)" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Svaka e-pošta koja se ne može isporučiti rezultirat će slanjem poruke o " +"pogrešci na tu adresu e-pošte." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Za slanje e-pošte koja se ne može isporučiti na adresu za odbijanje, " +"administrator treba omogućiti opciju allow_envelope_sender u " +"konfiguracijskoj datoteci web-mjesta. Možda će biti potrebna konfiguracija " +"poslužitelja, kao što je navedeno u OMP dokumentaciji." + +msgid "manager.setup.emails" +msgstr "Identifikacija e-pošte" + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Prikaži na naslovnoj stranici" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Koliko se obavijesti pojavljuje na početnoj stranici. Ostavite polje prazno " +"da se obavijesti ne prikazuju." + +msgid "manager.setup.enablePressInstructions" +msgstr "Odobrite ovom izdavaču javno pojavljivanje na web stranici" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Prilagođeni identifikatori koriste se za identifikaciju objavljenih naslova." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Prilagođeni identifikatori koriste se za identifikaciju oznaka (npr. HTML " +"ili PDF datoteka) za objavljene sveske." + +msgid "manager.setup.enableUserRegistration" +msgstr "Korisnici se mogu registrirati kod izdavača." + +msgid "manager.setup.focusAndScope" +msgstr "Profil izdavača" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Uključite kratku prezentaciju o izdavaču(dostupnu na web stranici pod 'O " +"nama') dajući autorima, čitateljima i knjižničarima predodžbu o rasponu " +"monografija i drugih izdavačkih proizvoda koje će izdavač objaviti." + +msgid "manager.setup.focusScope" +msgstr "Profil izdavača" + +msgid "manager.setup.focusScopeDescription" +msgstr "PRIMJER HTML PODATAKA" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Za autore kako bi indeksirali svoj rad" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP se pridržava Open Archives Initiative protokola za prikupljanje metapodataka, koji " +"je standard u nastajanju za pružanje dobro indeksiranog pristupa " +"elektroničkim istraživačkih resursa na globalnoj razini. Autori će koristiti " +"odgovarajući predložak za pružanje metapodataka za svoj rukopis. Voditelj " +"izdavaštva trebao bi odabrati kategorije za indeksiranje i pokazati primjere " +"autorima kako bi im pomogao indeksirati svoja djela; pojmovi kategorije " +"međusobno su odvojeni točkom i zarezom (na primjer: pojam 1; pojam 2). Unose " +"treba uvoditi kao primjere korištenjem \"Npr.\" ili \"Na primjer\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "E-mail adresa glavne kontakt osobe je obavezna." + +msgid "manager.setup.information.description" +msgstr "" +"Ovi kratki opisi izdavača, namijenjeni knjižničarima, zainteresiranim " +"autorima i čitateljima, pojavljuju se na bočnoj traci pod \"Informacije\"." + +msgid "manager.setup.information.forReaders" +msgstr "Za čitatelje" + +msgid "manager.setup.information.success" +msgstr "Podaci o ovom izdavaču su ažurirani." + +msgid "manager.setup.institution" +msgstr "Institucija" + +msgid "manager.setup.itemsPerPage" +msgstr "Stavke po stranici" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Ograničite broj stavki (npr. podnesaka, korisnika ili zadataka za uređivanje)" +" koje se pojavljuju na popisu prije nego što se dodatne stavke pojave na " +"sljedećoj stranici." + +msgid "manager.setup.layoutInstructions" +msgstr "Smjernice za layout" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Za oblikovanje publikacija mogu se izraditi smjernice za layout i uključiti " +"u nastavku u HTML-u ili običnom tekstu. Oni će biti dostupni uredniku " +"layouta i uređivaču odjeljka na stranici za uređivanje svakog rukopisa.(" +"Budući da svaki izdavač može koristiti vlastite formate datoteka, " +"bibliografske standarde, stilske listove itd., nisu navedene standardne " +"smjernice za izgled.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Predlošci layouta" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Predlošci se mogu učitati kako bi se pojavili u Layoutu za svaki od " +"standardnih formata izdavača (npr. monografija, recenzija knjige itd.) " +"koristeći bilo koji format datoteke (npr. pdf, doc itd.) s dodanim " +"komentarima koji određuju font, veličinu , margine itd. koji će poslužiti " +"kao vodič za urednike layouta i lektore." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Datoteka predloška" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Naslov" + +msgid "manager.setup.lists" +msgstr "Popis" + +msgid "manager.setup.lists.success" +msgstr "Postavke popisa uspješno su ažurirane." + +msgid "manager.setup.look" +msgstr "Izgled" + +msgid "manager.setup.look.description" +msgstr "" +"Zaglavlje naslovne, sadržaj, zaglavlje publikacije, podnožje, navigacijska " +"traka i stilska tablica." + +msgid "manager.setup.settings" +msgstr "Postavke" + +msgid "manager.setup.masthead.success" +msgstr "Detalji o impresumu za ovog izdavača ažurirani su." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Nije učitana nijedna lista stilova." + +msgid "manager.setup.note" +msgstr "Bilješka" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Ako je rukopis zajednički napisalo nekoliko autora, molimo uključite e-mail " +"adrese svih autora u e-poruku s obavijesti autoru, a ne samo onu osobe koja " +"je predala rukopis." + +msgid "manager.setup.noUseCopyeditors" +msgstr "Uređivanje je odgovornost urednika ili urednika rubrike." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Urednik ili urednik rubrike koji je prijavljen pripremit će HTML, PDF, itd. " +"datoteke." + +msgid "manager.setup.noUseProofreaders" +msgstr "Urednik ili urednik rubrika dodijeljen rukopisu pregledava galije." + +msgid "manager.setup.numPageLinks" +msgstr "Poveznice" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Ograničite broj prikazanih poveznica koje vode na daljnje stranice na popisu." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Pristup sadržaju izdavača" + +msgid "manager.setup.onlineIssn" +msgstr "Online ISSN" + +msgid "manager.setup.policies" +msgstr "Politike" + +msgid "manager.setup.policies.description" +msgstr "" +"Fokus, stručni pregled, rubrike, privatnost, sigurnost i dodatne informacije " +"o stavkama." + +msgid "manager.setup.privacyStatement.success" +msgstr "Izjava o privatnosti je ažurirana." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"S ove stranice mogu se konfigurirati različite komponente izgleda za tisak, " +"uključujući elemente zaglavlja i podnožja, stil i temu izdavača te način na " +"koji se popisi informacija predstavljaju korisnicima." + +msgid "manager.setup.pressDescription" +msgstr "Opis izdavača" + +msgid "manager.setup.pressDescription.description" +msgstr "Kratak opis vašeg izdavača." + +msgid "manager.setup.aboutPress" +msgstr "O izdavaču" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Uključite sve informacije o svojoj publikaciji koje bi mogle biti zanimljive " +"čitateljima, autorima ili recenzentima. To može uključivati vašu politiku " +"otvorenog pristupa, fokus i opseg tiska, obavijest o autorskim pravima, " +"otkrivanje sponzorstva, povijest tiska i izjavu o privatnosti." + +msgid "manager.setup.pressArchiving" +msgstr "Arhiviranje" + +msgid "manager.setup.homepageContent" +msgstr "Sadržaj" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Početna stranica izdavača prema zadanim se postavkama sastoji od poveznica " +"za navigaciju. Dodatni sadržaj može se dodati na početnu stranicu pomoću " +"jedne ili više sljedećih opcija. Pojavljuju se na početnoj stranici " +"redoslijedom kojim su navedeni na ovoj stranici." + +msgid "manager.setup.pressHomepageContent" +msgstr "Sadržaj" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Početna stranica izdavača prema zadanim se postavkama sastoji od poveznica " +"za navigaciju. Dodatni sadržaj može se dodati na početnu stranicu pomoću " +"jedne ili više sljedećih opcija. Pojavljuju se na početnoj stranici " +"redoslijedom kojim su navedeni na ovoj stranici." + +msgid "manager.setup.contextInitials" +msgstr "Inicijali izdavača" + +msgid "manager.setup.selectCountry" +msgstr "" +"Odaberite ili državu u kojoj se izdavač nalazi, zemlju izdavača ili adresu e-" +"pošte izdavača." + +msgid "manager.setup.layout" +msgstr "Layout izdavača" + +msgid "manager.setup.pressThumbnail.description" +msgstr "Mali logo izdavača koji se može koristiti u popisima nakladnika." + +msgid "manager.setup.contextTitle" +msgstr "Ime izdavača" + +msgid "manager.setup.printIssn" +msgstr "ISSN tiskanog izdanja" + +msgid "manager.setup.proofingInstructions" +msgstr "Smjernice za ispravak" + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Članci se mogu objavljivati zajedno, kao dijelovi monografije, sa svojim " +"sadržajem. Međutim, moguće ih je objaviti i pojedinačno dodavanjem članaka u " +"sadržaj \"trenutačnog\" sveska. Pod 'O nama', obavijestite svoje čitatelje o " +"postupku koji će izdavač koristiti i koliko često će se nove publikacije " +"pojavljivati." + +msgid "manager.setup.publisher" +msgstr "Izdavač" + +msgid "manager.setup.publisherDescription" +msgstr "Naziv organizacije koja vodi izdavaštvo pojavljuje se pod 'O nama'." + +msgid "manager.setup.referenceLinking" +msgstr "" +"Povezivanje referenci (povezivanje citata iz literature s cjelovitim " +"elektroničkim tekstovima)" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Smjernice layouta za povezivanje referenci" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Za pregled sadržaja otvorenog pristupa korisnici moraju biti registrirani i " +"prijavljeni." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Korisnici moraju biti registrirani i prijavljeni za pregled web stranice " +"izdavača." + +msgid "manager.setup.reviewGuidelines" +msgstr "Smjernice za vanjsku recenziju" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Smjernice za vanjsku recenziju pružaju vanjskim recenzentima kriterije koje " +"mogu koristiti za procjenu prikladnosti dostavljenog rukopisa. Smjernice " +"također mogu sadržavati detaljne upute o tome kako napraviti uspješnu i " +"smislenu recenziju. Prilikom izrade recenzije, recenzentima se prikazuju dva " +"otvorena tekstualna okvira, prvi za recenzije koje se upućuju \"autoru i " +"uredniku\", drugi za recenzije koje se upućuju samo \"urednicima\". " +"Alternativno, voditelj izdavaštva može kreirati vlastite obrasce za procjenu " +"pod \"Obrascima za procjenu\". U svim slučajevima, međutim, urednici uvijek " +"imaju mogućnost uključiti recenzije u svoju korespondenciju s autorom." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Smjernice za internu recenziju" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Kako biste aktivirali ove opcije, administrator stranice mora aktivirati " +"scheduled_tasks opciju u OMP konfiguracijskoj datoteci. Ovo može " +"zahtijevati dodatnu konfiguraciju poslužitelja (koja ne mora biti moguća na " +"svim poslužiteljima), na način naveden u OMP dokumentaciji." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Urednici će nakon svake recenzije procjenjivati kvalitetu rada i suradnje " +"pojedinih recenzenata ocjenom između 1 i 5." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Recenzenti će imati pristup podnesenoj datoteci tek nakon što pristanu na " +"recenziju datoteke." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Pristup za recenzente" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Pristup recenziji preko poveznice" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Dodajte sigurnu poveznicu u e-mail pozivu recenzentima." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Ocjena rada recenzenata" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Podsjetnici za recenzente" + +msgid "manager.setup.reviewPolicy" +msgstr "Recenzijska politika" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Kratki opis (50-300 znakova) tiska kojeg će tražilice prikazati u " +"rezultatima pretraživanja." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Indeksiranje pretraživanja" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Kako bi olakšali pronalaženje ove stranice pomoću mrežnih tražilica, " +"priložite svoj sitemap." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Postavke indeksa tražilice su ažurirane." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Rubrike i rubrika urednika" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Ako rubrike nisu dodane, stavke će biti dodane standardnoj rubrici " +"\"monografije\".)" + +msgid "manager.setup.securitySettings" +msgstr "Postavke pristupa i sigurnosti" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Ostale opcije vezane uz sigurnost i pristup mogu se konfigurirati na " +"stranici Pristup i sigurnost." + +msgid "manager.setup.selectEditorDescription" +msgstr "Urednik tiska koji će ga pregledati tokom uređivačkog procesa." + +msgid "manager.setup.selectSectionDescription" +msgstr "Rubrika tiska čija će se stavka razmatrati." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Uvijek prikaži poveznicu na pun tekst priloga, uz naznaku ograničenja " +"pristupa." + +msgid "manager.setup.siteAccess.view" +msgstr "Pristup stranici" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Pregled sadržaja monografije" + +msgid "manager.setup.stepsToPressSite" +msgstr "Postavljanje web stranice izdavača u pet koraka" + +msgid "manager.setup.subjectExamples" +msgstr "(Npr. fotosinteza; crne rupe; mirovinska reforma; Bayesova teorija)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Ključne riječi" + +msgid "manager.setup.useCopyeditors" +msgstr "Urednik tiskovnih izdanja bit će dodijeljen za rad sa svakom prijavom." + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Navedite primjere ključnih riječi ili tema koji će služiti kao vodič autorima" + +msgid "manager.setup.submissionGuidelines" +msgstr "Smjernice za prijave" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Potrebno je označiti stavku s popisa." + +msgid "manager.setup.workflow" +msgstr "Radni proces" + +msgid "manager.setup.submissions.description" +msgstr "" +"Smjernice za autore, autorska prava i indeksiranje (uključujući " +"registraciju)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(Npr. povijesno istraživanje; prirodni eksperiment; književna analiza; " +"anketa/intervju)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Tip (Metoda/Pristup)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Navedite primjere tipova istraživanja, istraživačkih metoda i pristupa " +"relevantne za područje ovog tiska" + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Izdavač će koristiti uredništvo/recenzente." + +msgid "manager.setup.useImageTitle" +msgstr "Slika naslova" + +msgid "manager.setup.useStyleSheet" +msgstr "Tiskovni predložak" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Grafičkom uredniku bit će dodijeljen zadatak pripreme HTML, PDF itd. " +"datoteka za elektroničku publikaciju." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Prije same publikacije lektoru će biti dodijeljen zadatak provjere (zajedno " +"s autorima) oglednog primjerka." + +msgid "manager.setup.userRegistration" +msgstr "Registracija korisnika" + +msgid "manager.setup.volumePerYear" +msgstr "Broj svezaka po godini" + +msgid "manager.setup.publicationFormat.code" +msgstr "Format" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Potrebno je odabrati format." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Potrebno je dodijeliti naziv ovom formatu." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Je li ovo fizički (nedigitalni) format?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Budući da se ovaj format publikacije trenutno koristi kod monografije u " +"Vašem tisku, ne može se izbrisati." + +msgid "manager.setup.newPublicationFormat" +msgstr "Novi format publikacije" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Za izradu novog formata publikacije, ispunite donji obrazac i kliknite gumb " +"\"Stvori\"." + +msgid "manager.setup.genresDescription" +msgstr "" +"Ovi se žanrovi koriste za imenovanje datoteka i prikazani su u padajućem " +"izborniku pri učitavanju datoteka. Žanrovi označeni s ## dopuštaju korisniku " +"da poveže datoteku ili s cijelom knjigom 99Z ili s određenim poglavljem " +"prema broju (npr. 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Ovaj tisak trenutno ne prihvaća prijave. Posjetite postavke radnog procesa " +"kako biste dopustili prijave." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Spriječite korisnike da šalju nove članke izdavaču. Prijave se mogu " +"onemogućiti za pojedine serije tiska na stranici za postavke serija tiska ." + +msgid "manager.setup.genres" +msgstr "Žanrovi" + +msgid "manager.setup.newGenre" +msgstr "Novi žanr monografije" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Za izradu novog žanra, ispunite donji obrazac i kliknite gumb \"Stvori\"." + +msgid "manager.setup.deleteSelected" +msgstr "Izbriši odabrano" + +msgid "manager.setup.restoreDefaults" +msgstr "Vrati zadane postavke" + +msgid "manager.setup.prospectus" +msgstr "Prospekt" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Prospekt je dokument pripremljen za izdavača koji pomaže autoru opisati " +"predane materijale na način koji omogućuje izdavaču da odredi vrijednost " +"predanog materijala. Prospekt može uključivati mnogo stavki - od " +"marketinškog potencijala do teorijske vrijednosti; u svakom slučaju, izdavač " +"bi trebao izraditi prospekt koji odgovara njihovoj izdavačkoj agendi." + +msgid "manager.setup.submitToCategories" +msgstr "Dozvoli prijave kategorija" + +msgid "manager.setup.submitToSeries" +msgstr "Dozvoli prijave serija" + +msgid "manager.setup.categories.description" +msgstr "" +"Možete izraditi popis kategorija kako biste lakše organizirali svoje " +"publikacije. Kategorije su skupine knjiga grupirane prema predmetu, na " +"primjer Ekonomija; Književnost; Poezija; i tako dalje. Kategorije mogu " +"pripadati \"nadređenim\" kategorijama: na primjer, nadređena kategorija " +"Ekonomija može uključivati pojedinačne kategorije Mikroekonomija i " +"Makroekonomija. Posjetitelji će moći pretraživati i pregledavati tisak po " +"kategorijama." + +msgid "manager.setup.roleType" +msgstr "Tip funkcije" + +msgid "manager.setup.authorRoles" +msgstr "Funkcije autora" + +msgid "manager.setup.managerialRoles" +msgstr "Menadžerske funkcije" + +msgid "manager.setup.availableRoles" +msgstr "Dostupne funkcije" + +msgid "manager.setup.currentRoles" +msgstr "Trenutne funkcije" + +msgid "manager.setup.internalReviewRoles" +msgstr "Funkcije interne recenzije" + +msgid "manager.setup.masthead" +msgstr "Impresum" + +msgid "manager.setup.editorialTeam" +msgstr "Uredništvo" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Popis urednika, izvršnih direktora i drugih osoba povezanih s izdavačem." + +msgid "manager.setup.files" +msgstr "Datoteke" + +msgid "manager.setup.productionTemplates" +msgstr "Proizvodni predlošci" + +msgid "manager.files.note" +msgstr "" +"Napomena: Preglednik datoteka napredna je značajka koja omogućuje izravan " +"pregled i upravljanje datotekama i direktorijima povezanima s izdavačem." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

      Predložene obavijesti o autorskim pravima Creative Commons

      \n" +"

      Predložena pravila za izdavače koji nude otvoreni pristup

      \n" +"Autori koji objavljuju putem ovog izdavača suglasni su sa sljedećim uvjetima:" +"\n" +"
        \n" +"
      1. Autori zadržavaju autorska prava i daju izdavaču pravo prvog " +"objavljivanja rada i licenciraju ga Creative Commons imenovanje " +"licencom koja omogućuje drugima dijeljenje rada uz uvjet navođenja " +"autorstva i izvornog objavljivanja u ovom tisku.
      2. \n" +"
      3. Autori mogu izraditi zasebne, ugovorne aranžmane za neekskluzivnu " +"distribuciju rada objavljenog u tisku (npr. postavljanje u institucionalni " +"repozitorij ili objavljivanje u knjizi), uz navođenje da je rad izvorno " +"objavljen u ovom tisku.
      4. \n" +"
      5. Autorima je dozvoljeno i potiču se da postave objavljeni rad online (" +"npr. u institucionalnom repozitoriju ili na svojim mrežnim stranicama) prije " +"i tijekom postupka prijave, s obzirom da takav postupak može voditi " +"produktivnoj razmjeni ideja, te ranijoj i većoj citiranosti objavljenog rada " +"(Pogledajte Učinak otvorenog pristupa)" +".
      6. \n" +"
      \n" +"\n" +"

      Prijedlog za izdavače koji omogućuju odgođeni otvoren pristup

      \n" +"Autori koji objavljuju putem ovog izdavača suglasni su sa sljedećim uvjetima:" +"\n" +"
        \n" +"
      1. Autori zadržavaju autorska prava i pružaju izdavaču pravo prvog " +"objavljivanja, pri čemu će rad [NAVEDITE VREMENSKI PERIOD] po objavljivanju " +"biti podložan licenci Creative Commons imenovanje licenca koja " +"omogućuje drugima da dijele rad uz uvijet navođenja autorstva i izvornog " +"objavljivanja u ovom tisku.
      2. \n" +"
      3. Autori mogu izraditi zasebne, ugovorne aranžmane za neekskluzivnu " +"distribuciju rada objavljenog u tisku (npr. postavljanje u institucionalni " +"repozitorij ili objavljivanje u knjizi), uz navođenje da je rad izvorno " +"objavljen u ovom tisku.
      4. \n" +"
      5. Autorima je dozvoljeno i potiču se da postave objavljeni rad online (" +"npr. u institucionalnom repozitoriju ili na svojim mrežnim stranicama) prije " +"i tijekom postupka prijave, s obzirom da takav postupak može voditi " +"produktivnoj razmjeni ideja, te ranijoj i većoj citiranosti objavljenog rada " +"(Pogledajte Učinak otvorenog pristupa)" +".
      6. \n" +"
      " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Koraci: Red čekanja za prijavu > Recenzija prijava > Uređivanje " +"prijava > Sadržaj.

      \n" +"Odaberite model za upravljanje ovim aspektima uređivačkog procesa. (Da biste " +"odredili glavnog urednika i urednike serije, idite na Urednici u Upravljanje " +"tiskom.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

      Kako bi čitatelji lakše pristupili mrežno dostupnim inačicama referenci " +"koje navode autori priloga objavljenih u tisku, moguće je učiniti " +"sljedeće:

      \n" +"\n" +"
        \n" +"\t
      1. Dodaj alate za čitanje

        Glavni urednik može dodati " +"\"Traženje referenci\" alatima za čitanje koji su pridruženi objavljenim " +"prilozima. Ovo omogućava čitateljima da zalijepe naslov reference i potraže " +"ih u određenim bazama.

      2. \n" +"\t
      3. Uključi poveznice u popis literature

        Grafički " +"urednik može dodati poveznice u reference čiji se sadržaj može pronaći " +"online. Pri tome se treba ravnati prema sljedećim naputcima (koji se mogu " +"urediti).

      4. \n" +"
      " + +msgid "manager.publication.library" +msgstr "Knjižnica tiska" + +msgid "manager.setup.resetPermissions" +msgstr "Resetiraj dopuštenja za monografiju" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Jeste li sigurni da želite resetirati podatke o dopuštenjima koji su već " +"primijenjeni na monografijama?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Izjava o autorskim pravima i podaci o licenci bit će trajno priloženi " +"objavljenom sadržaju, čime se osigurava da se ti podaci neće promijeniti u " +"slučaju da izdavač promijeni pravila za nove prijave. Za resetiranje " +"informacija o pohranjenim dozvolama koje su već priložene objavljenom " +"sadržaju, upotrijebite gumb u nastavku." + +msgid "manager.setup.resetPermissions.success" +msgstr "Dozvole za monografiju uspješno su resetirane." + +msgid "grid.genres.title.short" +msgstr "Sastavnice" + +msgid "grid.genres.title" +msgstr "Sastavnice monografije" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "Pošalji kopiju primarnom kontaktu identificiranom u Postavkama tiska." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Putanja serije mora se sastojati samo od slova i brojeva." + +msgid "grid.series.pathExists" +msgstr "Putanja serije već postoji. Unesite novu putanju." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Odaberi seriju" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Odaberite seriju s kojom želite povezati ovu stavku izbornika." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Odaberi kategoriju" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "Odaberite kategoriju s kojom želite povezati ovu stavku izbornika." + +msgid "grid.series.urlWillBe" +msgstr "URL serije je: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "Statistika izdavača" + +msgid "stats.context.tooltip.text" +msgstr "" +"Broj posjetitelja koji su pregledali indeksnu stranicu izdavača i kataloga." + +msgid "stats.context.tooltip.label" +msgstr "O statistici izdavača" + +msgid "stats.context.downloadReport.description" +msgstr "" +"Preuzmite CSV/Excel spreadsheet sa statističkim podacima o korištenju za " +"ovaj tisak koji odgovaraju sljedećim parametrima." + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "Broj pregleda stranice indeksa tiska i kataloga." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Preuzmi tisak" + +msgid "stats.publications.downloadReport.description" +msgstr "" +"Preuzmite CSV/Excel spreadsheet sa statističkim podacima o monografijama " +"koji odgovaraju sljedećim parametrima." + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Preuzmi monografije" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "Broj pregleda sažetaka i preuzimanja datoteka za svaku monografiju." + +msgid "stats.publications.details" +msgstr "Detalji o monografiji" + +msgid "stats.publications.none" +msgstr "" +"Nisu pronađene monografije sa statističkim podacima o korištenju koje " +"odgovaraju ovim parametrima." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Ukupni broj pregleda kataloga po datumu" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Ukupni broj pregleda datoteke po datumu" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} od {$total} monografija" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Nijedna stavka nije odabrana." + +msgid "plugins.importexport.common.error.validation" +msgstr "Nemoguće konvertirati odabrane stavke." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Neispravan XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Eksport prijava" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Pošaljite kopiju o potvrdi prijave putem e-pošte primarnom kontaktu za ovog " +"izdavača." + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.disabled.description" +msgstr "" +"Za ovog izdavača nije definiran primarni kontakt. Možete unijeti primarni " +"kontakt u postavkama tiska." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Navedene stavke nisu pronađene." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "Navedeni korisnik, \"{$userName}\", ne postoji." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Proces nije uspio analizirati formate publikacije" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Proces nije uspio analizirati poglavlja" + +msgid "emailTemplate.variable.context.contextName" +msgstr "Naziv izdavača" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "URL naslovne stranice izdavača" + +msgid "emailTemplate.variable.context.contactName" +msgstr "Naziv primarnog kontakta za izdavača" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "Potpis izdavača putem e-pošte za automatiziranu e-poštu" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "Adresa e-pošte primarnog kontakta za izdavača" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "Naziv vrste plaćanja" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Iznos plaćanja" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "Valuta iznosa plaćanja, poput USD" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Naziv web stranice kada je hostirano više od jednog izdavača" + +msgid "doi.displayName" +msgstr "DOI" + +msgid "mailable.validateEmailContext.name" +msgstr "Potvrda e-pošte (registracija izdavača)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Ova se e-pošta automatski šalje novom korisniku prilikom registriracije " +"preko izdavača kada postavke zahtijevaju potvrdu adrese e-pošte." + +msgid "doi.manager.displayName" +msgstr "DOI" + +msgid "doi.description" +msgstr "" +"Ovaj dodatak omogućuje dodjelu Digitalnih identifikatora objekata " +"monografijama, poglavljima, formatima publikacije i datotekama u OMP-u." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Konfigurirajte DOI dodatak kako biste mogli koristiti DOI i upravljati njime " +"u OMP-u:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Odaberite objekte za publikaciju kojima će biti dodijeljen Digitalni " +"identifikator objekta (DOI):" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monografije" + +msgid "doi.manager.settings.doiPrefix" +msgstr "DOI Prefiks" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "DOI prefiks je obavezan i mora biti u obliku 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Unesite prilagođeni uzorak sufiksa za svaku vrstu publikacije. Prilagođeni " +"uzorak sufiksa može koristiti sljedeće simbole za generiranje sufiksa:" +"

      %p Inicijali izdavača
      %m ID " +"monografije
      %c ID poglavlja
      %f ID formata " +"publikacije
      %s ID datoteke
      %x Prilagođeni " +"identifikator

      Pripazite jer prilagođeni uzorci sufiksa često dovode " +"do problema pri generiranju i pohrani DOI-ja. Kada koristite prilagođeni " +"uzorak sufiksa, pažljivo provjerite mogu li urednici generirati DOI i " +"pohraniti ih agenciji za registraciju poput Crossref-a. " + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "Na primjer, press%ppub%r može stvoriti DOI poput 10.1234/pressESPub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "za monografije" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "za poglavlja" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "za formate publikacije" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "za datoteke" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Unesite DOI uzorak sufiksa za monografije." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Unesite DOI uzorak sufiksa za poglavlja." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Unesite DOI uzorak sufiksa za formate publikacije." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Unesite DOI uzorak sufiksa za datoteke." + +msgid "doi.manager.settings.doiReassign" +msgstr "Ponovno dodijeli DOI" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Ako promijenite konfiguraciju DOI-ja, to neće utjecati na DOI-je koji su već " +"dodijeljeni. Nakon što je DOI konfiguracija spremljena, koristite ovaj gumb " +"za brisanje svih postojećih DOI-ja tako da se nove postavke mogu primijeniti " +"na sve postojeće objekte." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Jeste li sigurni da želite izbrisati sve postojeće DOI-je?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "DOI mora započinjati s {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Dodijeli" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "monografiju" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "poglavlje" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "format publikacije" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "datoteku" + +msgid "doi.editor.customSuffixMissing" +msgstr "DOI nije moguće dodijeliti jer nedostaje prilagođeni sufiks." + +msgid "doi.editor.missingParts" +msgstr "" +"DOI nije moguće generirati jer jednom ili više dijelova DOI uzorka nedostaju " +"podaci." + +msgid "doi.editor.patternNotResolved" +msgstr "DOI nije moguće dodijeliti jer sadrži nedovršeni uzorak." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Ovo je pregled DOI-a. Označite kućicu i spremite obrazac kako biste " +"dodijelili DOI." + +msgid "doi.editor.assigned" +msgstr "DOI je dodijeljen ovom {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Navedeni se DOI sufiks već koristi za drugu objavljenu stavku. Unesite novi " +"DOI sufiks za svaku stavku." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Izbriši" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Jeste li sigurni da želite izbrisati postojeći DOI?" + +msgid "doi.editor.assignDoi" +msgstr "Dodijelite DOI {$pubId} ovom {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI nije moguće dodijeliti jer nedostaje prilagođeni sufiks." + +msgid "doi.editor.assignDoi.pattern" +msgstr "DOI {$pubId} nije moguće dodijeliti jer sadrži nedovršeni uzorak." + +msgid "doi.editor.assignDoi.assigned" +msgstr "DOI {$pubId} je dodijeljen." + +msgid "doi.editor.missingPrefix" +msgstr "DOI mora započinjati s {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "DOI za ovu publikaciju je {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "Ovoj publikaciji nije dodijeljen DOI." + +msgid "doi.editor.preview.chapters" +msgstr "Poglavlje: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Format publikacije: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Datoteka: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Stavka" + +msgid "doi.manager.submissionDois" +msgstr "DOI monografije" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Ova e-poruka obavještava autora da je njegova prijava u procesu slanja u " +"fazu interne recenzije." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Ova poruka e-pošte obavještava autora da je njegova prijava odbijena, prije " +"slanja za recenziju, jer prijava ne ispunjava uvjete za publikaciju kod " +"izdavača." + +msgid "manager.institutions.noContext" +msgstr "Tisak ove institucije nije pronađen." + +msgid "manager.manageEmails.description" +msgstr "Uredite poruke poslane u e-pošti ovog izdavača." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Poslano za internu recenziju" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Nova verzija stvorena" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" +"Ova e-poruka automatski obavještava dodijeljene urednike kada je izrađena " +"nova verzija prijave." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"Ova e-poruka šalje se voditeljima izdavača kada se podnese nova prijava i " +"nisu dodijeljeni urednici." + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Ova pošta se automatski šalje jednom mjesečno urednicima i menadžerima " +"naklada s pregledom sistemskih podataka." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Recenzentima se e-poštom može poslati sigurni link kojim će se prijaviti u " +"sustav." diff --git a/locale/hr/submission.po b/locale/hr/submission.po new file mode 100644 index 00000000000..f7b5b81c117 --- /dev/null +++ b/locale/hr/submission.po @@ -0,0 +1,612 @@ +# Boris Badurina , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-04 08:49+0000\n" +"Last-Translator: Boris Badurina \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Odaberi komponentu" + +msgid "submission.select" +msgstr "Odaberi prijavu" + +msgid "submission.title" +msgstr "Naslov knjige" + +msgid "submission.synopsis" +msgstr "Sažetak" + +msgid "submission.workflowType" +msgstr "Vrsta prijave" + +msgid "submission.editorName" +msgstr "{$editorName} (ur.)" + +msgid "submission.monograph" +msgstr "Monografija" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.chapter" +msgstr "Poglavlje" + +msgid "submission.chapters" +msgstr "Poglavlja" + +msgid "submission.chapter.pages" +msgstr "Stranice" + +msgid "manuscript.submission" +msgstr "Prijava rukopisa" + +msgid "manuscript.submissions" +msgstr "Prijave rukopisa" + +msgid "submission.metadata" +msgstr "Metapodaci" + +msgid "submission.chapter.editChapter" +msgstr "Uredi ovo poglavlje" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Započni novu prijavu u" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Nova prijava" + +msgid "submission.supportingAgencies" +msgstr "Tijela koja podupiru izdanje" + +msgid "grid.action.addChapter" +msgstr "Stvori novo poglavlje" + +msgid "grid.action.editChapter" +msgstr "Uredi ovo poglavlje" + +msgid "grid.action.deleteChapter" +msgstr "Obriši ovo poglavlje" + +msgid "submission.submit" +msgstr "Započni novu prijavu knjige" + +msgid "submission.submit.catalog" +msgstr "Katalog" + +msgid "submission.submit.metadata" +msgstr "Metapodaci" + +msgid "submission.submit.confirmation" +msgstr "Potvrda" + +msgid "submission.submit.nextSteps" +msgstr "Sljedeći koraci" + +msgid "submission.submit.generalInformation" +msgstr "Opće informacije" + +msgid "submission.submit.contributorRole" +msgstr "Uloga suradnika" + +msgid "submission.submit.submissionFile" +msgstr "Datoteka za podnošenje" + +msgid "submission.submit.prepare" +msgstr "Pripremiti" + +msgid "submission.submit.finishingUp" +msgstr "Dovršavanje" + +msgid "submission.submit.coverNote" +msgstr "Napomena uredniku na naslovnici" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Tisak je obaviješten o vašem podnesku i e-poštom vam je poslana potvrda za " +"vašu evidenciju. Nakon što urednik pregleda podnesak, kontaktirat će vas." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Pročitajte i označite stavke na kontrolnom popisu za predaju. Ima " +"{$itemsRemaining} stavki koje su ostale neoznačene." + +msgid "grid.chapters.title" +msgstr "Poglavlja" + +msgid "submission.complete" +msgstr "Odobreno" + +msgid "submission.editCatalogEntry" +msgstr "Unos" + +msgid "submission.catalogEntry.new" +msgstr "Dodaj unos" + +msgid "submission.submit.placement" +msgstr "Podnošenje plasmana" + +msgid "submission.incomplete" +msgstr "Čeka odobrenje" + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografija" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Katalog" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Format publikacije" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Datumi objavljivanja" + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Format publikacije \"{$publicationFormatName}\" je dostupan." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Format publikacije \"{$publicationFormatName}\" više nije dostupan." + +msgid "submission.event.publicationFormatPublished" +msgstr "Format objave \"{$publicationFormatName}\" odobren je za objavljivanje." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "Format publikacije \"{$publicationFormatName}\" više nije objavljen." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Metapodaci kataloga su ažurirani." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Format publikacije \"{$formatName}\" je uklonjen." + +msgid "submission.list.countMonographs" +msgstr "{$count} monografija" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} od {$total} monografija" + +msgid "section.any" +msgstr "Bilo koja serija" + +msgid "publication.status.published" +msgstr "Objavljeno" + +msgid "publication.datePublished" +msgstr "Datum objave" + +msgid "submission.list.saveFeatureOrder" +msgstr "Spremi narudžbu" + +msgid "submission.list.viewEntry" +msgstr "Pregledajte unos" + +msgid "publication.event.unpublished" +msgstr "Podnesak nije objavljen." + +msgid "publication.unpublish" +msgstr "Poništi objavu" + +msgid "chapter.volume" +msgstr "Svezak" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Odaberite datoteke koje treba poslati u fazu pregleda." + +msgid "publication.chapter.licenseUrl" +msgstr "URL licence" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Slanje uređenog sveska na {$language}." + +msgid "submission.workflowType.change" +msgstr "Promjeni" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Zbornik" + +msgid "submission.chapter.addChapter" +msgstr "Stvori novo poglavlje" + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Svako poglavlje može imati svoj datum objavljivanja." + +msgid "workflow.review.externalReview" +msgstr "Vanjski pregled" + +msgid "submission.list.monographs" +msgstr "Monografije" + +msgid "publication.publishedIn" +msgstr "Objavljeno u {$issueName}." + +msgid "publication.publish" +msgstr "Objaviti" + +msgid "submission.workflowType.description" +msgstr "" +"Monografija je djelo koje je u cijelosti napisao jedan ili više autora. U " +"zborniku svako poglavlje ima različite autore (podaci o poglavljima unose se " +"kasnije tijekom postupka)" + +msgid "submission.workflowType.editedVolume" +msgstr "Zbornik: autori su povezani sa svojim zasebnim poglavljima." + +msgid "submission.workflowType.authoredWork" +msgstr "Monografija: autori su povezani s knjigom kao cjelinom." + +msgid "submission.published" +msgstr "Spremno za objavu" + +msgid "submission.fairCopy" +msgstr "Finalna kopija" + +msgid "submission.artwork.permissions" +msgstr "Dopuštenja" + +msgid "submission.copyedit" +msgstr "Uređivanje" + +msgid "submission.publicationFormats" +msgstr "Formati izdanja" + +msgid "submission.proofs" +msgstr "Inačice" + +msgid "submission.download" +msgstr "Preuzmi" + +msgid "submission.sharing" +msgstr "Podijeli" + +msgid "submissions.queuedReview" +msgstr "U postupku recenzije" + +msgid "submission.submit.upload" +msgstr "Učitaj prijavu" + +msgid "author.volumeEditor" +msgstr "Urednik sveska" + +msgid "author.isVolumeEditor" +msgstr "Označi ovog autora kao urednika sveska." + +msgid "submission.submit.seriesPosition" +msgstr "Položaj serije" + +msgid "submission.round" +msgstr "Krug {$round}" + +msgid "submission.submit.seriesPosition.description" +msgstr "Primjeri: 2. knjiga, 2. svezak" + +msgid "submission.submit.privacyStatement" +msgstr "Izjava o privatnosti" + +msgid "submission.submit.userGroup" +msgstr "Podnesi u moju svrhu kao..." + +msgid "submission.submit.noContext" +msgstr "Tisak ovog podneska nije pronađen." + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Izbriši prenesene podatke s Copyeditora" + +msgid "submission.catalogEntry.add" +msgstr "Dodaj odabrano u katalog" + +msgid "submission.catalogEntry.select" +msgstr "Odaberite monografije koje želite dodati u katalog" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Morate odabrati barem jednu monografiju koju želite dodati u katalog." + +msgid "submission.catalogEntry.confirm" +msgstr "Dodajte ovu knjigu u javni katalog" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Molimo potvrdite da je podnesak spreman za stavljanje u katalog." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Ova je monografija spremna za uvrštavanje u javni katalog." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Pregledaj podnesak" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Sva će poglavlja koristiti datum izdanja monografije." + +msgid "submission.event.metadataPublished" +msgstr "Metapodaci monografije odobreni su za tisak." + +msgid "submission.event.metadataUnpublished" +msgstr "Metapodaci monografije više se ne objavljuju." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "Ažurirani su metapodaci formata publikacije za \"{$formatName}\"." + +msgid "submission.event.publicationFormatCreated" +msgstr "Izrađen je format publikacije \"{$formatName}\"." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Pošaljite na vanjski pregled" + +msgid "submission.upload.fileContents" +msgstr "Komponenta podnošenja" + +msgid "submission.dependentFiles" +msgstr "Zavisne datoteke" + +msgid "submission.metadataDescription" +msgstr "" +"Ove se specifikacije temelje na skupu metapodataka Dublin Core, međunarodnom " +"standardu koji se koristi za opisivanje sadržaja medija." + +msgid "submission.list.orderFeatures" +msgstr "Značajke narudžbe" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Povucite i ispustite ili dodirnite gumbe gore i dolje za promjenu " +"redoslijeda značajki na početnoj stranici." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Povucite i ispustite ili dodirnite gumbe gore i dolje da biste promijenili " +"redoslijed značajki u {$title}." + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Naslova" + +msgid "publication.catalogEntry" +msgstr "Unos u katalog" + +msgid "publication.catalogEntry.success" +msgstr "Podaci o unosu u katalog su ažurirani." + +msgid "publication.invalidSeries" +msgstr "Niz za ovu publikaciju nije moguće pronaći." + +msgid "publication.inactiveSeries" +msgstr "{$series} (neaktivno)" + +msgid "publication.required.issue" +msgstr "" +"Publikacija mora biti dodijeljena broju prije nego što se može objaviti." + +msgid "publication.publish.confirmation" +msgstr "" +"Svi uvjeti za objavu su ispunjeni. Jeste li sigurni da ovaj unos u katalogu " +"želite učiniti javnim?" + +msgid "publication.scheduledIn" +msgstr "Zakazano za objavljivanje u {$issueName}." + +msgid "submission.publication" +msgstr "Objavljivanje" + +msgid "submission.status.scheduled" +msgstr "Zakazano" + +msgid "publication.status.unscheduled" +msgstr "Neplanirano" + +msgid "submission.publications" +msgstr "Publikacije" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Godina autorskih prava bit će postavljena automatski kada se ovo objavi u " +"izdanju." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Godina autorskih prava bit će postavljena automatski na temelju datuma " +"objavljivanja." + +msgid "publication.editDisabled" +msgstr "Ova verzija je objavljena i ne može se uređivati." + +msgid "publication.event.published" +msgstr "Podnesak je objavljen." + +msgid "publication.event.scheduled" +msgstr "Podnesak je bio zakazan za objavu." + +msgid "publication.event.versionPublished" +msgstr "Objavljena je nova verzija." + +msgid "publication.event.versionScheduled" +msgstr "Zakazano je objavljivanje nove verzije." + +msgid "publication.event.versionUnpublished" +msgstr "Verzija je uklonjena iz objave." + +msgid "publication.invalidSubmission" +msgstr "Podnesak za ovu publikaciju nije moguće pronaći." + +msgid "publication.publish.requirements" +msgstr "" +"Sljedeći zahtjevi moraju biti ispunjeni prije nego što se ovo može objaviti." + +msgid "publication.required.declined" +msgstr "Odbijeni podnesak ne može se objaviti." + +msgid "publication.required.reviewStage" +msgstr "" +"Podnesak mora biti u fazi uređivanja ili produkcije prije nego što se može " +"objaviti." + +msgid "submission.license.description" +msgstr "" +"Licenca će se automatski postaviti na {$licenseName} kada ovo bude objavljeno." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Autorska prava bit će automatski dodijeljena {$copyright} kada se ovo objavi." + +msgid "submission.copyrightOther.description" +msgstr "Dodijelite autorska prava za objavljene podneske sljedećoj strani." + +msgid "publication.unpublish.confirm" +msgstr "Jeste li sigurni da ne želite ovo objaviti?" + +msgid "publication.unschedule.confirm" +msgstr "Jeste li sigurni da ne želite ovo zakazati za objavu?" + +msgid "publication.version.details" +msgstr "Pojedinosti o publikaciji za verziju {$version}" + +msgid "submission.queries.production" +msgstr "Rasprave o proizvodnji" + +msgid "publication.chapter.landingPage" +msgstr "Stranica poglavlja" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Pokažite ovo poglavlje na vlastitoj stranici i povežite se na tu stranicu iz " +"sadržaja knjige." + +msgid "publication.publish.success" +msgstr "Status publikacije uspješno je promijenjen." + +msgid "submission.withoutChapter" +msgstr "{$name} — Bez ovog poglavlja" + +msgid "submission.chapterCreated" +msgstr " — Poglavlje stvoreno" + +msgid "chapter.pages" +msgstr "Stranice" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Pošaljite na interni pregled" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "Ovaj je podnesak spreman za slanje na interni pregled." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} je poslao ovaj podnesak u fazu internog pregleda." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Poslano na interni pregled" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"Podnesak, {$title}, poslan je u fazu internog pregleda. Autor je " +"obaviješten, osim ako niste odlučili preskočiti taj e-mail." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Pošaljite e-mail autorima kako biste ih obavijestili da će ovaj podnesak " +"biti poslan na interni pregled. Ako je moguće, dajte autorima neke naznake o " +"tome koliko bi dugo mogao trajati proces internog pregleda i kada bi trebali " +"očekivati da će se ponovno čuti s urednicima." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "Odaberite datoteke koje treba poslati u fazu internog pregleda." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "{$editorName} je poslao ovaj podnesak u fazu vanjskog pregleda." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Poslano na vanjski pregled" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "Podnesak, {$title}, poslan je u fazu vanjskog pregleda." + +msgid "editor.submission.decision.backToReview" +msgstr "Natrag na pregled" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Vratite odluku o prihvaćanju ovog podneska i pošaljite ga natrag u fazu " +"pregleda." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} poništio je odluku o prihvaćanju ovog podneska i vratio ga u " +"fazu pregleda." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Poslano natrag na pregled" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "Podnesak, {$title}, poslan je natrag u fazu pregleda." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Pošaljite e-mail autorima da ih obavijestite da se njihov podnesak vraća u " +"fazu pregleda. Objasnite zašto je donesena ovakva odluka i obavijestite " +"autora o tome koja će se daljnja revizija poduzeti." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Pošaljite e-mail autorima kako biste ih obavijestili da će ovaj podnesak " +"biti poslan na recenziju. Ako je moguće, dajte autorima neke naznake o tome " +"koliko bi proces recenzije mogao trajati i kada bi trebali očekivati da će " +"se ponovno čuti s urednicima." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Preporuka Pošalji na vanjski pregled" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "Preporučamo da se ovaj podnesak pošalje u fazu vanjskog pregleda." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} je preporučio da se ovaj podnesak pošalje u fazu vanjske " +"recenzije." + +msgid "doi.submission.incorrectContext" +msgstr "" +"Nije moguće izraditi DOI za sljedeći podnesak: {$pubObjectTitle}. Ne postoji " +"u trenutnom kontekstu tiska." + +msgid "publication.chapterDefaultLicenseURL" +msgstr "URL licence zadanih poglavlja" + +msgid "submission.copyright.description" +msgstr "Molimo pročitajte uvjete autorskih prava za prijave za ovaj tisak." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Ne smijete se prijaviti za ovaj tisak jer autori moraju biti prijavljeni od " +"strane uredništva. Ako mislite da je ovo pogreška, kontaktirajte {$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} ne prihvaća prijave za seriju {$section}. Ako vam je potrebna " +"pomoć pri obnavljanju vašeg podneska, kontaktirajte {$name}." + +msgid "submission.sectionNotFound" +msgstr "Serije za ovaj podnesak nije bilo moguće pronaći." + +msgid "submission.sectionRestrictedToEditors" +msgstr "Samo uredništvo može prijaviti ovu seriju." + +msgid "submission.wizard.submitting.monograph" +msgstr "Slanje monografije." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "Slanje monografije na {$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Slanje uređenog sveska." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Navedite sva poglavlja ovog podneska. Ako šaljete uređeni svezak, provjerite " +"jesu li u svakom poglavlju navedeni suradnici za to poglavlje." diff --git a/locale/hr_HR/admin.po b/locale/hr_HR/admin.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/hr_HR/admin.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/hu/admin.po b/locale/hu/admin.po new file mode 100644 index 00000000000..d0bd61662dc --- /dev/null +++ b/locale/hu/admin.po @@ -0,0 +1,176 @@ +# Molnár Tamás , 2021. +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Hungarian " +"\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Tárolt kiadók" + +msgid "admin.settings.appearance.success" +msgstr "A webhely megjelenítési beállításai sikeresen frissítve." + +msgid "admin.settings.config.success" +msgstr "A webhely konfigurációs beállításai sikeresen frissítve." + +msgid "admin.settings.info.success" +msgstr "A webhely információi sikeresen frissítve." + +msgid "admin.settings.redirect" +msgstr "Kiadó átirányítás" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"A főoldalra irányuló kérések át lesznek irányítva ehhez a kiadóhoz. Ez akkor " +"hasznos például, ha a webhely csak egy kiadót szolgáltat." + +msgid "admin.settings.noPressRedirect" +msgstr "Ne irányítsa át" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Ez lesz az alapértelmezett nyelv a webhely és az összes tárolt kiadó számára." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Válassza ki az összes támogatott nyelvet a webhely számára. A kiválasztott " +"nyelvek elérhetőek lesznek bármelyik tárolt kiadó számára, és a " +"nyelvválasztó menüben is megjelennek minden oldalon (ez felülbírálható az " +"egyes kiadók saját oldalain). Ha több nyelv nem lesz kiválasztva, akkor a " +"nyelvválasztó menü nem jelenik meg és a kibővített nyelvi beállítások sem " +"lesznek elérhetőek a kiadók számára." + +msgid "admin.locale.maybeIncomplete" +msgstr "A *-gal jelölt fordítások befejezetlenek lehetnek." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Biztos, hogy eltávolítja ezt a nyelvet? Ez hatással lesz az összes tárolt " +"kiadóra, ahol használják ezt a nyelvet." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Válasszon ki további nyelveket telepítésre a rendszer számára. A nyelveket " +"telepíteni kell, mielőtt a kiadók használhatnák őket. Lásd az OMP " +"dokumentációt arról, hogy hogyan lehet új nyelveket telepíteni." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Biztosan letiltja ezt a nyelvet? Ez hatással lehet azokra a kiadókra, akik " +"használják ezt a nyelvet." + +msgid "admin.systemVersion" +msgstr "OMP verzió" + +msgid "admin.systemConfiguration" +msgstr "OMP konfiguráció" + +msgid "admin.presses.pressSettings" +msgstr "Kiadó beállítások" + +msgid "admin.presses.noneCreated" +msgstr "Nem lettek kiadók létrehozva." + +msgid "admin.contexts.create" +msgstr "Kiadó létrehozása" + +msgid "admin.contexts.form.titleRequired" +msgstr "Egy cím megadása szükséges." + +msgid "admin.contexts.form.pathRequired" +msgstr "Egy útvonal megadása szükséges." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Az útvonal csak betűket számokat, valamint _ és - karaktereket tartalmazhat. " +"Betűvel vagy számmal kell kezdődnie és végződnie." + +msgid "admin.contexts.form.pathExists" +msgstr "A megadott útvonalat már egy másik kiadó használja." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Az elsődleges nyelvet a kiadó által támogatott nyelvek közül kell " +"kiválasztani." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} sikeresen létrehozva." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} sikeresen szerkesztve." + +msgid "admin.contexts.contextDescription" +msgstr "Kiadó leírása" + +msgid "admin.presses.addPress" +msgstr "Kiadó hozzáadása" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

      MEGJEGYZÉS!\n" +"

      A rendszer nem tudta automatikusan felülírni a konfigurációs fájlt. A " +"konfigurációs módosítások alkalmazásához meg kell nyitnia a config.inc." +"php egy megfelelő szövegszerkesztő programban, és cserélje le ennek " +"tartalmát az alábbi szövegmező tartalmára.

      " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Válassza ki azokat a kiadókat, amelyeknek engedélyezni kell a tömeges e-" +"mailek küldését. Ha ez a funkció engedélyezve van, a kiadó menedzser képes " +"lesz e-mailt küldeni a kiadónál regisztrált összes felhasználónak.

      A " +"funkció kéretlen e-mailek küldésére való használata egyes joghatóságok " +"spamellenes törvényeit sértheti, és a szerver e-mailjeit spamként " +"blokkolhatják. Kérjen műszaki tanácsot, mielőtt engedélyezné ezt a funkciót, " +"és fontolja meg a kiadó menedzserekkel való konzultációt a funkció megfelelő " +"használatának biztosítása érdekében.

      A funkció további korlátozásai " +"minden egyes kiadó számára engedélyezhetők a Tárolt kiadók<> listában található beállításvarázslóval." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"A sajtómenedzser nem tud tömeges e-maileket küldeni az alább kiválasztott " +"szerepkörök egyikének sem. Ezzel a beállítással korlátozhatja az e-mailes " +"értesítési funkcióval való visszaélést. Biztonságosabb lehet például " +"letiltani a tömeges e-maileket az olvasók, szerzők vagy más nagy " +"felhasználói csoportok számára, amelyek nem járultak hozzá az ilyen e-mailek " +"fogadásához.

      A tömeges e-mailek funkció teljesen letiltható a " +"szerkesztőség számára a
      Adminisztráció > " +"Webhelybeállítások oldalon ." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"A tömeges e-mail küldési funkció le lett tiltva ennél a kiadónál. Itt lehet " +"engedélyezni ezt a funkciót Adminisztráció > " +"Webhelybeállítások ." + +msgid "admin.siteManagement.description" +msgstr "" +"Hozzáadhat, szerkeszthet vagy eltávolíthat kiadókat erről az oldalról, és " +"kezelheti az egész honlapra vonatkozó beállításokat." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "" diff --git a/locale/hu/author.po b/locale/hu/author.po new file mode 100644 index 00000000000..28d0fbfe7cc --- /dev/null +++ b/locale/hu/author.po @@ -0,0 +1,20 @@ +# Molnár Tamás , 2021. +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-02-16 11:26+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "author.submit.notAccepting" +msgstr "Ez a kiadó jelenleg nem fogad el új beküldéseket." + +msgid "author.submit" +msgstr "Új beküldés" diff --git a/locale/hu/default.po b/locale/hu/default.po new file mode 100644 index 00000000000..ba235e92e43 --- /dev/null +++ b/locale/hu/default.po @@ -0,0 +1,196 @@ +# Fülöp Tiffany , 2021, 2022. +# Molnár Tamás , 2021. +# Kiss Jázmin , 2021. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-26 13:56+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "default.genres.appendix" +msgstr "Függelék" + +msgid "default.genres.bibliography" +msgstr "Irodalomjegyzék" + +msgid "default.genres.manuscript" +msgstr "Könyv kézirat" + +msgid "default.genres.chapter" +msgstr "Fejezet kézirat" + +msgid "default.genres.glossary" +msgstr "Szójegyzék" + +msgid "default.genres.index" +msgstr "Index" + +msgid "default.genres.preface" +msgstr "Előszó" + +msgid "default.genres.prospectus" +msgstr "Tájékoztató" + +msgid "default.genres.table" +msgstr "Táblázat" + +msgid "default.genres.figure" +msgstr "Ábra" + +msgid "default.genres.photo" +msgstr "Kép" + +msgid "default.genres.illustration" +msgstr "Illusztráció" + +msgid "default.genres.other" +msgstr "Egyéb" + +msgid "default.groups.name.manager" +msgstr "Kiadó menedzser" + +msgid "default.groups.plural.manager" +msgstr "Kiadó menedzserek" + +msgid "default.groups.abbrev.manager" +msgstr "KM" + +msgid "default.groups.name.editor" +msgstr "Kiadó szerkesztő" + +msgid "default.groups.plural.editor" +msgstr "Kiadó szerkesztők" + +msgid "default.groups.abbrev.editor" +msgstr "KSZ" + +msgid "default.groups.name.sectionEditor" +msgstr "Sorozatszerkesztő" + +msgid "default.groups.plural.sectionEditor" +msgstr "Sorozatszerkesztők" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "SE" + +msgid "default.groups.name.subscriptionManager" +msgstr "Előfizetés menedzser" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Előfizetés menedzserek" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "ElőfM" + +msgid "default.groups.name.chapterAuthor" +msgstr "Fejezet szerző" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Fejezet szerzők" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "FSZ" + +msgid "default.groups.name.volumeEditor" +msgstr "Kötetszerkesztő" + +msgid "default.groups.plural.volumeEditor" +msgstr "Kötetszerkesztők" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "KotetSZ" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

      A kiadónál megadott nevek és email címek kizárólag a kiadó által " +"megjelölt célokra kerülnek felhasználásra, és azok más célra vagy másik fél " +"számára nem lesznek rendelkezésre bocsájtva.

      " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"A kiadó azonnali nyílt hozzáférést biztosít tartalmaihoz, az az elv alapján, " +"hogy a kutatások szabadon hozzáférhetővé tétele a nyilvánosság számára " +"elősegíti a tudás nagyobb mértékű globális cseréjét." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Arra biztatjuk olvasóinkat, hogy iratkozzanak fel a megjelenésről értesítő " +"szolgáltatásra. Használják a kezdőoldal tetején található Regisztráció linket. A " +"regisztráció eredményeként az olvasó e-mailben megkapja az új monográfiák " +"tartalomjegyzéket. Ez a lista azt is lehetővé teszi a kiadó számára, hogy " +"bizonyos szintű támogatást vagy olvasottságot igényeljen. Lásd az Adatvédelmi nyilatkozatot, ami biztosítja az olvasókat arról, hogy " +"nevüket és e-mail címüket nem használják fel más célokra." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Érdeklődik a megjelentetés iránt ennél a kiadónál? Javasoljuk, hogy olvassa " +"el a Kiadóról szóló oldalt, " +"ahol a kiadó szabályzatát és a Szerzői útmutatót találja. A szerzőknek a " +"beküldéshez regisztrálniuk kell, vagy ha már regisztráltak, egyszerűen bejelentkezhetnek és megkezdhetik az 5 " +"lépéses beküldési folyamatot." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Arra biztatjuk a kutató könyvtárakat, hogy ezt a kiadót vegyék fel " +"könyvtáruk elektronikus állományába. Mint ahogy ez a nyílt forráskódú " +"publikációs rendszer alkalmas arra is, hogy a könyvtárak elérhetővé tegyék " +"saját oktatóik számára azokat a kiadókat is, amelyekben szerkesztési " +"munkákat vállalnak (lásd: Open Monograph " +"Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Külső szakmai lektor" + +msgid "default.groups.plural.externalReviewer" +msgstr "Külső szakmai lektorok" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "KSZL" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "A szöveg betartja azokat a stilisztikai és bibliográfiai irányelveket, " +#~ "amelyek a Szerzői útmutatóban " +#~ "kerültek meghatározásra, és amelyek a Kiadóról menüpont alatt találhatóak." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "A szöveg szimpla sorközzel, 12 pontos betűmérettel és dőlt betűkkel lett " +#~ "szerkesztve, aláhúzások alkalmazása nélkül (kivéve az URL címek " +#~ "esetében), és az összes illusztráció, ábra és táblázat a szöveg megfelelő " +#~ "pontjain került elhelyezésre, nem pedig a szöveg végén található." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Ahol rendelkezésre áll, ott a hivatkozások URL címe is megadásra került." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "A beküldött fájl Miscrosoft Word, RTF vagy OpenDocument fájl formátumban " +#~ "van." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "A beküldött anyag korábban nem került publikálásra és jelenleg sem áll " +#~ "elbírálás alatt más kiadónál (vagy ezzel kapcsolatban magyarázatot " +#~ "mellékel a megjegyzéseknél a szerkesztőnek)." diff --git a/locale/hu/editor.po b/locale/hu/editor.po new file mode 100644 index 00000000000..47a84e8e058 --- /dev/null +++ b/locale/hu/editor.po @@ -0,0 +1,216 @@ +# Fülöp Tiffany , 2021, 2022. +# Molnár Tamás , 2021. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-28 19:24+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Archivált beküldések" + +msgid "editor.monograph.cancelReview" +msgstr "Felkérés megszakítása" + +msgid "editor.monograph.clearReview" +msgstr "Szakmai lektor törlése" + +msgid "editor.monograph.enterRecommendation" +msgstr "Ajánlás megadása" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Adjon meg szakmai lektori ajánlást" + +msgid "editor.monograph.recommendation" +msgstr "Ajánlás" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Válasszon a fenti szakmai lektorok közül, majd a folytatáshoz nyomja meg a " +"\"Szakmai lektor kiválasztása\" gombot." + +msgid "editor.monograph.replaceReviewer" +msgstr "Szakmai lektor cseréje" + +msgid "editor.monograph.editorToEnter" +msgstr "A szerkesztő javaslatot/hozzászólást írhat a bírálónak" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Szakmai bírálat feltöltése" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Szakmai értékelés lehetőségek" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Korrektúra fájlok" + +msgid "editor.monograph.internalReview" +msgstr "Belső szakmai lektorálás indítása" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Válassza ki lentről azokat a fájlokat, amiket a belső szakmai lektorálási " +"szakaszba továbbküld." + +msgid "editor.monograph.externalReview" +msgstr "Külső szakmai lektorálás indítása" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Végleges kézirat fájlok kiválasztása" + +msgid "editor.monograph.final.currentFiles" +msgstr "Jelenlegi végleges kézirat fájlok" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Jelenlegi fájlok" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Üzenet a felhasználónak" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Beküldési műveletek" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Általános beküldési műveletek és lehetőségek." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Szakasz műveletek" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Egy adott szakaszhoz tartozó lehetőségek, például fájlok feltöltése vagy " +"felhasználók hozzáadása." + +msgid "editor.monograph.legend.itemActions" +msgstr "Tételműveletek" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Az egyes fájlokkal kapcsolatos műveletek és lehetőségek." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Megtekintheti és kezelheti a beküldés katalógus tételét, beleértve a " +"metaadatokat és a közzétételi formátumokat" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Megtekintheti és kezelheti a beküldött anyag metaadatait, jegyzeteit, " +"értesítéseit és előzményeit" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Megtekintheti és kezelheti a beküldött anyag résztvevőit: szerzőket, " +"szerkesztőket, tervezőket és egyebeket" + +msgid "editor.monograph.legend.add" +msgstr "Fájl feltöltése a szakaszba" + +msgid "editor.monograph.legend.add_user" +msgstr "Felhasználó hozzáadása a szakaszhoz" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Megtekintheti és elérheti a tételbeállításokat, például az információt és a " +"törlési lehetőségeket" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"További információ: fájljegyzetek, értesítési lehetőségek és előzmények" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Fájlinformáció: jegyzetek, értesítési lehetőségek és előzmények (Még " +"nincsenek jegyzetek hozzáadva)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Fájlinformáció: jegyzetek, értesítési lehetőségek és előzmények " +"(Rendelkezésre állnak jegyzetek)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Fájlinformáció: jegyzetek, értesítési lehetőségek és előzmények (Új " +"megjegyzések hozzáadva az utolsó látogatás óta)" + +msgid "editor.monograph.legend.edit" +msgstr "Tétel szerkesztése" + +msgid "editor.monograph.legend.delete" +msgstr "Tétel törlése" + +msgid "editor.monograph.legend.in_progress" +msgstr "A művelet folyamatban van, vagy még nem fejeződött be" + +msgid "editor.monograph.legend.complete" +msgstr "A művelet befejeződött" + +msgid "editor.monograph.legend.uploaded" +msgstr "Fájl feltöltve a táblázat oszlop címében megjelölt szerep alapján" + +msgid "editor.submission.introduction" +msgstr "" +"A Beküldés szakaszban a szerkesztő a benyújtott fájlokkal való konzultációt " +"követően kiválasztja a megfelelő műveletet (amely magában foglalja a szerző " +"értesítését is): Küldés Belső szakmai lektorálásra (magában foglalja a " +"fájlok kiválasztását a Belső szakmai lektoráláshoz); Küldés Külső szakmai " +"lektorálásra (magában foglalja a fájlok kiválasztását a Külső szakmai " +"lektoráláshoz); Beküldött anyag elfogadása (magában foglalja a fájlok " +"kiválasztását a Szerkesztési szakaszhoz); vagy a Beküldött anyag " +"visszautasítását (archiválás)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Tisztázat" + +msgid "editor.monograph.proofs" +msgstr "Kefelenyomatok" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Jóváhagyás és Közzététel" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Különböző kiadványformátumok, mint például keménytáblás, puhafedeles és " +"digitális tölthetőek fel az alábbi Kiadványformátumok részben. Az alábbi " +"kiadványformátumok felületet használhatja ellenőrző listaként ahhoz, hogy " +"mit kell még tennie a kiadványformátum közzétételéhez." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Adjon hozzá olyan kiadványformátumokat (pl.: digitális, papírkötésű), " +"amelyekhez a tördelőszerkesztő elkészíti a kefelenyomatokat a " +"korrektúrázáshoz. A Kefelenyomatokat ellenőrizni kell, hogy " +"jóváhagyottak-e, és a Katalógus tétel formátumát is ellenőrizni " +"kell a könyv katalógus tételében, mielőtt a formátum Elérhetővé " +"válna (azaz közzétételre kerülne)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Letöltési feltételek beállítása" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Feltételek beállítása" + +msgid "editor.monograph.proof.addNote" +msgstr "Válasz hozzáadása" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Bármelyik fájlt, amit már feltöltöttek a munkafolyamat valamelyik " +"szakaszában hozzá lehet adni a Kefelenyomat fájlok listájához, ha bejelöli " +"az alábbi jelölőnégyzetet, és rákattint a Keresés gombra: az összes " +"rendelkezésre álló fájl megjelenik és kiválasztható a felvételhez." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"A '{$publicIdentifier}' nyilvános azonosító már létezik egy másik azonos " +"típusú objektumhoz rendelve. Kérjük, válasszon egyedi azonosítókat az azonos " +"típusú objektumokhoz." + +msgid "editor.submissions.assignedTo" +msgstr "Szerkesztőhöz rendelve" diff --git a/locale/hu/emails.po b/locale/hu/emails.po new file mode 100644 index 00000000000..e5ce70c5651 --- /dev/null +++ b/locale/hu/emails.po @@ -0,0 +1,529 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-29 22:43+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Jelszó visszaállítás megerősítése" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"A jelszava visszaállításával kapcsolatban kaptunk egy kérést a(z) " +"{$siteTitle} oldaltól.
      \n" +"
      \n" +"Ha nem Ön küldte, akkor hagyja figyelmen kívül ezt a levelet és a jelszava " +"nem fog megváltozni. Ha szeretné visszaállítani a jelszavát, kattintson az " +"alábbi URL-re.
      \n" +"
      \n" +"Jelszavam visszaállítása: {$passwordResetUrl}
      \n" +"
      \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Regisztráció a kiadónál" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Ön mostantól a(z) {$contextName} felhasználójaként van regisztrálva. Ez a " +"levél tartalmazza a felhasználónevét és jelszavát, amelyre a kiadónál " +"végzett összes munkafolyamatnál szüksége lesz az oldalon. Bármikor " +"eltávolíttathatja magát a felhasználói listáról, ha kapcsolatba lép velünk." +"
      \n" +"
      \n" +"Felhasználónév: {$recipientUsername}
      \n" +"Jelszó: {$password}
      \n" +"
      \n" +"Köszönettel,
      \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Fiók megerősítése" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Létrehozott egy fiókot a(z) {$contextName} névvel, de mielőtt használni " +"kezdené szükség van az e-mail fiókjának megerősítésére. Ehhez kövesse az " +"alábbi linket:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Köszönettel,
      \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Fiók megerősítése" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Létrehozott egy fiókot a(z) {$siteTitle} oldalnál, de mielőtt elkezdené " +"használni meg kell erősítenie az e-mail fiókját. Ehhez kövesse az alábbi " +"linket:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Köszönettel,
      \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Regisztráció szakmai lektorként az adott oldalnál: {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"A szakértelmének fényében vettük a bátorságot és regisztráltuk a nevét a " +"szakmai lektor névlistára a(z) {$contextName} oldalnál. Ez nem von maga után " +"semmilyen kötelezettségvállalást az Ön részéről, hanem egyszerűen lehetővé " +"teszi számunkra, hogy szakmai lektorálási felkéréssel keressük meg Önt. Ha " +"szakmai lektorálási felkérés érkezik az Ön számára, akkor lehetősége van " +"megnézni a kérdéses beadvány címét és absztraktját, és minden esetben " +"lehetősége lesz arra, hogy elfogadja vagy elutasítsa a felkérést. Továbbá " +"bármikor kérheti, hogy távolítsuk el a nevét a szakmai lektor névlistáról." +"
      \n" +"
      \n" +"Készítettünk Önnek egy felhasználónevet és jelszót, amelyet a kiadó " +"oldalánál végzett valamennyi munkafolyamatnál használhat. Ha akarja, például " +"frissítheti a profilját, beleértve a szakterületeit is.
      \n" +"
      \n" +"Felhasználónév: {$recipientUsername}
      \n" +"Jelszó: {$password}
      \n" +"
      \n" +"Köszönettel,
      \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Szerkesztői hozzárendelés" + +msgid "emails.editorAssign.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"A benyújtott "{$submissionTitle}" című kézirat a(z) {$contextName} " +"oldalnál Önhöz lett hozzárendelve, hogy szerkesztőként vigye végig a " +"szerkesztési munkafolyamatot.
      \n" +"
      \n" +"Kézirat URL: {$submissionUrl}
      \n" +"Felhasználónév: {$recipientUsername}
      \n" +"
      \n" +"Köszönettel," + +msgid "emails.reviewRequest.subject" +msgstr "Kézirat szakmai lektorálásnak kérése" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Tisztelt {$recipientName}!
      \n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"Kérjük, jelentkezzen be a kiadó honlapjára {$ responseDueDate} -ig, hogy " +"jelezze, vállalja -e a szakmai lektorálást vagy sem, valamint, hogy " +"hozzáférjen a beküldött anyaghoz, és rögzítse lektori véleményét és " +"javaslatait.
      \n" +"
      \n" +"A szakmai lektorálás elküldésének határideje: {$reviewDueDate}.
      \n" +"
      \n" +"Kézirat URL: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Felhasználónév: {$recipientUsername}
      \n" +"
      \n" +"Köszönjük, hogy fontolóra veszi kérésünket.
      \n" +"
      \n" +"
      \n" +"Üdvözlettel,
      \n" +"{$signature}
      \n" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Kézirat szakmai lektorálásának kérése" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Tisztelt {$recipientName}!
      \n" +"Szeretnénk emlékeztetni, hogy várjuk Öntől a(z) "{$submissionTitle}," +"" kézirattal kapcsolatos lektori véleményét a(z) {$contextName} " +"oldalánál. Reméljük, hogy végezni tud a megadott {$responseDueDate} " +"határidőig. Ez az email automatikusan generálódik és a határidő lejártakor " +"kerül küldésre.\n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"Kérjük, jelentkezzen be az oldalra és jelezze, hogy tudja-e vállalni a " +"szakmai lektorálást vagy sem, itt a kézirathoz is hozzáfér és a lektori " +"véleményét és javaslatait is rögzítheti.
      \n" +"
      \n" +"A bírálat határideje {$reviewDueDate}.
      \n" +"
      \n" +"Kézirat URL: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Felhasználónév: {$recipientUsername}
      \n" +"
      \n" +"Köszönjük, hogy foglalkozik kérésünkkel.
      \n" +"
      \n" +"
      \n" +"Üdvözlettel,
      \n" +"{$contextSignature}
      \n" + +msgid "emails.reviewCancel.subject" +msgstr "Szakmai lektorálási felkérés törölve" + +msgid "emails.reviewCancel.body" +msgstr "" +"Tisztelt {$recipientName}!
      \n" +"
      \n" +"Úgy döntöttünk, hogy töröljük felkérését a(z) "{$submissionTitle}," +"" című kézirat szakmai lektorálásra a(z) {$contextName} oldalánál. " +"Elnézést kérünk az esetleges kellemetlenségekért, és bízunk benne, hogy a " +"jövőben fogunk együtt dolgozni a szakmai lektorálás munkafolyamatában.
      \n" +"
      \n" +"Ha bármilyen kérdése van, nyugodtan keressen meg." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Szakmai lektorálási felkérés újraindítása" + +msgid "emails.reviewReinstate.body" +msgstr "" +"Tisztelt {$recipientName}!
      \n" +"
      \n" +"Szeretnénk ismételten kérni, hogy készítse el a "{$submissionTitle}," +"" című kézirat szakmai lektorálását a(z) {$contextName} oldalnál. " +"Reméljük, hogy segíteni tud majd a beküldött anyag szakmai lektorálási " +"munkafolyamatában.
      \n" +"
      \n" +"Ha bármilyen kérdése van nyugodtan forduljon hozzánk." + +msgid "emails.reviewDecline.subject" +msgstr "Szakmai lektorálási feladat elutasítása" + +msgid "emails.reviewDecline.body" +msgstr "" +"Szerkesztők()nek:
      \n" +"
      \n" +"Sajnálom, de jelenleg nem tudom elvállalni a "{$submissionTitle}," " +"című kézirat szakmai lektorálását a(z) {$contextName} oldalnál. Köszönöm, " +"hogy gondoltak rám, kérem, más alkalommal keressenek meg bátran.
      \n" +"
      \n" +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Szakmai lektorálási emlékeztető" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"Tisztelt {$recipientName}!
      \n" +"
      \n" +"Ez egy emlékeztető a(z) \"{$submissionTitle},\" című anyag szakmai " +"lektorálási munkájával kapcsolatban a(z) {$contextName} oldaltól. Reméljük, " +"hogy a megadott {$reviewDueDate} határidőig el tud készülni a szakmai " +"lektorálással, örömmel fogadjuk, amint elkészül vele.
      \n" +"
      \n" +"Ha nincs meg a felhasználóneve és jelszava az oldalhoz, akkor az alábbi " +"linket használhatja a jelszava visszaállítására (amelyet e-mailben fog " +"megkapni a felhasználónevével együtt). {$passwordLostUrl}
      \n" +"
      \n" +"Kézirat URL: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Felhasználónév: {$recipientUsername}
      \n" +"
      \n" +"Kérjük, erősítse meg, hogy tudja vállalni ezt a fontos munkát a részünkre. " +"Várjuk a válaszát.
      \n" +"
      \n" +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"Tisztelt {$recipientName}!
      \n" +"
      \n" +"Ez egy emlékeztető a(z) \"{$submissionTitle},\" című kézirat szakmai " +"lektorálásával kapcsolatban a(z) {$contextName} oldaltól. Reméljük, hogy a " +"megadott {$reviewDueDate} határidőig el tud készülni a szakmai " +"lektorálással, örömmel fogadjuk, amint elküldi azt.
      \n" +"
      \n" +"Ha nincs felhasználóneve és jelszava az oldalhoz, akkor az alábbi linket " +"használhatja a jelszó visszaállítására (amelyet e-mailben fog megkapni a " +"felhasználónevével együtt). {$passwordLostUrl}
      \n" +"
      \n" +"Kézirat URL: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Felhasználónév: {$recipientUsername}
      \n" +"
      \n" +"Kérjük, erősítse meg, hogy tudja vállalni ezt a fontos munkát a részünkre. " +"Várjuk a válaszát.
      \n" +"
      \n" +"{$contextSignature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "A beküldött anyag elfogadásra került a(z) {$contextName} oldalnál" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

      Tisztelt {$recipientName}!

      \n" +"

      Örömmel értesítjük, hogy úgy döntöttünk további felülvizsgálat nélkül " +"elfogadjuk beküldött anyagát. A szakmai lektorálást követően úgy találtuk, " +"hogy a kézirat ({$submissionTitle}) megfelelt vagy felülmúlta elvárásainkat. " +"Örömmel jelentjük meg beküldött anyagát a(z) {$contextName} oldalán, és " +"köszönjük, hogy kiadónkat választotta munkája megjelentetésének helyszínéül." +"

      \n" +"

      Beküldött anyagát hamarosan közzétesszük a(z) {$contextName} kiadó " +"honlapján, amit így már felvehet a publikációs listájára. Elismerjük azt a " +"kemény munkát, ami egy sikeres megjelentetéshez vezet és szeretnénk " +"gratulálni ehhez.

      \n" +"

      A továbbiak során beküldött anyaga keresztülmegy az olvasószerkesztés és " +"a formázás folyamatán, ami előkészíti a közzétételre.

      Hamarosan " +"megkapja a további utasításokat.

      Ha bármilyen kérdése van nyugodtan " +"forduljon hozzánk a beküldött anyag " +"felületén keresztül.

      >Üdvözlettel:

      {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "A beküldött anyag belső szakmai lektorálásra lett küldve" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

      Tisztelt {$recipientName},

      Örömmel értesítjük, hogy egy szerkesztő " +"átnézte a {$submissionTitle} című kéziratát, és továbbküldte azt belső " +"szakmai lektorálásra. Nemsokára jelentkezni fogunk a szakmai lektorok " +"visszajelzéseivel és a következő lépésekkel kapcsolatos információkkal.

      Kérjük, vegye figyelembe, hogy a beküldött anyag belső szakmai " +"lektorálásra való továbbküldése nem garantálja annak megjelentetését. " +"Mérlegelni fogjuk a szakmai lektorok ajánlásait mielőtt döntést hozunk a " +"beküldött anyag közzétételre való elfogadásáról. Előfordulhat, hogy a " +"végleges döntés meghozatala előtt felkérjük, hogy végezzen módosításokat és " +"válaszoljon a szakmai lektorok észrevételeire.

      Ha bármilyen kérdése " +"van nyugodtan forduljon hozzánk a beküldött anyag felületén keresztül.

      Üdvözlettel, {$signature}

      " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "A beküldött anyag olvasószerkesztésre lett küldve" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

      Tisztelt {$recipientName}!

      \n" +"

      Örömmel értesítjük, hogy úgy döntöttünk szakmai lektorálás nélkül " +"elfogadjuk beadványát. Úgy találtuk, hogy az Ön beadványa " +"({$submissionTitle}) megfelel az elvárásainknak, és az ilyen típusú " +"munkáknak nem kell szakmai lektoráláson keresztül menniük. Örülünk, hogy " +"a(z) {$contextName} oldalán tehetjük közzé munkáját, és köszönjük, hogy " +"kiadónkat választotta munkája megjelentetésének helyszínéül.

      \n" +"

      Beküldött anyagát hamarosan közzétesszük a(z) {$contextName} kiadó " +"oldalán, amit így már felvehet a publikációs listájára. Elismerjük azt a " +"kemény munkát, ami egy sikeres megjelentetéshez vezet és szeretnénk " +"gratulálni ehhez.

      \n" +"

      A továbbiak során beküldött anyaga keresztülmegy az olvasószerkesztés és " +"a formázás folyamatán, ami előkészíti a közzétételre.

      \n" +"

      Hamarosan megkapja a további utasításokat.

      \n" +"

      Ha bármilyen kérdése van nyugodtan forduljon hozzánk a beküldött anyag felületén keresztül.

      \n" +"

      >Üdvözlettel:

      \n" +"

      {$signature}

      \n" + +msgid "emails.layoutRequest.subject" +msgstr "" +"A {$submissionId} beküldött anyag készen áll az előállításra " +"{$contextAcronym}" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" +"

      Tisztelt {$recipientName}!

      Egy új beküldött anyag készen áll a " +"tördelőszerkesztésre:

      {$submissionId} " +"{$submissionTitle}
      {$contextName}

      1. 1. Kattintson a " +"beküldött anyag fent található URL linkjére.
      2. 2. Töltse le a " +"Megjelentetésre előkészített fájlokat, és használja őket a kefelenyomatok " +"létrehozásához a kiadó szabványainak megfelelően.
      3. 3. Töltse fel a " +"kefelenyomatokat a beküldött anyag Kiadványformátumok részébe.
      4. 4. A " +"Megjelentetéssel kapcsolatos megbeszélések segítségével értesítse a " +"szerkesztőt, hogy a kefelenyomatok készen állnak.

      Ha jelenleg " +"nem tudja elvégezni ezt a munkát, vagy bármilyen kérdése van forduljon " +"hozzánk bizalommal. Köszönjük a kiadónak végzett munkáját.

      Üdvözlettel:" +"

      {$signature}" + +msgid "emails.layoutComplete.subject" +msgstr "Kefelenyomatok elkészültek" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" +"

      Tisztelt {$recipientName}!

      A kefelenyomatok elkészültek a következő " +"beküldött anyaghoz és készen állnak az utolsó átnézésre.

      {$submissionTitle}
      {$contextName}

      Ha " +"bármilyen kérdése van nyugodtan forduljon hozzánk.

      Üdvözlettel,

      {$senderName}

      " + +msgid "emails.indexRequest.subject" +msgstr "Index kérése" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"A(z) {$contextName} oldal "{$submissionTitle}" című beküldött " +"anyagához most indexeket kell létrehozni az alábbi lépésekkel.
      \n" +"1. Kattintson a beküldött anyag alább látható URL linkjére.
      \n" +"2. Jelentkezzen be és használja a kefelenyomat fájljait, hogy létrehozza az " +"anyag megfelelő formátumát a kiadó szabványainak megfelelően.
      \n" +"3. Küldje el a Befejezés e-mailt a szerkesztőnek.
      \n" +"
      \n" +"{$contextName} URL: {$contextUrl}
      \n" +"Beküldött anyag URL: {$submissionUrl}
      \n" +"Felhasználónév: {$recipientUsername}
      \n" +"
      \n" +"Ha jelenleg nem tudja elkészíteni a munkát, vagy kérdése van nyugodtan " +"forduljon hozzánk. Köszönjük a kiadónak végzett munkáját.
      \n" +"
      \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Index formátumok létrehozva" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"A(z) {$contextName} oldal "{$submissionTitle}," című kéziratához " +"elkészültek az indexek, és a beküldött anyag készen áll a korrektúrázásra." +"
      \n" +"
      \n" +"Ha bármi kérdése van nyugodtan forduljon hozzánk.
      \n" +"
      \n" +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "Lehetséges érdeklődésre számot tartó kézirat" + +msgid "emails.emailLink.body" +msgstr "" +"Úgy gondoltuk érdekelheti az alábbi megjelentett mű: {$authors}: "" +"{$submissionTitle}" ({$volume} kötet, {$number} szám ({$year})) - " +"{$contextName} URL: "{$submissionUrl}"." + +msgid "emails.emailLink.description" +msgstr "" +"Ez az e-mail sablon lehetőséget biztosít a regisztrált olvasónak arra, hogy " +"egy kiadványról információt küldjön valakinek, akit az érdekelhet. Az " +"Olvasási eszközökön keresztül érhető el, és a Kiadó menedzsernek kell " +"engedélyeznie az Olvasási eszközök adminisztrációs oldalán." + +msgid "emails.notifySubmission.subject" +msgstr "Értesítés beküldött anyagról" + +msgid "emails.notifySubmission.body" +msgstr "" +"Önnek üzenetet küldött {$sender} az alábbi beküldött anyagot illetően: "" +"{$submissionTitle}" ({$monographDetailsUrl}):
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Értesítés egy felhasználótól, amit a beküldött anyag információs központból " +"küldött." + +msgid "emails.notifyFile.subject" +msgstr "Értesítés beküldött anyag fájlról" + +msgid "emails.notifyFile.body" +msgstr "" +"Önnek üzenetet küldött {$sender} az alábbi fájllal kapcsolatban "" +"{$fileName}" , "{$submissionTitle}" ({$monographDetailsUrl}):" +"
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"Értesítés egy felhasználótól, amit a beküldött anyag fájlinformációs " +"központból küldött" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Szerkesztői tevékenység {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"Tisztelt {$recipientName}!
      \n" +"
      \n" +"Az oldal egészségének állapotjelentése {$month}, {$year} elérhető. Ennek a " +"hónapnak a legfontosabb statisztikái az alábbiakban találhatók.
      \n" +"
        \n" +"\t
      • Új beküldött anyagok ebben a hónapban: {$newSubmissions}
      • \n" +"\t
      • Visszautasított anyagok ebben a hónapban: {$declinedSubmissions}
      • \n" +"\t
      • Elfogadott anyagok ebben a hónapban: {$acceptedSubmissions}
      • \n" +"\t
      • A rendszerben található összes beküldött anyag: {$totalSubmissions}\n" +"
      \n" +"Jelentkezzen be az oldalra a további részletekért, hogy megtekinthesse a szerkesztői trendek és a megjelentetett könyvek statisztikáit. Az e " +"havi szerkesztői trendek teljes másolatát mellékeljük.
      \n" +"
      \n" +"Üdvözlettel,
      \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
      \n" +"
      \n" +"{$announcementSummary}
      \n" +"
      \n" +"Látogassa meg oldalunkat, hogy elolvashassa a a teljes értesítést." + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Ez az email az újonnan regisztrált felhasználóknak kerül kiküldésre " +#~ "üdvözlésként, és biztosítja őket a felhasználónevük, jelszavuk " +#~ "nyilvántartásba vételéről." + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName}
      \n" +#~ "
      \n" +#~ "Ön létrehozott egy fiókot itt: {$contextName}, de mielőtt használni " +#~ "kezdené, érvényesítenie kell az email fiókját. Ehhez egyszerűen kövesse " +#~ "az alábbi linket:
      \n" +#~ "
      \n" +#~ "{$activateUrl}
      \n" +#~ "
      \n" +#~ "Köszönettel,
      \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.subject" +#~ msgstr "A fiókja érvényesítése" diff --git a/locale/hu/locale.po b/locale/hu/locale.po new file mode 100644 index 00000000000..9c009612655 --- /dev/null +++ b/locale/hu/locale.po @@ -0,0 +1,1694 @@ +# Fülöp Tiffany , 2021, 2022. +# Szabolcs Hoczopan , 2021. +# Kiss Jázmin , 2021. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-04-13 12:15+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "common.payments" +msgstr "Fizetések" + +msgid "monograph.audience" +msgstr "Célközönség" + +msgid "monograph.audience.success" +msgstr "A célközönség adatai frissültek." + +msgid "monograph.coverImage" +msgstr "Borítókép" + +msgid "monograph.audience.rangeQualifier" +msgstr "Célközönség körének választója" + +msgid "monograph.audience.rangeFrom" +msgstr "Célközönség köre (-tól)" + +msgid "monograph.audience.rangeTo" +msgstr "Célközönség köre (-ig)" + +msgid "monograph.audience.rangeExact" +msgstr "Célközönség köre (pontosan)" + +msgid "monograph.languages" +msgstr "Nyelvek (Angol, Francia, Spanyol)" + +msgid "monograph.publicationFormats" +msgstr "Kiadványformátumok" + +msgid "monograph.publicationFormat" +msgstr "Formátum" + +msgid "monograph.publicationFormatDetails" +msgstr "Részletek a rendelkezésre álló kiadványformátumról: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Részletek a kiadványról" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formátumok:" + +msgid "monograph.type" +msgstr "Beküldött anyag típusa" + +msgid "submission.pageProofs" +msgstr "Kefelenyomatok oldala" + +msgid "monograph.proofReadingDescription" +msgstr "" +"A tördelőszerkesztő ide tölti fel a megjelentetésre előkészített fájlok, " +"amik készek a közzétételre. A Hozzárendelés gomb segítségével " +"kijelölheti a szerzőket és másokat, hogy korrektúrázzák a kefelenyomatokat, " +"és a javított fájlokat a közzététel előtt jóváhagyásra feltöltsék." + +msgid "monograph.task.addNote" +msgstr "Hozzáadás a feladathoz" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Nyílt hozzáférés" + +msgid "monograph.publicationFormat.imprint" +msgstr "Impresszum (márkanév)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Oldalszám" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Előzékoldalak" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Hátoldalak" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Termék szerkezete" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Termék részletek (nem kötelező)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Termék azonosítás" + +msgid "monograph.publicationFormat.price" +msgstr "Ár" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Az ár kötelező." + +msgid "monograph.publicationFormat.priceType" +msgstr "Ár típusa" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Kedvezmény százaléka, ha alkalmazható" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Termék elérhetősége" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Visszaküldhetőség mutatója" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Digitális információ" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Fizikai méretek" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "A fájl mérete MB-ban" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Saját fájlméretet ad meg?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Magasság" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Vastagság" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Súly" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Szélesség" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Előállítás országa" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Digitális technikai védelem" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Termékforgalmazási régió" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Adókulcs" + +msgid "monograph.publicationFormat.taxType" +msgstr "Adózás típusa" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"A könyv katalógusbejegyzésében szerepeltetni kell az adott " +"kiadványformátumra vonatkozó metaadatokat." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Hiányzó piacok és árak." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Hiányzik az azonosító kód." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Hiányzik néhány metaadatmező." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

      A kiválasztott kiadványformátum már nem létezik ehhez a kiadványhoz.

      " + +msgid "monograph.publicationFormat.openTab" +msgstr "Nyissa meg a kiadványformátumok fület." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Kiadványformátum" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Név megadása kötelező." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Érvényes ár szükséges." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Formátum részletek" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Fizikai formátum" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Ez a formátum egy külön weboldalon lesz elérhető" + +msgid "grid.catalogEntry.remoteURL" +msgstr "Távoli tárhely tartalmának URL címe" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "13 számjegyű ISBN-kód, például 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "10 számjegyű ISBN-kód, például 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "A kiadvány azonosító kötelező." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Ki kell választani a kiadványformátumot." + +msgid "grid.catalogEntry.availability" +msgstr "Elérhetőség" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Elérhető" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Nem elérhető" + +msgid "grid.catalogEntry.proof" +msgstr "Kefelenyomat" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Formátum jóváhagyása" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

      Hagyja jóvá a formátum metaadatait. A metaadatokat az egyes formátumok " +"szerkesztési felületén lehet ellenőrizni.

      " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

      Jelzi, hogy a formátum metaadatait nem hagyták jóvá.

      " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Formátum elérhetősége" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

      Tegye ezt a formátumot elérhetővé az olvasók számára. A " +"letölthető fájlok és minden más terjesztés megjelenik a könyv " +"katalógustételében.

      " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

      Ez a formátum nem lesz elérhető az olvasók számára. A letölthető " +"fájlok vagy egyéb terjesztések többé nem jelennek meg a könyv " +"katalógustételében.

      " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "A katalógustételt nem hagyták jóvá." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "A formátum nincs benne a katalógustételben." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "A kefelenyomatot nem hagyták jóvá." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Jóváhagyva" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Jóváhagyásra vár" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "A digitális formátumokhoz fájlméret szükséges." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "A termék elérhetőségének kódja kötelező." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "A termék szerkezetének kódját ki kell választani." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Kód értéke" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Onix kód típusa" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Azonosító kód kötelező." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Egy érték megadása kötelező." + +msgid "grid.catalogEntry.salesRights" +msgstr "Értékesítési jogok" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Kód értéke" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Értékesítési jogok típusa" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Világ többi része?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Jelölje be ezt a négyzetet, ha ezt az értékesítési jog tételt kívánja " +"használni a formátumhoz. Az országokat és régiókat ebben az esetben nem " +"kell kiválasztani." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "Ehhez a kiadványformátumhoz már létezik egy ROW értékesítési típus." + +msgid "grid.catalogEntry.countries" +msgstr "Országok" + +msgid "grid.catalogEntry.regions" +msgstr "Régiók" + +msgid "grid.catalogEntry.included" +msgstr "Beletartozik" + +msgid "grid.catalogEntry.excluded" +msgstr "Kizárva" + +msgid "grid.catalogEntry.markets" +msgstr "Piaci területek" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Terület" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Közzétételi dátumok" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Reprezentatív szerepkörre van szükség." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "A dátumformátum kötelező." + +msgid "grid.catalogEntry.dateValue" +msgstr "Dátum" + +msgid "grid.catalogEntry.dateRole" +msgstr "Típus" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Dátumformátum" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"A dátum megadása kötelező, és a dátum értékének meg kell felelnie a " +"kiválasztott dátumformátumnak." + +msgid "grid.catalogEntry.representatives" +msgstr "Képviselők" + +msgid "grid.catalogEntry.representativeType" +msgstr "Képviselő típusa" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Ügynökök" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Beszállítók" + +msgid "grid.catalogEntry.agent" +msgstr "Ügynök" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Ön hozzárendelhet egy ügynököt, hogy képviselje Önt ezen a meghatározott " +"területen. Ez nem kötelező." + +msgid "grid.catalogEntry.supplier" +msgstr "Beszállító" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Válasszon szerepkört:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Szerepkör" + +msgid "grid.catalogEntry.representativeName" +msgstr "Név" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Telefon" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "E-mail cím" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Honlap" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Képviselő azonosítója" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Képviselő azonosító típusa (ajánlott a GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"A következő részt üresen hagyhatja, ha saját szolgáltatásokat nyújt " +"ügyfeleinek." + +msgid "grid.action.addRepresentative" +msgstr "Képviselő hozzáadása" + +msgid "grid.action.editRepresentative" +msgstr "Képviselő szerkesztése" + +msgid "grid.action.deleteRepresentative" +msgstr "Képviselő törlése" + +msgid "spotlight" +msgstr "Kiemelt" + +msgid "spotlight.spotlights" +msgstr "Kiemeltek" + +msgid "spotlight.noneExist" +msgstr "Nincsenek aktuális kiemelések." + +msgid "spotlight.title.homePage" +msgstr "Kiemeltek között" + +msgid "spotlight.author" +msgstr "Szerző " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Kiemelt tétel" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Kezdőoldal" + +msgid "grid.content.spotlights.form.location" +msgstr "Kiemelés helye" + +msgid "grid.content.spotlights.form.item" +msgstr "Adja meg a kiemelni kívánt címet (automatikus kitöltés)" + +msgid "grid.content.spotlights.form.title" +msgstr "Kiemelt címe" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Könyv" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Egy tétel kötelező." + +msgid "grid.content.spotlights.titleRequired" +msgstr "A kiemelt elem címe kötelező." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Kérjük, válasszon egy helyet ennek a kiemelésnek." + +msgid "grid.action.editSpotlight" +msgstr "Kiemelt elem szerkesztése" + +msgid "grid.action.deleteSpotlight" +msgstr "Kiemelt elem törlése" + +msgid "grid.action.addSpotlight" +msgstr "Kiemelt elem hozzáadása" + +msgid "manager.series.open" +msgstr "Beküldések megnyitása" + +msgid "manager.series.indexed" +msgstr "Indexelve" + +msgid "grid.libraryFiles.column.files" +msgstr "Fájlok" + +msgid "grid.action.catalogEntry" +msgstr "Katalógustétel űrlapjának megtekintése" + +msgid "grid.action.formatInCatalogEntry" +msgstr "A formátum megjelenik a katalógustételben" + +msgid "grid.action.editFormat" +msgstr "Formátum szerkesztése" + +msgid "grid.action.deleteFormat" +msgstr "Formátum törlése" + +msgid "grid.action.addFormat" +msgstr "Kiadványformátum hozzáadása" + +msgid "grid.action.approveProof" +msgstr "" +"Jóváhagyja a kefelenyomatot indexelésre és a katalógusba való felvételre" + +msgid "grid.action.pageProofApproved" +msgstr "Az oldal kefelenyomat fájljai készen állnak a közzétételre" + +msgid "grid.action.newCatalogEntry" +msgstr "Új katalógustétel" + +msgid "grid.action.publicCatalog" +msgstr "Tekintse meg az elemet a katalógusban" + +msgid "grid.action.feature" +msgstr "Váltás a válogatás megjelenítésére" + +msgid "grid.action.featureMonograph" +msgstr "Tegye bele a katalógus Válogatás blokkjába" + +msgid "grid.action.releaseMonograph" +msgstr "Jelölje meg ezt a beküldést mint \"új megjelenés\"" + +msgid "grid.action.manageCategories" +msgstr "Kategóriák megadása ehhez a kiadóhoz" + +msgid "grid.action.manageSeries" +msgstr "Sorozatok megadása ehhez a kiadóhoz" + +msgid "grid.action.addCode" +msgstr "Kód hozzáadása" + +msgid "grid.action.editCode" +msgstr "Kód szerkesztése" + +msgid "grid.action.deleteCode" +msgstr "Kód törlése" + +msgid "grid.action.addRights" +msgstr "Értékesítési jogok hozzáadása" + +msgid "grid.action.editRights" +msgstr "Ezeknek a jogoknak a szerkesztése" + +msgid "grid.action.deleteRights" +msgstr "Ezeknek a jogoknak a törlése" + +msgid "grid.action.addMarket" +msgstr "Piac hozzáadása" + +msgid "grid.action.editMarket" +msgstr "Piac szerkesztése" + +msgid "grid.action.deleteMarket" +msgstr "Piac törlése" + +msgid "grid.action.addDate" +msgstr "Közzétételi dátum hozzáadása" + +msgid "grid.action.editDate" +msgstr "Dátum szerkesztése" + +msgid "grid.action.deleteDate" +msgstr "Dátum törlése" + +msgid "grid.action.createContext" +msgstr "Új kiadó létrehozása" + +msgid "grid.action.publicationFormatTab" +msgstr "Kiadványformátum fül megjelenítése" + +msgid "grid.action.moreAnnouncements" +msgstr "Tovább a kiadó értesítések oldalára" + +msgid "grid.action.submissionEmail" +msgstr "Kattintson az e-mail elolvasásához" + +msgid "grid.action.approveProofs" +msgstr "A kiadványformátum felület megtekintése" + +msgid "grid.action.proofApproved" +msgstr "Formátum korrektúrázva" + +msgid "grid.action.availableRepresentation" +msgstr "Jóváhagyja/elutasítja ezt a formátumot" + +msgid "grid.action.formatAvailable" +msgstr "A formátum elérhetőségének be- és kikapcsolása" + +msgid "grid.reviewAttachments.add" +msgstr "Csatolmány hozzáadása a lektori véleményhez" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Elérhető fájlok" + +msgid "series.series" +msgstr "Sorozatok" + +msgid "series.featured.description" +msgstr "Ez a sorozat a fő navigációban jelenik meg" + +msgid "series.path" +msgstr "Elérési útvonal" + +msgid "catalog.manage" +msgstr "Katalógus kezelése" + +msgid "catalog.manage.newReleases" +msgstr "Új megjelenések" + +msgid "catalog.manage.category" +msgstr "Kategória" + +msgid "catalog.manage.series" +msgstr "Sorozatok" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Kérjük, adjon meg egy érvényes ISSN-t." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Az online és a nyomtatott ISSN nem lehet azonos." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Online ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "Nyomtatott ISSN" + +msgid "catalog.selectSeries" +msgstr "Sorozat kiválasztása" + +msgid "catalog.selectCategory" +msgstr "Kategória kiválasztása" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"A kiválasztott könyvek borítóképe a honlap tetején, görgethető elemként " +"jelenik meg. Kattintson a \"Válogatásra\", majd a csillagra, ha egy könyvet " +"szeretne hozzáadni a listás megjelenítéshez; kattintson a felkiáltójelre, ha " +"új megjelenésként szeretné bemutatni; húzással sorba rendezheti őket." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Kattintson a \"Válogatás\"-ra, majd a csillagra, hogy kiválasszon egy " +"válogatásra szánt könyvet ebben a kategóriában; húzással sorba rendezheti " +"őket." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Kattintson a \"Válogatás\"-ra , majd a csillagra, hogy kiválassza a sorozat " +"Válogatásra szánt könyvét; húzással sorba rendezheti őket. A sorozatokat a " +"szerkesztő(k) és a sorozat címe azonosítja egy kategórián belül vagy " +"önállóan." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Listás megjelenítés" + +msgid "catalog.manage.newRelease" +msgstr "Megjelenés" + +msgid "catalog.manage.manageSeries" +msgstr "Sorozatok kezelése" + +msgid "catalog.manage.manageCategories" +msgstr "Kategóriák kezelése" + +msgid "catalog.manage.noMonographs" +msgstr "Nincsenek hozzárendelt kiadványok." + +msgid "catalog.manage.featured" +msgstr "Válogatás" + +msgid "catalog.manage.categoryFeatured" +msgstr "Válogatás a kategóriában" + +msgid "catalog.manage.seriesFeatured" +msgstr "Válogatás a sorozatban" + +msgid "catalog.manage.featuredSuccess" +msgstr "A kiadvány Válogatott lett." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "A kiadvány nem lett Válogatott." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "A kiadvány új megjelenésként van megjelölve." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "A kiadvány nincs új megjelenésként megjelölve." + +msgid "catalog.manage.feature.newRelease" +msgstr "Új megjelenés" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Új megjelenés a kategóriában" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Új megjelenés a sorozatban" + +msgid "catalog.manage.nonOrderable" +msgstr "" +"Ez a kiadvány nem rendezhető sorrendbe, amíg Válogatottként van megjelölve." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Cím vagy szerző szerinti keresés" + +msgid "catalog.manage.isFeatured" +msgstr "" +"Ez a kiadvány Válogatottként van megjelölve. Vegye le a monográfiáról a " +"Válogatott jelölőt." + +msgid "catalog.manage.isNotFeatured" +msgstr "" +"Ez a kiadvány nincs Válogatottként megjelölve. Tegye a monográfiára a " +"Válogatott jelzőt." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Ez a kiadvány új megjelenésként van megjelölve. Vegye le a monográfiáról az " +"új megjelenés jelölőt." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Ez a kiadvány nincs új megjelenésként megjelölve. Tegye a kiadványra az új " +"megjelenés jelölőt." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "" +"Egyetlen beküldött anyagot sem választottak ki a katalógusba való felvételre." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Egy vagy több beküldött anyag nem található meg." + +msgid "catalog.manage.findSubmissions" +msgstr "A katalógusba felvehető kiadványok kiválasztása" + +msgid "catalog.noTitles" +msgstr "Még nem kerültek közzétételre címek." + +msgid "catalog.noTitlesNew" +msgstr "Jelenleg nem állnak rendelkezésre új megjelenések." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Nem találhatóak olyan címek, amelyek megfelelnének a(z) \"{$ searchQuery}\" " +"kifejezésre." + +msgid "catalog.feature" +msgstr "Válogatás" + +msgid "catalog.featured" +msgstr "Válogatott" + +msgid "catalog.featuredBooks" +msgstr "Válogatott könyvek" + +msgid "catalog.foundTitleSearch" +msgstr "" +"Egy olyan címet találtunk, amely megfelel az Ön \"{$searchQuery}\" " +"keresésének." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"{$number} olyan címet találtunk, amely megfelel a(z) \"{$searchQuery}\" " +"keresésnek." + +msgid "catalog.category.heading" +msgstr "Összes könyv" + +msgid "catalog.newReleases" +msgstr "Új megjelenések" + +msgid "catalog.dateAdded" +msgstr "Hozzáadva" + +msgid "catalog.publicationInfo" +msgstr "Közzétételi információ" + +msgid "catalog.published" +msgstr "Közzétett" + +msgid "catalog.forthcoming" +msgstr "Megjelenés előtti" + +msgid "catalog.categories" +msgstr "Kategóriák" + +msgid "catalog.parentCategory" +msgstr "Szülő kategória" + +msgid "catalog.category.subcategories" +msgstr "Alkategóriák" + +msgid "catalog.aboutTheAuthor" +msgstr "{$roleName}-ról/-ről" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Kérjük, vegye figyelembe: Ahhoz, hogy termékeket vásárolhasson, először be " +"kell jelentkeznie. A megvásárolni kívánt tétel kiválasztása a bejelentkezési " +"oldalra irányítja Önt. Minden Nyílt Hozzáférés ikonnal jelölt tétel " +"ingyenesen letölthető bejelentkezés nélkül." + +msgid "catalog.sortBy" +msgstr "Kiadványok sorrendje" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Válassza ki, hogyan legyenek sorba rendezve a sorozat könyveit." + +msgid "catalog.sortBy.categoryDescription" +msgstr "" +"Válassza ki, hogyan legyenek sorba rendezve a könyvek ebben a kategóriában." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Válassza ki, hogyan legyenek sorba rendezve a könyvek a katalógusban." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Sorozati pozíció (legalacsonyabb elöl)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Sorozati pozíció (legmagasabb elöl)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} view of the file {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Vissza a {$monographTitle} részleteinek megtekintéséhez" + +msgid "submission.search" +msgstr "Könyv keresés" + +msgid "common.publication" +msgstr "Kiadvány" + +msgid "common.publications" +msgstr "Kiadványok" + +msgid "common.prefix" +msgstr "Előtag" + +msgid "common.preview" +msgstr "Előnézet" + +msgid "common.feature" +msgstr "Válogatás" + +msgid "common.searchCatalog" +msgstr "Keresés a katalógusban" + +msgid "common.moreInfo" +msgstr "További információk" + +msgid "common.listbuilder.completeForm" +msgstr "Kérjük, töltse ki teljesen az űrlapot." + +msgid "common.listbuilder.selectValidOption" +msgstr "Kérjük, válasszon egy megfelelő opciót a listából." + +msgid "common.listbuilder.itemExists" +msgstr "Ugyanazt az elemet nem adhatja hozzá kétszer." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Kezdőlap fejléc" + +msgid "navigation.catalog" +msgstr "Katalógus" + +msgid "navigation.competingInterestPolicy" +msgstr "Konkurens érdekek irányelve" + +msgid "navigation.catalog.allMonographs" +msgstr "Összes kiadvány" + +msgid "navigation.catalog.manage" +msgstr "Kezelés" + +msgid "navigation.catalog.administration.short" +msgstr "Adminisztráció" + +msgid "navigation.catalog.administration" +msgstr "Katalógus adminisztráció" + +msgid "navigation.catalog.administration.categories" +msgstr "Kategóriák" + +msgid "navigation.catalog.administration.series" +msgstr "Sorozatok" + +msgid "navigation.infoForAuthors" +msgstr "Szerzőknek" + +msgid "navigation.infoForLibrarians" +msgstr "Könyvtárosoknak" + +msgid "navigation.infoForAuthors.long" +msgstr "Információ a szerzőknek" + +msgid "navigation.infoForLibrarians.long" +msgstr "Információ a könyvtárosoknak" + +msgid "navigation.newReleases" +msgstr "Új megjelenések" + +msgid "navigation.published" +msgstr "Közzétett" + +msgid "navigation.wizard" +msgstr "Varázsló" + +msgid "navigation.linksAndMedia" +msgstr "Linkek és közösségi média" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Link a katalógushoz." + +msgid "navigation.skip.spotlights" +msgstr "Ugrás a kiemeltekhez" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Sorozat" + +msgid "navigation.navigationMenus.series.description" +msgstr "Link a sorozathoz." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Kategória" + +msgid "navigation.navigationMenus.category.description" +msgstr "Link a kategóriához." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Új megjelenések" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Link az új megjelenésekhez." + +msgid "context.contexts" +msgstr "Kiadók" + +msgid "context.context" +msgstr "Kiadó" + +msgid "context.current" +msgstr "Aktuális kiadó:" + +msgid "context.select" +msgstr "Váltás egy másik kiadóra:" + +msgid "user.authorization.representationNotFound" +msgstr "A kért kiadványformátum nem található." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "A szerepkörrel nem rendelkező felhasználók felvétele a kiadóhoz." + +msgid "user.noRoles.submitMonograph" +msgstr "Javaslat beküldése" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "Kiadvány beküldése: A szerzői regisztráció jelenleg le van tiltva." + +msgid "user.noRoles.regReviewer" +msgstr "Regisztráció szakmai lektorként" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Regisztráció szakmai lektorként: A szakmai lektori regisztráció jelenleg le " +"van tiltva." + +msgid "user.reviewerPrompt" +msgstr "Vállalná a kéziratok szakmai lektorálást ennél a kiadónál?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Igen, kéri a {$userGroup} szerepkört." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Igen, szeretném, ha megkeresnének, hogy szakmailag lektoráljam a kiadóhoz " +"beküldött kéziratokat." + +msgid "user.register.contextsPrompt" +msgstr "Melyik kiadóknál szeretne regisztrálni ezen az oldalon?" + +msgid "user.register.otherContextRoles" +msgstr "Kéri az alábbi szerepköröket." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Ha kérte, hogy valamelyik kiadó szakmai lektora legyen, kérjük, adja meg az " +"érdeklődési körét." + +msgid "user.role.manager" +msgstr "Kiadó menedzser" + +msgid "user.role.pressEditor" +msgstr "Kiadó szerkesztő" + +msgid "user.role.subEditor" +msgstr "Sorozatszerkesztő" + +msgid "user.role.copyeditor" +msgstr "Olvasószerkesztő" + +msgid "user.role.proofreader" +msgstr "Korrektor" + +msgid "user.role.productionEditor" +msgstr "Előkészítés szerkesztő" + +msgid "user.role.managers" +msgstr "Kiadó menedzserek" + +msgid "user.role.subEditors" +msgstr "Sorozatszerkesztők" + +msgid "user.role.editors" +msgstr "Szerkesztők" + +msgid "user.role.copyeditors" +msgstr "Olvasószerkesztők" + +msgid "user.role.proofreaders" +msgstr "Korrektorok" + +msgid "user.role.productionEditors" +msgstr "Előkészítés szerkesztők" + +msgid "user.register.selectContext" +msgstr "Válasszon ki egy kiadót a regisztrációhoz:" + +msgid "user.register.noContexts" +msgstr "Ezen az oldalon nincs olyan kiadó, amelyhez regisztrálhatna." + +msgid "user.register.privacyStatement" +msgstr "Adatvédelmi nyilatkozat" + +msgid "user.register.registrationDisabled" +msgstr "Ez a kiadó jelenleg nem fogad felhasználói regisztrációkat." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "A megadott jelszó nem elég hosszú." + +msgid "user.register.readerDescription" +msgstr "E -mailben értesítjük a kiadvány közzétételéről." + +msgid "user.register.authorDescription" +msgstr "Küldhet be tételeket a kiadóhoz." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Vállalja a kiadónak küldött kéziratok szakmai lektorálását." + +msgid "user.register.reviewerDescription" +msgstr "Vállalja az oldalra beküldött kéziratok szakmai lektorálását." + +msgid "user.register.reviewerInterests" +msgstr "" +"A szakmai lektorálási érdeklődési körök (tárgyi területek és kutatási " +"módszerek) meghatározása:" + +msgid "user.register.form.userGroupRequired" +msgstr "Legalább egy szerepkört ki kell választania" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Igen, hozzájárulok ahhoz, hogy adataimat a kiadó az adatvédelmi nyilatkozatának " +"megfelelően gyűjtse és tárolja." + +msgid "site.noPresses" +msgstr "Nincsenek rendelkezésre álló kiadók." + +msgid "site.pressView" +msgstr "Kiadó weboldalának megtekintése" + +msgid "about.pressContact" +msgstr "Kiadó kapcsolat" + +msgid "about.aboutContext" +msgstr "A kiadóról" + +msgid "about.editorialTeam" +msgstr "Szerkesztőség" + +msgid "about.editorialPolicies" +msgstr "Szerkesztési irányelvek" + +msgid "about.focusAndScope" +msgstr "Fókusz és tudományterület" + +msgid "about.seriesPolicies" +msgstr "Sorozat- és kategória irányelvek" + +msgid "about.submissions" +msgstr "Beküldések" + +msgid "about.onlineSubmissions" +msgstr "Online beküldések" + +msgid "about.onlineSubmissions.login" +msgstr "Bejelentkezés" + +msgid "about.onlineSubmissions.register" +msgstr "Regisztráció" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} vagy {$register} szükséges a beküldéshez." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} vagy {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Új beküldés indítása" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "függőben lévő beküldések megtekintése" + +msgid "about.authorGuidelines" +msgstr "Szerzői útmutatók" + +msgid "about.submissionPreparationChecklist" +msgstr "A beküldés előkészítésének ellenőrzőlistája" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"A beküldési folyamat részeként a szerzőknek be kell jelölniük, hogy a " +"kéziratuk megfelel-e az alábbi pontoknak, és a kéziratok visszaküldhetők " +"azoknak a szerzőknek, akik nem tartják be ezeket az irányelveket." + +msgid "about.copyrightNotice" +msgstr "Szerzői jogi nyilatkozat" + +msgid "about.privacyStatement" +msgstr "Adatvédelmi nyilatkozat" + +msgid "about.reviewPolicy" +msgstr "Szakmai lektorálási folyamat" + +msgid "about.publicationFrequency" +msgstr "Megjelenési gyakoriság" + +msgid "about.openAccessPolicy" +msgstr "Nyílt hozzáférési irányelv" + +msgid "about.pressSponsorship" +msgstr "Kiadó szponzoráció" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"További információk az OMP/PKP kiadói rendszeréről, platformjáról és " +"munkafolyamatáról." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Az OMP szerkesztési és kiadási folyamata" + +msgid "about.aboutSoftware" +msgstr "Az Open Monograph Pressről" + +msgid "about.aboutOMPPress" +msgstr "" +"Ez a kiadó az Open Monograph Press {$ompVersion} verzióját használja, amely " +"a Public Knowledge Project által a GNU General Public License alatt " +"kifejlesztett, támogatott és szabadon terjesztett nyílt forráskódú " +"sajtómenedzsment és kiadói szoftver. Látogasson el a PKP weboldalára, ha többet szeretne megtudni a szoftverről. A " +"kiadóval kapcsolatos kérdésekkel és a kéziratok beküldésével kapcsolatban " +"kérjük, forduljon közvetlenül a kiadóhoz." + +msgid "about.aboutOMPSite" +msgstr "" +"Ez az oldal az Open Monograph Press {$ompVersion} verzióját használja, " +"amely a Public Knowledge Project által a GNU General Public License alatt " +"kifejlesztett, támogatott és szabadon terjesztett nyílt forráskódú kiadói " +"menedzsment és kiadói szoftver. Látogasson el a PKP weboldalára, ha többet szeretne megtudni a szoftverről. A " +"kiadókkal kapcsolatos kérdésekkel és a kéziratok beküldésével kapcsolatban " +"kérjük, forduljon közvetlenül az oldalhoz." + +msgid "help.searchReturnResults" +msgstr "Vissza a keresési eredményekhez" + +msgid "help.goToEditPage" +msgstr "Új oldal megnyitása az információ szerkesztéséhez" + +msgid "installer.appInstallation" +msgstr "OMP telepítés" + +msgid "installer.ompUpgrade" +msgstr "OMP frissítés" + +msgid "installer.installApplication" +msgstr "Open Monograph Press telepítése" + +msgid "installer.updatingInstructions" +msgstr "" +"Ha az OMP meglévő telepítését frissíti kattintson " +"ide a folytatáshoz." + +msgid "installer.installationInstructions" +msgstr "" +"\n" +"

      Köszönjük, hogy letöltötte a Public Knowledge Project Open " +"Monograph Press {$version} verziójú szoftverét. Mielőtt folytatná, " +"kérjük, olvassa el a szoftverhez mellékelt README fájlt. A Public Knowledge Projectről és a " +"szoftverprojektjeiről további információkat a PKP weboldalán talál. Ha hibabejelentése vagy " +"technikai támogatási kérdése van az Open Monograph Press-szel kapcsolatban, " +"keresse fel a támogatási fórumot, vagy látogasson el a PKP online hibabejelentő rendszerébe. Bár " +"a támogatási fórum az előnyben részesített kapcsolattartási mód, a pkp.contact@gmail.com címre is küldhet " +"e-mailt a csapatnak.

      \n" + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Telepítés előtti lépések" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

      1. A következő fájlokat és könyvtárakat (és azok tartalmát) írhatóvá kell " +"tenni:

      \n" +"
        \n" +"\t
      • config.inc.php is writable (optional): {$writable_config}\n" +"\t
      • public/ is writable: {$writable_public}
      • \n" +"\t
      • cache/ is writable: {$writable_cache}
      • \n" +"\t
      • cache/t_cache/ is writable: {$writable_templates_cache}
      • \n" +"\t
      • cache/t_compile/ is writable: {$writable_templates_compile}\n" +"\t
      • cache/_db is writable: {$writable_db_cache}
      • \n" +"
      \n" +"\n" +"

      2. A directory to store uploaded files must be created and made writable " +"(see \"File Settings\" below).

      " + +msgid "installer.upgradeInstructions" +msgstr "" +"

      OMP verzió {$version}

      \n" +"\n" +"

      Köszönjük, hogy letöltötte a Public Knowledge Project Open " +"Monograph Press szoftverét. Mielőtt folytatná, kérjük, olvassa el a " +"szoftverhez mellékelt README és FRISSÍTÉS fájlt. A Public Knowledge " +"Projectről és a szoftverprojektjeiről további információkat a PKP weboldalán talál. Ha " +"hibabejelentése vagy technikai támogatási kérdése van az Open Monograph " +"Press-szel kapcsolatban, keresse fel a támogatási fórumot, vagy látogasson el a PKP online hibabejelentő " +"rendszerébe. Bár a támogatási fórum az előnyben részesített " +"kapcsolattartási mód, a pkp." +"contact@gmail.com címre is küldhet e-mailt a csapatnak.

      \n" +"

      A folytatás előtt erősen ajánlott biztonsági másolatot " +"készíteni az adatbázisról, a fájlkönyvtárról és az OMP telepítési " +"könyvtáráról.

      \n" +"

      If you are running in PHP Safe Mode, please ensure that the " +"max_execution_time directive in your php.ini configuration file is set to a " +"high limit. If this or any other time limit (e.g. Apache's \"Timeout\" " +"directive) is reached and the upgrade process is interrupted, manual " +"intervention will be required.

      " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"A teljes Unicode (UTF-8) támogatáshoz válassza az UTF-8 beállítást az összes " +"karakterkészlet beállításához. Vegye figyelembe, hogy ez a támogatás " +"jelenleg MySQL >= 4.1.1 vagy PostgreSQL >= 9.1.5 verziójú adatbázis szervert " +"igényel. Kérjük, vegye figyelembe azt is, hogy a teljes Unicode-támogatáshoz " +"az mbstring " +"könyvtár szükséges (a legújabb PHP-telepítésekben alapértelmezés szerint " +"engedélyezve). Problémákat okozhat a kiterjesztett karakterkészletek " +"használata, ha a szervere nem felel meg ezeknek a követelményeknek.\n" +"

      \n" +"Az Ön szervere jelenleg támogatja az mbstringet: {$supportsMBString}" +"" + +msgid "installer.allowFileUploads" +msgstr "" +"A szervere jelenleg engedélyezi a fájlfeltöltést: {$allowFileUploads}" +"" + +msgid "installer.maxFileUploadSize" +msgstr "" +"A szervere jelenleg legfeljebb a következő fájlfeltöltési méretet " +"engedélyezi: {$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"A rendszerhez használt elsődleges nyelv. Kérjük, olvassa el az OMP " +"dokumentációját, ha az itt nem felsorolt nyelvek támogatása érdekli." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Válassza ki a rendszerben támogatni kívánt további nyelveket. Ezek a nyelvek " +"a webhelyen elhelyezett kiadók számára lesznek elérhetők. További nyelvek " +"bármikor telepíthetők a webhely adminisztrációs felületéről is. A *-gal " +"jelölt nyelvek hiányosak lehetnek." + +msgid "installer.filesDirInstructions" +msgstr "" +"Adja meg egy meglévő könyvtár teljes elérési útvonalát, ahol a feltöltött " +"fájlokat tárolni kívánja. Ez a könyvtár nem lehet közvetlenül elérhető az " +"interneten. A telepítés előtt győződjön meg arról, hogy ez a " +"könyvtár létezik és írható. A Windows elérési útvonalak neveiben " +"perjelet kell használni, pl.: \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"Az OMP-nek szüksége van egy SQL-adatbázishoz való hozzáférésre az adatok " +"tárolásához. A támogatott adatbázisok listáját lásd a fenti " +"rendszerkövetelményeknél. Az alábbi mezőkben adja meg az adatbázishoz való " +"csatlakozáshoz használandó beállításokat." + +msgid "installer.upgradeApplication" +msgstr "Open Monograph Press frissítése" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

      FONTOS

      \n" +"

      A telepítő nem tudta automatikusan felülírni a konfigurációs fájlt. " +"Mielőtt megpróbálná használni a rendszert, kérjük, nyissa meg a config." +"inc.php fájlt egy megfelelő szövegszerkesztővel, és cserélje ki a " +"tartalmát az alábbi szövegmező tartalmára.

      " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

      Az OMP telepítése sikeresen befejeződött.

      \n" +"

      A rendszer használatának megkezdéséhez jelentkezzen be az előző oldalon megadott " +"felhasználónévvel és jelszóval.

      \n" +"

      Ha híreket és frissítéseket szeretne kapni, kérjük, regisztráljon " +"a http://pkp." +"sfu.ca/omp/register oldalon. Ha kérdése vagy észrevétele van, " +"kérjük, látogasson el a támogatási fórumra.

      " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

      Az OMP frissítése a {$version} verzióra sikeresen befejeződött.

      \n" +"

      Ne felejtse el visszaállítani a config.inc.php konfigurációs fájlban az " +"\"installed\" beállítást On-ra.

      \n" +"

      Ha még nem regisztrált és híreket és frissítéseket szeretne kapni, " +"kérjük, regisztráljon a http://pkp.sfu.ca/omp/register oldalon. Ha " +"kérdése vagy észrevétele van, kérjük, látogasson el a támogatási fórumra.

      " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"A(z) {$reviewerName} által lektorálandó {$submissionId} számú kézirat " +"{$round} körének lektorálási határideje megváltozott: {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} elutasította a {$submissionId} számú kézirat {$round} " +"körének szakmai lektorálását." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} elfogadta a {$submissionId} számú kézirat {$round} körének " +"szakmai lektorálását." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} a(z) {$submissionId} számú kézirat szakmai " +"lektorálásának{$round} körét figyelmen kívül hagyottként jelölte meg." + +msgid "log.editor.decision" +msgstr "" +"Egy szerkesztői döntés ({$decision}) került rögzítésre a {$submissionId} " +"számú kiadványhoz {$editorName} szerkesztő által." + +msgid "log.editor.recommendation" +msgstr "" +"Egy szerkesztői javaslat ({$decision}) került rögzítésre a {$submissionId} " +"számú kiadványhoz {$editorName} szerkesztő által." + +msgid "log.editor.archived" +msgstr "A {$submissionId} számú kéziratot archiválták." + +msgid "log.editor.restored" +msgstr "A {$submissionId} számú kézirat visszakerült a várólistára." + +msgid "log.editor.editorAssigned" +msgstr "" +"{$editorName} lett hozzárendelve szerkesztőként a(z) {$submissionId} számú " +"kézirathoz." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} hozzárendelte {$proofreaderName} korrektort a(z) " +"{$submissionId} számú kézirat korrektúrázására." + +msgid "log.proofread.complete" +msgstr "" +"{$proofreaderName} benyújtotta ütemezésre a(z) {$submissionId} számú " +"kéziratot." + +msgid "log.imported" +msgstr "{$userName} feltöltötte a(z) {$submissionId} számú kiadványt." + +msgid "notification.addedIdentificationCode" +msgstr "Azonosító kód hozzáadva." + +msgid "notification.editedIdentificationCode" +msgstr "Azonosító kód szerkesztve." + +msgid "notification.removedIdentificationCode" +msgstr "Azonosító kód eltávolítva." + +msgid "notification.addedPublicationDate" +msgstr "Közzétételi dátum hozzáadva." + +msgid "notification.editedPublicationDate" +msgstr "Közzétételi dátum szerkesztve." + +msgid "notification.removedPublicationDate" +msgstr "Közzétételi dátum eltávolítva." + +msgid "notification.addedPublicationFormat" +msgstr "Kiadványformátum hozzáadva." + +msgid "notification.editedPublicationFormat" +msgstr "Kiadványformátum szerkesztve." + +msgid "notification.removedPublicationFormat" +msgstr "Kiadványformátum eltávolítva." + +msgid "notification.addedSalesRights" +msgstr "Értékesítési jogok hozzáadva." + +msgid "notification.editedSalesRights" +msgstr "Értékesítési jogok szerkesztve." + +msgid "notification.removedSalesRights" +msgstr "Értékesítési jogok eltávolítva." + +msgid "notification.addedRepresentative" +msgstr "Képviselő hozzáadva." + +msgid "notification.editedRepresentative" +msgstr "Képviselő szerkesztve." + +msgid "notification.removedRepresentative" +msgstr "Képviselő eltávolítva." + +msgid "notification.addedMarket" +msgstr "Piac hozzáadva." + +msgid "notification.editedMarket" +msgstr "Piac szerkesztve." + +msgid "notification.removedMarket" +msgstr "Piac eltávolítva." + +msgid "notification.addedSpotlight" +msgstr "Kiemelt hozzáadva." + +msgid "notification.editedSpotlight" +msgstr "Kiemelt szerkesztve." + +msgid "notification.removedSpotlight" +msgstr "Kiemelt eltávolítva." + +msgid "notification.savedCatalogMetadata" +msgstr "Katalógus metaadatok mentve." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Kiadványformátum metaadatok mentve." + +msgid "notification.proofsApproved" +msgstr "Kefelenyomatok jóváhagyva." + +msgid "notification.removedSubmission" +msgstr "Beküldés törölve." + +msgid "notification.type.submissionSubmitted" +msgstr "Új kiadványt küldtek be \"{$title},\" címmel." + +msgid "notification.type.editing" +msgstr "Események szerkesztése" + +msgid "notification.type.reviewing" +msgstr "Események áttekintése" + +msgid "notification.type.site" +msgstr "Oldal Események" + +msgid "notification.type.submissions" +msgstr "Beküldési események" + +msgid "notification.type.userComment" +msgstr "Egy olvasó hozzászólt ehhez: \"{$cím}\"." + +msgid "notification.type.public" +msgstr "Nyilvános értesítések" + +msgid "notification.type.editorAssignmentTask" +msgstr "Új kiadványt küldtek be, amelyhez szerkesztőt kell hozzárendelni." + +msgid "notification.type.copyeditorRequest" +msgstr "Felkérték a(z) \"{$file}\" olvasószerkesztői átekintésére." + +msgid "notification.type.layouteditorRequest" +msgstr "Felkérték a(z) \"{$cím}\" tördelőszerkesztői áttekintésére." + +msgid "notification.type.indexRequest" +msgstr "Felkérték, hogy hozzon létre egy indexet a(z) \"{$cím}\" számára." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "A belső bírálati folyamat megkezdődött." + +msgid "notification.type.approveSubmission" +msgstr "" +"Ez a beküldött anyag jelenleg jóváhagyásra vár a Katalógustétel fülnél, " +"mielőtt megjelenne a nyilvános katalógusban." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Jóváhagyásra vár." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"A kiadvány nem kerül be a katalógusba, amíg nem kerül közzétételre. A könyv " +"katalógusba való felvételéhez kattintson a Kiadvány fülre." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Nincs beállítva fizetési mód." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Az e-kereskedelmi beállítások meghatározása előtt szükség van fizetési mód " +"beállítására." + +msgid "notification.type.visitCatalogTitle" +msgstr "Katalógus kezelése" + +msgid "notification.type.visitCatalog" +msgstr "" +"A kötetet jóváhagyták. Kérjük, látogasson el a Marketing és Kiadvány fülre, " +"ahol a fenti linkek segítségével kezelheti a katalógus adatait." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Öntől megtagadták a hozzáférést, mert úgy tűnik, hogy Ön nem rendelkezik " +"szakmai lektori szerepkörrel ennél a kiadványnál." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Öntől megtagadták a hozzáférést, mert úgy tűnik, hogy Ön nem szerzője ennek " +"a kötetnek." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Öntől megtagadták a hozzáférést, mert úgy tűnik, hogy Ön nincs hozzárendelve " +"a kiadványhoz szakmai lektorként." + +msgid "user.authorization.monographFile" +msgstr "Öntől megtagadták a hozzáférést a megadott kiadvány fájljához." + +msgid "user.authorization.invalidMonograph" +msgstr "Érvénytelen vagy nincs a kért kiadvány!" + +msgid "user.authorization.noContext" +msgstr "Nem található a kérésnek megfelelő kiadó." + +msgid "user.authorization.seriesAssignment" +msgstr "Olyan kötethez próbál hozzáférni, amely nem része a sorozatának." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" +"Hozzáférés megtagadva! Ön nem lett hozzárendelve ehhez a munkafolyamathoz." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Hozzáférés megtagadva! Az Ön által használt felhasználói csoport nincs " +"hozzárendelve ehhez a munkafolyamathoz. Kérjük, ellenőrizze a kiadó " +"beállításait." + +msgid "payment.directSales" +msgstr "Letöltés a kiadó honlapjáról" + +msgid "payment.directSales.price" +msgstr "Ár" + +msgid "payment.directSales.availability" +msgstr "Elérhetőség" + +msgid "payment.directSales.catalog" +msgstr "Katalógus" + +msgid "payment.directSales.approved" +msgstr "Jóváhagyva" + +msgid "payment.directSales.priceCurrency" +msgstr "Ár ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "" +"Az árak csak számjegyek lehetnek. Ne tartalmazzon valuta szimbólumokat." + +msgid "payment.directSales.directSales" +msgstr "Közvetlen értékesítés" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Nem elérhető" + +msgid "payment.directSales.notSet" +msgstr "Nincs megadva" + +msgid "payment.directSales.openAccess" +msgstr "Nyílt hozzáférés" + +msgid "payment.directSales.price.description" +msgstr "" +"A fájlformátumok a kiadó honlapjáról elérhetővé tehetők letöltésre nyílt " +"hozzáférésen keresztül az olvasók számára költségmentesen vagy közvetlen " +"értékesítéssel (online fizetési folyamat segítségével, ahogy a Terjesztés " +"oldalon került beállításra). Ezt a fájlt jelölje meg a hozzáférés alapján." + +msgid "payment.directSales.validPriceRequired" +msgstr "Érvényes számszerű árat kell megadni." + +msgid "payment.directSales.purchase" +msgstr "Vásárlás {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Letöltés {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Vásárolt kötet vagy fejezet letöltése" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Ez a tranzakció egy kiadvány vagy egy fejezet közvetlen letöltésének " +"megvásárlására vonatkozik." + +msgid "debug.notes.helpMappingLoad" +msgstr "Reloaded XML help mapping file {$filename} in search of {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Könyv" + +msgid "submission.pdf.download" +msgstr "Töltse le ezt a PDF fájlt" + +msgid "user.profile.form.showOtherContexts" +msgstr "Regisztráció további kiadóknál" + +msgid "user.profile.form.hideOtherContexts" +msgstr "További kiadók elrejtése" + +msgid "submission.round" +msgstr "Forduló {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Érvénytelen közzétett beküldést adtak meg." + +msgid "catalog.coverImageTitle" +msgstr "Borítókép" + +msgid "grid.catalogEntry.chapters" +msgstr "Fejezetek" + +msgid "search.results.orderBy.article" +msgstr "Cikk címe" + +msgid "search.results.orderBy.author" +msgstr "Szerző" + +msgid "search.results.orderBy.date" +msgstr "Közzététel dátuma" + +msgid "search.results.orderBy.monograph" +msgstr "Kiadvány címe" + +msgid "search.results.orderBy.press" +msgstr "Kiadó címe" + +msgid "search.results.orderBy.popularityAll" +msgstr "Népszerűség (Mindenkori)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Népszerűség (Múlt hónap)" + +msgid "search.results.orderBy.relevance" +msgstr "Relevancia" + +msgid "search.results.orderDir.asc" +msgstr "Növekvő" + +msgid "search.results.orderDir.desc" +msgstr "Csökkenő" + +msgid "section.section" +msgstr "Sorozatok" diff --git a/locale/hu/manager.po b/locale/hu/manager.po new file mode 100644 index 00000000000..69dc4071ac9 --- /dev/null +++ b/locale/hu/manager.po @@ -0,0 +1,1705 @@ +# Kiss Jázmin , 2021. +# Fülöp Tiffany , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-04-13 12:15+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Ez felváltja az ehhez a nyelvhez tartozó bármilyen nyelvspecifikus kiadói " +"beállításokat" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Sajnos nincsenek további elérhető nyelvek. Vegye fel a kapcsolatot az oldal " +"üzemeltetőjével, amennyiben további nyelveket szeretne használni ennél a " +"kiadónál." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Ez lesz a kiadó oldalának alapértelmezett nyelve." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Biztosodjon meg róla, hogy legalább egy jelölőnégyzet ki van pipálva minden " +"Sorozatszerkesztői hozzárendelésnél." + +msgid "manager.series.form.reviewFormId" +msgstr "" +"Bizonyosodjon meg róla, hogy érvényes szakmai lektorálási űrlapot választott." + +msgid "manager.series.submissionIndexing" +msgstr "Nem fog megjelenni a kiadó indexelésében" + +msgid "manager.series.editorRestriction" +msgstr "Csak szerkesztők és sorozat szerkesztők által nyújthatóak be tételek." + +msgid "manager.series.confirmDelete" +msgstr "Biztos benne, hogy véglegesen törölni szeretné ezt a sorozatot?" + +msgid "manager.series.indexed" +msgstr "Indexelve" + +msgid "manager.series.open" +msgstr "Beküldések megnyitása" + +msgid "manager.series.readingTools" +msgstr "Olvasási eszközök" + +msgid "manager.series.submissionReview" +msgstr "Nem lesz szakmailag lektorálva" + +msgid "manager.series.submissionsToThisSection" +msgstr "Beküldések ehhez a sorozathoz" + +msgid "manager.series.abstractsNotRequired" +msgstr "Az absztrakt nem kötelező" + +msgid "manager.series.disableComments" +msgstr "Olvasói hozzászólások tiltása ehhez a sorozathoz." + +msgid "manager.series.book" +msgstr "Könyvsorozat" + +msgid "manager.series.create" +msgstr "Sorozat létrehozása" + +msgid "manager.series.policy" +msgstr "Sorozat leírása" + +msgid "manager.series.assigned" +msgstr "Sorozat szerkesztői" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Sorozatszerkesztő hozzáadása a sorozathoz az elérhető sorozatszerkesztők " +"közül. A hozzáadást követően jelölje meg, hogy a sorozat szerkesztője " +"felügyeli-e a sorozathoz beküldött kéziratok SZAKMAI LEKTORÁLÁST (szakértői " +"értékelés) és/vagy SZERKESZTÉSÉT (olvasószerkesztés, tördelés és " +"korrektúrázás). Sorozatszerkesztők létrehozásához kattintson a Sorozatszerkesztőkre a Kiadó beállítások alatt " +"lévő Szerepkörök menüpontra." + +msgid "manager.series.hideAbout" +msgstr "Hagyja ki ezt a sorozat a Kiadóról részből." + +msgid "manager.series.unassigned" +msgstr "Elérhető Sorozatszerkesztők" + +msgid "manager.series.form.abbrevRequired" +msgstr "Rövidített cím szükséges a sorozathoz." + +msgid "manager.series.form.titleRequired" +msgstr "Cím szükséges a sorozathoz." + +msgid "manager.series.noneCreated" +msgstr "Nem lett sorozat létrehozva." + +msgid "manager.series.existingUsers" +msgstr "Meglévő felhasználók" + +msgid "manager.series.seriesTitle" +msgstr "Sorozat cím" + +msgid "manager.series.restricted" +msgstr "" +"Ne engedélyezze, hogy a szerzők ehhez a sorozathoz közvetlenül küldjenek be " +"anyagot." + +msgid "manager.payment.generalOptions" +msgstr "Általános beállítások" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Engedélyezve lesznek a fizetések ennél a kiadóhoz. Vegye figyelembe, hogy a " +"felhasználóknak a fizetéshez be kell jelentkezniük." + +msgid "manager.payment.success" +msgstr "A fizetési beállítások frissítésre kerültek." + +msgid "manager.settings" +msgstr "Beállítások" + +msgid "manager.settings.pressSettings" +msgstr "Kiadó beállítások" + +msgid "manager.settings.press" +msgstr "Kiadó" + +msgid "manager.settings.publisher.identity" +msgstr "Kiadó azonosító" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Ezek a mezők kötelezőek érvényes ONIX metaadatok közzétételéhez." + +msgid "manager.settings.publisher" +msgstr "Kiadó neve" + +msgid "manager.settings.location" +msgstr "Földrajzi hely" + +msgid "manager.settings.publisherCode" +msgstr "Kiadó azonosító kód" + +msgid "manager.settings.publisherCodeType" +msgstr "Kiadó azonosító kód típusa" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Ez nem egy érvényes kiadó azonosító kód típus." + +msgid "manager.settings.distributionDescription" +msgstr "" +"A terjesztési folyamatra vonatkozó összes beállítás (értesítés, indexelés, " +"archiválás, fizetés, olvasási eszközök)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Kiadvány fájl letöltések" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Kiadvány absztrakt oldal megtekintések" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Kiadvány absztrakt és letöltések" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Sorozat főoldal megtekintések" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Kiadó főoldal megtekintések" + +msgid "manager.tools" +msgstr "Eszközök" + +msgid "manager.tools.importExport" +msgstr "" +"Az adatok importálására és exportálására vonatkozó összes eszköz (kiadók, " +"kiadványok, felhasználók)" + +msgid "manager.tools.statistics" +msgstr "" +"A felhasználási statisztikákra vonatkozó jelentések generálásra szolgáló " +"eszközök (katalógus tartalomjegyzékének oldalmegtekintése, kiadvány " +"absztraktoldalának megtekintése, kiadvány fájlletöltései)" + +msgid "manager.users.availableRoles" +msgstr "Elérhető szerepkörök" + +msgid "manager.users.currentRoles" +msgstr "Jelenlegi szerepkörök" + +msgid "manager.users.selectRole" +msgstr "Szerepkör kiválasztása" + +msgid "manager.people.allEnrolledUsers" +msgstr "Kiadóhoz regisztrált felhasználók" + +msgid "manager.people.allPresses" +msgstr "Minden kiadó" + +msgid "manager.people.allSiteUsers" +msgstr "Felhasználó regisztrációja az oldalról ehhez a kiadóhoz" + +msgid "manager.people.allUsers" +msgstr "Összes regisztrált felhasználó" + +msgid "manager.people.confirmRemove" +msgstr "" +"Eltávolítja ezt a felhasználót a kiadótól? Ez a művelet megvonja a " +"felhasználót a kiadóban betöltött összes szerepkörétől." + +msgid "manager.people.enrollExistingUser" +msgstr "Létező felhasználó regisztrálása" + +msgid "manager.people.enrollSyncPress" +msgstr "Kiadóval" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Válasszon ki egy felhasználót, hogy összevonja egy másik felhasználói " +"fiókkal (pl.: ha egy valakinek két felhasználói fiókja van). Az elsőként " +"kiválasztott fiók törölve lesz és a beküldései, hozzárendelései, stb. a " +"második fiókhoz lesznek rendelve." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Válasszon ki egy felhasználót, akihez az előző felhasználó szerzőségeit, " +"szerkesztői feladatait stb. társítja." + +msgid "manager.people.syncUserDescription" +msgstr "" +"A regisztráltak szinkronizációja az összes, adott kiadónál bizonyos " +"szerepkört betöltött felhasználót hozzá fogja rendelni ehhez a kiadóhoz " +"azonos szerepkörben. Ez a funkció egy megadott felhasználói körnek (Pl.: " +"Szakmai lektorok) kiadók közötti szinkronizációját teszi lehetővé." + +msgid "manager.people.confirmDisable" +msgstr "" +"Tiltja a felhasználót? Ez megfogja akadályozni a felhasználót, hogy " +"bejelentkezzen a rendszerbe.\n" +"\n" +"Opcionálisan küldhet indoklást a felhasználónak a tiltás okáról." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Sajnos nincs adminisztrációs joga ehhez a felhasználóhoz. Ennek az oka " +"lehet:\n" +"\t\t
        \n" +"\t\t\t
      • Ez a felhasználó az oldal adminisztrátora
      • \n" +"\t\t\t
      • Ez a felhasználó olyan kiadóknál aktív, amiket nem Ön kezel
      • \n" +"\t\t
      \n" +"Ez a feladat csak oldal adminisztrátorként végezhető el.\n" +"\t" + +msgid "manager.system" +msgstr "Rendszerbeállítások" + +msgid "manager.system.archiving" +msgstr "Archiválás" + +msgid "manager.system.reviewForms" +msgstr "Szakmai lektorálási űrlapok" + +msgid "manager.system.readingTools" +msgstr "Olvasási eszközök" + +msgid "manager.system.payments" +msgstr "Fizetések" + +msgid "user.authorization.pluginLevel" +msgstr "Nincs megfelelő jogosultsága a bővítmény kezeléséhez." + +msgid "manager.pressManagement" +msgstr "Kiadó kezelés" + +msgid "manager.setup" +msgstr "Beállítás" + +msgid "manager.setup.aboutItemContent" +msgstr "Tartalom" + +msgid "manager.setup.addAboutItem" +msgstr "Kiadóról elem hozzáadása" + +msgid "manager.setup.addChecklistItem" +msgstr "Ellenőrzőlista tétel hozzáadása" + +msgid "manager.setup.addItem" +msgstr "Tétel hozzáadása" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Tétel hozzáadása a \"Kiadóról\" részhez" + +msgid "manager.setup.addNavItem" +msgstr "Tétel hozzáadása" + +msgid "manager.setup.addSponsor" +msgstr "Támogató szervezet hozzáadása" + +msgid "manager.setup.announcements" +msgstr "Értesítések" + +msgid "manager.setup.announcements.success" +msgstr "Az értesítések beállításai frissítésre kerültek." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Értesítéseket lehet közzétenni az olvasók tájékoztatására a kiadó híreiről " +"és eseményeiről. A közzétett értesítések az Értesítések oldalon fognak " +"megjelenni." + +msgid "manager.setup.announcementsIntroduction" +msgstr "További információ" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Adjon meg bármilyen további információt ami megjelenítésre kerül az olvasók " +"számára az Értesítések oldalon." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Megjelenik a Kiadóról részben) " + +msgid "manager.setup.contextAbout" +msgstr "Kiadóról" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Adjon meg bármilyen információt a kiadójáról, amely érdekelheti az " +"olvasókat, szerzőket és szakmai lektorokat. Ez tartalmazhatja a nyílt " +"hozzáférési irányelveket, a kiadó fókuszát és tudományterületeit, támogatói " +"nyilatkozatot és a kiadó történetét." + +msgid "manager.setup.contextSummary" +msgstr "Kiadó összefoglaló" + +msgid "manager.setup.copyediting" +msgstr "Olvasószerkesztők" + +msgid "manager.setup.copyeditInstructions" +msgstr "Olvasószerkesztési utasítások" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Az olvasószerkesztési utasítások elérhetőek lesznek az olvasószerkesztők, " +"szerzők és sorozatszerkesztők számára a beküldés szerkesztése munkafolyamat " +"alatt. Alább található egy általános utasítás HTML-ben, amely a kiadó " +"menedzser által bármikor módosítható vagy lecserélhető (HTML-ben vagy " +"egyszerű szövegben)." + +msgid "manager.setup.copyrightNotice" +msgstr "Szerzői jogi nyilatkozat" + +msgid "manager.setup.coverage" +msgstr "Lefedettség" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Borítókép maximum magassága" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Borítókép maximum szélessége" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Az ennél nagyobb méretű képek kicsinyítve lesznek, de nem lesznek " +"felnagyítva vagy megnyújtva a méretbeli illeszkedés érdekében." + +msgid "manager.setup.customizingTheLook" +msgstr "5. lépés. A megjelenés testreszabása" + +msgid "manager.setup.customTags" +msgstr "Egyedi címkék" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Egyedi HTML fejléc címkék kerülnek beillesztésre minden oldal fejlécébe " +"(pl.: META címkék)." + +msgid "manager.setup.details" +msgstr "Részletek" + +msgid "manager.setup.details.description" +msgstr "Kiadó neve, kapcsolattartók, támogatók és keresőmotorok." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"A Kiadó menedzser fog minden felhasználói fiókot regisztrálni. Szerkesztők " +"vagy Sorozatszerkesztők szakmai lektorok számára regisztrálhatnak " +"felhasználói fiókot." + +msgid "manager.setup.discipline" +msgstr "Tudományos szakterületek és alszakterületek" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Hasznos, amikor a kiadó szakterületi határokat keresztez és/vagy a szerzők " +"multidiszciplináris elemeket küldenek be." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(Pl.: Történelem; Oktatás; Szociológia; Pszichológia; Kulturális " +"tanulmányok; Jog)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Adjon meg példákat a kiadó szempontjából releváns tudományos szakterületekre" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "" +"Tartalomjegyzék hozzáadása a jelenlegi kiadványhoz (amennyiben rendelkezésre " +"áll)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Kezdőoldal tartalom" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Válogatott könyvek megjelenítése a kezdőlapon" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Válogatott könyvek" + +msgid "manager.setup.displayInSpotlight" +msgstr "Kiemelt könyvek megjelenítése a kezdőlapon" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Kiemelés" + +msgid "manager.setup.displayNewReleases" +msgstr "Új megjelenések megjelenítése a kezdőlapon" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Új megjelenések" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Digitális Objektum Azonosító (DOI) hozzárendelése a kiadványokhoz, " +"fejezetekhez, kiadványformátumokhoz és fájlokhoz." + +#, fuzzy +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Válassza ki azokat a tételeket, amikhez DOI kerül hozzárendelésre. A legtöbb " +"kiadó a DOI-t a kiadványokhoz/fejezetekhez rendeli, de előfordulhat, hogy az " +"összes közzétett tételhez DOI-t kíván rendelni." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Alapértelmezett minták használata.
      %p.%m for monographs
      %p.%m.c%c " +"for chapters
      %p.%m.%f for publication formats
      %p.%m.%f.%s for " +"files." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "Az olvasószerkesztési munkafolyamatnál" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Formátum / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Szerkesztői döntés" + +msgid "manager.setup.emailBounceAddress" +msgstr "Visszapattanó cím" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Bármely nem kézbesíthető e-mail hibaüzenetet fog eredményezni ezen a címen." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Amennyiben a sikertelenül kézbesített leveleket egy visszapattanó e-mail " +"címre szeretné küldeni, az oldal adminisztrátornak engedélyezni kell a " +"allow_envelope_sender opciót az oldal konfigurációs fájljában. " +"Ehhez szükség lehet az OMP dokumentációjában feltüntetett " +"szerverkonfigurációra." + +msgid "manager.setup.emails" +msgstr "E-mail azonosítás" + +msgid "manager.setup.emailSignature" +msgstr "Aláírás" + +#, fuzzy +msgid "manager.setup.emailSignature.description" +msgstr "" +"A rendszer által a kiadó nevében küldött automatikus e-mailek a következő " +"aláírással lesznek ellátva." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Értesítések engedélyezése" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Értesítéseket lehet közzétenni, hogy az olvasók tájékoztatva legyenek a " +"kiadó híreiről és eseményeiről. A közzétett értesítések az Értesítések " +"oldalon fognak megjelenni." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Mejelenítés a kezdőlapon" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Hány értesítés jelenjen meg a kezdőlapon. Amennyiben egy sem, hagyja ezt a " +"részt üresen." + +msgid "manager.setup.enablePressInstructions" +msgstr "Engedélyezze, hogy ez a kiadó nyilvánosan megjelenjen az oldalon" + +msgid "manager.setup.enablePublicMonographId" +msgstr "Az egyedi azonosítók a közzétett tételek azonosítására szolgálnak." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Az egyedi azonosítók a közzétett tételek formtumának (pl.: HTML vagy PDF " +"fájlok) azonosítására szolgálnak." + +msgid "manager.setup.enableUserRegistration" +msgstr "A látogatók felhasználói fiókot tudnak a kiadónál regisztrálni." + +msgid "manager.setup.focusAndScope" +msgstr "A kiadó fókusza és tudományterületei" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Ismertesse a szerzőkkel, olvasókkal és könyvtárosokkal a kiadványok és egyéb " +"tételek körét, amelyeket a kiadó közzétett." + +msgid "manager.setup.focusScope" +msgstr "Fókusz és tudományterület" + +msgid "manager.setup.focusScopeDescription" +msgstr "PÉLDA HTML ADAT" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Szerzők számára a közleményük indexelésére" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"Az OMP betartja a Open Archives Initiative (Nyílt archívumok kezdeményezése) Protocol " +"for Metadata Harvesting protokollt, amely az elektronikus kutatási " +"forrásokhoz való jól indexált hozzáférés globális szintű biztosításának " +"kialakulóban lévő szabványa. A szerzők hasonló sablont használnak a " +"beküldött anyaguk metaadatainak megadásához. A kiadó menedzsernek ki kell " +"választania az indexálandó kategóriákat, és a szerzőknek releváns példákat " +"kell bemutatnia, hogy segítse őket munkájuk indexálásában, a kifejezéseket " +"pontosvesszővel elválasztva (pl.: kifejezés1; kifejezés2). A tételeket " +"példaként kell feltüntetni az \"Pl.:\" vagy \"Például:\" használatával." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Az elsődleges kapcsolattartó e-mail címe kötelező." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Az elsődleges kapcsolattartó neve kötelező." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "A beküldésenkénti szakmai lektorok számának megadása kötelező." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "A támogatói e-mail cím megadása kötelező." + +msgid "manager.setup.form.supportNameRequired" +msgstr "A támogató nevének magadása kötelező." + +msgid "manager.setup.generalInformation" +msgstr "Általános információ" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "1. lépés: A részletek megismerése" + +msgid "manager.setup.guidelines" +msgstr "Útmutatók" + +msgid "manager.setup.preparingWorkflow" +msgstr "3. lépés. Munkafolyamat előkészítése" + +msgid "manager.setup.identity" +msgstr "Kiadó azonosítása" + +msgid "manager.setup.information" +msgstr "Információ" + +msgid "manager.setup.information.description" +msgstr "" +"Rövid leírás a kiadóról könyvtárosok, leendő szerzők és olvasók számára. Az " +"oldalsávon lesz elérhető azután, hogy az Információ blokk hozzáadása " +"megtörtént." + +msgid "manager.setup.information.forAuthors" +msgstr "Szerzőknek" + +msgid "manager.setup.information.forLibrarians" +msgstr "Könyvtásrosoknak" + +msgid "manager.setup.information.forReaders" +msgstr "Olvasóknak" + +msgid "manager.setup.information.success" +msgstr "A kiadóhoz tartozó információ frissítésre került." + +msgid "manager.setup.institution" +msgstr "Intézmény" + +msgid "manager.setup.itemsPerPage" +msgstr "Egy oldalon megjelenő tételek" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Korlátozza a listában megjelenítendő elemek (pl: beküldések, felhasználók, " +"szerkesztői hozzárendelések) számát mielőtt egy másik oldalon megjelenítené " +"a következő elemeket." + +msgid "manager.setup.keyInfo" +msgstr "Kulcsinformáció" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Adjon meg egy rövid leírást a kiadóról és nevezze meg a szerkesztőket, " +"ügyvezetőket és a szerkesztőség további tagjait." + +msgid "manager.setup.labelName" +msgstr "Címke név" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Tördelőszerkesztők" + +msgid "manager.setup.layoutInstructions" +msgstr "Tördelési utasítások" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"A sajtóban megjelenő publikációs tételek formázásához szerkesztési " +"utasításokat lehet készíteni, amelyeket az alábbiakban HTML-ben vagy " +"egyszerű szövegben lehet megadni. A Szerkesztés oldalon a Tördelőszerkesztő " +"és a Sorozatszerkesztő számára lesznek elérhetőek minden egyes beküldésnél. " +"(Mivel minden kiadó saját fájl formátumot, bibliográfiai szabványokat, " +"stíluslapokat, stb. alkalmaz, ezért nincs biztosítva alapértelmezett " +"útmutató.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Tördelés sablonok" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Sablonok tölthetők fel, hogy megjelenjenek a Layout oldalon a sajtóban " +"közzétett szabványos formátumok mindegyikéhez (pl: kiadvány, recenzió, " +"stb.), bármilyen fájlformátumot használva (pl.: pdf, doc, stb.), a " +"betűtípust, méretet, margókat stb. meghatározó megjegyzésekkel, amelyek " +"útmutatóként szolgálnak a tördelőszerkesztők és a korrektorok számára." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Sablon fájl" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Cím" + +msgid "manager.setup.lists" +msgstr "Listák" + +msgid "manager.setup.lists.success" +msgstr "A lista beállítások frissítésre kerültek." + +msgid "manager.setup.look" +msgstr "Megjelenés" + +msgid "manager.setup.look.description" +msgstr "" +"Kezdőlap fejléc, tartalom, kiadói fejléc, lábléc, navigációs sáv és " +"stíluslap." + +msgid "manager.setup.settings" +msgstr "Beállítások" + +msgid "manager.setup.management.description" +msgstr "" +"Hozzáférés és biztonság, ütemezés, értesítések, olvasószerkesztés, tördelés " +"és korrektúrázás." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Alap szerkesztői lépések kezelése" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Menedzsment és publikációs beállítások" + +msgid "manager.setup.managingThePress" +msgstr "4. lépés. Beállítások kezelése" + +msgid "manager.setup.masthead.success" +msgstr "A kiadó fejlécadatai frissítésre kerültek." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Nem került kép fájl feltöltésre." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Nem került stíluslap feltöltésre." + +msgid "manager.setup.note" +msgstr "Jegyzet" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Amikor a Szerző Értesítése e-mailt használja, többszerzős beadványoknál " +"adja meg az összes társszerző e-mail címét és ne csak a beküldő " +"felhasználóét." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Az olvasószerkesztést a beküldéshez rendelet szerkesztő vagy " +"sorozatszerkesztő fogja elvégezni." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"A beküldéshez rendelet szerkesztő vagy sorozatszerkesztő fogja elkészíteni a " +"HTML, PDF, stb. fájlokat." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"A beküldéshez rendelt szerkesztő vagy sorozatszerkesztő fogja ellenőrizni a " +"formátumokat." + +msgid "manager.setup.numPageLinks" +msgstr "Oldal linkek" + +msgid "manager.setup.numPageLinks.description" +msgstr "Korlátozza a listában a következő oldalakra mutató linkek számát." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Hozzáférés Kiadó tartalomhoz" + +msgid "manager.setup.onlineIssn" +msgstr "Online ISSN" + +msgid "manager.setup.policies" +msgstr "Irányelvek" + +msgid "manager.setup.policies.description" +msgstr "" +"Tudományterület, szakmai lektorálás, szakaszok, adatvédelem, biztonság és " +"további tételek." + +msgid "manager.setup.privacyStatement.success" +msgstr "Az adatvédelmi nyilatkozat frissítésre került." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"A kiadó megjelenésének különböző alkotóelemeinek konfigurációjára van " +"lehetőség ezen az oldalon, beleértve a fejléc és lábléc elemeket, kiadó " +"stílusát és sablonját, valamit a tudnivalókat a felhasználók számára." + +msgid "manager.setup.pressDescription" +msgstr "Kiadó összefolaló" + +msgid "manager.setup.pressDescription.description" +msgstr "Rövid leírás a kiadóról." + +msgid "manager.setup.aboutPress" +msgstr "A kiadóról" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Adjon meg bármilyen információt a kiadójáról, amely érdekelheti az " +"olvasókat, szerzőket és szakmai lektorokat. Ez tartalmazhatja a nyílt " +"hozzáférési irányelveket, a kiadó fókuszát és tudományterületeit, szerzői " +"jogi nyilatkozatot, támogatói nyilatkozatot, a kiadó történetét és az " +"adatvédelmi nyilatkozatot." + +msgid "manager.setup.pressArchiving" +msgstr "Kiadó archiválás" + +msgid "manager.setup.homepageContent" +msgstr "Kiadó kezdőoldal tartalom" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"A kiadó kezdőoldala alapértelemezetten tartalmazza a navigációs linkeket. " +"További tartalom adható hozzá a kezdőoldalhoz a következő opciók " +"valamelyikével, amely az adott sorrendeben fog megjelenni." + +msgid "manager.setup.pressHomepageContent" +msgstr "Kiadó kezdőoldal tartalom" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"A kiadó kezdőoldala alapértelemezetten tartalmazza a navigációs linkeket. " +"További tartalom adható hozzá a kezdőoldalhoz a következő opciók " +"valamelyikével, amely az adott sorrendeben fog megjelenni." + +msgid "manager.setup.contextInitials" +msgstr "Kiadó kezdőbetűi" + +msgid "manager.setup.selectCountry" +msgstr "" +"Válasszon ki egy országot, ahol a kiadó található vagy a kiadó levelezési " +"címének országát." + +msgid "manager.setup.layout" +msgstr "Kiadó elrendezés" + +msgid "manager.setup.pageHeader" +msgstr "Kiadó oldal fejléc" + +msgid "manager.setup.pageHeaderDescription" +msgstr "Oldal fejléc leírás" + +msgid "manager.setup.pressPolicies" +msgstr "2. lépés. Kiadói irányelvek" + +msgid "manager.setup.pressSetup" +msgstr "Kiadó beállítások" + +msgid "manager.setup.pressSetupUpdated" +msgstr "A kiadói beállítások frissítésre kerültek." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Érvénytelen stíluslap formátum. Az elfogadható formátum .css." + +msgid "manager.setup.pressTheme" +msgstr "Kiadó sablon" + +msgid "manager.setup.pressThumbnail" +msgstr "Kiadó bélyegképe" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"A kiadók listájában megjelenítésre kerülő kis méretű logó vagy ábrázolás." + +msgid "manager.setup.contextTitle" +msgstr "Kiadó név" + +msgid "manager.setup.printIssn" +msgstr "Nyomtatott ISSN" + +msgid "manager.setup.proofingInstructions" +msgstr "Korrektúrázási utasítások" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"A korrektúrázási utasítások elérhetőek lesznek a korrektorok, szerzők, " +"tördelőszerkesztők és sorozatszerkesztők számára a beküldés szerkesztés " +"munkafolyamata alatt. Alább található egy általános utasítás HTML-ben, ami a " +"kiadó menedzser által bármikor módosítható vagy lecserélhető (HTML-ben vagy " +"egyszerű szövegben)." + +msgid "manager.setup.proofreading" +msgstr "Korrektorok" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Adjon utasításokat a tördelőszerkesztőknek." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Kiadói tételeket együttesen lehet közzétenni egy kiadvány részeként saját " +"tartalomjegyzékkel. Továbbá egyedi tételek közzétételére is van lehetőség az " +"elkészültükkel egy időben, az \"aktuális\" kötet tartalomjegyzékéhez való " +"hozzáadásával. A Kiadóról szóló részben tájékoztassa az olvasókat a sajtó " +"által használt rendszerről és a megjelenés várható gyakoriságáról." + +msgid "manager.setup.publisher" +msgstr "Kiadó" + +msgid "manager.setup.publisherDescription" +msgstr "" +"A kiadót megjelentető szervezet neve a Kiadóról szóló résznél jelenik meg." + +msgid "manager.setup.referenceLinking" +msgstr "Hivatkozás linkelés" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Tördelési utasítások hivatkozások linkeléshez" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Felhasználói regisztráció és bejelentkezés szükséges a nyílt hozzáférésű " +"tartalom megtekintéséhez." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Felhasználói regisztráció és bejelentkezés szükséges a kiadó oldalának " +"megtekintéséhez." + +msgid "manager.setup.reviewGuidelines" +msgstr "Külső szakmai lektorálási útmutatók" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"A beküldött anyagok kiadónál történő közzétételre való alkalmasságának " +"megítéléséhez szükséges kritériumok megadása a külső bírálók számára, " +"amelyek tartalmazhatnak utasításokat a hatékony és hasznos szakmai lektori " +"vélemény elkészítéséhez. A szakmai lektoroknak lehetőségük lesz arra, hogy " +"megjegyzéseket tegyenek a szerzőnek és a szerkesztőnek, valamint külön csak " +"a szerkesztőnek is." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Belső szakmai lektorálási útmutatók" + +msgid "manager.setup.reviewOptions" +msgstr "Szakmai lektorálási lehetőségek" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Automatikus e-mail emlékeztetők" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Ezeknek az opciók az aktiválásához az oldaladminisztrátornak engedélyeznie " +"kell a scheduled_tasks opciót az OMP konfigurációs fájlban. További " +"szerver konfiguráció lehet szükséges ennek a funkciónak a támogatásához " +"(amely nem feltétlenül lehetséges minden szerveren), ahogy az az OMP " +"dokumentációban is fel van tüntetve." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"A szerkesztők értékelik a szakmai lektorokat egy ötpontos minősítő skálán " +"minden szakmai lektorálás után." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Fájl hozzáférés korlátozása" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Szakmai lektorok csak azután férnek hozzá a beküldött anyag fájljához, " +"miután beleegyeztek annak szakmai lektorálásába." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Szakmai lektori hozzáférés" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Egy-kattintásos szakmai lektorálási hozzáférés" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Biztonsági link küldhető a szakmai lektorok részére a felkérő e-mailben, ami " +"lehetővé teszi a bejelentkezés nélküli hozzáférést. Egyéb oldalakhoz való " +"hozzáféréshez viszont szükséges a bejelentkezés." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Biztonsági link küldése szakmai lektoroknak a felkérő e-mailben." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Szakmai lektor értékelése" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Szakmai lektorálási emlékeztetők" + +msgid "manager.setup.reviewPolicy" +msgstr "Szakmai lektorálási irányelvek" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Adjon meg egy rövid leírást (50-300 karakter) a kiadóról, amit a " +"keresőmotorok megtudnak jeleníteni a találati listában." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Keresés indexelés" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Segítse, hogy a Google és hasonló keresőmotorok felfedezzék és listázzák az " +"oldalát. Ajánlatos egy oldaltérkép feltöltése." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "A keresőmotor indexelési beállítások frissítésre kerültek." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Rovatok és Rovatszerkesztők" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Amennyiben nincsenek rovatok megadva, akkor a tételek alapértelmezetten a " +"Monográfia rovathoz lesznek beküldve.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"A kiadónál levő rovatok létrehozásához és módosításához (pl.: Monográfiák, " +"Recenziók, stb.) lépjen az Rovatkezelőbe.

      A szerzők a kiadóhoz " +"való beküldéskor adják meg…" + +msgid "manager.setup.securitySettings" +msgstr "Hozzáférési és biztonsági beállítások" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Egyéb biztonsággal és hozzáféréssel kapcsolatos lehetőségek a Hozzáférés és " +"Biztonság oldalon konfigurálhatóak." + +msgid "manager.setup.selectEditorDescription" +msgstr "" +"A kiadó szerkesztője, aki a szerkesztési folyamatot fogja nyomon követni." + +msgid "manager.setup.selectSectionDescription" +msgstr "A kiadó azon rovata, amihez a tétel tartozni fog." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Mindig mutassa a formátum linkeket és jelezze a korlátozott hozzáférést." + +msgid "manager.setup.siteAccess.view" +msgstr "Oldal hozzáférés" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Kiadvány tartalmának megtekintése" + +msgid "manager.setup.stepsToPressSite" +msgstr "Öt lépéssel egy kiadói weboldalhoz" + +msgid "manager.setup.subjectExamples" +msgstr "(Pl.: fotoszintézis; fekete lyukak, Négyszín-tétel; Bayes-tétel)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Kulcsszavak" + +msgid "manager.setup.subjectProvideExamples" +msgstr "Adjon meg útmutatóként a szerzőknek kulcsszavakat és témákat" + +msgid "manager.setup.submissionGuidelines" +msgstr "Beküldési útmutatók" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Tétel hozzáadása szükséges az ellenőrző listához." + +msgid "manager.setup.workflow" +msgstr "Munkafolyamat" + +msgid "manager.setup.submissions.description" +msgstr "" +"Szerzői útmutatók, szerzői jog és indexelés (beleértve a regisztrációt)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(Pl.: történenelmtudomány; kvázi-kísérleti; irodalomkritika; felmérés/" +"interjú)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Típus (módszer/megközelítés)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Adjon meg példákat ehhez a területhez releváns kutatástípusokról, " +"módszerekről és megközelítésekről" + +msgid "manager.setup.useCopyeditors" +msgstr "Minden beküldéshez egy olvasószerkesztő kerül hozzárendelésre." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "A kiadó szerkesztői/szakmai lektori bizottságot alkalmaz." + +msgid "manager.setup.useImageTitle" +msgstr "Címkép" + +msgid "manager.setup.useStyleSheet" +msgstr "Kiadói stíluslap" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"A HTML, PDF stb. fájlok elektronikus közzétételre való előkészítésére egy " +"tördelőszerkesztő kerül hozzárendelésre." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Közzététel előtt egy korrektor kerül hozzárendelésre, hogy ellenőrzze (a " +"szerzőkkel együtt) a formátumokat." + +msgid "manager.setup.userRegistration" +msgstr "Felhasználó regisztráció" + +msgid "manager.setup.useTextTitle" +msgstr "Cím szövege" + +msgid "manager.setup.volumePerYear" +msgstr "Kötetek évenként" + +msgid "manager.setup.publicationFormat.code" +msgstr "Formátum" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Egy formátum kiválasztása kötelező." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Adjon meg nevet ehhez a formátumhoz." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Ez egy fizikai (nem digitális) formátum?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"A törlés nem lehetséges, mivel ezt a kiadványformátumot egy, a kiadónál " +"elérhető kiadvány használja." + +msgid "manager.setup.newPublicationFormat" +msgstr "Új kiadványformátum" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Új kiadványformátum létrehozásához töltse ki az alábbi űrlapot és kattintson " +"a 'Létrehozás' gombra." + +msgid "manager.setup.genresDescription" +msgstr "" +"Ezek a típusok fájl elnevezésre használhatóak és a lenyíló menüben jelennek " +"meg a fájlok feltöltésekor. A ## jelű műfajok lehetővé teszik a felhasználó " +"számára, hogy a fájlt vagy az egész 99Z könyvhöz, vagy egy adott fejezethez " +"kapcsolja számmal (pl. 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Ez a kiadó most nem fogad el új kéziratokat. Látogasson el a munkafolyamat " +"beállításokhoz, hogy engedélyezze a kéziratok beküldését." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Megakadályozza a felhasználókat , hogy új cikkeket küldjenek be a kiadóhoz. " +"Beküldések tiltása egyes kiadói sorozatokhoz a kiadói " +"sorozatok beállítási oldalán kezdeményezhető." + +msgid "manager.setup.genres" +msgstr "Típusok" + +msgid "manager.setup.newGenre" +msgstr "Új kiadvány típus" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Új típus létrehozásához töltse ki az alábbi űrlapot és kattintson a " +"'Létrehozás' gombra." + +msgid "manager.setup.deleteSelected" +msgstr "Kijelöltek törlése" + +msgid "manager.setup.restoreDefaults" +msgstr "Alapértelmezett beállítások visszaállítása" + +msgid "manager.setup.prospectus" +msgstr "Tájékoztató útmutató" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"A tájékoztató útmutató egy kiadó által elkészített dokumentum, ami a szerzőt " +"segíti a beküldött anyagok leírásában, annak érdekében, hogy a kiadó " +"megtudja becsülni a beküldött anyag értékét. A tájékoztató különböző " +"tételeket tartalmazhat - a piacképességtől kezdve az eszmei értékig; " +"mindenesetre a kiadónak olyan tájékoztatót kell összeállítania, ami tükrözi " +"a kiadó irányelveit." + +msgid "manager.setup.submitToCategories" +msgstr "Kategória beküldések engedélyezése" + +msgid "manager.setup.submitToSeries" +msgstr "Sorozat beküldések engedélyezése" + +msgid "manager.setup.issnDescription" +msgstr "" +"Az ISSN (International Standard Serial Number: Időszaki kiadványok " +"szabványos egyedi azonosítója) egy nyolc számjegyből álló kód, amely " +"lehetővé teszi az fizikai és digitális időszaki kiadványok azonosítását. Az " +"ISSN szám a ISSN " +"International Centre weboldalán igényelhető." + +msgid "manager.setup.currentFormats" +msgstr "Jelenlegi formátumok" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Kategóriák és Sorozatok" + +msgid "manager.setup.categories.description" +msgstr "" +"Lehetőség van kategória listák létrehozására, aminek segítségével " +"rendszerezhetőek a kiadványok. A kategóriák tárgykörüknek megfelelően " +"csoportosítják a könyveket, például: gazdaság; irodalom; költészet; stb. " +"Alkategóriák beilleszthetők főkategóriák alá, például: a gazdaság " +"főkategória magába foglalhatja a mikroökonómia és a makroökonómia " +"alkategóriákat. A látogatók kategóriák szerint kereshetik és böngészhetik a " +"kiadó anyagát." + +msgid "manager.setup.series.description" +msgstr "" +"Tetszőleges számú sorozatot lehet létrehozni a kiadványok rendezéséhez. A " +"sorozat könyveknek egy olyan különleges csoportját jelenti, amely egy " +"tárgynak vagy témáknak szentelt könyveket tartalmaz, amelyeket valaki - " +"általában egy vagy két oktató - javasolt, majd felügyel. A látogatók " +"sorozatonként kereshetnek és böngészhetnek a kiadó művei között." + +msgid "manager.setup.reviewForms" +msgstr "Szakmai lektorálási űrlapok" + +msgid "manager.setup.roleType" +msgstr "Szerepkör típus" + +msgid "manager.setup.authorRoles" +msgstr "Szerző szerepkörök" + +msgid "manager.setup.managerialRoles" +msgstr "Irányítói szerepkörök" + +msgid "manager.setup.availableRoles" +msgstr "Elérhető szerepkörök" + +msgid "manager.setup.currentRoles" +msgstr "Jelenlegi szerepkörök" + +msgid "manager.setup.internalReviewRoles" +msgstr "Belső szakmai lektorálási szerepkörök" + +msgid "manager.setup.masthead" +msgstr "Fejléc" + +msgid "manager.setup.editorialTeam" +msgstr "Szerkesztőség" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"A kiadóhoz tartozó szerkesztők, ügyvezető igazgatók, és további személyek " +"listája." + +msgid "manager.setup.files" +msgstr "Fájlok" + +msgid "manager.setup.productionTemplates" +msgstr "Előkészítési sablonok" + +msgid "manager.files.note" +msgstr "" +"Megjegyzés: A Fájl Böngésző egy haladó funkció, amely lehetővé teszi " +"kiadóhoz tartozó fájlok és mappák közvetlen megtekintését és módosítását." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

      Javasolt Creative Commons szerzői jogi megjegyzések

      \n" +"

      A nyílt hozzáférést kínáló kiadókra vonatkozó javasolt irányelvek

      \n" +"Azok a szerzők, akik ennél a kiadónál jelentetik meg kiadványaikat, " +"elfogadják az alábbi feltételeket:\n" +"
        \n" +"
      1. A szerzők megtartják a szerzői jogokat, és a sajtónak adják az első " +"közzététel jogát, a művet egyidejűleg Creative Commons Attribution License licenc alatt áll, amely lehetővé teszi mások számára a munka megosztását " +"a munka szerzőségének és a sajtóban történő első közzétételének " +"feltüntetésével.
      2. \n" +"
      3. A szerzők külön, további szerződéses sorozatot köthetnek a műnek a sajtó " +"által közzétett változatának nem kizárólagos terjesztésére (pl. a mű " +"intézményi adattárba való beküldésére vagy könyvben való közzétételére), a " +"műnek a sajtóban való első közzétételének feltüntetésével.
      4. \n" +"
      5. A szerzőknek megengedett és javasolt, hogy munkájukat a beküldési " +"folyamat előtt és alatt online közzétegyék (pl. intézményi adattárakban vagy " +"a saját honlapjukon), mivel ez produktív eszmecseréhez, valamint a közzétett " +"munkák minnél előbbi és nagyobb mértékű idézettségéhez vezethet (lásd A " +"nyílt hozzáférés hatása).
      6. \n" +"
      \n" +"\n" +"

      A késleltetett nyílt hozzáférést kínáló kiadókra vonatkozó javasolt " +"irányelvek

      \n" +"Azok a szerzők, akik ennél a kiadónál jelentetik meg kiadványaikat, " +"elfogadják az alábbi feltételeket:\n" +"
        \n" +"
      1. A szerzők megtartják a szerzői jogokat, és a sajtónak adják az első " +"közzététel jogát, a művet a megjelenés után [SPECIFY PERIOD OF TIME]-val/" +"vel később Creative Commons Attribution License licenc alá helyezik, " +"amely lehetővé teszi mások számára a mű megosztását a mű szerzőségének és a " +"sajtóban történő első közzétételének feltüntetésével.
      2. \n" +"
      3. A szerzők külön, további szerződéses sorozatot köthetnek a műnek a sajtó " +"által közzétett változatának nem kizárólagos terjesztésére (pl. a mű " +"intézményi adattárba való beküldésére vagy könyvben való közzétételére), a " +"műnek a sajtóban való első közzétételének feltüntetésével.
      4. \n" +"
      5. A szerzőknek megengedett és javasolt, hogy munkájukat a beküldési " +"folyamat előtt és alatt online közzétegyék (pl. intézményi adattárakban vagy " +"a saját honlapjukon), mivel ez produktív eszmecseréhez, valamint a közzétett " +"munkák minnél előbbi és nagyobb mértékű idézettségéhez vezethet (lásd A " +"nyílt hozzáférés hatása).
      6. \n" +"
      " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Lépések: Kézirat várólista> Kézirat szakmai lektorálás> Kézirat " +"szerkesztés > Tartalomjegyzék.

      \n" +"Válasszon modellt a szerkesztési folyamat ezen aspektusainak kezelésére. (A " +"vezető szerkesztő és a sorozatszerkesztők kijelöléséhez menjen a Kiadó " +"menedzsment beállításokban található Szerkesztők menüponthoz.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

      Annak érdekében, hogy az olvasók a szerző által idézett műveket online " +"formában felkeressék, a következő opciók állnak rendelkezésre.

      \n" +"\n" +"
        \n" +"\t
      1. Olvasási eszközök létrehozása

        A Kiadó menedzser a " +"közzétett tételhez hozzáadhat \"Hivatkozások keresése\" linket az Olvasási " +"eszközökben, amely lehetővé teszi a hivatkozás címének beillesztését és " +"keresését előre meghatározott tudományos adatbázisokban.

      2. \n" +"\t
      3. Linkek beágyazása a hivatkozásokhoz

        A " +"tördelőszerkesztő linkeket adhat meg az online elérhető hivatkozásokhoz az " +"alábbi utasítások nyomán (amelyek szerkeszthetőek).

      4. \n" +"
      " + +msgid "manager.publication.library" +msgstr "Kiadói könyvtár" + +msgid "manager.setup.resetPermissions" +msgstr "Kiadvány engedélyinek visszaállítása" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Biztos benne, hogy vissza akarja állítani a kiadványhoz tartozó engedélyeket?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Szerzői jogi nyilatkozat és engedély információ a véglegesen publikált " +"tartalomhoz lesz csatolva, biztosítva, hogy ez az adat változatlan marad " +"abban az esetben is, ha a kiadói irányelvek az új beküldésekre vonatkozóan " +"megváltoznak. A már publikált tartalomra vonatkozó engedélyek " +"visszaállításához használja az alábbi gombot." + +msgid "manager.setup.resetPermissions.success" +msgstr "Kiadvány engedélyek sikeresen visszaállítva." + +msgid "grid.genres.title.short" +msgstr "Alkotóelemek" + +msgid "grid.genres.title" +msgstr "Kiadvány alkotóelemei" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Másolat küldése a Kiadó beállításokban megnevezett elsődleges " +"kapcsolattartónak." + +msgid "grid.series.pathAlphaNumeric" +msgstr "A sorozat elérési útvonala csak betűket és számokat tartalmazhat." + +msgid "grid.series.pathExists" +msgstr "" +"A sorozat elérési útvonal már létezik. Adjon meg egy egyedi elérési " +"útvonalat." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Sorozat kiválasztása" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Válassza ki a sorozatot, amelyhez ezt a menü elemet szeretné csatolni." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Kategória kiválasztása" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" +"Válassza ki azt a kategóriát, amelyhez ezt a menü elemet szeretné csatolni." + +msgid "grid.series.urlWillBe" +msgstr "A sorozat URL-je: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "Kiadvány statisztika" + +msgid "stats.publications.details" +msgstr "Kiadvány részletei" + +msgid "stats.publications.none" +msgstr "" +"Nem található kiadvány a megadott paramétereknek megfelelő használati " +"statisztikákkal." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Dátum szerinti összes katalógus megtekintés" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Dátum szerinti összes fájl megtekintés" + +msgid "stats.publications.countOfTotal" +msgstr "{$total} / {$count} kiadvány" + +msgid "stats.publications.abstracts" +msgstr "Katalógustételek" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Nincsenek kiválasztott elemek." + +msgid "plugins.importexport.common.error.validation" +msgstr "A kiválasztott elemeket nem lehetett konvertálni." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Érvénytelen XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Bküldések exportálása" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Másolat küldése a a beküldést visszaigazoló e-mailről a kiadó elsődleges " +"kapcsolattartójának." + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"Nincs elsődleges kapcsolattartó meghatározva ehhez a kiadóhoz. Elsődleges " +"kapcsolattartót megadnia kiadói beállításokban lehet." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "A megadott elem nem található." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "A megadott \"{$userName}\" felhasználó, nem létezik." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "A kiadványformátum elemzése sikertelen volt" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "A fejezetek elemzése sikertelen volt" + +msgid "emailTemplate.variable.context.contextName" +msgstr "A kiadó neve" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "A kiadó kezdőoldalára vezető URL" + +msgid "emailTemplate.variable.context.contactName" +msgstr "A kiadó elsődleges kapcsolattartójának neve" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "A kiadó aláírása automatikusan kiküldött e-mailekben" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "A kiadó elsődleges kapcsolattartójának e-mail címe" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "A fizetési mód neve" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Fizetendő összeg" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "A fizetendő összeg pénzneme, például USD" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Weboldal neve, amennyiben több, mint egy kiadót is szolgáltatva van" + +msgid "mailable.validateEmailContext.name" +msgstr "Email megerősítése (Kiadó regisztráció)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Ez az email automatikusan kerül kiküldésre az újonnan regisztrált " +"felhasználónak, amikor a beállítások miatt kötelező az e-mail fiók " +"hitelesítése." + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "DOI-k" + +msgid "doi.description" +msgstr "" +"Ez a bővítmény lehetővé teszi a Digitális Objektumazonosítók (DOI) " +"hozzárendelését kiadványokhoz, fejezetekhez, kiadványformátumokhoz és " +"fájlokhoz az OMP-ben." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Kérjük, konfigurálja a DOI bővítményt, hogy képes legyen DOI-kat kezelni és " +"használni az OMP-ben:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Kérjük, válassza ki azokat a publikálandó elemeket, amelyekhez digitális " +"objektumazonosítót (DOI) rendelnek:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Kiadványok" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Fejezetek" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Kiadványformátumok" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Fájlok" + +#, fuzzy +msgid "doi.manager.settings.doiPrefix" +msgstr "DOI előtag" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "A DOI előtag kötelező, és 10.xxxx formátumúnak kell lennie." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"A DOI utótagok létrehozásához használja az alábbiakban megadott mintát. " +"Használja a %p-t a kiadó (press) kezdőbetűihez, a %m-t a kiadvány " +"(monograph) azonosítójához, a %c-t a fejezet (chapter) azonosítójához, a %f-" +"t a kiadványformátum ( publication format) azonosítójához, a %s-t a fájl " +"(file) azonosítójához és a %x-t az \"Egyéni azonosítóhoz\" (Custom " +"Identifier)." + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Például a press%ppub%r olyan DOI-t hozhat létre mint 10.1234/pressESPppub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "kiadványoknak" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "fejezeteknek" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "kiadványformátumoknak" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "fájloknak" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Adja meg a kiadványok DOI utótag mintáját." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Adja meg a fejezetek DOI utótag mintáját." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Adja meg a kiadványformátumok DOI utótag mintáját." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Adja meg a fájlok DOI utótag mintáját." + +msgid "doi.manager.settings.doiReassign" +msgstr "DOI-k újbóli hozzárendelése" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Ha módosítja a DOI konfigurációt a már hozzárendelt DOI-kat ez nem fogja " +"érinteni. A DOI-konfiguráció mentése után ezzel a gombbal törölheti az " +"összes meglévő DOI-t, hogy az új beállítások az összes meglévő elemnél " +"érvénybe lépjenek." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Biztos, hogy az összes meglévő DOI-t törölni kívánja?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "A DOI-nak ezzel kell kezdődnie: {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Hozzárendelés" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "kiadvány" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "fejezet" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "kiadványformátum" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "fájl" + +msgid "doi.editor.customSuffixMissing" +msgstr "A DOI nem rendelhető hozzá, mert az egyéni utótag hiányzik." + +msgid "doi.editor.missingParts" +msgstr "" +"Nem tudja létrehozni a DOI-t, mert a DOI mintájából egy vagy több rész " +"hiányzik." + +msgid "doi.editor.patternNotResolved" +msgstr "A DOI nem rendelhető hozzá, mert feloldatlan mintát tartalmaz." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Amit lát, az a DOI előnézete. A DOI hozzárendeléséhez jelölje be a " +"jelölőnégyzetet és mentse el az űrlapot." + +msgid "doi.editor.assigned" +msgstr "A DOI-t ehhez a(z) {$pubObjectType} elemhez rendelték." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Az adott DOI utótag már használatban van egy másik közzétett elemnél. " +"Kérjük, egyedi DOI utótagot adjon hozzá minden egyes tételhez." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Törlés" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Biztos, hogy törölni kívánja a meglévő DOI-t?" + +msgid "doi.editor.assignDoi" +msgstr "A DOI {$pubId} hozzárendelése ehhez a(z) {$pubObjectType} elemhez" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "A DOI nem rendelhető hozzá, mert az egyéni utótag hiányzik." + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"A DOI {$pubId} nem rendelhető hozzá, mert feloldatlan mintát tartalmaz." + +msgid "doi.editor.assignDoi.assigned" +msgstr "A {$pubId} DOI kiosztásra került." + +msgid "doi.editor.missingPrefix" +msgstr "A DOI-nak ezzel kell kezdődnie: {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "A kiadvány DOI-ja lesz: {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "Ehhez a kiadványhoz nem rendeltek DOI-t." + +msgid "doi.editor.preview.chapters" +msgstr "Fejezet: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Kiadványformátum: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Fájl: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Elem" + +msgid "doi.manager.submissionDois" +msgstr "Kiadvány DOI-k" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Ez az e-mail értesíti a szerzőt arról, hogy beküldött anyagát továbbküldték " +"a belső szakmai lektorálási munkafolyamatba." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Ez az e-mail arról értesíti a szerzőt, hogy a beküldött anyagát elutasítják " +"már a szakmai lektorálásra küldés előtt, mert az nem felel meg a kiadó " +"közzétételhez szükséges követelményeinek." + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Belső szakmai lektorálásra küldés" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "A DOI (Digital Object Identifier / digitális objektumazonosító) előtag a " +#~ "CrossRef által " +#~ "lesz hozzárendelve 10.xxxx (e.g. 10.1234) formátumban." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "DOI előtag" diff --git a/locale/hu/submission.po b/locale/hu/submission.po new file mode 100644 index 00000000000..547506cad61 --- /dev/null +++ b/locale/hu/submission.po @@ -0,0 +1,619 @@ +# Szabolcs Hoczopan , 2021. +# Fülöp Tiffany , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-04-13 12:15+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Alkotóelem kiválasztása" + +msgid "submission.title" +msgstr "Könyv címe" + +msgid "submission.select" +msgstr "Beküldés kiválasztása" + +msgid "submission.synopsis" +msgstr "Tartalom" + +msgid "submission.workflowType" +msgstr "Beküldés típusa" + +msgid "submission.workflowType.description" +msgstr "" +"A monográfia olyan mű, amelyet teljes egészében egy vagy több szerző írt. A " +"szerkesztett kötetben az egyes fejezetek szerzői különbözőek (a fejezetek " +"adatai a folyamat során később kerülnek betöltésre)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Szerkesztett kötet" + +msgid "submission.workflowType.editedVolume" +msgstr "Szerkesztett kötet: A szerzők saját fejezetükhöz vannak rendelve." + +msgid "submission.workflowType.authoredWork" +msgstr "Monográfia: A szerzők a könyv egészéhez vannak rendelve." + +msgid "submission.workflowType.change" +msgstr "Változtatás" + +msgid "submission.editorName" +msgstr "{$editorName} (ed)" + +msgid "submission.monograph" +msgstr "Monográfia" + +msgid "submission.published" +msgstr "Megjelentetésre kész" + +msgid "submission.fairCopy" +msgstr "Tisztázat" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Engedélyek" + +msgid "submission.chapter" +msgstr "Fejezet" + +msgid "submission.chapters" +msgstr "Fejezetek" + +msgid "submission.chapter.addChapter" +msgstr "Fejezet hozzáadása" + +msgid "submission.chapter.editChapter" +msgstr "Fejezet szerkesztése" + +msgid "submission.chapter.pages" +msgstr "Oldalak" + +msgid "submission.copyedit" +msgstr "Olvasószerkesztés" + +msgid "submission.publicationFormats" +msgstr "Kiadványformátumok" + +msgid "submission.proofs" +msgstr "Kefelenyomatok" + +msgid "submission.download" +msgstr "Letöltés" + +msgid "submission.sharing" +msgstr "Megosztás" + +msgid "manuscript.submission" +msgstr "Kézirat beküldés" + +msgid "submission.round" +msgstr "Forduló {$round}" + +msgid "submissions.queuedReview" +msgstr "Szakmai lektorálás alatt" + +msgid "manuscript.submissions" +msgstr "Kézirat beküldések" + +msgid "submission.metadata" +msgstr "Mataadat" + +msgid "submission.supportingAgencies" +msgstr "Támogató szervezetek" + +msgid "grid.action.addChapter" +msgstr "Új fejezet létrehozása" + +msgid "grid.action.editChapter" +msgstr "Fejezet szerkesztése" + +msgid "grid.action.deleteChapter" +msgstr "Fejezet törlése" + +msgid "submission.submit" +msgstr "Új könyv beküldése" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Új beküldés indítása" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Új beküldés" + +msgid "submission.submit.upload" +msgstr "Beküldés feltöltése" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "Ez a közreműködő a kötet szerkesztője." + +msgid "submission.submit.seriesPosition" +msgstr "Sorozati pozíció" + +msgid "submission.submit.seriesPosition.description" +msgstr "Példa: 2. könyv, 2. kötet" + +msgid "submission.submit.privacyStatement" +msgstr "Adatvédelmi nyilatkozat" + +msgid "submission.submit.contributorRole" +msgstr "Közreműködő szerepköre" + +msgid "submission.submit.submissionFile" +msgstr "Beküldés fájl" + +msgid "submission.submit.prepare" +msgstr "Előkészítés" + +msgid "submission.submit.catalog" +msgstr "Katalógus" + +msgid "submission.submit.metadata" +msgstr "Metaadat" + +msgid "submission.submit.finishingUp" +msgstr "Befejezés" + +msgid "submission.submit.confirmation" +msgstr "Megerősítés" + +msgid "submission.submit.nextSteps" +msgstr "Következő lépések" + +msgid "submission.submit.coverNote" +msgstr "Üzenet a szerkesztőnek" + +msgid "submission.submit.generalInformation" +msgstr "Általános információ" + +msgid "submission.submit.whatNext.description" +msgstr "" +"A szerkesztőséget értesítettük a beküldésről és e-mailben visszaigazolást " +"küldtünk Önnek. Amint a szerkesztő átnézte a beküldését, felveszi Önnel a " +"kapcsolatot." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Kérjük, olvassa el és jelölje be a beküldés ellenőrzőlistájának elemeit. " +"Vannak még {$itemsRemaining} elfogadás nélküli elemek." + +msgid "submission.submit.placement" +msgstr "A benyújtás elhelyezése" + +msgid "submission.submit.userGroup" +msgstr "Szerepköröm a beküldött anyagban..." + +msgid "submission.submit.noContext" +msgstr "Ennek a beküldésnek a kiadója nem található." + +msgid "grid.chapters.title" +msgstr "Fejezetek" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Olvasószerkesztő feltöltésének törlése" + +msgid "submission.complete" +msgstr "Jóváhagyva" + +msgid "submission.incomplete" +msgstr "Jóváhagyásra vár" + +msgid "submission.editCatalogEntry" +msgstr "Tétel" + +msgid "submission.catalogEntry.new" +msgstr "Tétel hozzáadása" + +msgid "submission.catalogEntry.add" +msgstr "A kiválasztott elem hozzáadása a katalógushoz" + +msgid "submission.catalogEntry.select" +msgstr "Válassza ki a katalógushoz adandó kiadványt" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Legalább egy kiadványt ki kell választania hozzáadásra a katalógushoz." + +msgid "submission.catalogEntry.confirm" +msgstr "Könyv hozzáadása a nyilvános katalógushoz" + +msgid "submission.catalogEntry.confirm.required" +msgstr "" +"Kérjük, erősítse meg, hogy a beküldött anyag készen áll a katalógusba való " +"felvételre." + +msgid "submission.catalogEntry.isAvailable" +msgstr "A kiadvány készen áll a nyilvános katalógusba való felvételre." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Beküldés megtekintése" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Közzétételi dátumok" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Minden fejezet a kiadvány megjelenési dátumát fogja használni." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Minden fejezetnek lehet saját megjelenési dátuma." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Kiadvány" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Katalógus" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Kiadványformátum" + +msgid "submission.event.metadataPublished" +msgstr "A kiadvány metaadatai jóvá vannak hagyva közzétételre." + +msgid "submission.event.metadataUnpublished" +msgstr "A kiadvány metaadatait nincsenek tovább közzétéve." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "A \"{$publicationFormatName}\" kiadványformátum elérhetővé válik." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "A \"{$publicationFormatName}\" kiadványformátum már nem elérhető." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"A \"{$publicationFormatName}\" kiadványformátumot jóváhagyták közzétételre ." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"A \"{$publicationFormatName}\" kiadványformátum már nincs tovább közzétéve." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "A katalógus metaadatai frissítésre kerültek." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"A(z) \"{$formatName}\" kiadványformátum metaadatai frissítésre kerültek." + +msgid "submission.event.publicationFormatCreated" +msgstr "Létrejött a(z) \"{$formatName}\" kiadványformátum." + +msgid "submission.event.publicationFormatRemoved" +msgstr "A(z) \"{$formatName}\" kiadványformátum eltávolításra került." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Külső szakmai lektorálásra küldés" + +msgid "workflow.review.externalReview" +msgstr "Külső szakmai lektorálás" + +msgid "submission.upload.fileContents" +msgstr "Beküldési összetevők" + +msgid "submission.dependentFiles" +msgstr "Függőben lévő fájlok" + +msgid "submission.metadataDescription" +msgstr "" +"Ezek a specifikációk a Dublin Core metaadatkészleten alapulnak, amely a " +"tartalom feltárására használt nemzetközi szabvány." + +msgid "section.any" +msgstr "Bármely sorozat" + +msgid "submission.list.monographs" +msgstr "Kiadványok" + +msgid "submission.list.countMonographs" +msgstr "{$count} kiadvány" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} / {$total} kiadvány" + +msgid "submission.list.orderFeatures" +msgstr "Rendezési opciók" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Húzással vagy a felfelé és lefelé gombokra kattintva megváltoztathatja a " +"sorrendet a kezdőlapon." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"A(z) {$title} belül húzással vagy a felfelé és lefelé gombokra kattintva " +"megváltoztathatja a sorrendet." + +msgid "submission.list.saveFeatureOrder" +msgstr "Sorrend mentése" + +msgid "submission.list.viewEntry" +msgstr "Tétel megtekintése" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} cím" + +msgid "publication.catalogEntry" +msgstr "Katalógustétel" + +msgid "publication.catalogEntry.success" +msgstr "A katalógustétel részletei frissítésre kerültek." + +msgid "publication.invalidSeries" +msgstr "A sorozatot ehhez a kiadványhoz nem sikerült megtalálni." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Inaktív)" + +msgid "publication.required.issue" +msgstr "A kiadványt egy kötethez kell rendelni, mielőtt közzétehető lenne." + +msgid "publication.publishedIn" +msgstr "Közzétéve a {$issueName} kötetben." + +msgid "publication.publish.confirmation" +msgstr "" +"Minden publikációs elvárásnak megfelelt. Biztos, hogy nyilvánossá kívánja " +"tenni ezt a katalógusbejegyzést?" + +msgid "publication.scheduledIn" +msgstr "Megjelenik a {$issueName} kötetben." + +msgid "submission.publication" +msgstr "Kiadvány" + +msgid "publication.status.published" +msgstr "Közzétéve" + +msgid "submission.status.scheduled" +msgstr "Ütemezett" + +msgid "publication.status.unscheduled" +msgstr "Nem ütemezett" + +msgid "submission.publications" +msgstr "Kiadványok" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"A szerzői jog éve automatikusan beállításra kerül a megjelenést követően." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"A szerzői jog éve automatikusan beállításra kerül a közzététel dátuma " +"alapján." + +msgid "publication.datePublished" +msgstr "Közzététel dátuma" + +msgid "publication.editDisabled" +msgstr "Ez a verzió már nem szerkeszthető, mert közzé van téve." + +msgid "publication.event.published" +msgstr "A beküldött anyag közzétételre került." + +msgid "publication.event.scheduled" +msgstr "A beküldött anyag közzétételre ütemezve." + +msgid "publication.event.unpublished" +msgstr "A beküldött anyag közzétételét visszavonták." + +msgid "publication.event.versionPublished" +msgstr "Egy új verzió került közzétételre." + +msgid "publication.event.versionScheduled" +msgstr "Egy új verzió került ütemezésre a kiadványhoz." + +msgid "publication.event.versionUnpublished" +msgstr "Ez a verzió törölve lett a kiadványból." + +msgid "publication.invalidSubmission" +msgstr "Erre a kiadványra vonatkozó beküldést nem található." + +msgid "publication.publish" +msgstr "Közzététel" + +msgid "publication.publish.requirements" +msgstr "A közzétételhez a következő követelményeknek kell megfelelni." + +msgid "publication.required.declined" +msgstr "Az elutasított beküldést nem lehet közzétenni." + +msgid "publication.required.reviewStage" +msgstr "" +"A beküldött anyagnak az Olvasószerkesztés vagy Előkészítés szakaszában kell " +"lennie a közzétételhez." + +msgid "submission.license.description" +msgstr "" +"A licenc automatikusan a {$licenseName} -ra/-re kerül beállításra, amikor ez " +"közzétételre kerül." + +msgid "submission.copyrightHolder.description" +msgstr "" +"A szerzői jog közzétételkor automatikusan hozzárendelésre kerül: " +"{$copyright}." + +msgid "submission.copyrightOther.description" +msgstr "A közzétett beküldések szerzői jogait a következő félre ruházza át." + +msgid "publication.unpublish" +msgstr "Közzététel visszavonása" + +msgid "publication.unpublish.confirm" +msgstr "Biztos benne, hogy vissza akarja vonni a közzétételt?" + +msgid "publication.unschedule.confirm" +msgstr "" +"Biztos benne, hogy vissza akarja vonni az ütemezését ennek a kiadványnak?" + +msgid "publication.version.details" +msgstr "A {$verzió} verzió kiadvány adatai" + +msgid "submission.queries.production" +msgstr "Előkészítéssel kapcsolatos megbeszélések" + +msgid "publication.chapter.landingPage" +msgstr "Fejezet oldalszám" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Ezt a fejezetet egy saját oldalon jelenítse meg, és hivatkozzon erre az " +"oldalra a könyv tartalomjegyzékéből." + +msgid "publication.publish.success" +msgstr "Közzététel státusza sikeresen megváltozott." + +msgid "chapter.volume" +msgstr "Kötet" + +msgid "submission.withoutChapter" +msgstr "{$name} — Ez a fejezet nélkül" + +msgid "submission.chapterCreated" +msgstr " — Fejezet létrehozva" + +msgid "chapter.pages" +msgstr "Oldalak" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Belső szakmai lektorálásra küldés" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" +"Ez a beküldés készen áll a belső szakmai lektorálásra való továbbküldéshez." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" +"{$editorName} továbbküldte ezt a beküldött anyagot a belső szakmai " +"lektorálási szakaszba." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Belső szakmai lektorálásra továbbküldve" + +#, fuzzy +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"A {$title} című beküldést továbbküldték a belső szakmai lektorálási " +"szakaszba." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Küldjön egy e-mailt a szerzőknek, hogy tudassa velük, hogy a beküldött " +"anyagot belső szakmai lektorálásra küldik. Ha lehetséges, tájékoztassa a " +"szerzőket arról, hogy mennyi ideig tarthat a belső szakmai lektorálás " +"folyamat, és mikorra várhatják, hogy a szerkesztők ismét jelentkeznek." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "Válassza ki a belső szakmai lektorálási szakaszba küldendő fájlokat." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" +"{$editorName} továbbküldte ezt a beküldést a külső szakmai lektorálási " +"szakaszba." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Külső szakmai lektorálásra továbbküldve" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" +"A {$title} című beküldést továbbküldték a külső szakmai lektorálási " +"szakaszba." + +msgid "editor.submission.decision.backToReview" +msgstr "Vissza szakmai lektorálásra" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Vonja vissza a beküldött anyag elfogadásáról szóló döntést, és küldje vissza " +"a szakmai lektorálás szakaszba." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} visszavonta a beküldött anyag elfogadásáról szóló döntést, és " +"visszaküldte azt a szakmai lektorálás szakaszba." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Vissza küldve szakmai lektorálásra" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" +"A(z) {$title} című beküldést visszaküldték a szakmai lektorálás szakaszba." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Küldjön egy e-mailt a szerzőknek, hogy tudassa velük, hogy a beadványukat " +"visszaküldik a szakmai lektorálás szakaszba. Adjanak magyarázatot arra, hogy " +"miért született ez a döntés, és tájékoztassák a szerzőt arról, hogy milyen " +"további szakmai lektorálásra kerül sor." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Küldjön egy e-mailt a szerzőknek, hogy tudassa velük, hogy a beadványukat " +"továbbítják a szakmai lektorálás szakaszba. Ha lehetséges, tájékoztassák a " +"szerzőket arról, hogy mennyi ideig tarthat a szakértői véleményezési " +"folyamat, és mikorra várhatják, hogy a szerkesztők ismét jelentkeznek." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Válassza ki a szakmai lektorálás szakaszba küldendő fájlokat." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Javaslat külső szakmai lektorálásra küldéshez" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" +"Javasolja, hogy ezt a beküldést küldjék a külső szakmai lektorálási " +"szakaszba." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} javasolta, hogy ezt a beküldést küldjék el a külső bírálati " +"szakaszba." + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/id/default.po b/locale/id/default.po new file mode 100644 index 00000000000..8e8caff3a23 --- /dev/null +++ b/locale/id/default.po @@ -0,0 +1,129 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "default.genres.appendix" +msgstr "" + +msgid "default.genres.bibliography" +msgstr "" + +msgid "default.genres.manuscript" +msgstr "" + +msgid "default.genres.chapter" +msgstr "" + +msgid "default.genres.glossary" +msgstr "" + +msgid "default.genres.index" +msgstr "" + +msgid "default.genres.preface" +msgstr "" + +msgid "default.genres.prospectus" +msgstr "" + +msgid "default.genres.table" +msgstr "" + +msgid "default.genres.figure" +msgstr "" + +msgid "default.genres.photo" +msgstr "" + +msgid "default.genres.illustration" +msgstr "" + +msgid "default.genres.other" +msgstr "" + +msgid "default.groups.name.manager" +msgstr "" + +msgid "default.groups.plural.manager" +msgstr "" + +msgid "default.groups.abbrev.manager" +msgstr "" + +msgid "default.groups.name.editor" +msgstr "" + +msgid "default.groups.plural.editor" +msgstr "" + +msgid "default.groups.abbrev.editor" +msgstr "" + +msgid "default.groups.name.sectionEditor" +msgstr "" + +msgid "default.groups.plural.sectionEditor" +msgstr "" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "" + +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + +msgid "default.groups.name.chapterAuthor" +msgstr "" + +msgid "default.groups.plural.chapterAuthor" +msgstr "" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "" + +msgid "default.groups.name.volumeEditor" +msgstr "" + +msgid "default.groups.plural.volumeEditor" +msgstr "" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" + +msgid "default.contextSettings.forReaders" +msgstr "" + +msgid "default.contextSettings.forAuthors" +msgstr "" + +msgid "default.contextSettings.forLibrarians" +msgstr "" + +msgid "default.groups.name.externalReviewer" +msgstr "" + +msgid "default.groups.plural.externalReviewer" +msgstr "" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "" diff --git a/locale/id/locale.po b/locale/id/locale.po new file mode 100644 index 00000000000..be8daeeb2be --- /dev/null +++ b/locale/id/locale.po @@ -0,0 +1,1455 @@ +# elpinowindy , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-08-02 17:58+0000\n" +"Last-Translator: elpinowindy \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "common.payments" +msgstr "" + +msgid "monograph.audience" +msgstr "" + +msgid "monograph.audience.success" +msgstr "" + +msgid "monograph.coverImage" +msgstr "" + +msgid "monograph.audience.rangeQualifier" +msgstr "" + +msgid "monograph.audience.rangeFrom" +msgstr "" + +msgid "monograph.audience.rangeTo" +msgstr "" + +msgid "monograph.audience.rangeExact" +msgstr "" + +msgid "monograph.languages" +msgstr "" + +msgid "monograph.publicationFormats" +msgstr "" + +msgid "monograph.publicationFormat" +msgstr "" + +msgid "monograph.publicationFormatDetails" +msgstr "" + +msgid "monograph.miscellaneousDetails" +msgstr "" + +msgid "monograph.carousel.publicationFormats" +msgstr "" + +msgid "monograph.type" +msgstr "" + +msgid "submission.pageProofs" +msgstr "" + +msgid "monograph.proofReadingDescription" +msgstr "" + +msgid "monograph.task.addNote" +msgstr "" + +msgid "monograph.accessLogoOpen.altText" +msgstr "" + +msgid "monograph.publicationFormat.imprint" +msgstr "" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "" + +msgid "monograph.publicationFormat.productComposition" +msgstr "" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "" + +msgid "monograph.publicationFormat.price" +msgstr "" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "" + +msgid "monograph.publicationFormat.priceType" +msgstr "" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr "" + +msgid "monograph.publicationFormat.productFileSize" +msgstr "" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "" + +msgid "monograph.publicationFormat.productHeight" +msgstr "" + +msgid "monograph.publicationFormat.productThickness" +msgstr "" + +msgid "monograph.publicationFormat.productWeight" +msgstr "" + +msgid "monograph.publicationFormat.productWidth" +msgstr "" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "" + +msgid "monograph.publicationFormat.productRegion" +msgstr "" + +msgid "monograph.publicationFormat.taxRate" +msgstr "" + +msgid "monograph.publicationFormat.taxType" +msgstr "" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "" + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "" + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "" + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" + +msgid "monograph.publicationFormat.openTab" +msgstr "" + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "" + +msgid "grid.catalogEntry.nameRequired" +msgstr "" + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "" + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "" + +msgid "grid.catalogEntry.remoteURL" +msgstr "" + +msgid "grid.catalogEntry.isbn" +msgstr "" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "" + +msgid "grid.catalogEntry.isbn10.description" +msgstr "" + +msgid "grid.catalogEntry.monographRequired" +msgstr "" + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "" + +msgid "grid.catalogEntry.availability" +msgstr "" + +msgid "grid.catalogEntry.isAvailable" +msgstr "" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "" + +msgid "grid.catalogEntry.proof" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "" + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "" + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "" + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "" + +msgid "grid.catalogEntry.codeRequired" +msgstr "" + +msgid "grid.catalogEntry.valueRequired" +msgstr "" + +msgid "grid.catalogEntry.salesRights" +msgstr "" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" + +msgid "grid.catalogEntry.countries" +msgstr "" + +msgid "grid.catalogEntry.regions" +msgstr "" + +msgid "grid.catalogEntry.included" +msgstr "" + +msgid "grid.catalogEntry.excluded" +msgstr "" + +msgid "grid.catalogEntry.markets" +msgstr "" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "" + +msgid "grid.catalogEntry.publicationDates" +msgstr "" + +msgid "grid.catalogEntry.roleRequired" +msgstr "" + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "" + +msgid "grid.catalogEntry.dateValue" +msgstr "" + +msgid "grid.catalogEntry.dateRole" +msgstr "" + +msgid "grid.catalogEntry.dateFormat" +msgstr "" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" + +msgid "grid.catalogEntry.representatives" +msgstr "" + +msgid "grid.catalogEntry.representativeType" +msgstr "" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "" + +msgid "grid.catalogEntry.agent" +msgstr "" + +msgid "grid.catalogEntry.agentTip" +msgstr "" + +msgid "grid.catalogEntry.supplier" +msgstr "" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "" + +msgid "grid.catalogEntry.representativeRole" +msgstr "" + +msgid "grid.catalogEntry.representativeName" +msgstr "" + +msgid "grid.catalogEntry.representativePhone" +msgstr "" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" + +msgid "grid.action.addRepresentative" +msgstr "" + +msgid "grid.action.editRepresentative" +msgstr "" + +msgid "grid.action.deleteRepresentative" +msgstr "" + +msgid "spotlight" +msgstr "" + +msgid "spotlight.spotlights" +msgstr "" + +msgid "spotlight.noneExist" +msgstr "" + +msgid "spotlight.title.homePage" +msgstr "" + +msgid "spotlight.author" +msgstr "" + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "" + +msgid "grid.content.spotlights.category.homepage" +msgstr "" + +msgid "grid.content.spotlights.form.location" +msgstr "" + +msgid "grid.content.spotlights.form.item" +msgstr "" + +msgid "grid.content.spotlights.form.title" +msgstr "" + +msgid "grid.content.spotlights.form.type.book" +msgstr "" + +msgid "grid.content.spotlights.itemRequired" +msgstr "" + +msgid "grid.content.spotlights.titleRequired" +msgstr "" + +msgid "grid.content.spotlights.locationRequired" +msgstr "" + +msgid "grid.action.editSpotlight" +msgstr "" + +msgid "grid.action.deleteSpotlight" +msgstr "" + +msgid "grid.action.addSpotlight" +msgstr "" + +msgid "manager.series.open" +msgstr "" + +msgid "manager.series.indexed" +msgstr "" + +msgid "grid.libraryFiles.column.files" +msgstr "" + +msgid "grid.action.catalogEntry" +msgstr "" + +msgid "grid.action.formatInCatalogEntry" +msgstr "" + +msgid "grid.action.editFormat" +msgstr "" + +msgid "grid.action.deleteFormat" +msgstr "" + +msgid "grid.action.addFormat" +msgstr "" + +msgid "grid.action.approveProof" +msgstr "" + +msgid "grid.action.pageProofApproved" +msgstr "" + +msgid "grid.action.newCatalogEntry" +msgstr "" + +msgid "grid.action.publicCatalog" +msgstr "" + +msgid "grid.action.feature" +msgstr "" + +msgid "grid.action.featureMonograph" +msgstr "" + +msgid "grid.action.releaseMonograph" +msgstr "" + +msgid "grid.action.manageCategories" +msgstr "" + +msgid "grid.action.manageSeries" +msgstr "" + +msgid "grid.action.addCode" +msgstr "" + +msgid "grid.action.editCode" +msgstr "" + +msgid "grid.action.deleteCode" +msgstr "" + +msgid "grid.action.addRights" +msgstr "" + +msgid "grid.action.editRights" +msgstr "" + +msgid "grid.action.deleteRights" +msgstr "" + +msgid "grid.action.addMarket" +msgstr "" + +msgid "grid.action.editMarket" +msgstr "" + +msgid "grid.action.deleteMarket" +msgstr "" + +msgid "grid.action.addDate" +msgstr "" + +msgid "grid.action.editDate" +msgstr "" + +msgid "grid.action.deleteDate" +msgstr "" + +msgid "grid.action.createContext" +msgstr "" + +msgid "grid.action.publicationFormatTab" +msgstr "" + +msgid "grid.action.moreAnnouncements" +msgstr "" + +msgid "grid.action.submissionEmail" +msgstr "" + +msgid "grid.action.approveProofs" +msgstr "" + +msgid "grid.action.proofApproved" +msgstr "" + +msgid "grid.action.availableRepresentation" +msgstr "" + +msgid "grid.action.formatAvailable" +msgstr "" + +msgid "grid.reviewAttachments.add" +msgstr "" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "" + +msgid "series.series" +msgstr "" + +msgid "series.featured.description" +msgstr "" + +msgid "series.path" +msgstr "" + +msgid "catalog.manage" +msgstr "" + +msgid "catalog.manage.newReleases" +msgstr "" + +msgid "catalog.manage.category" +msgstr "" + +msgid "catalog.manage.series" +msgstr "" + +msgid "catalog.manage.series.issn" +msgstr "" + +msgid "catalog.manage.series.issn.validation" +msgstr "" + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "" + +msgid "catalog.manage.series.onlineIssn" +msgstr "" + +msgid "catalog.manage.series.printIssn" +msgstr "" + +msgid "catalog.selectSeries" +msgstr "" + +msgid "catalog.selectCategory" +msgstr "" + +msgid "catalog.manage.homepageDescription" +msgstr "" + +msgid "catalog.manage.categoryDescription" +msgstr "" + +msgid "catalog.manage.seriesDescription" +msgstr "" + +msgid "catalog.manage.placeIntoCarousel" +msgstr "" + +msgid "catalog.manage.newRelease" +msgstr "" + +msgid "catalog.manage.manageSeries" +msgstr "" + +msgid "catalog.manage.manageCategories" +msgstr "" + +msgid "catalog.manage.noMonographs" +msgstr "" + +msgid "catalog.manage.featured" +msgstr "" + +msgid "catalog.manage.categoryFeatured" +msgstr "" + +msgid "catalog.manage.seriesFeatured" +msgstr "" + +msgid "catalog.manage.featuredSuccess" +msgstr "" + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "" + +msgid "catalog.manage.newReleaseSuccess" +msgstr "" + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "" + +msgid "catalog.manage.feature.newRelease" +msgstr "" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "" + +msgid "catalog.manage.nonOrderable" +msgstr "" + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "" + +msgid "catalog.manage.isFeatured" +msgstr "" + +msgid "catalog.manage.isNotFeatured" +msgstr "" + +msgid "catalog.manage.isNewRelease" +msgstr "" + +msgid "catalog.manage.isNotNewRelease" +msgstr "" + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "" + +msgid "catalog.manage.submissionsNotFound" +msgstr "" + +msgid "catalog.manage.findSubmissions" +msgstr "" + +msgid "catalog.noTitles" +msgstr "" + +msgid "catalog.noTitlesNew" +msgstr "" + +msgid "catalog.noTitlesSearch" +msgstr "" + +msgid "catalog.feature" +msgstr "" + +msgid "catalog.featured" +msgstr "" + +msgid "catalog.featuredBooks" +msgstr "" + +msgid "catalog.foundTitleSearch" +msgstr "" + +msgid "catalog.foundTitlesSearch" +msgstr "" + +msgid "catalog.category.heading" +msgstr "" + +msgid "catalog.newReleases" +msgstr "" + +msgid "catalog.dateAdded" +msgstr "" + +msgid "catalog.publicationInfo" +msgstr "" + +msgid "catalog.published" +msgstr "" + +msgid "catalog.forthcoming" +msgstr "" + +msgid "catalog.categories" +msgstr "" + +msgid "catalog.parentCategory" +msgstr "" + +msgid "catalog.category.subcategories" +msgstr "" + +msgid "catalog.aboutTheAuthor" +msgstr "" + +msgid "catalog.loginRequiredForPayment" +msgstr "" + +msgid "catalog.sortBy" +msgstr "" + +msgid "catalog.sortBy.seriesDescription" +msgstr "" + +msgid "catalog.sortBy.categoryDescription" +msgstr "" + +msgid "catalog.sortBy.catalogDescription" +msgstr "" + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "" + +msgid "catalog.viewableFile.title" +msgstr "" + +msgid "catalog.viewableFile.return" +msgstr "" + +msgid "submission.search" +msgstr "" + +msgid "common.publication" +msgstr "" + +msgid "common.publications" +msgstr "" + +msgid "common.prefix" +msgstr "" + +msgid "common.preview" +msgstr "" + +msgid "common.feature" +msgstr "" + +msgid "common.searchCatalog" +msgstr "" + +msgid "common.moreInfo" +msgstr "" + +msgid "common.listbuilder.completeForm" +msgstr "" + +msgid "common.listbuilder.selectValidOption" +msgstr "" + +msgid "common.listbuilder.itemExists" +msgstr "" + +msgid "common.software" +msgstr "" + +msgid "common.omp" +msgstr "" + +msgid "common.homePageHeader.altText" +msgstr "" + +msgid "navigation.catalog" +msgstr "" + +msgid "navigation.competingInterestPolicy" +msgstr "" + +msgid "navigation.catalog.allMonographs" +msgstr "" + +msgid "navigation.catalog.manage" +msgstr "" + +msgid "navigation.catalog.administration.short" +msgstr "" + +msgid "navigation.catalog.administration" +msgstr "" + +msgid "navigation.catalog.administration.categories" +msgstr "" + +msgid "navigation.catalog.administration.series" +msgstr "" + +msgid "navigation.infoForAuthors" +msgstr "" + +msgid "navigation.infoForLibrarians" +msgstr "" + +msgid "navigation.infoForAuthors.long" +msgstr "" + +msgid "navigation.infoForLibrarians.long" +msgstr "" + +msgid "navigation.newReleases" +msgstr "" + +msgid "navigation.published" +msgstr "" + +msgid "navigation.wizard" +msgstr "" + +msgid "navigation.linksAndMedia" +msgstr "" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "" + +msgid "navigation.skip.spotlights" +msgstr "" + +msgid "navigation.navigationMenus.series.generic" +msgstr "" + +msgid "navigation.navigationMenus.series.description" +msgstr "" + +msgid "navigation.navigationMenus.category.generic" +msgstr "" + +msgid "navigation.navigationMenus.category.description" +msgstr "" + +msgid "navigation.navigationMenus.newRelease" +msgstr "" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "" + +msgid "context.contexts" +msgstr "" + +msgid "context.context" +msgstr "Penerbit" + +msgid "context.current" +msgstr "" + +msgid "context.select" +msgstr "" + +msgid "user.authorization.representationNotFound" +msgstr "" + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "" + +msgid "user.noRoles.submitMonograph" +msgstr "" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" + +msgid "user.noRoles.regReviewer" +msgstr "" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" + +msgid "user.reviewerPrompt" +msgstr "" + +msgid "user.reviewerPrompt.userGroup" +msgstr "" + +msgid "user.reviewerPrompt.optin" +msgstr "" + +msgid "user.register.contextsPrompt" +msgstr "" + +msgid "user.register.otherContextRoles" +msgstr "" + +msgid "user.register.noContextReviewerInterests" +msgstr "" + +msgid "user.role.manager" +msgstr "" + +msgid "user.role.pressEditor" +msgstr "" + +msgid "user.role.subEditor" +msgstr "" + +msgid "user.role.copyeditor" +msgstr "" + +msgid "user.role.proofreader" +msgstr "" + +msgid "user.role.productionEditor" +msgstr "" + +msgid "user.role.managers" +msgstr "" + +msgid "user.role.subEditors" +msgstr "" + +msgid "user.role.editors" +msgstr "" + +msgid "user.role.copyeditors" +msgstr "" + +msgid "user.role.proofreaders" +msgstr "" + +msgid "user.role.productionEditors" +msgstr "" + +msgid "user.register.selectContext" +msgstr "" + +msgid "user.register.noContexts" +msgstr "" + +msgid "user.register.privacyStatement" +msgstr "" + +msgid "user.register.registrationDisabled" +msgstr "" + +msgid "user.register.form.passwordLengthTooShort" +msgstr "" + +msgid "user.register.readerDescription" +msgstr "" + +msgid "user.register.authorDescription" +msgstr "" + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "" + +msgid "user.register.reviewerDescription" +msgstr "" + +msgid "user.register.reviewerInterests" +msgstr "" + +msgid "user.register.form.userGroupRequired" +msgstr "" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" + +msgid "site.noPresses" +msgstr "" + +msgid "site.pressView" +msgstr "" + +msgid "about.pressContact" +msgstr "" + +msgid "about.aboutContext" +msgstr "" + +msgid "about.editorialTeam" +msgstr "" + +msgid "about.editorialPolicies" +msgstr "" + +msgid "about.focusAndScope" +msgstr "" + +msgid "about.seriesPolicies" +msgstr "" + +msgid "about.submissions" +msgstr "" + +msgid "about.onlineSubmissions" +msgstr "" + +msgid "about.onlineSubmissions.login" +msgstr "" + +msgid "about.onlineSubmissions.register" +msgstr "" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "" + +msgid "about.onlineSubmissions.submissionActions" +msgstr "" + +msgid "about.onlineSubmissions.newSubmission" +msgstr "" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "" + +msgid "about.authorGuidelines" +msgstr "" + +msgid "about.submissionPreparationChecklist" +msgstr "" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" + +msgid "about.copyrightNotice" +msgstr "" + +msgid "about.privacyStatement" +msgstr "" + +msgid "about.reviewPolicy" +msgstr "" + +msgid "about.publicationFrequency" +msgstr "" + +msgid "about.openAccessPolicy" +msgstr "" + +msgid "about.pressSponsorship" +msgstr "" + +msgid "about.aboutThisPublishingSystem" +msgstr "" + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "" + +msgid "about.aboutSoftware" +msgstr "" + +msgid "about.aboutOMPPress" +msgstr "" + +msgid "about.aboutOMPSite" +msgstr "" + +msgid "help.searchReturnResults" +msgstr "" + +msgid "help.goToEditPage" +msgstr "" + +msgid "installer.appInstallation" +msgstr "" + +msgid "installer.ompUpgrade" +msgstr "" + +msgid "installer.installApplication" +msgstr "" + +msgid "installer.updatingInstructions" +msgstr "" + +msgid "installer.installationInstructions" +msgstr "" + +msgid "installer.preInstallationInstructionsTitle" +msgstr "" + +msgid "installer.preInstallationInstructions" +msgstr "" + +msgid "installer.upgradeInstructions" +msgstr "" + +msgid "installer.localeSettingsInstructions" +msgstr "" + +msgid "installer.allowFileUploads" +msgstr "" + +msgid "installer.maxFileUploadSize" +msgstr "" + +msgid "installer.localeInstructions" +msgstr "" + +msgid "installer.additionalLocalesInstructions" +msgstr "" + +msgid "installer.filesDirInstructions" +msgstr "" + +msgid "installer.databaseSettingsInstructions" +msgstr "" + +msgid "installer.upgradeApplication" +msgstr "" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" + +msgid "log.review.reviewDueDateSet" +msgstr "" + +msgid "log.review.reviewDeclined" +msgstr "" + +msgid "log.review.reviewAccepted" +msgstr "" + +msgid "log.review.reviewUnconsidered" +msgstr "" + +msgid "log.editor.decision" +msgstr "" + +msgid "log.editor.recommendation" +msgstr "" + +msgid "log.editor.archived" +msgstr "" + +msgid "log.editor.restored" +msgstr "" + +msgid "log.editor.editorAssigned" +msgstr "" + +msgid "log.proofread.assign" +msgstr "" + +msgid "log.proofread.complete" +msgstr "" + +msgid "log.imported" +msgstr "" + +msgid "notification.addedIdentificationCode" +msgstr "" + +msgid "notification.editedIdentificationCode" +msgstr "" + +msgid "notification.removedIdentificationCode" +msgstr "" + +msgid "notification.addedPublicationDate" +msgstr "" + +msgid "notification.editedPublicationDate" +msgstr "" + +msgid "notification.removedPublicationDate" +msgstr "" + +msgid "notification.addedPublicationFormat" +msgstr "" + +msgid "notification.editedPublicationFormat" +msgstr "" + +msgid "notification.removedPublicationFormat" +msgstr "" + +msgid "notification.addedSalesRights" +msgstr "" + +msgid "notification.editedSalesRights" +msgstr "" + +msgid "notification.removedSalesRights" +msgstr "" + +msgid "notification.addedRepresentative" +msgstr "" + +msgid "notification.editedRepresentative" +msgstr "" + +msgid "notification.removedRepresentative" +msgstr "" + +msgid "notification.addedMarket" +msgstr "" + +msgid "notification.editedMarket" +msgstr "" + +msgid "notification.removedMarket" +msgstr "" + +msgid "notification.addedSpotlight" +msgstr "" + +msgid "notification.editedSpotlight" +msgstr "" + +msgid "notification.removedSpotlight" +msgstr "" + +msgid "notification.savedCatalogMetadata" +msgstr "" + +msgid "notification.savedPublicationFormatMetadata" +msgstr "" + +msgid "notification.proofsApproved" +msgstr "" + +msgid "notification.removedSubmission" +msgstr "" + +msgid "notification.type.submissionSubmitted" +msgstr "" + +msgid "notification.type.editing" +msgstr "" + +msgid "notification.type.reviewing" +msgstr "" + +msgid "notification.type.site" +msgstr "" + +msgid "notification.type.submissions" +msgstr "" + +msgid "notification.type.userComment" +msgstr "" + +msgid "notification.type.public" +msgstr "" + +msgid "notification.type.editorAssignmentTask" +msgstr "" + +msgid "notification.type.copyeditorRequest" +msgstr "" + +msgid "notification.type.layouteditorRequest" +msgstr "" + +msgid "notification.type.indexRequest" +msgstr "" + +msgid "notification.type.editorDecisionInternalReview" +msgstr "" + +msgid "notification.type.approveSubmission" +msgstr "" + +msgid "notification.type.approveSubmissionTitle" +msgstr "" + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" + +msgid "notification.type.configurePaymentMethod.title" +msgstr "" + +msgid "notification.type.configurePaymentMethod" +msgstr "" + +msgid "notification.type.visitCatalogTitle" +msgstr "" + +msgid "notification.type.visitCatalog" +msgstr "" + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" + +msgid "user.authorization.monographAuthor" +msgstr "" + +msgid "user.authorization.monographReviewer" +msgstr "" + +msgid "user.authorization.monographFile" +msgstr "" + +msgid "user.authorization.invalidMonograph" +msgstr "" + +msgid "user.authorization.noContext" +msgstr "" + +msgid "user.authorization.seriesAssignment" +msgstr "" + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" + +msgid "payment.directSales" +msgstr "" + +msgid "payment.directSales.price" +msgstr "" + +msgid "payment.directSales.availability" +msgstr "" + +msgid "payment.directSales.catalog" +msgstr "" + +msgid "payment.directSales.approved" +msgstr "" + +msgid "payment.directSales.priceCurrency" +msgstr "" + +msgid "payment.directSales.numericOnly" +msgstr "" + +msgid "payment.directSales.directSales" +msgstr "" + +msgid "payment.directSales.amount" +msgstr "" + +msgid "payment.directSales.notAvailable" +msgstr "" + +msgid "payment.directSales.notSet" +msgstr "" + +msgid "payment.directSales.openAccess" +msgstr "" + +msgid "payment.directSales.price.description" +msgstr "" + +msgid "payment.directSales.validPriceRequired" +msgstr "" + +msgid "payment.directSales.purchase" +msgstr "" + +msgid "payment.directSales.download" +msgstr "" + +msgid "payment.directSales.monograph.name" +msgstr "" + +msgid "payment.directSales.monograph.description" +msgstr "" + +msgid "debug.notes.helpMappingLoad" +msgstr "" + +msgid "rt.metadata.pkp.dctype" +msgstr "" + +msgid "submission.pdf.download" +msgstr "" + +msgid "user.profile.form.showOtherContexts" +msgstr "" + +msgid "user.profile.form.hideOtherContexts" +msgstr "" + +msgid "submission.round" +msgstr "" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "" + +msgid "catalog.coverImageTitle" +msgstr "" + +msgid "grid.catalogEntry.chapters" +msgstr "" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +msgid "section.section" +msgstr "" diff --git a/locale/id/manager.po b/locale/id/manager.po new file mode 100644 index 00000000000..683e5af04b3 --- /dev/null +++ b/locale/id/manager.po @@ -0,0 +1,42 @@ +# elpinowindy , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-08-02 17:58+0000\n" +"Last-Translator: elpinowindy \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "manager.system.readingTools" +msgstr "Alat Baca" + +msgid "manager.setup.announcements" +msgstr "Pengumuman" + +msgid "manager.setup.announcements.success" +msgstr "Pengaturan pengumuman telah diperbarui." + +msgid "manager.system.payments" +msgstr "Pembayaran" + +msgid "manager.pressManagement" +msgstr "Manajemen Penerbitan" + +msgid "manager.setup.aboutItemContent" +msgstr "Konten" + +msgid "manager.setup.information.forReaders" +msgstr "Untuk Pembaca" + +msgid "manager.setup.information.description" +msgstr "" +"Deskripsi singkat penerbit untuk pustakawan dan calon penulis dan pembaca. " +"Ini tersedia di bilah sisi situs jika blok Informasi telah ditambahkan." + +msgid "manager.system.reviewForms" +msgstr "Form Tinjauan" diff --git a/locale/id/submission.po b/locale/id/submission.po new file mode 100644 index 00000000000..b95e54279c9 --- /dev/null +++ b/locale/id/submission.po @@ -0,0 +1,548 @@ +msgid "submission.upload.selectComponent" +msgstr "" + +msgid "submission.title" +msgstr "" + +msgid "submission.select" +msgstr "" + +msgid "submission.synopsis" +msgstr "" + +msgid "submission.workflowType" +msgstr "" + +msgid "submission.workflowType.description" +msgstr "" + +msgid "submission.workflowType.editedVolume.label" +msgstr "" + +msgid "submission.workflowType.editedVolume" +msgstr "" + +msgid "submission.workflowType.authoredWork" +msgstr "" + +msgid "submission.workflowType.change" +msgstr "" + +msgid "submission.editorName" +msgstr "" + +msgid "submission.monograph" +msgstr "" + +msgid "submission.published" +msgstr "" + +msgid "submission.fairCopy" +msgstr "" + +msgid "submission.authorListSeparator" +msgstr "" + +msgid "submission.artwork.permissions" +msgstr "" + +msgid "submission.chapter" +msgstr "" + +msgid "submission.chapters" +msgstr "" + +msgid "submission.chapter.addChapter" +msgstr "" + +msgid "submission.chapter.editChapter" +msgstr "" + +msgid "submission.chapter.pages" +msgstr "" + +msgid "submission.copyedit" +msgstr "" + +msgid "submission.publicationFormats" +msgstr "" + +msgid "submission.proofs" +msgstr "" + +msgid "submission.download" +msgstr "" + +msgid "submission.sharing" +msgstr "" + +msgid "manuscript.submission" +msgstr "" + +msgid "submission.round" +msgstr "" + +msgid "submissions.queuedReview" +msgstr "" + +msgid "manuscript.submissions" +msgstr "" + +msgid "submission.metadata" +msgstr "" + +msgid "submission.supportingAgencies" +msgstr "" + +msgid "grid.action.addChapter" +msgstr "" + +msgid "grid.action.editChapter" +msgstr "" + +msgid "grid.action.deleteChapter" +msgstr "" + +msgid "submission.submit" +msgstr "" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "" + +msgid "submission.submit.newSubmissionSingle" +msgstr "" + +msgid "submission.submit.upload" +msgstr "" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "" + +msgid "submission.submit.seriesPosition" +msgstr "" + +msgid "submission.submit.seriesPosition.description" +msgstr "" + +msgid "submission.submit.privacyStatement" +msgstr "" + +msgid "submission.submit.contributorRole" +msgstr "" + +msgid "submission.submit.submissionFile" +msgstr "" + +msgid "submission.submit.prepare" +msgstr "" + +msgid "submission.submit.catalog" +msgstr "" + +msgid "submission.submit.metadata" +msgstr "" + +msgid "submission.submit.finishingUp" +msgstr "" + +msgid "submission.submit.confirmation" +msgstr "" + +msgid "submission.submit.nextSteps" +msgstr "" + +msgid "submission.submit.coverNote" +msgstr "" + +msgid "submission.submit.generalInformation" +msgstr "" + +msgid "submission.submit.whatNext.description" +msgstr "" + +msgid "submission.submit.checklistErrors" +msgstr "" + +msgid "submission.submit.placement" +msgstr "" + +msgid "submission.submit.userGroup" +msgstr "" + +msgid "submission.submit.noContext" +msgstr "" + +msgid "grid.chapters.title" +msgstr "" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "" + +msgid "submission.complete" +msgstr "" + +msgid "submission.incomplete" +msgstr "" + +msgid "submission.editCatalogEntry" +msgstr "" + +msgid "submission.catalogEntry.new" +msgstr "" + +msgid "submission.catalogEntry.add" +msgstr "" + +msgid "submission.catalogEntry.select" +msgstr "" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" + +msgid "submission.catalogEntry.confirm" +msgstr "" + +msgid "submission.catalogEntry.confirm.required" +msgstr "" + +msgid "submission.catalogEntry.isAvailable" +msgstr "" + +msgid "submission.catalogEntry.viewSubmission" +msgstr "" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.monographMetadata" +msgstr "" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "" + +msgid "submission.event.metadataPublished" +msgstr "" + +msgid "submission.event.metadataUnpublished" +msgstr "" + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "" + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" + +msgid "submission.event.publicationFormatPublished" +msgstr "" + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" + +msgid "submission.event.catalogMetadataUpdated" +msgstr "" + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" + +msgid "submission.event.publicationFormatCreated" +msgstr "" + +msgid "submission.event.publicationFormatRemoved" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview" +msgstr "" + +msgid "workflow.review.externalReview" +msgstr "" + +msgid "submission.upload.fileContents" +msgstr "" + +msgid "submission.dependentFiles" +msgstr "" + +msgid "submission.metadataDescription" +msgstr "" + +msgid "section.any" +msgstr "" + +msgid "submission.list.monographs" +msgstr "" + +msgid "submission.list.countMonographs" +msgstr "" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "" + +msgid "submission.list.orderFeatures" +msgstr "" + +msgid "submission.list.orderingFeatures" +msgstr "" + +msgid "submission.list.orderingFeaturesSection" +msgstr "" + +msgid "submission.list.saveFeatureOrder" +msgstr "" + +msgid "submission.list.viewEntry" +msgstr "" + +msgid "catalog.browseTitles" +msgstr "" + +msgid "publication.catalogEntry" +msgstr "" + +msgid "publication.catalogEntry.success" +msgstr "" + +msgid "publication.invalidSeries" +msgstr "" + +msgid "publication.inactiveSeries" +msgstr "" + +msgid "publication.required.issue" +msgstr "" + +msgid "publication.publishedIn" +msgstr "" + +msgid "publication.publish.confirmation" +msgstr "" + +msgid "publication.scheduledIn" +msgstr "" + +msgid "submission.publication" +msgstr "Publikasi" + +msgid "publication.status.published" +msgstr "Diterbitkan" + +msgid "submission.status.scheduled" +msgstr "Dijadwalkan" + +msgid "publication.status.unscheduled" +msgstr "Tidak dijadwalkan" + +msgid "submission.publications" +msgstr "Publikasi" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Tahunhak cipta akan ditetapkan secara otomatis jika naskah ini diterbitkan " +"pada satu nomor terbitan." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Tahunhak cipta akan ditetapkan secara otomatis berdasarkan tanggal publikasi." + +msgid "publication.datePublished" +msgstr "Tanggal DIterbitkan" + +msgid "publication.editDisabled" +msgstr "Versi ini telah diterbitkan dan tidak dapat disunting." + +msgid "publication.event.published" +msgstr "Naskah telah diterbitkan." + +msgid "publication.event.scheduled" +msgstr "Naskah telah dijadwalkan untuk terbit." + +msgid "publication.event.unpublished" +msgstr "Naskah tidak diterbitkan." + +msgid "publication.event.versionPublished" +msgstr "Versi baru telah diterbitkan." + +msgid "publication.event.versionScheduled" +msgstr "Versi baru telah dijadwalkan untuk terbit." + +msgid "publication.event.versionUnpublished" +msgstr "Sebuah versi dihapus dari publikasi." + +msgid "publication.invalidSubmission" +msgstr "Naskah publikasi ini tidak dapat ditemukan." + +msgid "publication.publish" +msgstr "Terbitkan" + +msgid "publication.publish.requirements" +msgstr "Persyaratan berikut harus dipenuhi sebelum naskah diterbitkan." + +msgid "publication.required.declined" +msgstr "Naskah yang ditolak tidak bisa diterbitkan." + +msgid "publication.required.reviewStage" +msgstr "" +"Naskah harus melewati tahap Copyediting atau Produksi sebelum dapat " +"diterbitkan." + +msgid "submission.license.description" +msgstr "" +"Lisensi akan ditetapkan otomatis pada {$licenseName} ketika naskah ini diterbitkan." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Hak cipta akan ditentukan secara otomatis pada {$copyright} ketika naskah " +"ini diterbitkan." + +msgid "submission.copyrightOther.description" +msgstr "Gunakan hak cipta untuk naskah terbitan pada pihak berikut." + +msgid "publication.unpublish" +msgstr "Tidak diterbitkan" + +msgid "publication.unpublish.confirm" +msgstr "Yakin tidak ingin menerbitkan naskah ini?" + +msgid "publication.unschedule.confirm" +msgstr "Yakin tidak ingin menjadwalkan naskah ini untuk diterbitkan?" + +msgid "publication.version.details" +msgstr "PRincian publikasi naskah versi {$version}" + +msgid "submission.queries.production" +msgstr "Diskusi Produksi" + +msgid "publication.chapter.landingPage" +msgstr "" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/id_ID/default.po b/locale/id_ID/default.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/id_ID/default.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/id_ID/locale.po b/locale/id_ID/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/id_ID/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/id_ID/submission.po b/locale/id_ID/submission.po deleted file mode 100644 index 06e025c8530..00000000000 --- a/locale/id_ID/submission.po +++ /dev/null @@ -1,93 +0,0 @@ -msgid "submission.publication" -msgstr "Publikasi" - -msgid "publication.status.published" -msgstr "Diterbitkan" - -msgid "submission.status.scheduled" -msgstr "Dijadwalkan" - -msgid "publication.status.unscheduled" -msgstr "Tidak dijadwalkan" - -msgid "submission.publications" -msgstr "Publikasi" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Tahunhak cipta akan ditetapkan secara otomatis jika naskah ini diterbitkan " -"pada satu nomor terbitan." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "" -"Tahunhak cipta akan ditetapkan secara otomatis berdasarkan tanggal publikasi." - -msgid "publication.datePublished" -msgstr "Tanggal DIterbitkan" - -msgid "publication.editDisabled" -msgstr "Versi ini telah diterbitkan dan tidak dapat disunting." - -msgid "publication.event.published" -msgstr "Naskah telah diterbitkan." - -msgid "publication.event.scheduled" -msgstr "Naskah telah dijadwalkan untuk terbit." - -msgid "publication.event.unpublished" -msgstr "Naskah tidak diterbitkan." - -msgid "publication.event.versionPublished" -msgstr "Versi baru telah diterbitkan." - -msgid "publication.event.versionScheduled" -msgstr "Versi baru telah dijadwalkan untuk terbit." - -msgid "publication.event.versionUnpublished" -msgstr "Sebuah versi dihapus dari publikasi." - -msgid "publication.invalidSubmission" -msgstr "Naskah publikasi ini tidak dapat ditemukan." - -msgid "publication.publish" -msgstr "Terbitkan" - -msgid "publication.publish.requirements" -msgstr "Persyaratan berikut harus dipenuhi sebelum naskah diterbitkan." - -msgid "publication.required.declined" -msgstr "Naskah yang ditolak tidak bisa diterbitkan." - -msgid "publication.required.reviewStage" -msgstr "" -"Naskah harus melewati tahap Copyediting atau Produksi sebelum dapat " -"diterbitkan." - -msgid "submission.license.description" -msgstr "" -"Lisensi akan ditetapkan otomatis pada {$licenseName} ketika naskah ini diterbitkan." - -msgid "submission.copyrightHolder.description" -msgstr "" -"Hak cipta akan ditentukan secara otomatis pada {$copyright} ketika naskah " -"ini diterbitkan." - -msgid "submission.copyrightOther.description" -msgstr "Gunakan hak cipta untuk naskah terbitan pada pihak berikut." - -msgid "publication.unpublish" -msgstr "Tidak diterbitkan" - -msgid "publication.unpublish.confirm" -msgstr "Yakin tidak ingin menerbitkan naskah ini?" - -msgid "publication.unschedule.confirm" -msgstr "Yakin tidak ingin menjadwalkan naskah ini untuk diterbitkan?" - -msgid "publication.version.details" -msgstr "PRincian publikasi naskah versi {$version}" - -msgid "submission.queries.production" -msgstr "Diskusi Produksi" - diff --git a/locale/it_IT/ONIX_BookProduct_CodeLists.xsd b/locale/it/ONIX_BookProduct_CodeLists.xsd similarity index 100% rename from locale/it_IT/ONIX_BookProduct_CodeLists.xsd rename to locale/it/ONIX_BookProduct_CodeLists.xsd diff --git a/locale/it/admin.po b/locale/it/admin.po new file mode 100644 index 00000000000..322061f3960 --- /dev/null +++ b/locale/it/admin.po @@ -0,0 +1,147 @@ +# Michele Tutone , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-05 08:48+0000\n" +"Last-Translator: Michele Tutone \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Press registrate" + +msgid "admin.settings.appearance.success" +msgstr "" +"Le impostazioni di visualizzazione del sito sono state aggiornate con " +"successo." + +msgid "admin.settings.config.success" +msgstr "Le impostazioni del sito sono state aggiornate con successo." + +msgid "admin.settings.info.success" +msgstr "Le informazioni del sito sono state aggiornate con successo." + +msgid "admin.settings.redirect" +msgstr "Redirect" + +msgid "admin.settings.noPressRedirect" +msgstr "Nessun redirect" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "Questa sarà la lingua di default del sito e di ogni press installata." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Le lingue contrassegnate potrebbero essere incomplete." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Sei sicuro di voler disinstallare questa lingua? Questa scelta si " +"ripercuoterà su tutte le press che stanno attualmente usando questa lingua." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Installa tutte le lingue che vuoi siano supportate dal sistema. Le lingue " +"devono essere installate prima di poterle usare. Consulta la documentazione " +"di OMP per informazioni sull'aggiunta di nuove lingue non ancora supportate." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Sei sicuro di voler disabilitare questa lingua? Questa scelta si " +"ripercuoterà su tutte le press che stanno attualmente usando questa lingua." + +msgid "admin.systemVersion" +msgstr "Versione di OMP" + +msgid "admin.systemConfiguration" +msgstr "Configurazione di OMP" + +msgid "admin.presses.noneCreated" +msgstr "Nessuna press è stata creata." + +msgid "admin.contexts.create" +msgstr "Crea una press" + +msgid "admin.contexts.form.pathRequired" +msgstr "È obbligatorio un path." + +msgid "admin.contexts.form.pathExists" +msgstr "Il path selezionato è già in uso da un'altra press." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "La lingua principale dev'essere tra quelle supportate dalla press." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} è stato creato con successo." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} è stato modificato con successo." + +msgid "admin.contexts.contextDescription" +msgstr "Descrizione della press" + +msgid "admin.presses.addPress" +msgstr "Aggiungi una press" + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Il press manager non sarà abilitato all'invio massivo delle email per i " +"ruoli qui selezionati. Usa questa impostazione per limitare il possibile " +"abuso della funzione. Ad esempio può essere più sicuro disabilitare gli " +"invii massivi ai lettori, autori o altri gruppi di utenze che non hanno dato " +"il consenso a ricevere comunicazioni.

      L'invio massivo di email può " +"essere disabilitato del tutto per questa press da Amministratore> Impostazioni del sito." + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Il sito principale reindirizzerà a questa press. Può essere utile se sul " +"sito è installata un'unica press, ad esempio." + +msgid "admin.presses.pressSettings" +msgstr "Impostazioni della press" + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Seleziona le lingue che vuoi siano disponibili per l'intero sito. Le lingue " +"selezionate saranno disponibili per tutte le press installate sul sito e " +"appariranno in un menu su ogni pagina del sito (le impostazioni della " +"singola press possono modificare questo comportamento). Se qui si seleziona " +"una sola lingua, il menu di scelta non apparirà e le impostazioni relative " +"alle lingue delle singole press non saranno modificabili." + +msgid "admin.contexts.form.titleRequired" +msgstr "È obbligatorio un titolo." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Il path può includere solo lettere, numeri e i caratteri _ e -. È " +"obbligatorio che inizi e finisca con una lettera o numero." + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

      NOTE!

      \n" +"

      Il sistema non può sovrascrivere automaticamente il file di " +"configurazione. Per applicare le modifiche apri config.inc.php in " +"un text editor e sostituisci il suo contenuto con il testo che trovi qui di " +"seguito.

      " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Seleziona le press che dovranno essere abilitati ad invii massivi di email. " +"Quando questa funzione è abilitata, il press manager potrà inviare email a " +"tutti gli utenti registrati della rivista.

      Un abuso di questa " +"funzione con l'invio di email non richieste potrebbe costituire violazione " +"delle normative sulla privacy in alcuni paesi e riflettersi con il blocco " +"del servizio. Prima di abilitare questa funzione si suggerisce un'accurata " +"valutazione e definizione del suo uso appropriato.

      Ulteriori " +"restrizioni di questa funzione possono essere abilitate per ciascuna rivista " +"nella configurazione iniziale (setting wizard) nella sezione Press registrate." + +#, fuzzy +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Indica il sito come piattaforma per tutte le riviste." diff --git a/locale/it/api.po b/locale/it/api.po new file mode 100644 index 00000000000..867b1f51a1a --- /dev/null +++ b/locale/it/api.po @@ -0,0 +1,45 @@ +# Fulvio Delle Donne , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-09 10:00+0000\n" +"Last-Translator: Fulvio Delle Donne \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"È necessario fornire uno o più ID di invio per essere aggiunti al catalogo." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "Non è stato possibile trovare una o più proposte specificate." + +msgid "api.submissions.400.wrongContext" +msgstr "La proposta cercata non è presente in questa Casa Editrice." + +msgid "api.emails.403.disabled" +msgstr "" +"La funzione di notifica via email non è stata attivata per questa Casa " +"Editrice." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"Non sei autorizzato a spostare questo modello di email in un'altra Casa " +"Editrice." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "" +"La pubblicazione che hai cercato non è disponibile in questa Casa Editrice." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "La pubblicazione che hai cercato non è in questa proposta." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Non è possibile modificare la Casa Editrice di una proposta." + +msgid "api.submission.400.inactiveSection" +msgstr "" diff --git a/locale/it/author.po b/locale/it/author.po new file mode 100644 index 00000000000..83f32f91c17 --- /dev/null +++ b/locale/it/author.po @@ -0,0 +1,19 @@ +# Fulvio Delle Donne , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-08 04:51+0000\n" +"Last-Translator: Fulvio Delle Donne \n" +"Language-Team: Italian " +"\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "author.submit.notAccepting" +msgstr "Questa Casa editrice al momento non accetta proposte." + +msgid "author.submit" +msgstr "Nuova proposta" diff --git a/locale/it/default.po b/locale/it/default.po new file mode 100644 index 00000000000..b96f62284c5 --- /dev/null +++ b/locale/it/default.po @@ -0,0 +1,306 @@ +# Fulvio Delle Donne , 2022. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-01-22T20:59:47+00:00\n" +"PO-Revision-Date: 2022-08-08 09:16+0000\n" +"Last-Translator: Fulvio Delle Donne \n" +"Language-Team: Italian \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "default.genres.appendix" +msgstr "Appendice" + +msgid "default.genres.bibliography" +msgstr "Bibliografia" + +msgid "default.genres.manuscript" +msgstr "Manoscritto del libro" + +msgid "default.genres.chapter" +msgstr "Manoscritto del capitolo" + +msgid "default.genres.glossary" +msgstr "Glossario" + +msgid "default.genres.index" +msgstr "Indice" + +msgid "default.genres.preface" +msgstr "Prefazione" + +msgid "default.genres.prospectus" +msgstr "Prospetto" + +msgid "default.genres.table" +msgstr "Tabella" + +msgid "default.genres.figure" +msgstr "Figura" + +msgid "default.genres.photo" +msgstr "Foto" + +msgid "default.genres.illustration" +msgstr "Illustrazione" + +msgid "default.genres.other" +msgstr "Altro" + +msgid "default.groups.name.manager" +msgstr "Press manager" + +msgid "default.groups.plural.manager" +msgstr "Manager della Casa Editrice" + +msgid "default.groups.abbrev.manager" +msgstr "PM" + +msgid "default.groups.name.editor" +msgstr "Press editor" + +msgid "default.groups.plural.editor" +msgstr "Editori della Casa Editrice" + +msgid "default.groups.abbrev.editor" +msgstr "PE" + +msgid "default.groups.name.sectionEditor" +msgstr "Editor di collana" + +msgid "default.groups.plural.sectionEditor" +msgstr "Editor di collana" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "EC" + +msgid "default.groups.name.subscriptionManager" +msgstr "Gestore degli abbonamenti" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Gestori degli abbonamenti" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "AbbM" + +msgid "default.groups.name.chapterAuthor" +msgstr "Autore di un capitolo" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Autori di un capitolo" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "CA" + +msgid "default.groups.name.volumeEditor" +msgstr "Curatore del Libro" + +msgid "default.groups.plural.volumeEditor" +msgstr "Curatori del Libro" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "VE" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

      I nomi e gli indirizzi di posta elettronica indicati nel sito di questa " +"casa editrice saranno usati esclusivamente per gli scopi dichiarati di della " +"stessa e non saranno resi disponibili per nessun altro scopo o a nessun " +"altro soggetto.

      " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Questa casa editrice realizza l'accesso aperto immediato ai suoi contenuti " +"basato sul principio che rendere la ricerca liberamente disponibile supporta " +"lo scambio globale delle conoscenze." + +msgid "default.contextSettings.forReaders" +msgstr "" +"I lettori sono invitati a registrarsi al servizio di notifica dei contenuti " +"pubblicati di questa casa editrice. Usa il link Registrazione nella home page della casa " +"editrice. Questa registrazione permetterà al lettore di ricevere per email " +"il sommario di ogni nuovo libro della casa editrice. Questo permette anche " +"alla casa editrice di ottenere un certo livello di supporto o di lettori. " +"Vedi la Dichiarazione sulla Privacy che assicura " +"i lettori che i loro nomi e indirizzi mail non saranno usati per scopi " +"diversi." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Interessato a inviare una proposta a questa casa editrice? Raccomandiamo di " +"verificare la pagina Informazioni sulla casa editrice per le politiche di sezione della " +"casa editrice e la pagina Linee guida per gli autori. Gli autori " +"devono registrarsi " +"alla casa editrice prima di inviare una proposta, o se già registrati " +"possono semplicemente fare il login " +"e iniziare la procedura in 5 passaggi." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Invitiamo le bibliotecarie e i bibliotecari a prendere in considerazione " +"questa casa editrice per i fondi di case editrici digitali delle loro " +"biblioteche. Inoltre, questo sistema di pubblicazione open source si presta " +"ad essere offerto da parte delle biblioteche ai ricercatori per l'edizione " +"delle loro pubblicazioni (vedi Open " +"Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Revisore esterno" + +msgid "default.groups.plural.externalReviewer" +msgstr "Revisori esterni" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "RE" + +#~ msgid "default.groups.name.author" +#~ msgstr "Autore" + +#~ msgid "default.groups.plural.author" +#~ msgstr "Autori" + +#~ msgid "default.groups.name.seriesEditor" +#~ msgstr "Series editor" + +#~ msgid "default.groups.plural.seriesEditor" +#~ msgstr "Series editors" + +#~ msgid "default.groups.abbrev.seriesEditor" +#~ msgstr "AcqE" + +#~ msgid "default.pressSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Il documento sottomesso non è stato precedentemente pubblicato, né è " +#~ "stato sottoposto ad altro editore (oppure vedi il chiarimento dato in " +#~ "Commenti dall'Editore)." + +#~ msgid "default.pressSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Il file del documento sottomesso è nei formati Microsoft Word, RTF, " +#~ "OpenDocument o WordPerfect." + +#~ msgid "default.pressSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Qualora disponibili, sono state fornite le URL per la consultazione." + +#~ msgid "default.pressSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Il testo è pubblicato a interlinea singola; utilizza un font di 12 punti; " +#~ "impiega il carattere corsivo anziché sottolineare (a parte gli indirizzi " +#~ "URL); tutte le illustrazioni, le figure e le tabelle sono posizionate " +#~ "all'interno del testo nei punti appropriati e non messi alla fine del " +#~ "testo." + +#~ msgid "default.pressSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Il testo è conforme ai requisiti stilistici e bibliografici dichiarati " +#~ "nelle Linee guida per " +#~ "l'Autore, che si trovano nella rubrica A proposito di questa edizione." + +#~ msgid "default.pressSettings.privacyStatement" +#~ msgstr "" +#~ "I nomi e gli indirizzi email inseriti in questo sito editoriale verranno " +#~ "utilizzati esclusivamente per gli scopi dichiarati e non saranno " +#~ "utilizzati per altri scopi o trasmessi a terzi.." + +#~ msgid "default.pressSettings.openAccessPolicy" +#~ msgstr "" +#~ "Tutti i contenuti presenti su questo sito sono ad accesso aperto, in base " +#~ "al principio che la ricerca deve essere liberamente disponibile in modo " +#~ "da favorire lo scambio di conoscenze su scala mondiale." + +#~ msgid "default.pressSettings.emailHeader" +#~ msgstr "" +#~ "Questo messaggio è stato inviato a nome di {$pressName}.\r\n" +#~ "________________________________________________________________________" +#~ "\r\n" + +#~ msgid "default.pressSettings.emailSignature" +#~ msgstr "" +#~ "\r\n" +#~ "________________________________________________________________________" +#~ "\r\n" +#~ "{$pressName}\r\n" +#~ "{$indexUrl}/{$pressPath}\r\n" + +#~ msgid "default.pressSettings.forReaders" +#~ msgstr "" +#~ "Invitiamo i lettori a iscriversi al servizio di notifiche di questo sito. " +#~ "Per far ciò occorre utilizzare il link Registrati che si trova nella parte superiore della " +#~ "homepage. La registrazione consentirà a chi lo desidera di ricevere via " +#~ "email l'Indice di ogni nuova monografia pubblicata sul sito. Nello stesso " +#~ "tempo, questo elenco consentirà al nostro sito di conoscere il numero dei " +#~ "propri lettori. Leggi la Dichiarazione sulla privacy che " +#~ "assicura i lettori sul fatto che il loro nome e l'indirizzo e-mail non " +#~ "saranno utilizzati per altri scopi." + +#~ msgid "default.pressSettings.forAuthors" +#~ msgstr "" +#~ "Sei un docente del nostro Ateneo e vuoi inviare un tuo lavoro a " +#~ "fedOAPress? Si raccomanda di rileggere la pagina Informazioni sul Sito per vedere le politiche " +#~ "del nostro Sito e di leggere la pagina Linee Guida per gli Autori. Gli " +#~ "autori devono registrarsi sul sito prima di inviare i propri lavori, o se già " +#~ "registrati possono semplicemente accedere e iniziare il processo di immissione in 5 fasi.." + +#~ msgid "default.pressSettings.forLibrarians" +#~ msgstr "" +#~ "Incoraggiamo i bibliotecari di ricerca ad inserire questa Press nella " +#~ "lista delle risorse elettroniche possedute dalla biblioteca. Inoltre, " +#~ "questo sistema di pubblicazione open source, oltre che conveniente, può " +#~ "essere utilizzato da docenti e ricercatori anche per le pubblicazioni di " +#~ "cui hanno la curatela (vedi Open " +#~ "Monograph Press)." + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Il testo aderisce alle richieste stilistiche e bibliografiche riassunte " +#~ "nelle linee guida per " +#~ "l'autore, che si trovano nella pagina di informazioni sulla casa " +#~ "editrice." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Il testo ha spaziatura singola; usa un font 12 punti ; impiega il corsivo " +#~ "invece della sottolineatura (eccetto per gli indirizzi URL); e tutte le " +#~ "illustrazioni, figure, e tabelle sono posizionate all'interno del testo " +#~ "nei punti appropriati, piuttosto che alla fine." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Dove possibile, per le citazioni bibliografiche sono stati indicati gli " +#~ "URL." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Il file della proposta è in formato Microsoft Word, RTF, o OpenDocument." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "La proposta non è stata precedentemente pubblicata, né presentata a " +#~ "un'altra casa editrice (oppure si fornisce una spiegazione in Commenti " +#~ "per l'Editor)." diff --git a/locale/it/editor.po b/locale/it/editor.po new file mode 100644 index 00000000000..6a7df4c45a3 --- /dev/null +++ b/locale/it/editor.po @@ -0,0 +1,286 @@ +# Fulvio Delle Donne , 2022. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-01-22T20:59:56+00:00\n" +"PO-Revision-Date: 2022-08-08 09:16+0000\n" +"Last-Translator: Fulvio Delle Donne \n" +"Language-Team: Italian \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "editor.submissionArchive" +msgstr "Archivio delle proposte" + +msgid "editor.monograph.cancelReview" +msgstr "Annulla la richiesta" + +msgid "editor.monograph.clearReview" +msgstr "Cancella il revisore" + +msgid "editor.monograph.enterRecommendation" +msgstr "Inserisci raccomandazione" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Inserisci raccomandazione del revisore" + +msgid "editor.monograph.recommendation" +msgstr "Raccomandazione" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Seleziona un revisore qui in alto e poi clicca su \"Scegli un revisore\" per " +"continuare." + +msgid "editor.monograph.replaceReviewer" +msgstr "Sostituire il revisore" + +msgid "editor.monograph.editorToEnter" +msgstr "" +"L'Editore deve inserire la sua raccomandazione o i suoi commenti per il " +"revisore" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Carica la revisione" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Opzioni per la Peer Review" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "File per la correzione delle bozze" + +msgid "editor.monograph.internalReview" +msgstr "Procedere alla revisione interna" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Selezionare i file qui sotto per mandarli alla fase di revisione interna." + +msgid "editor.monograph.externalReview" +msgstr "Procedere alla valutazione esterna" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Selezionare il file per la bozza finale" + +msgid "editor.monograph.final.currentFiles" +msgstr "File corrente per la bozza finale" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "File correnti" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Messaggio all'utente" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Azioni per la proposta" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Azioni e opzioni complessive per la proposta." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Azioni per la sezione" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Opzioni particolari per una certa sezione, come ad esempio caricamento di " +"file o aggiunta di utenti." + +msgid "editor.monograph.legend.itemActions" +msgstr "Azioni per i documenti" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Azioni e opzioni particolari per un singolo file." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Visualizzare e gestire il caricamento del record, inclusi i metadati e i " +"formati di pubblicazione" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Visualizzare e gestire i metadati, le note, gli avvisi e lo storico del " +"caricamento" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Visualizzare e gestire tutti gli attori coinvolti nel caricamento: autori, " +"editori, designer e altri" + +msgid "editor.monograph.legend.add" +msgstr "Caricare un file nella sezione" + +msgid "editor.monograph.legend.add_user" +msgstr "Aggiungere un utente alla sezione" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Visualizzare e accedere ai parametri del documento, come le opzioni relative " +"alle informazioni e alla cancellazione" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"Informazioni supplementari: note sui file, opzioni per le notifiche e storico" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Informazioni sul file: note, opzioni per le notifiche e storico (al momento " +"non ci sono note)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Informazioni sul file: note, opzioni per le notifiche e storico (note " +"disponibili)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Informazioni sul file: note, opzioni per le notifiche e storico (dopo " +"l'ultima visita sono state aggiunte nuove note)" + +msgid "editor.monograph.legend.edit" +msgstr "Modifica il documento" + +msgid "editor.monograph.legend.delete" +msgstr "Cancella il documento" + +msgid "editor.monograph.legend.in_progress" +msgstr "Azione in corso oppure non ancora completata" + +msgid "editor.monograph.legend.complete" +msgstr "Azione completata" + +msgid "editor.monograph.legend.uploaded" +msgstr "" +"File caricato per il ruolo corrispondente per il titolo della colonna della " +"griglia" + +msgid "editor.submission.introduction" +msgstr "" +"Al momento del caricamento, l'Editore, dopo aver consultato i file proposti, " +"sceglie l'azione appropriata (che comprende l'invio di una notifica " +"all'autore). Tra queste: Invia per una verifica interna (comporta la " +"selezione dei file per una revisione interna); Invia per una verifica " +"esterna (comporta la selezione dei file per una revisione esterna); Accetta " +"il file proposto (comporta la selezione dei file per la fase editoriale); o " +"Rifiuta il file proposto (archiviazione del file proposto)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Bella copia" + +msgid "editor.monograph.proofs" +msgstr "Bozze" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Approvazione e pubblicazione" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"I libri possono essere pubblicati in diversi formati (copertina rigida, " +"brossura e digitale), possono essere caricati nella sezione Formati di " +"pubblicazione che segue. È possibile utilizzare la griglia dei formati di " +"pubblicazione qui sotto come una lista di controllo per ciò che deve ancora " +"essere fatto." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Aggiungi i formati di pubblicazione (ad esempio, digitale, brossura) per i " +"quali l'Editore di layout prepara le bozze per la correzione. Occorre " +"indicare che le Bozze sono state approvate e si deve controllare la " +"voce di Catalogo per il formato in questione, per indicare che " +"questa voce è stata aggiunta alla voce di catalogo del libro, prima che il " +"formato possa essere reso Disponibile (cioè pubblicato)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Scegliere le modalità per il download" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Scegliere le modalità" + +msgid "editor.monograph.proof.addNote" +msgstr "Aggiungi una risposta" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Tutti i file che sono già stati caricati in tutte le fasi della proposta " +"possono essere aggiunti all'elenco dei File di bozza spuntando Includi e " +"cliccando su Cerca: tutti i file disponibili saranno elencati e potranno " +"essere inclusi." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"L'identificativo pubblico '{$publicIdentifier}' esiste già per un altro " +"oggetto dello stesso tipo. Si prega di scegliere identificativi univoci per " +"gli oggetti della casa editrice dello stesso tipo." + +msgid "editor.submissions.assignedTo" +msgstr "Assegnato a un Editore" + +#~ msgid "editor.pressSignoff" +#~ msgstr "Sessione terminata" + +#~ msgid "editor.submission.selectedReviewer" +#~ msgstr "Recensore selezionato" + +#~ msgid "editor.submissions.lastAssigned" +#~ msgstr "Il più recente" + +#~ msgid "editor.submission.editorial.finalDraftDescription" +#~ msgstr "" +#~ "Per i \"volumi editi\", i cui capitoli sono cioè stati scritti da autori " +#~ "diversi, possono essere caricati tanti file quanti sono i capitoli in " +#~ "vista del copyediting. Questi file saranno in seguito esaminati dagli " +#~ "autori dei capitoli, dopo il caricamento dei file successivi al " +#~ "copyediting in Copyediting." + +#~ msgid "editor.monograph.editorial.fairCopyDescription" +#~ msgstr "" +#~ "Il copyeditor carica una copia corretta del file per la successiva " +#~ "revisione dell'editor, prima che si passi in Produzione." + +#~ msgid "editor.submission.production.introduction" +#~ msgstr "" +#~ "Al momento dell'entrata in Produzione, l'editor seleziona il tipo di " +#~ "formato (ad esempio, digitale, brossura, ecc) in Formati di pubblicazione, per i quali il layout " +#~ "editor preparerà i file da pubblicare sulla base dei file destinati alla " +#~ "pubblicazione. I file da pubblicare sono caricati per ogni tipo di " +#~ "formato in Pagine di prova, dove " +#~ "poi saranno sottosposte a revisione. Il libro è reso disponibile " +#~ "(cioè pubblicato) per ognuno dei formati in Formati di pubblicazione, dopo che le prove sono state " +#~ "verificate e approvate, e si indica che la voce di catalogo è stata " +#~ "inclusa nella voce di catalogo del libro." + +#~ msgid "editor.submission.production.productionReadyFilesDescription" +#~ msgstr "" +#~ "Il layout editor prepara questi file per ogni formato di pubblicazione e " +#~ "poi li carica nelle corrispondenti " +#~ "Pagina di prova per la correzione." + +#~ msgid "editor.internalReview.introduction" +#~ msgstr "" +#~ "Durante la fase di valutazione interna, l'editor assegna revisori interni " +#~ "ai file sottomessi e prende in considerazione le loro recensioni, prima " +#~ "di scegliere l'azione appropriata (che determina l'invio di una notifica " +#~ "all'autore): Da rivedere (le revisioni saranno esaminate dal solo " +#~ "editor); Da ricaricare per la revisione (sarà avviato un nuovo giro di " +#~ "revisioni); Inviare ad un revisore esterno (comporta la scelta dei file " +#~ "da inviare al revisore esterno); Accettare il file sottomesso (occorre " +#~ "scegliere i file che saranno inviati per la fase editoriale); o infine " +#~ "Rifiuta il file sottomesso (archiviazione del file sottomesso)." + +#~ msgid "editor.externalReview.introduction" +#~ msgstr "" +#~ "Durante la fase di valutazione esterna, l'editor sceglie dei revisori " +#~ "esterni alla Press per i file sottomessi e prende in considerazione i " +#~ "loro commenti, prima di scegliere l'azione appropriata (che determina " +#~ "l'invio di una notifica all'autore): Da rivedere (le revisioni saranno " +#~ "esaminate dal solo editor); Da ricaricare per la revisione (sarà avviato " +#~ "un nuovo giro di revisioni); Accettare il file sottomesso (occorre " +#~ "scegliere i file che saranno inviati per la fase editoriale); o infine " +#~ "Rifiuta il file sottomesso (archiviazione del file sottomesso)." diff --git a/locale/it/emails.po b/locale/it/emails.po new file mode 100644 index 00000000000..20b9eab3b18 --- /dev/null +++ b/locale/it/emails.po @@ -0,0 +1,554 @@ +# Fulvio Delle Donne , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-08 07:50+0000\n" +"Last-Translator: Fulvio Delle Donne \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Conferma della reimpostazione della password" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Abbiamo ricevuto una richiesta di reimpostazione della password per il sito " +"web {$siteTitle}.
      \n" +"
      \n" +"Se non hai fatto questa richiesta, ignora questa mail e la tua password non " +"verrà modificata. Se desideri reimpostare la password, fa' clic sull'URL " +"sottostante.
      \n" +"
      \n" +"Reimposta la password: {$passwordResetUrl}
      \n" +"
      \n" +"{$signature}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Registrazione alla Casa Editrice" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Sei stato registrato come utente di {$contextName}. In questa e-mail abbiamo " +"incluso il suo nome utente e la sua password, necessari per lavorare con " +"questa Casa Editrice attraverso il suo sito web. In qualsiasi momento, " +"potete chiedere di essere rimossi dall'elenco degli utenti contattandoci." +"
      \n" +"
      \n" +"Username: {$recipientUsername}
      \n" +"Password: {$password}
      \n" +"
      \n" +"Grazie,
      \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Verifica il tuo Account" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"È stato creato un account con {$contextName}, ma prima di iniziare a " +"utilizzarlo è necessario convalidare il proprio account e-mail. Per farlo, " +"basta seguire il link sottostante:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Grazie,
      \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Convalida il tuo account" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Hai creato un account con {$siteTitle}, ma prima di poter iniziare a usarlo, " +"devi convalidare il tuo account e-mail. Per farlo, basta seguire il link " +"sottostante:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Grazie,
      \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Registrazione come Revisore con {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"In considerazione della sua competenza, ci siamo presi la libertà di " +"registrare il suo nome nel database dei revisori per {$contextName}. Questo " +"non comporta alcun tipo di impegno da parte sua, ma ci permette " +"semplicemente di contattarla per una proposta da sottoporre a revisione. " +"Quando sarà invitato a fare una revisione, avrà la possibilità di vedere il " +"titolo e l'abstract del prodotto in questione e sarà sempre in grado di " +"accettare o rifiutare l'invito. Potrà inoltre chiedere in qualsiasi momento " +"che il suo nome venga rimosso dall'elenco dei revisori.
      \n" +"
      \n" +"Le forniamo un nome utente e una password da utilizzare in tutte le " +"interazioni con la Casa editrice attraverso il suo sito web. Potrebbe " +"desiderare, ad esempio, aggiornare il suo profilo, compresi i suoi ambiti di " +"interesse per le revisioni.
      \n" +"
      \n" +"Username: {$recipientUsername}
      \n" +"Password: {$password}
      \n" +"
      \n" +"Grazie,
      \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Incarico redazionale" + +msgid "emails.editorAssign.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"La proposta, "{$submissionTitle}," a {$contextName} ti è stato " +"assegnato per seguire il processo editoriale nel tuo ruolo di redattore.
      \n" +"
      \n" +"URL della proposta: {$submissionUrl}
      \n" +"Username: {$recipientUsername}
      \n" +"
      \n" +"Grazie," + +msgid "emails.reviewRequest.subject" +msgstr "Richiesta di revisione di un manoscritto" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Gentile {$recipientName},
      \n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"la preghiamo di collegarsi al sito web della Casa Editrice entro " +"{$responseDueDate} per indicare se intende intraprendere o meno la " +"revisione, nonché per accedere alla proposta e registrare la propria " +"revisione e raccomandazione.
      \n" +"
      \n" +"La fine della revisione è prevista per il {$reviewDueDate}.
      \n" +"
      \n" +"URL della proposta: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Username: {$recipientUsername}
      \n" +"
      \n" +"Grazie di aver preso in considerazione questa richiesta.
      \n" +"
      \n" +"
      \n" +"Cordialmente,
      \n" +"{$signature}
      \n" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Richiesta di revisione di un manoscritto" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Gentile {$recipientName},
      \n" +"le scriviamo solo per ricordare la nostra richiesta di revisione della " +"proposta, "{$submissionTitle}," per la {$contextName}. Speravamo " +"di ricevere la vostra risposta entro il {$responseDueDate}, e questa e-mail " +"è stata generata e inviata automaticamente allo scadere di tale data.\n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"La preghiamo di collegarsi al sito web della Casa Editrice per indicare se " +"si intende effettuare o meno la revisione, nonché per accedere alla proposta " +"e registrare la propria revisione e raccomandazione.
      \n" +"
      \n" +"La revisione va fatta entro il {$reviewDueDate}.
      \n" +"
      \n" +"URL della proposta: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Username: {$recipientUsername}
      \n" +"
      \n" +"Grazie di aver preso in considerazione questa richiesta.
      \n" +"
      \n" +"
      \n" +"Cordialmente,
      \n" +"{$contextSignature}
      \n" + +msgid "emails.reviewCancel.subject" +msgstr "Richiesta di revisione cancellata" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"A questo punto abbiamo deciso di annullare la nostra richiesta di revisione " +"della proposta, "{$submissionTitle}," per {$contextName}. Ci " +"scusiamo per gli eventuali disagi causati da questa decisione e ci auguriamo " +"di poterle chiedere aiuto per un prossimo processo di revisione.
      \n" +"
      \n" +"Per qualsiasi domanda, ci contatti." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Richiesta di revisione ripristinata" + +msgid "emails.reviewReinstate.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Desideriamo rinnovare la nostra richiesta di revisione della proposta, "" +"{$submissionTitle}," per la {$contextName}. Ci auguriamo che lei sia in " +"grado di aiutarci nel processo di revisione.
      \n" +"
      \n" +"Se ha domande, ci contatti." + +msgid "emails.reviewDecline.subject" +msgstr "Non disponibile a fare da revisore" + +msgid "emails.reviewDecline.body" +msgstr "" +"Gent.mi,
      \n" +"
      \n" +"Temo che in questo momento non mi sia possibile esaminare la proposta, "" +"{$submissionTitle}," per {$contextName}. Grazie di aver pensato a me e " +"mi rendo disponibile per un'altra volta.
      \n" +"
      \n" +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Promemoria per la revisione della proposta" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Le ricordiamo la nostra richiesta di revisione della proposta, "" +"{$submissionTitle}," per {$contextName}. Speravamo di ricevere la " +"revisione entro il {$reviewDueDate}, e saremmo lieti di riceverla non appena " +"sarà in grado di prepararla.
      \n" +"
      \n" +"Se non si dispone del nome utente e della password per il sito web, è " +"possibile utilizzare questo link per reimpostare la password (che verrà " +"inviata per e-mail insieme al nome utente). {$passwordLostUrl}
      \n" +"
      \n" +"URL della proposta: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Username: {$recipientUsername}
      \n" +"
      \n" +"La preghiamo di confermare la sua disponibilità a portare a termine questo " +"incarico, tanto importante per la nostra Casa Editrice. Grazie.
      \n" +"
      \n" +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Le ricordiamo la nostra richiesta di revisione della proposta, "" +"{$submissionTitle}," per {$contextName}. Speravamo di ricevere la " +"revisione entro il {$reviewDueDate}, e questa email è stata generata e " +"inviata automaticamente una volta trascorsa tale data. Saremmo comunque " +"lieti di riceverla non appena sarà in grado di prepararla.
      \n" +"
      \n" +"Se non si dispone del nome utente e della password per il sito web, è " +"possibile utilizzare questo link per reimpostare la password (che verrà " +"inviata per e-mail insieme al nome utente). {$passwordLostUrl}
      \n" +"
      \n" +"URL della proposta: {$reviewAssignmentUrl}
      \n" +"
      \n" +"Username: {$recipientUsername}
      \n" +"
      \n" +"La preghiamo di confermare la sua disponibilità a portare a termine questo " +"contributo fondamentale per il lavoro della Casa Editrice. Grazie.
      \n" +"
      \n" +"{$contextSignature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "La sua proposta è stata accettata da {$contextName}" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

      Gentile {$recipientName},

      siamo lieti di informarla che abbiamo " +"deciso di accettare il suo lavoro senza ulteriori modifiche. Dopo un'attenta " +"revisione, abbiamo trovato la sua proposta, {$submissionTitle}, in grado di " +"soddisfare o superare le nostre aspettative. Siamo entusiasti di pubblicare " +"il suo lavoro in {$nomeContesto} e la ringraziamo per aver scelto la nostra " +"Casa Editrice come sede per il suo lavoro.

      Il suo lavoro sarà presto " +"pubblicato sul sito della Casa Editrice {$nomeContesto} e la invitiamo a " +"includerlo nel suo elenco di pubblicazioni. Riconosciamo il duro lavoro che " +"viene svolto per ogni proposta di successo e vogliamo congratularci con lei " +"per aver raggiunto questa fase.

      La sua proposta sarà ora sottoposta a " +"copy editing e formattazione per prepararla alla pubblicazione.

      Riceverà a breve ulteriori istruzioni.

      Se ha domande, mi contatti " +"dal suo pannello di proposta.

      Cordiali saluti,

      {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "La sua richiesta è stata inviata alla revisione interna" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

      Gentile {$recipientName},

      Siamo lieti di informarla che un " +"redattore ha esaminato il suo contributo, {$submissionTitle}, e ha deciso di " +"inviarlo alla revisione interna. Riceverà un feedback da parte dei revisori " +"e informazioni sui passaggi successivi.

      Tenga presente che l'invio " +"dell'invio alla revisione interna non garantisce che verrà pubblicato. " +"Prenderemo in considerazione le raccomandazioni dei revisori prima di " +"decidere di accettare la proposta per la pubblicazione. Le potrebbe essere " +"chiesto di apportare modifiche e di rispondere ai commenti dei revisori " +"prima che venga presa una decisione finale.

      In caso di domande, mi " +"contatti dal pannello della proposta.

      { $signature}

      " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "La sua ichiesta è stata inviata al copyediting" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

      Gentile {$recipientName},

      \n" +"

      siamo lieti di informarla che abbiamo deciso di accettare il suo " +"contributo senza revisione tra pari. Abbiamo riscontrato che la sua " +"proposta, {$submissionTitle}, soddisfa le nostre aspettative e non " +"richiediamo che lavori di questo tipo siano sottoposti a revisione tra pari. " +"Siamo entusiasti di pubblicare il tuo contributo in {$contextName} e la " +"ringraziamo per aver scelto la nostra Casa Editrice come sede per il suo " +"lavoro.

      \n" +"

      Il suo contributo sarà presto pubblicato sul sito della Casa Editrice per " +"{$contextName} ed è libero di includerlo nel suo elenco delle pubblicazioni. " +"Riconosciamo il duro lavoro necessario per ogni proposta di successo e " +"vogliamo congratularci con lei per i suoi sforzi.

      \n" +"

      Il suo contributo verrà ora sottoposto a revisione redazionale per " +"prepararlo alla pubblicazione.

      \n" +"

      Riceverà a breve ulteriori istruzioni.

      \n" +"

      Se ha domande, mi contatti dal suo pannello di proposta.

      \n" +"

      Cordiali saluti,

      \n" +"

      {$signature}

      \n" + +msgid "emails.layoutRequest.subject" +msgstr "" +"La proposta {$submissionId} è pronta per la produzione presso " +"{$contextAcronym}" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" +"

      Gentile {$recipientName},

      una nuova proposta è pronta per la " +"modifica del layout:

      {$submissionId} " +"{$submissionTitle }
      {$contextName}

      1. 1. Fa' clic sull'URL " +"di invio sopra.
      2. 2. Scarica i file pronto per la produzione e " +"utilizzalo per organizzare il materiale secondo gli standard previsti.
      3. 3. Carica il materiale nella sezione Formati di pubblicazione " +"dell'invio.
      4. 4. Usa le discussioni di produzione per notificare " +"all'editore che il materiale è pronto.

      Se non sei in grado di " +"intraprendere questo lavoro in questo momento o hai domande, contattami. " +"Grazie per il tuo contributo.

      Cordiali saluti,

      {$signature}" + +msgid "emails.layoutComplete.subject" +msgstr "Materiale completato" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" +"

      Gentile {$recipientName},

      il materiale è stato predisposto ed è " +"pronto per la revisione finale.

      { $submissionTitle}
      {$contextName}

      Se " +"hai domande, contattami.

      Cordiali saluti,

      { $senderName}

      " + +msgid "emails.indexRequest.subject" +msgstr "Indice delle richieste" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"la proposta "{$submissionTitle}" a {$contextName} ora necessita di " +"indici creati seguendo questi passaggi.
      \n" +"1. Fare clic sull'URL di invio di seguito.
      \n" +"2. Accedi alla Casa Editrice e usa il file Bozze per organizzare il " +"materiale secondo gli standard di stampa.
      \n" +"3. Invia l'e-mail COMPLETA all'editore.
      \n" +"
      \n" +"URL di {$contextName}: {$contextUrl}
      \n" +"URL di invio: {$submissionUrl}
      \n" +"Nome utente: {$recipientUsername}
      \n" +"
      \n" +"Se non sei in grado di intraprendere questo lavoro in questo momento o hai " +"domande, contattami. Grazie per il tuo contributo.
      \n" +"
      \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Indice completato" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Gli indici sono stati ora preparati per il manoscritto, "" +"{$submissionTitle}," presentato a {$contextName} e sono pronti per la " +"correzione di bozze.
      \n" +"
      \n" +"In caso di domande, contattami.
      \n" +"
      \n" +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "Manoscritto di possibile interesse" + +msgid "emails.emailLink.body" +msgstr "" +"Ho pensato che potrebbe interessarti vedere "{$submissionTitle}" " +"di {$authors} pubblicato nel volume {$volume}, n. {$number} ({$year}) di " +"{$contextName} in "{$submissionUrl}"." + +msgid "emails.emailLink.description" +msgstr "" +"Questo modello di email offre a un lettore registrato la possibilità di " +"inviare informazioni su una monografia a qualcuno che potrebbe essere " +"interessato. È disponibile tramite gli Strumenti di lettura e deve essere " +"abilitato dall'Amministratore della Casa Editrice nella pagina di gestione " +"degli Strumenti di lettura." + +msgid "emails.notifySubmission.subject" +msgstr "Notifica di proposta" + +msgid "emails.notifySubmission.body" +msgstr "" +"Hai un nuovo messaggio da {$sender} in relazione a "{$submissionTitle}" +"" ({$monographDetailsUrl}):
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "Una notifica da parte di un utente." + +msgid "emails.notifyFile.subject" +msgstr "Notifica di invio di un file" + +msgid "emails.notifyFile.body" +msgstr "" +"Hai un messaggio da {$sender} sul file "{$fileName}" in "" +"{$submissionTitle}" ({$monographDetailsUrl}):
      \n" +"
      \n" +"\t\t{$message}
      \n" +"
      \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "Notifica inviata da un utente" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Attività editoriale per {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$name},
      \n" +"
      \n" +"Il rapporto sulla Casa Editrice per il {$month}, {$year} è ora disponibile. " +"Le statistiche principali di questo mese sono riportate di seguito.
      \n" +"
        \n" +"\t
      • Nuove proposte questo mese: {$newSubmissions}
      • \n" +"\t
      • Proposte rifiutate questo mese: {$declinedSubmissions}
      • \n" +"\t
      • Proposte accettate questo mese:: {$acceptedSubmissions}
      • \n" +"\t
      • Totale proposte: {$totalSubmissions}
      • \n" +"
      \n" +"Accedere alla Casa Editrice per visualizzare in modo più dettagliato l'andamento editoriale e le statistiche dei libri pubblicati. In " +"allegato è disponibile una copia completa dell'andamento editoriale di " +"questo mese.
      \n" +"
      \n" +"Cordialmente,
      \n" +"{$signature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
      \n" +"
      \n" +"{$announcementSummary}
      \n" +"
      \n" +"Visita il nostro sito web per leggere l'avviso completo." + +#~ msgid "emails.passwordResetConfirm.description" +#~ msgstr "" +#~ "Questa email viene inviata a un utente registrato quando segnala di aver " +#~ "dimenticato la password o di non riuscire ad accedere. Fornisce un URL da " +#~ "seguire per reimpostare la password." + +#~ msgid "emails.passwordReset.description" +#~ msgstr "" +#~ "Questo messaggio di posta elettronica viene inviato a un utente " +#~ "registrato quando la reimpostazione della password è avvenuta con " +#~ "successo, seguendo la procedura descritta nel messaggio di posta " +#~ "elettronica PASSWORD_RESET_CONFIRM." + +#~ msgid "emails.userRegister.description" +#~ msgstr "" +#~ "Questa e-mail viene inviata a un utente appena registrato per dargli il " +#~ "benvenuto nel sistema e fornirgli la registrazione del suo nome utente e " +#~ "della sua password." + +#~ msgid "emails.reviewerRegister.description" +#~ msgstr "" +#~ "Questa email viene inviata a un revisore appena registrato per dargli il " +#~ "benvenuto nel sistema e fornirgli una registrazione del suo nome utente e " +#~ "della sua password." + +#~ msgid "emails.submissionAckNotAuthor.description" +#~ msgstr "" +#~ "Questa e-mail, se abilitata, viene inviata automaticamente agli altri " +#~ "autori che non sono utenti di OMP specificati durante il processo di " +#~ "invio." + +#~ msgid "emails.layoutRequest.description" +#~ msgstr "" +#~ "Questo messaggio di posta elettronica, inviato da un Editore al " +#~ "responsabile del layout, notifica che gli è stato assegnato il compito di " +#~ "modificare il layout di un invio. Fornisce informazioni sull'invio e su " +#~ "come accedervi." + +#~ msgid "emails.layoutComplete.description" +#~ msgstr "" +#~ "Questa email inviata dall'Editore di Layout all'Editore di Collana " +#~ "notifica il completamento del processo di impaginazione." + +#~ msgid "emails.statisticsReportNotification.description" +#~ msgstr "" +#~ "Questa email viene inviata automaticamente ogni mese agli Editori e ai " +#~ "responsabili della Casa Editrice per fornire loro una panoramica sullo " +#~ "stato di salute del sistema." + +#~ msgid "emails.announcement.description" +#~ msgstr "Questa e-mail viene inviata quando viene creato un nuovo avviso." + +#~ msgid "emails.editorAssign.description" +#~ msgstr "" +#~ "Questa email di notifica a un Editore di Collana cui è assegnato il " +#~ "compito di supervisionare una proposta nel processo di editing. Fornisce " +#~ "informazioni sulla proposta e sulle modalità di accesso al sito della " +#~ "Casa Editrice." diff --git a/locale/it/locale.po b/locale/it/locale.po new file mode 100644 index 00000000000..d3c368e7612 --- /dev/null +++ b/locale/it/locale.po @@ -0,0 +1,1910 @@ +# Fulvio Delle Donne , 2022. +# Stefan Schneider , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-01-22T21:00:04+00:00\n" +"PO-Revision-Date: 2023-05-17 05:52+0000\n" +"Last-Translator: Stefan Schneider \n" +"Language-Team: Italian " +"\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "common.payments" +msgstr "Pagamenti" + +msgid "monograph.audience" +msgstr "Tipo di lettore" + +msgid "monograph.audience.success" +msgstr "I dettagli della audience sono stati aggiornati." + +msgid "monograph.coverImage" +msgstr "Immagine di copertina" + +msgid "monograph.audience.rangeQualifier" +msgstr "Qualificatore della varietà di lettori" + +msgid "monograph.audience.rangeFrom" +msgstr "Varietà di lettori (da)" + +msgid "monograph.audience.rangeTo" +msgstr "Varietà di lettori (a)" + +msgid "monograph.audience.rangeExact" +msgstr "Varietà di lettori (esatta)" + +msgid "monograph.languages" +msgstr "Lingue (Inglese, Francese, Spagnolo)" + +msgid "monograph.publicationFormats" +msgstr "Formati di pubblicazione" + +msgid "monograph.publicationFormat" +msgstr "Formato" + +msgid "monograph.publicationFormatDetails" +msgstr "Dettagli sul formato di pubblicazione disponibile: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Dettagli su questo libro" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formati:" + +msgid "monograph.type" +msgstr "Tipologia di immissione" + +msgid "submission.pageProofs" +msgstr "Bozze" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Il layout editor carica qui i file pronti per la pubblicazione. Usa " +"+Assegna per designare gli autori e gli altri correttori che dovranno " +"rileggere le bozze. Una volta corrette, le bozze devono essere nuovamente " +"caricate per l'approvazione definitiva alla pubblicazione." + +msgid "monograph.task.addNote" +msgstr "Aggiungi ai compiti" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Accesso aperto" + +msgid "monograph.publicationFormat.imprint" +msgstr "Marchio editoriale" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Numero di pagine" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Pagine iniziali" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Appendici" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Composizione del prodotto" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Dettagli del prodotto (non obbligatori)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identificazione del prodotto" + +msgid "monograph.publicationFormat.price" +msgstr "Prezzo" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Stabilire il prezzo." + +msgid "monograph.publicationFormat.priceType" +msgstr "Tipo di prezzo" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Percentuale di sconto, se applicabile" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Disponibilità del prodotto" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Indicatore di restituzione" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Informazione digitale" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Dimensioni fisiche" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Dimensione del file Size in Megabyte" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Vuoi inserire un valore personalizzato per le dimensioni del tuo file?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Altezza" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Spessore" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Peso" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Larghezza" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Paese di pubblicazione" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Misure tecniche per la protezione digitale" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Regione di distribuzione del prodotto" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Tariffa di tassazione" + +msgid "monograph.publicationFormat.taxType" +msgstr "Tipo di tassazione" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Includere i metadati di questo formato di pubblicazione nel record di per " +"questo libro." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Mercati e prezzi mancanti." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Codice identificativo mancante." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Mancano alcuni campi di metadati." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

      Il formato di pubblicazione scelto per questa monografia non esiste più." + +msgid "monograph.publicationFormat.openTab" +msgstr "Apri la tab per il formato di pubblicazione." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Formato di pubblicazione" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Scegliere un nome." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Indicare un prezzo valido." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Dettagli del formato" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Formato fisico" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Questo formato sarà disponibile in un sito web a parte" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL del contenuto remoto" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "Un codice ISBN a 13 caratteri, come 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "Un codice ISBN a 10 caratteri, come 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Occorre assegnare un ID alla monografia." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Occorre scegliere un formato di pubblicazione." + +msgid "grid.catalogEntry.availability" +msgstr "Disponibilità" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Disponibile" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Non disponibile" + +msgid "grid.catalogEntry.proof" +msgstr "Prova" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Accettazione del formato" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

      Approvare i metadati per questo formato. I metadati possono essere " +"verificati nel pannello Modifica di ciascun formato.

      " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "" +"

      Indicare che i metadati per questo formato non sono stati approvati.

      " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Disponibilità del formato" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

      Rendere questo formato disponibile ai lettori. I file " +"scaricabili e ogni altra distribuzione appariranno nella scheda di catalogo " +"del libro.

      " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

      Questo formato non sarà dispobile per i lettori. I file " +"scaricabili e ogni altra distribuzione non appariranno nella scheda di " +"catalogo del libro.

      " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Scheda del catalogo non approvata." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Formato non disponibile nella scheda del catalogo." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Bozza non approvata." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Approvato" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "In attesa di approvazione" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "" +"Occorre indicare la dimensione del file per i formati digitali richiesti." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Occorre indicare il codice di disponibilità del prodotto." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Occorre scegliere un codice di composizione del prodotto." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Valore del codice" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Tipo di codice ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "È obbligatorio un codice." + +msgid "grid.catalogEntry.valueRequired" +msgstr "È obbligatorio inserire un valore." + +msgid "grid.catalogEntry.salesRights" +msgstr "Diritti di vendita" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Valore del codice" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Tipi di diritti di vendita" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Resto del mondo?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Seleziona questa casella per utilizzare questi Diritti di vendita se pensi " +"che si applicano al tuo formato in modo onnicomprensivo. In questo caso non " +"occorre scegliere i paesi e le regioni." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Esiste già un tipo di vendita ROW definito per questo formato di " +"pubblicazione." + +msgid "grid.catalogEntry.countries" +msgstr "Nazioni" + +msgid "grid.catalogEntry.regions" +msgstr "Regioni" + +msgid "grid.catalogEntry.included" +msgstr "Incluso" + +msgid "grid.catalogEntry.excluded" +msgstr "Escluso" + +msgid "grid.catalogEntry.markets" +msgstr "Territori del mercato" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Territori" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Date di pubblicazione" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Occorre indicare un ruolo di rappresentanza." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Occorre indicare un formato di data." + +msgid "grid.catalogEntry.dateValue" +msgstr "Data" + +msgid "grid.catalogEntry.dateRole" +msgstr "Ruolo" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Formato di data" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Occorre indicare una data e il valore della data deve corrispondere al " +"formato di data prescelto." + +msgid "grid.catalogEntry.representatives" +msgstr "Rappresentanti" + +msgid "grid.catalogEntry.representativeType" +msgstr "Tipo di rappresentati" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agenti" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Fornitori" + +msgid "grid.catalogEntry.agent" +msgstr "Agente" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"È possibile assegnare un agente che vi rappresenti in questo territorio, ma " +"non è indispensabile." + +msgid "grid.catalogEntry.supplier" +msgstr "Fornitore" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Scegliere un ruolo:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Ruolo" + +msgid "grid.catalogEntry.representativeName" +msgstr "Nome" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Telefono" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Indirizzo email" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Sito web" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "ID del rappresentante" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Tipo di ID del rappresentante (si raccomanda GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"È possibile lasciare la seguente sezione vuota se si forniscono i propri " +"servizi ai clienti." + +msgid "grid.action.addRepresentative" +msgstr "Aggiunge un rappresentante" + +msgid "grid.action.editRepresentative" +msgstr "Edita il rappresentante" + +msgid "grid.action.deleteRepresentative" +msgstr "Cancella il rappresentante" + +msgid "spotlight" +msgstr "In evidenza" + +msgid "spotlight.spotlights" +msgstr "In evidenza" + +msgid "spotlight.noneExist" +msgstr "Non ci sono libri in evidenza." + +msgid "spotlight.title.homePage" +msgstr "In evidenza" + +msgid "spotlight.author" +msgstr "Autore, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Volume in evidenza" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Homepage" + +msgid "grid.content.spotlights.form.location" +msgstr "Collocazione per \"In evidenza\"" + +msgid "grid.content.spotlights.form.item" +msgstr "Inserisci il titolo messo In evidenza (autocompletamento)" + +msgid "grid.content.spotlights.form.title" +msgstr "Titolo In evidenza" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Libro" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Occorre indicare un libro." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Occorre indicare un titolo In evidenza." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Per favore, scegli un posto per questo libro In evidenza." + +msgid "grid.action.editSpotlight" +msgstr "Edita questo volume In evidenza" + +msgid "grid.action.deleteSpotlight" +msgstr "Cancella questo volume In evidenza" + +msgid "grid.action.addSpotlight" +msgstr "Aggiungi \"In evidenza\"" + +msgid "manager.series.open" +msgstr "Proposte libere" + +msgid "manager.series.indexed" +msgstr "Indicizzato" + +msgid "grid.libraryFiles.column.files" +msgstr "Files" + +msgid "grid.action.catalogEntry" +msgstr "Visualizza il form di immissione nel catalogo" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Il formato appare all'inizio del catalogo" + +msgid "grid.action.editFormat" +msgstr "Edita questo formato" + +msgid "grid.action.deleteFormat" +msgstr "Cancella questo formato" + +msgid "grid.action.addFormat" +msgstr "Aggiungi il formato di pubblicazione" + +msgid "grid.action.approveProof" +msgstr "" +"Dai la tua approvazione perché la prova possa essere indicizzata e inclusa " +"nel Catalogo" + +msgid "grid.action.pageProofApproved" +msgstr "" +"Il file per le prove della messa in pagina è pronto per la pubblicazione" + +msgid "grid.action.newCatalogEntry" +msgstr "Nuovo ingresso nel Catalogo" + +msgid "grid.action.publicCatalog" +msgstr "Visualizza questo titolo nel Catalogo" + +msgid "grid.action.feature" +msgstr "Cambia la visualizzazione delle caratteristiche" + +msgid "grid.action.featureMonograph" +msgstr "Metti nel carosello del Catalogo" + +msgid "grid.action.releaseMonograph" +msgstr "Segna questa immissione come 'novità'" + +msgid "grid.action.manageCategories" +msgstr "Configura le categorie per questa Press" + +msgid "grid.action.manageSeries" +msgstr "Configura le collane per questa Press" + +msgid "grid.action.addCode" +msgstr "Aggiungi Codice" + +msgid "grid.action.editCode" +msgstr "Modifica il codice" + +msgid "grid.action.deleteCode" +msgstr "Cancella il Codice" + +msgid "grid.action.addRights" +msgstr "Aggiungi i diritti di vendita" + +msgid "grid.action.editRights" +msgstr "Modifica i diritti" + +msgid "grid.action.deleteRights" +msgstr "Cancella i diritti" + +msgid "grid.action.addMarket" +msgstr "Aggiungi un Mercato" + +msgid "grid.action.editMarket" +msgstr "Modifica il Mercato" + +msgid "grid.action.deleteMarket" +msgstr "Cancella il Mercato" + +msgid "grid.action.addDate" +msgstr "Aggiungi una data di pubblicazione" + +msgid "grid.action.editDate" +msgstr "Modifica la data" + +msgid "grid.action.deleteDate" +msgstr "Cancella la data" + +msgid "grid.action.createContext" +msgstr "Crea una nuova Press" + +msgid "grid.action.publicationFormatTab" +msgstr "Mostra la tab per il formato di pubblicazione" + +msgid "grid.action.moreAnnouncements" +msgstr "Vai alla pagina degli annunci" + +msgid "grid.action.submissionEmail" +msgstr "Clicca per leggere questa email" + +msgid "grid.action.approveProofs" +msgstr "Visualizza la griglia delle prove" + +msgid "grid.action.proofApproved" +msgstr "Il format è stato approvato" + +msgid "grid.action.availableRepresentation" +msgstr "Approva/Respingi questo formato" + +msgid "grid.action.formatAvailable" +msgstr "Il formato è disponibile e pubblicato" + +msgid "grid.reviewAttachments.add" +msgstr "Aggiungi un allegato alla recensione" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "File disponibili" + +msgid "series.series" +msgstr "Collana" + +msgid "series.featured.description" +msgstr "Queste collane appariranno nel menu di navigazione principale" + +msgid "series.path" +msgstr "Percorso" + +msgid "catalog.manage" +msgstr "Gestione del Catalogo" + +msgid "catalog.manage.newReleases" +msgstr "In primo piano" + +msgid "catalog.manage.category" +msgstr "Categorie" + +msgid "catalog.manage.series" +msgstr "Collane" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "indicare un ISSN valido." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Online e print ISSN non devono essere identici." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Online ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN" + +msgid "catalog.selectSeries" +msgstr "Scegli una collana" + +msgid "catalog.selectCategory" +msgstr "Scegli una categoria" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"L'immagine di copertina dei libri selezionati appare nella parte superiore " +"della home page come un insieme scorrevole. Clicca su 'Funzione' e poi sulla " +"stella per aggiungere un libro al carosello; clicca sul punto esclamativo " +"per inserire il libro tra le novità; trascina e rilascia per stabilire un " +"nuovo ordine tra i volumi." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Clicca su 'Funzione' e poi sulla stella per scegliere un libro in evidenza " +"per questa categoria; trascina e rilascia per ordinare." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Clicca su 'Funzione' e poi sulla stella per scegliere un libro in evidenza " +"per questa collana; trascina e rilascia per ordinare. Le collane vengonon " +"identificate con il nome del curatore e con il titolo della collana, " +"all'interno o meno di una categoria." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Carosello" + +msgid "catalog.manage.newRelease" +msgstr "Pubblicazione" + +msgid "catalog.manage.manageSeries" +msgstr "Gestione della collana" + +msgid "catalog.manage.manageCategories" +msgstr "Gestione delle categorie" + +msgid "catalog.manage.noMonographs" +msgstr "Non ci sono Monografie assegnate." + +msgid "catalog.manage.featured" +msgstr "In Evidenza" + +msgid "catalog.manage.categoryFeatured" +msgstr "In evidenza" + +msgid "catalog.manage.seriesFeatured" +msgstr "Nelle collane" + +msgid "catalog.manage.featuredSuccess" +msgstr "Libro messo in evidenza." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Libro non messo in evidenza." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Libro selezionato come nuova uscita." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Libro deselezionato come nuova uscita." + +msgid "catalog.manage.feature.newRelease" +msgstr "Nuova uscita" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Nuova uscita nella categoria" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Nuova uscita nelle collane" + +msgid "catalog.manage.nonOrderable" +msgstr "" +"Questa monografia non è ordinabile prima di essere stata messa in evidenza." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Cerca per titolo o autore" + +msgid "catalog.manage.isFeatured" +msgstr "Questo libro è in evidenza. Rendere questo libro non in evidenza." + +msgid "catalog.manage.isNotFeatured" +msgstr "Questo libro non è in evidenza. Rendere questo libro in evidenza." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Questo libro è una nuova uscita. Togliere questo libro dalle nuove uscite." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Questo libro non è una nuova uscita. Rendere questo libro una nuova uscita." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Nessuna proposta è stata selezionata per essere aggiunta al catalogo." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Una o più proposte non sono state trovate." + +msgid "catalog.manage.findSubmissions" +msgstr "Trova libri da aggiungere al catalogo" + +msgid "catalog.noTitles" +msgstr "Nessun libro è stato ancora pubblicato." + +msgid "catalog.noTitlesNew" +msgstr "Nessuna nuova uscita è disponibile al momento." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Non sono stati trovati titoli corrispondenti alla ricerca per " +"\"{$searchQuery}\"." + +msgid "catalog.feature" +msgstr "Caratteristiche" + +msgid "catalog.featured" +msgstr "In evidenza" + +msgid "catalog.featuredBooks" +msgstr "Libri in evidenza" + +msgid "catalog.foundTitleSearch" +msgstr "" +"E' stato trovato un titolo corrispondente alla ricerca: \"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"Sono stati trovati {$number} titoli corrispondenti alla ricerca: " +"\"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Tutti i volumi" + +msgid "catalog.newReleases" +msgstr "Nuove pubblicazioni" + +msgid "catalog.dateAdded" +msgstr "Aggiunto il {$dateAdded}" + +msgid "catalog.publicationInfo" +msgstr "Informazioni sulla pubblicazione" + +msgid "catalog.published" +msgstr "Pubblicato" + +msgid "catalog.forthcoming" +msgstr "Uscite future" + +msgid "catalog.categories" +msgstr "Categorie" + +msgid "catalog.parentCategory" +msgstr "Categoria madre" + +msgid "catalog.category.subcategories" +msgstr "Sottocategorie" + +msgid "catalog.aboutTheAuthor" +msgstr "Su {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Da notare: per l'acquisto di documenti, è necessario effettuare prima il " +"login. Selezionando il documento da acquistare sarete indirizzati alla " +"pagina di login. Tutti i documenti segnati con un'icona Open Access possono " +"essere scaricati gratuitamente, senza effettuare il login." + +msgid "catalog.sortBy" +msgstr "Ordinamento dei libri" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Scegli come ordinare i libri in questa collana." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Scegli come ordinare i libri in questa categoria." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Scegli come ordinare i libri in questo catalogo." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Posizione delle collane (la più bassa in cima)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Posizione delle collane (la più alta in cima)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} visualizzazione del file {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Torna a visualizzare i dettagli di {$monographTitle}" + +msgid "submission.search" +msgstr "Ricerca di libri" + +msgid "common.publication" +msgstr "Libro" + +msgid "common.publications" +msgstr "Libri" + +msgid "common.prefix" +msgstr "Prefisso" + +msgid "common.preview" +msgstr "Anteprima" + +msgid "common.feature" +msgstr "In evidenza" + +msgid "common.searchCatalog" +msgstr "Cerca nel Catalogo" + +msgid "common.moreInfo" +msgstr "Informazioni aggiuntive" + +msgid "common.listbuilder.completeForm" +msgstr "Per favore, riempi tutto il formulario." + +msgid "common.listbuilder.selectValidOption" +msgstr "Per favore, scegli dalla lista una opzione valida." + +msgid "common.listbuilder.itemExists" +msgstr "Non è possibile aggiungere due volte lo stesso elemento." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Testata della Homepage Header" + +msgid "navigation.catalog" +msgstr "Catalogo" + +msgid "navigation.competingInterestPolicy" +msgstr "Polcy per il conflitto di interessi" + +msgid "navigation.catalog.allMonographs" +msgstr "Tutti i libri" + +msgid "navigation.catalog.manage" +msgstr "Gestione" + +msgid "navigation.catalog.administration.short" +msgstr "Amministrazione" + +msgid "navigation.catalog.administration" +msgstr "Gestione del Catalogo" + +msgid "navigation.catalog.administration.categories" +msgstr "Categorie" + +msgid "navigation.catalog.administration.series" +msgstr "Collane" + +msgid "navigation.infoForAuthors" +msgstr "Per Autori" + +msgid "navigation.infoForLibrarians" +msgstr "Per Bibliotecari" + +msgid "navigation.infoForAuthors.long" +msgstr "Informazioni per gli Autori" + +msgid "navigation.infoForLibrarians.long" +msgstr "Informazioni per bibliotecari" + +msgid "navigation.newReleases" +msgstr "Nuove pubblicazioni" + +msgid "navigation.published" +msgstr "Pubblicato" + +msgid "navigation.wizard" +msgstr "Procedura guidata" + +msgid "navigation.linksAndMedia" +msgstr "Link ai Social Media" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Link al tuo catalogo." + +msgid "navigation.skip.spotlights" +msgstr "Passare ai libri in evidenza" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Collane" + +msgid "navigation.navigationMenus.series.description" +msgstr "Link a una collana." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Categoria" + +msgid "navigation.navigationMenus.category.description" +msgstr "Link a una categoria." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Nuove uscite" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Link alle tue nuove uscite." + +msgid "context.contexts" +msgstr "case editrici" + +msgid "context.context" +msgstr "Casa editrice" + +msgid "context.current" +msgstr "Casa editrice corrente:" + +msgid "context.select" +msgstr "Seleziona una casa editrice:" + +msgid "user.authorization.representationNotFound" +msgstr "Il formato di pubblicazione richiesto non è stato trovato." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Aggiungi utenti senza ruoli in questa Press." + +msgid "user.noRoles.submitMonograph" +msgstr "Fai una proposta" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Carica una Monografia: la registrazione di un Autore non è al momento attiva." + +msgid "user.noRoles.regReviewer" +msgstr "Registrati come Reviewer" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Registrati come Reviewer: la registrazione di un Reviewer non è al momento " +"attiva." + +msgid "user.reviewerPrompt" +msgstr "" +"Saresti disposto a fare la revisione delle proposte di questa casa editrice?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Si, richiedere il ruolo di {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Si, mi piacerebbe che mi contattassero per fare la revisione delle proposte " +"di questa casa editrice." + +msgid "user.register.contextsPrompt" +msgstr "A quali case editrici di questo sito le piacerebbe registrarsi?" + +msgid "user.register.otherContextRoles" +msgstr "Richiedere i ruoli seguenti." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Se hai chiesto di essere revisore di una casa editrice, inserisci i soggetti " +"di interesse." + +msgid "user.role.manager" +msgstr "Press manager" + +msgid "user.role.pressEditor" +msgstr "Press editor" + +msgid "user.role.subEditor" +msgstr "Editor di collana" + +msgid "user.role.copyeditor" +msgstr "Redattore" + +msgid "user.role.proofreader" +msgstr "Correttore di bozze" + +msgid "user.role.productionEditor" +msgstr "Editor di produzione" + +msgid "user.role.managers" +msgstr "Press managers" + +msgid "user.role.subEditors" +msgstr "Editors di collana" + +msgid "user.role.editors" +msgstr "Editori" + +msgid "user.role.copyeditors" +msgstr "Redattori" + +msgid "user.role.proofreaders" +msgstr "Correttori di bozze" + +msgid "user.role.productionEditors" +msgstr "Editor di produzione" + +msgid "user.register.selectContext" +msgstr "Scegli a quale casa editrice registrarti:" + +msgid "user.register.noContexts" +msgstr "Non puoi registrarti presso nessuna Press ospitata su questo sito." + +msgid "user.register.privacyStatement" +msgstr "Informativa sulla privacy" + +msgid "user.register.registrationDisabled" +msgstr "Le registrazioni sono sospese." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "La password inserita non è abbastanza lunga." + +msgid "user.register.readerDescription" +msgstr "Notifica per mezzo di email sulla pubblicazione di una monografia." + +msgid "user.register.authorDescription" +msgstr "È possibile sottomettere documenti alla Press." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Disponibile alla peer review per i documenti sottomessi alla Press." + +msgid "user.register.reviewerDescription" +msgstr "Disponibile alla peer review per i documenti sottomessi al Sito." + +msgid "user.register.reviewerInterests" +msgstr "" +"Identifica i campi di tuo interesse per la peer review (aree e metodi di " +"ricerca):" + +msgid "user.register.form.userGroupRequired" +msgstr "Devi scegliere almeno un ruolo" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Sì, accetto che i miei dati vengano raccolti e registrati in accordo con la " +"dichiarazione sulla privacy " +"della Casa Editrice." + +msgid "site.noPresses" +msgstr "Non ci sono case editrici disponibili." + +msgid "site.pressView" +msgstr "Consulta il sito web della Press" + +msgid "about.pressContact" +msgstr "Per contattare la Press" + +msgid "about.aboutContext" +msgstr "Informazioni" + +msgid "about.editorialTeam" +msgstr "Comitato di redazione" + +msgid "about.editorialPolicies" +msgstr "Policies redazionali" + +msgid "about.focusAndScope" +msgstr "Focus e ambito" + +msgid "about.seriesPolicies" +msgstr "Policies concernenti le collane e le categorie" + +msgid "about.submissions" +msgstr "Proposte di pubblicazione" + +msgid "about.onlineSubmissions" +msgstr "Inserimenti online" + +msgid "about.onlineSubmissions.login" +msgstr "Vai al Login" + +msgid "about.onlineSubmissions.register" +msgstr "Registra" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "" +"È necessario autenticarsi per proporre testi per la pubblicazione e seguirne " +"il successivo iter. {$loginUrl} un account esistente o {$register} uno nuovo." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} o {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Proponi un testo per la pubblicazione" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "verifica lo stato della tua proposta" + +msgid "about.authorGuidelines" +msgstr "Linee Guida per gli Autori" + +msgid "about.submissionPreparationChecklist" +msgstr "Controlli per gli autori" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Gli autori, prima di caricare sulla piattaforma i loro contributi, sono " +"tenuti a verificare che essi rispettino i criteri elencati di seguito. I " +"testi che non dovessero tenerne conto saranno restituiti agli autori." + +msgid "about.copyrightNotice" +msgstr "Avviso di Copyright" + +msgid "about.privacyStatement" +msgstr "Informativa sulla privacy" + +msgid "about.reviewPolicy" +msgstr "Processo di Peer Review" + +msgid "about.publicationFrequency" +msgstr "Frequenza di pubblicazione" + +msgid "about.openAccessPolicy" +msgstr "Policy sull'Open Access" + +msgid "about.pressSponsorship" +msgstr "Sponsorship per questa casa editrice" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"maggiori informazioni sul sistema di pubblicazione, la piattaforma e il " +"flusso di lavoro di OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Processo editoriale di OMP" + +msgid "about.aboutSoftware" +msgstr "Su Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"Questa casa editrice usa Open Monograph Press {$ompVersion}, che è un " +"software open source per la gestione dei processi editoriali sviluppato, " +"supportato e distribuito gratuitamente dal Public Knowledge Project con " +"Licenza pubblica GNU. Visita il sito di PKP learn more about the software. Si prega di contattare la casa editrice direttamente per domande e " +"proposte di pubblicazione." + +msgid "about.aboutOMPSite" +msgstr "" +"Questa Casa Editrice usa Open Monograph Press {$ompVersion}, che è un " +"software open source per la gestione dei processi editoriali, sviluppato, " +"supportato e distribuito gratuitamente dalla Public Knowledge Project con Licenza pubblica GNU." + +msgid "help.searchReturnResults" +msgstr "Torna ai Risultati della ricerca" + +msgid "help.goToEditPage" +msgstr "Apri una nuova pagina per modificare questa informazione" + +msgid "installer.appInstallation" +msgstr "Installazione di OMP" + +msgid "installer.ompUpgrade" +msgstr "Aggiornamento di OMP" + +msgid "installer.installApplication" +msgstr "Installa Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Se stai aggiornando una installazione esistente di OMP, fai click qui per procedere." + +msgid "installer.installationInstructions" +msgstr "" +"

      Grazie per aver scaricato Open Monograph Press {$version} del Public Knowledge Project. Prima di continuare, leggi il file README incluso in questo software. " +"Per maggiori informazioni sul Public Knowledge Project e i suoi progetti di " +"software, per favore visita il sito web PKP. Se ti imbatti in bug oppure vuoi porre quesiti " +"tecnici su Open Monograph Press, vai sul forum di supporto oppure visita il sistema di bug reporting " +"online di PKP. Benché il forum di supporto sia il modo preferito per questo " +"tipo di contatti, puoi anche inviare una email al team usando questo " +"indirizzo: pkp.contact@gmail.com.

      " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Passaggi per la pre-Installazione" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

      1. I file e le cartelle seguenti (ed i loro contenuti) devono essere " +"scrivibili:

      \n" +"
        \n" +"\t
      • config.inc.php è scrivibile (opzionale): {$writable_config}\n" +"\t
      • public/ è scrivibile: {$writable_public}
      • \n" +"\t
      • cache/ è scrivibile: {$writable_cache}
      • \n" +"\t
      • cache/t_cache/ è scrivibile: {$writable_templates_cache}\n" +"\t
      • cache/t_compile/ è scrivibile: {$writable_templates_compile}\n" +"\t
      • cache/_db è scrivibile: {$writable_db_cache}
      • \n" +"
      \n" +"\n" +"

      2. Deve essere creata e resa scrivibile una cartella per conservare i " +"file caricati (vedi \"Impostazioni dei File\" sotto).

      " + +msgid "installer.upgradeInstructions" +msgstr "" +"

      Versione OMP {$version}

      \n" +"\n" +"

      Grazie per aver scaricato Open Monograph Press del " +"Public Knowledge Project. Prima di continuare, leggi i file README e UPGRADE inclusi in questo software. Per maggiori informazioni sul " +"Public Knowledge Project e i suoi progetti di software, per favore visita il " +"sito di PKP. Se ti " +"imbatti in bug oppure vuoi porre quesiti tecnici su Open Monograph Press, " +"vai al forum di " +"supporto o visita il sistema di bug reporting sul sito di PKP. Benché il " +"forum di supporto sia il modo preferito per questo tipo di contatti, puoi " +"anche inviare una email al team usando questo indirizzo: pkp.contact@gmail.com.

      \n" +"

      È fortemente raccomandato che tu esegua il backup del " +"database, delle cartelle e della cartella di installazione di OMP prima di " +"procedere.

      " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Per un supporto completo a Unicode il PHP richiede la library mbstring (attiva di " +"default nelle più recenti installazioni PHP). È possibile che si abbiano " +"problemi nell'uso di set di caratteri estesi se il server non supporta " +"queste richieste.\n" +"

      \n" +"Il server supporta al momento mbstring: {$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Il server consente al momento di caricare i file: {$allowFileUploads}" +"" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Il server consente al momento di caricare un file le cui dimensioni massime " +"sono: {$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"La lingua principale da utilizzare per questo sistema. Per favore, consulta " +"la documentazione OMP se sei interessato al supporto di lingue non elencate." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Selezionare altre lingue aggiuntive da supportare in questo sistema. Queste " +"lingue saranno disponibili per l'uso dalle Ppress ospitate sul sito. Altre " +"lingue possono essere installate in qualsiasi momento dall'interfaccia di " +"amministrazione del sito. I parametri contrassegnati con un * possono essere " +"incompleti.." + +msgid "installer.filesDirInstructions" +msgstr "" +"Inserisci il percorso completo per la cartella in cui vuoi che vengano " +"salvati i file scaricati. Questa cartella non dovrebbe essere direttamente " +"accessibile via web. Per favore, prima dell'installazione assicurati " +"che la cartella esista e sia scrivibile. I nomi dei percorsi " +"Windows dovrebbero usare i forward slashes, per esempio \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP richiede l'accesso ad un database SQL per conservare i suoi dati. Vedi i " +"requisiti di sistema sopra indicati per avere la lista dei database " +"supportati. Nei campi che seguono, fornisci i parametri necessari per la " +"connessione al database." + +msgid "installer.upgradeApplication" +msgstr "Aggiorna Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

      IMPORTANTE!

      \n" +"

      Il programma di installazione potrebbe non riuscire a sovrascrivere il " +"file di configurazione. Prima di tentare di utilizzare il sistema, apri il " +"file config.inc.php con un editor testuale e sostituisci il " +"contenuto con il contenuto sottostante.

      " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

      L'installazione di OMP è stata completata con successo.

      \n" +"

      Per iniziare a utilizzare il sistema, effettua il " +"login con il nome utente e la password inseriti nella pagina precedente." +"

      \n" +"

      Se vuoi ricevere notizie e aggiornamenti, per favore registrati " +"a https://pkp.sfu.ca/developer-newsletter. Se hai " +"domande o commenti da fare, per favore visita il forum di supporto.

      " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

      L'aggiornamento di OMP alla versione {$version} è stato completato con " +"successo.

      \n" +"

      Nel file di configurazione config.inc.php non dimenticare di " +"impostare su On il parametro \"installato\"

      \n" +"

      Se non ti sei già registrato e desideri ricevere news e aggiornamenti, " +"per favore registrati a https://lists." +"publicknowledgeproject.org/lists/. Se hai domande o commenti, " +"per favore visita il forum di supporto.

      " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"La data di scadenza per il round {$round} di revisione della proposta " +"{$submissionId} da parte di {$reviewerName} è stata impostata a {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} ha rifiutato il round {$round} di revisione per la proposta " +"{$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} ha accettato il round {$round} di revisione della proposta " +"{$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} ha indicato il round {$round} della revisione per la proposta " +"{$submissionId} come non considerato." + +msgid "log.editor.decision" +msgstr "" +"Una decisione editoriale ({$decision}) per il libro {$submissionId} è stata " +"registrata da {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"Una raccomandazione editoriale ({$decision}) per il libro {$submissionId} è " +"stata registrata da {$editorName}." + +msgid "log.editor.archived" +msgstr "La proposta {$submissionId} è stata archiviata." + +msgid "log.editor.restored" +msgstr "La proposta {$submissionId} è stata rimessa in coda." + +msgid "log.editor.editorAssigned" +msgstr "" +"{$editorName} è stato assegnato come editor della proposta {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} ha assegnato {$proofreaderName} come correttore di bozze " +"della proposta {$submissionId}." + +msgid "log.proofread.complete" +msgstr "" +"{$proofreaderName} ha inviato la proposta {$submissionId} in produzione." + +msgid "log.imported" +msgstr "{$userName} ha importato il libro {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Codice di identificazione aggiunto." + +msgid "notification.editedIdentificationCode" +msgstr "Codice di identificazione modificato." + +msgid "notification.removedIdentificationCode" +msgstr "Codice di identificazione rimosso." + +msgid "notification.addedPublicationDate" +msgstr "Data di pubblicazione aggiunta." + +msgid "notification.editedPublicationDate" +msgstr "Data di pubblicazione modificata." + +msgid "notification.removedPublicationDate" +msgstr "Data di pubblicazione rimossa." + +msgid "notification.addedPublicationFormat" +msgstr "Formato di pubblicazione aggiunto." + +msgid "notification.editedPublicationFormat" +msgstr "Formato di pubblicazione modificato." + +msgid "notification.removedPublicationFormat" +msgstr "Formato di pubblicazione rimosso." + +msgid "notification.addedSalesRights" +msgstr "Diritti di vendita aggiunti." + +msgid "notification.editedSalesRights" +msgstr "Diritti di vendita modificati." + +msgid "notification.removedSalesRights" +msgstr "Diritti di vendita rimossi." + +msgid "notification.addedRepresentative" +msgstr "Rappresentante aggiunto." + +msgid "notification.editedRepresentative" +msgstr "Rappresentante modificato." + +msgid "notification.removedRepresentative" +msgstr "Rappresentante rimosso." + +msgid "notification.addedMarket" +msgstr "Mercato aggiunto." + +msgid "notification.editedMarket" +msgstr "Mercato modificato." + +msgid "notification.removedMarket" +msgstr "Mercato rimosso." + +msgid "notification.addedSpotlight" +msgstr "Spotlight aggiunto." + +msgid "notification.editedSpotlight" +msgstr "Spotlight modificato." + +msgid "notification.removedSpotlight" +msgstr "Spotlight rimosso." + +msgid "notification.savedCatalogMetadata" +msgstr "Metadati del Catalogo salvati." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Metadati del formato di pubblicazione salavti." + +msgid "notification.proofsApproved" +msgstr "Bozze approvate." + +msgid "notification.removedSubmission" +msgstr "Proposta cancellata." + +msgid "notification.type.submissionSubmitted" +msgstr "Una nuova monografia, \"{$title},\" è stata proposta." + +msgid "notification.type.editing" +msgstr "Modifica eventi" + +msgid "notification.type.reviewing" +msgstr "Revisione di Eventi" + +msgid "notification.type.site" +msgstr "Eventi del Sito" + +msgid "notification.type.submissions" +msgstr "Eventi per la Proposta" + +msgid "notification.type.userComment" +msgstr "Un lettore ha lasciato un commento su \"{$title}\"." + +msgid "notification.type.public" +msgstr "Avvisi pubblici" + +msgid "notification.type.editorAssignmentTask" +msgstr "" +"È stata proposta una nuova Monografia, a cui occorre assegnare un editor." + +msgid "notification.type.copyeditorRequest" +msgstr "Sei stato sollecitato a fare il copyediting per \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "Sei stato sollecitato a rivedere il layout per \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "Sei stato sollecitato a creare un indice per \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Processo di valutazione interno cominciato." + +msgid "notification.type.approveSubmission" +msgstr "" +"Questa proposta è in attesa di approvazione all'interno del tool \"Catalogo " +"Entry\", prima che apparirà nel Catalogo pubblico." + +msgid "notification.type.approveSubmissionTitle" +msgstr "In attesa di approvazione." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"I metadati per la voce di catalogo devono essere approvati prima che il " +"formato di pubblicazione venga incluso nel catalogo. Per approvare i " +"metadati del catalogo, clicca sulla scheda Monografia sopra." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Nessun metodo di pagamento configurato." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"È necessario definire una modalità di pagamento prima di definire i " +"parametri del commercio elettronico." + +msgid "notification.type.visitCatalogTitle" +msgstr "Gestione del Catalogo" + +#, fuzzy +msgid "notification.type.visitCatalog" +msgstr "" +"La monografia è stata approvata. Per favore, visita il Catalogo per gestire " +"i dettagli, usando il link qui sopra." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "Non puoi accedere perché non sei un revisore di questa monografia." + +msgid "user.authorization.monographAuthor" +msgstr "Non puoi accedere perché non sei l'autore di questa monografia." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Non puoi accedere perché non sei uno dei revisori assegnati a questa " +"monografia." + +msgid "user.authorization.monographFile" +msgstr "Non puoi accedere al file associato alla monografia." + +msgid "user.authorization.invalidMonograph" +msgstr "Hai richiesto una Monografia non valida o inesistente!" + +msgid "user.authorization.noContext" +msgstr "Nessuna Casa Editrice trovata." + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Stai cercando di accedere ad una monografia che non fa parte di questa " +"collana." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" +"Accesso negato! Non sei stato assegnato a questo stadio del flusso di lavoro." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Accesso negato! Il gruppo di utenti a cui appartieni non è stato assegnato a " +"questo stadio del flusso di lavoro. Per favore, verifica le tue " +"impostazioni ." + +msgid "payment.directSales" +msgstr "Scarica dal sito web della Press" + +msgid "payment.directSales.price" +msgstr "Prezzo" + +msgid "payment.directSales.availability" +msgstr "Disponibilità" + +msgid "payment.directSales.catalog" +msgstr "Catalogo" + +msgid "payment.directSales.approved" +msgstr "Approvato" + +msgid "payment.directSales.priceCurrency" +msgstr "Prezzo ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "I prezzi devono essere solo numeri. Non includere simboli di valuta." + +msgid "payment.directSales.directSales" +msgstr "Vendita diretta" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Non disponibile" + +msgid "payment.directSales.notSet" +msgstr "Non stabilito" + +msgid "payment.directSales.openAccess" +msgstr "Accesso Aperto" + +msgid "payment.directSales.price.description" +msgstr "" +"I formati di file possono essere resi disponibili per il download dal sito " +"web della Press in modalità Open Access, a costo zero per i lettori, oppure " +"messi in vendita diretta (utilizzando una modalità di pagamento online, come " +"configurato in Distribuzione). Per questo file indicare la base di accesso." + +msgid "payment.directSales.validPriceRequired" +msgstr "Occorre indicare un numero valido per il prezzo." + +msgid "payment.directSales.purchase" +msgstr "Acquista ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Scarica" + +msgid "payment.directSales.monograph.name" +msgstr "Acquista la monografia o scarica un capitolo" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Questa operazione è per l'acquisto del download di una singola monografia o " +"capitolo di monografia." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"L'XML help mapping file {$filename} è stato ricaricato durante la ricerca di " +"{$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Libro" + +msgid "submission.pdf.download" +msgstr "Scarica questo file PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Registrarsi con altre case editrici" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Nascondere altre case editrici" + +msgid "submission.round" +msgstr "Round {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "E' stata specificata una proposta pubblicata non valida." + +msgid "catalog.coverImageTitle" +msgstr "Immagine di copertina" + +msgid "grid.catalogEntry.chapters" +msgstr "Capitoli" + +msgid "search.results.orderBy.article" +msgstr "Titolo dell'articolo" + +msgid "search.results.orderBy.author" +msgstr "Autore" + +msgid "search.results.orderBy.date" +msgstr "Data di pubblicazione" + +msgid "search.results.orderBy.monograph" +msgstr "Titolo della monografia" + +msgid "search.results.orderBy.press" +msgstr "Nome della Casa Editrice" + +msgid "search.results.orderBy.popularityAll" +msgstr "Popolarità (di sempre)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Popolarità (ultimo mese)" + +msgid "search.results.orderBy.relevance" +msgstr "Rilevanza" + +msgid "search.results.orderDir.asc" +msgstr "In ascesa" + +msgid "search.results.orderDir.desc" +msgstr "In discesa" + +#~ msgid "monograph.coverImage.uploadInstructions" +#~ msgstr "" +#~ "Accertarsi che l'altezza dell'immagine non sia più del 150% della sua " +#~ "larghezza, altrimenti il carosello non riuscirà a mostrare la copertina " +#~ "nella sua interezza." + +#~ msgid "monograph.currentCoverImage" +#~ msgstr "Immagine corrente" + +#~ msgid "monograph.publicationFormat.formatMetadata" +#~ msgstr "Formato dei metadati" + +#~ msgid "grid.catalogEntry.availablePublicationFormat.title" +#~ msgstr "Approvazione del formato" + +#~ msgid "grid.catalogEntry.availablePublicationFormat.message" +#~ msgstr "" +#~ "

      Questo formato sarà disponibile per i lettori, attraverso i " +#~ "file scaricabili che appariranno accanto al record del libro e/o " +#~ "attraverso ulteriori azioni intraprese dal sito per distribuire il libro." +#~ "

      " + +#~ msgid "grid.catalogEntry.availablePublicationFormat.removeMessage" +#~ msgstr "" +#~ "

      Questo formato non sarà più disponibile per i lettori, " +#~ "attraverso i file scaricabili che appariranno accanto al record del libro " +#~ "e/o attraverso ulteriori azioni intraprese dal sito per distribuire il " +#~ "libro.

      " + +#~ msgid "" +#~ "grid.catalogEntry.availablePublicationFormat.catalogNotApprovedWarning" +#~ msgstr "Record di catalogo non approvato." + +#~ msgid "grid.catalogEntry.availablePublicationFormat.notApprovedWarning" +#~ msgstr "Questo formato non è disponibile nel record." + +#~ msgid "grid.catalogEntry.availablePublicationFormat.proofNotApproved" +#~ msgstr "Bozza non approvata." + +#~ msgid "grid.catalogEntry.representativeFax" +#~ msgstr "Fax" + +#~ msgid "grid.content.spotlights.category.sidebar" +#~ msgstr "Sidebar" + +#~ msgid "grid.action.editApprovedProof" +#~ msgstr "Modifica questa prova già approvata" + +#~ msgid "series.featured" +#~ msgstr "In primo piano" + +#~ msgid "grid.category.categories" +#~ msgstr "Categorie" + +#~ msgid "grid.category.add" +#~ msgstr "Aggiungi una categoria" + +#~ msgid "grid.category.edit" +#~ msgstr "Modifica la categoria" + +#~ msgid "grid.category.name" +#~ msgstr "Nome" + +#~ msgid "grid.category.path" +#~ msgstr "Percorso" + +#~ msgid "grid.category.urlWillBe" +#~ msgstr "L'indirizzo URL della categoria sarà {$sampleUrl}" + +#~ msgid "grid.series.urlWillBe" +#~ msgstr "" +#~ "L'indirizzo URL della collana sarà {$sampleUrl}. Il 'Percorso' consiste " +#~ "in una stringa di caratteri usati per identificare in modo univoco una " +#~ "collana." + +#~ msgid "grid.category.pathAlphaNumeric" +#~ msgstr "Il percorso per la categoria può contenere solo lettere e numeri." + +#~ msgid "grid.category.pathExists" +#~ msgstr "" +#~ "Il percorso per la categoria già esiste. Per favore, inserisci un " +#~ "percorso unico." + +#~ msgid "grid.category.description" +#~ msgstr "Descrizione" + +#~ msgid "grid.category.parentCategory" +#~ msgstr "Categoria principale" + +#~ msgid "grid.category.removeText" +#~ msgstr "Sei sicuro di voler rimuovere questa categoria?" + +#~ msgid "grid.category.nameRequired" +#~ msgstr "Per favore, inserisci il nome di una categoria." + +#~ msgid "grid.category.categoryDetails" +#~ msgstr "Dettagli della categoria" + +#~ msgid "catalog.manage.managementIntroduction" +#~ msgstr "" +#~ "Benvenuto nella pagina di gestione del Catalogo. A partire da questa " +#~ "pagina è possibile pubblicare le novità del catalogo \"In primo piano\", " +#~ "rivedere econfigurare la lista delle \"novità\", rivedere e disporre i " +#~ "libri per Categorie e Serie." + +#~ msgid "catalog.manage.entryDescription" +#~ msgstr "" +#~ "Per inserire un libro nel catalogo, seleziona la scheda Monografia e " +#~ "compila le informazioni necessarie. Le informazioni per ciascuno dei " +#~ "formati del libro possono essere incluse nella voce di catalogo " +#~ "selezionando la scheda per il formato. Le specifiche che riguardano i " +#~ "metadati sono basate su ONIX for Books, che è uno standard internazionale " +#~ "utilizzato dall'industria editoriale per la comunicazione delle " +#~ "informazioni sui prodotti." + +#~ msgid "catalog.manage.spotlightDescription" +#~ msgstr "" +#~ "Sulla homepage possono essere visualizzati tre spotlights (per es. Libri " +#~ "sotto i riflettori), che riportano titolo, copertina e testo." + +#~ msgid "catalog.browseTitles" +#~ msgstr "Consulta {$numTitles} Titoli" + +#~ msgid "catalog.allBooks" +#~ msgstr "Tutti i libri" + +#~ msgid "catalog.relatedCategories" +#~ msgstr "Categorie collegate" + +#~ msgid "catalog.noBioInfo" +#~ msgstr "Non è disponibile al momento nessuna biografia." + +#~ msgid "common.plusMore" +#~ msgstr "+ Più" + +#~ msgid "common.catalogInformation" +#~ msgstr "" +#~ "Non è necessario completare le informazioni nel catalogo quando il " +#~ "documento viene caricato per la prima volta, eccetto il titolo e di un " +#~ "abstract." + +#~ msgid "common.prefixAndTitle.tip" +#~ msgstr "" +#~ "Se il libro comincia con un articolo, \"Un/Uno/Una\" o \"Il/Lo/La/I/Gli/Le" +#~ "\" (o per qualsiasi parola non debba essere presa in considerazione per " +#~ "l'ordine alfabetico) inserisce la parola in Prefisso." + +#~ msgid "common.openMonographPress" +#~ msgstr "Open Monograph Press" + +#~ msgid "press.presses" +#~ msgstr "Presses" + +#~ msgid "press.path" +#~ msgstr "Percorso" + +#~ msgid "user.register.completeForm" +#~ msgstr "Riempi questo formulario per registrarti presso questa Press." + +#~ msgid "user.register.alreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Clicca qui se sei già registrato in una " +#~ "Press su questo sito." + +#~ msgid "user.register.notAlreadyRegisteredOtherContext" +#~ msgstr "" +#~ "Clicca qui se non sei già " +#~ "registrato in una Press su questo sito." + +#~ msgid "user.register.loginToRegister" +#~ msgstr "" +#~ "Inserisci la tua username e password corrente per registrarti con questa " +#~ "Press." + +#~ msgid "about.aboutThePress" +#~ msgstr "Caratteri di SHARE Press" + +#~ msgid "about.contributors" +#~ msgstr "Fonti di finanziamento" + +#~ msgid "about.onlineSubmissions.registration" +#~ msgstr "Vai alla Registrazione" + +#~ msgid "about.onlineSubmissions.haveAccount" +#~ msgstr "Hai già una Username/Password per {$pressTitle}?" + +#~ msgid "about.onlineSubmissions.needAccount" +#~ msgstr "Hai bisogno di una Username/Password?" + +#~ msgid "installer.ompInstallation" +#~ msgstr "Installazione di OMP" + +#~ msgid "notification.mailListDescription" +#~ msgstr "" +#~ "Inserisci il tuo indirizzo email per ricevere le notifiche appena nuovi " +#~ "contenuti vengono aggiunti alla Press." + +#~ msgid "notification.notificationsPublicDescription" +#~ msgstr "" +#~ "Questa pagina include gli aggiornamenti associati a questa Press, come le " +#~ "nuove monografie o le nuove collane. Puoi ricevere le notifiche degli " +#~ "aggiornamenti sottoscrivendo i feed RSS (cliccando sull'immagine a " +#~ "destra), oppure attraverso la email." + +#~ msgid "notification.removedFooterLink" +#~ msgstr "Link a piè di pagina rimosso." + +#~ msgid "notification.type.roundStatusTitle" +#~ msgstr "Status del Round {$round}" + +#~ msgid "notification.type.metadataModified" +#~ msgstr "I metadati di \"{$title}\" sono stati modificati." + +#~ msgid "notification.type.reviewerComment" +#~ msgstr "Un revisore ha lasciato un commento su \"{$title}\"." + +#~ msgid "plugins.categories.viewableFiles" +#~ msgstr "Plugin per i file pubblicati" + +#~ msgid "submissionGroup.assignedSubEditors" +#~ msgstr "Editor assegnati" + +msgid "section.section" +msgstr "Collana" diff --git a/locale/it/submission.po b/locale/it/submission.po new file mode 100644 index 00000000000..aa69597bbc4 --- /dev/null +++ b/locale/it/submission.po @@ -0,0 +1,685 @@ +# Alfredo Cosco , 2021. +# Stefano Bolelli Gallevi , 2022. +# Fulvio Delle Donne , 2022. +# Michele Tutone , 2023. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-01-22T21:00:19+00:00\n" +"PO-Revision-Date: 2023-04-05 08:48+0000\n" +"Last-Translator: Michele Tutone \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Seleziona un componente" + +msgid "submission.title" +msgstr "Titolo del libro" + +msgid "submission.select" +msgstr "Seleziona la proposta" + +msgid "submission.synopsis" +msgstr "Sinossi" + +msgid "submission.workflowType" +msgstr "Tipo di Libro" + +msgid "submission.workflowType.description" +msgstr "" +"Un libro è un volume scritto interamente da uno o più autori. Un volume A " +"cura di è costituito da capitoli scritti ciascuno da un diverso autore (i " +"dettagli di ogni capitolo verranno inseriti più avanti)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Curatela" + +msgid "submission.workflowType.editedVolume" +msgstr "" +"Volume A cura di: gli Autori vengono associati solo ai contenuti dei propri " +"Capitoli." + +msgid "submission.workflowType.authoredWork" +msgstr "" +"Monografia: gli Autori vengono associati a tutti i contenuti del libro." + +msgid "submission.workflowType.change" +msgstr "Cambiare" + +msgid "submission.editorName" +msgstr "{$editorName} (a cura di)" + +msgid "submission.monograph" +msgstr "Monografia" + +msgid "submission.published" +msgstr "Pronto per andare in produzione" + +msgid "submission.fairCopy" +msgstr "Bella copia" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Permessi" + +msgid "submission.chapter" +msgstr "Capitolo" + +msgid "submission.chapters" +msgstr "Capitoli" + +msgid "submission.chapter.addChapter" +msgstr "Aggiungi un nuovo capitolo" + +msgid "submission.chapter.editChapter" +msgstr "Edita i Capitoli" + +msgid "submission.chapter.pages" +msgstr "Pagine" + +msgid "submission.copyedit" +msgstr "Fai il copyediting" + +msgid "submission.publicationFormats" +msgstr "Formati di pubblicazione" + +msgid "submission.proofs" +msgstr "Prove" + +msgid "submission.download" +msgstr "Download" + +msgid "submission.sharing" +msgstr "Pubblicizza" + +msgid "manuscript.submission" +msgstr "Proposta di documento" + +msgid "submission.round" +msgstr "Round {$round}" + +msgid "submissions.queuedReview" +msgstr "In corso di valutazione" + +msgid "manuscript.submissions" +msgstr "Proposte di documenti" + +msgid "submission.metadata" +msgstr "Metadati" + +msgid "submission.supportingAgencies" +msgstr "Agenzie di supporto" + +msgid "grid.action.addChapter" +msgstr "Crea un nuovo capitolo" + +msgid "grid.action.editChapter" +msgstr "Modifica questo capitolo" + +msgid "grid.action.deleteChapter" +msgstr "Cancella questo capitolo" + +msgid "submission.submit" +msgstr "Dai inizio ad nuova immissione di Libri" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Dai inizio ad nuova immissione in" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Nuova proposta" + +msgid "submission.submit.upload" +msgstr "Carica" + +msgid "author.volumeEditor" +msgstr "Curatore" + +msgid "author.isVolumeEditor" +msgstr "Identifica questo contributore come il curatore del volume." + +msgid "submission.submit.seriesPosition" +msgstr "Posizione occupata nella collana (ad es. Libro 2, o Volume 2)" + +msgid "submission.submit.seriesPosition.description" +msgstr "Esempi: Libro 2, Volume 2" + +msgid "submission.submit.privacyStatement" +msgstr "Informativa sulla privacy" + +msgid "submission.submit.contributorRole" +msgstr "Ruolo del collaboratore" + +msgid "submission.submit.submissionFile" +msgstr "File da sottomettere" + +msgid "submission.submit.prepare" +msgstr "Prepara" + +msgid "submission.submit.catalog" +msgstr "Catalogo" + +msgid "submission.submit.metadata" +msgstr "Metadati" + +msgid "submission.submit.finishingUp" +msgstr "Concludi" + +msgid "submission.submit.confirmation" +msgstr "Conferma" + +msgid "submission.submit.nextSteps" +msgstr "Prossimi passi" + +msgid "submission.submit.coverNote" +msgstr "Nota di copertina dell'Editor" + +msgid "submission.submit.generalInformation" +msgstr "Informazioni generali" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Il board editoriale è stato informato del tuo caricamento e ti è stata " +"inviata una email di conferma. Appena l'editor avrà visionato il tuo lavoro, " +"si metterà in contatto con te." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Per favore, leggi e spunta le voci della checklist per il caricamento. Ci " +"sono {$itemsRemaining} voci ancora non controllate." + +msgid "submission.submit.placement" +msgstr "Posizione del caricamento" + +msgid "submission.submit.userGroup" +msgstr "Carico nel mio ruolo di..." + +msgid "submission.submit.noContext" +msgstr "L'ambiente digitale di questa proposta non si trova." + +msgid "grid.chapters.title" +msgstr "Capitoli" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Cancella il caricamento del Copyeditor" + +msgid "submission.complete" +msgstr "Approvato" + +msgid "submission.incomplete" +msgstr "In attesa di approvazione" + +msgid "submission.editCatalogEntry" +msgstr "Accesso" + +msgid "submission.catalogEntry.new" +msgstr "Nuovo accesso al Catalogo" + +msgid "submission.catalogEntry.add" +msgstr "Aggiungere la selezione al catalgogo" + +msgid "submission.catalogEntry.select" +msgstr "Seleziona i libri da aggiungere al catalogo" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Devi selezionare almeno un libro da aggiungere al catalogo." + +msgid "submission.catalogEntry.confirm" +msgstr "Aggiungi questo libro al catalogo pubblico" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Per favore, conferma che la proposta è pronta per andare in catalogo." + +msgid "submission.catalogEntry.isAvailable" +msgstr "" +"Questa monografia è pronta per essere aggiunta pubblicamente sul catalogo." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Vedi la proposta" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Date di pubblicazione" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Tutti i capitoli avranno la data di pubblicazione del libro." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Ogni capitolo può avere la propria data di pubblicazione." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografia" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Catalogo" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Formato di Pubblicazione" + +msgid "submission.event.metadataPublished" +msgstr "I metadati della Monografia sono stati approvati per la pubblicazione." + +msgid "submission.event.metadataUnpublished" +msgstr "I metadati della monografia non sono più pubblicati." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Il formato \"{$publicationFormatName}\" è ora disponibile." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Il formato \"{$publicationFormatName}\" non è più disponibile." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Il formato \"{$publicationFormatName}\" è stato approvato per la " +"pubblicazione." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "Il formato \"{$publicationFormatName}\" non è più pubblicato." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "I metadati del catalogo sono stati aggiornati." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "I metadati \"{$formatName}\" sono stati aggiornati." + +msgid "submission.event.publicationFormatCreated" +msgstr "Il formato \"{$formatName}\" è stato creato." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Il formato \"{$formatName}\" è stato rimosso." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Inviare in revisione esterna" + +msgid "workflow.review.externalReview" +msgstr "Revisione esterna" + +msgid "submission.upload.fileContents" +msgstr "Componente della proposta" + +msgid "submission.dependentFiles" +msgstr "File dipendenti" + +msgid "submission.metadataDescription" +msgstr "" +"Queste specifiche sono basate sul set di dati Dublin Core, uno standard " +"internazionale di descrizione di contenuti editoriali." + +msgid "section.any" +msgstr "Qualsiasi collana" + +msgid "submission.list.monographs" +msgstr "Libri" + +msgid "submission.list.countMonographs" +msgstr "{$count} libri" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} di {$total} libri" + +msgid "submission.list.orderFeatures" +msgstr "Ordinare gli elementi" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Trascinare oppure usare i pulsanti sopra e sotto per cambiare l'ordine degli " +"elementi in home page." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Trascinare oppure usare i pulsanti sopra e sotto per cambiare l'ordine degli " +"elementi in {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Salva l'ordine" + +msgid "submission.list.viewEntry" +msgstr "Vedi scheda" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Titoli" + +msgid "publication.catalogEntry" +msgstr "Scheda di catalogo" + +msgid "publication.catalogEntry.success" +msgstr "I dettagli della scheda di catalogo sono stati aggiornati." + +msgid "publication.invalidSeries" +msgstr "La collana di questa pubblicazione non si trova." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Inattiva)" + +msgid "publication.required.issue" +msgstr "" +"la pubblicazione deve essere assegnata a un fascicolo prima di poter essere " +"pubblicata." + +msgid "publication.publishedIn" +msgstr "Pubblicata in {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Tutti i requisiti per la pubblicazione sono soddisfatti. Sei sicuro di voler " +"rendere questa scheda di catalogo pubblica?" + +msgid "publication.scheduledIn" +msgstr "Pubblicazione programmata in {$issueName}." + +msgid "submission.publication" +msgstr "Pubblicazione" + +msgid "publication.status.published" +msgstr "Pubblicato" + +msgid "submission.status.scheduled" +msgstr "Pianificato" + +msgid "publication.status.unscheduled" +msgstr "Rimosso dalla pianficazione" + +msgid "submission.publications" +msgstr "Pubblicazioni" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"L'anno di copyright sarà configurato automaticamente quando questo articolo " +"sarà assegnato ad un'uscita." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"L'anno di copyright sarà ricavato automaticamente dalla data di " +"pubblicazione." + +msgid "publication.datePublished" +msgstr "Data di pubblicazione" + +msgid "publication.editDisabled" +msgstr "Questa versione è stata pubblicata e non può' essere modificata." + +msgid "publication.event.published" +msgstr "Questo articolo è stato pubblicato." + +msgid "publication.event.scheduled" +msgstr "Questo articolo è stato assegnato ad una uscita." + +msgid "publication.event.unpublished" +msgstr "Questo articolo è stato rimosso da un'uscita." + +msgid "publication.event.versionPublished" +msgstr "È stata pubblicata una nuova versione." + +msgid "publication.event.versionScheduled" +msgstr "Una nuova versione è stata pianificata per la pubblicazione." + +msgid "publication.event.versionUnpublished" +msgstr "Una versione non è più pubblicata." + +msgid "publication.invalidSubmission" +msgstr "L'articolo per questa uscita non è stato trovato." + +msgid "publication.publish" +msgstr "Pubblicare" + +msgid "publication.publish.requirements" +msgstr "Prima della pubblicazione confermare i seguenti requisiti." + +msgid "publication.required.declined" +msgstr "Un'articolo rigettato non puo' essere pubblicato." + +msgid "publication.required.reviewStage" +msgstr "" +"Per essere pubblicato un'articolo deve essere nella fase di copy-editing o " +"produzione." + +msgid "submission.license.description" +msgstr "" +"La licenza sarà impostata automaticamente come {$licenseName} dopo la pubblicazione." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Come copyright sarà indicato automaticamente {$copyright} dopo la " +"pubblicazione." + +msgid "submission.copyrightOther.description" +msgstr "Assegna un copyright per proposte pubblicate nella parte seguente." + +msgid "publication.unpublish" +msgstr "Rimuovi dalla pubblicazione" + +msgid "publication.unpublish.confirm" +msgstr "Confermi di non voler pubblicare questo articolo?" + +msgid "publication.unschedule.confirm" +msgstr "Confermi di non voler pianificare la pubblicazione di questo articolo?" + +msgid "publication.version.details" +msgstr "Dettagli di pubblicazione per la versione {$version}" + +msgid "submission.queries.production" +msgstr "Discussioni durante la produzione" + +msgid "publication.chapter.landingPage" +msgstr "Pagina del capitolo" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Mostra questo capitolo nella sua pagina e imposta un collegamento a quella " +"pagina dal sommario del volume." + +msgid "publication.publish.success" +msgstr "Stato della pubblicazione cambiato con successo." + +msgid "chapter.volume" +msgstr "Volume" + +msgid "submission.withoutChapter" +msgstr "{$name} — Senza questo capitolo" + +msgid "submission.chapterCreated" +msgstr " — Capitolo creato" + +msgid "chapter.pages" +msgstr "Pagine" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Invia alla revisione interna" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "Questa proposta è pronta per essere inviata alla revisione interna." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} ha inviato questa proposta alla revisione interna." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Inviata alla revisione interna" + +#, fuzzy +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "La proposta, {$title}, è stata inviata alla fase di revisione interna." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Invia un'email agli autori per informarli che l'invio sarà sottoposto a " +"revisione interna. Se possibile, fornisci agli autori qualche indicazione su " +"quanto tempo potrebbe richiedere il processo di revisione interna e su " +"quando dovrebbero aspettarsi di avere di nuovo notizie dalla redazione." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "Selezionare i file da inviare alla fase di revisione interna." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" +"{$editorName} ha inviato questa proposta alla fase di revisione esterna." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Inviato alla fase di revisione esterna" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "La proposta, {$title}, è stata inviata alla fase di revisione esterna." + +msgid "editor.submission.decision.backToReview" +msgstr "Torna alla revisione" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Revoca la decisione di accettare la proposta e rimandala alla fase di " +"revisione." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} ha annullato la decisione di accettare questa proposta e l'ha " +"rimandata alla fase di revisione." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Rimandato alla revisione" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "La proposta, {$title}, è stata rimandata alla fase di revisione." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Invia un'email agli autori per informarli che il loro lavoro è stato " +"rimandato alla fase di revisione. Spiega il motivo di questa decisione e " +"informa l'autore di quali ulteriori revisioni saranno intraprese." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Invia un'email agli autori per informarli che la proposta sarà sottoposta a " +"peer review. Se possibile, fornisci agli autori qualche indicazione sulla " +"durata del processo di peer review e su quando si aspettano di avere di " +"nuovo notizie dalla redazione." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Seleziona i file da inviare alla fase di revisione." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Suggerisci l'invio alla revisione esterna" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "Suggerisci l'invio di questo documento alla fase di revisione esterna." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} ha suggerito di inviare questa proposta alla fase di revisione " +"esterna." + +msgid "doi.submission.incorrectContext" +msgstr "" +"Impossibile creare il DOI per la proposta: {$pubObjectTitle}. Non è stata " +"trovata nell'attuale ambiente digitale." + +msgid "publication.chapter.licenseUrl" +msgstr "URL della licenza" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "URL della licenza di default per il capitolo" + +msgid "submission.copyright.description" +msgstr "" +"Per favore, leggi e accetta i termini del copyright per le proposte qui " +"ricevute." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Non sei autorizzato a effettuare proposte in questo ambiente digitale perché " +"gli autori devono essere registrati dal board editoriale. Se credi ci sia un " +"errore, contatta {$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} non accetta proposte per la collana: {$section}. Se hai " +"bisogno di aiuto per recuperare la tua precedente proposta, contatta {$name}." + +msgid "submission.sectionNotFound" +msgstr "La collana di questa proposta non è stata trovata." + +msgid "submission.sectionRestrictedToEditors" +msgstr "" +"Solo il board editoriale è autorizzato ad effettuare proposte a questa " +"collana." + +msgid "submission.wizard.submitting.monograph" +msgstr "Proponi una monografia." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" +"Proponi una monografia in {$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Proponi un volume collettaneo." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Proponi un volume collettaneo in " +"{$language}." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Per favore, fornisci l'elenco dei capitoli di questa proposta. Se stai " +"proponendo un volume collettaneo, assicurati che ogni capitolo sia " +"accompagnato dal nome del suo autore." + +#~ msgid "submission.upload.selectBookElement" +#~ msgstr "Seleziona un elemento del libro" + +#~ msgid "submission.title.tip" +#~ msgstr "" +#~ "Puoi scegliere di caricare questi tipi: 'immagine', 'testo' oppure un " +#~ "altro tipo di elemento multimediale scelto tra 'software' o " +#~ "'interattivo'. Per favore, scegli solo quello che meglio identifica il " +#~ "prodotto da te caricato. Puoi trovare alcuni esempi qui http://dublincore.org/documents/2001/04/12/usageguide/" +#~ "generic.shtml#type" + +#~ msgid "submission.submit.upload.description" +#~ msgstr "" +#~ "Carica i file associati a questa immissione, compresi: manoscritto, " +#~ "prospetto, lettera di presentazione, ecc. Per i volumi A cura di, come " +#~ "pure per le Monografie, carica il manoscritto in un unico file, se " +#~ "possibile." + +#~ msgid "submission.submit.copyrightNoticeAgree" +#~ msgstr "Accetto i termini stabiliti dalla legge sul copyright." + +#~ msgid "submission.submit.placement.seriesDescription" +#~ msgstr "Nel caso in cui il libro debbe far parte di una collana..." + +#~ msgid "submission.submit.placement.seriesPositionDescription" +#~ msgstr "" +#~ "I titoli presenti in una collana vengono di norma riportati in un ordine " +#~ "inverso rispetto a quello di pubblicazione; ci? serve a dare il senso " +#~ "dello sviluppo della collana e per mantenere in testa i titoli pi? " +#~ "recenti." + +#~ msgid "submission.submit.placement.categories" +#~ msgstr "Categorie" + +#~ msgid "submission.submit.placement.categoriesDescription" +#~ msgstr "" +#~ "Seleziona una delle categorie della Press che vuoi attribuire a questo " +#~ "documento." + +#~ msgid "submission.submit.confirmExpedite" +#~ msgstr "Conferma i metadati per velocizzare il caricamento" + +#~ msgid "submission.event.participantAdded" +#~ msgstr "\"{$name}\" ({$username}) ? stato aggiunto a {$userGroupName}." + +#~ msgid "submission.event.participantRemoved" +#~ msgstr "\"{$name}\" ({$username}) ? stato cancellato da {$userGroupName}." + +#~ msgid "metadata.property.displayName.date" +#~ msgstr "Data di pubblicazione" diff --git a/locale/it_IT/admin.po b/locale/it_IT/admin.po deleted file mode 100644 index fc854e8b93d..00000000000 --- a/locale/it_IT/admin.po +++ /dev/null @@ -1,92 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-01-22T20:59:36+00:00\n" -"PO-Revision-Date: 2020-01-22T20:59:36+00:00\n" -"Language: \n" - -msgid "admin.hostedPresses" -msgstr "Case editrici ospitate sul server" - -msgid "admin.settings.pressRedirect" -msgstr "Reindirizzamento della Casa Editrice" - -msgid "admin.settings.pressRedirectInstructions" -msgstr "Le richieste al sito principale verranno reindirizzate presso questa casa editrice. Questo può essere utile se, ad esempio, il sito ospita una sola casa editrice." - -msgid "admin.settings.noPressRedirect" -msgstr "Non reindirizzare" - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "Questa sarà la lingua predefinita per il sito e per qualsiasi Casa Editrice ospitata." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "Selezionare tutti i parametri che saranno supportati sul sito. Tutte le Case Editrici ospitate sul sito potranno utilizzare i parametri selezionati. Questi ultimi faranno parte del menu per selezionare la lingua che appare in tutte le pagine del sito (che possono essere sovrascritte sulle pagine di una specifica Press). Se non si selezionano più parametri, il pulsante per il menu della lingua non apparirà e le Case Editrici non avranno accesso alle impostazioni di lingua avanzate." - -msgid "admin.locale.maybeIncomplete" -msgstr "* I parametri contrassegnati possono essere incompleti." - -msgid "admin.languages.confirmUninstall" -msgstr "Sei certo di voler disinstallare questo parametro? Questo può influenzare eventuali Case Editrici che utilizzano al momento questo parametro." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "Selezionare eventuali ulteriori localizzazioni per installare il supporto per questo sistema. Le localizzazioni devono essere installate prima di poter essere utilizzate da case editrici ospitate. Vedere la documentazione OMP per informazioni sull'aggiunta di supporto per nuove lingue." - -msgid "admin.languages.confirmDisable" -msgstr "Sei certo di voler disinstallare questo parametro? Questo può influenzare eventuali Case Editrici che utilizzano al momento questo parametro." - -msgid "admin.systemVersion" -msgstr "Versione OMP" - -msgid "admin.systemConfiguration" -msgstr "Configurazione OMP" - -msgid "admin.presses.pressSettings" -msgstr "Configurazione della Casa Editrice" - -msgid "admin.presses.noneCreated" -msgstr "Non è stato creato nessuna Casa Editrice." - -msgid "admin.contexts.confirmDelete" -msgstr "Sei sicuro di voler cancellare in modo permanente questa Casa Editrice e tutti i suoi contenuti?" - -msgid "admin.contexts.create" -msgstr "Creare una Casa Editrice" - -msgid "admin.presses.createInstructions" -msgstr "Verrai automaticamente iscritto come Manager di questa Casa Editrice. Dopo aver creato una nuova Casa Editrice, verrai reindirizzato alla sua procedura guidata delle impostazioni che serve a completare la configurazione iniziale." - -msgid "admin.presses.urlWillBe" -msgstr "L'indirizzo URL della press URL sarà {$sampleUrl}" - -msgid "admin.contexts.form.titleRequired" -msgstr "È obbligatorio scegliere un titolo." - -msgid "admin.contexts.form.pathRequired" -msgstr "È obbligatorio scegliere un path (percorso)." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "Il path può contenere solo caratteri alfanumerici, underscore e trattini, e deve iniziare e finire con un carattere alfanumerico." - -msgid "admin.contexts.form.pathExists" -msgstr "Il path selezionato è già stato usato da un'altra Casa Editrice." - -msgid "admin.presses.enablePressInstructions" -msgstr "Abilitare questa Casa Editrice ad apparire pubblicamente sul sito" - -msgid "admin.presses.pressDescription" -msgstr "Descrizione della Casa Editrice" - -msgid "admin.presses.addPress" -msgstr "Aggiungi una Casa Editrice" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

      NOTE!\r\n" -"

      Il sistema non può sovrascrivere in automatico il file di configurazione. Per applicare le modifiche alla configurazione è necessario aprire config.inc.php con editor testuale e sostituire il contenuto con il contenuto del campo di testo sottostante.

      " diff --git a/locale/it_IT/default.po b/locale/it_IT/default.po deleted file mode 100644 index 6fa13e5118f..00000000000 --- a/locale/it_IT/default.po +++ /dev/null @@ -1,146 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-01-22T20:59:47+00:00\n" -"PO-Revision-Date: 2020-01-22T20:59:47+00:00\n" -"Language: \n" - -msgid "default.genres.appendix" -msgstr "Appendice" - -msgid "default.genres.bibliography" -msgstr "Bibliografia" - -msgid "default.genres.manuscript" -msgstr "Libro manoscritto" - -msgid "default.genres.chapter" -msgstr "Capitolo manoscritto" - -msgid "default.genres.glossary" -msgstr "Glossario" - -msgid "default.genres.index" -msgstr "Indice" - -msgid "default.genres.preface" -msgstr "Prefazione" - -msgid "default.genres.prospectus" -msgstr "Prospetto" - -msgid "default.genres.table" -msgstr "Tavola" - -msgid "default.genres.figure" -msgstr "Figura" - -msgid "default.genres.photo" -msgstr "Foto" - -msgid "default.genres.illustration" -msgstr "Illustrazione" - -msgid "default.genres.other" -msgstr "Altro" - -msgid "default.groups.name.author" -msgstr "Autore" - -msgid "default.groups.plural.author" -msgstr "Autori" - -msgid "default.groups.name.manager" -msgstr "Press manager" - -msgid "default.groups.plural.manager" -msgstr "Press managers" - -msgid "default.groups.abbrev.manager" -msgstr "PM" - -msgid "default.groups.name.editor" -msgstr "Press editor" - -msgid "default.groups.plural.editor" -msgstr "Press editors" - -msgid "default.groups.abbrev.editor" -msgstr "PE" - -msgid "default.groups.name.seriesEditor" -msgstr "Series editor" - -msgid "default.groups.plural.seriesEditor" -msgstr "Series editors" - -msgid "default.groups.abbrev.seriesEditor" -msgstr "AcqE" - -msgid "default.groups.name.chapterAuthor" -msgstr "Autore di un capitolo" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Autori di un capitolo" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "CA" - -msgid "default.groups.name.volumeEditor" -msgstr "Curatore del Libro" - -msgid "default.groups.plural.volumeEditor" -msgstr "Curatori del Libro" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "VE" - -msgid "default.pressSettings.checklist.notPreviouslyPublished" -msgstr "Il documento sottomesso non è stato precedentemente pubblicato, né è stato sottoposto ad altro editore (oppure vedi il chiarimento dato in Commenti dall'Editore)." - -msgid "default.pressSettings.checklist.fileFormat" -msgstr "Il file del documento sottomesso è nei formati Microsoft Word, RTF, OpenDocument o WordPerfect." - -msgid "default.pressSettings.checklist.addressesLinked" -msgstr "Qualora disponibili, sono state fornite le URL per la consultazione." - -msgid "default.pressSettings.checklist.submissionAppearance" -msgstr "Il testo è pubblicato a interlinea singola; utilizza un font di 12 punti; impiega il carattere corsivo anziché sottolineare (a parte gli indirizzi URL); tutte le illustrazioni, le figure e le tabelle sono posizionate all'interno del testo nei punti appropriati e non messi alla fine del testo." - -msgid "default.pressSettings.checklist.bibliographicRequirements" -msgstr "Il testo è conforme ai requisiti stilistici e bibliografici dichiarati nelle Linee guida per l'Autore, che si trovano nella rubrica A proposito di questa edizione." - -msgid "default.pressSettings.privacyStatement" -msgstr "I nomi e gli indirizzi email inseriti in questo sito editoriale verranno utilizzati esclusivamente per gli scopi dichiarati e non saranno utilizzati per altri scopi o trasmessi a terzi.." - -msgid "default.pressSettings.openAccessPolicy" -msgstr "Tutti i contenuti presenti su questo sito sono ad accesso aperto, in base al principio che la ricerca deve essere liberamente disponibile in modo da favorire lo scambio di conoscenze su scala mondiale." - -msgid "default.pressSettings.emailHeader" -msgstr "" -"Questo messaggio è stato inviato a nome di {$pressName}.\r\n" -"________________________________________________________________________\r\n" -"" - -msgid "default.pressSettings.emailSignature" -msgstr "" -"\r\n" -"________________________________________________________________________\r\n" -"{$pressName}\r\n" -"{$indexUrl}/{$pressPath}\r\n" -"" - -msgid "default.pressSettings.forReaders" -msgstr "Invitiamo i lettori a iscriversi al servizio di notifiche di questo sito. Per far ciò occorre utilizzare il link Registrati che si trova nella parte superiore della homepage. La registrazione consentirà a chi lo desidera di ricevere via email l'Indice di ogni nuova monografia pubblicata sul sito. Nello stesso tempo, questo elenco consentirà al nostro sito di conoscere il numero dei propri lettori. Leggi la Dichiarazione sulla privacy che assicura i lettori sul fatto che il loro nome e l'indirizzo e-mail non saranno utilizzati per altri scopi." - -msgid "default.pressSettings.forAuthors" -msgstr "Sei un docente del nostro Ateneo e vuoi inviare un tuo lavoro a fedOAPress? Si raccomanda di rileggere la pagina Informazioni sul Sito per vedere le politiche del nostro Sito e di leggere la pagina Linee Guida per gli Autori. Gli autori devono registrarsi sul sito prima di inviare i propri lavori, o se già registrati possono semplicemente accedere e iniziare il processo di immissione in 5 fasi.." - -msgid "default.pressSettings.forLibrarians" -msgstr "Incoraggiamo i bibliotecari di ricerca ad inserire questa Press nella lista delle risorse elettroniche possedute dalla biblioteca. Inoltre, questo sistema di pubblicazione open source, oltre che conveniente, può essere utilizzato da docenti e ricercatori anche per le pubblicazioni di cui hanno la curatela (vedi Open Monograph Press)." diff --git a/locale/it_IT/editor.po b/locale/it_IT/editor.po deleted file mode 100644 index 3055f169320..00000000000 --- a/locale/it_IT/editor.po +++ /dev/null @@ -1,186 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-01-22T20:59:56+00:00\n" -"PO-Revision-Date: 2020-01-22T20:59:56+00:00\n" -"Language: \n" - -msgid "editor.pressSignoff" -msgstr "Sessione terminata" - -msgid "editor.submissionArchive" -msgstr "Archivio di caricamento" - -msgid "editor.monograph.cancelReview" -msgstr "Annulla la richiesta" - -msgid "editor.monograph.clearReview" -msgstr "Cancella il recensore" - -msgid "editor.monograph.enterRecommendation" -msgstr "Inserisci la raccomandazione" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Inserisci la raccomandazione del recensore" - -msgid "editor.monograph.recommendation" -msgstr "Raccomandazione" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "Seleziona un recensore qui in alto e poi clicca su \"Scegli un recensore\" per continuare." - -msgid "editor.submission.selectedReviewer" -msgstr "Recensore selezionato" - -msgid "editor.monograph.replaceReviewer" -msgstr "Sostituire il recensore" - -msgid "editor.monograph.editorToEnter" -msgstr "L'Editor deve inserire la sua raccomandazione o i suoi commenti per il recensore" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Carica la recensione" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Opzioni per la Peer Review " - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Files per la correzione delle bozze" - -msgid "editor.monograph.internalReview" -msgstr "Procedere alla valutazione interna" - -msgid "editor.monograph.internalReviewDescription" -msgstr "Si sta per avviare una valutazione interna per questa immissione. I file che fanno parte della immissione sono elencati di seguito e possono essere selezionati per la valutazione." - -msgid "editor.monograph.externalReview" -msgstr "Procedere alla valutazione esterna" - -msgid "editor.submissions.lastAssigned" -msgstr "Il più recente" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Selezionare il file per la bozza finale" - -msgid "editor.monograph.final.currentFiles" -msgstr "File corrente per la bozza finale" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "File correnti" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Messaggio all'utente" - -msgid "editor.monograph.legend.submissionActions" -msgstr "Azioni per il caricamento" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Azioni e opzioni per il caricamento complessivo." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Azioni per la sezione" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "Opzioni particolari per una certa sezione, come ad esempio caricamento di file o aggiunta di utenti." - -msgid "editor.monograph.legend.itemActions" -msgstr "Azioni per i documenti" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Azioni e opzioni particolari per un singolo file." - -msgid "editor.monograph.legend.catalogEntry" -msgstr "Visualizzare e gestire il caricamento del record, inclusi i metadati ed i formati di pubblicazione" - -msgid "editor.monograph.legend.bookInfo" -msgstr "Visualizzare e gestire i metadati, le note, gli avvisi e lo storico del caricamento" - -msgid "editor.monograph.legend.participants" -msgstr "Visualizzare e gestire tutti gli attori coinvolti nel caricamento: autori, editor, designer e altri" - -msgid "editor.monograph.legend.add" -msgstr "Caricare un file nella sezione" - -msgid "editor.monograph.legend.add_user" -msgstr "Aggiungere uh utente alla sezione" - -msgid "editor.monograph.legend.settings" -msgstr "Visualizzare e accedere ai parametri del documento, come le opzioni relative alle informazioni e alla cancellazione" - -msgid "editor.monograph.legend.more_info" -msgstr "Informazioni supplementari: note sui file, opzioni per le notifiche e storico" - -msgid "editor.monograph.legend.notes_none" -msgstr "Informazioni sul file: note, opzioni per le notifiche e storico (al momento non ci sono note)" - -msgid "editor.monograph.legend.notes" -msgstr "Informazioni sul file: note, opzioni per le notifiche e storico(note disponibili)" - -msgid "editor.monograph.legend.notes_new" -msgstr "Informazioni sul file: note, opzioni per le notifiche e storico (dopo l'ultima visita sono state aggiunte nuove note)" - -msgid "editor.monograph.legend.edit" -msgstr "Edita il documento" - -msgid "editor.monograph.legend.delete" -msgstr "Cancella il documento" - -msgid "editor.monograph.legend.in_progress" -msgstr "Azione in corso oppure non ancora completata" - -msgid "editor.monograph.legend.complete" -msgstr "Azione completata" - -msgid "editor.monograph.legend.uploaded" -msgstr "File caricato per il ruolo corrispondente per il titolo della colonna della griglia" - -msgid "editor.submission.introduction" -msgstr "Al momento del caricamento, l'editor, dopo aver consultato i file sottomessi dei fascicoli, sceglie l'azione appropriata (che comprende l'invio di una notifica all'autore) tra queste: Invia per una verifica interna (comporta la selezione dei file per una revisione interna); Invia per una verifica esterna (comporta la selezione dei file per una revisione esterna); Accetta il file sottomesso (comporta la selezione dei file per la fase editoriale); o Rifiuta il file sottomesso (archiviazione del file sottomesso)." - -msgid "editor.submission.editorial.finalDraftDescription" -msgstr "Per i \"volumi editi\", i cui capitoli sono cioè stati scritti da autori diversi, possono essere caricati tanti file quanti sono i capitoli in vista del copyediting. Questi file saranno in seguito esaminati dagli autori dei capitoli, dopo il caricamento dei file successivi al copyediting in Copyediting." - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Bella copia" - -msgid "editor.monograph.editorial.fairCopyDescription" -msgstr "Il copyeditor carica una copia corretta del file per la successiva revisione dell'editor, prima che si passi in Produzione." - -msgid "editor.submission.production.introduction" -msgstr "Al momento dell'entrata in Produzione, l'editor seleziona il tipo di formato (ad esempio, digitale, brossura, ecc) in Formati di pubblicazione, per i quali il layout editor preparerà i file da pubblicare sulla base dei file destinati alla pubblicazione. I file da pubblicare sono caricati per ogni tipo di formato in Pagine di prova, dove poi saranno sottosposte a revisione. Il libro è reso disponibile (cioè pubblicato) per ognuno dei formati in Formati di pubblicazione, dopo che le prove sono state verificate e approvate, e si indica che la voce di catalogo è stata inclusa nella voce di catalogo del libro." - -msgid "editor.submission.production.productionReadyFilesDescription" -msgstr "Il layout editor prepara questi file per ogni formato di pubblicazione e poi li carica nelle corrispondenti Pagina di prova per la correzione." - -msgid "editor.monograph.proofs" -msgstr "Prove" - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Approvazione e pubblicazione" - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "I libri possono essere pubblicati in diversi formati (copertina rigida, brossura e digitale), possono essere caricati nella sezione Formati Pubblicazione che segue. È possibile utilizzare la griglia formati di pubblicazione di sotto come una lista di controllo per ciò che deve ancora essere fatto per pubblicare un formato di pubblicazione." - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "Aggiungi i formati di pubblicazione (ad esempio, digitale, brossura) per i quali il layout-editor prepara le bozze per la correzione. Occorre indicare che le Bozze sono state approvate e si deve controllare la voce di catalogo per il formato in questione, per indicare che questa voce è stata aggiunta alla voce di catalogo del libro, prima che il formato possa essere reso disponibile (cioè pubblicato)." - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Scegliere le modalità per il caricamento" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Scegliere le modalità" - -msgid "editor.monograph.proof.addNote" -msgstr "Aggiungi una risposta" - -msgid "editor.internalReview.introduction" -msgstr "Durante la fase di valutazione interna, l'editor assegna revisori interni ai file sottomessi e prende in considerazione le loro recensioni, prima di scegliere l'azione appropriata (che determina l'invio di una notifica all'autore): Da rivedere (le revisioni saranno esaminate dal solo editor); Da ricaricare per la revisione (sarà avviato un nuovo giro di revisioni); Inviare ad un revisore esterno (comporta la scelta dei file da inviare al revisore esterno); Accettare il file sottomesso (occorre scegliere i file che saranno inviati per la fase editoriale); o infine Rifiuta il file sottomesso (archiviazione del file sottomesso)." - -msgid "editor.externalReview.introduction" -msgstr "Durante la fase di valutazione esterna, l'editor sceglie dei revisori esterni alla Press per i file sottomessi e prende in considerazione i loro commenti, prima di scegliere l'azione appropriata (che determina l'invio di una notifica all'autore): Da rivedere (le revisioni saranno esaminate dal solo editor); Da ricaricare per la revisione (sarà avviato un nuovo giro di revisioni); Accettare il file sottomesso (occorre scegliere i file che saranno inviati per la fase editoriale); o infine Rifiuta il file sottomesso (archiviazione del file sottomesso)." diff --git a/locale/it_IT/locale.po b/locale/it_IT/locale.po deleted file mode 100644 index ec48b9b5132..00000000000 --- a/locale/it_IT/locale.po +++ /dev/null @@ -1,1255 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-01-22T21:00:04+00:00\n" -"PO-Revision-Date: 2020-01-22T21:00:04+00:00\n" -"Language: \n" - -msgid "monograph.audience" -msgstr "Tipo di lettore" - -msgid "monograph.coverImage" -msgstr "Immagine di copertina" - -msgid "monograph.coverImage.uploadInstructions" -msgstr "Accertarsi che l'altezza dell'immagine non sia più del 150% della sua larghezza, altrimenti il carosello non riuscirà a mostrare la copertina nella sua interezza." - -msgid "monograph.currentCoverImage" -msgstr "Immagine corrente" - -msgid "monograph.audience.rangeQualifier" -msgstr "Qualificatore della varietà di lettori" - -msgid "monograph.audience.rangeFrom" -msgstr "Varietà di lettori (da)" - -msgid "monograph.audience.rangeTo" -msgstr "Varietà di lettori (a)" - -msgid "monograph.audience.rangeExact" -msgstr "Varietà di lettori (esatta)" - -msgid "monograph.languages" -msgstr "Lingue (Inglese, Francese, Spagnolo)" - -msgid "monograph.publicationFormats" -msgstr "Formati di pubblicazione" - -msgid "monograph.carousel.publicationFormats" -msgstr "Formati:" - -msgid "monograph.type" -msgstr "Tipologia di immissione" - -msgid "submission.pageProofs" -msgstr "Bozze" - -msgid "monograph.proofReadingDescription" -msgstr "Il layout editor carica qui i file pronti per la pubblicazione. Usa +Assegna per designare gli autori e gli altri correttori che dovranno rileggere le bozze. Una volta corrette, le bozze devono essere nuovamente caricate per l'approvazione definitiva alla pubblicazione." - -msgid "monograph.task.addNote" -msgstr "Aggiungi ai compiti" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Accesso aperto" - -msgid "monograph.publicationFormat.imprint" -msgstr "Marchio editoriale" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Numero di pagine" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Pagine iniziali" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Appendici" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Composizione del prodotto" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Dettagli del prodotto (non obbligatori)" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Identificazione del prodotto" - -msgid "monograph.publicationFormat.price" -msgstr "Prezzo" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Stabilire il prezzo." - -msgid "monograph.publicationFormat.priceType" -msgstr "Tipo di prezzo" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Percentuale di sconto, se applicabile" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Disponibilità del prodotto" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Indicatore di restituzione" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Informazione digitale" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Dimensioni fisiche" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Dimensione del file Size in Megabyte" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Vuoi inserire un valore personalizzato per le dimensioni del tuo file?" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Altezza" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Spessore" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Peso" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Larghezza" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Paese di pubblicazione" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Misure tecniche per la protezione digitale" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Regione di distribuzione del prodotto" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Tariffa di tassazione" - -msgid "monograph.publicationFormat.taxType" -msgstr "Tipo di tassazione" - -msgid "monograph.publicationFormat.formatMetadata" -msgstr "Formato dei metadati" - -msgid "monograph.publicationFormat.isApproved" -msgstr "Includere i metadati di questo formato di pubblicazione nel record di per questo libro." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Mercati e prezzi mancanti." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Codice identificativo mancante." - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Mancano alcuni campi di metadati." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "

      Il formato di pubblicazione scelto per questa monografia non esiste più.

      " - -msgid "monograph.publicationFormat.openTab" -msgstr "Apri la tab per il formato di pubblicazione." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Formato di pubblicazione" - -msgid "grid.catalogEntry.nameRequired" -msgstr "Scegliere un nome." - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Indicare un prezzo valido." - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Dettagli del formato" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Formato fisico" - -msgid "grid.catalogEntry.monographRequired" -msgstr "Occorre assegnare un ID alla monografia." - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Occorre scegliere un formato di pubblicazione." - -msgid "grid.catalogEntry.isAvailable" -msgstr "Disponibile" - -msgid "grid.catalogEntry.proof" -msgstr "Prova" - -msgid "grid.catalogEntry.availablePublicationFormat.title" -msgstr "Approvazione del formato" - -msgid "grid.catalogEntry.availablePublicationFormat.message" -msgstr "

      Questo formato sarà disponibile per i lettori, attraverso i file scaricabili che appariranno accanto al record del libro e/o attraverso ulteriori azioni intraprese dal sito per distribuire il libro.

      " - -msgid "grid.catalogEntry.availablePublicationFormat.removeMessage" -msgstr "

      Questo formato non sarà più disponibile per i lettori, attraverso i file scaricabili che appariranno accanto al record del libro e/o attraverso ulteriori azioni intraprese dal sito per distribuire il libro.

      " - -msgid "grid.catalogEntry.availablePublicationFormat.catalogNotApprovedWarning" -msgstr "Record di catalogo non approvato." - -msgid "grid.catalogEntry.availablePublicationFormat.notApprovedWarning" -msgstr "Questo formato non è disponibile nel record." - -msgid "grid.catalogEntry.availablePublicationFormat.proofNotApproved" -msgstr "Bozza non approvata." - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Occorre indicare la dimensione del file per i formati digitali richiesti." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Occorre indicare il codice di disponibilità del prodotto." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Occorre scegliere un codice di composizione del prodotto." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Valore del codice" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "Tipo di codice ONIX" - -msgid "grid.catalogEntry.codeRequired" -msgstr "È obbligatorio un codice." - -msgid "grid.catalogEntry.valueRequired" -msgstr "È obbligatorio inserire un valore." - -msgid "grid.catalogEntry.salesRights" -msgstr "Diritti di vendita" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Valore del codice" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Tipi di diritti di vendita" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Resto del mondo?" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "Seleziona questa casella per utilizzare questi Diritti di vendita se pensi che si applicano al tuo formato in modo onnicomprensivo. In questo caso non occorre scegliere i paesi e le regioni." - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "Esiste già un tipo di vendita ROW definito per questo formato di pubblicazione." - -msgid "grid.catalogEntry.countries" -msgstr "Nazioni" - -msgid "grid.catalogEntry.regions" -msgstr "Regioni" - -msgid "grid.catalogEntry.included" -msgstr "Incluso" - -msgid "grid.catalogEntry.excluded" -msgstr "Escluso" - -msgid "grid.catalogEntry.markets" -msgstr "Territori del mercato" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Territori" - -msgid "grid.catalogEntry.publicationDates" -msgstr "Date di pubblicazione" - -msgid "grid.catalogEntry.roleRequired" -msgstr "Occorre indicare un ruolo di rappresentanza." - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Occorre indicare un formato di data." - -msgid "grid.catalogEntry.dateValue" -msgstr "Data" - -msgid "grid.catalogEntry.dateRole" -msgstr "Ruolo" - -msgid "grid.catalogEntry.dateFormat" -msgstr "Formato di data" - -msgid "grid.catalogEntry.dateRequired" -msgstr "Occorre indicare una data e il valore della data deve corrispondere al formato di data prescelto." - -msgid "grid.catalogEntry.representatives" -msgstr "Rappresentanti" - -msgid "grid.catalogEntry.representativeType" -msgstr "Tipo di rappresentati" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agenti" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Fornitori" - -msgid "grid.catalogEntry.agent" -msgstr "Agente" - -msgid "grid.catalogEntry.agentTip" -msgstr "È possibile assegnare un agente che vi rappresenti in questo territorio, ma non è indispensabile." - -msgid "grid.catalogEntry.supplier" -msgstr "Fornitore" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Scegliere un ruolo:" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Ruolo" - -msgid "grid.catalogEntry.representativeName" -msgstr "Nome" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Telefono" - -msgid "grid.catalogEntry.representativeFax" -msgstr "Fax" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "Indirizzo email" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Sito web" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "ID del rappresentante" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Tipo di ID del rappresentante (si raccomanda GLN)" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "È possibile lasciare la seguente sezione vuota se si forniscono i propri servizi ai clienti." - -msgid "grid.action.addRepresentative" -msgstr "Aggiunge un rappresentante" - -msgid "grid.action.editRepresentative" -msgstr "Edita il rappresentante" - -msgid "grid.action.deleteRepresentative" -msgstr "Cancella il rappresentante" - -msgid "spotlight" -msgstr "In evidenza" - -msgid "spotlight.spotlights" -msgstr "In evidenza" - -msgid "spotlight.noneExist" -msgstr "Non ci sono libri in evidenza" - -msgid "spotlight.title.homePage" -msgstr "In evidenza" - -msgid "spotlight.author" -msgstr "Autore, " - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Volume in evidenza" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Homepage" - -msgid "grid.content.spotlights.category.sidebar" -msgstr "Sidebar" - -msgid "grid.content.spotlights.form.location" -msgstr "Collocazione per \"In evidenza\"" - -msgid "grid.content.spotlights.form.item" -msgstr "Inserisci il titolo messo In evidenza (autocompletamento)" - -msgid "grid.content.spotlights.form.title" -msgstr "Titolo In evidenza" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Libro" - -msgid "grid.content.spotlights.itemRequired" -msgstr "Occorre indicare un libro" - -msgid "grid.content.spotlights.titleRequired" -msgstr "Occorre indicare un titolo In evidenza" - -msgid "grid.content.spotlights.locationRequired" -msgstr "Per favore, scegli un posto per questo In evidenza" - -msgid "grid.action.editSpotlight" -msgstr "Edita questo volume In evidenza" - -msgid "grid.action.deleteSpotlight" -msgstr "Cancella questo volume In evidenza" - -msgid "grid.action.addSpotlight" -msgstr "Aggiungi \"In evidenza\"" - -msgid "manager.series.open" -msgstr "Proposte libere" - -msgid "manager.series.indexed" -msgstr "Indicizzato" - -msgid "grid.libraryFiles.column.files" -msgstr "Files" - -msgid "grid.action.catalogEntry" -msgstr "Visualizza il form di immissione nel catalogo" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Il formato appare all'inizio del catalogo" - -msgid "grid.action.editFormat" -msgstr "Edita questo formato" - -msgid "grid.action.deleteFormat" -msgstr "Cancella questo formato" - -msgid "grid.action.addFormat" -msgstr "Aggiungi il formato di pubblicazione" - -msgid "grid.action.approveProof" -msgstr "Dai la tua approvazione perché la prova possa essere indicizzata e inclusa nel Catalogo" - -msgid "grid.action.pageProofApproved" -msgstr "Il file per le prove della messa in pagina è pronto per la pubblicazione" - -msgid "grid.action.addAnnouncement" -msgstr "Aggiungi un annuncio" - -msgid "grid.action.newCatalogEntry" -msgstr "Nuovo ingresso nel Catalogo" - -msgid "grid.action.publicCatalog" -msgstr "Visualizza questo titolo nel Catalogo" - -msgid "grid.action.feature" -msgstr "Cambia la visualizzazione delle caratteristiche" - -msgid "grid.action.featureMonograph" -msgstr "Metti nel carosello del Catalogo" - -msgid "grid.action.releaseMonograph" -msgstr "Segna questa immissione come 'novità'" - -msgid "grid.action.manageCategories" -msgstr "Configura le categorie per questa Press" - -msgid "grid.action.manageSeries" -msgstr "Configura le collane per questa Press" - -msgid "grid.action.addCode" -msgstr "Aggiungi Codice" - -msgid "grid.action.editCode" -msgstr "Modifica il codice" - -msgid "grid.action.deleteCode" -msgstr "Cancella il Codice" - -msgid "grid.action.addRights" -msgstr "Aggiungi i diritti di vendita" - -msgid "grid.action.editRights" -msgstr "Modifica i diritti" - -msgid "grid.action.deleteRights" -msgstr "Cancella i diritti" - -msgid "grid.action.addMarket" -msgstr "Aggiungi un Mercato" - -msgid "grid.action.editMarket" -msgstr "Modifica il Mercato" - -msgid "grid.action.deleteMarket" -msgstr "Cancella il Mercato" - -msgid "grid.action.addDate" -msgstr "Aggiungi una data di pubblicazione" - -msgid "grid.action.editDate" -msgstr "Modifica la data" - -msgid "grid.action.deleteDate" -msgstr "Cancella la data" - -msgid "grid.action.createContext" -msgstr "Crea una nuova Press" - -msgid "grid.action.publicationFormatTab" -msgstr "Mostra la tab per il formato di pubblicazione" - -msgid "grid.action.moreAnnouncements" -msgstr "Vai alla pagina degli annunci" - -msgid "grid.action.submissionEmail" -msgstr "Clicca per leggere questa email" - -msgid "grid.action.approveProofs" -msgstr "Visualizza la griglia delle prove" - -msgid "grid.action.proofApproved" -msgstr "Il format è stato approvato" - -msgid "grid.action.availableRepresentation" -msgstr "Approva/Respingi questo formato" - -msgid "grid.action.formatAvailable" -msgstr "Il formato è disponibile e pubblicato" - -msgid "grid.action.editApprovedProof" -msgstr "Modifica questa prova già approvata" - -msgid "grid.reviewAttachments.add" -msgstr "Aggiungi un allegato alla recensione" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "File disponibili" - -msgid "series.series" -msgstr "Collana" - -msgid "series.featured.description" -msgstr "Queste collane appariranno nel menu di navigazione principale" - -msgid "series.path" -msgstr "Percorso" - -msgid "series.featured" -msgstr "In primo piano" - -msgid "grid.category.categories" -msgstr "Categorie" - -msgid "grid.category.add" -msgstr "Aggiungi una categoria" - -msgid "grid.category.edit" -msgstr "Modifica la categoria" - -msgid "grid.category.name" -msgstr "Nome" - -msgid "grid.category.path" -msgstr "Percorso" - -msgid "grid.category.urlWillBe" -msgstr "L'indirizzo URL della categoria sarà {$sampleUrl}" - -msgid "grid.series.urlWillBe" -msgstr "L'indirizzo URL della collana sarà {$sampleUrl}. Il 'Percorso' consiste in una stringa di caratteri usati per identificare in modo univoco una collana." - -msgid "grid.category.pathAlphaNumeric" -msgstr "Il percorso per la categoria può contenere solo lettere e numeri." - -msgid "grid.category.pathExists" -msgstr "Il percorso per la categoria già esiste. Per favore, inserisci un percorso unico." - -msgid "grid.category.description" -msgstr "Descrizione" - -msgid "grid.category.parentCategory" -msgstr "Categoria principale" - -msgid "grid.category.removeText" -msgstr "Sei sicuro di voler rimuovere questa categoria?" - -msgid "grid.category.nameRequired" -msgstr "Per favore, inserisci il nome di una categoria." - -msgid "grid.category.categoryDetails" -msgstr "Dettagli della categoria" - -msgid "catalog.manage" -msgstr "Gestione del Catalogo" - -msgid "catalog.manage.newReleases" -msgstr "In primo piano" - -msgid "catalog.manage.category" -msgstr "Categorie" - -msgid "catalog.manage.series" -msgstr "Collane" - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.selectSeries" -msgstr "Scegli una collana" - -msgid "catalog.selectCategory" -msgstr "Scegli una categoria" - -msgid "catalog.manage.managementIntroduction" -msgstr "Benvenuto nella pagina di gestione del Catalogo. A partire da questa pagina è possibile pubblicare le novità del catalogo \"In primo piano\", rivedere econfigurare la lista delle \"novità\", rivedere e disporre i libri per Categorie e Serie." - -msgid "catalog.manage.homepageDescription" -msgstr "L'immagine di copertina dei libri selezionati appare nella parte superiore della home page come un insieme scorrevole. Clicca su 'Funzione' e poi sulla stella per aggiungere un libro al carosello; clicca sul punto esclamativo per inserire il libro tra le novità; trascina e rilascia per stabilire un nuovo ordine tra i volumi." - -msgid "catalog.manage.categoryDescription" -msgstr "Clicca su 'Funzione' e poi sulla stella per scegliere un libro in evidenza per questa categoria; trascina e rilascia per ordinare." - -msgid "catalog.manage.seriesDescription" -msgstr "Clicca su 'Funzione' e poi sulla stella per scegliere un libro in evidenza per questa collana; trascina e rilascia per ordinare. Le collane vengonon identificate con il nome del curatore e con il titolo della collana, all'interno o meno di una categoria." - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Carosello" - -msgid "catalog.manage.newRelease" -msgstr "Pubblicazione" - -msgid "catalog.manage.manageSeries" -msgstr "Gestione della collana" - -msgid "catalog.manage.manageCategories" -msgstr "Gestione delle categorie" - -msgid "catalog.manage.noMonographs" -msgstr "Non ci sono Monografie assegnate." - -msgid "catalog.manage.featured" -msgstr "In Evidenza" - -msgid "catalog.manage.categoryFeatured" -msgstr "In evidenza" - -msgid "catalog.manage.seriesFeatured" -msgstr "Nelle collane" - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Cerca per titolo o autore" - -msgid "catalog.manage.entryDescription" -msgstr "Per inserire un libro nel catalogo, seleziona la scheda Monografia e compila le informazioni necessarie. Le informazioni per ciascuno dei formati del libro possono essere incluse nella voce di catalogo selezionando la scheda per il formato. Le specifiche che riguardano i metadati sono basate su ONIX for Books, che è uno standard internazionale utilizzato dall'industria editoriale per la comunicazione delle informazioni sui prodotti." - -msgid "catalog.manage.spotlightDescription" -msgstr "Sulla homepage possono essere visualizzati tre spotlights (per es. Libri sotto i riflettori), che riportano titolo, copertina e testo." - -msgid "catalog.browseTitles" -msgstr "Consulta {$numTitles} Titoli" - -msgid "catalog.feature" -msgstr "Caratteristiche" - -msgid "catalog.featured" -msgstr "In evidenza" - -msgid "catalog.featuredBooks" -msgstr "Libri in evidenza" - -msgid "catalog.foundTitleSearch" -msgstr "1 titolo è stato trovato che corrisponde alla: \"{$searchQuery}\"." - -msgid "catalog.foundTitlesSearch" -msgstr "{$number} titoli sono stati trovati che corrispondono alla \"{$searchQuery}\"." - -msgid "catalog.allBooks" -msgstr "Tutti i libri" - -msgid "catalog.category.heading" -msgstr "Tutti i libri" - -msgid "catalog.categories" -msgstr "Categorie" - -msgid "catalog.newReleases" -msgstr "Nuove pubblicazioni" - -msgid "catalog.dateAdded" -msgstr "Aggiunto il {$dateAdded}" - -msgid "catalog.publicationInfo" -msgstr "Informazioni sulla pubblicazione" - -msgid "catalog.published" -msgstr "Pubblicato" - -msgid "catalog.relatedCategories" -msgstr "Categorie collegate" - -msgid "catalog.aboutTheAuthor" -msgstr "Su {$roleName}" - -msgid "catalog.noBioInfo" -msgstr "Non è disponibile al momento nessuna biografia." - -msgid "catalog.loginRequiredForPayment" -msgstr "Da notare: per l'acquisto di documenti, è necessario effettuare prima il login. Selezionando il documento da acquistare sarete indirizzati alla pagina di login. Tutti i documenti segnati con un'icona Open Access possono essere scaricati gratuitamente, senza effettuare il login." - -msgid "common.prefix" -msgstr "Prefisso" - -msgid "common.preview" -msgstr "Previsualizzazione" - -msgid "common.feature" -msgstr "Caratteristiche" - -msgid "common.searchCatalog" -msgstr "Cerca nel Catalogo" - -msgid "common.moreInfo" -msgstr "Informazioni aggiuntive" - -msgid "common.plusMore" -msgstr "+ Più" - -msgid "common.listbuilder.completeForm" -msgstr "Per favore, riempi tutto il formulario." - -msgid "common.listbuilder.selectValidOption" -msgstr "Per favore, scegli dalla lista una opzione valida." - -msgid "common.listbuilder.itemExists" -msgstr "Non è possibile aggiungere due volte lo stesso elemento." - -msgid "common.catalogInformation" -msgstr "Non è necessario completare le informazioni nel catalogo quando il documento viene caricato per la prima volta, eccetto il titolo e di un abstract." - -msgid "common.prefixAndTitle.tip" -msgstr "Se il libro comincia con un articolo, \"Un/Uno/Una\" o \"Il/Lo/La/I/Gli/Le\" (o per qualsiasi parola non debba essere presa in considerazione per l'ordine alfabetico) inserisce la parola in Prefisso." - -msgid "common.openMonographPress" -msgstr "Open Monograph Press" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.homePageHeader.altText" -msgstr "Testata della Homepage Header" - -msgid "navigation.catalog" -msgstr "Catalogo" - -msgid "navigation.competingInterestPolicy" -msgstr "Polcy per il conflitto di interessi" - -msgid "navigation.catalog.manage" -msgstr "Gestione" - -msgid "navigation.catalog.administration.short" -msgstr "Amministrazione" - -msgid "navigation.catalog.administration" -msgstr "Gestione del Catalogo" - -msgid "navigation.catalog.administration.series" -msgstr "Collane" - -msgid "navigation.infoForAuthors" -msgstr "Per Autori" - -msgid "navigation.infoForLibrarians" -msgstr "Per Bibliotecari" - -msgid "navigation.infoForAuthors.long" -msgstr "Informazioni per gli Autori" - -msgid "navigation.infoForLibrarians.long" -msgstr "Informazioni per bibliotecari" - -msgid "navigation.newReleases" -msgstr "Nuove pubblicazioni" - -msgid "navigation.published" -msgstr "Pubblicato" - -msgid "navigation.wizard" -msgstr "Wizard" - -msgid "navigation.linksAndMedia" -msgstr "Link ai Social Media" - -msgid "press.presses" -msgstr "Presses" - -msgid "press.path" -msgstr "Percorso" - -msgid "context.select" -msgstr "Seleziona una Press..." - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Aggiungi utenti senza ruoli in questa Press." - -msgid "user.noRoles.submitMonograph" -msgstr "Fai una proposta" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Carica una Monografia: la registrazione di un Autore non è al momento attiva." - -msgid "user.noRoles.regReviewer" -msgstr "Registrati come Reviewer" - -msgid "user.noRoles.regReviewerClosed" -msgstr "Registrati come Reviewer: la registrazione di un Reviewer non è al momento attiva." - -msgid "user.role.subEditor" -msgstr "Editor di collana" - -msgid "user.role.proofreader" -msgstr "Correttore di bozze" - -msgid "user.role.subEditors" -msgstr "Editors di collana" - -msgid "user.role.proofreaders" -msgstr "Correttori di bozze" - -msgid "user.register.completeForm" -msgstr "Riempi questo formulario per registrarti presso questa Press." - -msgid "user.register.selectContext" -msgstr "Scegli a quale Press registrarti" - -msgid "user.register.noContexts" -msgstr "Non puoi registrarti presso nessuna Press ospitata su questo sito." - -msgid "user.register.privacyStatement" -msgstr "Informativa sulla privacy" - -msgid "user.register.alreadyRegisteredOtherContext" -msgstr "Clicca qui se sei già registrato in una Press su questo sito." - -msgid "user.register.notAlreadyRegisteredOtherContext" -msgstr "Clicca qui se non sei già registrato in una Press su questo sito." - -msgid "user.register.loginToRegister" -msgstr "Inserisci la tua username e password corrente per registrarti con questa Press." - -msgid "user.register.registrationDisabled" -msgstr "Le registrazioni sono sospese." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "La password inserita non è abbastanza lunga." - -msgid "user.register.readerDescription" -msgstr "Notifica per mezzo di email sulla pubblicazione di una monografia." - -msgid "user.register.authorDescription" -msgstr "È possibile sottomettere documenti alla Press." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Disponibile alla peer review per i documenti sottomessi alla Press." - -msgid "user.register.reviewerDescription" -msgstr "Disponibile alla peer review per i documenti sottomessi al Sito." - -msgid "user.register.reviewerInterests" -msgstr "Identifica i campi di tuo interesse per la peer review (aree e metodi di ricerca):" - -msgid "user.register.form.userGroupRequired" -msgstr "Devi scegliere almeno un ruolo" - -msgid "site.pressView" -msgstr "Consulta il sito web della Press" - -msgid "about.aboutContext" -msgstr "Informazioni" - -msgid "about.pressContact" -msgstr "Per contattare la Press" - -msgid "about.aboutThePress" -msgstr "Caratteri di SHARE Press" - -msgid "about.editorialTeam" -msgstr "Team editoriale" - -msgid "about.editorialPolicies" -msgstr "Policies redazionali" - -msgid "about.focusAndScope" -msgstr "Focus e ambito" - -msgid "about.seriesPolicies" -msgstr "Policies concernenti le collane e le categorie " - -msgid "about.submissions" -msgstr "Proposte di pubblicazione" - -msgid "about.contributors" -msgstr "Fonti di finanziamento" - -msgid "about.onlineSubmissions" -msgstr "Inserimenti online" - -msgid "about.onlineSubmissions.login" -msgstr "Vai al Login" - -msgid "about.onlineSubmissions.registration" -msgstr "Vai alla Registrazione" - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "È necessario autenticarsi per proporre testi per la pubblicazione e seguirne il successivo iter. Login" - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} o {$viewSubmissions}." - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Proponi un testo per la pubblicazione" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "verifica lo stato della tua proposta" - -msgid "about.authorGuidelines" -msgstr "Linee Guida per gli Autori" - -msgid "about.submissionPreparationChecklist" -msgstr "Controlli per gli autori" - -msgid "about.submissionPreparationChecklist.description" -msgstr "Gli autori, prima di caricare sulla piattaforma i loro contributi, sono tenuti a verificare che essi rispettino i criteri elencati di seguito. I testi che non dovessero tenerne conto saranno restituiti agli autori." - -msgid "about.copyrightNotice" -msgstr "Avviso di Copyright " - -msgid "about.privacyStatement" -msgstr "Informativa sulla privacy" - -msgid "about.reviewPolicy" -msgstr "Processo di Peer Review" - -msgid "about.publicationFrequency" -msgstr "Frequenza di pubblicazione" - -msgid "about.openAccessPolicy" -msgstr " Policy sull'Open Access" - -msgid "about.pressSponsorship" -msgstr "Sponsorship per questa Press " - -msgid "about.aboutThisPublishingSystem" -msgstr "Informazioni su questo sistema di pubblicazione" - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "Processo editoriale di OMP" - -#, fuzzy -msgid "about.aboutOMPPress" -msgstr "Questa Press usa Open Monograph Press {$ompVersion}, che è un software open source per la gestione dei processi editoriali, sviluppato, supportato e distribuito gratuitamente dalla Public Knowledge Project con Licenza pubblica GNU." - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "Questo sito usa Open Monograph Press {$ompVersion}, che è un software open source per la gestione dei processi editoriali, sviluppato, supportato e distribuito gratuitamente dalla Public Knowledge Project con Licenza pubblica GNU." - -msgid "about.onlineSubmissions.haveAccount" -msgstr "Hai già una Username/Password per {$pressTitle}?" - -msgid "about.onlineSubmissions.needAccount" -msgstr "Hai bisogno di una Username/Password?" - -msgid "help.searchReturnResults" -msgstr "Torna ai Risultati della ricerca" - -msgid "help.goToEditPage" -msgstr "Apri una nuova pagina per modificare questa informazione" - -msgid "installer.ompInstallation" -msgstr "Installazione di OMP" - -msgid "installer.ompUpgrade" -msgstr "Aggiornamento di OMP" - -msgid "installer.installApplication" -msgstr "Installa Open Monograph Press" - -#, fuzzy -msgid "installer.installationInstructions" -msgstr "

      Grazie per aver scaricato Open Monograph Press {$version} del Public Knowledge Project. Prima di continuare, leggi il file README incluso in questo software. Per maggiori informazioni sul Public Knowledge Project e i suoi progetti di software, per favore visita il sito web PKP. Se ti imbatti in bug oppure vuoi porre quesiti tecnici su Open Monograph Press, vai sul forum di supporto oppure visita il sistema di bug reporting online di PKP. Benché il forum di supporto sia il modo preferito per questo tipo di contatti, puoi anche inviare una email al team usando questo indirizzo: pkp.contact@gmail.com.

      Aggiornamento

      Se stai aggiornando una installazione esistente di OMP, clicca qui per procedere.

      " - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Passaggi per la pre-Installazione" - -msgid "installer.preInstallationInstructions" -msgstr "

      1. I file e le cartelle seguenti (ed i loro contenuti) devono essere scrivibili:

      • config.inc.php è scrivibile (opzionale): {$writable_config}
      • public/ è scrivibile: {$writable_public}
      • cache/ è scrivibile: {$writable_cache}
      • cache/t_cache/ è scrivibile: {$writable_templates_cache}
      • cache/t_compile/ è scrivibile: {$writable_templates_compile}
      • cache/_db è scrivibile: {$writable_db_cache}

      2. Deve essere creata e resa scrivibile una cartella per conservare i file caricati (vedi \"Settaggi dei File\" sotto).

      " - -msgid "installer.upgradeInstructions" -msgstr "

      Versione OMP {$version}

      Grazie per aver scaricato Open Monograph Press del Public Knowledge Project. Prima di continuare, leggi i file README e UPGRADE inclusi in questo software. Per maggiori informazioni sul Public Knowledge Project e i suoi progetti di software, per favore visita il sito web PKP. Se ti imbatti in bug oppure vuoi porre quesiti tecnici su Open Monograph Press, vai sul forum di supporto oppure visita il sistema di bug reportingonline di PKP. Benché il forum di supporto sia il modo preferito per questo tipo di contatti, puoi anche inviare una email al team usando questo indirizzo: pkp.contact@gmail.com.

      È fortemente raccomandato che tu esegua il backup del database, delle cartelle e della cartella di installazione di OMP prima di procedere.

      Se ti trovi in PHP Safe Mode, per favore, assicurati che il parametro max_execution_time nel tuo file di configurazione php.ini sia settato con un limite sufficientemente elevatot. Se si raggiunge questo o qualsiasi altro limite (per es. il parametro \"Timeout\" di Apache) e si interrompe il processo di aggiornamento, si dovrà intervenire a mano.

      " - -msgid "installer.localeSettingsInstructions" -msgstr "Per un supporto completo a Unicode (UTF-8), scegli di settare UTF-8 per tutti i caratteri. Nota che questo supporto richiede un database sul server come MySQL >= 4.1.1 oppure PostgreSQL >= 9.1.5. Per favore, nota anche che il supporto completo a Unicode richiede lo scarico della library mbstring (attivo di default nelle più recenti installazioni PHP). È possibile che si abbiano problemi nell'uso di set di caratteri estesi se il server non supporta queste richieste.

      Il server supporta al momento mbstring: {$supportsMBString}" - -msgid "installer.allowFileUploads" -msgstr "Il server consente al momento di caricare i file: {$allowFileUploads}" - -msgid "installer.maxFileUploadSize" -msgstr "Il server consente al momento di caricare un file le cui dimensioni massime sono: {$maxFileUploadSize}" - -msgid "installer.localeInstructions" -msgstr "La lingua principale da utilizzare per questo sistema. Per favore, consulta la documentazione OMP se sei interessato al supporto di lingue non elencate." - -msgid "installer.additionalLocalesInstructions" -msgstr "Selezionare altre lingue aggiuntive da supportare in questo sistema. Queste lingue saranno disponibili per l'uso dalle Ppress ospitate sul sito. Altre lingue possono essere installate in qualsiasi momento dall'interfaccia di amministrazione del sito. I parametri contrassegnati con un * possono essere incompleti.." - -msgid "installer.filesDirInstructions" -msgstr "Inserisci il percorso completo per la cartella in cui vuoi che vengano salvati i file scaricati. Questa cartella non dovrebbe essere direttamente accessibile via web. Per favore, prima dell'installazione assicurati che la cartella esista e sia scrivibile. I nomi dei percorsi Windows dovrebbero usare i forward slashes, per esempio \"C:/mypress/files\"." - -msgid "installer.databaseSettingsInstructions" -msgstr "OMP richiede l'accesso ad un database SQL per conservare i suoi dati. Vedi i requisiti di sistema sopra indicati per avere la lista dei database supportati. Nei campi che seguono, fornisci i parametri necessari per la connessione al database." - -msgid "installer.upgradeApplication" -msgstr "Aggiorna Open Monograph Press" - -msgid "installer.overwriteConfigFileInstructions" -msgstr "

      IMPORTANTE!

      Il programma di installazione potrebbe non riuscire a sovrascrivere il file di configurazione. Prima di tentare di utilizzare il sistema, apri il file config.inc.php con un editor testuale e sostituisci il contenuto con il contenuto sottostante.

      The installer could not automatically overwrite the configuration file. Before attempting to use the system, please open config.inc.php in a suitable text editor and replace its contents with the contents of the text field below.

      " - -msgid "installer.installationComplete" -msgstr "

      L'installazione di OMP è stata completata con successo.

      Per iniziare a utilizzare il sistema, effettua il login con il nome utente e la password inseriti nella pagina precedente.

      Se vuoi ricevere notizie e aggiornamenti, per favore registrati qui http://pkp.sfu.ca/omp/register. Se hai domande o commenti da fare, per favore visita il forum di supporto.

      " - -msgid "installer.upgradeComplete" -msgstr "

      L'aggiornamento di OMP alla versione {$version} è stato completato con successo.

      Nel file di configurazione config.inc.php non dimenticare di impostare a On il parametro \"installato\"

      Se non ti sei già registrato e desideri ricevere news e aggiornamenti, per favore registrati qui http://pkp.sfu.ca/omp/register. Se hai domande o commenti, per favore visita il forum di supporto.

      " - -msgid "notification.addedIdentificationCode" -msgstr "Codice di identificazione aggiunto." - -msgid "notification.editedIdentificationCode" -msgstr "Codice di identificazione modificato." - -msgid "notification.removedIdentificationCode" -msgstr "Codice di identificazione rimosso." - -msgid "notification.addedPublicationDate" -msgstr "Data di pubblicazione aggiunta." - -msgid "notification.editedPublicationDate" -msgstr "Data di pubblicazione modificata." - -msgid "notification.removedPublicationDate" -msgstr "Data di pubblicazione rimossa." - -msgid "notification.addedPublicationFormat" -msgstr "Formato di pubblicazione aggiunto." - -msgid "notification.editedPublicationFormat" -msgstr "Formato di pubblicazione modificato." - -msgid "notification.removedPublicationFormat" -msgstr "Formato di pubblicazione rimosso." - -msgid "notification.addedSalesRights" -msgstr "Diritti di vendita aggiunti." - -msgid "notification.editedSalesRights" -msgstr "Diritti di vendita modificati." - -msgid "notification.removedSalesRights" -msgstr "Diritti di vendita rimossi." - -msgid "notification.addedRepresentative" -msgstr "Rappresentante aggiunto." - -msgid "notification.editedRepresentative" -msgstr "Rappresentante modificato." - -msgid "notification.removedRepresentative" -msgstr "Rappresentante rimosso." - -msgid "notification.addedMarket" -msgstr "Mercato aggiunto." - -msgid "notification.editedMarket" -msgstr "Mercato modificato." - -msgid "notification.removedMarket" -msgstr "Mercato rimosso." - -msgid "notification.addedSpotlight" -msgstr "Spotlight aggiunto." - -msgid "notification.editedSpotlight" -msgstr "Spotlight modificato." - -msgid "notification.removedSpotlight" -msgstr "Spotlight rimosso." - -msgid "notification.savedCatalogMetadata" -msgstr "Metadati del Catalogo salvati." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Metadati del formato di pubblicazione salavti." - -msgid "notification.mailListDescription" -msgstr "Inserisci il tuo indirizzo email per ricevere le notifiche appena nuovi contenuti vengono aggiunti alla Press." - -msgid "notification.notificationsPublicDescription" -msgstr "Questa pagina include gli aggiornamenti associati a questa Press, come le nuove monografie o le nuove collane. Puoi ricevere le notifiche degli aggiornamenti sottoscrivendo i feed RSS (cliccando sull'immagine a destra), oppure attraverso la email." - -msgid "notification.proofsApproved" -msgstr "Bozze approvate." - -msgid "notification.removedSubmission" -msgstr "Proposta cancellata." - -msgid "notification.removedFooterLink" -msgstr "Link a piè di pagina rimosso." - -msgid "notification.type.submissionSubmitted" -msgstr "Una nuova monografia, \"{$title},\" è stata proposta." - -msgid "notification.type.editing" -msgstr "Modifica eventi" - -msgid "notification.type.reviewing" -msgstr "Revisione di Eventi" - -msgid "notification.type.site" -msgstr "Eventi del Sito" - -msgid "notification.type.submissions" -msgstr "Eventi per la Proposta" - -msgid "notification.type.userComment" -msgstr "Un lettore ha lasciato un commento su \"{$title}\"." - -msgid "notification.type.editorAssignmentTask" -msgstr "È stata proposta una nuova Monografia, a cui occorre assegnare un editor." - -msgid "notification.type.copyeditorRequest" -msgstr "Sei stato sollecitato a fare il copyediting per \"{$file}\"." - -msgid "notification.type.layouteditorRequest" -msgstr "Sei stato sollecitato a rivedere il layout per \"{$title}\"." - -msgid "notification.type.indexRequest" -msgstr "Sei stato sollecitato a creare un indice per \"{$title}\"." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Processo di valutazione interno cominciato." - -msgid "notification.type.roundStatusTitle" -msgstr "Status del Round {$round}" - -msgid "notification.type.approveSubmission" -msgstr "Questa proposta è in attesa di approvazione all'interno del tool \"Catalogo Entry\", prima che apparirà nel Catalogo pubblico." - -msgid "notification.type.approveSubmissionTitle" -msgstr "In attesa di approvazione." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "I metadati per la voce di catalogo devono essere approvati prima che il formato di pubblicazione venga incluso nel catalogo. Per approvare i metadati del catalogo, clicca sulla scheda Monografia sopra." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Nessun metodo di pagamento configurato." - -msgid "notification.type.configurePaymentMethod" -msgstr "È necessario definire una modalità di pagamento prima di definire i parametri del commercio elettronico." - -#, fuzzy -msgid "notification.type.visitCatalog" -msgstr "La monografia è stata approvata. Per favore, visita il Catalogo per gestire i dettagli, usando il link qui sopra." - -msgid "notification.type.visitCatalogTitle" -msgstr "Gestione del Catalogo" - -msgid "notification.type.metadataModified" -msgstr "I metadati di \"{$title}\" sono stati modificati." - -msgid "notification.type.reviewerComment" -msgstr "Un revisore ha lasciato un commento su \"{$title}\"." - -msgid "user.authorization.invalidReviewAssignment" -msgstr "Non puoi accedere perché non sei un revisore di questa monografia." - -msgid "user.authorization.monographAuthor" -msgstr "Non puoi accedere perché non sei l'autore di questa monografia." - -msgid "user.authorization.monographReviewer" -msgstr "Non puoi accedere perché non sei uno dei revisori assegnati a questa monografia." - -msgid "user.authorization.monographFile" -msgstr "Non puoi accedere al file associato alla monografia." - -msgid "user.authorization.invalidMonograph" -msgstr "Hai richiesto una Monografia non valida o inesistente!" - -msgid "user.authorization.noContext" -msgstr "Nessuna Press!" - -msgid "user.authorization.seriesAssignment" -msgstr "Stai cercando di accedere ad una monografia che non fa parte di questa collana." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Accesso negato! Non sei stato assegnato a questo stadio del flusso di lavoro." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "Accesso negato! Il gruppo di utenti a cui appartieni non è stato assegnato a questo stadio del flusso di lavoro. Per favore, verifica le tue impostazioni ." - -msgid "payment.directSales" -msgstr "Scarica dal sito web della Press" - -msgid "payment.directSales.price" -msgstr "Prezzo" - -msgid "payment.directSales.availability" -msgstr "Disponibilità" - -msgid "payment.directSales.catalog" -msgstr "Catalogo" - -msgid "payment.directSales.approved" -msgstr "Approvato" - -msgid "payment.directSales.priceCurrency" -msgstr "Prezzo ({$currency})" - -msgid "payment.directSales.directSales" -msgstr "Vendita diretta" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.notAvailable" -msgstr "Non disponibile" - -msgid "payment.directSales.notSet" -msgstr "Non stabilito" - -msgid "payment.directSales.openAccess" -msgstr "Open Access" - -msgid "payment.directSales.price.description" -msgstr "I formati di file possono essere resi disponibili per il download dal sito web della Press in modalità Open Access, a costo zero per i lettori, oppure messi in vendita diretta (utilizzando una modalità di pagamento online, come configurato in Distribuzione). Per questo file indicare la base di accesso." - -msgid "payment.directSales.validPriceRequired" -msgstr "Occorre indicare un numero valido per il prezzo." - -msgid "payment.directSales.purchase" -msgstr "Acquista ({$amount} {$currency})" - -msgid "payment.directSales.download" -msgstr "Scarica" - -msgid "payment.directSales.monograph.name" -msgstr "Acquista la monografia o scarica un capitolo" - -msgid "payment.directSales.monograph.description" -msgstr "Questa operazione è per l'acquisto del download di una singola monografia o capitolo di monografia." - -msgid "debug.notes.helpMappingLoad" -msgstr "Reloaded XML help mapping file {$filename} in search of {$id}." - -msgid "rt.metadata.pkp.dctype" -msgstr "Libro" - -msgid "plugins.categories.viewableFiles" -msgstr "Plugin per i file pubblicati" - -msgid "submission.pdf.download" -msgstr "Scarica questo file PDF" diff --git a/locale/it_IT/submission.po b/locale/it_IT/submission.po deleted file mode 100644 index b762c3e0bfd..00000000000 --- a/locale/it_IT/submission.po +++ /dev/null @@ -1,372 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-01-22T21:00:19+00:00\n" -"PO-Revision-Date: 2020-01-22T21:00:19+00:00\n" -"Language: \n" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.submit.title" -msgstr "Seleziona un documento da proporre" - -msgid "submission.upload.selectBookElement" -msgstr "Seleziona un elemento del libro" - -msgid "submission.title" -msgstr "Titolo" - -msgid "submission.title.tip" -msgstr "Puoi scegliere di caricare questi tipi: 'immagine', 'testo' oppure un altro tipo di elemento multimediale scelto tra 'software' o 'interattivo'. Per favore, scegli solo quello che meglio identifica il prodotto da te caricato. Puoi trovare alcuni esempi qui http://dublincore.org/documents/2001/04/12/usageguide/generic.shtml#type" - -msgid "submission.select" -msgstr "Seleziona il caricamento" - -msgid "submission.synopsis" -msgstr "Scheda" - -msgid "submission.workflowType" -msgstr "Tipo di Libro" - -msgid "submission.workflowType.description" -msgstr "Una Monografia ? un volume scritto interamente da uno o pi? autori. Un volume A cura di ? costituito da capitoli scritti ciascuno da un diverso autore (i dettagli di ogni capitolo verranno inseriti pi? avanti)" - -msgid "submission.workflowType.editedVolume" -msgstr "Volume A cura di: gli Autori vengono associati solo ai contenuti dei propri Capitoli." - -msgid "submission.workflowType.authoredWork" -msgstr "Monografia: gli Autori vengono associati a tutti i contenuti del libro." - -msgid "submission.monograph" -msgstr "Monografia" - -msgid "submission.published" -msgstr "Pronto per andare in produzione" - -msgid "submission.fairCopy" -msgstr "Bella copia" - -msgid "submission.artwork.permissions" -msgstr "Permessi" - -msgid "submission.chapter" -msgstr "Capitolo" - -msgid "submission.chapters" -msgstr "Capitoli" - -msgid "submission.chaptersDescription" -msgstr "? possibile elencare qui i capitoli e assegnare ad essi i rispettivi autori prendendoli dall'elenco dei collaboratori, qui in alto. Questi collaboratori potranno accedere al proprio capitolo durante le varie fasi del processo di pubblicazione." - -msgid "submission.chapter.addChapter" -msgstr "Aggiungi un nuovo capitolo" - -msgid "submission.chapter.editChapter" -msgstr "Edita i Capitoli" - -msgid "submission.copyedit" -msgstr "Fai il copyediting" - -msgid "submission.publicationFormats" -msgstr "Formati di pubblicazione" - -msgid "submission.proofs" -msgstr "Prove" - -msgid "submission.download" -msgstr "Download" - -msgid "submission.sharing" -msgstr "Pubblicizza" - -msgid "manuscript.submission" -msgstr "Proposta di documento" - -msgid "submission.round" -msgstr "Round {$round}" - -msgid "submissions.queuedReview" -msgstr "In corso di valutazione" - -msgid "manuscript.submissions" -msgstr "Proposte di documenti" - -msgid "submission.confirmSubmit" -msgstr "Vuoi pubblicare questo manoscritto?" - -msgid "submission.metadata" -msgstr "Metadati" - -msgid "submission.supportingAgencies" -msgstr "Agenzie di supporto" - -msgid "grid.action.addChapter" -msgstr "Crea un nuovo capitolo" - -msgid "grid.action.editChapter" -msgstr "Modifica questo capitolo" - -msgid "grid.action.deleteChapter" -msgstr "Cancella questo capitolo" - -msgid "submission.submit" -msgstr "Dai inizio ad nuova immissione di Libri" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Dai inizio ad nuova immissione in" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Dai inizio ad nuova immissione in {$contextName}" - -msgid "submission.submit.upload" -msgstr "Carica" - -msgid "submission.submit.upload.description" -msgstr "Carica i file associati a questa immissione, compresi: manoscritto, prospetto, lettera di presentazione, ecc. Per i volumi A cura di, come pure per le Monografie, carica il manoscritto in un unico file, se possibile." - -msgid "submission.submit.cancelSubmission" -msgstr "" -"\n" -"? possibile completare questo caricamento in un secondo momento selezionando Attiva immissioni a partire dalla homepage dell'Autore." - -msgid "submission.submit.copyrightNoticeAgree" -msgstr "Accetto i termini stabiliti dalla legge sul copyright." - -msgid "submission.submit.selectSeries" -msgstr "Scegli una collana... " - -msgid "submission.submit.seriesPosition" -msgstr "Posizione occupata nella collana (cio?, Libro 2, o Volume 2)" - -msgid "submission.submit.form.localeRequired" -msgstr "Per favore, scegli la lingua del caricamento." - -msgid "submission.submit.privacyStatement" -msgstr "Informativa sulla privacy" - -msgid "submission.submit.contributorRole" -msgstr "Ruolo del collaboratore" - -msgid "submission.submit.form.authorRequired" -msgstr "? obbligatorio inserire almeno un autore." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "? obbligatorio inserire il nome, il cognome e l'indirizzo email di ciascun autore." - -msgid "submission.submit.form.titleRequired" -msgstr "Per favore, inserisci il titolo della tua Monografia." - -msgid "submission.submit.form.abstractRequired" -msgstr "Per favore, inserisci un breve riassunto della tua Monografia." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Per favore, scegli il ruolo del collaboratore." - -msgid "submission.submit.submissionFile" -msgstr "File da sottomettere" - -msgid "submission.submit.prepare" -msgstr "Prepara" - -msgid "submission.submit.catalog" -msgstr "Catalogo" - -msgid "submission.submit.metadata" -msgstr "Metadati" - -msgid "submission.submit.finishingUp" -msgstr "Concludi" - -msgid "submission.submit.nextSteps" -msgstr "Prossimi passi" - -msgid "submission.submit.coverNote" -msgstr "Nota di copertina dell'Editor" - -msgid "submission.submit.generalInformation" -msgstr "Informazioni generali" - -msgid "submission.submit.whatNext.description" -msgstr "La Press ? stata informata del tuo caricamento e ti ? stata inviata una email di conferma. Appena l'editor avr? visionato il tuo lavoro, si metter? in contatto con te." - -msgid "submission.submit.checklistErrors" -msgstr "Per favore, leggi e spunta le voci della checklist per il caricamento. Ci sono {$itemsRemaining} voci ancora non controllate." - -msgid "submission.submit.placement" -msgstr "Posizione del caricamento" - -msgid "submission.submit.placement.seriesDescription" -msgstr "Nel caso in cui il libro debbe far parte di una collana..." - -msgid "submission.submit.placement.seriesPositionDescription" -msgstr "I titoli presenti in una collana vengono di norma riportati in un ordine inverso rispetto a quello di pubblicazione; ci? serve a dare il senso dello sviluppo della collana e per mantenere in testa i titoli pi? recenti." - -msgid "submission.submit.placement.categories" -msgstr "Categorie" - -msgid "submission.submit.placement.categoriesDescription" -msgstr "Seleziona una delle categorie della Press che vuoi attribuire a questo documento." - -msgid "submission.submit.userGroup" -msgstr "Carico nel mio ruolo di..." - -msgid "submission.submit.userGroupDescription" -msgstr "Se stai caricando un \"Volume edito\" devi scegliere il ruolo \"Curatore del volume\"." - -msgid "submission.submit.confirmExpedite" -msgstr "Conferma i metadati per velocizzare il caricamento" - -msgid "grid.chapters.title" -msgstr "Capitoli" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Cancella il caricamento del Copyeditor" - -msgid "submission.editCatalogEntry" -msgstr "Accesso" - -msgid "submission.catalogEntry.new" -msgstr "Nuovo accesso al Catalogo" - -msgid "submission.catalogEntry.confirm" -msgstr "Crea un punto di accesso nel Catalogo per questo libro a partire dai metadati che seguono." - -msgid "submission.catalogEntry.confirm.required" -msgstr "Per favore, conferma che l'immissione ? pronta per entrare nel Catalogo." - -msgid "submission.catalogEntry.isAvailable" -msgstr "Questa Monografia ? pronta per essere aggiunta al Catalogo pubblico." - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monografia" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Catalogo" - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Formato di Pubblicazione" - -msgid "submission.event.participantAdded" -msgstr "\"{$name}\" ({$username}) ? stato aggiunto a {$userGroupName}." - -msgid "submission.event.participantRemoved" -msgstr "\"{$name}\" ({$username}) ? stato cancellato da {$userGroupName}." - -msgid "submission.event.metadataPublished" -msgstr "I metadati della Monografia sono stati approvati per la pubblicazione." - -msgid "submission.event.metadataUnpublished" -msgstr "I metadati della Monografia non sono pi? pubblici." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Il formato \"{$publicationFormatName}\" ? ora disponibile." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Il formato \"{$publicationFormatName}\" non ? pi? disponibile." - -msgid "submission.event.publicationFormatPublished" -msgstr "Il formato \"{$publicationFormatName}\" ? stato approvato per la pubblicazione." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "Il formato \"{$publicationFormatName}\" non ? pi? pubblicato." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "I metadati del catalogo sono stati aggiornati." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "I metadati \"{$formatName}\" ? stato aggiornato." - -msgid "submission.event.publicationFormatCreated" -msgstr "Il formato \"{$formatName}\" ? stato creato." - -msgid "submission.event.publicationFormatRemoved" -msgstr "Il formato \"{$formatName}\" ? stato rimosso." - -msgid "submission.submit.titleAndSummary" -msgstr "Titolo e Sommario" - -msgid "metadata.property.displayName.date" -msgstr "Data di pubblicazione" - -msgid "submission.publication" -msgstr "Pubblicazione" - -msgid "publication.status.published" -msgstr "Pubblicato" - -msgid "submission.status.scheduled" -msgstr "Pianificato" - -msgid "publication.status.unscheduled" -msgstr "Rimosso dalla pianficazione" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"L'anno di copyright sarà configurato automaticamente quando questo articolo " -"sarà assegnato ad un'uscita." - -msgid "publication.datePublished" -msgstr "Data di pubblicazione" - -msgid "publication.editDisabled" -msgstr "Questa versione è stata pubblicata e non può' essere modificata." - -msgid "publication.event.published" -msgstr "Questo articolo è stato pubblicato." - -msgid "publication.event.scheduled" -msgstr "Questo articolo è stato assegnato ad una uscita." - -msgid "publication.event.unpublished" -msgstr "Questo articolo è stato rimosso da un'uscita." - -msgid "publication.event.versionPublished" -msgstr "E' stata pubblicata una nuova versione." - -msgid "publication.event.versionScheduled" -msgstr "Una nuova versione è stata pianificata per la pubblicazione." - -msgid "publication.event.versionUnpublished" -msgstr "Una versione non è più pubblicata." - -msgid "publication.invalidSubmission" -msgstr "L'articolo per questa uscita non è stato trovato." - -msgid "publication.publish" -msgstr "Pubblicare" - -msgid "publication.publish.requirements" -msgstr "Prima della pubblicazione confermare i seguenti requisiti." - -msgid "publication.required.declined" -msgstr "Un'articolo rigettato non puo' essere pubblicato." - -msgid "publication.required.reviewStage" -msgstr "" -"Per essere pubblicato un'articolo deve essere nella fase di copy-editing o " -"produzione." - -msgid "publication.unpublish" -msgstr "Rimuovi dalla pubblicazione" - -msgid "publication.unpublish.confirm" -msgstr "Confermi di non voler pubblicare questo articolo?" - -msgid "publication.unschedule.confirm" -msgstr "Confermi di non voler pianificare la pubblicazione di questo articolo?" - -msgid "publication.version.details" -msgstr "Dettagli di pubblicazione per la versione {$version}" - -msgid "submission.queries.production" -msgstr "Discussioni durante la produzione" - -msgid "submission.editorName" -msgstr "{$editorName} (cur.)" diff --git a/locale/ku_IQ/manager.po b/locale/ku_IQ/manager.po deleted file mode 100644 index 2e24abe213d..00000000000 --- a/locale/ku_IQ/manager.po +++ /dev/null @@ -1,397 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-13 01:02+0000\n" -"Last-Translator: Hewa Salam Khalid \n" -"Language-Team: Kurdish \n" -"Language: ku_IQ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.setup.homepageContent" -msgstr "ناوەرۆکی پەڕەی سەرەکی" - -msgid "manager.setup.pressArchiving" -msgstr "ئەرشیفکردنی بڵاوکراوە" - -msgid "manager.setup.aboutPress" -msgstr "دەربارەی بڵاوکراوەکە" - -msgid "manager.setup.pressDescription.description" -msgstr "ناساندنێکی کورتی بڵاوکراوەکەت." - -msgid "manager.setup.pressDescription" -msgstr "کورتەی بڵاوکراوە" - -msgid "manager.setup.privacyStatement.success" -msgstr "تایبەتمەندێتی نوێ کرایەوە." - -msgid "manager.setup.policies" -msgstr "سیاسەتەکان" - -msgid "manager.setup.onlineIssn" -msgstr "ISSNی ئۆنلاین" - -msgid "manager.setup.numPageLinks" -msgstr "لینکی پەیجەکان" - -msgid "manager.setup.note" -msgstr "تێبینی" - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "هیچ ستایلێک بار نەکراوە." - -msgid "manager.setup.noImageFileUploaded" -msgstr "هیچ وێنەیەک بار نەکراوە." - -msgid "manager.setup.managingThePress" -msgstr "هەنگاوی چوارەم: بەڕێوەبردن و ڕێکخستنەکان" - -msgid "manager.setup.settings" -msgstr "ڕێکخستنەکان" - -msgid "manager.setup.look" -msgstr "سەیرکردن و هەستکردن" - -msgid "manager.setup.lists.success" -msgstr "لیستەکانی ئەم گۆڤارە نوێ کرانەوە." - -msgid "manager.setup.lists" -msgstr "لیستەکان" - -msgid "manager.setup.layoutTemplates.title" -msgstr "ناونیشان" - -msgid "manager.setup.layoutTemplates.file" -msgstr "فایلی قاڵب" - -msgid "manager.setup.layoutTemplates" -msgstr "قاڵبەکانی لەیئاوت" - -msgid "manager.setup.layoutInstructions" -msgstr "ڕێنماییەکانی لەیئاوت" - -msgid "manager.setup.layoutAndGalleys" -msgstr "سەرنوسەرانی لەیئاوت" - -msgid "manager.setup.labelName" -msgstr "ناوی لەیبڵ" - -msgid "manager.setup.keyInfo" -msgstr "زانیارییە گرنگەکان" - -msgid "manager.setup.itemsPerPage" -msgstr "دانەکان بە گوێرەی پەڕەکان" - -msgid "manager.setup.institution" -msgstr "دەزگا" - -msgid "manager.setup.information.success" -msgstr "زانیارییەکانی ئەم بڵاوکراوەیە نوێ کرانەوە." - -msgid "manager.setup.information.forReaders" -msgstr "بۆ خوێنەران" - -msgid "manager.setup.information.forLibrarians" -msgstr "بۆ کەسانی کتێبخانە" - -msgid "manager.setup.information.forAuthors" -msgstr "بۆ نوسەران" - -msgid "manager.setup.information" -msgstr "زانیاری" - -msgid "manager.setup.identity" -msgstr "ناسنامەی بڵاوکراوە" - -msgid "manager.setup.preparingWorkflow" -msgstr "هەنگاوی سێیەم: ئامادەکردنی ڕێڕەوی کار" - -msgid "manager.setup.guidelines" -msgstr "ڕێبەرییەکان" - -msgid "manager.setup.generalInformation" -msgstr "زانیاریی گشتی" - -msgid "manager.setup.form.supportNameRequired" -msgstr "ناوی پەیوەندیی هاریکار داوا کراوە." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "ئیمەیڵی هاریکار داوا کراوە." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "ژمارەی هەڵسەنگێنەران بۆ هەر پێشکەشکردنێک داوا کراوە." - -msgid "manager.setup.form.contactNameRequired" -msgstr "ناوی سەرەکی بۆ پەیوەندیکردن داوا کراوە." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "ئیمەیڵی سەرەکی داوا کراوە." - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "پێنوێنیکردنی بڵاوکراوەکان بۆ نوسەران" - -msgid "manager.setup.focusScopeDescription" -msgstr "نمونەی داتای HTML " - -msgid "manager.setup.focusScope" -msgstr "سەرنج و ئامانج" - -msgid "manager.setup.focusAndScope" -msgstr "سەنج و ئامانجی بڵاوکراوەکە" - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "پیشاندانی پەڕەی سەرەکی" - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "چالاککردنی ئاگادارکردنەوەکان" - -msgid "manager.setup.emailSignature" -msgstr "واژۆ" - -msgid "manager.setup.emails" -msgstr "ناسێنەری ئیمەیڵ" - -msgid "manager.setup.editorDecision" -msgstr "بڕیاری سەرنوسەر" - -msgid "manager.setup.doiPrefix" -msgstr "پێشگری ناسێنەری سەرچاوە دیجیتاڵییەکان" - -msgid "manager.setup.displayNewReleases.label" -msgstr "بەرهەمی نوێ" - -msgid "manager.setup.displayOnHomepage" -msgstr "ناوەرۆکی پەڕەی سەرەکی" - -msgid "manager.setup.details" -msgstr "زانیارییەکان" - -msgid "manager.setup.customTags" -msgstr "تاگکردن" - -msgid "manager.setup.copyrightNotice" -msgstr "ئاگادارکردنەوەی وردبینی" - -msgid "manager.setup.copyeditInstructions" -msgstr "ڕێنماییەکانی وردبینی" - -msgid "manager.setup.copyediting" -msgstr "وردبینەکان" - -msgid "manager.setup.contextSummary" -msgstr "کورتکراوەیەک دەربارەی بڵاوکراوەکە" - -msgid "manager.setup.contextAbout" -msgstr "دەربارەی بڵاوکراوەکە" - -msgid "manager.setup.announcementsIntroduction" -msgstr "زانیاریی گشتی" - -msgid "manager.setup.announcements" -msgstr "ئاگادارکردنەوەکان" - -msgid "manager.setup.addSponsor" -msgstr "دەزگای سپۆنسەر زیاد بکە" - -msgid "manager.setup.addNavItem" -msgstr "دانەیەک زیاد بکە" - -msgid "manager.setup.addItem" -msgstr "دانەیەک زیاد بکە" - -msgid "manager.setup.addAboutItem" -msgstr "زیادکردنی دەربارەی" - -msgid "manager.setup.aboutItemContent" -msgstr "ناوەرۆک" - -msgid "manager.setup" -msgstr "ڕێکخستن" - -msgid "manager.pressManagement" -msgstr "بەڕێوەبردنی بڵاوکراوە" - -msgid "manager.system.payments" -msgstr "پارەدانەکان" - -msgid "manager.system.readingTools" -msgstr "کەرەستەکانی خوێندنەوە" - -msgid "manager.system.reviewForms" -msgstr "فۆڕمەکانی هەڵسەنگاندن" - -msgid "manager.system.archiving" -msgstr "ئەرشیفکردن" - -msgid "manager.system" -msgstr "ڕێکخستنەکانی سیستەمەکە" - -msgid "manager.people.enrollSyncPress" -msgstr "لەگەڵ بڵاوکراوە" - -msgid "manager.people.enrollExistingUser" -msgstr "هەمو بەکارهێنەرەکان تۆمار بکە" - -msgid "manager.people.allUsers" -msgstr "هەمو بەکارهێنەرە تۆمارکراوەکان" - -msgid "manager.people.allSiteUsers" -msgstr "بەکارهێنەرێک لەم پەڕەیە و لەم بڵاوکراوەیە تۆمار بکە" - -msgid "manager.people.allPresses" -msgstr "هەمو بڵاوکراوەکان" - -msgid "manager.people.allEnrolledUsers" -msgstr "ئەو بەکارهێنەرانەی لەم بڵاوکراوەیە تۆمار کراون" - -msgid "manager.users.selectRole" -msgstr "ڕۆڵێک دیاری بکە" - -msgid "manager.users.currentRoles" -msgstr "ڕۆڵەکانی ئێستا" - -msgid "manager.users.availableRoles" -msgstr "ڕۆڵە چالاکەکان" - -msgid "manager.tools" -msgstr "کەرەستەکان" - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "پەڕەی پیشاندانی بڵاوکراوەکان" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "پەڕەی سەرەکیی پیشاندانی زنجیرەکان" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "دابەزاندنی پوختەی مۆنۆگرافەکان" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "پیشاندانی پەڕەی پوختەی مۆنۆگرافەکان" - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "دابەزاندنی فایلی مۆنۆگراف" - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "ئەم جۆری کۆدە نابێت." - -msgid "manager.settings.publisherCodeType" -msgstr "جۆری کۆدی بڵاوکەرەوە" - -msgid "manager.settings.publisherCode" -msgstr "کۆدی بڵاوکەرەوە" - -msgid "manager.settings.location" -msgstr "شوێنی جوگرافی" - -msgid "manager.settings.publisher" -msgstr "ناوی بڵاوکەرەوە" - -msgid "manager.settings.publisher.identity" -msgstr "ناسنامەی بڵاوکەرەوە" - -msgid "manager.settings.press" -msgstr "بڵاوکراوە" - -msgid "manager.settings.pressSettings" -msgstr "ڕێکخستنی بڵاوکراوەکە" - -msgid "manager.settings" -msgstr "ڕێکخستنەکان" - -msgid "manager.payment.success" -msgstr "ڕێکخستنی شێوازی پارەدان نوێ کرایەوە." - -msgid "manager.payment.options.enablePayments" -msgstr "" -"پارە بۆ ئەم بڵاوکراوەیە چالاک دەکرێت. تێبینی؛ بەکارهێنان لە کاتی داخل بوندا " -"ئاگادار دەکرێنەوە بۆ پارەدان." - -msgid "manager.payment.generalOptions" -msgstr "بژاردە گشتییەکان" - -msgid "manager.series.restricted" -msgstr "ڕێگا بە نوسەران مەدە کە بە ڕاستەوخۆیی بۆ ئەم زنجیرەیە پێشکەش بکەن." - -msgid "manager.series.seriesTitle" -msgstr "ناونیشانی زنجیرە" - -msgid "manager.series.existingUsers" -msgstr "بەکارهێنەرە تۆمارکراوەکان" - -msgid "manager.series.noneCreated" -msgstr "هیچ زنجیرەیەک دروست نەکراوە." - -msgid "manager.series.form.titleRequired" -msgstr "ناونیشانێک بۆ زنجیرەکە پێویستە." - -msgid "manager.series.form.abbrevRequired" -msgstr "ناونیشانێکی کورتکراوە بۆ ئەم زنجیرەیە پێویستە." - -msgid "manager.series.unassigned" -msgstr "سەرنوسەرانی بەردەست" - -msgid "manager.series.hideAbout" -msgstr "سڕینەوەی ئەم زنجیرەیە لە بەشی دەربارەی بڵاوکراوەکە." - -msgid "manager.series.assigned" -msgstr "سەرنوسەرانی ئەم زنجیرەیە" - -msgid "manager.series.policy" -msgstr "ناساندنی زنجیرەکە" - -msgid "manager.series.create" -msgstr "زنجیرەیەک دروست بکە" - -msgid "manager.series.book" -msgstr "زنیرەی کتێب" - -msgid "manager.series.disableComments" -msgstr "تێچێنی خوێنەر ناچالاک بکە." - -msgid "manager.series.abstractsNotRequired" -msgstr "داوای پوختە مەکە" - -msgid "manager.series.submissionsToThisSection" -msgstr "ئەو بابەتانەی کە بۆ ئەم زنجیرەیە پێشکەش کراون" - -msgid "manager.series.submissionReview" -msgstr "ئەمە هەڵسەنگاندنی بۆ ناکرێت" - -msgid "manager.series.readingTools" -msgstr "کەرەستەکانی خوێندنەوە" - -msgid "manager.series.open" -msgstr "پێشکەشکردنی کراوە" - -msgid "manager.series.indexed" -msgstr "پێنوێن کرا" - -msgid "manager.series.confirmDelete" -msgstr "ئایا تۆ دڵنیایت لە سڕینەوەی تەواوی ئەم زنجیرەیە؟" - -msgid "manager.series.editorRestriction" -msgstr "بابەت تەنیا لە لایەن سەرنوسەرەکانەوە پێشکەش دەکرێت." - -msgid "manager.series.submissionIndexing" -msgstr "ئەمە لە پێنوێنی بڵاوکراوەکە بەردەست نابێت" - -msgid "manager.series.form.reviewFormId" -msgstr "تکایە لەوە دڵنیا ببە کە فۆڕمێکی هەڵسەنگاندنی دروستت هەڵ بژاردووە." - -msgid "manager.series.form.mustAllowPermission" -msgstr "تکایە لەوە دڵنیا ببە کە بۆ هەر ئەرکێک بۆکسێک دەستنیشان کرابێت." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "ئەم زمانە زمانی سەرەکیی پەڕەیە دەبێت." - -msgid "manager.languages.noneAvailable" -msgstr "" -"ببورە ئەم زمانە بەردەست نییە. پەیوەندی بە بەڕێوەبەرانی پەڕەکەوە بکە ئەگەر تۆ " -"دەتەوێت زمانێکی تایبەت بۆ ئەم بڵاوکراوەیە بەکار بهێنیت." - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "ئەمەڕێکخستنی هەمو بڵاوکراوەکان ئاڵوگۆڕ دەکات کە تۆ هەتە" diff --git a/locale/ku_IQ/submission.po b/locale/ku_IQ/submission.po deleted file mode 100644 index 020c08ab9ba..00000000000 --- a/locale/ku_IQ/submission.po +++ /dev/null @@ -1,5 +0,0 @@ - - -msgid "submission.status.scheduled" -msgstr "لە خشتەی کار دانراوە" - diff --git a/locale/ky/admin.po b/locale/ky/admin.po new file mode 100644 index 00000000000..461d7aaaab8 --- /dev/null +++ b/locale/ky/admin.po @@ -0,0 +1,3 @@ +# Mahmut VURAL , 2024. +msgid "" +msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" diff --git a/locale/mk/admin.po b/locale/mk/admin.po new file mode 100644 index 00000000000..d758c762c7b --- /dev/null +++ b/locale/mk/admin.po @@ -0,0 +1,195 @@ +# Mirko Spiroski , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-11-21 10:41+0000\n" +"Last-Translator: Mirko Spiroski \n" +"Language-Team: Macedonian \n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "admin.hostedContexts" +msgstr "Наши Изданија" + +msgid "admin.settings.appearance.success" +msgstr "Подесувањата за изгледот на страната се успешно ажурирани." + +msgid "admin.settings.config.success" +msgstr "Поставките за конфигурација на страницата се успешно ажурирани." + +msgid "admin.settings.info.success" +msgstr "Информациите за страницата се успешно ажурирани." + +msgid "admin.settings.redirect" +msgstr "Пренасочување кон издание" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Барањата до главната страница ќе бидат пренасочени кон ова издание. Ова може " +"да биде корисно доколку страницата има само едно издание, на пример." + +msgid "admin.settings.noPressRedirect" +msgstr "Не пренасочувај" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Ова ќе биде основниот јазик за страната и сите изданија што се зачувани на " +"страната." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Изберете ги сите локации за поддршка на страницата. Избраните локации ќе " +"бидат достапни за употреба од сите изданија зачувани на страницата, и исто " +"така ќе се појават во менито за избирање на јазик на секоја страница на " +"страната(што може да се пребрише на страници специфични за изданието). Ако " +"повеќе локации не се избрани, менито за промена на јазик нема да се појави и " +"проширените поставки за јазик нема да бидат достапни за изданијата." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Означените локации може да бидат нецелосни." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Дали сте сигурни дека сакате да ја избришете оваа локација? Ова може да " +"влијае на сите изданија што се зачувани на оваа локација." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Изберете дополнителни локации за инсталирање поддршка на овој систем. " +"Локациите мора да бидат инсталирани пред да можат да се користат од " +"зачуваните изданија. Погледнете ја документацијата на ОМП за информации за " +"додавање поддршка за нови јазици." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Дали сте сигурни дека сакате да ја оневозможите оваа локација? Ова може да " +"влијае на сите зачувани изданија кои ја користат локацијата." + +msgid "admin.systemVersion" +msgstr "ОМП Верзија" + +msgid "admin.systemConfiguration" +msgstr "ОМП Конфигурација" + +msgid "admin.presses.pressSettings" +msgstr "Подесувања на Издание" + +msgid "admin.presses.noneCreated" +msgstr "Не се создадени изданија." + +msgid "admin.contexts.create" +msgstr "Креирај Издание" + +msgid "admin.contexts.form.titleRequired" +msgstr "Потребен е наслов." + +msgid "admin.contexts.form.pathRequired" +msgstr "Потребна е патека." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Патеката може да вклучува само букви, броеви и знаци _ и -. Мора да започне " +"и да заврши со буква или број." + +msgid "admin.contexts.form.pathExists" +msgstr "Селектираната патека веќе се користи за друго издание." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "Главниот локал мора да биде еден од поддржаните локали на изданието." + +msgid "admin.contexts.form.create.success" +msgstr "{$ name} е успешно креирано." + +msgid "admin.contexts.form.edit.success" +msgstr "{$ name} е успешно изменето." + +msgid "admin.contexts.contextDescription" +msgstr "Опис на издание" + +msgid "admin.presses.addPress" +msgstr "Додади Издание" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

      ЗАБЕЛЕШКА! \n" +"

      Системот не може автоматски да ја замени конфигурациската датотека. За " +"да ги примените промените во конфигурацијата, мора да отворите " +"config.inc.php во соодветен уредувач на текст и да ја замените " +"неговата содржина со содржината на полето за текст подолу.

      " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Изберете ги хостираните изданија на кои треба да им биде дозволено да " +"испраќаат и-меил во големи количини. Кога е овозможена оваа функција, " +"менаџерот на изданието ќе може да испраќа и-меил до сите корисници " +"регистрирани на нивното издание.

      Злоупотреба на оваа функција како би " +"се испраќала непосакувана е-пошта може да ги прекрши анти-спам законите во " +"некои подрачја и може да доведе до блокирање на е-поштата од вашиот сервер " +"како спам. Побарајте техничко мислење пред да ја овозможите оваа функција и " +"размислете за консултација до менџери на изданија за да се уверите дека е " +"правилно користена.

      Дополнителни ограничувања на оваа функција може " +"да бидат овозможени за секое издание со посета на неговиот волшебник за " +"поставки во листата со Хостирани " +"изданија." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Менаџерот на изданието нема да може да испраќа е-пошта во големи количини до " +"било која од избраните улоги подолу. Користете ја оваа поставка за да ја " +"ограничите злоупотребата на функцијата за известувања преку е-пошта. На " +"пример, можно е да биде побезбедно да оневозможите испраќање на е-пошта во " +"големи количини до читатели, автори, или други големи групи на корисници кои " +"не се согласиле да примаат таква е-пошта.

      Функцијата за испраќање е-" +"пошта во големи количини за ова издание може да биде целосно оневозможена " +"преку Администратор > Поставки на " +"веб-страницата." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Функцијата за испраќање е-пошта во големи количини е оневозможена за ова " +"издание. Овозможете ја оваа функција преку Администратор > Поставки на веб-страницата." + +msgid "admin.siteManagement.description" +msgstr "" +"Додади, корегирај или отстрани книги од овој сајт и менаџирај ги проширените " +"подесувања." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "ИД на поглавјето не е цел број" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "ИД на серијата не е цел број" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Одбери вид географска употреба на статитистика која може да ги опфати " +"објавите во овој сајт. Подетална географска статистика може значајно да ја " +"зголеми вашата база на податоци, а, во некои случаи, може да ја поткопа " +"анонимноста на вашите посетители. Секоја објава може да се подеси различно, " +"но објавата никогаш не може да собере повеќе детални записи отколку оваа " +"конфигурација. На пример, ако сајтот поддржува само место и регион, објавата " +"може да ги избере земјата и регионот или само земјата." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Овозможи институционална статистика ако сакаш објавите од овој сајт да можат " +"да собираат корисничка статистика од институциите. На објавите им треба " +"додавање на институции и нивните ИП опсези за да се користат во иднина. " +"Додадвање институционална статистика може значително да ја зголеми вашата " +"база на податоци." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Дали ќе се направат или нема да се направат SUSHI API тие се јавно достапни " +"за сите објави на овој сајт. Ако овозможите јавни API, секоја објава може да " +"ги препокрие овие подесувања за да ја направат статистиката приватна. " +"Меѓутоа, ако ги оневозможите јавните API, објавите на можат да ги направат " +"јавни нивните API." + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Користете ја страницата како платформа за сите објави." diff --git a/locale/mk/api.po b/locale/mk/api.po new file mode 100644 index 00000000000..c98d09c498f --- /dev/null +++ b/locale/mk/api.po @@ -0,0 +1,45 @@ +# Teodora Fildishevska , 2022. +# Mirko Spiroski , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-14 20:17+0000\n" +"Last-Translator: Mirko Spiroski \n" +"Language-Team: Macedonian " +"\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Мора да наведете еден или повеќе легитимации за поднесување што ќе бидат " +"додадени во каталогот." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "Не може да се најдат еден или повеќе од поднесоците што ги наведовте." + +msgid "api.submissions.400.wrongContext" +msgstr "Поднесокот кој го побаравте не е во ова издание." + +msgid "api.emails.403.disabled" +msgstr "" +"Функцијата за известување преку е-пошта не е овозможена за ова издание." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"Немате дозвола да го преместите овој образец за е-пошта на друго издание." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "Публикацијата што ја побаравте не е дел од ова издание." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "Публикацијата што ја побаравте не е дел од овој поднесок." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Не можете да го промените изданието на поднесокот." + +msgid "api.submission.400.inactiveSection" +msgstr "Оваа секција повеќе не прима поднесоци." diff --git a/locale/mk/author.po b/locale/mk/author.po new file mode 100644 index 00000000000..dd3162eb1ca --- /dev/null +++ b/locale/mk/author.po @@ -0,0 +1,19 @@ +# Teodora Fildishevska , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-11 05:56+0000\n" +"Last-Translator: Teodora Fildishevska \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "author.submit.notAccepting" +msgstr "Ова издание не прифаќа поднесоци во овој момент." + +msgid "author.submit" +msgstr "Нов поднесок" diff --git a/locale/mk/default.po b/locale/mk/default.po new file mode 100644 index 00000000000..d461b5f68a1 --- /dev/null +++ b/locale/mk/default.po @@ -0,0 +1,219 @@ +# Teodora Fildishevska , 2022. +# Mirko Spiroski , 2023. +# Ana Vucurevic , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-11-26 20:37+0000\n" +"Last-Translator: Mirko Spiroski \n" +"Language-Team: Macedonian \n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "default.genres.appendix" +msgstr "Додаток" + +msgid "default.genres.bibliography" +msgstr "Библиографија" + +msgid "default.genres.manuscript" +msgstr "Манускрипт на Книга" + +msgid "default.genres.chapter" +msgstr "Манускрипт на Глава" + +msgid "default.genres.glossary" +msgstr "Речник" + +msgid "default.genres.index" +msgstr "Индекс" + +msgid "default.genres.preface" +msgstr "Вовед" + +msgid "default.genres.prospectus" +msgstr "Проспект" + +msgid "default.genres.table" +msgstr "Табела" + +msgid "default.genres.figure" +msgstr "Број" + +msgid "default.genres.photo" +msgstr "Фотографија" + +msgid "default.genres.illustration" +msgstr "Илустрација" + +msgid "default.genres.other" +msgstr "Останато" + +msgid "default.groups.name.manager" +msgstr "Менаџер за издание" + +msgid "default.groups.plural.manager" +msgstr "Менаџери за издание" + +msgid "default.groups.abbrev.manager" +msgstr "ПМ" + +msgid "default.groups.name.editor" +msgstr "Уредник на издание" + +msgid "default.groups.plural.editor" +msgstr "Уредници на издание" + +msgid "default.groups.abbrev.editor" +msgstr "ПЕ" + +msgid "default.groups.name.sectionEditor" +msgstr "Уредник на серии" + +msgid "default.groups.plural.sectionEditor" +msgstr "Уредници на серии" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "КкбИ" + +msgid "default.groups.name.subscriptionManager" +msgstr "Менаџер за претплата" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Менаџери за претплата" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "СубМ" + +msgid "default.groups.name.chapterAuthor" +msgstr "Автор на Глава" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Автори на Глава" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "ЦА" + +msgid "default.groups.name.volumeEditor" +msgstr "Уредник на Том" + +msgid "default.groups.plural.volumeEditor" +msgstr "Уредници на Том" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "ВЕ" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

      Авторите се поканети да поднесат поднесок во ова списание. Оние поднесоци " +"кои се сметаат за погодни ќе бидат испратени на отворена рецензија пред да " +"се одреди дали ќе бидат прифатени или отфрлени.

      Пред да поднесат " +"поднесок, авторите се одговорни да набават дозвола за објавување на кој било " +"материјал вклучен во поднесокот, како што се фотографии, документи и збирка " +"на податоци.Сите автори идентификувани во поднесокот мора да се согласат да " +"бидат идентификувани како автори. Онаму каде што е соодветно, истражувањето " +"треба да биде одобрено од соодветен етички комитет во согласност со " +"законските барања на земјата на студијата.

      Уредникот може да одбие " +"поднесок доколку не ги исполнува минималните стандарди за квалитет.Пред да " +"поднесувате, проверете дали обемот и кратката содржина се структурирани и " +"артикулирани правилно.Насловот треба да биде концизен а апстрактот да ја " +"поддржува темата.Ова ќе ја зголеми веројатноста рецензентите да се согласат " +"да ја рецензираат книгата. Кога ќе бидете сигурни дека Вашиот поднесок ги " +"исполнува стандардите, Ве молиме следете ја контролната листа подолу за да " +"го подготвите Вашиот поднесок.

      " + +msgid "default.contextSettings.checklist" +msgstr "" +"

      Сите поднесоци мора да ги исполнуваат следните барања.

      • Овој " +"поднесок ги исполнува условите наведени во Упатства за автори.
      • Овој поднесок " +"не е претходно објавен, ниту е се разгледува од друго списание.
      • Сите " +"референци се проверени за точност и комплетност.
      • Сите табели и " +"слики се нумерирани и означени.
      • Добиена е дозвола за објавување на " +"сите слики, збирки на податоци и други материјали обезбедени со овој " +"поднесок.
      " + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

      Имињата и адресите за е-пошта внесени на оваа страница за изданието ќе " +"се користат исклучиво за наведените цели на ова издание и нема да бидат " +"достапни за било која друга цел или на било која друга страна.

      " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Ова издание обезбедува непосреден отворен пристап до неговата содржина врз " +"принципот дека ставањето истражувања слободно достапни за јавноста поддржува " +"поголема глобална размена на знаење." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Ние ги охрабруваме читателите да се пријават на услугата за известување за " +"објавување за ова издание. Користете ја врската Регистрирај се на горниот дел од " +"почетната страница за изданието. Оваа регистрација ќе резултира со тоа што " +"читателот ќе ја добие Содржината по е-пошта за секоја нова монографија на " +"изданието. Оваа листа исто така му овозможува на изданието да бара одредено " +"ниво на поддршка или читателска публика. Погледнете го изданието Изјава за " +"приватност што ги уверува читателите дека нивното име и адреса на е-" +"пошта нема да се користат за други цели." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Заинтересирани сте да се пријавите на ова издание? Препорачуваме да ја " +"прегледате За страницата " +"„Издание“ страницата за политиките на делот за изданието и " +"Упатства за автори Авторите треба да регистрираат со изданието пред да ги " +"достават, или ако веќе се регистрирани можат едноставно најавете се и започнете го процесот со 5 " +"чекори." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Ние ги охрабруваме библиотекарите за истражување да го наведат ова издание " +"меѓу електронските изданија на нивната библиотека. Исто така, овој систем за " +"објавување со отворен извор е погоден за библиотеки да ги зачувуваат на " +"нивните членови на факултет за да ги користат со изданието што го вклучуваат " +"во уредувањето (видете Отвори монографско " +"издание )." + +msgid "default.groups.name.externalReviewer" +msgstr "Надворешен Рецензент" + +msgid "default.groups.plural.externalReviewer" +msgstr "Надворешни Рецензенти" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "НР" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Текстот се придржува до стилските и библиографските барања наведени во Упатства за автори , што се наоѓаат во За " +#~ "Изданието." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Текстот е еднопростор; користи фонт бр. 12; применува ракописно пишување, " +#~ "наместо подвлекување (освен со URL адреси); и сите илустрации, слики и " +#~ "табели се ставаат во текстот во соодветните точки, наместо на крајот." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "Онаму каде што е достапно, обезбедени се URL-адреси за референци." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Датотеката за поднесување е во формат на датотека Microsoft Word, RTF или " +#~ "OpenDocument." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Поднесокот не е објавен претходно, ниту е пред друго издание за " +#~ "разгледување (или е дадено објаснување во Коментари до уредникот)." diff --git a/locale/mk/editor.po b/locale/mk/editor.po new file mode 100644 index 00000000000..f4914257c65 --- /dev/null +++ b/locale/mk/editor.po @@ -0,0 +1,213 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-04 22:32+0000\n" +"Last-Translator: Blagoja Grozdanovski \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Архива на Поднесување" + +msgid "editor.monograph.cancelReview" +msgstr "Откажи го Барањето" + +msgid "editor.monograph.clearReview" +msgstr "Исчисти Рецензент" + +msgid "editor.monograph.enterRecommendation" +msgstr "Внеси Препорака" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Внеси Препорака на Рецензент" + +msgid "editor.monograph.recommendation" +msgstr "Препорака" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Изберете рецензент погоре и притиснете го копчето „Избери рецензент“ за да " +"продолжите." + +msgid "editor.monograph.replaceReviewer" +msgstr "Замени го Рецензентот" + +msgid "editor.monograph.editorToEnter" +msgstr "Уредник за внесување препорака / коментари за рецензент" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Прегледајте преглед" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Опции за преглед на врсници" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Лекторирање Датотеки" + +msgid "editor.monograph.internalReview" +msgstr "Иницирајте Внатрешен Преглед" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Изберете датотеки подолу за да ги испратите во фазата на внатрешно " +"разгледување." + +msgid "editor.monograph.externalReview" +msgstr "Иницирајте Надворешен Преглед" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Изберете Конечни Датотеки за Нацрт" + +msgid "editor.monograph.final.currentFiles" +msgstr "Тековни Датотеки за Конечни Нацрти" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Тековни Датотеки" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Порака до корисник" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Акции за Поднесување" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Целосни активности и опции за поднесување." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Акции на Дел" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Опции определени за даден дел, на пример, поставување датотеки или додавање " +"корисници." + +msgid "editor.monograph.legend.itemActions" +msgstr "Акции за Артикл" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Дејства и опции определени за индивидуална датотека." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Прегледувајте и управувајте со записот во каталогот за поднесување, " +"вклучувајќи метаподатоци и формати за објавување" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Прегледувајте и управувајте со метаподатоците за поднесување, белешките, " +"известувањата и историјата" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Прегледај ги и управувај со учесниците на овој поднесок: автори, уредници, " +"дизајнери и многу повеќе" + +msgid "editor.monograph.legend.add" +msgstr "Поставете датотека во секцијата" + +msgid "editor.monograph.legend.add_user" +msgstr "Додадете корисник во секцијата" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Прегледувај и пристапи до поставките на ставките, како што се информации и " +"опции за бришење" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"Повеќе информации: белешки за датотеки, опции за известување и историја" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Информации за датотеката: белешки, опции за известување и историја (сè уште " +"не се додадени белешки)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Информации за датотеката: белешки, опции за известување и историја " +"(Белешките се достапни)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Информации за датотеката: белешки, опции за известување и историја (додадени " +"нови белешки од последната посета)" + +msgid "editor.monograph.legend.edit" +msgstr "Уредете ставка" + +msgid "editor.monograph.legend.delete" +msgstr "Избришете ставка" + +msgid "editor.monograph.legend.in_progress" +msgstr "Акцијата е во тек или сè уште не е завршена" + +msgid "editor.monograph.legend.complete" +msgstr "Акцијата заврши" + +msgid "editor.monograph.legend.uploaded" +msgstr "Датотеката е поставена според улогата во насловот на мрежната колона" + +msgid "editor.submission.introduction" +msgstr "" +"Во Поднесувањето, уредникот, по консултација со доставените датотеки, избира " +"соодветно дејство (што вклучува известување за авторот): Испрати до " +"внатрешен преглед (вклучува избор на датотеки за внатрешен преглед); " +"Испратете до надворешен преглед (вклучува избор на датотеки за надворешен " +"преглед); Прифатете го поднесувањето (вклучува избор на датотеки за " +"уредничката фаза); или Одбијте го поднесувањето (поднесување архива)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Добра Копија" + +msgid "editor.monograph.proofs" +msgstr "Докази" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Одобрување и објавување" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Различни формати на публикации, како што се тврда корица, мека корица и " +"дигитални, може да се постават во делот Формати на публикации подолу. Можете " +"да ја користите табелата за формати на објавување подолу како список за " +"проверка за тоа што сè уште треба да се направи за да се објави формат на " +"публикација." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Додадете формати за објавување (на пример, дигитални, меки) за кои уредникот " +"за распоред подготвува докази за страницата за лекторирање. Доказите треба да се проверат како одобрени и записот Каталог за " +"форматот треба да се провери како што е објавен во записот на каталогот на " +"книгата, пред да може да се направи формат Достапно (т.е. " +"објавено)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Поставете Услови за преземање" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Поставете Услови" + +msgid "editor.monograph.proof.addNote" +msgstr "Додадете одговор" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Сите датотеки што веќе се поставени во која било фаза на поднесување може да " +"се додадат во списокот Доказни датотеки со обележување на изборното поле " +"подолу и кликнување на Пребарување: ќе бидат наведени сите достапни датотеки " +"и може да бидат избрани за вклучување." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Јавниот идентификатор '{$ publicIdentifier}' веќе постои за друг објект од " +"ист тип. Ве молиме изберете уникатни идентификатори за објекти од ист тип во " +"вашиот печат." + +msgid "editor.submissions.assignedTo" +msgstr "Додели на Уредник" diff --git a/locale/mk/emails.po b/locale/mk/emails.po new file mode 100644 index 00000000000..c398b704497 --- /dev/null +++ b/locale/mk/emails.po @@ -0,0 +1,538 @@ +# Ana Vucurevic , 2023. +# Mirko Spiroski , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-05-10 13:49+0000\n" +"Last-Translator: Mirko Spiroski \n" +"Language-Team: Macedonian \n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Потврда за ресетирање на лозинка" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Добивме барање за ресетирање на вашата лозинка за веб-страницата " +"{$siteTitle}.
      \n" +"
      \n" +"Ако не сте го побарале ова барање, игнорирајте ја оваа е-пошта и лозинката " +"нема да се смени. Ако сакате да ја ресетирате вашата лозинка, кликнете на " +"подолу URL.
      \n" +"
      \n" +"Ресетирај ја мојата лозинка: {$passwordResetUrl}
      \n" +"
      \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Притиснете Регистрација" + +msgid "emails.userRegister.body" +msgstr "" +"{$ userFullName}
      \n" +"
      \n" +"Сега сте регистрирани како корисник со {$textName}. Ние ги вклучивме вашето " +"корисничко име и лозинка во оваа е-пошта, кои се потребни за целата работа " +"со овој печат преку неговата веб-страница. Во кој било момент, може да " +"побарате да ве отстранат од списокот на корисници, контактирајќи ме.
      \n" +"
      \n" +"Корисничко име: {$ корисничко име}
      \n" +"Лозинка: {$ password}
      \n" +"
      \n" +"Ви благодариме,
      \n" +"{$ principalContactSignature}" + +msgid "emails.userValidateContext.subject" +msgstr "Валидирајте го Вашиот профил" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Креиравте профил со {$contextName}, но пред да можете да го користите, " +"морате да го валидирате Вашиот емаил . За да го направите тоа, едноставно " +"кликнете на линкот подолу:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Ви благодариме,
      \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Валидирајте го Вашиот профил" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
      \n" +"
      \n" +"Креиравте профил со {$siteTitle}, но, пред да почнете со користење, треба да " +"го валидирате Вашиот емаил. За да го направите тоа, едноставно кликнете на " +"линкот подолу:
      \n" +"
      \n" +"{$activateUrl}
      \n" +"
      \n" +"Ви благодариме,
      \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Регистрација како Рецензент со {$textName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Во согласност на вашата експертиза, ние презедовме слобода да го " +"регистрираме вашето име во базата на податоци на рецензенти за {$textName}. " +"Ова не повлекува каква било форма на обврска од ваша страна, туку едноставно " +"ни овозможува да ви пристапиме со поднесок за евентуално разгледување. Кога " +"сте поканети да ги разгледате, ќе имате можност да ги видите насловот и " +"апстрактот на предметниот труд и секогаш ќе бидете во позиција да ја " +"прифатите или одбиете поканата. Може да побарате во која било точка да го " +"отстранат вашето име од оваа листа на рецензенти.
      \n" +"
      \n" +"Ние ви обезбедуваме корисничко име и лозинка, што се користи во сите " +"интеракции со печатот преку неговата веб-страница. Можеби сакате, на пример, " +"да го ажурирате вашиот профил, вклучително и вашите интереси за " +"прегледување.
      \n" +"
      \n" +"Корисничко име: {$ корисничко име}
      \n" +"Лозинка: {$ password}
      \n" +"
      \n" +"Ви благодариме,
      \n" +"{$ principalContactSignature}" + +msgid "emails.editorAssign.subject" +msgstr "Уредувачка задача" + +msgid "emails.editorAssign.body" +msgstr "" +"

      Почитувани{$recipientName},

      Следниот поднесок ви е доделен за да го " +"спроведете низ уредувачкиот процес.

      {$submissionTitle}
      {$authors}

      Апстракт

      {$submissionAbstract}

      Доколку " +"сметате дека поднесокот е релевантен за {$contextName}, Ве молиме проследете " +"го поднесокот до фазата на ревизија со избирање „Испрати до внатрешна " +"ревизија“ и потоа доделете рецензенти со кликнување на „Додај рецензент“.

      Доколку поднесокот не е соодветен за ова списание, Ве молиме одбијте го " +"поднесокот.

      Ви благодариме од напред.

      Со " +"почит,

      {$contextSignature}" + +msgid "emails.reviewRequest.subject" +msgstr "Барање за преглед на ракописи" + +msgid "emails.reviewRequest.body" +msgstr "" +"

      Почитувани{$recipientName},

      Веруваме дека ќе послужите како одличен " +"рецензент за поднесокот до{$contextName}. Насловот и апстрактот на " +"поднесокот се наведени подолу, се надеваме дека ќе ја земете во предвид оваа " +"важна за нас задача .

      Доколку сте во можност да го прегледате овој " +"поднесок, Вашата ревизија треба да заврши до {$reviewDueDate}. Можете да го " +"погледнете поднесокот, да прикачите ревидирани датотеки, и да ја поднесете " +"Вашата ревизија со најавување во списанието и следење на сите чекори " +"наведени на линкот подолу.

      {$submissionTitle}

      Апстракт

      {$submissionAbstract}

      Ве " +"молимеПрифати или одбиј ревизијата од " +"{$responseDueDate}.

      Можете да не исконтактирате за било какви " +"прашања околу поднесокот или процесот на ревизија.

      Ви благодариме што " +"го земате во предвид ова барање . Вашата помош е многу ценета.

      Со " +"почит,

      {$signature}" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Барање за преглед на ревидиран поднесок" + +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

      Почитувани{$recipientName},

      Ви благодариме за Вашата ревизија на {$submissionTitle}. Авторите ги земаа во " +"предвид коментарите од рецензентите и поднесоа ревидирана верзија. Ви " +"пишувам за да ве прашам дали ќе спроведете втор круг на рецензија за овој " +"поднесок.

      Доколку сте во можност да го ревидирате овој поднесок, " +"крајниот рок за Вашата рецензија е до {$reviewDueDate}. Можете следете ги чекорите за рецензија За да го " +"погледнете поднесокот, прикачите ревидирани датотеки, и да ги поднесете " +"Вашите коментари од ревизијата.

      {$submissionTitle}

      Abstract

      {$submissionAbstract}

      Ве " +"молимеПрифатете или одбијте " +"рецензијата од {$responseDueDate}.

      Ве молиме исконтактирајте не " +"доколку имате било какви прашања во однос на поднесокот или процесот на " +"рецензирање.

      Ви благодариме што го земате во предвид ова барање. " +"Вашата помош е многу ценета.

      Со почит,

      {$signature}" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Барање за преглед на ракописи" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Почитуван {$recipientName},
      \n" +"Само нежен потсетник за нашето барање за преглед на поднесокот, " " +"{$missionTitle}, " за {$textName}. Се надевавме дека ќе го добиеме " +"вашиот одговор до {$answerDueDate} и оваа е-пошта е автоматски генерирана и " +"испратена со истекот на тој датум.\n" +"
      \n" +"{$messageToReviewer}
      \n" +"
      \n" +"Ве молиме, најавете се на веб-страницата за печат за да наведете дали ќе " +"направите преглед или не, како и за пристап до поднесокот и да ги снимите " +"прегледот и препораката.
      \n" +"
      \n" +"Самиот преглед е доставен {$reviewDueDate}.
      \n" +"
      \n" +"URL на поднесување: {$missionReviewUrl}
      \n" +"
      \n" +"Корисничко име: {$recipientUsername}
      \n" +"
      \n" +"Ви благодариме што го разгледавте ова барање.
      \n" +"
      \n" +"
      \n" +"Со почит,
      \n" +"{$contextSignature}
      \n" + +msgid "emails.reviewCancel.subject" +msgstr "Барањето за преглед е откажано" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
      \n" +"
      \n" +"Одлучивме во овој момент да го откажеме нашето барање да го разгледате " +"поднесокот, " {$missionTitle} " за {$textName}. Се извинуваме за " +"непријатностите што може да ви ги предизвикаат и се надеваме дека ќе можеме " +"да ве повикаме да ви помогнеме во овој процес на преглед во иднина.
      \n" +"
      \n" +"Ако имате какви било прашања, контактирајте ме." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Повторно е вратено барањето за преглед" + +msgid "emails.reviewReinstate.body" +msgstr "" +"

      Почитувани{$recipientName},

      Неодамна го откажавме барањето да " +"рецензирате поднесок, {$submissionTitle}, за {$contextName}. Ја сменивме таа " +"одлука и се надеваме дека сè уште ќе можете да јаспроведете рецензијата.

      Доколку сте во можност да помогнете во рецензијата на овој поднесок, " +"можете данајавете се на списанието за " +"да го погледнете поднесокот, прикачете ревидирани датотеки, и поднесете го " +"Вашето барање за рецензија.

      Доколку имате било какви прашања, Ве " +"молиме исконтактирајте не.

      Со почит,

      {$signature}" + +msgid "emails.reviewDecline.subject" +msgstr "Не може да се прегледа" + +msgid "emails.reviewDecline.body" +msgstr "" +"Уредник(ци):
      \n" +"
      \n" +"За жал, во овој момент не сум во можност да го ревидирам поднесокот, " +""{$submissionTitle}," за {$contextName}. Ви благодарам што " +"помисливте на мене, слободно исконтактирајте ме и друг пат.
      \n" +"
      \n" +"{$senderName}" + +msgid "emails.reviewRemind.subject" +msgstr "Потсетник за комплетирање на Вашата рецензија" + +msgid "emails.reviewRemind.body" +msgstr "" +"

      Почитувани{$recipientName},

      Само мало потсетување за нашето барање " +"за Вашата рецензија на поднесокот, \"{$submissionTitle},\" за {$contextName}" +". Очекувавме рецензијата да ја добиеме до {$reviewDueDate} и ќе бидеме " +"задоволни доколку ни ја испратите штом ќе бидете во можност да ја подготвите " +".

      Можете најавете се на списанието и следете ги чекорите за резензија за да го погледнете поднесокот, " +"прикачете ги рецензираните датотеки, и поднесете ги Вашите коментари од " +"рецензијата.

      Доколку Ви е потребно продолжување на крајниот рок, Ве " +"молам исконтактирајте не. Со нетрпение очекуваме да слушнеме од Вас.

      Ви благодариме од напред, со почит,

      {$signature}" + +msgid "emails.reviewRemindAuto.body" +msgstr "" +"

      Почитувани{$recipientName}:

      Овој емаил е автоматски потсетник од " +"{$contextName} во однос на нашето барање за Вашата рецензија на поднесокот, " +"\"{$submissionTitle}.\"

      Очекувавме да ја добиеме рецензијата до " +"{$reviewDueDate} и би биле задоволни доколку ни ја испратите штом сте во " +"можност да ја подготвите.

      Ве молименајавете се на списанието и следете ги чекорите за рецензија за да го " +"погледнете поднесокот, прикачете рецензирани датотеки, и поднесете ги Вашите " +"коментари од рецензијата.

      Доколку Ви е потребно продолжување на рокот, " +"Ве молиме да не исконтактирате. Со нетрпение очекуваме да слушнеме од Вас.

      Ви благодариме од напред, со почит,

      {$contextSignature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "Вашиот поднесок е прифатен во {$contextName}" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

      Почитувани{$recipientName},

      Задоволство ни е да ве информираме дека " +"одлучивме да го прифатиме Вашиот поднесок без дополнителна ревизија. По " +"внимателно разгледување, Вашиот поднесок, {$submissionTitle}, ги исполни или " +"надмина нашите очекувања. Возбудени сме да го објавиме Вашето дело " +"{$contextName} и Ви благодариме што го избравте нашето списание како место " +"за Вашата работа.

      Вашиот поднесок наскоро ќе биде објавен на страната " +"на списанието за {$contextName} и добредојдени сте да го вклучите во вашата " +"листа на публикации. Ја препознаваме напорната работа што се вложува во " +"секое успешно поднесување и сакаме да ви честитаме што стигнавте до оваа " +"фаза.

      Вашиот поднесок сега ќе помине во фаза на уредување и " +"форматирање за да се подготви за објавување.

      Наскоро ќе добиете " +"дополнителни инструкции.

      Доколку имате било какви прашања, Ве молиме " +"исконтактирајте не од Вашата табла за " +"поднесување.

      Со почит,

      {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Вашиот поднесок е испратен на внатрешна ревизија" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

      Почитувани{$recipientName},

      Задоволство ни е да Ве известиме дека " +"уредник го разгледа вашиот поднесок,{$submissionTitle}, и одлучи да го " +"испрати на внатрешна ревизија. Ќе слушнете од нас со повратни информации од " +"рецензентите и информации за следните чекори.

      Ве молиме имајте предвид " +"дека испраќањето на поднесокот за внатрешна ревизија не гарантира дека ќе " +"биде објавен. Ќе ги разгледаме препораките на рецензентите пред да одлучиме " +"да го прифатиме поднесокот за објавување. Може да биде побарано од Вас да " +"направите ревизии и да одговорите на коментарите на рецензентите пред да се " +"донесе конечна одлука.

      Доколку имате било какви прашања, Ве молиме " +"исконтактирајте не од Вашата контролна табла за поднесување. " +"

      {$signature}

      " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Вашиот поднесок е испратен за уредување" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

      Почитувани{$recipientName},

      \n" +"

      Задоволство ни е да Ве информираме дека одлучивме да го прифатиме Вашиот " +"поднесок без отворена рецензија.Вашиот извадок, {$submissionTitle}, ги " +"исполни нашите очекувања, и не бараме работата од овој тип да подлежи на " +"рецензија. Задоволство ни е да го објавиме Вашето дело во{$contextName} и ви " +"благодариме што го избравте нашето списание како место за Вашата работа.

      " +"\n" +"

      Вашиот поднесок наскоро ќе биде објавен на страната а списанието за " +"{$contextName} и добредојдени сте да го вклучите во вашата листа на " +"публикации.Ја препознаваме напорната работа што се вложува во секое успешно " +"поднесување и сакаме да ви честитаме за вашите напори.

      \n" +"

      Вашиот поднесок сега ќе подлежи на уредување и форматирање за да се " +"подготви за објавување.

      \n" +"

      Набрзо ќе добиете понатамошни инструкции.

      \n" +"

      Доколку имате било какви прашања, Ве молиме исконтактирајте не преку " +"Вашата табла за поднесување.

      \n" +"

      Со почит,

      \n" +"

      {$signature}

      \n" + +msgid "emails.layoutRequest.subject" +msgstr "Поднесокот{$submissionId} е подготвен за обработка во {$contextAcronym}" + +msgid "emails.layoutRequest.body" +msgstr "" +"

      Почитувани{$recipientName},

      Нов поднесок е подготвен за дизајнерско " +"уредување:

      {$submissionId} " +"{$submissionTitle}
      {$contextName}

      1. Кликнете на линкот за " +"поднесување погоре.
      2. Преземете ги готовите датотеки за обработка и " +"искористете ги да креирате печатарски табак според стандардите на " +"списанието.
      3. Прикачете ги печатарските табаци во делот публикациско " +"форматирање на поднесокот.
      4. Користете ги продукциските дискусии за да " +"го известите уредникот дека печатарските табаци се подготвени.
      5. Доколку не сте во можност да ја преземете оваа работа сега или имате " +"било какви прашања, Ве молиме исконтактирајте не. Ви благодариме за вашиот " +"придонес кон ова списание.

        Со почит,

        {$signature}" + +msgid "emails.layoutComplete.subject" +msgstr "Комплетиран распоред на отисоците на труд" + +msgid "emails.layoutComplete.body" +msgstr "" +"

        Почитувани{$recipientName},

        Печатарските табаци за поднесокот се " +"подготвени и спремни за финална проверка.

        {$submissionTitle}
        {$contextName}

        Доколку имате било какво " +"прашања, Ве молиме исконтактирајте не.

        Со " +"почит,

        {$senderName}

        " + +msgid "emails.indexRequest.subject" +msgstr "Побарај индекс" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Поднесувањето " {$submissionTitle} " на {$contextName} сега му " +"требаат индекси создадени со следење на овие чекори.
        \n" +"1. Кликнете на URL-то за поднесување подолу.
        \n" +"2. Влезете во печатот и користете ја датотеката докази за страната за да " +"создадете отисоци на труд според стандардите за печатот.
        \n" +"3. Испратете ја ЦЕЛОСНАТА е-пошта до уредникот.
        \n" +"
        \n" +"URL на {$contextName}: {$contextUrl}
        \n" +"URL-то за поднесување: {$submissionUrl}
        \n" +"Корисничко име: {$recipientUsername}
        \n" +"
        \n" +"Ако не сте во можност да ја преземете оваа работа во овој момент или имате " +"какви било прашања, контактирајте ме. Ви благодариме за придонесот во овој " +"печат.
        \n" +"
        \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Индексирањето на отисоците на труд е комплетирано" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Индекси сега се подготвени за ракописот, " {$submissionTitle}, " " +"за {$contextName} и подготвени се за лекторирање.
        \n" +"
        \n" +"Ако имате какви било прашања, контактирајте ме.
        \n" +"
        \n" +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "Ракопис од можен интерес" + +msgid "emails.emailLink.body" +msgstr "" +"Мислевме дека можеби сте заинтересирани да го видите " " +"{$submissionTitle} " од {$authors} објавено во Вол. {$volume}, бр. " +"{$number} ({$year}) од {$contextName} на " {$submissionUrl} " ;." + +msgid "emails.emailLink.description" +msgstr "" +"Овој образец за е-пошта овозможува на регистриран читател можност да испрати " +"информации за монографија на некој што може да биде заинтересиран. Таа е " +"достапна преку Алатките за читање и мора да биде овозможена од Менаџерот на " +"печатот на страницата за администрација на алатки за читање." + +msgid "emails.notifySubmission.subject" +msgstr "Известување за поднесок" + +msgid "emails.notifySubmission.body" +msgstr "" +"Имате порака од {$sender} во врска со " {$submissionTitle} " " +"({$monographDetailsUrl}):
        \n" +"
        \n" +"{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Известување од корисник испратено од модалот на центарот за информации за " +"поднесок." + +msgid "emails.notifyFile.subject" +msgstr "Известување за датотека на поднесок" + +msgid "emails.notifyFile.body" +msgstr "" +"Имате порака од {$sender} во врска со датотеката " {$fileName} " " +"во " {$submissionTitle} " ({$monographDetailsUrl}):
        \n" +"
        \n" +"{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"Известување од корисник пратено од модалот на центарот за информации за " +"датотеки" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Уредувачка активност за {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
        \n" +"
        \n" +"Вашиот извештај за здравјето на печатот за {$month}, {$year} сега е " +"достапен. Вашите клучни статистики за овој месец се подолу.
        \n" +"
          \n" +"
        • Нови поднесоци овој месец: {$newSubmissions}
        • \n" +"
        • Одбиени поднесоци овој месец: {$declinedSubmissions}
        • \n" +"
        • Прифатени поднесоци овој месец: {$acceptedSubmissions}
        • \n" +"
        • Вкупни поднесоци во системот: {$totalSubmissions}
        • \n" +"
        \n" +"Најавете се на изданието за да видите подетални уреднички трендови и објавените статистички статии . Во прилог е " +"целосна копија од уредничките трендови на овој месец.
        \n" +"
        \n" +"Со почит,
        \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +" {$announcementTitle}
        \n" +"
        \n" +"{$announcementSummary}
        \n" +"
        \n" +"Посетете ја нашата веб-страница за да ја прочитате целосната најава ." + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Оваа е-пошта е испратена до новорегистриран корисник за да ги пречека во " +#~ "системот и да им обезбеди запис за нивното корисничко име и лозинка." + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$ userFullName}
        \n" +#~ "
        \n" +#~ "Создадовте сметка со {$textName}, но пред да започнете да ја користите, " +#~ "треба да ја потврдите вашата е-пошта. За да го направите ова, едноставно " +#~ "следете ја врската подолу:
        \n" +#~ "
        \n" +#~ "{$ activUrl}
        \n" +#~ "
        \n" +#~ "Ви благодариме,
        \n" +#~ "{$ principalContactSignature}" + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Потврдете ја вашата сметка" + +msgid "emails.reviewReinstate.subject" +msgstr "Дали сè уште можете да рецензирате нешто за {$contextName}?" + +msgid "emails.revisedVersionNotify.subject" +msgstr "Ревидираната верзија е прикачена" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

        Почитувани{$recipientName},

        Авторот ги прикачи рецензиите за " +"извадокот, {$authorsShort} — {$submissionTitle}.

        Како доделен " +"уредник, Ве замолуваме да се најавите и да ги " +"погледнете рецензиите и да донесете одлука дали ќе го прифатите, одбиете " +"или испратите поднесокот кон понатамошна ревизија.




        Ова е " +"автоматска порака од {$contextName}." + +msgid "emails.editorAssignReview.body" +msgstr "" +"

        Драг {$recipientName},

        Следниов поднесок ти е доделен за " +"рецензирање.

        {$submissionTitle}
        {$authors}

        Abstract

        {$submissionAbstract}

        Молам логирај " +"се на види го поднесокот и одбери " +"квалифицирани рецензенти. Можеш да назначиш рецензент со кликнување на \"Add " +"Reviewer\".

        Однапред благодариме.

        Љубезни " +"поздрави,

        {$signature}" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

        Драг {$recipientName},

        Следниот поднесок ти е назначен за да го " +"гледаш низ процесот на продукција.

        {$submissionTitle}
        {$authors}

        Извадок

        {$submissionAbstract}

        Молам логирај " +"се на и види го поднесокот. Кога ќе бидат " +"расположливи фајловите за продукција, внеси ги во Публикации " +">Секција Публикациски формати.

        Однапред благодариме.

        Љубезни поздрави,

        {$signature}" diff --git a/locale/mk/locale.po b/locale/mk/locale.po new file mode 100644 index 00000000000..8145a964153 --- /dev/null +++ b/locale/mk/locale.po @@ -0,0 +1,1701 @@ +# Teodora Fildishevska , 2022. +# Ana Vucurevic , 2023. +# Mirko Spiroski , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-05-07 12:52+0000\n" +"Last-Translator: Mirko Spiroski \n" +"Language-Team: Macedonian \n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "common.payments" +msgstr "Плаќања" + +msgid "monograph.audience" +msgstr "Публика" + +msgid "monograph.audience.success" +msgstr "Деталите за публиката се ажурирани." + +msgid "monograph.coverImage" +msgstr "Насловна слика" + +msgid "monograph.audience.rangeQualifier" +msgstr "Квалификатор за опсег на публика" + +msgid "monograph.audience.rangeFrom" +msgstr "Опсег на публика (од)" + +msgid "monograph.audience.rangeTo" +msgstr "Опсег на публика (до)" + +msgid "monograph.audience.rangeExact" +msgstr "Опсег на публика (точно)" + +msgid "monograph.languages" +msgstr "Јазици (Англиски, Француски, Шпански)" + +msgid "monograph.publicationFormats" +msgstr "Формати на публикации" + +msgid "monograph.publicationFormat" +msgstr "Формат" + +msgid "monograph.publicationFormatDetails" +msgstr "Детали за достапниот формат на објавување: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Детали за оваа монографија" + +msgid "monograph.carousel.publicationFormats" +msgstr "Формати:" + +msgid "monograph.type" +msgstr "Типови на поднесок" + +msgid "submission.pageProofs" +msgstr "Докази за страницата" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Уредникот за распоред ги поставува датотеките подготвени за производство што " +"се подготвени за објавување тука. Користете + Додели за да " +"назначите автори и други за лекторирање на доказите на страницата, со " +"исправени датотеки подигнати за одобрување пред објавувањето." + +msgid "monograph.task.addNote" +msgstr "Додај во задачата" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Слободен пристап" + +msgid "monograph.publicationFormat.imprint" +msgstr "Отпечаток (име на бренд)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Број на страни" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Предна материја" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Задна материја" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Состав на производот" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Детали за производот (не е задолжително)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Идентификација на производот" + +msgid "monograph.publicationFormat.price" +msgstr "Цена" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Потребна е цена." + +msgid "monograph.publicationFormat.priceType" +msgstr "Тип на цена" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Процент на попуст, доколку е применливо" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Достапност на производ" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Индикатор за враќање" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Дигитална информација" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Физички димензии" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Големина на датотека во MБајти" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Внесете ја сопствената вредност на големината на датотеката?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Висина" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Дебелина" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Тежина" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Ширина" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Држава на производство" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Дигитална техничка заштита" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Регион за дистрибуција на производи" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Ставка на данок" + +msgid "monograph.publicationFormat.taxType" +msgstr "Тип на данок" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Внесете ги метаподатоците за овој формат на публикација во записот за " +"каталог за оваа книга." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Недостасуваат пазари и цени." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Недостасува код за идентификација." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Недостасуваат некои полиња за метаподатоци." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

        Форматот на објавување што го избравте повеќе не постои за оваа " +"монографија.

        " + +msgid "monograph.publicationFormat.openTab" +msgstr "Отворете го јазичето за формат на објавување." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Формат на објавување" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Потребно е име." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Потребна е валидна цена." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Детали за формат" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Физички формат" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Овој формат ќе биде достапен на посебна веб-страница" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL на далечински хостирана содржина" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "ISBN код со 13 цифри, како што е 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "ISBN код со 10 цифри, како што е 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Потребна е идентификација за монографија." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Формат на објавување мора да биде избран." + +msgid "grid.catalogEntry.availability" +msgstr "Достапност" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Достапно" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Не е достапно" + +msgid "grid.catalogEntry.proof" +msgstr "Доказ" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Одобрување на формат" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

        Одобрете ги метаподатоците за овој формат. Метаподатоците може да се " +"проверат од панелот Уреди за секој формат.

        " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

        Наведете дека метаподатоците за овој формат не се одобрени.

        " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Достапност на формат" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

        Ставете го овој формат достапен за читателите . Датотеките што " +"може да се преземат и сите други дистрибуции ќе се појават во записот на " +"каталогот на книгата.

        " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

        Овој формат е недостапен за читателите . Сите датотеки што " +"можат да се преземат или други дистрибуции повеќе нема да се појавуваат во " +"записот на каталогот на книгата.

        " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Внесувањето на каталогот не е одобрено." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Форматот не е во записот на каталогот." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Доказот не е одобрен." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Одобрено" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Чека одобрување" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Потребна е големина на датотека за дигитални формати." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Потребен е код за достапност на производот." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Мора да се избере код за состав на производ." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Вредност на код" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "ONIX тип на код" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Потребен е код за идентификација." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Потребна е вредност." + +msgid "grid.catalogEntry.salesRights" +msgstr "Права на продажба" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Вредност на код" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Тип на продажни права" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Остатокот од светот?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Штиклирајте го ова поле за да го користите овој запис за Правата на " +"продажбата глобално за вашиот формат. Земјите и регионите не треба да бидат " +"избрани во овој случај." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "За овој формат на објавување веќе е дефиниран тип на продажба ROW." + +msgid "grid.catalogEntry.countries" +msgstr "Држави" + +msgid "grid.catalogEntry.regions" +msgstr "Региони" + +msgid "grid.catalogEntry.included" +msgstr "Вклучени" + +msgid "grid.catalogEntry.excluded" +msgstr "Исклучени" + +msgid "grid.catalogEntry.markets" +msgstr "Територии на пазар" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Територија" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Датуми на објавување" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Потребна е репрезентативна улога." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Потребен е формат на датум." + +msgid "grid.catalogEntry.dateValue" +msgstr "Дата" + +msgid "grid.catalogEntry.dateRole" +msgstr "Улога" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Формат на датум" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Потребен е датум и вредноста на датумот мора да одговара на избраниот формат " +"на датум." + +msgid "grid.catalogEntry.representatives" +msgstr "Претставници" + +msgid "grid.catalogEntry.representativeType" +msgstr "Тип на претставници" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Агенти" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Добавувачи" + +msgid "grid.catalogEntry.agent" +msgstr "Агент" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Може да назначите агент да ве претставува на оваа дефинирана територија. Не " +"е задолжително." + +msgid "grid.catalogEntry.supplier" +msgstr "Добавувач" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Одберете улога:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Улога" + +msgid "grid.catalogEntry.representativeName" +msgstr "Име" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Телефон" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "И-мејл адреса" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Веб-страница" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Идентификација на претставник" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Тип на репрезентативна идентификација (се препорачува GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Следниот дел може да го оставите празен ако им дадете свои услуги на вашите " +"клиенти." + +msgid "grid.action.addRepresentative" +msgstr "Додај претставник" + +msgid "grid.action.editRepresentative" +msgstr "Уредете го овој Претставник" + +msgid "grid.action.deleteRepresentative" +msgstr "Избришете го овој претставник" + +msgid "spotlight" +msgstr "Рефлектор" + +msgid "spotlight.spotlights" +msgstr "Рефлектори" + +msgid "spotlight.noneExist" +msgstr "Во моментов нема рефлектори." + +msgid "spotlight.title.homePage" +msgstr "Во центар на внимание" + +msgid "spotlight.author" +msgstr "Автор, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Предмет на внимание" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Домашна страница" + +msgid "grid.content.spotlights.form.location" +msgstr "Локација на центар на внимание" + +msgid "grid.content.spotlights.form.item" +msgstr "Внесете наслов на центар на внимание(автоматско комплетирање)" + +msgid "grid.content.spotlights.form.title" +msgstr "Наслов на центар на внимание" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Книга" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Потребна е ставка." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Наслов на центар на внимание е потребен." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Ве молиме изберете локација за овој центар на внимание." + +msgid "grid.action.editSpotlight" +msgstr "Уредете го овој центар на внимание" + +msgid "grid.action.deleteSpotlight" +msgstr "Избришете го овој центар на внимание" + +msgid "grid.action.addSpotlight" +msgstr "Додадете центар на внимание" + +msgid "manager.series.open" +msgstr "Отворете ги поднесоците" + +msgid "manager.series.indexed" +msgstr "Индексирани" + +msgid "grid.libraryFiles.column.files" +msgstr "Датотеки" + +msgid "grid.action.catalogEntry" +msgstr "Погледнете го формуларот за внес во каталогот" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Форматот се појавува во записот на каталогот" + +msgid "grid.action.editFormat" +msgstr "Уредете го овој формат" + +msgid "grid.action.deleteFormat" +msgstr "Избришете го овој формат" + +msgid "grid.action.addFormat" +msgstr "Додадете формат на објавување" + +msgid "grid.action.approveProof" +msgstr "Одобри го доказот за индексирање и вклучување во каталогот" + +msgid "grid.action.pageProofApproved" +msgstr "Датотеката со докази за страницата е подготвена за објавување" + +msgid "grid.action.newCatalogEntry" +msgstr "Нов запис во каталог" + +msgid "grid.action.publicCatalog" +msgstr "Погледнете ја оваа ставка во каталогот" + +msgid "grid.action.feature" +msgstr "Вклучете го приказот на одликата" + +msgid "grid.action.featureMonograph" +msgstr "Остави го ова во вртелешката на каталогот" + +msgid "grid.action.releaseMonograph" +msgstr "Означете го овој поднесок како „ново издание“" + +msgid "grid.action.manageCategories" +msgstr "Конфигурирајте категории за ова издание" + +msgid "grid.action.manageSeries" +msgstr "Конфигурирајте ја серијата за ова издание" + +msgid "grid.action.addCode" +msgstr "Додадете код" + +msgid "grid.action.editCode" +msgstr "Уредете го овој код" + +msgid "grid.action.deleteCode" +msgstr "Избришете го овој код" + +msgid "grid.action.addRights" +msgstr "Додадете права за продажба" + +msgid "grid.action.editRights" +msgstr "Уредете ги овие права" + +msgid "grid.action.deleteRights" +msgstr "Избришете ги овие права" + +msgid "grid.action.addMarket" +msgstr "Додај пазар" + +msgid "grid.action.editMarket" +msgstr "Уредете го овој пазар" + +msgid "grid.action.deleteMarket" +msgstr "Избришете го овој пазар" + +msgid "grid.action.addDate" +msgstr "Додадете датум на објавување" + +msgid "grid.action.editDate" +msgstr "Уредете го овој датум" + +msgid "grid.action.deleteDate" +msgstr "Избришете го овој датум" + +msgid "grid.action.createContext" +msgstr "Создадете ново издание" + +msgid "grid.action.publicationFormatTab" +msgstr "Покажете го јазичето за формат на објавување" + +msgid "grid.action.moreAnnouncements" +msgstr "Одете на страницата за соопштенија за изданието" + +msgid "grid.action.submissionEmail" +msgstr "Кликнете за да ја прочитате оваа е-пошта" + +msgid "grid.action.approveProofs" +msgstr "Погледнете ја мрежата на докази" + +msgid "grid.action.proofApproved" +msgstr "Форматот е докажан" + +msgid "grid.action.availableRepresentation" +msgstr "Одобри/негирај го овој формат" + +msgid "grid.action.formatAvailable" +msgstr "Вклучете и исклучете ја достапноста на овој формат" + +msgid "grid.reviewAttachments.add" +msgstr "Додадете прилог на прегледот" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Достапни датотеки" + +msgid "series.series" +msgstr "Серии" + +msgid "series.featured.description" +msgstr "Оваа серија ќе се појави на главната навигација" + +msgid "series.path" +msgstr "Патека" + +msgid "catalog.manage" +msgstr "Управување со каталог" + +msgid "catalog.manage.newReleases" +msgstr "Нови изданија" + +msgid "catalog.manage.category" +msgstr "Категорија" + +msgid "catalog.manage.series" +msgstr "Серии" + +msgid "catalog.manage.series.issn" +msgstr "ИССН" + +msgid "catalog.manage.series.issn.validation" +msgstr "Внесете важечки ИССН." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "ИССН преку Интернет и за печатење не смее да биде исто." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Интернет ИССН" + +msgid "catalog.manage.series.printIssn" +msgstr "Печати ИССН" + +msgid "catalog.selectSeries" +msgstr "Селектирај серии" + +msgid "catalog.selectCategory" +msgstr "Селектирај категорија" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Сликата на корицата на избраните книги се појавува кон горниот дел од " +"почетната страница како сет што може да се движи. Кликнете на „Функција“, а " +"потоа на ѕвездата за да додадете книга во вртелешката; кликнете на " +"извичникот за да се прикаже како ново издание; влечете и пуштете по нарачка." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Кликнете на „Функција“, а потоа на ѕвездата за да изберете избрана книга за " +"оваа категорија; влечете и пуштете по нарачка." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Кликнете на „Функција“, а потоа на ѕвездата за да изберете избрана книга за " +"оваа серија; влечете и пуштајте по нарачка. Сериите се идентификуваат со " +"уредник (и) и наслов на серија, во категорија или независно." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Вртелешка" + +msgid "catalog.manage.newRelease" +msgstr "Отпушти" + +msgid "catalog.manage.manageSeries" +msgstr "Управувајте со серии" + +msgid "catalog.manage.manageCategories" +msgstr "Управувајте со категории" + +msgid "catalog.manage.noMonographs" +msgstr "Нема доделени монографии." + +msgid "catalog.manage.featured" +msgstr "Избрана" + +msgid "catalog.manage.categoryFeatured" +msgstr "Избрана во категорија" + +msgid "catalog.manage.seriesFeatured" +msgstr "Избрана во серии" + +msgid "catalog.manage.featuredSuccess" +msgstr "Монографијата е избрана." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Монографијата не е избрана." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Монографијата е означена како ново издание." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Монографијата не е обележана како ново издание." + +msgid "catalog.manage.feature.newRelease" +msgstr "Ново издание" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Ново издание во категоријата" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Ново издание во сериите" + +msgid "catalog.manage.nonOrderable" +msgstr "Оваа монографија не е подредлива сè додека не се прикаже." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Пребарување по наслов или автор" + +msgid "catalog.manage.isFeatured" +msgstr "" +"Оваа монографија е претставена. Направете ја оваа монографија да не е " +"прикажана." + +msgid "catalog.manage.isNotFeatured" +msgstr "" +"Оваа монографија не е претставена. Направете ја оваа монографија избрана." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Оваа монографија е ново издание. Направете ја оваа монографија да не е ново " +"издание." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Оваа монографија не е ново издание. Направете ја оваа монографија да е ново " +"издание." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Нема избрани поднесоци за да бидат додадени во каталогот." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Еден или повеќе од поднесоците не може да се најдат." + +msgid "catalog.manage.findSubmissions" +msgstr "Пронајдете монографии за да ги додадете во каталогот" + +msgid "catalog.noTitles" +msgstr "Сè уште нема објавено наслови." + +msgid "catalog.noTitlesNew" +msgstr "Во моментов нема нови изданија." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Не беа пронајдени наслови што одговараат на вашето пребарување за " +"„{$searchQuery}“." + +msgid "catalog.feature" +msgstr "Особина" + +msgid "catalog.featured" +msgstr "Изведено" + +msgid "catalog.featuredBooks" +msgstr "Избрани книги" + +msgid "catalog.foundTitleSearch" +msgstr "" +"Пронајден е еден наслов што одговараше на вашето пребарување за " +"„{$searchQuery}“." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"Пронајдени се наслови од {$number} кои одговараат на вашето пребарување за " +"\"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Сите книги" + +msgid "catalog.newReleases" +msgstr "Нови изданија" + +msgid "catalog.dateAdded" +msgstr "Додадено" + +msgid "catalog.publicationInfo" +msgstr "Информации за публикација" + +msgid "catalog.published" +msgstr "Објавено" + +msgid "catalog.forthcoming" +msgstr "Претстои" + +msgid "catalog.categories" +msgstr "Категории" + +msgid "catalog.parentCategory" +msgstr "Родителска категорија" + +msgid "catalog.category.subcategories" +msgstr "Подкатегории" + +msgid "catalog.aboutTheAuthor" +msgstr "За {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Ве молиме запомнете: За да купите предмети, прво ќе треба да се најавите. " +"Избирање ставка за купување ќе ве насочи на страницата за најавување. Секоја " +"ставка обележана со икона Отворен пристап може да се преземе бесплатно, без " +"најавување." + +msgid "catalog.sortBy" +msgstr "Ред на монографии" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Изберете како да нарачате книги во оваа серија." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Изберете како да нарачате книги од оваа категорија." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Изберете како да нарачате книги во каталогот." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Позиција на серија (најниско прво)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Позиција во серија (највисоко прво)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} преглед на датотеката {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Вратете се за да ги видите деталите за {$monographTitle}" + +msgid "submission.search" +msgstr "Пребарување книги" + +msgid "common.publication" +msgstr "Монографија" + +msgid "common.publications" +msgstr "Монографии" + +msgid "common.prefix" +msgstr "Префикс" + +msgid "common.preview" +msgstr "Преглед" + +msgid "common.feature" +msgstr "Изведување" + +msgid "common.searchCatalog" +msgstr "Каталог за пребарување" + +msgid "common.moreInfo" +msgstr "Повеќе информации" + +msgid "common.listbuilder.completeForm" +msgstr "Ве молиме, пополнете го формуларот целосно." + +msgid "common.listbuilder.selectValidOption" +msgstr "Изберете валидна опција од списокот." + +msgid "common.listbuilder.itemExists" +msgstr "Не можете да додадете иста ставка двапати." + +msgid "common.software" +msgstr "Опен Монограф Прес" + +msgid "common.omp" +msgstr "ОМП" + +msgid "common.homePageHeader.altText" +msgstr "Заглавие на почетната страница" + +msgid "navigation.catalog" +msgstr "Каталог" + +msgid "navigation.competingInterestPolicy" +msgstr "Политика за конкурентни интереси" + +msgid "navigation.catalog.allMonographs" +msgstr "Сите монографии" + +msgid "navigation.catalog.manage" +msgstr "Управувај" + +msgid "navigation.catalog.administration.short" +msgstr "Администрација" + +msgid "navigation.catalog.administration" +msgstr "Администрација на каталог" + +msgid "navigation.catalog.administration.categories" +msgstr "Категории" + +msgid "navigation.catalog.administration.series" +msgstr "Серии" + +msgid "navigation.infoForAuthors" +msgstr "За авторите" + +msgid "navigation.infoForLibrarians" +msgstr "За библиотекари" + +msgid "navigation.infoForAuthors.long" +msgstr "Информации за автори" + +msgid "navigation.infoForLibrarians.long" +msgstr "Информации за библиотекари" + +msgid "navigation.newReleases" +msgstr "Нови изданија" + +msgid "navigation.published" +msgstr "Објавено" + +msgid "navigation.wizard" +msgstr "Волшебник" + +msgid "navigation.linksAndMedia" +msgstr "Врски и социјални медиуми" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Врска до вашиот каталог." + +msgid "navigation.skip.spotlights" +msgstr "Прескокнете до центрите на внимание" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Серии" + +msgid "navigation.navigationMenus.series.description" +msgstr "Врска до сериите." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Категорија" + +msgid "navigation.navigationMenus.category.description" +msgstr "Врска до категорија." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Нови изданија" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Врска до вашите нови изданија." + +msgid "context.contexts" +msgstr "Изданија" + +msgid "context.context" +msgstr "Издание" + +msgid "context.current" +msgstr "Тековно издание:" + +msgid "context.select" +msgstr "Префрлете се на друго издание:" + +msgid "user.authorization.representationNotFound" +msgstr "Бараниот формат на објавување не може да се најде." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Вклучете корисници без улоги во ова издание." + +msgid "user.noRoles.submitMonograph" +msgstr "Поднесете предлог" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Поднесете монографија: Регистрацијата на авторот во моментов е оневозможена." + +msgid "user.noRoles.regReviewer" +msgstr "Регистрирајте се како рецензент" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Регистрирајте се како рецензент: Регистрацијата на рецензентот во моментов е " +"оневозможена." + +msgid "user.reviewerPrompt" +msgstr "Дали сте подготвени да ги разгледате поднесоците до овој печат?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Да, побарајте ја улогата {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Да, би сакал да ме контактираат со барања за преглед на поднесоците до ова " +"издание." + +msgid "user.register.contextsPrompt" +msgstr "Со кои изданија на оваа страница сакате да се регистрирате?" + +msgid "user.register.otherContextRoles" +msgstr "Побарајте ги следниве улоги." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Ако баравте да бидете рецензент за кое било издание, внесете ги вашите " +"предметни интереси." + +msgid "user.role.manager" +msgstr "Менаџер на издание" + +msgid "user.role.pressEditor" +msgstr "Уредик на издание" + +msgid "user.role.subEditor" +msgstr "Уредник на серии" + +msgid "user.role.copyeditor" +msgstr "Уредник" + +msgid "user.role.proofreader" +msgstr "Лектор" + +msgid "user.role.productionEditor" +msgstr "Уредник на продукција" + +msgid "user.role.managers" +msgstr "Менаџери на издание" + +msgid "user.role.subEditors" +msgstr "Уредници на серии" + +msgid "user.role.editors" +msgstr "Течнички уредници" + +msgid "user.role.copyeditors" +msgstr "Технички уредници" + +msgid "user.role.proofreaders" +msgstr "Лектори" + +msgid "user.role.productionEditors" +msgstr "Уредници на продукција" + +msgid "user.register.selectContext" +msgstr "Изберете издание со кое да се регистрирате:" + +msgid "user.register.noContexts" +msgstr "Нема изданија со кои би можеле да се регистрирате на оваа страница." + +msgid "user.register.privacyStatement" +msgstr "Изјава за приватност" + +msgid "user.register.registrationDisabled" +msgstr "Ова издание моментално не прифаќа регистрации на корисници." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Лозинката што ја внесовте не е доволно долга." + +msgid "user.register.readerDescription" +msgstr "Известено по е-пошта за објавување на монографија." + +msgid "user.register.authorDescription" +msgstr "Може да доставува предмети до изданието." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Подготвени да извршат рецензија на врски на поднесоци до изданието." + +msgid "user.register.reviewerDescription" +msgstr "Подготвени да спроведат преглед на врски на поднесоците до страницата." + +msgid "user.register.reviewerInterests" +msgstr "" +"Идентификувајте ги интересите за разгледување (суштински области и методи на " +"истражување):" + +msgid "user.register.form.userGroupRequired" +msgstr "Мора да изберете барем една улога" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Да, се согласувам моите податоци да бидат собрани и складирани според изјавата за приватност на ова " +"издание ." + +msgid "site.noPresses" +msgstr "Нема достапни изданија." + +msgid "site.pressView" +msgstr "Погледнете ја веб-страницата за изданието" + +msgid "about.pressContact" +msgstr "Содржина на издание" + +msgid "about.aboutContext" +msgstr "За изданието" + +msgid "about.editorialTeam" +msgstr "Уреднички тим" + +msgid "about.editorialPolicies" +msgstr "Уреднички политики" + +msgid "about.focusAndScope" +msgstr "Фокус и опсег" + +msgid "about.seriesPolicies" +msgstr "Политики за серии и категории" + +msgid "about.submissions" +msgstr "Поднесоци" + +msgid "about.onlineSubmissions" +msgstr "Поднесоци преку Интернет" + +msgid "about.onlineSubmissions.login" +msgstr "Логирај Се" + +msgid "about.onlineSubmissions.register" +msgstr "Регистрација" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} или {$register} за да направите поднесување." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} или {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Направете нов поднесок" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "прегледајте ги вашите поднесоци што чекаат" + +msgid "about.authorGuidelines" +msgstr "Упатства за авторите" + +msgid "about.submissionPreparationChecklist" +msgstr "Список за подготовка на поднесоци" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Како дел од процесот на доставување, од авторите се бара да ја проверат " +"усогласеноста на поднесувањето со сите следни ставки, а поднесоците може да " +"им бидат вратени на авторите кои не се придржуваат до овие упатства." + +msgid "about.copyrightNotice" +msgstr "Известување за авторски права" + +msgid "about.privacyStatement" +msgstr "Изјава за приватност" + +msgid "about.reviewPolicy" +msgstr "Процес на рецензија на врсници" + +msgid "about.publicationFrequency" +msgstr "Фреквенција на објавување" + +msgid "about.openAccessPolicy" +msgstr "Политика за отворен пристап" + +msgid "about.pressSponsorship" +msgstr "Спонзорство на издание" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Повеќе информации за системот за објавување, Платформата и работниот тек од " +"OMP / PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "ОМП уреднички и објавувачки процес" + +msgid "about.aboutSoftware" +msgstr "За Отворен монографски печат" + +msgid "about.aboutOMPPress" +msgstr "" +"Ова издание користи Open Monograph Press {$ompVersion}, што е софтвер со " +"отворен извор за управување и издавање софтвер развиен, поддржан и слободно " +"дистрибуиран од страна на Проектот за јавно знаење според Општата јавна " +"лиценца на GNU. Посетете ја веб-страницата на PKP за да дознаете повеќе за софтверот . Ве молиме контактирајте го изданието директно со прашања во " +"врска со изданието и испраќањата до изданието." + +msgid "about.aboutOMPSite" +msgstr "" +"Оваа страница користи Open Monograph Press {$ompVersion}, што е софтвер со " +"отворен извор за управување и издавање софтвер развиен, поддржан и слободно " +"дистрибуиран од страна на Проектот за јавно знаење според Општата јавна " +"лиценца на GNU. Посетете ја веб-страницата на PKP за да дознаете повеќе за софтверот . Ве молиме контактирајте ја " +"страницата директно со прашања во врска со нејзините изданија и поднесоци до " +"нејзините изданија." + +msgid "help.searchReturnResults" +msgstr "Врати се на резултатите од пребарувањето" + +msgid "help.goToEditPage" +msgstr "Отворете нова страница за да ги уредите овие информации" + +msgid "installer.appInstallation" +msgstr "ОМП инсталација" + +msgid "installer.ompUpgrade" +msgstr "ОМП надоградување" + +msgid "installer.installApplication" +msgstr "Инсталирајте Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Ако ја надградувате постоечката инсталација на OMP, кликнете овде за да продолжите." + +msgid "installer.installationInstructions" +msgstr "" +"

        Ви благодариме што го преземавте Проектот за Јавно Знаење " +"Отворено Објавување Монографии {$version}.\n" +"Пред да продолжите, ве молиме прочитајте го ПРОЧИТАЈ МЕ датотеката вклучена во овој софтвер. За повеќе " +"информации за Проектот за јавно знаење и неговите софтверски проекти, " +"посетете ја PKP веб " +"страната. Ако имате извештаи за грешки или прашања за техничка поддршка " +"за Отворено Објавување Монографии, видете го форум за поддршка или посетете PKP's онлајнсистем за " +"пријавување грешки. Иако форумот за поддршка е претпочитан начин за " +"контакт, можете исто така да испратите е-пошта до тимот на pkp.contact@gmail.com.

        " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Чекори пред инсталација" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

        1 Следните датотеки и директориуми (и нивната содржина) мора да бидат " +"напишани:

        \n" +"
          \n" +"
        • config.inc.php може да се напише (по избор): {$writable_config}" +"
        • \n" +"
        • јавно / може да се запише: {$writable_public}
        • \n" +"
        • кешот / може да се запише: {$writable_cache}
        • \n" +"
        • кеш меморијата / t_cache / може да се запише: " +"{$writable_templates_cache}
        • \n" +"
        • кеш меморијата / t_compile / може да се запише: " +"{$writable_templates_compile}
        • \n" +"
        • кеш меморијата / _db може да се запише: {$writable_db_cache}\n" +"
        \n" +"\n" +"

        2. Именикот за зачувување на подигнатите датотеки мора да биде креиран и " +"да се запишува (видете „Подесувања на датотека“ подолу).

        " + +msgid "installer.upgradeInstructions" +msgstr "" +"

        Верзија на OMP {$ верзија}

        \n" +"\n" +"

        Ви благодариме што го преземавте Отворениот печат на " +"монографијата на Проектот за јавно знаење . Пред да продолжите, " +"прочитајте ги датотеките README и " +" UPGRADE вклучени во овој софтвер. " +"За повеќе информации во врска со Проектот за јавно знаење и неговите " +"софтверски проекти, посетете ја веб-страницата на PKP . Ако имате извештаи за грешки или " +"прашања за техничка поддршка во врска со Open Monograph Press, видете во форумот за поддршка " +"или посетете го PKP на Интернет систем за пријавување на грешки . Иако форумот за " +"поддршка е префериран метод за контакт, можете исто така да го испратите " +"тимот по е-пошта на pkp." +"contact@gmail.com .

        \n" +"

        Силно се препорачува да направите резервна копија од " +"вашата база на податоци, директориумот со датотеки и директориумот за " +"инсталација на OMP пред да продолжите.

        \n" +"

        Ако трчате во Безбеден режим на PHP , осигурете се дека директивата за " +"max_execution_time во вашата датотека за конфигурација php.ini е поставена " +"на висока граница. Доколку се постигне ова или кое било друго временско " +"ограничување (на пример, директивата „Тајмаут“ на Апачи) и процесот на " +"ажурирање е прекинат, ќе биде потребна рачна интервенција.

        " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"За целосна поддршка на Уникод (UTF-8), изберете UTF-8 за сите поставки за " +"поставување знаци. Имајте на ум дека оваа поддршка во моментов бара MySQL> = " +"4.1.1 или PostgreSQL> = 9.1.5 сервер за бази на податоци. Забележете исто " +"така дека целосната поддршка за Уникод бара библиотека mbstring (овозможено стандардно " +"во најновите инсталации на PHP). Може да имате проблеми со користење на " +"проширени множества на карактери, ако вашиот сервер не ги исполнува овие " +"барања.\n" +"

        \n" +"Вашиот сервер моментално поддржува mbstring: {$ supportMBString} " + +msgid "installer.allowFileUploads" +msgstr "" +"Вашиот сервер во моментов дозволува поставување датотеки: " +"{$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Вашиот сервер во моментов дозволува максимална големина на поставување " +"датотека од: {$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Примарен јазик што треба да се користи за овој систем. Ве молиме, " +"консултирајте се со документацијата за ОМП доколку сте заинтересирани за " +"поддршка за јазиците што не се наведени овде." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Изберете дополнителни јазици за поддршка во овој систем. Овие јазици ќе " +"бидат достапни за употреба од изданијата хостирани на страницата. " +"Дополнителни јазици исто така може да се инсталираат во кое било време од " +"интерфејсот за администрација на страницата. Локалите со ознака * може да " +"бидат нецелосни." + +msgid "installer.filesDirInstructions" +msgstr "" +"Внесете го целосното име на постојниот директориум каде што треба да се " +"чуваат подигнатите датотеки. Овој директориум не треба да биде директно " +"достапен на веб. Ве молиме, осигурете се дека овој директориум " +"постои и може да се запише пред инсталацијата. Имињата на патеките " +"на Windows треба да користат пресеци нанапред, на пр. \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"ОМП бара пристап до SQL база на податоци за зачувување на нејзините " +"податоци. Погледнете ги погоре барањата на системот за список на поддржани " +"бази на податоци. Во полињата подолу, наведете ги поставките што ќе се " +"користат за поврзување со базата на податоци." + +msgid "installer.upgradeApplication" +msgstr "Надоградете ја Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

        Важно!

        \n" +"

        Инсталаторот не може автоматски да ја замени конфигурациската датотека. " +"Пред да се обидете да го користите системот, отворете config.inc.php во соодветен уредувач на текст и заменете ја неговата содржина со " +"содржината на полето за текст подолу.

        " + +msgid "installer.installationComplete" +msgstr "" +"

        Инсталирањето на OMP е успешно завршено.

        \n" +"

        За да започнете да го користете системот, најавете се со корисничкото име и лозинката внесени на претходната " +"страница.

        \n" +"

        Посетете го нашиот форум за заедницатаили пријавете се на нашиот билтен за програмериза да " +"добивате безбедносни известувања и ажурирања за претстојните изданија, " +"новите приклучоци и планираните функции.

        " + +msgid "installer.upgradeComplete" +msgstr "" +"

        Надградбата на OMP до верзијата {$version} е успешно завршена.

        \n" +"

        Не заборавајте да ја поставите поставката „инсталирано“ во вашата " +"config.inc.php конфигурациска датотека назад воOn.

        \n" +"

        Посетете го нашиот форум за заедници или регистрирајте се на нашиот билтен за програмери за да " +"добивате безбедносни известувања и ажурирања за претстојните изданија, нови " +"приклучоци и планирани функции.

        " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Датумот на достасување за кружниот преглед на {$round} прегледот на " +"поднесувањето {$submissionId} од {$reviewerName} е поставен на {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} го одби целосниот преглед на {$round} прегледот за " +"доставување {$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} го прифати целосниот преглед на {$round} прегледот за " +"доставување {$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} го одбележа кружниот преглед на {$round} прегледот за " +"доставување {$submissionId} како непромислен." + +msgid "log.editor.decision" +msgstr "" +"Одлуката за уредник ({$decision}) за монографијата {$submissionId} е снимена " +"од {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"Препорака за уредник ({$decision}) за монографија {$submissionId} е снимена " +"од {$editorName}." + +msgid "log.editor.archived" +msgstr "Поднесокот {$submissionId} е архивиран." + +msgid "log.editor.restored" +msgstr "Поднесувањето {$submissionId} е вратено во редот." + +msgid "log.editor.editorAssigned" +msgstr "{$editorName} е доделен како уредник на поднесувањето {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} го додели {$proofreaderName} за лекторирање на поднесувањето " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} достави {$submissionId} за закажување." + +msgid "log.imported" +msgstr "{$userName} има увезено монографија {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Додаден е кодот за идентификација." + +msgid "notification.editedIdentificationCode" +msgstr "Уреден е кодот за идентификација." + +msgid "notification.removedIdentificationCode" +msgstr "Кодот за идентификација е отстранет." + +msgid "notification.addedPublicationDate" +msgstr "Додаден датумот на објавување." + +msgid "notification.editedPublicationDate" +msgstr "Уреден е датумот на објавување." + +msgid "notification.removedPublicationDate" +msgstr "Датумот на објавување е отстранет." + +msgid "notification.addedPublicationFormat" +msgstr "Форматот на публикација е додаден." + +msgid "notification.editedPublicationFormat" +msgstr "Уреден е форматот на публикација." + +msgid "notification.removedPublicationFormat" +msgstr "Форматот на публикација е отстранет." + +msgid "notification.addedSalesRights" +msgstr "Додадени се правата за продажба." + +msgid "notification.editedSalesRights" +msgstr "Уредени се правата на продажба." + +msgid "notification.removedSalesRights" +msgstr "Продажните права се отстранети." + +msgid "notification.addedRepresentative" +msgstr "Додаден претставник." + +msgid "notification.editedRepresentative" +msgstr "Уреден претставник." + +msgid "notification.removedRepresentative" +msgstr "Отстранет претставник." + +msgid "notification.addedMarket" +msgstr "Додаден пазар." + +msgid "notification.editedMarket" +msgstr "Уреден пазар." + +msgid "notification.removedMarket" +msgstr "Отстранет пазар." + +msgid "notification.addedSpotlight" +msgstr "Центар на внимание додаден." + +msgid "notification.editedSpotlight" +msgstr "Уреден центар на внимание." + +msgid "notification.removedSpotlight" +msgstr "Отстранет центар на внимание." + +msgid "notification.savedCatalogMetadata" +msgstr "Метаподатоците за каталогот се зачувани." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Метаподатоците на форматот на објавување се зачувани." + +msgid "notification.proofsApproved" +msgstr "Доказите се одобрени." + +msgid "notification.removedSubmission" +msgstr "Поднесокот е избришан." + +msgid "notification.type.submissionSubmitted" +msgstr "Поднесена е нова монографија „{$title}“." + +msgid "notification.type.editing" +msgstr "Уредување на настани" + +msgid "notification.type.reviewing" +msgstr "Преглед на настани" + +msgid "notification.type.site" +msgstr "Настани на страницата" + +msgid "notification.type.submissions" +msgstr "Поднесување настани" + +msgid "notification.type.userComment" +msgstr "Читател даде коментар на „{$title}“." + +msgid "notification.type.public" +msgstr "Јавни соопштенија" + +msgid "notification.type.editorAssignmentTask" +msgstr "Доставена е нова монографија на која треба да и биде доделен уредник." + +msgid "notification.type.copyeditorRequest" +msgstr "Од вас е побарано да прегледате копии за „{$file}“." + +msgid "notification.type.layouteditorRequest" +msgstr "Од вас е побарано да ги прегледате распоредите за „{$title}“." + +msgid "notification.type.indexRequest" +msgstr "Од вас е побарано да креирате индекс за „{$title}“." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Почна процесот на внатрешно разгледување." + +msgid "notification.type.approveSubmission" +msgstr "" +"Овој поднесок моментално чека одобрување во алатката „Каталог запис“ пред да " +"се појави во јавниот каталог." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Чека одобрување." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Монографијата нема да биде наведена во каталогот сè додека не биде објавена. " +"За да ја додадете оваа книга во каталогот, кликнете на јазичето Публикации." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Нема конфигуриран начин на плаќање." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Потребен е конфигуриран начин на плаќање пред да ги дефинирате поставките за " +"е-трговија." + +msgid "notification.type.visitCatalogTitle" +msgstr "Управување со каталог" + +msgid "notification.type.visitCatalog" +msgstr "" +"Монографијата е одобрена. Посетете Маркетинг и публикација за да управувате " +"со деталите за неговиот каталог, користејќи ги линковите погоре." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Одбиен ви е пристапот затоа што се чини дека не сте валиден рецензент за " +"оваа монографија." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Забранет ви е пристапот затоа што изгледа дека не сте автор на оваа " +"монографија." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Одбиен ви е пристапот затоа што се чини дека не сте доделен рецензент на " +"оваа монографија." + +msgid "user.authorization.monographFile" +msgstr "Забранет е пристап до наведената монографска датотека." + +msgid "user.authorization.invalidMonograph" +msgstr "Невалидна монографија или не е побарана монографија!" + +msgid "user.authorization.noContext" +msgstr "Не беше пронајдено издание што одговара на вашето барање." + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Се обидувате да пристапите до монографија што не е дел од вашата серија." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Одбиен пристап! Не сте доделени во оваа фаза на работно време." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Одбиен пристап! Корисничката група под која моментално дејствувате не е " +"доделена во оваа фаза на работно време. Проверете ги поставките за печатот." + +msgid "payment.directSales" +msgstr "Преземи од веб-страница на изданието" + +msgid "payment.directSales.price" +msgstr "Цена" + +msgid "payment.directSales.availability" +msgstr "Достапност" + +msgid "payment.directSales.catalog" +msgstr "Каталог" + +msgid "payment.directSales.approved" +msgstr "Одобрено" + +msgid "payment.directSales.priceCurrency" +msgstr "Цена ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "" +"Цените треба да бидат само нумерички. Не вклучувајте симболи за валута." + +msgid "payment.directSales.directSales" +msgstr "Директна продажба" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Не е достапно" + +msgid "payment.directSales.notSet" +msgstr "Не е поставено" + +msgid "payment.directSales.openAccess" +msgstr "Слободен пристап" + +msgid "payment.directSales.price.description" +msgstr "" +"Форматите на датотеки може да бидат достапни за преземање од веб-страницата " +"за издание преку отворен пристап без читање на читателите или директна " +"продажба (со користење на процесор за плаќање преку Интернет, како што е " +"конфигурирано во Дистрибуција). За оваа датотека наведете ја основата за " +"пристап." + +msgid "payment.directSales.validPriceRequired" +msgstr "Потребна е валидна нумеричка цена." + +msgid "payment.directSales.purchase" +msgstr "Купување {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Преземи {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Преземете монографија или поглавје" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Оваа трансакција е за купување на директно преземање на една глава од " +"монографија или монографија." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Повторно вчитана помош на XML за мапирање на датотеката {$filename} во " +"потрага по {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Книга" + +msgid "submission.pdf.download" +msgstr "Преземете ја оваа PDF-датотека" + +msgid "user.profile.form.showOtherContexts" +msgstr "Регистрирајте се со други изданија" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Скријте други изданија" + +msgid "submission.round" +msgstr "Round {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Беше наведен неважечки објавен поднесок." + +msgid "catalog.coverImageTitle" +msgstr "Насловна слика" + +msgid "grid.catalogEntry.chapters" +msgstr "Поглавја" + +msgid "search.results.orderBy.article" +msgstr "Наслов на написот" + +msgid "search.results.orderBy.author" +msgstr "Автор" + +msgid "search.results.orderBy.date" +msgstr "Датум на издавање" + +msgid "search.results.orderBy.monograph" +msgstr "Наслов на монографијата" + +msgid "search.results.orderBy.press" +msgstr "Наслов на изданието" + +msgid "search.results.orderBy.popularityAll" +msgstr "Популарност (цело време)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Популарност (последен месец)" + +msgid "search.results.orderBy.relevance" +msgstr "Релевантност" + +msgid "search.results.orderDir.asc" +msgstr "Растечки" + +msgid "search.results.orderDir.desc" +msgstr "Опаѓачки" + +msgid "section.section" +msgstr "Серии" + +msgid "search.cli.rebuildIndex.indexing" +msgstr "Индексирање \"{$pressName}\"" + +msgid "search.cli.rebuildIndex.indexingByPressNotSupported" +msgstr "" +"Оваа имплементација за пребарување не дозволува реиндексирање на пер-прес." + +msgid "search.cli.rebuildIndex.unknownPress" +msgstr "" +"Дадената патека за објавување \"{$pressPath}\" не може да се совлада со " +"печатење." diff --git a/locale/mk/manager.po b/locale/mk/manager.po new file mode 100644 index 00000000000..af7a757f9d5 --- /dev/null +++ b/locale/mk/manager.po @@ -0,0 +1,1738 @@ +# Mirko Spiroski , 2021, 2023. +# Ana Vucurevic , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-11-26 20:37+0000\n" +"Last-Translator: Mirko Spiroski \n" +"Language-Team: Macedonian \n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Ова ќе ги замени сите поставки за изданието специфични за локацијата што сте " +"ги имале за оваа локација" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Извинете, не се достапни дополнителни јазици. Контактирајте го вашиот " +"администратор на страницата ако сакате да користите дополнителни јазици со " +"ова притискање." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Ова ќе биде стандардниот јазик за страницата за изданието." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Ве молиме, проверете дали е проверено најмалку едно поле за избор за секоја " +"задача на Уредувач на серии." + +msgid "manager.series.form.reviewFormId" +msgstr "Ве молиме, проверете дали сте одбрале валидна форма за преглед." + +msgid "manager.series.submissionIndexing" +msgstr "Нема да бидат вклучени во индексирањето на изданието" + +msgid "manager.series.editorRestriction" +msgstr "Предметите можат да ги доставуваат уредници и уредници на серии." + +msgid "manager.series.confirmDelete" +msgstr "Дали сте сигурни дека сакате трајно да ја избришете оваа серија?" + +msgid "manager.series.indexed" +msgstr "Индексирани" + +msgid "manager.series.open" +msgstr "Отворете ги поднесоците" + +msgid "manager.series.readingTools" +msgstr "Алатки за читање" + +msgid "manager.series.submissionReview" +msgstr "Нема да биде рецензиран од рецензенти" + +msgid "manager.series.submissionsToThisSection" +msgstr "Поднесоци поднесени до оваа серија" + +msgid "manager.series.abstractsNotRequired" +msgstr "Не бара апстракти" + +msgid "manager.series.disableComments" +msgstr "Оневозможете ги коментарите на читателите за оваа серија." + +msgid "manager.series.book" +msgstr "Серија книги" + +msgid "manager.series.create" +msgstr "Креирај серии" + +msgid "manager.series.policy" +msgstr "Опис на серијата" + +msgid "manager.series.assigned" +msgstr "Уредници за оваа серија" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Додадете уредник на серии во оваа серија од достапните уредници на серии. " +"Откако ќе се додаде, назначете дали Уредувачот на серии ќе го надгледува " +"РЕВИЗИЈА (рецензија) и / или УРЕДУВА (копирање, распоред и лекторирање) на " +"поднесоците до оваа серија. Уредниците на сериите се создаваат со кликнување " +"на Уредувачи на серии под Улоги во " +"Менаџмент на изданието." + +msgid "manager.series.hideAbout" +msgstr "Остави ја оваа серија од За изданието." + +msgid "manager.series.unassigned" +msgstr "Достапни уредници на серии" + +msgid "manager.series.form.abbrevRequired" +msgstr "Потребен е скратен наслов за серијата." + +msgid "manager.series.form.titleRequired" +msgstr "Потребен е наслов за серијата." + +msgid "manager.series.noneCreated" +msgstr "Ниту една серија не е создадена." + +msgid "manager.series.existingUsers" +msgstr "Постоечки корисници" + +msgid "manager.series.seriesTitle" +msgstr "Наслов на серијата" + +msgid "manager.series.restricted" +msgstr "Не дозволувајте авторите да поднесуваат директно до оваа серија." + +msgid "manager.payment.generalOptions" +msgstr "Општи опции" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Плаќањата ќе бидат овозможени за ова издание. Имајте на ум дека од " +"корисниците ќе се бара да се најават за да извршат плаќања." + +msgid "manager.payment.success" +msgstr "Поставките за плаќање се ажурирани." + +msgid "manager.settings" +msgstr "Поставки" + +msgid "manager.settings.pressSettings" +msgstr "Поставки за издание" + +msgid "manager.settings.press" +msgstr "Издание" + +msgid "manager.settings.publisher.identity" +msgstr "Идентитет на издавач" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Овие полиња се обврзани да објавуваат валидни ONIX metadata." + +msgid "manager.settings.publisher" +msgstr "Име на издавач на издание" + +msgid "manager.settings.location" +msgstr "Географска локација" + +msgid "manager.settings.publisherCode" +msgstr "Код на издавач" + +msgid "manager.settings.publisherCodeType" +msgstr "Тип на код на издавач" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Ова не е важечки Тип на код на издавач." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Сите поставки специфични за процесот на дистрибуција (известување, " +"индексирање, архивирање, плаќање, алатки за читање)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Преземања на монографски датотеки" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Монографија апстрактни прегледи на страници" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Апстракт од монографија и преземања" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Прегледи на главната страница во серијата" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Прегледи на главната страница на изданието" + +msgid "manager.tools" +msgstr "Алатки" + +msgid "manager.tools.importExport" +msgstr "" +"Сите алатки специфични за увоз и извоз на податоци (изданија, монографии, " +"корисници)" + +msgid "manager.tools.statistics" +msgstr "" +"Алатки за генерирање извештаи поврзани со статистиката на употреба (преглед " +"на страница со индекс на каталог, апстрактни прегледи на страници во " +"монографија, преземања на монографии на датотеки)" + +msgid "manager.users.availableRoles" +msgstr "Достапни улоги" + +msgid "manager.users.currentRoles" +msgstr "Тековни улоги" + +msgid "manager.users.selectRole" +msgstr "Изберете ја улогата" + +msgid "manager.people.allEnrolledUsers" +msgstr "Корисници запишани на ова издание" + +msgid "manager.people.allPresses" +msgstr "Сите изданија" + +msgid "manager.people.allSiteUsers" +msgstr "Запишете корисник од оваа страница на ова издание" + +msgid "manager.people.allUsers" +msgstr "Сите запишани корисници" + +msgid "manager.people.confirmRemove" +msgstr "" +"Да се отстрани овој корисник од ова издание? Ова дејство ќе го отпише " +"корисникот од сите улоги на ова издание." + +msgid "manager.people.enrollExistingUser" +msgstr "Запишете постоечки корисник" + +msgid "manager.people.enrollSyncPress" +msgstr "Со издание" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Изберете корисник за спојување во друга корисничка сметка (на пример, кога " +"некој има две кориснички сметки). Прво избраната сметка ќе се избрише и " +"нејзините поднесоци, задачи и сл. ќе се припишат на втората сметка." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Изберете корисник на кого ќе му се припишат авторските права на претходниот " +"корисник, задачите за уредување итн." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Синхронизацијата за запишување ќе ги запише сите корисници запишани во " +"наведената улога во наведеното издание во истата улога во ова издание. Оваа " +"функција овозможува синхронизирање на заеднички сет на корисници (на пр., " +"Рецензенти) помеѓу изданијата." + +msgid "manager.people.confirmDisable" +msgstr "" +"Оневозможи го овој корисник? Ова ќе спречи корисникот да се најавува во " +"системот.\n" +"\n" +"На корисникот може по избор да му дадете причина за оневозможување на " +"неговата сметка." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"За жал, немате административни права над овој корисник. Ова може да биде " +"затоа што:\n" +"
          \n" +"
        • Корисникот е администратор на веб-страница
        • \n" +"
        • Корисникот е активен во изданија со кои не управувате
        • \n" +"
        \n" +"Оваа задача мора да ја изврши администраторот на страницата.\n" +"\t" + +msgid "manager.system" +msgstr "Системски поставки" + +msgid "manager.system.archiving" +msgstr "Архивирање" + +msgid "manager.system.reviewForms" +msgstr "Формулари за преглед" + +msgid "manager.system.readingTools" +msgstr "Алатки за читање" + +msgid "manager.system.payments" +msgstr "Плаќања" + +msgid "user.authorization.pluginLevel" +msgstr "Немате доволно привилегии за управување со овој додаток." + +msgid "manager.pressManagement" +msgstr "Менаџмент на издание" + +msgid "manager.setup" +msgstr "Поставување" + +msgid "manager.setup.aboutItemContent" +msgstr "Содржина" + +msgid "manager.setup.addAboutItem" +msgstr "Додај За ставка" + +msgid "manager.setup.addChecklistItem" +msgstr "Додадете Ставка од списокот за проверка" + +msgid "manager.setup.addItem" +msgstr "Додади ставка" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Додадете ставка да се појави во „За изданието“" + +msgid "manager.setup.addNavItem" +msgstr "Додади ставка" + +msgid "manager.setup.addSponsor" +msgstr "Додадете организација за спонзорирање" + +msgid "manager.setup.announcements" +msgstr "Најави" + +msgid "manager.setup.announcements.success" +msgstr "Поставките за најавите се ажурирани." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Објавите може да бидат објавени за да ги информираат читателите за вести и " +"настани на изданието. Објавените соопштенија ќе се појават на страницата " +"Огласи." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Дополнителни информации" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Внесете какви било дополнителни информации што треба да бидат прикажани на " +"читателите на страницата Најави." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Да се појави во „За изданието“) " + +msgid "manager.setup.contextAbout" +msgstr "За изданието" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Вклучете какви било информации за вашто издание што може да бидат од интерес " +"за читатели, автори или рецензенти. Ова може да ја вклучува вашата политика " +"за отворен пристап, фокусот и обемот на изданието, обелоденувањето на " +"спонзорството и историјата на изданието." + +msgid "manager.setup.contextSummary" +msgstr "Резиме на изданието" + +msgid "manager.setup.copyediting" +msgstr "Технички уредници" + +msgid "manager.setup.copyeditInstructions" +msgstr "Инструкции за уредници" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Инструкциите за уредници ќе бидат достапни на уредниците за репродукција, " +"авторите и уредниците на секциите во фазата на уредување на поднесувањето. " +"Подолу е зададен пакет инструкции во HTML, што може да се измени или замени " +"со Менаџерот на изданието во која било точка (во HTML или обичен текст)." + +msgid "manager.setup.copyrightNotice" +msgstr "Известување за авторски права" + +msgid "manager.setup.coverage" +msgstr "Покриеност" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Насловна слика Максимална висина" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Максимална ширина на насловната слика" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Сликите ќе се намалат кога се поголеми од оваа големина, но никогаш нема да " +"бидат разнесени или растегнати за да одговараат на овие димензии." + +msgid "manager.setup.customizingTheLook" +msgstr "Чекор 5. Прилагодување на изгледот и чувството" + +msgid "manager.setup.customTags" +msgstr "Прилагодени ознаки" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Ознаки за заглавие на HTML кои треба да се вметнат во заглавието на секоја " +"страница (на пример, ознаки META)." + +msgid "manager.setup.details" +msgstr "Детали" + +msgid "manager.setup.details.description" +msgstr "Име на изданието, контактите, спонзорите и моторите за пребарување." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Менаџерот за издание ќе ги регистрира сите кориснички сметки. Уредниците или " +"уредниците на одделите можат да регистрираат кориснички сметки за рецензенти." + +msgid "manager.setup.discipline" +msgstr "Академска дисциплина и поддисциплини" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Корисно е кога изданието ги преминува дисциплинските граници и / или " +"авторите доставуваат мултидисциплинарни предмети." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(На пр., Историја; Образование; Социологија; Психологија; Културни студии; " +"Право)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "Обезбедете примери на релевантни академски дисциплини за ова издание" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Додадете ја содржината за тековната монографија (доколку е достапна)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Содржина на почетната страница" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Прикажете избрани книги на почетната страница" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Избрани книги" + +msgid "manager.setup.displayInSpotlight" +msgstr "Прикажете книги во центарот на вниманието на почетната страница" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Центар на внимание" + +msgid "manager.setup.displayNewReleases" +msgstr "Прикажете нови изданија на почетната страница" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Нови изданија" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Дозволете идентификатори на дигитални објекти (DOI) да се доделат на " +"работата објавена од ова списание." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Ве молиме, изберете ги предметите на кои треба да се доделат ДОИ. Повеќето " +"издвачи доделуваат ДОИ кон монографии/поглавја, но вие би можеле да означите " +"ДОИ кон сите објавени содржини." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Користете стандардни обрацси.
        %p.%m за монографи
        %p.%m.c%c за " +"поглавја
        %p.%m.%f за формати за публикација
        %p.%m.%f.%s за " +"датотеки." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "По достигнувањето на фазата за уредување" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Форматирање / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Одлука за уредник" + +msgid "manager.setup.emailBounceAddress" +msgstr "Адреса за отскокнување" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Било кои е-пораки што не може да се достават, ќе резултираат со порака за " +"грешка на оваа адреса." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"За да испратите е-пошта што не може да се достават до адреса за " +"отскокнување, администраторот на страницата мора да ја овозможи опцијата " +"allow_envelope_sender во датотеката за конфигурација на " +"страницата. Може да биде потребна конфигурација на серверот, како што е " +"наведено во документацијата на OMP." + +msgid "manager.setup.emails" +msgstr "Идентификација по е-пошта" + +msgid "manager.setup.emailSignature" +msgstr "Потпис" + +msgid "manager.setup.emailSignature.description" +msgstr "" +"Подготвените е-пошти што системот ги испраќа во име на изданието, ќе го " +"додадат следниов потпис до крајот." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Овозможете соопштенија" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Огласи може да бидат објавени за да ги информираат читателите за новости и " +"настани. Објавените соопштенија ќе се појават на страницата Огласи." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Прикажи на почетната страница" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Колку објави треба да се прикажат на почетната страница. Оставете го ова " +"празно за да не се прикажува ниту еден." + +msgid "manager.setup.enablePressInstructions" +msgstr "Овозможете ова издание да се појави јавно на страницата" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Прилагодените идентификатори ќе се користат за идентификување на објавените " +"ставки." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Прилагодените идентификатори ќе се користат за идентификување на отисоците " +"на труд (на пр. HTML или PDF датотеки) за објавените ставки." + +msgid "manager.setup.enableUserRegistration" +msgstr "Посетителите можат да регистрираат корисничка сметка со изданието." + +msgid "manager.setup.focusAndScope" +msgstr "Фокус и обем на изданието" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Опишете им на авторите, читателите и библиотекарите опсегот на монографии и " +"други предмети што ќе ги објави изданието." + +msgid "manager.setup.focusScope" +msgstr "Фокус и опсег" + +msgid "manager.setup.focusScopeDescription" +msgstr " ПРИМЕР ПОДАТОЦИ за HTML " + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "За авторите да го индексираат своето дело" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"ОМП се придржува до Иницијатива за отворена архива Протокол за Собирање на Метаподатоци, " +"што е новите стандарди за обезбедување добро индексиран пристап до " +"електронски истражувачки ресурси од глобална скала. Авторите ќе користат " +"сличен образец за да обезбедат метаподатоци за нивно доставување. Менаџерот " +"на списанието треба да ги избере категориите за индексирање и да ги " +"претстави авторите со релевантни примери за да им помогне во индексирањето " +"на нивната работа, одделувајќи ги поимите со полу колона (на пример, термин1;" +" термин2). Записите треба да се воведат како примери со употреба на \"На пр." +"\", Или \"На пример\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Потребна е основна е-пошта за контакт." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Потребно е примарно име на контакт." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Потребен е број на прегледувачи по поднесување." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Потребна е е-пошта за поддршка." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Задолжително е името на поддршката." + +msgid "manager.setup.generalInformation" +msgstr "Генерални информации" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Чекор 1. Да се симнат деталите" + +msgid "manager.setup.guidelines" +msgstr "Упатства" + +msgid "manager.setup.preparingWorkflow" +msgstr "Чекор 3. Подготовка на работниот тек" + +msgid "manager.setup.identity" +msgstr "Идентитет на изданието" + +msgid "manager.setup.information" +msgstr "Информација" + +msgid "manager.setup.information.description" +msgstr "" +"Краток опис изданието за библиотекари и потенцијални автори и читатели. Овие " +"се достапни во страничната лента на страницата кога е додаден блокот со " +"информации." + +msgid "manager.setup.information.forAuthors" +msgstr "За автори" + +msgid "manager.setup.information.forLibrarians" +msgstr "За библиотекари" + +msgid "manager.setup.information.forReaders" +msgstr "За читатели" + +msgid "manager.setup.information.success" +msgstr "Информациите за ова издание беа ажурирани." + +msgid "manager.setup.institution" +msgstr "Институција" + +msgid "manager.setup.itemsPerPage" +msgstr "Предмети по страница" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Ограничете го бројот на ставки (на пример, поднесоци, корисници или задачи " +"за уредување) за да ги прикажете во списокот пред да ги прикажете следните " +"ставки на друга страница." + +msgid "manager.setup.keyInfo" +msgstr "Клучни информации" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Обезбедете краток опис на вашето издание и идентификувајте ги уредниците, " +"управните директори и другите членови на вашиот уреднички тим." + +msgid "manager.setup.labelName" +msgstr "Име на етикетата" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Уредници на распоред" + +msgid "manager.setup.layoutInstructions" +msgstr "Инструкции за распоред" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Инструкциите за распоред може да бидат подготвени за форматирање на " +"објавување ставки во изданието и да бидат внесени подолу во HTML или обичен " +"текст. Тие ќе бидат ставени на располагање на Уредникот на распоредот и " +"Уредникот на секциите на страницата за уредување на секое поднесување. " +"(Бидејќи секое издание може да користи свои формати на датотеки, " +"библиографски стандарди, стилови, итн., Стандарден пакет на инструкции не е " +"даден.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Шаблони за распоред" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Шаблоните може да се постават за да се појават во Распоред за секој од " +"стандардните формати објавени во изданието (на пр., Монографија, преглед на " +"книга, итн.) Со користење на кој било формат на датотека (на пример, pdf, " +"doc, итн.) Со додадени коментари со наведување на фонтот, големината , " +"маргини и сл. да служат како водич за уредниците на распоредот и лекторите." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Датотека на образецот" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Наслов" + +msgid "manager.setup.lists" +msgstr "Листи" + +msgid "manager.setup.lists.success" +msgstr "Поставките за списокот се ажурирани." + +msgid "manager.setup.look" +msgstr "Изглед и чувство" + +msgid "manager.setup.look.description" +msgstr "" +"Заглавие на почетна страница, содржина, заглавие на издание, подножје, лента " +"за навигација и лист на стилот." + +msgid "manager.setup.settings" +msgstr "Поставки" + +msgid "manager.setup.management.description" +msgstr "" +"Пристап и безбедност, распоред, соопштенија, копирање, распоред и " +"лекторирање." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Управување со основните уреднички чекори" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Поставување за управување и објавување" + +msgid "manager.setup.managingThePress" +msgstr "Чекор 4. Управување со поставките" + +msgid "manager.setup.masthead.success" +msgstr "Деталите за главната глава за ова издание се ажурирани." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Не е подигната датотека со слика." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Не е поставено лист за стилови." + +msgid "manager.setup.note" +msgstr "Забелешка" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Кога ја користите е-поштата за Известен автор, вклучете ги адресите за е-" +"пошта на сите коавтори за поднесоци со повеќе автори, а не само на " +"корисникот што го поднесува." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Копирањето ќе биде извршено од Уредник или Уредувач на оддели доделени на " +"поднесокот." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Уредник или Уредник на делови доделен на поднесокот ќе ги подготви " +"датотеките HTML, PDF, итн." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Уредник или Уредник на оддели доделен на поднесокот ќе ги провери отисоците " +"на труд." + +msgid "manager.setup.numPageLinks" +msgstr "Врски со страници" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Ограничете го бројот на врски што треба да се прикажат на следните страници " +"во списокот." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Пристап до содржината на изданието" + +msgid "manager.setup.onlineIssn" +msgstr "Онлајн ИССН" + +msgid "manager.setup.policies" +msgstr "Политики" + +msgid "manager.setup.policies.description" +msgstr "" +"Фокус, преглед на врсници, делови, приватност, безбедност и дополнителни " +"информации за предметите." + +msgid "manager.setup.privacyStatement.success" +msgstr "Изјавата за приватност е ажурирана." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Различни компоненти на изгледот на печатот може да се конфигурираат од оваа " +"страница, вклучувајќи елементи на заглавието и подножјето, стилот и темата " +"на изданието и како списоците со информации се презентираат на корисниците." + +msgid "manager.setup.pressDescription" +msgstr "Резиме на изданието" + +msgid "manager.setup.pressDescription.description" +msgstr "Краток опис на вашето издание." + +msgid "manager.setup.aboutPress" +msgstr "За изданието" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Вклучете какви било информации за вашето издание што може да бидат од " +"интерес за читатели, автори или рецензенти. Ова може да вклучува ваша " +"политика за отворен пристап, фокус и обем на изданието, известување за " +"авторски права, откривање спонзорства, историја на изданието и изјава за " +"приватност." + +msgid "manager.setup.pressArchiving" +msgstr "Архивирање на изданието" + +msgid "manager.setup.homepageContent" +msgstr "Почетна страна на содржина на изданието" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Почетната страница за изданието стандардно се состои од врски за навигација. " +"Дополнителна содржина на почетната страница може да се додаде со користење " +"на една или сите следни опции, кои ќе се појават по прикажаниот редослед." + +msgid "manager.setup.pressHomepageContent" +msgstr "Почетна страна на содржината на изданието" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Почетната страница за изданието стандардно се состои од врски за навигација. " +"Дополнителна содржина на почетната страница може да се додаде со користење " +"на една или сите следни опции, кои ќе се појават по прикажаниот редослед." + +msgid "manager.setup.contextInitials" +msgstr "Иницијали на издание" + +msgid "manager.setup.selectCountry" +msgstr "" +"Изберете ја земјата во која се наоѓа изданието, или земјата на поштенската " +"адреса на изданието или издавачката куќа." + +msgid "manager.setup.layout" +msgstr "Распоред на издание" + +msgid "manager.setup.pageHeader" +msgstr "Заглавие на страница на издание" + +msgid "manager.setup.pageHeaderDescription" +msgstr "Конфигурација на насловот на страницата" + +msgid "manager.setup.pressPolicies" +msgstr "Чекор 2. Политики на изданието" + +msgid "manager.setup.pressSetup" +msgstr "Притиснете Поставување" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Вашата поставка за изданието е ажурирана." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Невалиден формат на стилски лист. Прифатениот формат е .css." + +msgid "manager.setup.pressTheme" +msgstr "Притиснете тема" + +msgid "manager.setup.pressThumbnail" +msgstr "Притиснете ја сликичката" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Мало лого или претстава на изданието што може да се користи во списоци на " +"изданија." + +msgid "manager.setup.contextTitle" +msgstr "Притиснете име" + +msgid "manager.setup.printIssn" +msgstr "Принтај ИССН" + +msgid "manager.setup.proofingInstructions" +msgstr "Инструкции за докажување" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Инструкциите за лекторирање ќе бидат достапни на лектори, автори, уредници " +"на распоред и уредници на оддели во фазата на уредување на поднесувањето. " +"Подолу е зададен пакет инструкции во HTML, кој може да се уредува или " +"заменува со Менаџерот на изданието во која било точка (во HTML или обичен " +"текст)." + +msgid "manager.setup.proofreading" +msgstr "Лектори" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Обезбедете им на Уредници за распоред упатства." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Артиклите за изданието можат да бидат објавени колективно, како дел од " +"монографијата со своја Содржина. Алтернативно, одделни ставки може да се " +"објават веднаш штом се подготвени, со додавање на Содржината на „тековниот“ " +"том. Обезбедете им на читателите, во За изданието, изјава за системот што ќе " +"го користи ова издание и неговата очекувана фреквенција на објавување." + +msgid "manager.setup.publisher" +msgstr "Издавач" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Името на организацијата што го објавува изданието ќе се појави во За " +"изданието." + +msgid "manager.setup.referenceLinking" +msgstr "Референтна врска" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Упатства за распоред за референтно поврзување" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Корисниците мора да бидат регистрирани и да се најават за да ја видат " +"содржината со отворен пристап." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Корисниците мора да бидат регистрирани и да се најават за да ја видат " +"страницата за изданието." + +msgid "manager.setup.reviewGuidelines" +msgstr "Упатства за надворешен преглед" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Обезбедете надворешни рецензенти со критериуми за проценка на соодветноста " +"на поднесокот за објавување во изданието, што може да вклучува упатства за " +"подготовка на ефективен и корисен преглед. Рецензентите ќе имаат можност да " +"дадат коментари наменети за авторот и уредникот, како и засебни коментари " +"само за уредникот." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Упатства за внатрешен преглед" + +msgid "manager.setup.reviewOptions" +msgstr "Опции за преглед" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Потсетници за автоматски е-пошта" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"За да ги активирате овие опции, администраторот на страницата мора да ја " +"овозможи опцијата scheduled_tasks во датотеката за конфигурација на " +"OMP. Може да биде потребна дополнителна конфигурација на серверот за " +"поддршка на оваа функционалност (што можеби не е можно на сите сервери), " +"како што е наведено во документацијата на OMP." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Уредниците ќе ги оценат рецензентите на скала за квалитет од пет точки по " +"секој преглед." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Ограничете го пристапот до датотеката" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Прегледувачите ќе имаат пристап до датотеката за поднесување само откако ќе " +"се согласат да ја разгледаат." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Пристап на рецензент" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Пристап со прегледник со еден клик" + +#, fuzzy +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"На прегледувачите може да им се испрати безбедна врска во поканата за е-" +"пошта, што ќе им овозможи пристап до прегледот без најавување. Пристапот до " +"другите страници бара да се најават." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Вклучете безбедна врска во поканата за е-пошта до рецензентите." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Оценки на рецензентот" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Потсетници за рецензент" + +msgid "manager.setup.reviewPolicy" +msgstr "Политика за преглед" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Обезбедете краток опис (50-300 карактери) на печатот што пребарувачите можат " +"да го прикажат кога го наведуваат изданието во резултатите од пребарувањето." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Индексирање на пребарувањето" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Помогнете им на пребарувачите како Google да ја откријат и прикажат вашата " +"страница. Ве охрабруваме да го доставите вашиот sitemap." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Поставките за индексот на пребарувачот се ажурирани." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Секции и уредници на оддели" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Ако делови не се додадат, тогаш предметите стандардно се доставуваат до " +"делот Монографии.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"За да креирате или измените делови за изданието (на пр., Монографии, " +"Прегледи на книги, итн.), Одете во Управување со оддели.

        " +"Авторите за испраќање предмети на изданието ќе назначат ..." + +msgid "manager.setup.securitySettings" +msgstr "Прилагодувања за пристап и безбедност" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Другите опции поврзани со безбедноста и пристапот може да се конфигурираат " +"од страницата Access and Security." + +msgid "manager.setup.selectEditorDescription" +msgstr "Уредникот на изданието кој ќе го види преку уредничкиот процес." + +msgid "manager.setup.selectSectionDescription" +msgstr "Серија на изданието за кој ќе се разгледа ставката." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Секогаш покажувајте врски од отисок од трудот и наведете ограничен пристап." + +msgid "manager.setup.siteAccess.view" +msgstr "Пристап до страницата" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Погледнете ја содржината на монографијата" + +msgid "manager.setup.stepsToPressSite" +msgstr "Пет чекори до веб-страница за изданието" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(На пр., Фотосинтеза; Црни дупки; Проблем со четири бои на мапи; Баезијанска " +"теорија)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Клучни зборови" + +msgid "manager.setup.subjectProvideExamples" +msgstr "Обезбедете примери на клучни зборови или теми како водич за авторите" + +msgid "manager.setup.submissionGuidelines" +msgstr "Упатства за поднесување" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Потребна е ставка од списокот за проверка." + +msgid "manager.setup.workflow" +msgstr "Тек на работа" + +msgid "manager.setup.submissions.description" +msgstr "" +"Упатства за автор, авторски права и индексирање (вклучително и регистрација)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(На пр., Историско истражување; квази-експериментално; литературна анализа; " +"истражување / интервју)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Тип (метод / пристап)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Обезбедете примери за релевантни типови, методи и пристапи на истражување за " +"оваа област" + +msgid "manager.setup.useCopyeditors" +msgstr "Уредник ќе биде назначен да работи со секој поднесок." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Изданието ќе користи уреднички / рецензентски одбор." + +msgid "manager.setup.useImageTitle" +msgstr "Насловна слика" + +msgid "manager.setup.useStyleSheet" +msgstr "Лист за стилови на изданието" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Ќе биде доделен уредник на распоред за да ги подготви датотеките HTML, PDF, " +"итн. за електронско објавување." + +msgid "manager.setup.useProofreaders" +msgstr "" +"На лекарот ќе му биде доделен да ги проверува (заедно со авторите) отисоците " +"на труд пред објавувањето." + +msgid "manager.setup.userRegistration" +msgstr "Регистрација на корисник" + +msgid "manager.setup.useTextTitle" +msgstr "Текст на наслов" + +msgid "manager.setup.volumePerYear" +msgstr "Тома годишно" + +msgid "manager.setup.publicationFormat.code" +msgstr "Формат" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Мора да се избере формат." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Мора да доделите име на овој формат." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Дали е ова физички (недигитален) формат?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Бидејќи овој формат на публикација моментално се користи од монографија во " +"вашето издание, тој не може да се избрише." + +msgid "manager.setup.newPublicationFormat" +msgstr "Нов формат на публикација" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"За да креирате нов формат на објавување, пополнете го формуларот подолу и " +"кликнете на копчето „Креирај“." + +msgid "manager.setup.genresDescription" +msgstr "" +"Овие жанрови се користат за именување на датотеки и се претставени во " +"паѓачкото мени за поставување датотеки. Жанровите означени ## му " +"овозможуваат на корисникот да ја поврзе датотеката или со целата книга 99Z " +"или со одредено поглавје по број (на пример, 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Ова издание не прифаќа поднесоци во овој момент. Посетете ги поставките за " +"работниот тек за да дозволите поднесување." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Спречете ги корисниците да испраќаат нови написи до изданието. Пријавите " +"може да бидат оневозможени за индивидуални серии на изданието на страницата " +"за поставки за press series." + +msgid "manager.setup.genres" +msgstr "Жанрови" + +msgid "manager.setup.newGenre" +msgstr "Жанр на нова монографија" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"За да креирате нов жанр, пополнете го формуларот подолу и кликнете на " +"копчето „Креирај“." + +msgid "manager.setup.deleteSelected" +msgstr "Избриши избрано" + +msgid "manager.setup.restoreDefaults" +msgstr "Вратете ги стандардните поставки" + +msgid "manager.setup.prospectus" +msgstr "Водич за проспект" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Водичот за проспект е документ подготвен за изданието кој му помага на " +"авторот да ги опише доставените материјали на начин што му овозможува на " +"изданието да ја утврди вредноста на пријавата. Проспектот може да вклучува " +"многу предмети - од потенцијален маркетинг до теоретска вредност; во секој " +"случај, изданието треба да создаде водич за проспект што ја надополнува " +"нивната агенда за објавување." + +msgid "manager.setup.submitToCategories" +msgstr "Дозволи поднесоци за категории" + +msgid "manager.setup.submitToSeries" +msgstr "Дозволи поднесоци за серии" + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN (Меѓународен стандарден сериски број) е осумцифрен број што " +"идентификува периодични публикации, вклучувајќи електронски серии. Број може " +"да се добие од ISSN " +"International Centre." + +msgid "manager.setup.currentFormats" +msgstr "Тековни формати" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Категории и серии" + +msgid "manager.setup.categories.description" +msgstr "" +"Може да креирате список со категории што ќе ви помогнат да ги организирате " +"публикациите. Категориите се групирање на книги според предметот, на пример " +"Економија; Литература; Поезија; и така натаму. Категориите можат да бидат " +"вгнездени во категориите „родители“: на пример, родителска категорија во " +"Економија може да вклучува индивидуални категории за микроекономија и " +"макроекономија. Посетителите ќе можат да пребаруваат и да пребаруваат во " +"изданието по категории." + +msgid "manager.setup.series.description" +msgstr "" +"Може да креирате кој било број на серии за да помогнете во организирање на " +"вашите публикации. Серија претставува посебен сет на книги посветени на тема " +"или теми што некој ги предложил, обично член на факултет или две, а потоа ги " +"надгледува. Посетителите ќе можат да пребаруваат и да прелистуваат изданието " +"по серии." + +msgid "manager.setup.reviewForms" +msgstr "Формулари за преглед" + +msgid "manager.setup.roleType" +msgstr "Тип на улога" + +msgid "manager.setup.authorRoles" +msgstr "Улоги на авторот" + +msgid "manager.setup.managerialRoles" +msgstr "Управни улоги" + +msgid "manager.setup.availableRoles" +msgstr "Уметни улоги" + +msgid "manager.setup.currentRoles" +msgstr "Тековни улоги" + +msgid "manager.setup.internalReviewRoles" +msgstr "Улогите на внатрешниот преглед" + +msgid "manager.setup.masthead" +msgstr "Мајстор" + +msgid "manager.setup.editorialTeam" +msgstr "Уреднички тим" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Список на уредници, управни директори и други лица поврзани со изданието." + +msgid "manager.setup.files" +msgstr "Датотеки" + +msgid "manager.setup.productionTemplates" +msgstr "Шаблони за производство" + +msgid "manager.files.note" +msgstr "" +"Забелешка: Прелистувачот Датотеки е напредна карактеристика што овозможува " +"директно гледање и манипулирање со датотеките и директориумите поврзани со " +"изданието." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

        Предложени известувања за авторски права на Криејтив комонс

        \n" +"

        Предлог политика за изданија што нудат отворен пристап

        \n" +"Авторите што објавуваат со ова издание се согласуваат на следниве термини:\n" +"
          \n" +"
        1. Авторите ги задржуваат авторските права и му даваат право на прва " +"публикација на изданието со делото истовремено лиценцирано со атрибут на " +"Криејтив комонс, истовремено лиценциран со Лиценца што им овозможува на " +"другите да го споделат делото со потврда за авторството на делото и " +"првичното објавување на ова издание.
        2. \n" +"
        3. Авторите се во можност да склучат одделни, дополнителни договори за " +"неексклузивна дистрибуција на верзијата на делото објавено од изданието (на " +"пр., објавете го во институционално складиште или објавете го во книга) на " +"неговото првично објавување во ова издание.
        4. \n" +"
        5. На авторите им е дозволено и охрабруваат да ја објавуваат својата " +"работа преку Интернет (на пример, во институционални складишта или на " +"нивната веб-страница) пред и за време на процесот на доставување, бидејќи " +"тоа може да доведе до продуктивна размена, како и порано и поголемо цитирање " +"на објавената работа (Погледнете Ефектот на Отворен Пристап).
        6. \n" +"
        \n" +"

        Предложена политика за изданија што нудат одложен отворен пристап

        " +"\n" +"Авторите што објавуваат со ова издание се согласуваат на следниве термини:\n" +"
          \n" +"
        1. Авторите ги задржуваат авторските права и му даваат право на прва " +"објава на изданието, со делото [ПОСЕБЕН ПЕРИОД НА ВРЕМЕ] по објавувањето " +"истовремено лиценцирано под Лиценца за извор на авторски " +"права на Криејтив комонс што им овозможува на другите да го споделат " +"делото со потврда за авторството на делото и првично објавување на ова " +"издание.
        2. \n" +"
        3. Авторите се во можност да склучат одделни, дополнителни договори за " +"неексклузивна дистрибуција на верзијата на делото објавено од изданието (на " +"пр., објавете го во институционално складиште или објавете го во книга), со " +"потврда на неговото првично објавување во ова издание.
        4. \n" +"
        5. На авторите им е дозволено и охрабруваат да ја објавуваат својата " +"работа преку Интернет (на пример, во институционални складишта или на " +"нивната веб-страница) пред и за време на процесот на доставување, бидејќи " +"тоа може да доведе до продуктивна размена, како и порано и поголемо цитирање " +"на објавената работа (Погледнете Ефектот на Отворен Пристап).
        6. " +"\n" +"
        " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Чекори: Ред за поднесување > Преглед на поднесување > Уредување на " +"поднесување > Содржина.

        \n" +"Изберете модел за ракување со овие аспекти на уредничкиот процес. (За да " +"назначите Управувач и уредници на серии, одете во Уредници во Менаџмент на " +"издание.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

        За да им овозможите на читателите да лоцираат онлајн верзии на делото " +"цитирано од автор, следниве опции се достапни.

        \n" +"
          \n" +"
        1. Додадете алатка за читање

          Менаџерот за издание " +"може да додаде „Најди ги референците“ во Алатките за читање што ги " +"придружуваат објавените ставки, што им овозможува на читателите да го " +"залепат насловот на референцата и потоа да ги пребаруваат претходно " +"избраните научници бази на податоци за наведената работа.

        2. \n" +"
        3. Вметнување врски во референците

          Уредникот на " +"распоредот може да додаде врска до препораките што може да се најдат на " +"Интернет со користење на следниве упатства (што може да се уредуваат).

          " +"\n" +"
        " + +msgid "manager.publication.library" +msgstr "Притисни библиотека" + +msgid "manager.setup.resetPermissions" +msgstr "Ресетирајте ги дозволите за монографија" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Дали сте сигурни дека сакате да ги ресетирате податоците за дозволи веќе " +"приложени на монографии?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Изјавата за авторските права и информациите за лиценцата трајно ќе бидат " +"прикачени на објавената содржина, осигурувајќи дека овие податоци нема да се " +"променат во случај на промена на политиките за нови поднесоци од изданието. " +"За да ги ресетирате информациите зачувани дозволи што веќе се прикачени на " +"објавената содржина, користете го копчето подолу." + +msgid "manager.setup.resetPermissions.success" +msgstr "Дозволите за монографија беа успешно ресетирани." + +msgid "grid.genres.title.short" +msgstr "Компоненти" + +msgid "grid.genres.title" +msgstr "Компоненти на монографијата" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Испратете копија до примарниот контакт, идентификуван во Поставки за " +"изданието." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Патеката на сериите мора да се состои од само букви и броеви." + +msgid "grid.series.pathExists" +msgstr "Серијата патеки веќе постои. Ве молиме, внесете единствена патека." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Изберете серија" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" +"Изберете ја серијата до која сакате да се поврзе оваа ставка од менито." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Изберете категорија" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" +"Изберете ја категоријата до која сакате да се поврзе оваа ставка од менито." + +msgid "grid.series.urlWillBe" +msgstr "URL-то на серијата ќе биде: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "Статистика на списанието" + +msgid "stats.context.tooltip.text" +msgstr "" +"Број на посетители кои ја гледаат индексната страница на списанието и " +"каталогот." + +msgid "stats.context.tooltip.label" +msgstr "За статистиката на списанието" + +msgid "stats.context.downloadReport.description" +msgstr "" +"Преземете табела CSV/Excel со статистика за користење за ова списание што " +"одговара на следните параметри." + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "Бројот на прегледи на страници на списанието и индексот на каталогот." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Преземи Списание" + +msgid "stats.publications.downloadReport.description" +msgstr "" +"Преземете табела CSV/Excel со статистика за користење на монографии што " +"одговараат на следните параметри." + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Преземи Монографи" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" +"Бројот на прегледи на апстракти и преземање на датотеки за секој монограф." + +msgid "stats.publicationStats" +msgstr "Статистика за монографија" + +msgid "stats.publications.details" +msgstr "Детали за монографијата" + +msgid "stats.publications.none" +msgstr "" +"Не се пронајдени монографии со статистика за употреба што одговара на овие " +"параметри." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Вкупно прегледи на каталозите по датум" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Вкупно прегледи на датотеки по датум" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} од {$total} монографии" + +msgid "stats.publications.abstracts" +msgstr "Записи во каталогот" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Не се избрани објекти." + +msgid "plugins.importexport.common.error.validation" +msgstr "Не може да се конвертираат избраните објекти." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Невалиден XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Поднесоци за извоз" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Испратете копија од е-поштата за потврда на поднескот до главното лице за " +"контакт на ова издание." + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"Не е дефинирано главното лице за контакт за ова издание. Можете да внесете " +"главното лице за контакт во поставките на издание." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Наведените објекти не беа пронајдени." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "Наведениот корисник, \"{$userName}\", не постои." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Процесот не успеа да ги парсира форматите на објавите" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Процесот не успеа да ги парсира поглавјата" + +msgid "emailTemplate.variable.context.contextName" +msgstr "Име на издавачот" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "УРЛ кон страниците на издавачот" + +msgid "emailTemplate.variable.context.contactName" +msgstr "Име од примарниот контакт на издавачот" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "И-мејл потпис на издавачот за автоматски писма" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "И-мејл адреса на примарниот контакт од издавачот" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "Име на видот плаќања" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Износ на плаќање" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "Вид на платениот износ, како УСД" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Име на веб страницата ако има хостирано повеќе од еден издавач" + +msgid "mailable.validateEmailContext.name" +msgstr "Потврдете ја емаил адресата (Регистрација за списанието)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Овој емаил автоматски се испраќа до нов корисник кога ќе се регистрира во " +"списанието кога поставките бараат да се потврди емаил адресата." + +msgid "doi.displayName" +msgstr "ДОИ" + +msgid "doi.manager.displayName" +msgstr "DOIs" + +msgid "doi.description" +msgstr "" +"Овој приклучок овозможува доделување на Дигитални идентификатори на објекти " +"на монографии, поглавја, формати на објавување и датотеки во OMP." + +msgid "doi.readerDisplayName" +msgstr "ДОИ:" + +msgid "doi.manager.settings.description" +msgstr "" +"Конфигурирајте го приклучокот DOI за да можете да управувате и да користите " +"DOI во OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Изберете ги објектите за објавување на кои ќе им бидат доделени " +"идентификатори на дигитални објекти (ДОИ):" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Монографии" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Поглавја" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Формати на публикации" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Датотеки" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Префикс на ДОИ" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "Префиксот DOI е задолжителен и мора да биде во форма 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Внесете приспособена шема на суфикс за секој тип на публикација. " +"Прилагодената шема на суфикси може да ги користи следните симболи за да го " +"генерира суфиксот:

        %p Иницијали на Списанието
        " +"%m Идентификација на Монограф
        %c Chapter " +"ID
        %f Идентификација на Публикацискиот Формат
        %s Идентификација на Датотеката
        %x Прилагоден " +"Идентификатор

        Внимавајте дека приспособените обрасци на суфикси " +"често доведуваат до проблеми со генерирање и депонирање на DOI. Кога " +"користите приспособена шема на суфикс, внимателно тестирајте дали уредниците " +"можат да генерираат DOI и да ги депонираат во агенција за регистрација како " +"Crossref. " + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"На пример, изданието %ppub% r може да создаде ДОИ како што е 10.1234 / " +"pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "за монографии" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "за поглавја" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "за формати на објавување" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "за датотеки" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Внесете ја шемата за наставки ДОИ за монографии." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Внесете ја шемата на наставката ДОИ за поглавјата." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Внесете ја шемата за наставки ДОИ за формати на објавување." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Внесете ја шемата на наставката ДОИ за датотеките." + +msgid "doi.manager.settings.doiReassign" +msgstr "Поставете повторно ДОИ" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Ако ја промените конфигурацијата DOI, ДОИ што веќе се доделени нема да бидат " +"засегнати. Откако ќе се зачува конфигурацијата DOI, користете го ова копче " +"за да ги исчистите сите постојни DOI, така што новите поставки ќе стапат на " +"сила со сите постојни објекти." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Дали сте сигурни дека сакате да ги избришете сите постојни ДОИ?" + +msgid "doi.editor.doi" +msgstr "ДОИ" + +msgid "doi.editor.doi.description" +msgstr "ДОИ мора да започне со {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Додели" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "монографија" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "поглавје" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "формат на објавување" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "досие" + +msgid "doi.editor.customSuffixMissing" +msgstr "DOI не може да се додели бидејќи недостасува прилагодената наставка." + +msgid "doi.editor.missingParts" +msgstr "" +"Не можете да генерирате DOI бидејќи на еден или повеќе делови од моделот DOI " +"недостасуваат податоци." + +msgid "doi.editor.patternNotResolved" +msgstr "ДОИ не може да се додели затоа што содржи нерешена шема." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Она што го гледате е преглед на DOI. Изберете го полето за избор и зачувајте " +"го образецот за да го доделите DOI." + +msgid "doi.editor.assigned" +msgstr "ДОИ е доделен на овој {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Дадената наставка ДОИ веќе се користи за друга објавена ставка. Внесете " +"уникатен додаток ДОИ за секоја ставка." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Исчисти" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Дали сте сигурни дека сакате да го избришете постојниот ДОИ?" + +msgid "doi.editor.assignDoi" +msgstr "Доделете го ДОИ {$pubId} на овој {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI не може да се додели бидејќи недостасува прилагодената наставка." + +msgid "doi.editor.assignDoi.pattern" +msgstr "ДОИ {$pubId} не може да се додели бидејќи содржи нерешена шема." + +msgid "doi.editor.assignDoi.assigned" +msgstr "Назначен е ДОИ {$pubId}." + +msgid "doi.editor.missingPrefix" +msgstr "ДОИ мора да започне со {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "ДОИ за оваа публикација ќе биде {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "ДОИ не е доделен на оваа публикација." + +msgid "doi.editor.preview.chapters" +msgstr "Поглавје: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Формат на публикација: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Датотека: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Предмет" + +msgid "doi.manager.submissionDois" +msgstr "Монограф DOIs" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Овој емаил го известува авторот дека неговиот поднесок се испраќа до фазата " +"на внатрешна ревизија." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Овој емаил го известува авторот дека неговиот поднесок е одбиен, пред да " +"биде испратено на ревизија, бидејќи поднесокот не ги исполнува условите за " +"објавување во списанието." + +msgid "manager.institutions.noContext" +msgstr "Списанието на оваа институција не е пронајдено." + +msgid "manager.manageEmails.description" +msgstr "Уредете ги пораките испратени преку емаил од ова списание." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Испратено до Внатрешна Ревизија" + +msgid "mailable.indexRequest.name" +msgstr "Побаран Индекс" + +msgid "mailable.indexComplete.name" +msgstr "Комплетиран Индекс" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Креирана е Нова Верзија" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" +"Овој емаил автоматски ги известува доделените уредници кога е креирана нова " +"верзија на поднесокот." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"Овој емаил се испраќа до менаџерите на списанието кога ќе се поднесе нов " +"поднесок и не се доделуваат уредници." + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "Префиксот за DOI (идентификувач на дигитален објект) е доделен од CrossRef и е во формат " +#~ "10.xxxx (на пример, 10.1234)." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Префикс на ДОИ" + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Овој емаил автоматски се испраќа месечно до уредниците и менаџерите на " +"списанието за да им се обезбеди преглед на системот." + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "Емаил адресата на списанието" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "Линк до странизата за статистики од книгите" + +msgid "manager.sections.alertDelete" +msgstr "" +"Пред да се избрише оваа серија, мора да го преместите придруѓниот поднесок " +"од оваа серија кон друга серија." + +msgid "mailable.layoutComplete.name" +msgstr "Пробниот отисок е комплетен" + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "" +"Правото за продажба е прескокнато бидејќи нема означено земја или подрачје." + +msgid "emailTemplate.variable.context.contextAcronym" +msgstr "Иницијали на прес" diff --git a/locale/mk/submission.po b/locale/mk/submission.po new file mode 100644 index 00000000000..d71db5555c3 --- /dev/null +++ b/locale/mk/submission.po @@ -0,0 +1,624 @@ +# Ana Vucurevic , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-15 15:21+0000\n" +"Last-Translator: Ana Vucurevic \n" +"Language-Team: Macedonian \n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Одберете компонента" + +msgid "submission.title" +msgstr "Наслов на книгата" + +msgid "submission.select" +msgstr "Одберете поднесок" + +msgid "submission.synopsis" +msgstr "Краток преглед" + +msgid "submission.workflowType" +msgstr "Тип на поднесок" + +msgid "submission.workflowType.description" +msgstr "" +"Монограф е дело напишано од еден или повеќе автори. Изменетиот том има " +"различни автори за секое поглавје. (Деталите за поглавјето се внесуваат " +"подоцна.)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Изменет том" + +msgid "submission.workflowType.editedVolume" +msgstr "Изменет том: Авторите се поврзани со сопственото поглавје." + +msgid "submission.workflowType.authoredWork" +msgstr "Монограф: Авторите се поврзани со книгата во целост." + +msgid "submission.workflowType.change" +msgstr "Измена" + +msgid "submission.editorName" +msgstr "{$имеНаУредник} (ed)" + +msgid "submission.monograph" +msgstr "Монограф" + +msgid "submission.published" +msgstr "Подготвено за производство" + +msgid "submission.fairCopy" +msgstr "Пречистен текст" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Одобренија" + +msgid "submission.chapter" +msgstr "Поглавје" + +msgid "submission.chapters" +msgstr "Поглавја" + +msgid "submission.chapter.addChapter" +msgstr "Додади поглавје" + +msgid "submission.chapter.editChapter" +msgstr "Измени поглавје" + +msgid "submission.chapter.pages" +msgstr "Страници" + +msgid "submission.copyedit" +msgstr "Измени копија" + +msgid "submission.publicationFormats" +msgstr "Формати на издавање" + +msgid "submission.proofs" +msgstr "Проверки" + +msgid "submission.download" +msgstr "Превземи" + +msgid "submission.sharing" +msgstr "Сподели" + +msgid "manuscript.submission" +msgstr "Поднеси ракописен текст" + +msgid "submission.round" +msgstr "Round {$round}" + +msgid "submissions.queuedReview" +msgstr "На преглед" + +msgid "manuscript.submissions" +msgstr "Поднесоци на ракописен текст" + +msgid "submission.metadata" +msgstr "Метаподатоци" + +msgid "submission.supportingAgencies" +msgstr "Споредни агенции" + +msgid "grid.action.addChapter" +msgstr "Креирај ново поглавје" + +msgid "grid.action.editChapter" +msgstr "Измени го ова поглавје" + +msgid "grid.action.deleteChapter" +msgstr "Избриши го ова поглавје" + +msgid "submission.submit" +msgstr "Започни нова книга" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Започни нов поднесок" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Нов поднесок" + +msgid "submission.submit.upload" +msgstr "Прикачи поднесок" + +msgid "author.volumeEditor" +msgstr "Уредник на том" + +msgid "author.isVolumeEditor" +msgstr "Идентификувајте го овој соработник како уредник на овој том." + +msgid "submission.submit.seriesPosition" +msgstr "Позиција на серијалот" + +msgid "submission.submit.seriesPosition.description" +msgstr "Примери: Книга 2, Том 2" + +msgid "submission.submit.privacyStatement" +msgstr "Изјава за приватност" + +msgid "submission.submit.contributorRole" +msgstr "Улога на соработник" + +msgid "submission.submit.submissionFile" +msgstr "Поднесок" + +msgid "submission.submit.prepare" +msgstr "Подготовка" + +msgid "submission.submit.catalog" +msgstr "Каталог" + +msgid "submission.submit.metadata" +msgstr "Метаподатоци" + +msgid "submission.submit.finishingUp" +msgstr "Завршница" + +msgid "submission.submit.confirmation" +msgstr "Потврда" + +msgid "submission.submit.nextSteps" +msgstr "Следен чекор" + +msgid "submission.submit.coverNote" +msgstr "Насловна белешка до уредникот" + +msgid "submission.submit.generalInformation" +msgstr "Главни информации" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Печатот е известен за вашиот поднесок, и ви е испратен email за потврда. " +"Уредникот ќе ве контактира откако ќе го разгледа поднесокот." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Прочитајте и проверете ги ставките во списокот. Останаа {$ itemsRemain} " +"предмети кои не се избрани." + +msgid "submission.submit.placement" +msgstr "Позиција на поднесокот" + +msgid "submission.submit.userGroup" +msgstr "Поднеси ја мојата улога..." + +msgid "submission.submit.noContext" +msgstr "Изданието на поднесокот не беше пронајдено." + +msgid "grid.chapters.title" +msgstr "Поглавја" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Избриши го изменетиот прилог" + +msgid "submission.complete" +msgstr "Одобрено" + +msgid "submission.incomplete" +msgstr "Чека одобрување" + +msgid "submission.editCatalogEntry" +msgstr "Внес" + +msgid "submission.catalogEntry.new" +msgstr "Додади внес" + +msgid "submission.catalogEntry.add" +msgstr "Додај го изборот во каталогот" + +msgid "submission.catalogEntry.select" +msgstr "Одбери монографи и додади ги во каталогот" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Одберете барем еден монограф кој ќе биде додаден во каталогот." + +msgid "submission.catalogEntry.confirm" +msgstr "Додај ја оваа книга во јавниот каталог" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Потврдете дека поднесокот може да биде внесен во каталогот." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Овој монограф е спремен за внес во јавниот каталог." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Разгледај го поднесокот" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Датуми на издавање" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "" +"Датумот на издавање на монографот истовремено е датум на издавање на сите " +"поглавја." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Секое поглавје може да има свој датум на издавање." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Монограф" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Каталог" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Формат на издавање" + +msgid "submission.event.metadataPublished" +msgstr "Метаподатоците на монографот се одобрени за издавање." + +msgid "submission.event.metadataUnpublished" +msgstr "Метаподатоците на монографот повеќе не се објавени." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Форматот на публикација\"{$publicationFormatName}\" е достапен." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Форматот на публикација\"{$publicationFormatName}\" е недостапен." + +msgid "submission.event.publicationFormatPublished" +msgstr "Форматот \"{$publicationFormatName}\" е одобрен за издавање." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "Форматот \"{$publicationFormatName}\" повеќе не е објавен." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Метаподатоците за каталогот беа ажурирани." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"Метаподатоците за форматот на издавање \"{$publicationFormatName}\" беа " +"ажурирани." + +msgid "submission.event.publicationFormatCreated" +msgstr "Форматот на издавање со име \"{$formatName}\" беше креиран." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Форматот на издавање \"{$formatName}\" беше отстранет." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Испрати на надворешна контрола" + +msgid "workflow.review.externalReview" +msgstr "Надворешна контрола" + +msgid "submission.upload.fileContents" +msgstr "Компонента на поднесок" + +msgid "submission.dependentFiles" +msgstr "Зависни датотеки" + +msgid "submission.metadataDescription" +msgstr "" +"Овие спецификации се засноваат на Dublin Core сетот од метаподатоци, " +"интернационален стандард за опис на содржина на издаваштво." + +msgid "section.any" +msgstr "Било кој серијал" + +msgid "submission.list.monographs" +msgstr "Монографи" + +msgid "submission.list.countMonographs" +msgstr "{$count} монографи" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} од {$total} монографи" + +msgid "submission.list.orderFeatures" +msgstr "Карактеристики на нарачката" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Со помош на влечење или притискање на копчињата можете да го промените " +"редоследот на карактеристики на почетната страница." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Со помош на влечење или притискање на копчињата можете да го промените " +"редоследот на карактеристики на {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Зачувај нарачка" + +msgid "submission.list.viewEntry" +msgstr "Разгледај внес" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Наслови" + +msgid "publication.catalogEntry" +msgstr "Внес во каталог" + +msgid "publication.catalogEntry.success" +msgstr "Деталите за овој внес во каталогот беа ажурирани." + +msgid "publication.invalidSeries" +msgstr "Серијалот за ова издание не е пронајден." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Неактивна)" + +msgid "publication.required.issue" +msgstr "" +"Публикацијата мора да биде доделена на издание пред да може да се објави." + +msgid "publication.publishedIn" +msgstr "Издадено во {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Сите барања за објавување се исполнети. Дали сакате да го објавите овој внес " +"во каталогот?" + +msgid "publication.scheduledIn" +msgstr "Закажано за публикација во {$issueName}." + +msgid "submission.publication" +msgstr "Издание" + +msgid "publication.status.published" +msgstr "Издадено" + +msgid "submission.status.scheduled" +msgstr "Закажано" + +msgid "publication.status.unscheduled" +msgstr "Незакажано" + +msgid "submission.publications" +msgstr "Изданија" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Авторската година ќе се постави автоматски кога текстот ќе биде објавен во " +"издание." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Авторската година ќе биде поставена автоматски врз основа на датумот на " +"објавување." + +msgid "publication.datePublished" +msgstr "Датум на издавање" + +msgid "publication.editDisabled" +msgstr "Оваа верзија ќе биде издадена и не може да биде изменета." + +msgid "publication.event.published" +msgstr "Поднесокот беше објавен." + +msgid "publication.event.scheduled" +msgstr "Поднесокот е закажан за објавување." + +msgid "publication.event.unpublished" +msgstr "Поднесокот беше повлечен." + +msgid "publication.event.versionPublished" +msgstr "Објавена е нова верзија." + +msgid "publication.event.versionScheduled" +msgstr "Нова верзија е закажана за објавување." + +msgid "publication.event.versionUnpublished" +msgstr "Верзијата е повлечена." + +msgid "publication.invalidSubmission" +msgstr "Поднесокот за ова издание не е пронајден." + +msgid "publication.publish" +msgstr "Објави" + +msgid "publication.publish.requirements" +msgstr "" +"Следните услови мораат да бидат исполнети пред текстот да биде објавен." + +msgid "publication.required.declined" +msgstr "Одбиениот поднесок не може да биде објавен." + +msgid "publication.required.reviewStage" +msgstr "" +"Поднесокот мора да ги помине фазите на измена на копија или продукција пред " +"да биде објавен." + +msgid "submission.license.description" +msgstr "" +"Лиценцата ќе биде автоматски поставена на {$licenseName} кога текстот ќе биде објавен." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Авторските права ќе бидат автоматски доделени на {$copyright} кога текстот " +"ќе биде објавен." + +msgid "submission.copyrightOther.description" +msgstr "Додели авторски права за поднесок на следната странка." + +msgid "publication.unpublish" +msgstr "Повлечи објава" + +msgid "publication.unpublish.confirm" +msgstr "Дали сте сигурни дека не сакате ова да биде објавено?" + +msgid "publication.unschedule.confirm" +msgstr "Дали сте сигурни дека не сакате да закажете објавување?" + +msgid "publication.version.details" +msgstr "Детали за издание за верзија {$version}" + +msgid "submission.queries.production" +msgstr "Продукциска дискусија" + +msgid "publication.chapter.landingPage" +msgstr "Поглавје" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Покажете го ова поглавје сопствена страница и поврзете се до таа страница од " +"содржината на книгата." + +msgid "publication.publish.success" +msgstr "Публикацискиот статус е успешно променет." + +msgid "chapter.volume" +msgstr "Том" + +msgid "submission.withoutChapter" +msgstr "{$name} — Без ова поглавје" + +msgid "submission.chapterCreated" +msgstr " — Поглавјето е создадено" + +msgid "chapter.pages" +msgstr "Страници" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Испрати до Внатрешна Проверка" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "Овој поднесок е подготвен да се испрати за внатрешна проверка." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} го испрати поднесокот до фазата на внатрешна проверка." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Испратено за Внатрешна Проверка" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"Поднесокот, {$title}, е испратен до фазата за внатрешна проверка. Авторот е " +"известен, освен ако не одлучивте да го прескокнете тој емаил." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Испратете емаил до авторите за да ги известите дека овој поднесок ќе биде " +"испратен на внатрешен преглед. Доколку е возможно, дајте им на авторите " +"некои индикации за тоа колку долго би можел да потрае процесот на внатрешна " +"проверка и кога да очекуваат повторно да слушнат од уредниците." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" +"Селектирајте ги датотеките кои треба да се испратат до фазата на внатрешен " +"преглед." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" +"{$editorName} го испрати овој поднесок до фазата за надворешна проверка." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Испратено за Надворешна Проверка" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "Овој поднесок, {$title}, е испратен до фазата за надворешна проверка." + +msgid "editor.submission.decision.backToReview" +msgstr "Назад кон Проверка" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Вратете ја одлуката да го прифатите овој поднесок и испратете го назад во " +"фазата на преглед." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} ја вратил одлуката за прифаќање на овој поднесок и го вратил " +"во фаза на ревизија." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Вратено за Ревизија" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "Поднесокот, {$title}, е вратен во фазата на ревизија." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Испратете емаил до авторите за да ги известите дека нивниот поднесок се " +"враќа назад во фазата на ревизија. Објаснете зошто е донесена оваа одлука и " +"информирајте го авторот каков понатамошен преглед ќе биде преземен." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Испратете емаил до авторите за да ги известите дека овој поднесок ќе биде " +"испратен на отворена рецензија. Ако е можно, дајте им на авторите некои " +"индикации за тоа колку долго може да трае процесот на рецензија и кога да " +"очекуваат повторно да слушнат од уредниците." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" +"Селектирајте ги датотеките кои треба да се испратат до фазата на ревизија." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Препорачај Испрати на Надворешен Ревизија" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" +"Препорачај овој поднесок да се испрати во фазата на надворешна ревизија." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} препорача овој поднесок да се испрати до фаза на надворешна " +"ревизија." + +msgid "doi.submission.incorrectContext" +msgstr "" +"Не може да се креира DOI за следниот поднесок: {$pubObjectTitle}. Не постои " +"во сегашниот контекст на списанието." + +msgid "publication.chapter.licenseUrl" +msgstr "Линк за Лиценца" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "Линк на Стандардна Лиценца за Поглавје" + +msgid "submission.copyright.description" +msgstr "" +"Ве молиме прочитајте ги и разберете ги условите за авторски права за " +"поднесоци во ова списание." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Не ви е дозволено да поднесувате во ова списание бидејќи авторите мора да " +"бидат регистрирани од едиторите. Доколку сметате дека ова е грешка, Ве " +"молиме исконтактирајте го/ја{$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} не прифаќа поднесоци до {$section} низата. Доколку Ви треба " +"помош за враќање на вашиот поднесок, Ве молиме исконтактирајте го/ја{$name}." + +msgid "submission.sectionNotFound" +msgstr "Низата за овој поднесок не е пронајдена." + +msgid "submission.sectionRestrictedToEditors" +msgstr "Само на уредниците им е дозволено да поднесуваат до оваа низа." + +msgid "submission.wizard.submitting.monograph" +msgstr "Поднесување Монограф." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "Поднесување Монограф во{$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Поднесување Уреден Том." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Поднесување Едитиран Том во{$language}." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Ве молиме наведете ги сите поглавја од овој поднесок. Ако испраќате уреден " +"том, ве молиме проверете дали секое поглавје ги означува соработниците за " +"тоа поглавје." diff --git a/locale/mk_MK/admin.po b/locale/mk_MK/admin.po deleted file mode 100644 index 5a4d4ea034b..00000000000 --- a/locale/mk_MK/admin.po +++ /dev/null @@ -1,154 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-02-05 18:07+0000\n" -"Last-Translator: Teodora Fildishevska \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

        ЗАБЕЛЕШКА! \n" -"

        Системот не може автоматски да ја замени конфигурациската датотека. За " -"да ги примените промените во конфигурацијата, мора да отворите " -"config.inc.php во соодветен уредувач на текст и да ја замените " -"неговата содржина со содржината на полето за текст подолу.

        " - -msgid "admin.presses.addPress" -msgstr "Додади Издание" - -msgid "admin.contexts.contextDescription" -msgstr "Опис на издание" - -msgid "admin.contexts.form.edit.success" -msgstr "{$ name} е успешно изменето." - -msgid "admin.contexts.form.create.success" -msgstr "{$ name} е успешно креирано." - -msgid "admin.contexts.form.pathExists" -msgstr "Селектираната патека веќе се користи за друго издание." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "" -"Патеката може да вклучува само букви, броеви и знаци _ и -. Мора да започне " -"и да заврши со буква или број." - -msgid "admin.contexts.form.pathRequired" -msgstr "Потребна е патека." - -msgid "admin.contexts.form.titleRequired" -msgstr "Потребен е наслов." - -msgid "admin.contexts.create" -msgstr "Креирај Издание" - -msgid "admin.presses.noneCreated" -msgstr "Не се создадени изданија." - -msgid "admin.presses.pressSettings" -msgstr "Подесувања на Издание" - -msgid "admin.systemConfiguration" -msgstr "ОМП Конфигурација" - -msgid "admin.systemVersion" -msgstr "ОМП Верзија" - -msgid "admin.languages.confirmDisable" -msgstr "" -"Дали сте сигурни дека сакате да ја оневозможите оваа локација? Ова може да " -"влијае на сите зачувани изданија кои ја користат локацијата." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "" -"Изберете дополнителни локации за инсталирање поддршка на овој систем. " -"Локациите мора да бидат инсталирани пред да можат да се користат од " -"зачуваните изданија. Погледнете ја документацијата на ОМП за информации за " -"додавање поддршка за нови јазици." - -msgid "admin.languages.confirmUninstall" -msgstr "" -"Дали сте сигурни дека сакате да ја избришете оваа локација? Ова може да " -"влијае на сите изданија што се зачувани на оваа локација." - -msgid "admin.locale.maybeIncomplete" -msgstr "* Означените локации може да бидат нецелосни." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "" -"Изберете ги сите локации за поддршка на страницата. Избраните локации ќе " -"бидат достапни за употреба од сите изданија зачувани на страницата, и исто " -"така ќе се појават во менито за избирање на јазик на секоја страница на " -"страната(што може да се пребрише на страници специфични за изданието). Ако " -"повеќе локации не се избрани, менито за промена на јазик нема да се појави и " -"проширените поставки за јазик нема да бидат достапни за изданијата." - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "" -"Ова ќе биде основниот јазик за страната и сите изданија што се зачувани на " -"страната." - -msgid "admin.settings.noPressRedirect" -msgstr "Не пренасочувај" - -msgid "admin.settings.redirectInstructions" -msgstr "" -"Барањата до главната страница ќе бидат пренасочени кон ова издание. Ова може " -"да биде корисно доколку страницата има само едно издание, на пример." - -msgid "admin.settings.redirect" -msgstr "Пренасочување кон издание" - -msgid "admin.settings.info.success" -msgstr "Информациите за страницата се успешно ажурирани." - -msgid "admin.settings.config.success" -msgstr "Поставките за конфигурација на страницата се успешно ажурирани." - -msgid "admin.settings.appearance.success" -msgstr "Подесувањата за изгледот на страната се успешно ажурирани." - -msgid "admin.hostedContexts" -msgstr "Наши Изданија" - -msgid "admin.settings.disableBulkEmailRoles.contextDisabled" -msgstr "" -"Функцијата за испраќање е-пошта во големи количини е оневозможена за ова " -"издание. Овозможете ја оваа функција преку " -"Администратор > Поставки на веб-страницата." - -msgid "admin.settings.disableBulkEmailRoles.description" -msgstr "" -"Менаџерот на изданието нема да може да испраќа е-пошта во големи количини до " -"било која од избраните улоги подолу. Користете ја оваа поставка за да ја " -"ограничите злоупотребата на функцијата за известувања преку е-пошта. На " -"пример, можно е да биде побезбедно да оневозможите испраќање на е-пошта во " -"големи количини до читатели, автори, или други големи групи на корисници кои " -"не се согласиле да примаат таква е-пошта.

        Функцијата за испраќање е-" -"пошта во големи количини за ова издание може да биде целосно оневозможена " -"преку Администратор > Поставки на " -"веб-страницата." - -msgid "admin.settings.enableBulkEmails.description" -msgstr "" -"Изберете ги хостираните изданија на кои треба да им биде дозволено да " -"испраќаат и-меил во големи количини. Кога е овозможена оваа функција, " -"менаџерот на изданието ќе може да испраќа и-меил до сите корисници " -"регистрирани на нивното издание.

        Злоупотреба на оваа функција како би " -"се испраќала непосакувана е-пошта може да ги прекрши анти-спам законите во " -"некои подрачја и може да доведе до блокирање на е-поштата од вашиот сервер " -"како спам. Побарајте техничко мислење пред да ја овозможите оваа функција и " -"размислете за консултација до менџери на изданија за да се уверите дека е " -"правилно користена.

        Дополнителни ограничувања на оваа функција може " -"да бидат овозможени за секое издание со посета на неговиот волшебник за " -"поставки во листата со Хостирани " -"изданија." - -msgid "admin.contexts.form.primaryLocaleNotSupported" -msgstr "Главниот локал мора да биде еден од поддржаните локали на изданието." diff --git a/locale/mk_MK/api.po b/locale/mk_MK/api.po deleted file mode 100644 index 4f16bb53279..00000000000 --- a/locale/mk_MK/api.po +++ /dev/null @@ -1,41 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-02-05 18:07+0000\n" -"Last-Translator: Teodora Fildishevska \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "api.submissions.403.contextRequired" -msgstr "" -"За да направите или измените поднесок, мора да поднесете барање до крајната " -"точка на API за изданието." - -msgid "api.submissions.403.cantChangeContext" -msgstr "Не можете да го промените изданието на поднесокот." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "Публикацијата што ја побаравте не е дел од овој поднесок." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "Публикацијата што ја побаравте не е дел од ова издание." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "" -"Немате дозвола да го преместите овој образец за е-пошта на друго издание." - -msgid "api.submissions.400.submissionsNotFound" -msgstr "Не може да се најдат еден или повеќе од поднесоците што ги наведовте." - -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Мора да наведете еден или повеќе легитимации за поднесување што ќе бидат " -"додадени во каталогот." - -msgid "api.emails.403.disabled" -msgstr "Функцијата за известување преку е-пошта не е овозможена за ова издание." diff --git a/locale/mk_MK/author.po b/locale/mk_MK/author.po deleted file mode 100644 index e4033025e97..00000000000 --- a/locale/mk_MK/author.po +++ /dev/null @@ -1,15 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-04 22:32+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "author.submit.notAccepting" -msgstr "Ова издание не прифаќа поднесоци во овој момент." diff --git a/locale/mk_MK/default.po b/locale/mk_MK/default.po deleted file mode 100644 index 4b35073f07e..00000000000 --- a/locale/mk_MK/default.po +++ /dev/null @@ -1,184 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-04 22:32+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "НР" - -msgid "default.groups.plural.externalReviewer" -msgstr "Надворешни Рецензенти" - -msgid "default.groups.name.externalReviewer" -msgstr "Надворешен Рецензент" - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Ние ги охрабруваме библиотекарите за истражување да го наведат ова издание " -"меѓу електронските изданија на нивната библиотека. Исто така, овој систем за " -"објавување со отворен извор е погоден за библиотеки да ги зачувуваат на " -"нивните членови на факултет за да ги користат со изданието што го вклучуваат " -"во уредувањето (видете Отвори монографско " -"издание )." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"Заинтересирани сте да се пријавите на ова издание? Препорачуваме да ја " -"прегледате За страницата " -"„Издание“ страницата за политиките на делот за изданието и " -"Упатства за автори Авторите треба да регистрираат со изданието " -"пред да ги достават, или ако веќе се регистрирани можат едноставно најавете се и започнете го процесот " -"со 5 чекори." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Ние ги охрабруваме читателите да се пријават на услугата за известување за " -"објавување за ова издание. Користете ја врската Регистрирај се на горниот " -"дел од почетната страница за изданието. Оваа регистрација ќе резултира со " -"тоа што читателот ќе ја добие Содржината по е-пошта за секоја нова " -"монографија на изданието. Оваа листа исто така му овозможува на изданието да " -"бара одредено ниво на поддршка или читателска публика. Погледнете го " -"изданието Изјава за приватност што ги уверува читателите дека " -"нивното име и адреса на е-пошта нема да се користат за други цели." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
        \n" -"____________________________________________________________________________ " -"
        \n" -" {$ ldelim} $textName {$ rdelim} " -"" - -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Ова издание обезбедува непосреден отворен пристап до неговата содржина врз " -"принципот дека ставањето истражувања слободно достапни за јавноста поддржува " -"поголема глобална размена на знаење." - -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

        Имињата и адресите за е-пошта внесени на оваа страница за изданието ќе " -"се користат исклучиво за наведените цели на ова издание и нема да бидат " -"достапни за било која друга цел или на било која друга страна.

        " - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "" -"Текстот се придржува до стилските и библиографските барања наведени во Упатства за автори , што се наоѓаат во За Изданието." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"Текстот е еднопростор; користи фонт бр. 12; применува ракописно пишување, " -"наместо подвлекување (освен со URL адреси); и сите илустрации, слики и " -"табели се ставаат во текстот во соодветните точки, наместо на крајот." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Онаму каде што е достапно, обезбедени се URL-адреси за референци." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "" -"Датотеката за поднесување е во формат на датотека Microsoft Word, RTF или " -"OpenDocument." - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"Поднесокот не е објавен претходно, ниту е пред друго издание за разгледување " -"(или е дадено објаснување во Коментари до уредникот)." - -msgid "default.groups.abbrev.volumeEditor" -msgstr "ВЕ" - -msgid "default.groups.plural.volumeEditor" -msgstr "Уредници на Том" - -msgid "default.groups.name.volumeEditor" -msgstr "Уредник на Том" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "ЦА" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Автори на Глава" - -msgid "default.groups.name.chapterAuthor" -msgstr "Автор на Глава" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "КкбИ" - -msgid "default.groups.plural.sectionEditor" -msgstr "Уредници на серии" - -msgid "default.groups.name.sectionEditor" -msgstr "Уредник на серии" - -msgid "default.groups.abbrev.editor" -msgstr "ПЕ" - -msgid "default.groups.plural.editor" -msgstr "Уредници на издание" - -msgid "default.groups.name.editor" -msgstr "Уредник на издание" - -msgid "default.groups.abbrev.manager" -msgstr "ПМ" - -msgid "default.groups.plural.manager" -msgstr "Менаџери за издание" - -msgid "default.groups.name.manager" -msgstr "Менаџер за издание" - -msgid "default.genres.other" -msgstr "Останато" - -msgid "default.genres.illustration" -msgstr "Илустрација" - -msgid "default.genres.photo" -msgstr "Фотографија" - -msgid "default.genres.figure" -msgstr "Број" - -msgid "default.genres.table" -msgstr "Содржина" - -msgid "default.genres.prospectus" -msgstr "Проспект" - -msgid "default.genres.preface" -msgstr "Вовед" - -msgid "default.genres.index" -msgstr "Индекс" - -msgid "default.genres.glossary" -msgstr "Речник" - -msgid "default.genres.chapter" -msgstr "Манускрипт на Глава" - -msgid "default.genres.manuscript" -msgstr "Манускрипт на Книга" - -msgid "default.genres.bibliography" -msgstr "Библиографија" - -msgid "default.genres.appendix" -msgstr "Додаток" diff --git a/locale/mk_MK/editor.po b/locale/mk_MK/editor.po deleted file mode 100644 index fca04baeaef..00000000000 --- a/locale/mk_MK/editor.po +++ /dev/null @@ -1,212 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-04 22:32+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.submissions.assignedTo" -msgstr "Додели на Уредник" - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "" -"Јавниот идентификатор '{$ publicIdentifier}' веќе постои за друг објект од " -"ист тип. Ве молиме изберете уникатни идентификатори за објекти од ист тип во " -"вашиот печат." - -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "" -"Сите датотеки што веќе се поставени во која било фаза на поднесување може да " -"се додадат во списокот Доказни датотеки со обележување на изборното поле " -"подолу и кликнување на Пребарување: ќе бидат наведени сите достапни датотеки " -"и може да бидат избрани за вклучување." - -msgid "editor.monograph.proof.addNote" -msgstr "Додадете одговор" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Поставете Услови" - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Поставете Услови за преземање" - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "" -"Додадете формати за објавување (на пример, дигитални, меки) за кои уредникот " -"за распоред подготвува докази за страницата за лекторирање. Доказите " -" треба да се проверат како одобрени и записот Каталог за " -"форматот треба да се провери како што е објавен во записот на каталогот на " -"книгата, пред да може да се направи формат Достапно (т.е. " -"објавено)." - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "" -"Различни формати на публикации, како што се тврда корица, мека корица и " -"дигитални, може да се постават во делот Формати на публикации подолу. Можете " -"да ја користите табелата за формати на објавување подолу како список за " -"проверка за тоа што сè уште треба да се направи за да се објави формат на " -"публикација." - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Одобрување и објавување" - -msgid "editor.monograph.proofs" -msgstr "Докази" - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Добра Копија" - -msgid "editor.submission.introduction" -msgstr "" -"Во Поднесувањето, уредникот, по консултација со доставените датотеки, избира " -"соодветно дејство (што вклучува известување за авторот): Испрати до " -"внатрешен преглед (вклучува избор на датотеки за внатрешен преглед); " -"Испратете до надворешен преглед (вклучува избор на датотеки за надворешен " -"преглед); Прифатете го поднесувањето (вклучува избор на датотеки за " -"уредничката фаза); или Одбијте го поднесувањето (поднесување архива)." - -msgid "editor.monograph.legend.uploaded" -msgstr "Датотеката е поставена според улогата во насловот на мрежната колона" - -msgid "editor.monograph.legend.complete" -msgstr "Акцијата заврши" - -msgid "editor.monograph.legend.in_progress" -msgstr "Акцијата е во тек или сè уште не е завршена" - -msgid "editor.monograph.legend.delete" -msgstr "Избришете ставка" - -msgid "editor.monograph.legend.edit" -msgstr "Уредете ставка" - -msgid "editor.monograph.legend.notes_new" -msgstr "" -"Информации за датотеката: белешки, опции за известување и историја (додадени " -"нови белешки од последната посета)" - -msgid "editor.monograph.legend.notes" -msgstr "" -"Информации за датотеката: белешки, опции за известување и историја (" -"Белешките се достапни)" - -msgid "editor.monograph.legend.notes_none" -msgstr "" -"Информации за датотеката: белешки, опции за известување и историја (сè уште " -"не се додадени белешки)" - -msgid "editor.monograph.legend.more_info" -msgstr "Повеќе информации: белешки за датотеки, опции за известување и историја" - -msgid "editor.monograph.legend.settings" -msgstr "" -"Прегледувај и пристапи до поставките на ставките, како што се информации и " -"опции за бришење" - -msgid "editor.monograph.legend.add_user" -msgstr "Додадете корисник во секцијата" - -msgid "editor.monograph.legend.add" -msgstr "Поставете датотека во секцијата" - -msgid "editor.monograph.legend.participants" -msgstr "" -"Прегледај ги и управувај со учесниците на овој поднесок: автори, уредници, " -"дизајнери и многу повеќе" - -msgid "editor.monograph.legend.bookInfo" -msgstr "" -"Прегледувајте и управувајте со метаподатоците за поднесување, белешките, " -"известувањата и историјата" - -msgid "editor.monograph.legend.catalogEntry" -msgstr "" -"Прегледувајте и управувајте со записот во каталогот за поднесување, " -"вклучувајќи метаподатоци и формати за објавување" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Дејства и опции определени за индивидуална датотека." - -msgid "editor.monograph.legend.itemActions" -msgstr "Акции за Артикл" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "" -"Опции определени за даден дел, на пример, поставување датотеки или додавање " -"корисници." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Акции на Дел" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Целосни активности и опции за поднесување." - -msgid "editor.monograph.legend.submissionActions" -msgstr "Акции за Поднесување" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Порака до корисник" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Тековни Датотеки" - -msgid "editor.monograph.final.currentFiles" -msgstr "Тековни Датотеки за Конечни Нацрти" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Изберете Конечни Датотеки за Нацрт" - -msgid "editor.monograph.externalReview" -msgstr "Иницирајте Надворешен Преглед" - -msgid "editor.monograph.internalReviewDescription" -msgstr "" -"Изберете датотеки подолу за да ги испратите во фазата на внатрешно " -"разгледување." - -msgid "editor.monograph.internalReview" -msgstr "Иницирајте Внатрешен Преглед" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Лекторирање Датотеки" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Опции за преглед на врсници" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Прегледајте преглед" - -msgid "editor.monograph.editorToEnter" -msgstr "Уредник за внесување препорака / коментари за рецензент" - -msgid "editor.monograph.replaceReviewer" -msgstr "Замени го Рецензентот" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "" -"Изберете рецензент погоре и притиснете го копчето „Избери рецензент“ за да " -"продолжите." - -msgid "editor.monograph.recommendation" -msgstr "Препорака" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Внеси Препорака на Рецензент" - -msgid "editor.monograph.enterRecommendation" -msgstr "Внеси Препорака" - -msgid "editor.monograph.clearReview" -msgstr "Исчисти Рецензент" - -msgid "editor.monograph.cancelReview" -msgstr "Откажи го Барањето" - -msgid "editor.submissionArchive" -msgstr "Архива на Поднесување" diff --git a/locale/mk_MK/emails.po b/locale/mk_MK/emails.po deleted file mode 100644 index 1e1f31d0d05..00000000000 --- a/locale/mk_MK/emails.po +++ /dev/null @@ -1,1019 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-06 17:52+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Почитуван {$reviewerName},
        \n" -"Само нежен потсетник за нашето барање за преглед на поднесокот, " " -"{$missionTitle}, " за {$textName}. Се надевавме дека ќе го добиеме " -"вашиот одговор до {$answerDueDate} и оваа е-пошта е автоматски генерирана и " -"испратена со истекот на тој датум.\n" -"
        \n" -"{$messageToReviewer}
        \n" -"
        \n" -"Ве молиме, најавете се на веб-страницата за печат за да наведете дали ќе " -"направите преглед или не, како и за пристап до поднесокот и да ги снимите " -"прегледот и препораката.
        \n" -"
        \n" -"Самиот преглед е доставен {$reviewDueDate}.
        \n" -"
        \n" -"URL на поднесување: {$missionReviewUrl}
        \n" -"
        \n" -"Корисничко име: {$reviewerUserName}
        \n" -"
        \n" -"Ви благодариме што го разгледавте ова барање.
        \n" -"
        \n" -"
        \n" -"Со почит,
        \n" -"{$editorialContactSignature}
        \n" - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Барање за преглед на ракописи" - -msgid "emails.reviewRequestOneclick.description" -msgstr "" -"Оваа е-пошта од Уредникот на серии до Рецензент бара рецензентот да ја " -"прифати или одбие задачата за преглед на поднесокот. Дава информации за " -"поднесокот, како што се насловот и апстрактот, датумот на достасување на " -"прегледот и начинот на пристап до самиот поднесок. Оваа порака се користи " -"кога е избран Стандардниот процес на преглед во Управување> Поставки> " -"Работно време> Преглед и е овозможен пристап со преглед на еден клик." - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Верувам дека ќе послужите како одличен рецензент на ракописот, " " -"{$missionTitle}, " што е доставено до {$textName}. Апстрактот на " -"поднесокот е вметнат подолу, и се надевам дека ќе размислите да ја преземете " -"оваа важна задача за нас.
        \n" -"
        \n" -"Ве молиме, најавете се на веб-страницата за печат до {$weekLaterDate} за да " -"наведете дали ќе го направите прегледот или не, како и да пристапите до " -"поднесувањето и да ги снимите прегледот и препораката.
        \n" -"
        \n" -"Самиот преглед е доставен {$reviewDueDate}.
        \n" -"
        \n" -"URL на поднесување: {$missionReviewUrl}
        \n" -"
        \n" -"Ви благодариме што го разгледавте ова барање.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -"" {$missionTitle} "
        \n" -"
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Барање за преглед на ракописи" - -msgid "emails.reviewRequest.description" -msgstr "" -"Оваа е-пошта од Уредникот на серии до Рецензент бара рецензентот да ја " -"прифати или одбие задачата за преглед на поднесокот. Дава информации за " -"поднесокот, како што се насловот и апстрактот, датумот на достасување на " -"прегледот и начинот на пристап до самиот поднесок. Оваа порака се користи " -"кога е избран Стандардниот процес на преглед во Управување> Поставки> " -"Работно време> Преглед. (Инаку, видете во REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequest.body" -msgstr "" -"Почитуван {$reviewerName},
        \n" -"
        \n" -"{$messageToReviewer}
        \n" -"
        \n" -"Ве молиме, најавете се на веб-страницата за печат до {$answerDueDate} за да " -"наведете дали ќе го направите прегледот или не, како и за пристап до " -"поднесувањето и да ги снимите прегледот и препораката.
        \n" -"
        \n" -"Самиот преглед е доставен {$reviewDueDate}.
        \n" -"
        \n" -"URL на поднесување: {$missionReviewUrl}
        \n" -"
        \n" -"Корисничко име: {$reviewerUserName}
        \n" -"
        \n" -"Ви благодариме што го разгледавте ова барање.
        \n" -"
        \n" -"
        \n" -"Со почит,
        \n" -"{$editorialContactSignature}
        \n" - -msgid "emails.reviewRequest.subject" -msgstr "Барање за преглед на ракописи" - -msgid "emails.editorAssign.description" -msgstr "" -"Оваа е-пошта го известува Уредувачот на серии дека Уредникот им ја доделил " -"задачата да го надгледуваат поднесувањето преку процесот на уредување. Дава " -"информации за поднесувањето и како да пристапите до страницата за печат." - -msgid "emails.editorAssign.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Поднесувањето, " {$submitTitle}, " на {$textName} ви е доделен да " -"видите низ уредничкиот процес во улогата на уредник.
        \n" -"
        \n" -"URL-то за поднесување: {$submitUrl}
        \n" -"Корисничко име: {$editorUsername}
        \n" -"
        \n" -"Ви благодарам," - -msgid "emails.editorAssign.subject" -msgstr "Уредувачка задача" - -msgid "emails.submissionAckNotUser.description" -msgstr "" -"Оваа е-пошта, кога е овозможена, автоматски се испраќа до другите автори кои " -"не се корисници во рамките на ОМП наведени за време на процесот на " -"доставување." - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Здраво,
        \n" -"
        \n" -"{$submitterName} го достави ракописот, " {$submitTitle}" до " -"{$textName}.
        \n" -"
        \n" -"Ако имате какви било прашања, контактирајте ме. Ви благодариме што го " -"разгледавте овој печат како место за вашата работа.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.subject" -msgstr "Признание за поднесување" - -msgid "emails.submissionAck.description" -msgstr "" -"Оваа е-пошта, кога е овозможена, автоматски се испраќа до авторот кога тој " -"или таа ќе го заврши процесот на доставување на ракопис до печатот. Дава " -"информации за следење на поднесувањето низ процесот и му се заблагодарува на " -"авторот за поднесувањето." - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Ви благодариме што го доставивте ракописот, " {$ испраќањеTitle}" " -"до {$textName}. Со системот за управување со интернет печат што го " -"користиме, ќе можете да го следите неговиот напредок низ уредничкиот процес " -"со најавување на веб-страницата за печат:
        \n" -"
        \n" -"URL на ракопис: {$submitUrl}
        \n" -"Корисничко име: {$authorUsername}
        \n" -"
        \n" -"Ако имате какви било прашања, контактирајте ме. Ви благодариме што го " -"разгледавте овој печат како место за вашата работа.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.subject" -msgstr "Признание за поднесување" - -msgid "emails.publishNotify.description" -msgstr "" -"Оваа е-пошта е испратена до регистрираните читатели преку врската \"" -"Известете ги корисниците\" во Корисничкиот дом на уредникот. Ги известува " -"читателите за нова книга и ги поканува да го посетат печатот на дадена " -"URL-адреса." - -msgid "emails.publishNotify.body" -msgstr "" -"Читатели:
        \n" -"
        \n" -"{$textName} штотуку ја објави својата најнова книга на {$textUrl}. Ве " -"покануваме да ја разгледате Содржината тука и потоа да ја посетите нашата " -"веб-страница за да прегледате монографии и предмети од интерес.
        \n" -"
        \n" -"Ви благодариме за постојаниот интерес за нашата работа,
        \n" -"{$ editorialContactSignature}" - -msgid "emails.publishNotify.subject" -msgstr "Објавена нова книга" - -msgid "emails.reviewerRegister.description" -msgstr "" -"Оваа е-пошта е испратена до новорегистриран прегледувач за да ги поздрави во " -"системот и да им обезбеди запис за нивното корисничко име и лозинка." - -msgid "emails.reviewerRegister.body" -msgstr "" -"Во согласност на вашата експертиза, ние презедовме слобода да го " -"регистрираме вашето име во базата на податоци на рецензенти за {$textName}. " -"Ова не повлекува каква било форма на обврска од ваша страна, туку едноставно " -"ни овозможува да ви пристапиме со поднесок за евентуално разгледување. Кога " -"сте поканети да ги разгледате, ќе имате можност да ги видите насловот и " -"апстрактот на предметниот труд и секогаш ќе бидете во позиција да ја " -"прифатите или одбиете поканата. Може да побарате во која било точка да го " -"отстранат вашето име од оваа листа на рецензенти.
        \n" -"
        \n" -"Ние ви обезбедуваме корисничко име и лозинка, што се користи во сите " -"интеракции со печатот преку неговата веб-страница. Можеби сакате, на пример, " -"да го ажурирате вашиот профил, вклучително и вашите интереси за " -"прегледување.
        \n" -"
        \n" -"Корисничко име: {$ корисничко име}
        \n" -"Лозинка: {$ password}
        \n" -"
        \n" -"Ви благодариме,
        \n" -"{$ principalContactSignature}" - -msgid "emails.reviewerRegister.subject" -msgstr "Регистрација како Рецензент со {$textName}" - -msgid "emails.userValidate.description" -msgstr "" -"Оваа е-пошта е испратена до новорегистриран корисник за да ги пречека во " -"системот и да им обезбеди запис за нивното корисничко име и лозинка." - -msgid "emails.userValidate.body" -msgstr "" -"{$ userFullName}
        \n" -"
        \n" -"Создадовте сметка со {$textName}, но пред да започнете да ја користите, " -"треба да ја потврдите вашата е-пошта. За да го направите ова, едноставно " -"следете ја врската подолу:
        \n" -"
        \n" -"{$ activUrl}
        \n" -"
        \n" -"Ви благодариме,
        \n" -"{$ principalContactSignature}" - -msgid "emails.userValidate.subject" -msgstr "Потврдете ја вашата сметка" - -msgid "emails.userRegister.description" -msgstr "" -"Оваа е-пошта е испратена до новорегистриран корисник за да ги пречека во " -"системот и да им обезбеди запис за нивното корисничко име и лозинка." - -msgid "emails.userRegister.body" -msgstr "" -"{$ userFullName}
        \n" -"
        \n" -"Сега сте регистрирани како корисник со {$textName}. Ние ги вклучивме вашето " -"корисничко име и лозинка во оваа е-пошта, кои се потребни за целата работа " -"со овој печат преку неговата веб-страница. Во кој било момент, може да " -"побарате да ве отстранат од списокот на корисници, контактирајќи ме.
        \n" -"
        \n" -"Корисничко име: {$ корисничко име}
        \n" -"Лозинка: {$ password}
        \n" -"
        \n" -"Ви благодариме,
        \n" -"{$ principalContactSignature}" - -msgid "emails.userRegister.subject" -msgstr "Притиснете Регистрација" - -msgid "emails.passwordReset.description" -msgstr "" -"Оваа е-пошта е испратена до регистриран корисник кога тој успешно ја " -"ресетирал својата лозинка следејќи го процесот опишан во е-поштата " -"PASSWORD_RESET_CONFIRM." - -msgid "emails.passwordReset.body" -msgstr "" -"Вашата лозинка е успешно ресетирана за употреба со веб-страницата {$ " -"siteTitle}.
        \n" -"
        \n" -"Вашето корисничко име: {$ корисничко име}
        \n" -"Вашата нова лозинка: {$ password}
        \n" -"
        \n" -"{$ principalContactSignature}" - -msgid "emails.passwordReset.subject" -msgstr "Ресетирање на лозинка" - -msgid "emails.passwordResetConfirm.description" -msgstr "" -"Оваа е-пошта се испраќа до регистриран корисник кога тие означуваат дека ја " -"заборавиле лозинката или не се во можност да се најават. Дава URL-адреса што " -"можат да ја следат за да ја ресетираат лозинката." - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"Добивме барање за ресетирање на вашата лозинка за веб-страницата {$ " -"siteTitle}.
        \n" -"
        \n" -"Ако не сте го побарале ова барање, игнорирајте ја оваа е-пошта и лозинката " -"нема да се смени. Ако сакате да ја ресетирате вашата лозинка, кликнете на " -"подолу URL.
        \n" -"
        \n" -"Ресетирај ја мојата лозинка: {$ url}
        \n" -"
        \n" -"{$ principalContactSignature}" - -msgid "emails.passwordResetConfirm.subject" -msgstr "Потврда за ресетирање на лозинка" - -msgid "emails.notification.description" -msgstr "" -"Е-поштата се испраќа до регистрираните корисници кои избрале да им се " -"испраќа овој вид на известување по е-пошта." - -msgid "emails.notification.body" -msgstr "" -"Имате ново известување од {$ siteTitle}:
        \n" -"
        \n" -"{$ notificationContents}
        \n" -"
        \n" -"Врска: {$ url}
        \n" -"
        \n" -"Ова е автоматски генерирана е-пошта; Ве молиме, не одговарајте на оваа " -"порака.
        \n" -"{$ principalContactSignature}" - -msgid "emails.notification.subject" -msgstr "Ново известување од {$ siteTitle}" - -msgid "emails.editorDecisionAccept.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Донесовме одлука во врска со вашето поднесување до {$contextName}, " " -"{$submissionTitle} ".
        \n" -"
        \n" -"Нашата одлука е да:
        \n" -"
        \n" -"URL на ракопис: {$submissionUrl}" - -msgid "emails.editorDecisionAccept.subject" -msgstr "Одлука на уредник" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "" -"Оваа е-пошта автоматски се испраќа кога истекува датумот на доспевање на " -"рецензентот (видете Опции за преглед под Поставки> Работен тек> Преглед) и " -"пристапот на рецензентот со еден клик е овозможен. Закажаните задачи мора да " -"бидат овозможени и конфигурирани (видете ја датотеката за конфигурација на " -"страницата)." - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Само мал потсетник за нашето барање за преглед на поднесокот, " -""{$submissionTitle}," за {$contextName}. Се надевавме дека ќе го " -"добиеме овој преглед до {$reviewDueDate} и оваа е-пошта е автоматски " -"генерирана и испратена со истекот на тој датум. Ние сепак би биле задоволни " -"да го примиме веднаш штом ќе бидете во можност да го подготвите.
        \n" -"
        \n" -"URL на поднесување: {$submissionReviewUrl}
        \n" -"
        \n" -"Ве молиме, потврдете ја вашата способност да го завршите овој витален " -"придонес во работата на печатот. Со нетрпение очекувам да се слушнам со вас. " -"
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Автоматски потсетник за преглед на поднесок" - -msgid "emails.reviewRemindAuto.description" -msgstr "" -"Оваа е-пошта автоматски се испраќа кога истекува датумот на доспевање на " -"прегледувачот (видете Опции за преглед под Поставки> Работен тек> Преглед) и " -"пристапот на прегледникот со еден клик е оневозможен. Закажаните задачи мора " -"да бидат овозможени и конфигурирани (видете ја датотеката за конфигурација " -"на страницата)." - -msgid "emails.reviewRemindAuto.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Само мал потсетник за нашето барање за преглед на поднесокот, " -""{$submissionTitle}," за {$contextName}. Се надевавме дека ќе го " -"добиеме овој преглед до {$reviewDueDate} и оваа е-пошта е автоматски " -"генерирана и испратена со истекот на тој датум. Ние сепак би биле задоволни " -"да го примиме веднаш штом ќе бидете во можност да го подготвите.
        \n" -"
        \n" -"Ако немате корисничко име и лозинка за веб-страницата, можете да ја " -"користите оваа врска за да ја ресетирате вашата лозинка (која потоа ќе ви " -"биде испратена по е-пошта заедно со вашето корисничко име). " -"{$passwordResetUrl}
        \n" -"
        \n" -"URL на поднесување: {$submissionReviewUrl}
        \n" -"
        \n" -"Корисничко име: {$reviewerUserName}
        \n" -"
        \n" -"Ве молиме, потврдете ја вашата способност да го завршите овој витален " -"придонес во работата на печатот. Со нетрпение очекувам да се слушнам со вас. " -"
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.subject" -msgstr "Автоматски потсетник за преглед на поднесок" - -msgid "emails.reviewRemindOneclick.description" -msgstr "" -"Оваа е-пошта е испратена од Уредувач на серии за да го потсети прегледникот " -"дека треба да се прегледа." - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Само мал потсетник за нашето барање за преглед на поднесокот, " " -"{$submissionTitle}, " за {$contextName}. Се надевавме дека ќе го " -"добиеме овој преглед до {$reviewDueDate} и со задоволство ќе го добиеме " -"веднаш штом ќе бидете во можност да го подготвите.
        \n" -"
        \n" -"URL на поднесување: {$submissionReviewUrl}
        \n" -"
        \n" -"Ве молиме, потврдете ја вашата способност да го завршите овој витален " -"придонес во работата на печатот. Со нетрпение очекувам да се слушнам со вас. " -"
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Потсетник за преглед на поднесување" - -msgid "emails.reviewRemind.description" -msgstr "" -"Оваа е-пошта е испратена од Уредувач на серии за да го потсети рецензентот " -"дека треба да се прегледа." - -msgid "emails.reviewRemind.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Само мал потсетник за нашето барање за преглед на поднесокот, " -""{$submissionTitle}," за {$contextName}. Се надевавме дека ќе го " -"добиеме овој преглед до {$reviewDueDate} и со задоволство ќе го добиеме " -"веднаш штом ќе можете да го подготвите.
        \n" -"
        \n" -"Ако немате корисничко име и лозинка за веб-страницата, можете да ја " -"користите оваа врска за да ја ресетирате вашата лозинка (која потоа ќе ви " -"биде испратена по е-пошта заедно со вашето корисничко име). " -"{$passwordResetUrl}
        \n" -"
        \n" -"URL на поднесување: {$submissionReviewUrl}
        \n" -"
        \n" -"Корисничко име: {$reviewerUserName}
        \n" -"
        \n" -"Ве молиме, потврдете ја вашата способност да го завршите овој витален " -"придонес во работата на печатот. Со нетрпение очекувам да се слушнам со вас. " -"
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemind.subject" -msgstr "Потсетник за преглед на поднесување" - -msgid "emails.reviewAck.description" -msgstr "" -"Оваа е-пошта е испратена од Уредник на серии за да го потврди приемот на " -"завршен преглед и да му се заблагодари на рецензентот за придонесите." - -msgid "emails.reviewAck.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Ви благодариме што го комплетиравте прегледот на поднесокот, " -""{$submissionTitle}," за {$contextName}. Го цениме вашиот придонес " -"кон квалитетот на делото што го објавуваме." - -msgid "emails.reviewAck.subject" -msgstr "Признание за преглед на ракопис" - -msgid "emails.reviewDecline.description" -msgstr "" -"Оваа е-пошта ја испраќа рецензентот до Уредникот на сериите како одговор на " -"барањето за преглед да го извести Уредувачот на серии дека барањето за " -"преглед е одбиено." - -msgid "emails.reviewDecline.body" -msgstr "" -"Уредник (ци):
        \n" -"
        \n" -"Се плашам дека во овој момент не сум во можност да го разгледам поднесокот, " -""{$submissionTitle}," за {$contextName}. Ви благодарам што " -"помисливте на мене, слободно исконтактирајте ме и друг пат.
        \n" -"
        \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.subject" -msgstr "Не може да се прегледа" - -msgid "emails.reviewConfirm.description" -msgstr "" -"Оваа е-пошта ја испраќа рецензентот до Уредникот на сериите како одговор на " -"барањето за преглед за да го извести уредникот на сериите дека барањето за " -"преглед е прифатено и ќе биде завршено до наведениот датум." - -msgid "emails.reviewConfirm.body" -msgstr "" -"Уредник (ци):
        \n" -"
        \n" -"Јас сум спремен и сум подготвен да го разгледам поднесокот, " -""{$submissionTitle}," за {$contextName}. Ви благодарам што " -"помисливте за мене и планирам прегледот да заврши до датумот на достасување, " -"{$reviewDueDate}, ако не и порано.
        \n" -"
        \n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.subject" -msgstr "Способен за преглед" - -msgid "emails.reviewReinstate.description" -msgstr "" -"Оваа е-пошта е испратена од Уредникот на делови до рецезентот кој има " -"поднесок за прегледување за да ги извести дека прегледот е откажан." - -msgid "emails.reviewReinstate.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Ние би сакале да го вратиме нашето барање да го прегледате поднесокот, " -""{$submissionTitle}, " за {$textName}. Се надеваме дека ќе можете " -"да помогнете во процесот на прегледување на ова списание.
        \n" -"
        \n" -"Ако имате какви било прашања, контактирајте ме." - -msgid "emails.reviewReinstate.subject" -msgstr "Повторно е вратено барањето за преглед" - -msgid "emails.reviewCancel.description" -msgstr "" -"Оваа е-пошта е испратена од Уредникот на серии до рецезентот кој има " -"поднесок за прегледување за да ги извести дека прегледот е откажан." - -msgid "emails.reviewCancel.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Одлучивме во овој момент да го откажеме нашето барање да го разгледате " -"поднесокот, " {$missionTitle} " за {$textName}. Се извинуваме за " -"непријатностите што може да ви ги предизвикаат и се надеваме дека ќе можеме " -"да ве повикаме да ви помогнеме во овој процес на преглед во иднина.
        \n" -"
        \n" -"Ако имате какви било прашања, контактирајте ме." - -msgid "emails.reviewCancel.subject" -msgstr "Барањето за преглед е откажано" - -msgid "emails.reviewRequestAttached.description" -msgstr "" -"Оваа е-пошта е испратена од Уредникот на серии до рецезентот за да побара " -"тие да ја прифатат или одбијат задачата за преглед на поднесокот. Тоа го " -"вклучува поднесокот како прилог. Оваа порака се користи кога е избран " -"Процесот за преглед на е-пошта, во Управување> Поставки> Работен тек> " -"Преглед. (Во спротивно, видете REVIEW_REQUEST.)" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Верувам дека ќе послужите како одличен рецензент на ракописот, " " -"{$missionTitle}, " и барам да размислите да ја преземете оваа важна " -"задача за нас. Упатствата за преглед на овој печат се додадени подолу, а " -"поднесувањето е приложено на оваа е-пошта. Вашиот преглед на поднесувањето, " -"заедно со вашата препорака, треба да ми биде испратен по е-пошта до " -"{$reviewDueDate}.
        \n" -"
        \n" -"Ве молиме наведете во повратна е-пошта до {$weekLaterDate} дали сте во " -"можност и дали сакате да го направите прегледот.
        \n" -"
        \n" -"Ви благодариме што го разгледавте ова барање.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"Прегледајте ги упатствата
        \n" -"
        \n" -"{$reviewGuidance}
        \n" - -msgid "emails.reviewRequestAttached.subject" -msgstr "Барање за преглед на ракописи" - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "" -"Оваа е-пошта автоматски се испраќа кога ќе истече датумот на достасување на " -"рецензентот (видете Опции за преглед под Поставки> Работно време> Преглед) и " -"пристапот на прегледникот со еден клик е овозможен. Закажаните задачи мора " -"да бидат овозможени и конфигурирани (видете ја датотеката за конфигурација " -"на страницата)." - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"Само мал потсетник за нашето барање за преглед на поднесокот, " " -"{$missionTitle}, " за {$textName}. Се надевавме дека ќе го добиеме " -"вашиот одговор до {$answerDueDate} и оваа е-пошта е автоматски генерирана и " -"испратена со истекот на тој датум.\n" -"
        \n" -"Верувам дека би послужиле како одличен рецензент на ракописот. Апстрактот на " -"поднесокот е вметнат подолу, и се надевам дека ќе размислите да ја преземете " -"оваа важна задача за нас.
        \n" -"
        \n" -"Ве молиме, најавете се на веб-страницата за печат за да наведете дали ќе " -"направите преглед или не, како и за пристап до поднесокот и да ги снимите " -"прегледот и препораката.
        \n" -"
        \n" -"Самиот преглед е доставен {$reviewDueDate}.
        \n" -"
        \n" -"URL на поднесување: {$missionReviewUrl}
        \n" -"
        \n" -"Ви благодариме што го разгледавте ова барање.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -"" {$missionTitle} "
        \n" -"
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Барање за преглед на ракописи" - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "" -"Оваа е-пошта автоматски се испраќа кога истекува датумот на достасување на " -"рецензентот (видете Опции за преглед под Поставки> Работно време> Преглед) и " -"пристапот на прегледникот со еден клик е оневозможен. Закажаните задачи мора " -"да бидат овозможени и конфигурирани (видете ја датотеката за конфигурација " -"на страницата)." - -msgid "emails.editorDecisionDecline.subject" -msgstr "Одлука на уредник" - -msgid "emails.editorDecisionResubmit.description" -msgstr "" -"Оваа е-пошта од уредникот или уредникот на сериите до некој автор ги " -"известува за конечната одлука во врска со нивниот поднесок." - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Донесовме одлука во врска со вашето поднесување до {$contextName}, " " -"{$submissionTitle} ".
        \n" -"
        \n" -"Нашата одлука е да:
        \n" -"
        \n" -"URL на ракопис: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Одлука на уредник" - -msgid "emails.editorDecisionRevisions.description" -msgstr "" -"Оваа е-пошта од уредникот или уредникот на сериите до некој автор ги " -"известува за конечната одлука во врска со нивниот поднесок." - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Донесовме одлука во врска со вашето поднесување до {$contextName}, " " -"{$submissionTitle} ".
        \n" -"
        \n" -"Нашата одлука е да:
        \n" -"
        \n" -"URL на ракопис: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Одлука на уредник" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "" -"Оваа е-пошта од уредникот или уредникот на сериите до некој автор ги " -"известува дека нивниот поднесок се испраќа во производство." - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Уредувањето на вашиот ракопис, " {$submissionTitle}, " е завршено. " -"Сега го испраќаме во производство.
        \n" -"
        \n" -"URL на ракопис: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Одлука на уредник" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "" -"Оваа е-пошта од Уредникот или Уредникот на серии до некој автор ги известува " -"дека поднесокот е испратен на надворешен преглед." - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Донесовме одлука во врска со вашето поднесување до {$contextName}, " " -"{$submissionTitle} ".
        \n" -"
        \n" -"Нашата одлука е да:
        \n" -"
        \n" -"URL на ракопис: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Одлука на уредник" - -msgid "emails.editorDecisionAccept.description" -msgstr "" -"Оваа е-пошта од уредникот или уредникот на сериите до некој автор ги " -"известува за конечната одлука во врска со нивниот поднесок." - -msgid "emails.announcement.description" -msgstr "Оваа е-пошта се испраќа кога ќе се креира ново соопштение." - -msgid "emails.announcement.body" -msgstr "" -" {$title}
        \n" -"
        \n" -"{$summary}
        \n" -"
        \n" -"Посетете ја нашата веб-страница за да ја прочитате " -"целосната најава ." - -msgid "emails.announcement.subject" -msgstr "{$title}" - -msgid "emails.statisticsReportNotification.description" -msgstr "" -"Оваа е-пошта автоматски се испраќа месечно до уредниците и менаџерите на " -"списанија за да им се обезбеди преглед на здравствениот систем." - -msgid "emails.statisticsReportNotification.body" -msgstr "" -"\n" -"{$name},
        \n" -"
        \n" -"Вашиот извештај за здравјето на печатот за {$month}, {$year} сега е " -"достапен. Вашите клучни статистики за овој месец се подолу.
        \n" -"
          \n" -"
        • Нови поднесоци овој месец: {$newSubmissions}
        • \n" -"
        • Одбиени поднесоци овој месец: {$declinedSubmissions}
        • \n" -"
        • Прифатени поднесоци овој месец: {$acceptedSubmissions}
        • \n" -"
        • Вкупни поднесоци во системот: {$totalSubmissions}
        • \n" -"
        \n" -"Најавете се на изданието за да видите подетални уреднички трендови и објавените статистички статии . Во прилог е " -"целосна копија од уредничките трендови на овој месец.
        \n" -"
        \n" -"Со почит,
        \n" -"{$principalContactSignature}" - -msgid "emails.statisticsReportNotification.subject" -msgstr "Уредувачка активност за {$month}, {$year}" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "" -"Оваа е-пошта е испратена до авторот ако уредникот го одбие неговото " -"поднесување првично, пред фазата на прегледување" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\t{$authorName}:
        \n" -"
        \n" -"Донесовме одлука во врска со вашето поднесување до {$textName}, " -""{$submissionTitle} ".
        \n" -"
        \n" -"Нашата одлука е: Да го одбиеме поднесувањето
        \n" -"
        \n" -"URL на ракопис: {$submissionUrl}\n" -"\t\t" - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Одлука на Уредник" - -msgid "emails.notificationCenterDefault.description" -msgstr "" -"Стандардната (празна) порака користена во Изградувачот на пораки во Центарот " -"за известувања." - -msgid "emails.notificationCenterDefault.body" -msgstr "Ве молиме внесете ја вашата порака." - -msgid "emails.notificationCenterDefault.subject" -msgstr "Порака во врска со {$contextName}" - -msgid "emails.notifyFile.description" -msgstr "" -"Известување од корисник пратено од модалот на центарот за информации за " -"датотеки" - -msgid "emails.notifyFile.body" -msgstr "" -"Имате порака од {$sender} во врска со датотеката " {$fileName} " " -"во " {$submissionTitle} " ({$monographDetailsUrl}):
        \n" -"
        \n" -"{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifyFile.subject" -msgstr "Известување за датотека на поднесок" - -msgid "emails.notifySubmission.description" -msgstr "" -"Известување од корисник испратено од модалот на центарот за информации за " -"поднесок." - -msgid "emails.notifySubmission.body" -msgstr "" -"Имате порака од {$sender} во врска со " {$submissionTitle} " " -"({$monographDetailsUrl}):
        \n" -"
        \n" -"{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifySubmission.subject" -msgstr "Известување за поднесок" - -msgid "emails.emailLink.description" -msgstr "" -"Овој образец за е-пошта овозможува на регистриран читател можност да испрати " -"информации за монографија на некој што може да биде заинтересиран. Таа е " -"достапна преку Алатките за читање и мора да биде овозможена од Менаџерот на " -"печатот на страницата за администрација на алатки за читање." - -msgid "emails.emailLink.body" -msgstr "" -"Мислевме дека можеби сте заинтересирани да го видите " " -"{$submissionTitle} " од {$authorName} објавено во Вол. {$volume}, бр. " -"{$number} ({$year}) од {$contextName} на " {$monographUrl} " ;." - -msgid "emails.emailLink.subject" -msgstr "Ракопис од можен интерес" - -msgid "emails.indexComplete.description" -msgstr "" -"Оваа е-пошта од Индексаторот до Уредникот на сериите ги известува дека " -"процесот на создавање индекс е завршен." - -msgid "emails.indexComplete.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Индекси сега се подготвени за ракописот, " {$submissionTitle}, " " -"за {$contextName} и подготвени се за лекторирање.
        \n" -"
        \n" -"Ако имате какви било прашања, контактирајте ме.
        \n" -"
        \n" -"{$signatureFullName}" - -msgid "emails.indexComplete.subject" -msgstr "Индексирањето на отисоците на труд е комплетирано" - -msgid "emails.indexRequest.description" -msgstr "" -"Оваа е-пошта од Уредувачот на серии до Индексаторот ги известува дека им е " -"доделена задача да создаваат индекси за поднесување. Дава информации за " -"поднесувањето и начинот на пристап до него." - -msgid "emails.indexRequest.body" -msgstr "" -"{$participantName}:
        \n" -"
        \n" -"Поднесувањето " {$submissionTitle} " на {$contextName} сега му " -"требаат индекси создадени со следење на овие чекори.
        \n" -"1. Кликнете на URL-то за поднесување подолу.
        \n" -"2. Влезете во печатот и користете ја датотеката докази за страната за да " -"создадете отисоци на труд според стандардите за печатот.
        \n" -"3. Испратете ја ЦЕЛОСНАТА е-пошта до уредникот.
        \n" -"
        \n" -"URL на {$contextName}: {$contextUrl}
        \n" -"URL-то за поднесување: {$submissionUrl}
        \n" -"Корисничко име: {$participantUsername}
        \n" -"
        \n" -"Ако не сте во можност да ја преземете оваа работа во овој момент или имате " -"какви било прашања, контактирајте ме. Ви благодариме за придонесот во овој " -"печат.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.indexRequest.subject" -msgstr "Побарај индекс" - -msgid "emails.layoutComplete.description" -msgstr "" -"Оваа е-пошта од Уредувачот на распоред до Уредникот на сериите ги известува " -"дека процесот на распоред е завршен." - -msgid "emails.layoutComplete.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Отисоците на трудот сега се подготвени за ракописот, " " -"{$submissionTitle}, " за {$contextName} и подготвени се за лекторирање. " -"
        \n" -"
        \n" -"Ако имате какви било прашања, контактирајте ме.
        \n" -"
        \n" -"{$signatureFullName}" - -msgid "emails.layoutComplete.subject" -msgstr "Комплетиран распоред на отисоците на труд" - -msgid "emails.layoutRequest.description" -msgstr "" -"Оваа е-пошта од Уредувачот на серии до Уредувачот на распоред ги известува " -"дека им е доделена задача да вршат уредување на распоред на поднесок. Дава " -"информации за поднесoкот и начинот на пристап до него." - -msgid "emails.layoutRequest.body" -msgstr "" -"{$participantName}:
        \n" -"
        \n" -"Поднесувањето " {$submissionTitle}" на {$contextName} сега му " -"требаат отисоци на труд поставени со следење на овие чекори.
        \n" -"1. Кликнете на URL-то за поднесување подолу.
        \n" -"2. Влезете во печатот и користете ја датотеката Layout Version за да ги " -"создадете отисоците на труд според стандардите за печатот.
        \n" -"3. Испратете ја ЦЕЛОСНАТА е-пошта до уредникот.
        \n" -"
        \n" -"URL на {$textName}: {$contextUrl}
        \n" -"URL-то за поднесување: {$submissionUrl}
        \n" -"Корисничко име: {$participantUsername}
        \n" -"
        \n" -"Ако не сте во можност да ја преземете оваа работа во овој момент или имате " -"какви било прашања, контактирајте ме. Ви благодариме за придонесот во овој " -"печат." - -msgid "emails.layoutRequest.subject" -msgstr "Побарајте отисоци на труд" - -msgid "emails.copyeditRequest.description" -msgstr "" -"Оваа е-пошта е испратена од Уредувач на серии до Копиторот на поднесокот за " -"да побара да започнат со процесот на копирање. Дава информации за " -"поднесувањето и начинот на пристап до него." - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$participantName}:
        \n" -"
        \n" -"Јас би ве замолил да преземете копирање на " {$submissionTitle} " " -"за {$contextName} следејќи ги овие чекори.
        \n" -"1. Кликнете на URL-то за поднесување подолу.
        \n" -"2. Влезете во печатот и кликнете на Датотеката што се појавува во Чекор 1. <" -"br />\n" -"3. Консултирајте се со Инструкциите за копирање објавени на веб-страница. <" -"br />\n" -"4. Отворете ја преземената датотека и копирајте ја, додека додавате Авторски " -"пребарувања по потреба.
        \n" -"5. Зачувајте копирана датотека и поставете ја на чекор 1 од копирање.
        " -"\n" -"6. Испратете ја ЦЕЛОСНАТА е-пошта до уредникот.
        \n" -"
        \n" -"URL на {$contextName}: {$contextUrl}
        \n" -"URL-то за поднесокот: {$submissionUrl}
        \n" -"Корисничко име: {$participantUsername}" - -msgid "emails.copyeditRequest.subject" -msgstr "Барање за копирање" - -msgid "emails.editorRecommendation.description" -msgstr "" -"Оваа е-пошта од препорачаниот Уредник или Уредник на делови до Уредниците за " -"донесување одлуки или Уредниците на одделите ги известува за конечната " -"препорака во врска со поднесокот." - -msgid "emails.editorRecommendation.body" -msgstr "" -"{$editors}:
        \n" -"
        \n" -"Препораката во врска со поднесувањето до {$contextName}, " " -"{$submissionTitle} " е: {$recommendation}" - -msgid "emails.editorRecommendation.subject" -msgstr "Препорака на уредникот" - -msgid "emails.editorDecisionDecline.description" -msgstr "" -"Оваа е-пошта од уредникот или уредникот на сериите до некој автор ги " -"известува за конечната одлука во врска со нивниот поднесок." - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Донесовме одлука во врска со вашиот поднесок до {$contextName}, " " -"{$submissionTitle} ".
        \n" -"
        \n" -"Нашата одлука е да:
        \n" -"
        \n" -"URL на ракопис: {$submissionUrl}" diff --git a/locale/mk_MK/locale.po b/locale/mk_MK/locale.po deleted file mode 100644 index dadd3cadf68..00000000000 --- a/locale/mk_MK/locale.po +++ /dev/null @@ -1,1647 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-16 12:53+0000\n" -"Last-Translator: Jovan Jonovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Добавувачи" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Агенти" - -msgid "grid.catalogEntry.representativeType" -msgstr "Тип на претставници" - -msgid "grid.catalogEntry.representatives" -msgstr "Претставници" - -msgid "grid.catalogEntry.dateRequired" -msgstr "" -"Потребен е датум и вредноста на датумот мора да одговара на избраниот формат " -"на датум." - -msgid "grid.catalogEntry.dateFormat" -msgstr "Формат на датум" - -msgid "grid.catalogEntry.dateRole" -msgstr "Улога" - -msgid "grid.catalogEntry.dateValue" -msgstr "Дата" - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Потребен е формат на датум." - -msgid "grid.catalogEntry.roleRequired" -msgstr "Потребна е репрезентативна улога." - -msgid "grid.catalogEntry.publicationDates" -msgstr "Датуми на објавување" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Територија" - -msgid "grid.catalogEntry.markets" -msgstr "Територии на пазар" - -msgid "grid.catalogEntry.excluded" -msgstr "Исклучени" - -msgid "grid.catalogEntry.included" -msgstr "Вклучени" - -msgid "grid.catalogEntry.regions" -msgstr "Региони" - -msgid "grid.catalogEntry.countries" -msgstr "Држави" - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "За овој формат на објавување веќе е дефиниран тип на продажба ROW." - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "" -"Штиклирајте го ова поле за да го користите овој запис за Правата на " -"продажбата глобално за вашиот формат. Земјите и регионите не треба да бидат " -"избрани во овој случај." - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Остатокот од светот?" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Тип на продажни права" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Вредност на код" - -msgid "grid.catalogEntry.salesRights" -msgstr "Права на продажба" - -msgid "grid.catalogEntry.valueRequired" -msgstr "Потребна е вредност." - -msgid "grid.catalogEntry.codeRequired" -msgstr "Потребен е код за идентификација." - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "ONIX тип на код" - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Вредност на код" - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Мора да се избере код за состав на производ." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Потребен е код за достапност на производот." - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Потребна е големина на датотека за дигитални формати." - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Чека одобрување" - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Одобрено" - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Доказот не е одобрен." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Форматот не е во записот на каталогот." - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Внесувањето на каталогот не е одобрено." - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

        Овој формат е недостапен за читателите . Сите датотеки што " -"можат да се преземат или други дистрибуции повеќе нема да се појавуваат во " -"записот на каталогот на книгата.

        " - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "" -"

        Ставете го овој формат достапен за читателите . Датотеките што " -"може да се преземат и сите други дистрибуции ќе се појават во записот на " -"каталогот на книгата.

        " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Достапност на формат" - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

        Наведете дека метаподатоците за овој формат не се одобрени.

        " - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" -"

        Одобрете ги метаподатоците за овој формат. Метаподатоците може да се " -"проверат од панелот Уреди за секој формат.

        " - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Одобрување на формат" - -msgid "grid.catalogEntry.proof" -msgstr "Доказ" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Не е достапно" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Достапно" - -msgid "grid.catalogEntry.availability" -msgstr "Достапност" - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Формат на објавување мора да биде избран." - -msgid "grid.catalogEntry.monographRequired" -msgstr "Потребна е идентификација за монографија." - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL на далечински хостирана содржина" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Овој формат ќе биде достапен на посебна веб-страница" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Физички формат" - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Детали за формат" - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Потребна е валидна цена." - -msgid "grid.catalogEntry.nameRequired" -msgstr "Потребно е име." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Формат на објавување" - -msgid "monograph.publicationFormat.openTab" -msgstr "Отворете го јазичето за формат на објавување." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "" -"

        Форматот на објавување што го избравте повеќе не постои за оваа " -"монографија.

        " - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Недостасуваат некои полиња за метаподатоци." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Недостасува код за идентификација." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Недостасуваат пазари и цени." - -msgid "monograph.publicationFormat.isApproved" -msgstr "" -"Внесете ги метаподатоците за овој формат на публикација во записот за " -"каталог за оваа книга." - -msgid "monograph.publicationFormat.taxType" -msgstr "Тип на данок" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Ставка на данок" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Регион за дистрибуција на производи" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Дигитална техничка заштита" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Држава на производство" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Ширина" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Тежина" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Дебелина" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Висина" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Внесете ја сопствената вредност на големината на датотеката?" - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Големина на датотека во MБајти" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Физички димензии" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Дигитална информација" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Индикатор за враќање" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Достапност на производ" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Процент на попуст, доколку е применливо" - -msgid "monograph.publicationFormat.priceType" -msgstr "Тип на цена" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Потребна е цена." - -msgid "monograph.publicationFormat.price" -msgstr "Цена" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Идентификација на производот" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Детали за производот (не е задолжително)" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Состав на производот" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Задна материја" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Предна материја" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Број на страни" - -msgid "monograph.publicationFormat.imprint" -msgstr "Отпечаток (име на бренд)" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Слободен пристап" - -msgid "monograph.task.addNote" -msgstr "Додај во задачата" - -msgid "monograph.proofReadingDescription" -msgstr "" -"Уредникот за распоред ги поставува датотеките подготвени за производство што " -"се подготвени за објавување тука. Користете + Додели за да " -"назначите автори и други за лекторирање на доказите на страницата, со " -"исправени датотеки подигнати за одобрување пред објавувањето." - -msgid "submission.pageProofs" -msgstr "Докази за страницата" - -msgid "monograph.type" -msgstr "Типови на поднесок" - -msgid "monograph.carousel.publicationFormats" -msgstr "Формати:" - -msgid "monograph.miscellaneousDetails" -msgstr "Детали за оваа монографија" - -msgid "monograph.publicationFormatDetails" -msgstr "Детали за достапниот формат на објавување: {$format}" - -msgid "monograph.publicationFormat" -msgstr "Формат" - -msgid "monograph.publicationFormats" -msgstr "Формати на публикации" - -msgid "monograph.languages" -msgstr "Јазици (Англиски, Француски, Шпански)" - -msgid "monograph.audience.rangeExact" -msgstr "Опсег на публика (точно)" - -msgid "monograph.audience.rangeTo" -msgstr "Опсег на публика (до)" - -msgid "monograph.audience.rangeFrom" -msgstr "Опсег на публика (од)" - -msgid "monograph.audience.rangeQualifier" -msgstr "Квалификатор за опсег на публика" - -msgid "monograph.coverImage" -msgstr "Насловна слика" - -msgid "monograph.audience.success" -msgstr "Деталите за публиката се ажурирани." - -msgid "monograph.audience" -msgstr "Публика" - -msgid "common.payments" -msgstr "Плаќања" - -msgid "catalog.noTitlesNew" -msgstr "Во моментов нема нови изданија." - -msgid "catalog.noTitles" -msgstr "Сè уште нема објавено наслови." - -msgid "catalog.manage.findSubmissions" -msgstr "Пронајдете монографии за да ги додадете во каталогот" - -msgid "catalog.manage.submissionsNotFound" -msgstr "Еден или повеќе од поднесоците не може да се најдат." - -msgid "catalog.manage.noSubmissionsSelected" -msgstr "Нема избрани поднесоци за да бидат додадени во каталогот." - -msgid "catalog.manage.isNotNewRelease" -msgstr "" -"Оваа монографија не е ново издание. Направете ја оваа монографија да е ново " -"издание." - -msgid "catalog.manage.isNewRelease" -msgstr "" -"Оваа монографија е ново издание. Направете ја оваа монографија да не е ново " -"издание." - -msgid "catalog.manage.isNotFeatured" -msgstr "" -"Оваа монографија не е претставена. Направете ја оваа монографија избрана." - -msgid "catalog.manage.isFeatured" -msgstr "" -"Оваа монографија е претставена. Направете ја оваа монографија да не е " -"прикажана." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Пребарување по наслов или автор" - -msgid "catalog.manage.nonOrderable" -msgstr "Оваа монографија не е подредлива сè додека не се прикаже." - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Ново издание во сериите" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Ново издание во категоријата" - -msgid "catalog.manage.feature.newRelease" -msgstr "Ново издание" - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Монографијата не е обележана како ново издание." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Монографијата е означена како ново издание." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Монографијата не е избрана." - -msgid "catalog.manage.featuredSuccess" -msgstr "Монографијата е избрана." - -msgid "catalog.manage.seriesFeatured" -msgstr "Избрана во серии" - -msgid "catalog.manage.categoryFeatured" -msgstr "Избрана во категорија" - -msgid "catalog.manage.featured" -msgstr "Избрана" - -msgid "catalog.manage.noMonographs" -msgstr "Нема доделени монографии." - -msgid "catalog.manage.manageCategories" -msgstr "Управувајте со категории" - -msgid "catalog.manage.manageSeries" -msgstr "Управувајте со серии" - -msgid "catalog.manage.newRelease" -msgstr "Отпушти" - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Вртелешка" - -msgid "catalog.manage.seriesDescription" -msgstr "" -"Кликнете на „Функција“, а потоа на ѕвездата за да изберете избрана книга за " -"оваа серија; влечете и пуштајте по нарачка. Сериите се идентификуваат со " -"уредник (и) и наслов на серија, во категорија или независно." - -msgid "catalog.manage.categoryDescription" -msgstr "" -"Кликнете на „Функција“, а потоа на ѕвездата за да изберете избрана книга за " -"оваа категорија; влечете и пуштете по нарачка." - -msgid "catalog.manage.homepageDescription" -msgstr "" -"Сликата на корицата на избраните книги се појавува кон горниот дел од " -"почетната страница како сет што може да се движи. Кликнете на „Функција“, а " -"потоа на ѕвездата за да додадете книга во вртелешката; кликнете на " -"извичникот за да се прикаже како ново издание; влечете и пуштете по нарачка." - -msgid "catalog.selectCategory" -msgstr "Селектирај категорија" - -msgid "catalog.selectSeries" -msgstr "Селектирај серии" - -msgid "catalog.manage.series.printIssn" -msgstr "Печати ИССН" - -msgid "catalog.manage.series.onlineIssn" -msgstr "Интернет ИССН" - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "ИССН преку Интернет и за печатење не смее да биде исто." - -msgid "catalog.manage.series.issn.validation" -msgstr "Внесете важечки ИССН." - -msgid "catalog.manage.series.issn" -msgstr "ИССН" - -msgid "catalog.manage.series" -msgstr "Серии" - -msgid "catalog.manage.category" -msgstr "Категорија" - -msgid "catalog.manage.newReleases" -msgstr "Нови изданија" - -msgid "catalog.manage" -msgstr "Управување со каталог" - -msgid "series.path" -msgstr "Патека" - -msgid "series.featured.description" -msgstr "Оваа серија ќе се појави на главната навигација" - -msgid "series.series" -msgstr "Серии" - -msgid "submissionGroup.assignedSubEditors" -msgstr "Доделени уредници" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Достапни датотеки" - -msgid "grid.reviewAttachments.add" -msgstr "Додадете прилог на прегледот" - -msgid "grid.action.formatAvailable" -msgstr "Вклучете и исклучете ја достапноста на овој формат" - -msgid "grid.action.availableRepresentation" -msgstr "Одобри/негирај го овој формат" - -msgid "grid.action.proofApproved" -msgstr "Форматот е докажан" - -msgid "grid.action.approveProofs" -msgstr "Погледнете ја мрежата на докази" - -msgid "grid.action.submissionEmail" -msgstr "Кликнете за да ја прочитате оваа е-пошта" - -msgid "grid.action.moreAnnouncements" -msgstr "Одете на страницата за соопштенија за изданието" - -msgid "grid.action.publicationFormatTab" -msgstr "Покажете го јазичето за формат на објавување" - -msgid "grid.action.createContext" -msgstr "Создадете ново издание" - -msgid "grid.action.deleteDate" -msgstr "Избришете го овој датум" - -msgid "grid.action.editDate" -msgstr "Уредете го овој датум" - -msgid "grid.action.addDate" -msgstr "Додадете датум на објавување" - -msgid "grid.action.deleteMarket" -msgstr "Избришете го овој пазар" - -msgid "grid.action.editMarket" -msgstr "Уредете го овој пазар" - -msgid "grid.action.addMarket" -msgstr "Додај пазар" - -msgid "grid.action.deleteRights" -msgstr "Избришете ги овие права" - -msgid "grid.action.editRights" -msgstr "Уредете ги овие права" - -msgid "grid.action.addRights" -msgstr "Додадете права за продажба" - -msgid "grid.action.deleteCode" -msgstr "Избришете го овој код" - -msgid "grid.action.editCode" -msgstr "Уредете го овој код" - -msgid "grid.action.addCode" -msgstr "Додадете код" - -msgid "grid.action.manageSeries" -msgstr "Конфигурирајте ја серијата за ова издание" - -msgid "grid.action.manageCategories" -msgstr "Конфигурирајте категории за ова издание" - -msgid "grid.action.releaseMonograph" -msgstr "Означете го овој поднесок како „ново издание“" - -msgid "grid.action.featureMonograph" -msgstr "Остави го ова во вртелешката на каталогот" - -msgid "grid.action.feature" -msgstr "Вклучете го приказот на одликата" - -msgid "grid.action.publicCatalog" -msgstr "Погледнете ја оваа ставка во каталогот" - -msgid "grid.action.newCatalogEntry" -msgstr "Нов запис во каталог" - -msgid "grid.action.addAnnouncement" -msgstr "Додајте оглас" - -msgid "grid.action.pageProofApproved" -msgstr "Датотеката со докази за страницата е подготвена за објавување" - -msgid "grid.action.approveProof" -msgstr "Одобри го доказот за индексирање и вклучување во каталогот" - -msgid "grid.action.addFormat" -msgstr "Додадете формат на објавување" - -msgid "grid.action.deleteFormat" -msgstr "Избришете го овој формат" - -msgid "grid.action.editFormat" -msgstr "Уредете го овој формат" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Форматот се појавува во записот на каталогот" - -msgid "grid.action.catalogEntry" -msgstr "Погледнете го формуларот за внес во каталогот" - -msgid "grid.libraryFiles.column.files" -msgstr "Датотеки" - -msgid "manager.series.indexed" -msgstr "Индексирани" - -msgid "manager.series.open" -msgstr "Отворете ги поднесоците" - -msgid "grid.action.addSpotlight" -msgstr "Додадете центар на внимание" - -msgid "grid.action.deleteSpotlight" -msgstr "Избришете го овој центар на внимание" - -msgid "grid.action.editSpotlight" -msgstr "Уредете го овој центар на внимание" - -msgid "grid.content.spotlights.locationRequired" -msgstr "Ве молиме изберете локација за овој центар на внимание." - -msgid "grid.content.spotlights.titleRequired" -msgstr "Наслов на центар на внимание е потребен." - -msgid "grid.content.spotlights.itemRequired" -msgstr "Потребна е ставка." - -msgid "grid.content.spotlights.form.type.book" -msgstr "Книга" - -msgid "grid.content.spotlights.form.title" -msgstr "Наслов на центар на внимание" - -msgid "grid.content.spotlights.form.item" -msgstr "Внесете наслов на центар на внимание(автоматско комплетирање)" - -msgid "grid.content.spotlights.form.location" -msgstr "Локација на центар на внимание" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Домашна страница" - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Предмет на внимание" - -msgid "spotlight.author" -msgstr "Автор, " - -msgid "spotlight.title.homePage" -msgstr "Во центар на внимание" - -msgid "spotlight.noneExist" -msgstr "Во моментов нема рефлектори." - -msgid "spotlight.spotlights" -msgstr "Рефлектори" - -msgid "spotlight" -msgstr "Рефлектор" - -msgid "grid.action.deleteRepresentative" -msgstr "Избришете го овој претставник" - -msgid "grid.action.editRepresentative" -msgstr "Уредете го овој Претставник" - -msgid "grid.action.addRepresentative" -msgstr "Додај претставник" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "" -"Следниот дел може да го оставите празен ако им дадете свои услуги на вашите " -"клиенти." - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Тип на репрезентативна идентификација (се препорачува GLN)" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Идентификација на претставник" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Веб-страница" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "И-мејл адреса" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Телефон" - -msgid "grid.catalogEntry.representativeName" -msgstr "Име" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Улога" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Одберете улога:" - -msgid "grid.catalogEntry.supplier" -msgstr "Добавувач" - -msgid "grid.catalogEntry.agentTip" -msgstr "" -"Може да назначите агент да ве претставува на оваа дефинирана територија. Не " -"е задолжително." - -msgid "grid.catalogEntry.agent" -msgstr "Агент" - -msgid "common.omp" -msgstr "ОМП" - -msgid "common.software" -msgstr "Опен Монограф Прес" - -msgid "common.listbuilder.itemExists" -msgstr "Не можете да додадете иста ставка двапати." - -msgid "common.listbuilder.selectValidOption" -msgstr "Изберете валидна опција од списокот." - -msgid "common.listbuilder.completeForm" -msgstr "Ве молиме, пополнете го формуларот целосно." - -msgid "common.moreInfo" -msgstr "Повеќе информации" - -msgid "common.searchCatalog" -msgstr "Каталог за пребарување" - -msgid "common.feature" -msgstr "Карактеристика" - -msgid "common.preview" -msgstr "Преглед" - -msgid "common.prefix" -msgstr "Префикс" - -msgid "common.publications" -msgstr "Монографии" - -msgid "common.publication" -msgstr "Монографија" - -msgid "submission.search" -msgstr "Пребарување книги" - -msgid "catalog.viewableFile.return" -msgstr "Вратете се за да ги видите деталите за {$monographTitle}" - -msgid "catalog.viewableFile.title" -msgstr "{$type} преглед на датотеката {$title}" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Позиција во серија (највисоко прво)" - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Позиција на серија (најниско прво)" - -msgid "catalog.sortBy.catalogDescription" -msgstr "Изберете како да нарачате книги во каталогот." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Изберете како да нарачате книги од оваа категорија." - -msgid "catalog.sortBy.seriesDescription" -msgstr "Изберете како да нарачате книги во оваа серија." - -msgid "catalog.sortBy" -msgstr "Ред на монографии" - -msgid "catalog.coverImageTitle" -msgstr "Насловна слика" - -msgid "user.authorization.invalidPublishedSubmission" -msgstr "Беше наведен неважечки објавен поднесок." - -msgid "submission.round" -msgstr "Round {$round}" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Скријте други изданија" - -msgid "user.profile.form.showOtherContexts" -msgstr "Регистрирајте се со други изданија" - -msgid "submission.pdf.download" -msgstr "Преземете ја оваа PDF-датотека" - -msgid "rt.metadata.pkp.dctype" -msgstr "Книга" - -msgid "debug.notes.helpMappingLoad" -msgstr "" -"Повторно вчитана помош на XML за мапирање на датотеката {$filename} во " -"потрага по {$id}." - -msgid "payment.directSales.monograph.description" -msgstr "" -"Оваа трансакција е за купување на директно преземање на една глава од " -"монографија или монографија." - -msgid "payment.directSales.monograph.name" -msgstr "Преземете монографија или поглавје" - -msgid "payment.directSales.download" -msgstr "Преземи {$format}" - -msgid "payment.directSales.purchase" -msgstr "Купување {$format} ({$amount} {$currency})" - -msgid "payment.directSales.validPriceRequired" -msgstr "Потребна е валидна нумеричка цена." - -msgid "payment.directSales.price.description" -msgstr "" -"Форматите на датотеки може да бидат достапни за преземање од веб-страницата " -"за издание преку отворен пристап без читање на читателите или директна " -"продажба (со користење на процесор за плаќање преку Интернет, како што е " -"конфигурирано во Дистрибуција). За оваа датотека наведете ја основата за " -"пристап." - -msgid "payment.directSales.openAccess" -msgstr "Слободен пристап" - -msgid "payment.directSales.notSet" -msgstr "Не е поставено" - -msgid "payment.directSales.notAvailable" -msgstr "Не е достапно" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.directSales" -msgstr "Директна продажба" - -msgid "payment.directSales.numericOnly" -msgstr "Цените треба да бидат само нумерички. Не вклучувајте симболи за валута." - -msgid "payment.directSales.priceCurrency" -msgstr "Цена ({$currency})" - -msgid "payment.directSales.approved" -msgstr "Одобрено" - -msgid "payment.directSales.catalog" -msgstr "Каталог" - -msgid "payment.directSales.availability" -msgstr "Достапност" - -msgid "payment.directSales.price" -msgstr "Цена" - -msgid "payment.directSales" -msgstr "Преземи од веб-страница на изданието" - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "" -"Одбиен пристап! Корисничката група под која моментално дејствувате не е " -"доделена во оваа фаза на работно време. Проверете ги поставките за печатот." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Одбиен пристап! Не сте доделени во оваа фаза на работно време." - -msgid "user.authorization.seriesAssignment" -msgstr "" -"Се обидувате да пристапите до монографија што не е дел од вашата серија." - -msgid "user.authorization.noContext" -msgstr "Нема издание во контекст!" - -msgid "user.authorization.invalidMonograph" -msgstr "Невалидна монографија или не е побарана монографија!" - -msgid "user.authorization.monographFile" -msgstr "Забранет е пристап до наведената монографска датотека." - -msgid "user.authorization.monographReviewer" -msgstr "" -"Одбиен ви е пристапот затоа што се чини дека не сте доделен рецензент на " -"оваа монографија." - -msgid "user.authorization.monographAuthor" -msgstr "" -"Забранет ви е пристапот затоа што изгледа дека не сте автор на оваа " -"монографија." - -msgid "user.authorization.invalidReviewAssignment" -msgstr "" -"Одбиен ви е пристапот затоа што се чини дека не сте валиден рецензент за " -"оваа монографија." - -msgid "notification.type.visitCatalog" -msgstr "" -"Монографијата е одобрена. Посетете Маркетинг и публикација за да управувате " -"со деталите за неговиот каталог, користејќи ги линковите погоре." - -msgid "notification.type.visitCatalogTitle" -msgstr "Управување со каталог" - -msgid "notification.type.configurePaymentMethod" -msgstr "" -"Потребен е конфигуриран начин на плаќање пред да ги дефинирате поставките за " -"е-трговија." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Нема конфигуриран начин на плаќање." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "" -"Монографијата нема да биде наведена во каталогот сè додека не биде објавена. " -"За да ја додадете оваа книга во каталогот, кликнете на јазичето Публикации." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Чека одобрување." - -msgid "notification.type.approveSubmission" -msgstr "" -"Овој поднесок моментално чека одобрување во алатката „Каталог запис“ пред да " -"се појави во јавниот каталог." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Почна процесот на внатрешно разгледување." - -msgid "notification.type.indexRequest" -msgstr "Од вас е побарано да креирате индекс за „{$title}“." - -msgid "notification.type.layouteditorRequest" -msgstr "Од вас е побарано да ги прегледате распоредите за „{$title}“." - -msgid "notification.type.copyeditorRequest" -msgstr "Од вас е побарано да прегледате копии за „{$file}“." - -msgid "notification.type.editorAssignmentTask" -msgstr "Доставена е нова монографија на која треба да и биде доделен уредник." - -msgid "notification.type.public" -msgstr "Јавни соопштенија" - -msgid "notification.type.userComment" -msgstr "Читател даде коментар на „{$title}“." - -msgid "notification.type.submissions" -msgstr "Поднесување настани" - -msgid "notification.type.site" -msgstr "Настани на страницата" - -msgid "notification.type.reviewing" -msgstr "Преглед на настани" - -msgid "notification.type.editing" -msgstr "Уредување на настани" - -msgid "notification.type.submissionSubmitted" -msgstr "Поднесена е нова монографија „{$title}“." - -msgid "notification.removedSubmission" -msgstr "Поднесокот е избришан." - -msgid "notification.proofsApproved" -msgstr "Доказите се одобрени." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Метаподатоците на форматот на објавување се зачувани." - -msgid "notification.savedCatalogMetadata" -msgstr "Метаподатоците за каталогот се зачувани." - -msgid "notification.removedSpotlight" -msgstr "Отстранет центар на внимание." - -msgid "notification.editedSpotlight" -msgstr "Уреден центар на внимание." - -msgid "notification.addedSpotlight" -msgstr "Центар на внимание додаден." - -msgid "notification.removedMarket" -msgstr "Отстранет пазар." - -msgid "notification.editedMarket" -msgstr "Уреден пазар." - -msgid "notification.addedMarket" -msgstr "Додаден пазар." - -msgid "notification.removedRepresentative" -msgstr "Отстранет претставник." - -msgid "notification.editedRepresentative" -msgstr "Уреден претставник." - -msgid "notification.addedRepresentative" -msgstr "Додаден претставник." - -msgid "notification.removedSalesRights" -msgstr "Продажните права се отстранети." - -msgid "notification.editedSalesRights" -msgstr "Уредени се правата на продажба." - -msgid "notification.addedSalesRights" -msgstr "Додадени се правата за продажба." - -msgid "notification.removedPublicationFormat" -msgstr "Форматот на публикација е отстранет." - -msgid "notification.editedPublicationFormat" -msgstr "Уреден е форматот на публикација." - -msgid "notification.addedPublicationFormat" -msgstr "Форматот на публикација е додаден." - -msgid "notification.removedPublicationDate" -msgstr "Датумот на објавување е отстранет." - -msgid "notification.editedPublicationDate" -msgstr "Уреден е датумот на објавување." - -msgid "notification.addedPublicationDate" -msgstr "Додаден датумот на објавување." - -msgid "notification.removedIdentificationCode" -msgstr "Кодот за идентификација е отстранет." - -msgid "notification.editedIdentificationCode" -msgstr "Уреден е кодот за идентификација." - -msgid "notification.addedIdentificationCode" -msgstr "Додаден е кодот за идентификација." - -msgid "log.imported" -msgstr "{$userName} има увезено монографија {$submissionId}." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} достави {$submissionId} за закажување." - -msgid "log.proofread.assign" -msgstr "" -"{$assignerName} го додели {$proofreaderName} за лекторирање на поднесувањето " -"{$submissionId}." - -msgid "log.editor.editorAssigned" -msgstr "{$editorName} е доделен како уредник на поднесувањето {$submissionId}." - -msgid "log.editor.restored" -msgstr "Поднесувањето {$submissionId} е вратено во редот." - -msgid "log.editor.archived" -msgstr "Поднесокот {$submissionId} е архивиран." - -msgid "log.editor.recommendation" -msgstr "" -"Препорака за уредник ({$decision}) за монографија {$submissionId} е снимена " -"од {$editorName}." - -msgid "log.editor.decision" -msgstr "" -"Одлуката за уредник ({$decision}) за монографијата {$submissionId} е снимена " -"од {$editorName}." - -msgid "log.review.reviewUnconsidered" -msgstr "" -"{$editorName} го одбележа кружниот преглед на {$round} прегледот за " -"доставување {$submissionId} како непромислен." - -msgid "log.review.reviewAccepted" -msgstr "" -"{$reviewerName} го прифати целосниот преглед на {$round} прегледот за " -"доставување {$submissionId}." - -msgid "log.review.reviewDeclined" -msgstr "" -"{$reviewerName} го одби целосниот преглед на {$round} прегледот за " -"доставување {$submissionId}." - -msgid "log.review.reviewDueDateSet" -msgstr "" -"Датумот на достасување за кружниот преглед на {$round} прегледот на " -"поднесувањето {$submissionId} од {$reviewerName} е поставен на {$dueDate}." - -msgid "installer.upgradeComplete" -msgstr "" -"

        Ажурирањето на OMP во верзија {$version} е успешно завршено.

        \n" -"

        Не заборавајте да ја поставите поставката \"инсталирана\" во вашата " -"конфигурациска датотека config.inc.php назад на Вклучено .

        \n" -"

        Ако веќе не сте се регистрирале и сакате да добивате новости и " -"ажурирања, ве молиме регистрирајте се на http://pkp.sfu.ca/omp/register. Ако " -"имате прашања или коментари, посетете ја целта на форум за поддршка .

        " - -msgid "installer.installationComplete" -msgstr "" -"

        Инсталирањето на OMP е успешно завршено.

        \n" -"

        За да започнете со користење на системот, " -"најавете се со корисничкото име и лозинката внесени на претходната " -"страница.

        \n" -"

        Ако сакате да добивате новости и ажурирања, ве молиме " -"регистрирајте се наhttp://pkp.sfu.ca/omp/register. Ако имате прашања или " -"коментари, посетете го " -" форумот за поддршка .

        " - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

        Важно!

        \n" -"

        Инсталаторот не може автоматски да ја замени конфигурациската датотека. " -"Пред да се обидете да го користите системот, отворете config.inc.php" -" во соодветен уредувач на текст и заменете ја неговата содржина со " -"содржината на полето за текст подолу.

        " - -msgid "installer.upgradeApplication" -msgstr "Надоградете ја Open Monograph Press" - -msgid "installer.databaseSettingsInstructions" -msgstr "" -"ОМП бара пристап до SQL база на податоци за зачувување на нејзините " -"податоци. Погледнете ги погоре барањата на системот за список на поддржани " -"бази на податоци. Во полињата подолу, наведете ги поставките што ќе се " -"користат за поврзување со базата на податоци." - -msgid "installer.filesDirInstructions" -msgstr "" -"Внесете го целосното име на постојниот директориум каде што треба да се " -"чуваат подигнатите датотеки. Овој директориум не треба да биде директно " -"достапен на веб. Ве молиме, осигурете се дека овој директориум " -"постои и може да се запише пред инсталацијата. Имињата на патеките " -"на Windows треба да користат пресеци нанапред, на пр. \"C:/mypress/files\"." - -msgid "installer.additionalLocalesInstructions" -msgstr "" -"Изберете дополнителни јазици за поддршка во овој систем. Овие јазици ќе " -"бидат достапни за употреба од изданијата хостирани на страницата. " -"Дополнителни јазици исто така може да се инсталираат во кое било време од " -"интерфејсот за администрација на страницата. Локалите со ознака * може да " -"бидат нецелосни." - -msgid "installer.localeInstructions" -msgstr "" -"Примарен јазик што треба да се користи за овој систем. Ве молиме, " -"консултирајте се со документацијата за ОМП доколку сте заинтересирани за " -"поддршка за јазиците што не се наведени овде." - -msgid "installer.maxFileUploadSize" -msgstr "" -"Вашиот сервер во моментов дозволува максимална големина на поставување " -"датотека од: {$maxFileUploadSize}" - -msgid "installer.allowFileUploads" -msgstr "" -"Вашиот сервер во моментов дозволува поставување датотеки: " -"{$allowFileUploads}" - -msgid "installer.localeSettingsInstructions" -msgstr "" -"За целосна поддршка на Уникод (UTF-8), изберете UTF-8 за сите поставки за " -"поставување знаци. Имајте на ум дека оваа поддршка во моментов бара MySQL> = " -"4.1.1 или PostgreSQL> = 9.1.5 сервер за бази на податоци. Забележете исто " -"така дека целосната поддршка за Уникод бара библиотека mbstring (овозможено " -"стандардно во најновите инсталации на PHP). Може да имате проблеми со " -"користење на проширени множества на карактери, ако вашиот сервер не ги " -"исполнува овие барања.\n" -"

        \n" -"Вашиот сервер моментално поддржува mbstring: {$ supportMBString} " -"" - -msgid "installer.upgradeInstructions" -msgstr "" -"

        Верзија на OMP {$ верзија}

        \n" -"\n" -"

        Ви благодариме што го преземавте Отворениот печат на " -"монографијата на Проектот за јавно знаење . Пред да продолжите, " -"прочитајте ги датотеките README и <" -"a href=\"{$baseUrl}/docs/UPGRADE\"> UPGRADE вклучени во овој софтвер. " -"За повеќе информации во врска со Проектот за јавно знаење и неговите " -"софтверски проекти, посетете ја веб-страницата на PKP . Ако имате извештаи за грешки или " -"прашања за техничка поддршка во врска со Open Monograph Press, видете во форумот за поддршка " -"или посетете го PKP на Интернет систем за пријавување на грешки . Иако форумот за " -"поддршка е префериран метод за контакт, можете исто така да го испратите " -"тимот по е-пошта на pkp.contact@" -"gmail.com .

        \n" -"

        Силно се препорачува да направите резервна копија од " -"вашата база на податоци, директориумот со датотеки и директориумот за " -"инсталација на OMP пред да продолжите.

        \n" -"

        Ако трчате во Безбеден режим на PHP , осигурете се дека директивата за " -"max_execution_time во вашата датотека за конфигурација php.ini е поставена " -"на висока граница. Доколку се постигне ова или кое било друго временско " -"ограничување (на пример, директивата „Тајмаут“ на Апачи) и процесот на " -"ажурирање е прекинат, ќе биде потребна рачна интервенција.

        " - -msgid "installer.preInstallationInstructions" -msgstr "" -"

        1 Следните датотеки и директориуми (и нивната содржина) мора да бидат " -"напишани:

        \n" -"
          \n" -"
        • config.inc.php може да се напише (по избор): " -"{$writable_config}
        • \n" -"
        • јавно / може да се запише: {$writable_public}
        • \n" -"
        • кешот / може да се запише: {$writable_cache}
        • \n" -"
        • кеш меморијата / t_cache / може да се запише: " -"{$writable_templates_cache}
        • \n" -"
        • кеш меморијата / t_compile / може да се запише: " -"{$writable_templates_compile}
        • \n" -"
        • кеш меморијата / _db може да се запише: " -"{$writable_db_cache}
        • \n" -"
        \n" -"\n" -"

        2. Именикот за зачувување на подигнатите датотеки мора да биде креиран и " -"да се запишува (видете „Подесувања на датотека“ подолу).

        " - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Чекори пред инсталација" - -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

        Ви благодариме што го преземавте Отворен монографски печат на " -"{$version} на Проектот за јавно знаење. Пред да продолжите, " -"прочитајте ја датотеката README " -"вклучена во овој софтвер. За повеќе информации во врска со Проектот за јавно " -"знаење и неговите софтверски проекти, посетете ја PKP web site. Ако имате извештаи за грешки или " -"прашања за техничка поддршка во врска со Отворен монографски печат, видете " -"во support forum " -"или посетете го Интернет-мрежата на PKP bug reporting system. Иако форумот за поддршка е " -"префериран метод за контакт, можете исто така да го испратите тимот по е-" -"пошта наpkp.contact@gmail.com.

        \n" - -msgid "installer.installApplication" -msgstr "Инсталирајте Open Monograph Press" - -msgid "installer.ompUpgrade" -msgstr "ОМП надоградување" - -msgid "installer.appInstallation" -msgstr "ОМП инсталација" - -msgid "help.goToEditPage" -msgstr "Отворете нова страница за да ги уредите овие информации" - -msgid "help.searchReturnResults" -msgstr "Врати се на резултатите од пребарувањето" - -msgid "about.aboutOMPSite" -msgstr "" -"Оваа страница користи Open Monograph Press {$ompVersion}, што е софтвер со " -"отворен извор за управување и издавање софтвер развиен, поддржан и слободно " -"дистрибуиран од страна на Проектот за јавно знаење според Општата јавна " -"лиценца на GNU. Посетете ја веб-страницата на PKP за да дознаете повеќе за софтверот . Ве молиме " -"контактирајте ја страницата директно со прашања во врска со нејзините " -"изданија и поднесоци до нејзините изданија." - -msgid "about.aboutOMPPress" -msgstr "" -"Ова издание користи Open Monograph Press {$ompVersion}, што е софтвер со " -"отворен извор за управување и издавање софтвер развиен, поддржан и слободно " -"дистрибуиран од страна на Проектот за јавно знаење според Општата јавна " -"лиценца на GNU. Посетете ја веб-страницата на PKP за да дознаете повеќе за софтверот . Ве молиме контактирајте го изданието директно со прашања во " -"врска со изданието и испраќањата до изданието." - -msgid "about.aboutSoftware" -msgstr "За Отворен монографски печат" - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "ОМП уреднички и објавувачки процес" - -msgid "about.aboutThisPublishingSystem" -msgstr "" -"Повеќе информации за системот за објавување, Платформата и работниот тек од " -"OMP / PKP." - -msgid "about.pressSponsorship" -msgstr "Спонзорство на издание" - -msgid "about.openAccessPolicy" -msgstr "Политика за отворен пристап" - -msgid "about.publicationFrequency" -msgstr "Фреквенција на објавување" - -msgid "about.reviewPolicy" -msgstr "Процес на рецензија на врсници" - -msgid "about.privacyStatement" -msgstr "Изјава за приватност" - -msgid "about.copyrightNotice" -msgstr "Известување за авторски права" - -msgid "about.submissionPreparationChecklist.description" -msgstr "" -"Како дел од процесот на доставување, од авторите се бара да ја проверат " -"усогласеноста на поднесувањето со сите следни ставки, а поднесоците може да " -"им бидат вратени на авторите кои не се придржуваат до овие упатства." - -msgid "about.submissionPreparationChecklist" -msgstr "Список за подготовка на поднесоци" - -msgid "about.authorGuidelines" -msgstr "Упатства за авторите" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "прегледајте ги вашите поднесоци што чекаат" - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Направете нов поднесок" - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} или {$viewSubmissions}." - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} или {$register} за да направите поднесување." - -msgid "about.onlineSubmissions.register" -msgstr "Регистрација" - -msgid "about.onlineSubmissions.login" -msgstr "Логирај Се" - -msgid "about.onlineSubmissions" -msgstr "Поднесоци преку Интернет" - -msgid "about.submissions" -msgstr "Поднесоци" - -msgid "about.seriesPolicies" -msgstr "Политики за серии и категории" - -msgid "about.focusAndScope" -msgstr "Фокус и опсег" - -msgid "about.editorialPolicies" -msgstr "Уреднички политики" - -msgid "about.editorialTeam" -msgstr "Уреднички тим" - -msgid "about.aboutContext" -msgstr "За изданието" - -msgid "about.pressContact" -msgstr "Содржина на издание" - -msgid "site.pressView" -msgstr "Погледнете ја веб-страницата за изданието" - -msgid "site.noPresses" -msgstr "Нема достапни изданија." - -msgid "user.register.form.privacyConsentThisContext" -msgstr "" -"Да, се согласувам моите податоци да бидат собрани и складирани според изјавата за приватност на ова " -"издание ." - -msgid "user.register.form.userGroupRequired" -msgstr "Мора да изберете барем една улога" - -msgid "user.register.reviewerInterests" -msgstr "" -"Идентификувајте ги интересите за разгледување (суштински области и методи на " -"истражување):" - -msgid "user.register.reviewerDescription" -msgstr "Подготвени да спроведат преглед на врски на поднесоците до страницата." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Подготвени да извршат рецензија на врски на поднесоци до изданието." - -msgid "user.register.authorDescription" -msgstr "Може да доставува предмети до изданието." - -msgid "user.register.readerDescription" -msgstr "Известено по е-пошта за објавување на монографија." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Лозинката што ја внесовте не е доволно долга." - -msgid "user.register.registrationDisabled" -msgstr "Ова издание моментално не прифаќа регистрации на корисници." - -msgid "user.register.privacyStatement" -msgstr "Изјава за приватност" - -msgid "user.register.noContexts" -msgstr "Нема изданија со кои би можеле да се регистрирате на оваа страница." - -msgid "user.register.selectContext" -msgstr "Изберете издание со кое да се регистрирате:" - -msgid "user.role.productionEditors" -msgstr "Уредници на продукција" - -msgid "user.role.proofreaders" -msgstr "Лектори" - -msgid "user.role.copyeditors" -msgstr "Уредници" - -msgid "user.role.editors" -msgstr "Уредници" - -msgid "user.role.subEditors" -msgstr "Уредници на серии" - -msgid "user.role.managers" -msgstr "Менаџери на издание" - -msgid "user.role.productionEditor" -msgstr "Уредник на продукција" - -msgid "user.role.proofreader" -msgstr "Лектор" - -msgid "user.role.subEditor" -msgstr "Уредник на серии" - -msgid "user.role.pressEditor" -msgstr "Уредик на издание" - -msgid "user.role.manager" -msgstr "Менаџер на издание" - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Ако баравте да бидете рецензент за кое било издание, внесете ги вашите " -"предметни интереси." - -msgid "user.register.otherContextRoles" -msgstr "Побарајте ги следниве улоги." - -msgid "user.register.contextsPrompt" -msgstr "Со кои изданија на оваа страница сакате да се регистрирате?" - -msgid "user.reviewerPrompt.optin" -msgstr "" -"Да, би сакал да ме контактираат со барања за преглед на поднесоците до ова " -"издание." - -msgid "user.reviewerPrompt.userGroup" -msgstr "Да, побарајте ја улогата {$userGroup}." - -msgid "user.reviewerPrompt" -msgstr "Дали сте подготвени да ги разгледате поднесоците до овој печат?" - -msgid "user.noRoles.regReviewerClosed" -msgstr "" -"Регистрирајте се како рецензент: Регистрацијата на рецензентот во моментов е " -"оневозможена." - -msgid "user.noRoles.regReviewer" -msgstr "Регистрирајте се како рецензент" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "" -"Поднесете монографија: Регистрацијата на авторот во моментов е оневозможена." - -msgid "user.noRoles.submitMonograph" -msgstr "Поднесете предлог" - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Вклучете корисници без улоги во ова издание." - -msgid "user.authorization.representationNotFound" -msgstr "Бараниот формат на објавување не може да се најде." - -msgid "context.select" -msgstr "Префрлете се на друго издание:" - -msgid "context.current" -msgstr "Тековно издание:" - -msgid "context.context" -msgstr "Издание" - -msgid "context.contexts" -msgstr "Изданија" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Врска до вашите нови изданија." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Нови изданија" - -msgid "navigation.navigationMenus.category.description" -msgstr "Врска до категорија." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Категорија" - -msgid "navigation.navigationMenus.series.description" -msgstr "Врска до сериите." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Серии" - -msgid "navigation.skip.spotlights" -msgstr "Прескокнете до центрите на внимание" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Врска до вашиот каталог." - -msgid "navigation.linksAndMedia" -msgstr "Врски и социјални медиуми" - -msgid "navigation.wizard" -msgstr "Волшебник" - -msgid "navigation.published" -msgstr "Објавено" - -msgid "navigation.newReleases" -msgstr "Нови изданија" - -msgid "navigation.infoForLibrarians.long" -msgstr "Информации за библиотекари" - -msgid "navigation.infoForAuthors.long" -msgstr "Информации за автори" - -msgid "navigation.infoForLibrarians" -msgstr "За библиотекари" - -msgid "navigation.infoForAuthors" -msgstr "За авторите" - -msgid "navigation.catalog.administration.series" -msgstr "Серии" - -msgid "navigation.catalog.administration.categories" -msgstr "Категории" - -msgid "navigation.catalog.administration" -msgstr "Администрација на каталог" - -msgid "navigation.catalog.administration.short" -msgstr "Администрација" - -msgid "navigation.catalog.manage" -msgstr "Управувај" - -msgid "navigation.catalog.allMonographs" -msgstr "Сите монографии" - -msgid "navigation.competingInterestPolicy" -msgstr "Политика за конкурентни интереси" - -msgid "navigation.catalog" -msgstr "Каталог" - -msgid "common.homePageHeader.altText" -msgstr "Заглавие на почетната страница" - -msgid "catalog.loginRequiredForPayment" -msgstr "" -"Ве молиме запомнете: За да купите предмети, прво ќе треба да се најавите. " -"Избирање ставка за купување ќе ве насочи на страницата за најавување. Секоја " -"ставка обележана со икона Отворен пристап може да се преземе бесплатно, без " -"најавување." - -msgid "catalog.aboutTheAuthor" -msgstr "За {$roleName}" - -msgid "catalog.category.subcategories" -msgstr "Подкатегории" - -msgid "catalog.parentCategory" -msgstr "Родителска категорија" - -msgid "catalog.categories" -msgstr "Категории" - -msgid "catalog.forthcoming" -msgstr "Претстои" - -msgid "catalog.published" -msgstr "Објавено" - -msgid "catalog.publicationInfo" -msgstr "Информации за публикација" - -msgid "catalog.dateAdded" -msgstr "Додадено" - -msgid "catalog.newReleases" -msgstr "Нови изданија" - -msgid "catalog.category.heading" -msgstr "Сите книги" - -msgid "catalog.foundTitlesSearch" -msgstr "" -"Пронајдени се наслови од {$number} кои одговараат на вашето пребарување за \"" -"{$searchQuery}\"." - -msgid "catalog.foundTitleSearch" -msgstr "" -"Пронајден е еден наслов што одговараше на вашето пребарување за " -"„{$searchQuery}“." - -msgid "catalog.featuredBooks" -msgstr "Избрани книги" - -msgid "catalog.featured" -msgstr "Карактеристика" - -msgid "catalog.feature" -msgstr "Карактеристика" - -msgid "catalog.noTitlesSearch" -msgstr "" -"Не беа пронајдени наслови што одговараат на вашето пребарување за " -"„{$searchQuery}“." - -msgid "user.role.copyeditor" -msgstr "Уредник" - -msgid "installer.updatingInstructions" -msgstr "" -"Ако ја надградувате постоечката инсталација на OMP, кликнете овде за да продолжите." diff --git a/locale/mk_MK/manager.po b/locale/mk_MK/manager.po deleted file mode 100644 index 9bc352840d1..00000000000 --- a/locale/mk_MK/manager.po +++ /dev/null @@ -1,1420 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-02-09 22:36+0000\n" -"Last-Translator: Mirko Spiroski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.series.submissionIndexing" -msgstr "Нема да бидат вклучени во индексирањето на изданието" - -msgid "manager.series.form.reviewFormId" -msgstr "Ве молиме, проверете дали сте одбрале валидна форма за преглед." - -msgid "manager.series.form.mustAllowPermission" -msgstr "" -"Ве молиме, проверете дали е проверено најмалку едно поле за избор за секоја " -"задача на Уредувач на серии." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Ова ќе биде стандардниот јазик за страницата за изданието." - -msgid "manager.languages.noneAvailable" -msgstr "" -"Извинете, не се достапни дополнителни јазици. Контактирајте го вашиот " -"администратор на страницата ако сакате да користите дополнителни јазици со " -"ова притискање." - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "" -"Ова ќе ги замени сите поставки за изданието специфични за локацијата што сте " -"ги имале за оваа локација" - -msgid "manager.series.indexed" -msgstr "Индексирани" - -msgid "manager.series.open" -msgstr "Отворете ги поднесоците" - -msgid "plugins.importexport.native.exportSubmissions" -msgstr "Поднесоци за извоз" - -msgid "plugins.importexport.common.invalidXML" -msgstr "Невалиден XML:" - -msgid "plugins.importexport.common.error.validation" -msgstr "Не може да се конвертираат избраните објекти." - -msgid "plugins.importexport.common.error.noObjectsSelected" -msgstr "Не се избрани објекти." - -msgid "stats.publications.abstracts" -msgstr "Записи во каталогот" - -msgid "stats.publications.countOfTotal" -msgstr "{$count} од {$total} монографии" - -msgid "stats.publications.totalGalleyViews.timelineInterval" -msgstr "Вкупно прегледи на датотеки по датум" - -msgid "stats.publications.totalAbstractViews.timelineInterval" -msgstr "Вкупно прегледи на каталозите по датум" - -msgid "stats.publications.none" -msgstr "" -"Не се пронајдени монографии со статистика за употреба што одговара на овие " -"параметри." - -msgid "stats.publications.details" -msgstr "Детали за монографијата" - -msgid "stats.publicationStats" -msgstr "Статистика за монографија" - -msgid "grid.series.urlWillBe" -msgstr "URL-то на серијата ќе биде: {$sampleUrl}" - -msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" -msgstr "" -"Изберете ја категоријата до која сакате да се поврзе оваа ставка од менито." - -msgid "manager.navigationMenus.form.navigationMenuItem.category" -msgstr "Изберете категорија" - -msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" -msgstr "Изберете ја серијата до која сакате да се поврзе оваа ставка од менито." - -msgid "manager.navigationMenus.form.navigationMenuItem.series" -msgstr "Изберете серија" - -msgid "grid.series.pathExists" -msgstr "Серијата патеки веќе постои. Ве молиме, внесете единствена патека." - -msgid "grid.series.pathAlphaNumeric" -msgstr "Патеката на сериите мора да се состои од само букви и броеви." - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "" -"Испратете копија до примарниот контакт, идентификуван во Поставки за " -"изданието." - -msgid "grid.genres.title" -msgstr "Компоненти на монографијата" - -msgid "grid.genres.title.short" -msgstr "Компоненти" - -msgid "manager.setup.resetPermissions.success" -msgstr "Дозволите за монографија беа успешно ресетирани." - -msgid "manager.setup.resetPermissions.description" -msgstr "" -"Изјавата за авторските права и информациите за лиценцата трајно ќе бидат " -"прикачени на објавената содржина, осигурувајќи дека овие податоци нема да се " -"променат во случај на промена на политиките за нови поднесоци од изданието. " -"За да ги ресетирате информациите зачувани дозволи што веќе се прикачени на " -"објавената содржина, користете го копчето подолу." - -msgid "manager.setup.resetPermissions.confirm" -msgstr "" -"Дали сте сигурни дека сакате да ги ресетирате податоците за дозволи веќе " -"приложени на монографии?" - -msgid "manager.setup.resetPermissions" -msgstr "Ресетирајте ги дозволите за монографија" - -msgid "manager.publication.library" -msgstr "Притисни библиотека" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "" -"

        За да им овозможите на читателите да лоцираат онлајн верзии на делото " -"цитирано од автор, следниве опции се достапни.

        \n" -"\n" -"
          \n" -"
        1. Додадете алатка за читање

          Менаџерот за издание " -"може да додаде „Најди ги референците“ во Алатките за читање што ги " -"придружуваат објавените ставки, што им овозможува на читателите да го " -"залепат насловот на референцата и потоа да ги пребаруваат претходно " -"избраните научници бази на податоци за наведената работа.

        2. \n" -"
        3. Вметнување врски во референците

          Уредникот на " -"распоредот може да додаде врска до препораките што може да се најдат на " -"Интернет со користење на следниве упатства (што може да се уредуваат).

          " -"\n" -"
        " - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "" -"Чекори: Ред за поднесување > Преглед на поднесување > Уредување на " -"поднесување > Содржина.

        \n" -"Изберете модел за ракување со овие аспекти на уредничкиот процес. (За да " -"назначите Управувач и уредници на серии, одете во Уредници во Менаџмент на " -"издание.)" - -msgid "manager.setup.copyrightNotice.sample" -msgstr "" -"

        Предложени известувања за авторски права на Криејтив комонс

        \n" -"

        Предлог политика за изданија што нудат отворен пристап

        \n" -"Авторите што објавуваат со ова издание се согласуваат на следниве термини:\n" -"
          \n" -"
        1. Авторите ги задржуваат авторските права и му даваат право на прва " -"публикација на изданието со делото истовремено лиценцирано со атрибут на " -"Криејтив комонс, истовремено лиценциран со Лиценца што им овозможува на " -"другите да го споделат делото со потврда за авторството на делото и " -"првичното објавување на ова издание.
        2. \n" -"
        3. Авторите се во можност да склучат одделни, дополнителни договори за " -"неексклузивна дистрибуција на верзијата на делото објавено од изданието (на " -"пр., објавете го во институционално складиште или објавете го во книга) на " -"неговото првично објавување во ова издание.
        4. \n" -"
        5. На авторите им е дозволено и охрабруваат да ја објавуваат својата " -"работа преку Интернет (на пример, во институционални складишта или на " -"нивната веб-страница) пред и за време на процесот на доставување, бидејќи " -"тоа може да доведе до продуктивна размена, како и порано и поголемо цитирање " -"на објавената работа (Погледнете The Effect of Open " -"Access).
        6. \n" -"
        \n" -"\n" -"

        Предложена политика за изданија што нудат одложен отворен пристап

        " -"\n" -"Авторите што објавуваат со ова издание се согласуваат на следниве термини:\n" -"
          \n" -"
        1. Авторите ги задржуваат авторските права и му даваат право на прва " -"објава на изданието, со делото [ПОСЕБЕН ПЕРИОД НА ВРЕМЕ] по објавувањето " -"истовремено лиценцирано под Лиценца за извор на авторски " -"права на Криејтив комонс што им овозможува на другите да го споделат " -"делото со потврда за авторството на делото и првично објавување на ова " -"издание.
        2. \n" -"
        3. Авторите се во можност да склучат одделни, дополнителни договори за " -"неексклузивна дистрибуција на верзијата на делото објавено од изданието (на " -"пр., објавете го во институционално складиште или објавете го во книга), со " -"потврда на неговото првично објавување во ова издание.
        4. \n" -"
        5. На авторите им е дозволено и охрабруваат да ја објавуваат својата " -"работа преку Интернет (на пример, во институционални складишта или на " -"нивната веб-страница) пред и за време на процесот на доставување, бидејќи " -"тоа може да доведе до продуктивна размена, како и порано и поголемо цитирање " -"на објавената работа (Погледнете The Effect of Open " -"Access).
        6. \n" -"
        " - -msgid "manager.files.note" -msgstr "" -"Забелешка: Прелистувачот Датотеки е напредна карактеристика што овозможува " -"директно гледање и манипулирање со датотеките и директориумите поврзани со " -"изданието." - -msgid "manager.setup.productionTemplates" -msgstr "Шаблони за производство" - -msgid "manager.setup.files" -msgstr "Датотеки" - -msgid "manager.setup.editorialTeam.description" -msgstr "" -"Список на уредници, управни директори и други лица поврзани со изданието." - -msgid "manager.setup.editorialTeam" -msgstr "Уреднички тим" - -msgid "manager.setup.masthead" -msgstr "Мајстор" - -msgid "manager.setup.internalReviewRoles" -msgstr "Улогите на внатрешниот преглед" - -msgid "manager.setup.currentRoles" -msgstr "Тековни улоги" - -msgid "manager.setup.availableRoles" -msgstr "Уметни улоги" - -msgid "manager.setup.managerialRoles" -msgstr "Управни улоги" - -msgid "manager.setup.authorRoles" -msgstr "Улоги на авторот" - -msgid "manager.setup.roleType" -msgstr "Тип на улога" - -msgid "manager.setup.reviewForms" -msgstr "Формулари за преглед" - -msgid "manager.setup.series.description" -msgstr "" -"Може да креирате кој било број на серии за да помогнете во организирање на " -"вашите публикации. Серија претставува посебен сет на книги посветени на тема " -"или теми што некој ги предложил, обично член на факултет или две, а потоа ги " -"надгледува. Посетителите ќе можат да пребаруваат и да прелистуваат изданието " -"по серии." - -msgid "manager.setup.categories.description" -msgstr "" -"Може да креирате список со категории што ќе ви помогнат да ги организирате " -"публикациите. Категориите се групирање на книги според предметот, на пример " -"Економија; Литература; Поезија; и така натаму. Категориите можат да бидат " -"вгнездени во категориите „родители“: на пример, родителска категорија во " -"Економија може да вклучува индивидуални категории за микроекономија и " -"макроекономија. Посетителите ќе можат да пребаруваат и да пребаруваат во " -"изданието по категории." - -msgid "manager.setup.categoriesAndSeries" -msgstr "Категории и серии" - -msgid "manager.setup.currentFormats" -msgstr "Тековни формати" - -msgid "manager.setup.issnDescription" -msgstr "" -"ISSN (Меѓународен стандарден сериски број) е осумцифрен број што " -"идентификува периодични публикации, вклучувајќи електронски серии. Број може " -"да се добие од ISSN " -"International Centre." - -msgid "manager.setup.submitToSeries" -msgstr "Дозволете поднесоци за категории" - -msgid "manager.setup.submitToCategories" -msgstr "Дозволете поднесоци за категории" - -msgid "manager.setup.prospectusDescription" -msgstr "" -"Водичот за проспект е документ подготвен за изданието кој му помага на " -"авторот да ги опише доставените материјали на начин што му овозможува на " -"изданието да ја утврди вредноста на пријавата. Проспектот може да вклучува " -"многу предмети - од потенцијален маркетинг до теоретска вредност; во секој " -"случај, изданието треба да создаде водич за проспект што ја надополнува " -"нивната агенда за објавување." - -msgid "manager.setup.prospectus" -msgstr "Водич за проспект" - -msgid "manager.setup.restoreDefaults" -msgstr "Вратете ги стандардните поставки" - -msgid "manager.setup.deleteSelected" -msgstr "Избриши избрано" - -msgid "manager.setup.newGenreDescription" -msgstr "" -"За да креирате нов жанр, пополнете го формуларот подолу и кликнете на " -"копчето „Креирај“." - -msgid "manager.setup.newGenre" -msgstr "Жанр на нова монографија" - -msgid "manager.setup.genres" -msgstr "Жанрови" - -msgid "manager.setup.disableSubmissions.description" -msgstr "" -"Спречете ги корисниците да испраќаат нови написи до изданието. Пријавите " -"може да бидат оневозможени за индивидуални серии на изданието на страницата " -"за поставки за press series." - -msgid "manager.setup.disableSubmissions.notAccepting" -msgstr "" -"Ова издание не прифаќа поднесоци во овој момент. Посетете ги поставките за " -"работниот тек за да дозволите поднесување." - -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "" -"Уредниците им испраќаат на рецензентите барање за преглед со поднесокот во " -"прилог на е-поштата. Рецензентите им испраќаат е-пошта на уредниците за " -"нивното согласување (или жалат), како и прегледот и препораката. Уредниците " -"влегуваат во согласност (или жалат) на рецензентите, како и преглед и " -"препорака на страницата за преглед на поднесокот, за да го запишат процесот " -"на прегледување." - -msgid "manager.setup.genresDescription" -msgstr "" -"Овие жанрови се користат за именување на датотеки и се претставени во " -"паѓачкото мени за поставување датотеки. Жанровите означени ## му " -"овозможуваат на корисникот да ја поврзе датотеката или со целата книга 99Z " -"или со одредено поглавје по број (на пример, 02)." - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "" -"За да креирате нов формат на објавување, пополнете го формуларот подолу и " -"кликнете на копчето „Креирај“." - -msgid "manager.setup.newPublicationFormat" -msgstr "Нов формат на публикација" - -msgid "manager.setup.publicationFormat.inUse" -msgstr "" -"Бидејќи овој формат на публикација моментално се користи од монографија во " -"вашето издание, тој не може да се избрише." - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "Дали е ова физички (недигитален) формат?" - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "Мора да доделите име на овој формат." - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "Мора да се избере формат." - -msgid "manager.setup.publicationFormat.code" -msgstr "Формат" - -msgid "manager.setup.volumePerYear" -msgstr "Тома годишно" - -msgid "manager.setup.useTextTitle" -msgstr "Текст на наслов" - -msgid "manager.setup.userRegistration" -msgstr "Регистрација на корисник" - -msgid "manager.setup.useProofreaders" -msgstr "" -"На лекарот ќе му биде доделен да ги проверува (заедно со авторите) отисоците " -"на труд пред објавувањето." - -msgid "manager.setup.useLayoutEditors" -msgstr "" -"Ќе биде доделен уредник на распоред за да ги подготви датотеките HTML, PDF, " -"итн. за електронско објавување." - -msgid "manager.setup.useStyleSheet" -msgstr "Лист за стилови на изданието" - -msgid "manager.setup.useImageTitle" -msgstr "Насловна слика" - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "Изданието ќе користи уреднички / рецензентски одбор." - -msgid "manager.setup.useCopyeditors" -msgstr "Уредник ќе биде назначен да работи со секој поднесок." - -msgid "manager.setup.typeProvideExamples" -msgstr "" -"Обезбедете примери за релевантни типови, методи и пристапи на истражување за " -"оваа област" - -msgid "manager.setup.typeMethodApproach" -msgstr "Тип (метод / пристап)" - -msgid "manager.setup.typeExamples" -msgstr "" -"(На пр., Историско истражување; квази-експериментално; литературна анализа; " -"истражување / интервју)" - -msgid "manager.setup.submissions.description" -msgstr "" -"Упатства за автор, авторски права и индексирање (вклучително и регистрација)." - -msgid "manager.setup.workflow" -msgstr "Тек на работа" - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "Потребна е ставка од списокот за проверка." - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Список за подготовка на поднесување" - -msgid "manager.setup.submissionGuidelines" -msgstr "Упатства за поднесување" - -msgid "manager.setup.subjectProvideExamples" -msgstr "Обезбедете примери на клучни зборови или теми како водич за авторите" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Клучни зборови" - -msgid "manager.setup.subjectExamples" -msgstr "" -"(На пр., Фотосинтеза; Црни дупки; Проблем со четири бои на мапи; Баезијанска " -"теорија)" - -msgid "manager.setup.stepsToPressSite" -msgstr "Пет чекори до веб-страница за изданието" - -msgid "manager.setup.siteAccess.viewContent" -msgstr "Погледнете ја содржината на монографијата" - -msgid "manager.setup.siteAccess.view" -msgstr "Пристап до страницата" - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "" -"Секогаш покажувајте врски од отисок од трудот и наведете ограничен пристап." - -msgid "manager.setup.selectSectionDescription" -msgstr "Секција на изданието за кој ќе се разгледа ставката." - -msgid "manager.setup.selectEditorDescription" -msgstr "Уредникот на изданието кој ќе го види преку уредничкиот процес." - -msgid "manager.setup.securitySettings.note" -msgstr "" -"Другите опции поврзани со безбедноста и пристапот може да се конфигурираат " -"од страницата Access and Security." - -msgid "manager.setup.securitySettings" -msgstr "Прилагодувања за пристап и безбедност" - -msgid "manager.setup.sectionsDescription" -msgstr "" -"За да креирате или измените делови за изданието (на пр., Монографии, " -"Прегледи на книги, итн.), Одете во Управување со оддели.

        " -"Авторите за испраќање предмети на изданието ќе назначат ..." - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "" -"(Ако делови не се додадат, тогаш предметите стандардно се доставуваат до " -"делот Монографии.)" - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Секции и уредници на оддели" - -msgid "manager.setup.searchEngineIndexing.success" -msgstr "Поставките за индексот на пребарувачот се ажурирани." - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "" -"Помогнете им на пребарувачите како Google да ја откријат и прикажат вашата " -"страница. Ве охрабруваме да го доставите вашиот sitemap." - -msgid "manager.setup.searchEngineIndexing" -msgstr "Индексирање на пребарувањето" - -msgid "manager.setup.searchDescription.description" -msgstr "" -"Обезбедете краток опис (50-300 карактери) на печатот што пребарувачите можат " -"да го прикажат кога го наведуваат изданието во резултатите од пребарувањето." - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "" -"Уредниците ќе ги испраќаат избраните рецензенти преку е-пошта насловот и " -"апстрактот на поднесокот, како и покана да се најават на веб-страницата за " -"печат за да ја завршат прегледот. Рецензентите влегуваат на веб-страницата " -"за печат за да се согласат да направат преглед, да преземаат поднесоци, да " -"ги доставуваат своите коментари и да изберат препорака." - -msgid "manager.setup.reviewProcessStandard" -msgstr "Стандарден процес на преглед" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Процес за преглед на е-пошта" - -msgid "manager.setup.reviewProcessDescription" -msgstr "" -"OMP поддржува два модела за управување со процесот на преглед. Стандардниот " -"процес на преглед се препорачува бидејќи ги чекори прегледувачите низ " -"процесот, обезбедува целосна историја на прегледи за секое поднесување и ги " -"искористува автоматските известувања за потсетници и стандардните препораки " -"за поднесоците (прифати; прифати со ревизии; достави за преглед; достави на " -"друго место; Одбиј; Погледни ги коментарите).

        Изберете едно од " -"следниве:" - -msgid "manager.setup.reviewProcess" -msgstr "Процес на преглед" - -msgid "manager.setup.reviewPolicy" -msgstr "Политика за преглед" - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Потсетници за рецензент" - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Оценки на рецензентот" - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" -msgstr "Вклучете безбедна врска во поканата за е-пошта до рецензентите." - -#, fuzzy -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" -msgstr "" -"На прегледувачите може да им се испрати безбедна врска во поканата за е-" -"пошта, што ќе им овозможи пристап до прегледот без најавување. Пристапот до " -"другите страници бара да се најават." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" -msgstr "Пристап со прегледник со еден клик" - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Пристап на рецензент" - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "" -"Прегледувачите ќе имаат пристап до датотеката за поднесување само откако ќе " -"се согласат да ја разгледаат." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" -msgstr "Ограничете го пристапот до датотеката" - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "" -"Уредниците ќе ги оценат рецензентите на скала за квалитет од пет точки по " -"секој преглед." - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "" -"За да ги активирате овие опции, администраторот на страницата мора да ја " -"овозможи опцијата scheduled_tasks во датотеката за конфигурација на " -"OMP. Може да биде потребна дополнителна конфигурација на серверот за " -"поддршка на оваа функционалност (што можеби не е можно на сите сервери), " -"како што е наведено во документацијата на OMP." - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Потсетници за автоматски е-пошта" - -msgid "manager.setup.reviewOptions" -msgstr "Опции за преглед" - -msgid "manager.setup.internalReviewGuidelines" -msgstr "Упатства за внатрешен преглед" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "" -"Обезбедете надворешни рецензенти со критериуми за проценка на соодветноста " -"на поднесокот за објавување во изданието, што може да вклучува упатства за " -"подготовка на ефективен и корисен преглед. Рецензентите ќе имаат можност да " -"дадат коментари наменети за авторот и уредникот, како и засебни коментари " -"само за уредникот." - -msgid "manager.setup.reviewGuidelines" -msgstr "Упатства за надворешен преглед" - -msgid "manager.setup.restrictSiteAccess" -msgstr "" -"Корисниците мора да бидат регистрирани и да се најават за да ја видат " -"страницата за изданието." - -msgid "manager.setup.restrictMonographAccess" -msgstr "" -"Корисниците мора да бидат регистрирани и да се најават за да ја видат " -"содржината со отворен пристап." - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Упатства за распоред за референтно поврзување" - -msgid "manager.setup.referenceLinking" -msgstr "Референтна врска" - -msgid "manager.setup.publisherDescription" -msgstr "" -"Името на организацијата што го објавува изданието ќе се појави во За " -"изданието." - -msgid "manager.setup.publisher" -msgstr "Издавач" - -msgid "manager.setup.publicationScheduleDescription" -msgstr "" -"Артиклите за изданието можат да бидат објавени колективно, како дел од " -"монографијата со своја Содржина. Алтернативно, одделни ставки може да се " -"објават веднаш штом се подготвени, со додавање на Содржината на „тековниот“ " -"том. Обезбедете им на читателите, во За изданието, изјава за системот што ќе " -"го користи ова издание и неговата очекувана фреквенција на објавување." - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Обезбедете им на Уредници за распоред упатства." - -msgid "manager.setup.proofreading" -msgstr "Лектори" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "" -"Инструкциите за лекторирање ќе бидат достапни на лектори, автори, уредници " -"на распоред и уредници на оддели во фазата на уредување на поднесувањето. " -"Подолу е зададен пакет инструкции во HTML, кој може да се уредува или " -"заменува со Менаџерот на изданието во која било точка (во HTML или обичен " -"текст)." - -msgid "manager.setup.proofingInstructions" -msgstr "Инструкции за докажување" - -msgid "manager.setup.printIssn" -msgstr "Принтај ИССН" - -msgid "manager.setup.contextTitle" -msgstr "Притиснете име" - -msgid "manager.setup.pressThumbnail.description" -msgstr "" -"Мало лого или претстава на изданието што може да се користи во списоци на " -"изданија." - -msgid "manager.setup.pressThumbnail" -msgstr "Притиснете ја сликичката" - -msgid "manager.setup.pressTheme" -msgstr "Притиснете тема" - -msgid "manager.setup.styleSheetInvalid" -msgstr "Невалиден формат на стилски лист. Прифатениот формат е .css." - -msgid "manager.setup.pressSetupUpdated" -msgstr "Вашата поставка за изданието е ажурирана." - -msgid "manager.setup.pressSetup" -msgstr "Притиснете Поставување" - -msgid "manager.setup.pressPolicies" -msgstr "Чекор 2. Политики на изданието" - -msgid "manager.setup.pageHeader" -msgstr "Заглавие на страница на издание" - -msgid "manager.setup.layout" -msgstr "Распоред на издание" - -msgid "manager.setup.contextInitials" -msgstr "Иницијали на издание" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "" -"Почетната страница за изданието стандардно се состои од врски за навигација. " -"Дополнителна содржина на почетната страница може да се додаде со користење " -"на една или сите следни опции, кои ќе се појават по прикажаниот редослед." - -msgid "manager.setup.pressHomepageContent" -msgstr "Почетна страна на содржината на изданието" - -msgid "manager.setup.homepageContentDescription" -msgstr "" -"Почетната страница за изданието стандардно се состои од врски за навигација. " -"Дополнителна содржина на почетната страница може да се додаде со користење " -"на една или сите следни опции, кои ќе се појават по прикажаниот редослед." - -msgid "manager.setup.homepageContent" -msgstr "Почетна страна на содржина на изданието" - -msgid "manager.setup.pressArchiving" -msgstr "Архивирање на изданието" - -msgid "manager.setup.aboutPress.description" -msgstr "" -"Вклучете какви било информации за вашето издание што може да бидат од " -"интерес за читатели, автори или рецензенти. Ова може да вклучува ваша " -"политика за отворен пристап, фокус и обем на изданието, известување за " -"авторски права, откривање спонзорства, историја на изданието и изјава за " -"приватност." - -msgid "manager.setup.aboutPress" -msgstr "За изданието" - -msgid "manager.setup.pressDescription.description" -msgstr "Краток опис на вашето издание." - -msgid "manager.setup.pressDescription" -msgstr "Резиме на изданието" - -msgid "manager.setup.appearanceDescription" -msgstr "" -"Различни компоненти на изгледот на печатот може да се конфигурираат од оваа " -"страница, вклучувајќи елементи на заглавието и подножјето, стилот и темата " -"на изданието и како списоците со информации се презентираат на корисниците." - -msgid "manager.setup.privacyStatement.success" -msgstr "Изјавата за приватност е ажурирана." - -msgid "manager.setup.policies.description" -msgstr "" -"Фокус, преглед на врсници, делови, приватност, безбедност и дополнителни " -"информации за предметите." - -msgid "manager.setup.policies" -msgstr "Политики" - -msgid "manager.setup.onlineIssn" -msgstr "Онлајн ИССН" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Пристап до содржината на изданието" - -msgid "manager.setup.numPageLinks.description" -msgstr "" -"Ограничете го бројот на врски што треба да се прикажат на следните страници " -"во списокот." - -msgid "manager.setup.numPageLinks" -msgstr "Врски со страници" - -msgid "manager.setup.noUseProofreaders" -msgstr "" -"Уредник или Уредник на оддели доделен на поднесокот ќе ги провери отисоците " -"на труд." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "" -"Уредник или Уредник на делови доделен на поднесокот ќе ги подготви " -"датотеките HTML, PDF, итн." - -msgid "manager.setup.noUseCopyeditors" -msgstr "" -"Копирањето ќе биде извршено од Уредник или Уредувач на оддели доделени на " -"поднесокот." - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "" -"Кога ја користите е-поштата за Известен автор, вклучете ги адресите за е-" -"пошта на сите коавтори за поднесоци со повеќе автори, а не само на " -"корисникот што го поднесува." - -msgid "manager.setup.note" -msgstr "Забелешка" - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "Не е поставено лист за стилови." - -msgid "manager.setup.noImageFileUploaded" -msgstr "Не е подигната датотека со слика." - -msgid "manager.setup.masthead.success" -msgstr "Деталите за главната глава за ова издание се ажурирани." - -msgid "manager.setup.managingThePress" -msgstr "Чекор 4. Управување со поставките" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Поставување за управување и објавување" - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Управување со основните уреднички чекори" - -msgid "manager.setup.management.description" -msgstr "" -"Пристап и безбедност, распоред, соопштенија, копирање, распоред и " -"лекторирање." - -msgid "manager.setup.settings" -msgstr "Поставки" - -msgid "manager.setup.look.description" -msgstr "" -"Заглавие на почетна страница, содржина, заглавие на издание, подножје, лента " -"за навигација и лист на стилот." - -msgid "manager.setup.look" -msgstr "Изглед и чувство" - -msgid "manager.setup.lists.success" -msgstr "Поставките за списокот се ажурирани." - -msgid "manager.setup.lists" -msgstr "Листи" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Наслов" - -msgid "manager.setup.layoutTemplates.file" -msgstr "Датотека на образецот" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "" -"Шаблоните може да се постават за да се појават во Распоред за секој од " -"стандардните формати објавени во изданието (на пр., Монографија, преглед на " -"книга, итн.) Со користење на кој било формат на датотека (на пример, pdf, " -"doc, итн.) Со додадени коментари со наведување на фонтот, големината , " -"маргини и сл. да служат како водич за уредниците на распоредот и лекторите." - -msgid "manager.setup.layoutTemplates" -msgstr "Шаблони за распоред" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "" -"Инструкциите за распоред може да бидат подготвени за форматирање на " -"објавување ставки во изданието и да бидат внесени подолу во HTML или обичен " -"текст. Тие ќе бидат ставени на располагање на Уредникот на распоредот и " -"Уредникот на секциите на страницата за уредување на секое поднесување. (" -"Бидејќи секое издание може да користи свои формати на датотеки, " -"библиографски стандарди, стилови, итн., Стандарден пакет на инструкции не е " -"даден.)" - -msgid "manager.setup.layoutInstructions" -msgstr "Инструкции за распоред" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Уредници на распоред" - -msgid "manager.setup.labelName" -msgstr "Име на етикетата" - -msgid "manager.setup.keyInfo.description" -msgstr "" -"Обезбедете краток опис на вашето издание и идентификувајте ги уредниците, " -"управните директори и другите членови на вашиот уреднички тим." - -msgid "manager.setup.keyInfo" -msgstr "Клучни информации" - -msgid "manager.setup.itemsPerPage.description" -msgstr "" -"Ограничете го бројот на ставки (на пример, поднесоци, корисници или задачи " -"за уредување) за да ги прикажете во списокот пред да ги прикажете следните " -"ставки на друга страница." - -msgid "manager.setup.itemsPerPage" -msgstr "Предмети по страница" - -msgid "manager.setup.institution" -msgstr "Институција" - -msgid "manager.setup.information.success" -msgstr "Информациите за ова издание беа ажурирани." - -msgid "manager.setup.information.forReaders" -msgstr "За читатели" - -msgid "manager.setup.information.forLibrarians" -msgstr "За библиотекари" - -msgid "manager.setup.information.forAuthors" -msgstr "За автори" - -msgid "manager.setup.information.description" -msgstr "" -"Краток опис изданието за библиотекари и потенцијални автори и читатели. Овие " -"се достапни во страничната лента на страницата кога е додаден блокот со " -"информации." - -msgid "manager.setup.information" -msgstr "Информација" - -msgid "manager.setup.identity" -msgstr "Идентитет на изданието" - -msgid "manager.setup.preparingWorkflow" -msgstr "Чекор 3. Подготовка на работниот тек" - -msgid "manager.setup.guidelines" -msgstr "Упатства" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Чекор 1. Да се симнат деталите" - -msgid "manager.setup.generalInformation" -msgstr "Генерални информации" - -msgid "manager.setup.form.supportNameRequired" -msgstr "Задолжително е името на поддршката." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Потребна е е-пошта за поддршка." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Потребен е број на прегледувачи по поднесување." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Потребно е примарно име на контакт." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Потребна е основна е-пошта за контакт." - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "" -"ОМП се придржува до протоколот за ОМП се придржува до протоколот за Иницијатива за отворена " -"архива за берба на метаподатоци, што е новите стандарди за обезбедување " -"добро индексиран пристап до електронски истражувачки ресурси од глобална " -"скала. Авторите ќе користат сличен образец за да обезбедат метаподатоци за " -"нивно доставување. Менаџерот за издание\n" -" треба да ги избере категориите за индексирање и да ги претстави авторите со " -"релевантни примери за да им помогне во индексирањето на нивната работа, " -"одделувајќи ги поимите со полу колона (на пример, термин1; термин2). " -"Записите треба да се воведат како примери со употреба на \"На пр.\", Или \"" -"На пример\"." - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "За авторите да го индексираат своето дело" - -msgid "manager.setup.focusScopeDescription" -msgstr " ПРИМЕР ПОДАТОЦИ за HTML " - -msgid "manager.setup.focusScope" -msgstr "Фокус и опсег" - -msgid "manager.setup.focusAndScope.description" -msgstr "" -"Опишете им на авторите, читателите и библиотекарите опсегот на монографии и " -"други предмети што ќе ги објави изданието." - -msgid "manager.setup.focusAndScope" -msgstr "Фокус и обем на изданието" - -msgid "manager.setup.enableUserRegistration" -msgstr "Посетителите можат да регистрираат корисничка сметка со изданието." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "" -"Прилагодените идентификатори ќе се користат за идентификување на отисоците " -"на труд (на пр. HTML или PDF датотеки) за објавените ставки." - -msgid "manager.setup.enablePublicMonographId" -msgstr "" -"Прилагодените идентификатори ќе се користат за идентификување на објавените " -"ставки." - -msgid "manager.setup.enablePressInstructions" -msgstr "Овозможете ова издание да се појави јавно на страницата" - -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "" -"Колку објави треба да се прикажат на почетната страница. Оставете го ова " -"празно за да не се прикажува ниту еден." - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Прикажи на почетната страница" - -msgid "manager.setup.enableAnnouncements.description" -msgstr "" -"Огласи може да бидат објавени за да ги информираат читателите за новости и " -"настани. Објавените соопштенија ќе се појават на страницата Огласи." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Овозможете соопштенија" - -msgid "manager.setup.emailSignature.description" -msgstr "" -"Подготвените е-пошти што системот ги испраќа во име на изданието ќе го " -"додадат следниов потпис до крајот." - -msgid "manager.setup.emailSignature" -msgstr "Потпис" - -msgid "manager.setup.emails" -msgstr "Идентификација по е-пошта" - -msgid "manager.setup.emailBounceAddress.disabled" -msgstr "" -"За да испратите е-пошта што не може да се достават до адреса за " -"отскокнување, администраторот на страницата мора да ја овозможи опцијата " -"allow_envelope_sender во датотеката за конфигурација на " -"страницата. Може да биде потребна конфигурација на серверот, како што е " -"наведено во документацијата на OMP." - -msgid "manager.setup.emailBounceAddress.description" -msgstr "" -"Било кои е-пораки што не може да се достават, ќе резултираат со порака за " -"грешка на оваа адреса." - -msgid "manager.setup.emailBounceAddress" -msgstr "Адреса за отскокнување" - -msgid "manager.setup.editorDecision" -msgstr "Одлука за уредник" - -msgid "manager.setup.doiPrefixDescription" -msgstr "" -"Префиксот за DOI (идентификувач на дигитален објект) е доделен од CrossRef и е во формат " -"10.xxxx (на пример, 10.1234)." - -msgid "manager.setup.doiPrefix" -msgstr "Префикс на ДОИ" - -msgid "manager.setup.displayNewReleases.label" -msgstr "Нови изданија" - -msgid "manager.setup.displayNewReleases" -msgstr "Прикажете нови изданија на почетната страница" - -msgid "manager.setup.displayInSpotlight.label" -msgstr "Центар на внимание" - -msgid "manager.setup.displayInSpotlight" -msgstr "Прикажете книги во центарот на вниманието на почетната страница" - -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Избрани книги" - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Прикажете избрани книги на почетната страница" - -msgid "manager.setup.displayOnHomepage" -msgstr "Содржина на почетната страница" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "Додадете ја содржината за тековната монографија (доколку е достапна)." - -msgid "manager.setup.disciplineProvideExamples" -msgstr "Обезбедете примери на релевантни академски дисциплини за ова издание" - -msgid "manager.setup.disciplineExamples" -msgstr "" -"(На пр., Историја; Образование; Социологија; Психологија; Културни студии; " -"Право)" - -msgid "manager.setup.disciplineDescription" -msgstr "" -"Корисно е кога изданието ги преминува дисциплинските граници и / или " -"авторите доставуваат мултидисциплинарни предмети." - -msgid "manager.setup.discipline" -msgstr "Академска дисциплина и поддисциплини" - -msgid "manager.setup.disableUserRegistration" -msgstr "" -"Менаџерот за издание ќе ги регистрира сите кориснички сметки. Уредниците или " -"уредниците на одделите можат да регистрираат кориснички сметки за рецензенти." - -msgid "manager.setup.details.description" -msgstr "Име на изданието, контактите, спонзорите и моторите за пребарување." - -msgid "manager.setup.details" -msgstr "Детали" - -msgid "manager.setup.customTagsDescription" -msgstr "" -"Ознаки за заглавие на HTML кои треба да се вметнат во заглавието на секоја " -"страница (на пример, ознаки META)." - -msgid "manager.setup.customTags" -msgstr "Прилагодени ознаки" - -msgid "manager.setup.customizingTheLook" -msgstr "Чекор 5. Прилагодување на изгледот и чувството" - -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" -msgstr "" -"Сликите ќе се намалат кога се поголеми од оваа големина, но никогаш нема да " -"бидат разнесени или растегнати за да одговараат на овие димензии." - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Максимална ширина на насловната слика" - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Насловна слика Максимална висина" - -msgid "manager.setup.coverage" -msgstr "Покриеност" - -msgid "manager.setup.copyrightNotice" -msgstr "Известување за авторски права" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "" -"Инструкциите за уредници ќе бидат достапни на уредниците за репродукција, " -"авторите и уредниците на секциите во фазата на уредување на поднесувањето. " -"Подолу е зададен пакет инструкции во HTML, што може да се измени или замени " -"со Менаџерот на изданието во која било точка (во HTML или обичен текст)." - -msgid "manager.setup.copyeditInstructions" -msgstr "Инструкции за уредници" - -msgid "manager.setup.copyediting" -msgstr "Уредници" - -msgid "manager.setup.contextSummary" -msgstr "Резиме на изданието" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Вклучете какви било информации за вашто издание што може да бидат од " -"интерес за читатели, автори или рецензенти. Ова може да ја вклучува вашата " -"политика за отворен пристап, фокусот и обемот на изданието, обелоденувањето " -"на спонзорството и историјата на изданието." - -msgid "manager.setup.contextAbout" -msgstr "За изданието" - -msgid "manager.setup.appearInAboutPress" -msgstr "(Да се појави во „За изданието“) " - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "" -"Внесете какви било дополнителни информации што треба да бидат прикажани на " -"читателите на страницата Најави." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Дополнителни информации" - -msgid "manager.setup.announcementsDescription" -msgstr "" -"Објавите може да бидат објавени за да ги информираат читателите за вести и " -"настани на изданието. Објавените соопштенија ќе се појават на страницата " -"Огласи." - -msgid "manager.setup.announcements.success" -msgstr "Поставките за најавите се ажурирани." - -msgid "manager.setup.announcements" -msgstr "Најави" - -msgid "manager.setup.addSponsor" -msgstr "Додадете организација за спонзорирање" - -msgid "manager.setup.addNavItem" -msgstr "Додади ставка" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Додадете ставка да се појави во „За изданието“" - -msgid "manager.setup.addItem" -msgstr "Додади ставка" - -msgid "manager.setup.addChecklistItem" -msgstr "Додадете Ставка од списокот за проверка" - -msgid "manager.setup.addAboutItem" -msgstr "Додај За ставка" - -msgid "manager.setup.aboutItemContent" -msgstr "Содржина" - -msgid "manager.setup" -msgstr "Поставување" - -msgid "manager.pressManagement" -msgstr "Менаџмент на издание" - -msgid "user.authorization.pluginLevel" -msgstr "Немате доволно привилегии за управување со овој додаток." - -msgid "manager.system.payments" -msgstr "Плаќања" - -msgid "manager.system.readingTools" -msgstr "Алатки за читање" - -msgid "manager.system.reviewForms" -msgstr "Формулари за преглед" - -msgid "manager.system.archiving" -msgstr "Архивирање" - -msgid "manager.system" -msgstr "Системски поставки" - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"За жал, немате административни права над овој корисник. Ова може да биде " -"затоа што:\n" -"
          \n" -"
        • Корисникот е администратор на веб-страница
        • \n" -"
        • Корисникот е активен во изданија со кои не управувате
        • \n" -"
        \n" -"Оваа задача мора да ја изврши администраторот на страницата.\n" -"\t" - -msgid "manager.people.confirmDisable" -msgstr "" -"Оневозможи го овој корисник? Ова ќе спречи корисникот да се најавува во " -"системот.\n" -"\n" -"На корисникот може по избор да му дадете причина за оневозможување на " -"неговата сметка." - -msgid "manager.people.syncUserDescription" -msgstr "" -"Синхронизацијата за запишување ќе ги запише сите корисници запишани во " -"наведената улога во наведеното издание во истата улога во ова издание. Оваа " -"функција овозможува синхронизирање на заеднички сет на корисници (на пр., " -"Рецензенти) помеѓу изданијата." - -msgid "manager.people.mergeUsers.into.description" -msgstr "" -"Изберете корисник на кого ќе му се припишат авторските права на претходниот " -"корисник, задачите за уредување итн." - -msgid "manager.people.mergeUsers.from.description" -msgstr "" -"Изберете корисник за спојување во друга корисничка сметка (на пример, кога " -"некој има две кориснички сметки). Прво избраната сметка ќе се избрише и " -"нејзините поднесоци, задачи и сл. ќе се припишат на втората сметка." - -msgid "manager.people.enrollSyncPress" -msgstr "Со издание" - -msgid "manager.people.enrollExistingUser" -msgstr "Запишете постоечки корисник" - -msgid "manager.people.confirmRemove" -msgstr "" -"Да се отстрани овој корисник од ова издание? Ова дејство ќе го отпише " -"корисникот од сите улоги на ова издание." - -msgid "manager.people.allUsers" -msgstr "Сите запишани корисници" - -msgid "manager.people.allSiteUsers" -msgstr "Запишете корисник од оваа страница на ова издание" - -msgid "manager.people.allPresses" -msgstr "Сите изданија" - -msgid "manager.people.allEnrolledUsers" -msgstr "Корисници запишани на ова издание" - -msgid "manager.users.selectRole" -msgstr "Изберете ја улогата" - -msgid "manager.users.currentRoles" -msgstr "Тековни улоги" - -msgid "manager.users.availableRoles" -msgstr "Достапни улоги" - -msgid "manager.tools.statistics" -msgstr "" -"Алатки за генерирање извештаи поврзани со статистиката на употреба (преглед " -"на страница со индекс на каталог, апстрактни прегледи на страници во " -"монографија, преземања на монографии на датотеки)" - -msgid "manager.tools.importExport" -msgstr "" -"Сите алатки специфични за увоз и извоз на податоци (изданија, монографии, " -"корисници)" - -msgid "manager.tools" -msgstr "Алатки" - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "" -"Детални резултати според типот на објектот (притиснете, серија, монографија, " -"типови на датотеки) и / или по еден или повеќе идентификации на објектот." - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Детални резултати по контекст (серија и / или монографија)." - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Прегледи на главната страница на изданието" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Прегледи на главната страница во серијата" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Апстракт од монографија и преземања" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Монографија апстрактни прегледи на страници" - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Преземања на монографски датотеки" - -msgid "manager.settings.distributionDescription" -msgstr "" -"Сите поставки специфични за процесот на дистрибуција (известување, " -"индексирање, архивирање, плаќање, алатки за читање)." - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "Ова не е важечки Тип на код на издавач." - -msgid "manager.settings.publisherCodeType" -msgstr "Тип на код на издавач" - -msgid "manager.settings.publisherCode" -msgstr "Код на издавач" - -msgid "manager.settings.location" -msgstr "Географска локација" - -msgid "manager.settings.publisher" -msgstr "Име на издавач на издание" - -msgid "manager.settings.publisher.identity.description" -msgstr "" -"Овие полиња се обврзани да објавуваат валидни\n" -"ONIX metadata." - -msgid "manager.settings.publisher.identity" -msgstr "Идентитет на издавач" - -msgid "manager.settings.press" -msgstr "Издание" - -msgid "manager.settings.pressSettings" -msgstr "Поставки за издание" - -msgid "manager.settings" -msgstr "Поставки" - -msgid "manager.payment.success" -msgstr "Поставките за плаќање се ажурирани." - -msgid "manager.payment.options.enablePayments" -msgstr "" -"Плаќањата ќе бидат овозможени за ова издание. Имајте на ум дека од " -"корисниците ќе се бара да се најават за да извршат плаќања." - -msgid "manager.payment.generalOptions" -msgstr "Општи опции" - -msgid "manager.series.confirmDeactivateSeries.error" -msgstr "" -"Барем една серија мора да биде активна. Посетете ги поставките за работниот " -"тек за да ги оневозможите сите поднесоци на ова издание." - -msgid "manager.series.restricted" -msgstr "Не дозволувајте авторите да поднесуваат директно до оваа серија." - -msgid "manager.series.seriesTitle" -msgstr "Наслов на серијата" - -msgid "manager.series.existingUsers" -msgstr "Постоечки корисници" - -msgid "manager.series.noneCreated" -msgstr "Ниту една серија не е создадена." - -msgid "manager.series.form.titleRequired" -msgstr "Потребен е наслов за серијата." - -msgid "manager.series.form.abbrevRequired" -msgstr "Потребен е скратен наслов за серијата." - -msgid "manager.series.unassigned" -msgstr "Достапни уредници на серии" - -msgid "manager.series.hideAbout" -msgstr "Остави ја оваа серија од За изданието." - -msgid "manager.series.seriesEditorInstructions" -msgstr "" -"Додадете уредник на серии во оваа серија од достапните уредници на серии. " -"Откако ќе се додаде, назначете дали Уредувачот на серии ќе го надгледува " -"РЕВИЗИЈА (рецензија) и / или УРЕДУВА (копирање, распоред и лекторирање) на " -"поднесоците до оваа серија. Уредниците на сериите се создаваат со кликнување " -"на Уредувачи на серии под Улоги во " -"Менаџмент на изданието." - -msgid "manager.series.assigned" -msgstr "Уредници за оваа серија" - -msgid "manager.series.policy" -msgstr "Опис на серијата" - -msgid "manager.series.create" -msgstr "Креирај серии" - -msgid "manager.series.book" -msgstr "Серија книги" - -msgid "manager.series.disableComments" -msgstr "Оневозможете ги коментарите на читателите за оваа серија." - -msgid "manager.series.abstractsNotRequired" -msgstr "Не бара апстракти" - -msgid "manager.series.submissionsToThisSection" -msgstr "Поднесоци поднесени до оваа серија" - -msgid "manager.series.submissionReview" -msgstr "Нема да биде рецензиран од рецензенти" - -msgid "manager.series.readingTools" -msgstr "Алатки за читање" - -msgid "manager.series.confirmDelete" -msgstr "Дали сте сигурни дека сакате трајно да ја избришете оваа серија?" - -msgid "manager.series.editorRestriction" -msgstr "Предметите можат да ги доставуваат уредници и уредници на серии." - -msgid "manager.setup.pageHeaderDescription" -msgstr "-" diff --git a/locale/mk_MK/submission.po b/locale/mk_MK/submission.po deleted file mode 100644 index 664495b95db..00000000000 --- a/locale/mk_MK/submission.po +++ /dev/null @@ -1,505 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-10 20:52+0000\n" -"Last-Translator: Ivan Lazarevski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.round" -msgstr "Round {$round}" - -msgid "submission.queries.production" -msgstr "Продукциска дискусија" - -msgid "publication.version.details" -msgstr "Детали за издание за верзија {$version}" - -msgid "publication.unschedule.confirm" -msgstr "Дали сте сигурни дека не сакате да закажете објавување?" - -msgid "publication.unpublish.confirm" -msgstr "Дали сте сигурни дека не сакате ова да биде објавено?" - -msgid "publication.unpublish" -msgstr "Повлечи објава" - -msgid "submission.copyrightOther.description" -msgstr "Додели авторски права за поднесок на следната странка." - -msgid "submission.copyrightHolder.description" -msgstr "" -"Авторските права ќе бидат автоматски доделени на {$copyright} кога текстот " -"ќе биде објавен." - -msgid "submission.license.description" -msgstr "" -"Лиценцата ќе биде автоматски поставена на {$licenseName} кога текстот ќе биде објавен." - -msgid "publication.required.reviewStage" -msgstr "" -"Поднесокот мора да ги помине фазите на измена на копија или продукција пред " -"да биде објавен." - -msgid "publication.required.declined" -msgstr "Одбиениот поднесок не може да биде објавен." - -msgid "publication.publish.requirements" -msgstr "Следните услови мораат да бидат исполнети пред текстот да биде објавен." - -msgid "publication.publish" -msgstr "Објави" - -msgid "publication.invalidSubmission" -msgstr "Поднесокот за ова издание не е пронајден." - -msgid "publication.event.versionUnpublished" -msgstr "Верзијата е повлечена." - -msgid "publication.event.versionScheduled" -msgstr "Нова верзија е закажана за објавување." - -msgid "publication.event.versionPublished" -msgstr "Објавена е нова верзија." - -msgid "publication.event.unpublished" -msgstr "Поднесокот беше повлечен." - -msgid "publication.event.scheduled" -msgstr "Поднесокот е закажан за објавување." - -msgid "publication.event.published" -msgstr "Поднесокот беше објавен." - -msgid "publication.editDisabled" -msgstr "Оваа верзија ќе биде издадена и не може да биде изменета." - -msgid "publication.datePublished" -msgstr "Датум на издавање" - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "" -"Авторската година ќе биде поставена автоматски врз основа на датумот на " -"објавување." - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Авторската година ќе се постави автоматски кога текстот ќе биде објавен во " -"издание." - -msgid "submission.publications" -msgstr "Изданија" - -msgid "publication.status.unscheduled" -msgstr "Незакажано" - -msgid "submission.status.scheduled" -msgstr "Закажано" - -msgid "publication.status.published" -msgstr "Издадено" - -msgid "submission.publication" -msgstr "Издание" - -msgid "publication.scheduledIn" -msgstr "Закажано за издавање во {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "" -"Сите барања за објавување се исполнети. Дали сакате да го објавите овој внес " -"во каталогот?" - -msgid "publication.publishedIn" -msgstr "Издадено во {$issueName}." - -msgid "publication.required.issue" -msgstr "" -"Публикацијата мора да биде доделена на издание пред да може да се објави." - -msgid "publication.inactiveSeries" -msgstr "{$series} (Неактивна)" - -msgid "publication.invalidSeries" -msgstr "Серијалот за ова издание не е пронајден." - -msgid "publication.catalogEntry.success" -msgstr "Деталите за овој внес во каталогот беа ажурирани." - -msgid "publication.catalogEntry" -msgstr "Внес во каталог" - -msgid "catalog.browseTitles" -msgstr "{$numTitles} Наслови" - -msgid "submission.list.viewEntry" -msgstr "Разгледај внес" - -msgid "submission.list.saveFeatureOrder" -msgstr "Зачувај нарачка" - -msgid "submission.list.orderingFeaturesSection" -msgstr "" -"Со помош на влечење или притискање на копчињата можете да го промените " -"редоследот на карактеристики на {$title}." - -msgid "submission.list.orderingFeatures" -msgstr "" -"Со помош на влечење или притискање на копчињата можете да го промените " -"редоследот на карактеристики на почетната страница." - -msgid "submission.list.orderFeatures" -msgstr "Карактеристики на нарачката" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} од {$total} монографи" - -msgid "submission.list.countMonographs" -msgstr "{$count} монографи" - -msgid "submission.list.monographs" -msgstr "Монографи" - -msgid "section.any" -msgstr "Било кој серијал" - -msgid "submission.metadataDescription" -msgstr "" -"Овие спецификации се засноваат на Dublin Core сетот од метаподатоци, " -"интернационален стандард за опис на содржина на издаваштво." - -msgid "submission.dependentFiles" -msgstr "Зависни датотеки" - -msgid "submission.upload.fileContents" -msgstr "Компонента на поднесок" - -msgid "workflow.review.externalReview" -msgstr "Надворешна контрола" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Испрати на надворешна контрола" - -msgid "submission.submit.titleAndSummary" -msgstr "Наслов и кратка содржина" - -msgid "submission.event.publicationFormatRemoved" -msgstr "Форматот на издавање \"{$formatName}\" беше отстранет." - -msgid "submission.event.publicationFormatCreated" -msgstr "Форматот на издавање со име \"{$formatName}\" беше креиран." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "" -"Метаподатоците за форматот на издавање \"{$publicationFormatName}\" беа " -"ажурирани." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Метаподатоците за каталогот беа ажурирани." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "Форматот \"{$publicationFormatName}\" повеќе не е објавен." - -msgid "submission.event.publicationFormatPublished" -msgstr "Форматот \"{$publicationFormatName}\" е одобрен за издавање." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Форматот на издавање \"{$publicationFormatName}\" е недостапен." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Форматот на издавање \"{$publicationFormatName}\" е достапен." - -msgid "submission.event.metadataUnpublished" -msgstr "Метаподатоците на монографот повеќе не се објавени." - -msgid "submission.event.metadataPublished" -msgstr "Метаподатоците на монографот се одобрени за издавање." - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Формат на издавање" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Каталог" - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Монограф" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Секое поглавје може да има свој датум на издавање." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "" -"Датумот на издавање на монографот истовремено е датум на издавање на сите " -"поглавја." - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Датуми на издавање" - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Разгледај го поднесокот" - -msgid "submission.catalogEntry.isAvailable" -msgstr "Овој монограф е спремен за внес во јавниот каталог." - -msgid "submission.catalogEntry.confirm.required" -msgstr "Потврдете дека поднесокот може да биде внесен во каталогот." - -msgid "submission.catalogEntry.confirm" -msgstr "Додај ја оваа книга во јавниот каталог" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "Одберете барем еден монограф кој ќе биде додаден во каталогот." - -msgid "submission.catalogEntry.select" -msgstr "Одбери монографи и додади ги во каталогот" - -msgid "submission.catalogEntry.add" -msgstr "Додај го изборот во каталогот" - -msgid "submission.catalogEntry.new" -msgstr "Додади внес" - -msgid "submission.editCatalogEntry" -msgstr "Внес" - -msgid "submission.incomplete" -msgstr "Чека одобрување" - -msgid "submission.complete" -msgstr "Одобрено" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Избриши го изменетиот прилог" - -msgid "grid.chapters.title" -msgstr "Поглавја" - -msgid "submission.submit.noContext" -msgstr "Изданието на поднесокот не беше пронајдено." - -msgid "submission.submit.userGroupDescription" -msgstr "" -"Доколку поднесувате изменет том, потребно да одберете улога на уредник на " -"томот." - -msgid "submission.submit.userGroup" -msgstr "Поднеси ја мојата улога..." - -msgid "submission.submit.placement" -msgstr "Позиција на поднесокот" - -msgid "submission.submit.checklistErrors" -msgstr "" -"Прочитајте и проверете ги ставките во списокот. Останаа {$ itemsRemain} " -"предмети кои не се избрани." - -msgid "submission.submit.whatNext.description" -msgstr "" -"Печатот е известен за вашиот поднесок, и ви е испратен email за потврда. " -"Уредникот ќе ве контактира откако ќе го разгледа поднесокот." - -msgid "submission.submit.generalInformation" -msgstr "Главни информации" - -msgid "submission.submit.coverNote" -msgstr "Насловна белешка до уредникот" - -msgid "submission.submit.nextSteps" -msgstr "Следен чекор" - -msgid "submission.submit.confirmation" -msgstr "Потврда" - -msgid "submission.submit.finishingUp" -msgstr "Завршница" - -msgid "submission.submit.metadata" -msgstr "Метаподатоци" - -msgid "submission.submit.catalog" -msgstr "Каталог" - -msgid "submission.submit.prepare" -msgstr "Подготовка" - -msgid "submission.submit.submissionFile" -msgstr "Поднесок" - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Одберете улога на соработник." - -msgid "submission.submit.form.abstractRequired" -msgstr "Внесете кратка содржина на вашиот монограф." - -msgid "submission.submit.form.titleRequired" -msgstr "Внесето го насловот на вашиот монограф." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Името, презимето и email адресата на секој автор се задолжителни." - -msgid "submission.submit.form.authorRequired" -msgstr "Потребен е барем еден автор." - -msgid "submission.submit.contributorRole" -msgstr "Улога на соработник" - -msgid "submission.submit.privacyStatement" -msgstr "Изјава за приватност" - -msgid "submission.submit.form.localeRequired" -msgstr "Одберете јазик на поднесок." - -msgid "submission.submit.seriesPosition.description" -msgstr "Примери: Книга 2, Том 2" - -msgid "submission.submit.seriesPosition" -msgstr "Позиција на серијалот" - -msgid "author.submit.seriesRequired" -msgstr "Потребен е валиден серијал." - -msgid "author.isVolumeEditor" -msgstr "Идентификувајте го овој соработник како уредник на овој том." - -msgid "submission.submit.selectSeries" -msgstr "Одберете серијал (незадолжително)" - -msgid "submission.submit.cancelSubmission" -msgstr "" -"Овој поднесок можете да го завршите на подоцнежен датум со избирање Активни " -"поднесоци од страницата на авторот." - -msgid "submission.submit.upload" -msgstr "Прикачи поднесок" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Нов поднесок" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Започни нов поднесок" - -msgid "submission.submit" -msgstr "Започни нова книга" - -msgid "grid.action.deleteChapter" -msgstr "Избриши го ова поглавје" - -msgid "grid.action.editChapter" -msgstr "Измени го ова поглавје" - -msgid "grid.action.addChapter" -msgstr "Креирај ново поглавје" - -msgid "submission.supportingAgencies" -msgstr "Споредни агенции" - -msgid "submission.metadata" -msgstr "Метаподатоци" - -msgid "submission.confirmSubmit" -msgstr "Дали сакате да го поднесете овој текст?" - -msgid "manuscript.submissions" -msgstr "Поднесоци на ракописен текст" - -msgid "submissions.queuedReview" -msgstr "На преглед" - -msgid "manuscript.submission" -msgstr "Поднеси ракописен текст" - -msgid "submission.sharing" -msgstr "Сподели" - -msgid "submission.download" -msgstr "Превземи" - -msgid "submission.proofs" -msgstr "Проверки" - -msgid "submission.publicationFormats" -msgstr "Формати на издавање" - -msgid "submission.copyedit" -msgstr "Измени копија" - -msgid "submission.chapter.pages" -msgstr "Страници" - -msgid "submission.chapter.editChapter" -msgstr "Измени поглавје" - -msgid "submission.chapter.addChapter" -msgstr "Додади поглавје" - -msgid "submission.chaptersDescription" -msgstr "" -"Тука можете да ги наведете поглавјата и да доделите соработници од списокот " -"на соработници. Овие соработници ќе имаат пристап до поглавјето во различни " -"фази од процесот на објавување." - -msgid "submission.chapters" -msgstr "Поглавја" - -msgid "submission.chapter" -msgstr "Поглавје" - -msgid "submission.artwork.permissions" -msgstr "Одобренија" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.fairCopy" -msgstr "Пречистен текст" - -msgid "submission.published" -msgstr "Подготвено за производство" - -msgid "submission.monograph" -msgstr "Монограф" - -msgid "submission.editorName" -msgstr "{$имеНаУредник} (ed)" - -msgid "submission.workflowType.change" -msgstr "Измена" - -msgid "submission.workflowType.authoredWork" -msgstr "Монограф: Авторите се поврзани со книгата во целост." - -msgid "submission.workflowType.editedVolume" -msgstr "Изменет том: Авторите се поврзани со сопственото поглавје." - -msgid "submission.workflowType.editedVolume.label" -msgstr "Изменет том" - -msgid "submission.workflowType.description" -msgstr "" -"Монограф е дело напишано од еден или повеќе автори. Изменетиот том има " -"различни автори за секое поглавје. (Деталите за поглавјето се внесуваат " -"подоцна.)" - -msgid "submission.workflowType" -msgstr "Тип на поднесок" - -msgid "submission.synopsis" -msgstr "Краток преглед" - -msgid "submission.select" -msgstr "Одберете поднесок" - -msgid "submission.title" -msgstr "Наслов на книгата" - -msgid "submission.upload.selectComponent" -msgstr "Одберете компонента" - -msgid "submission.submit.title" -msgstr "Поднесете монограф" diff --git a/locale/nb/admin.po b/locale/nb/admin.po new file mode 100644 index 00000000000..f2b19f88c10 --- /dev/null +++ b/locale/nb/admin.po @@ -0,0 +1,195 @@ +# Eirik Hanssen , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Tilknyttede utgivere" + +msgid "admin.settings.appearance.success" +msgstr "Innstillingene for nettstedets utseende har blitt oppdatert." + +msgid "admin.settings.config.success" +msgstr "Konfigurasjonsinnstillingene for nettstedet har blitt oppdatert." + +msgid "admin.settings.info.success" +msgstr "Nettstedsinformasjonen har blitt oppdatert." + +msgid "admin.settings.redirect" +msgstr "Forlagsomdirigering" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Forespørsler til hovedsiden vil bli omdirigert til denne utgiveren. Dette " +"kan være nyttig hvis nettstedet bare er vert for en enkelt utgiver." + +msgid "admin.settings.noPressRedirect" +msgstr "Omdiriger ikke" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Dette vil bli standard språk for nettstedet og alle de utgiverne det er vert " +"for." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Velg alle språkpakkene som nettstedet skal støtte. De valgte språkpakkene " +"vil bli tilgjengelig til bruk for alle utgiverne som nettstedet er vert for. " +"De vil også bli vist i en språkvalgmeny som vil vises på hver nettstedside (" +"men som kan overstyres på utgiverspesifikke sider). Hvis flere språkpakker " +"ikke er valgt, vil språkvekslingsmenyen ikke bli vist og utvidede " +"språkinnstillinger ikke være tilgjengelig for utgivere." + +msgid "admin.locale.maybeIncomplete" +msgstr "De merkede språkpakkefilene kan være ukomplette." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Er du sikker på at du vil avinstallere denne språkpakken? Dette kan påvirke " +"alle lokale utgivere som for tiden bruker språkpakken." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Velg øvrige språkpakker å installere støtte for i dette systemet. " +"Språkpakkene må være installert før de kan brukes av lokale tidsskrift. " +"Konsulter OMP-dokumentasjonen for informasjon om å legge til støtte for " +"flere språk." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Er du sikker på at du vil skru av denne språkpakken? Dette kan gå ut over " +"utgivere som bruker den." + +msgid "admin.systemVersion" +msgstr "OMP-versjon" + +msgid "admin.systemConfiguration" +msgstr "OMP-konfigurasjon" + +msgid "admin.presses.pressSettings" +msgstr "Utgiverinnstillinger" + +msgid "admin.presses.noneCreated" +msgstr "Ingen utgivere har blitt opprettet." + +msgid "admin.contexts.create" +msgstr "Opprett utgiver" + +msgid "admin.contexts.form.titleRequired" +msgstr "Du må legge inn en tittel." + +msgid "admin.contexts.form.pathRequired" +msgstr "Du må legge inn en filsti." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Filstien kan bare inneholde bokstaver, tall, understrek og bindestrek, og må " +"begynne og slutte med en bokstav eller et tall." + +msgid "admin.contexts.form.pathExists" +msgstr "Den valgte filstien er allerede tatt i bruk av en annen utgiver." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "Standardspråket må være et av språkene som er støttet av utgiveren." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} ble oprettet." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} ble redigert." + +msgid "admin.contexts.contextDescription" +msgstr "Utgiverbeskrivelse" + +msgid "admin.presses.addPress" +msgstr "Legg til utgiver" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

        OBS!

        \n" +"

        Systemet kunne ikke automatisk overskrive konfigurasjonsfilen. For å " +"endre konfigurasjonen må du åpne config.inc.php i et egnet " +"tekstbehandlingsprogram, og erstatte innholdet i den med innholdet i " +"tekstfeltet nedenfor.

        " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Velg utgiverne som skal få mulighet til masseutsendelse av e-post. Når denne " +"funksjonen er aktivert, kan en forlagssjef sende ut en e-post til alle " +"brukere som er registrert hos utgiveren.

        Misbruk av denne " +"funksjonen hvor uønskede e-postser sendes ut kan være i strid med anti-spam " +"lover i noen rettsområder og kan føre til at din e-postserver blokkeres som " +"spam. Søk teknisk rådgivning før du aktiverer denne funksjonen og sørg for " +"at forlagssjefene bruker denne funksjonen på rett måte.

        Ytterligere " +"begrensninger av denne funksjonen kan aktiveres for hver utgiver med " +"innstillingene i listen over utivere på " +"plattformen." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"En forlagssjef kan ikke sende ut masseutsendte e-poster til rollene som er " +"valgt nedenfor. Bruk denne innstillignen til å begrense misbruk av e-" +"postnotisfunksjonen. For eksempel kan det være mer sikkert å deaktivere " +"masseutsendelse av e-post til lesere, forfattere eller andre store " +"brukergrupper som ikke har gitt samtykke til å motta slike e-poster.

        Funksjonen masseutsendelse av e-post kan deaktiveres fullstendig for denne " +"utgiveren under Admin > " +"Nettstedsinnstillinger." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Masseutsending av e-post er deaktivert for denne utgiveren. Aktiver denne " +"funksjonen i Admin > " +"Nettstedsinnstillinger." + +msgid "admin.siteManagement.description" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +#~ msgid "admin.languages.downloadUnavailable" +#~ msgstr "" +#~ "

        For øyeblikket er det dessverre ikke mulig å laste ned språkpakkene " +#~ "fra webserveren hos Public Knowledge Project, fordi:

        \n" +#~ "\t
          \n" +#~ "\t\t
        • Din server har ikke eller tillater ikke bruk av GNU tar-" +#~ "funksjonen
        • \n" +#~ "\t\t
        • OJS klarer ikke å modifisere registerfilen for språkpakken, som " +#~ "vanligvis heter «registry/locales.xml».
        • \n" +#~ "\t
        \n" +#~ "

        Språkpakkene kan lastes ned manuelt fra PKP-nettstedet.

        " + +#~ msgid "admin.languages.downloadFailed" +#~ msgstr "" +#~ "Noe gikk galt med nedlastingen av oversatte språkapakker. Se " +#~ "feilmeldingen(e) nedenfor." + +#~ msgid "admin.languages.noLocalesToDownload" +#~ msgstr "Ingen språkpakker er tilgjengelig for nedlasting." + +#, fuzzy +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Bruk nettsiden som plattform for alle tidsskrifter." diff --git a/locale/nb/api.po b/locale/nb/api.po new file mode 100644 index 00000000000..1e5ddafb1f2 --- /dev/null +++ b/locale/nb/api.po @@ -0,0 +1,42 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-30 13:53+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Du må legge inn en eller flere innleverings ID-er som skal bli lagt til " +"katalogen." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "En eller flere av innleveringene ble ikke funnet." + +msgid "api.submissions.400.wrongContext" +msgstr "" + +msgid "api.emails.403.disabled" +msgstr "E-post utsending har ikke blitt aktiverrt for denne utgiveren." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"Du har ikke tillatelse til å flytte denne e-postmalen til en annen utgiver." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "Publikasjonen du ba om er ikke tilgjengelig fra denne utgiveren." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "Publikasjonen du ba om er ikke en del av denne innleveringen." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Du kan ikke endre utgiver for en innlevering." + +msgid "api.submission.400.inactiveSection" +msgstr "" diff --git a/locale/nb/author.po b/locale/nb/author.po new file mode 100644 index 00000000000..e8ecdbfd31d --- /dev/null +++ b/locale/nb/author.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-20 14:50+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "author.submit.notAccepting" +msgstr "Denne utgiveren tar for øyeblikket ikke imot innleveringer." + +msgid "author.submit" +msgstr "" diff --git a/locale/nb/default.po b/locale/nb/default.po new file mode 100644 index 00000000000..374de71206a --- /dev/null +++ b/locale/nb/default.po @@ -0,0 +1,191 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-05 09:46+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "default.genres.appendix" +msgstr "Appendiks" + +msgid "default.genres.bibliography" +msgstr "Bibliografi" + +msgid "default.genres.manuscript" +msgstr "Bokmanuskript" + +msgid "default.genres.chapter" +msgstr "Kapittelmanuskript" + +msgid "default.genres.glossary" +msgstr "Ordliste" + +msgid "default.genres.index" +msgstr "Indeks" + +msgid "default.genres.preface" +msgstr "Forord" + +msgid "default.genres.prospectus" +msgstr "Prospekt" + +msgid "default.genres.table" +msgstr "Tabell" + +msgid "default.genres.figure" +msgstr "Figur" + +msgid "default.genres.photo" +msgstr "Foto" + +msgid "default.genres.illustration" +msgstr "Illustrasjon" + +msgid "default.genres.other" +msgstr "Andre" + +msgid "default.groups.name.manager" +msgstr "Redaksjonsleder" + +msgid "default.groups.plural.manager" +msgstr "Redaksjonsledere" + +msgid "default.groups.abbrev.manager" +msgstr "RL" + +msgid "default.groups.name.editor" +msgstr "Redaktør" + +msgid "default.groups.plural.editor" +msgstr "Redaktører" + +msgid "default.groups.abbrev.editor" +msgstr "Red" + +msgid "default.groups.name.sectionEditor" +msgstr "Serieredaktør" + +msgid "default.groups.plural.sectionEditor" +msgstr "Serieredaktører" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "SRed" + +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + +msgid "default.groups.name.chapterAuthor" +msgstr "Kapittelforfatter" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Kapittelforfattere" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "KF" + +msgid "default.groups.name.volumeEditor" +msgstr "Volumredaktør" + +msgid "default.groups.plural.volumeEditor" +msgstr "Volumredaktører" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "VR" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

        Navn og e-postadresser som er lagt ut på denne utgiverens nettsted, vil " +"kun brukes til de formål som er oppgitt av utgiveren, og vil ikke bli gjort " +"tilgjengelig for noe annet formål eller for noen annen part.

        " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Denne utgiveren gir øyeblikkelig åpen tilgang til innholdet sitt basert på " +"prinsippet om å gjøre forskning fritt tilgjengelig for publikum for å støtte " +"en større global kunnskapsutveksling." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Vi oppfordrer leserne til å registrere seg for nyhetstjenesten vedrørende " +"publikasjoner fra denne utgiveren. Bruk Registrer-lenken øverst på utgiverens nettsted. Denne " +"registreringen betyr at leseren mottar innholdsfortegnelsen fra hver nye " +"monografi på e-post. Denne listen lar også utgiveren hevde å ha et visst " +"nivå av støtte eller et visst antall lesere. Se forlagets " +"personvernerklæring , som garanterer leserne at navn og e-postadresser " +"ikke blir brukt for andre formål." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Er du interessert i å sende inn en innlevering til denne utgiveren? Vi " +"anbefaler at du går gjennom siden Om utgiveren , der du finner retningslinjene for utgiverens " +"seksjoner, samt Retningslinjer for forfattere. Forfattere " +"må registrere seg " +"for utgiveren før de kan sende inn en innlevering. Hvis de allerede er " +"logget på, kan de ganske enkelt logge " +"på og begynne 5-trinnsprosessen." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Vi oppfordrer forskningsbibliotekarer til å katalogisere dette forlaget på " +"listen over bibliotekets beholdning av elektroniske utgivere. Denne " +"utgiverens open source-publiseringssystem er også egnet for biblioteker, som " +"kan være vert for fakultetsmedlemmene som deretter kan bruke det til " +"utgiverne de hjelper til med å redigere (se Open Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Ekstern fagfelle" + +msgid "default.groups.plural.externalReviewer" +msgstr "Eksterne fagfeller" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "EF" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Teksten oppfyller de stilistiske og bibliografiske kravene som er angitt " +#~ "i Forfatterveiledninger under 'Om utgiveren '." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Teksten er skrevet uten ekstra linjeavstand; bruker en 12-punkts font; " +#~ "bruker kursiv i stedet for å understreke (unntatt URL-er); og alle " +#~ "illustrasjoner, figurer og tabeller er plassert i teksten på de aktuelle " +#~ "stedene i stedet for på slutten." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "Der det er tilgjengelig, oppgis URL-er til referansene." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Innleveringsfilen er i Microsoft Word, RTF eller OpenDocument filformat." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Innleveringen er ikke tidligere publisert, og den er heller ikke sendt " +#~ "til gjennomgang til en annen utgiver (eller så er redegjørelse gitt i " +#~ "kommentarfeltet til redaktøren)." diff --git a/locale/nb/editor.po b/locale/nb/editor.po new file mode 100644 index 00000000000..762cbee9610 --- /dev/null +++ b/locale/nb/editor.po @@ -0,0 +1,206 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-20 02:01+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Arkiv" + +msgid "editor.monograph.cancelReview" +msgstr "Avbryt forespørslen" + +msgid "editor.monograph.clearReview" +msgstr "Fjern fagfelle" + +msgid "editor.monograph.enterRecommendation" +msgstr "Legg inn anbefaling" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Legg inn fagfellens anbefaling" + +msgid "editor.monograph.recommendation" +msgstr "Anbefaling" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Velg en fagfelle ovenfor, og trykk deretter på \"velg faglfelle\"-knappen " +"for å fortsette." + +msgid "editor.monograph.replaceReviewer" +msgstr "Erstatt fagfelle" + +msgid "editor.monograph.editorToEnter" +msgstr "Redaktør legger inn anbefaling/kommentarer fra fagfelle" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Last opp fagfellevurdering" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Fagfellevurderingsalternativer" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Korrekturlesningsfiler" + +msgid "editor.monograph.internalReview" +msgstr "Start intern fagfellevurdering" + +msgid "editor.monograph.internalReviewDescription" +msgstr "Velg filer nedenfor for å sende til det interne vurderingsteget." + +msgid "editor.monograph.externalReview" +msgstr "Start ekstern fagfellevurdering" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Velg endelige utkast til filer" + +msgid "editor.monograph.final.currentFiles" +msgstr "Siste utkast" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Nyeste filer" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Melding til bruker" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Innleveringshandlinger" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Generelle innleveringshandlinger og alternativer." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Seksjonshandlinger" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Valgmuligheter som er spesifikke for en gitt seksjon, for eksempel å laste " +"opp filer eller legge til brukere." + +msgid "editor.monograph.legend.itemActions" +msgstr "Objekthandlinger" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Handlinger og innstillinger som er spesifikke for en enkelt fil." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Se og administrer innleveringens katalogoppføring, inkludert metadata og " +"publiseringsformater" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Se og administrer metadata for innlevering, notater, varsler og historikk" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Se og administrer deltakere som deltar i denne innleveringen: forfattere, " +"redaktører, designere m.m." + +msgid "editor.monograph.legend.add" +msgstr "Last opp en fil til seksjonen" + +msgid "editor.monograph.legend.add_user" +msgstr "Legg til en bruker til seksjonen" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Se og få tilgang til objektinnstillinger, f.eks. informasjon og " +"slettingsalternativer" + +msgid "editor.monograph.legend.more_info" +msgstr "Mer informasjon: filmerknader varslingsinnstillinger og historikk" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Filinformasjon: merknader, varslingsinnstillinger og historikk (Ingen " +"merknader lagt til ennå)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Filinformasjon: merknader, varslingsinnstillinger og historikk (Merknader er " +"tilgjengelige)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Filinformasjon: merknader, varslingsinnstillinger og historikk (Nye " +"merknader lagt til siden forrige besøk)" + +msgid "editor.monograph.legend.edit" +msgstr "Redigere objekt" + +msgid "editor.monograph.legend.delete" +msgstr "Slett objekt" + +msgid "editor.monograph.legend.in_progress" +msgstr "Handlingen pågår eller er ikke fullført ennå" + +msgid "editor.monograph.legend.complete" +msgstr "Handlingen er avsluttet" + +msgid "editor.monograph.legend.uploaded" +msgstr "Fil lastet opp av rollen som er nevnt i tabelloversiktens tittelfelt" + +msgid "editor.submission.introduction" +msgstr "" +"Under innlevering velger redaktøren, etter gjennomgang av de innsendte " +"filene, den riktige handlingen (som inkluderer melding til forfatteren): " +"Send til intern vurdering (innebærer valg av filer for intern gjennomgang); " +"Send inn for ekstern vurdering (innebærer valg av filer for ekstern " +"vurdering); Godta innlevering (innebærer valg av filer for redaksjonelt " +"trinn); eller Avvis innlevering (arkivlagring)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Språkvasket kopi" + +msgid "editor.monograph.proofs" +msgstr "Korrektur" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Godkjenning og publisering" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Ulike publikasjonsformater, som innbundet, paperback og digital, kan lastes " +"opp i delen for publikasjonsformater nedenfor. Du kan bruke oppsett for " +"publikasjonsformat nedenfor som en sjekkliste over hva som fortsatt må " +"gjøres for å publisere et publikasjonsformat." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Legg til publikasjonsformater (f.eks. Digital, paperback) slik at " +"layouteditoren kan sette opp korrekturleser. Rettelser må " +"kontrolleres som godkjent, og Katalog-oppføringen for formatet må " +"kontrolleres som angitt i bokens katalogoppføring før et format kan gjøres " +" Tilgjengelig (dvs. publisert)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Legg inn vilkår for nedlasting" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Legg inn vilkår" + +msgid "editor.monograph.proof.addNote" +msgstr "Legg til svar" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Filer som allerede er lastet opp til innlevering, uansett stadie, kan bli " +"lagt til listen for korrekturlesing ved å krysse av «Inkluder» under og " +"klikke «Søk». Alle tilgjengelige filer vil bli listet opp som alternativer." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Denne offentlige identifikatoren {$publicIdentifier} finnes allerede for et " +"objekt av samme type. Velg unike identifikatorer for samme type objekter fra " +"utgiveren din." + +msgid "editor.submissions.assignedTo" +msgstr "Oppnevnt for" diff --git a/locale/nb/emails.po b/locale/nb/emails.po new file mode 100644 index 00000000000..df874173895 --- /dev/null +++ b/locale/nb/emails.po @@ -0,0 +1,462 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-05 09:46+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Bekreft tilbakestilling av passord" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Vi har mottatt en forespørsel om å tilbakestille passordet ditt for " +"nettstedet {$siteTitle}.
        \n" +"
        \n" +"Hvis du ikke selv sendte denne forespørselen, kan du ignorere denne e-" +"postadressen, og passordet ditt vil ikke bli endret. Klikk på URL-en " +"nedenfor for å endre passordet.
        \n" +"
        \n" +"Tilbakestill passordet mitt: {$passwordResetUrl}
        \n" +"
        \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Registrering hos utgiver" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
        \n" +"
        \n" +"Du er nå registrert som bruker hos {$contextName}. Vi har tatt med " +"brukernavnet og passordet ditt i denne e-posten. Dette må brukes i " +"forbindelse med arbeidet rundt forlagets nettsider. Du kan når som helst be " +"om å bli fjernet fra brukerlisten ved å kontakte meg.
        \n" +"
        \n" +"Brukernavn: {$recipientUsername}
        \n" +"Passord: {$password}
        \n" +"
        \n" +"Tusen takk,
        \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "" + +msgid "emails.userValidateContext.body" +msgstr "" + +msgid "emails.userValidateSite.subject" +msgstr "" + +msgid "emails.userValidateSite.body" +msgstr "" + +msgid "emails.reviewerRegister.subject" +msgstr "Registrering som fagfelle på {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Basert på din ekspertise har vi tatt oss friheten til å registrere navnet " +"ditt i {$contextName} rangeringsdatabasen. Dette krever ingen forpliktelse " +"fra din side, men lar oss bare kontakte deg angående en mulig gjennomgang av " +"en innlevering. Hvis du blir invitert til å foreta en fagfellevurdering, vil " +"du ha muligheten til å se tittelen og et sammendrag av innleveringen, og du " +"vil alltid kunne godta eller avvise invitasjonen. Du kan også når som helst " +"be om at navnet ditt blir fjernet fra listen over fagfeller.
        \n" +"
        \n" +"Vi gir deg et brukernavn og passord som skal brukes i forbindelse med alle " +"interaksjoner med utgiveren via utgiverens nettside. Du kan f.eks. be om å " +"få oppdatert profilen din, inkludert dine interesser.
        \n" +"
        \n" +"Brukernavn: {$recipientUsername}
        \n" +"Passord: {$password}
        \n" +"
        \n" +"Takk skal du ha.
        \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Redaksjonelt oppdrag" + +msgid "emails.editorAssign.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Som seksjonsredaktør har du fått tildelt innelveringen "" +"{$submissionTitle}," som er sendt til {$contextName} og som du skal " +"følge gjennem den redaksjonelle prosessen..
        \n" +"
        \n" +"Innleveringens URL: {$submissionUrl}
        \n" +"Brukernavn: {$recipientUsername}
        \n" +"
        \n" +"Mange takk" + +msgid "emails.reviewRequest.subject" +msgstr "Forespørsel om fagfellevurdering" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Kjære {$recipientName},
        \n" +"
        \n" +"{$messageToReviewer}
        \n" +"
        \n" +"Logg deg på utgiverens nettsted innen {$responseDueDate} for å gi beskjed om " +"du vil gjøre fagfellevurderingen eller ikke, samt få tilgang til " +"innleveringen og registrere din vurdering og anbefaling.
        \n" +"
        \n" +"Selve fagfellevurderingen må være sendt inn innen {$reviewDueDate}.
        \n" +"
        \n" +"URL for innlevering: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Brukernavn: {$recipientUsername}
        \n" +"
        \n" +"Takk for at du vurderer denne forespørselen.
        \n" +"
        \n" +"
        \n" +"Mange hilsener
        \n" +"{$signature}
        \n" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Forespørsel om fagfellevurdering" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Kjære {$recipientName}:
        \n" +"Dette er bare for å minne deg om vår forespørsel om din vurdering av " +"manuskriptet "{$submissionTitle}," for {$contextName}. Vi hadde " +"håpet på å motta ditt svar senest den {$responseDueDate}, og denne e-posten " +"er blitt automatisk genereret og sendt til deg, da svarfristen er " +"overskredet.\n" +"
        \n" +"{$messageToReviewer}
        \n" +"
        \n" +"Logg på tidsskriftets nettsted for å gi beskjed, om du vil påta deg " +"fagfellevurderingen eller ikke, samt for å få tilgang til innleveringen og " +"registrere din vurdering og anbefaling.
        \n" +"
        \n" +"Selve vurderingen må leveres senest den {$reviewDueDate}.
        \n" +"
        \n" +"Innleveringens URL: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Brukernavn: {$recipientUsername}
        \n" +"
        \n" +"Takk for at du vurderer denne forespørselen.
        \n" +"
        \n" +"
        \n" +"Vennlig hilsen,
        \n" +"{$contextSignature}
        \n" + +msgid "emails.reviewCancel.subject" +msgstr "Avbryt forespørsel om fagfellevurdering" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"På nåværende tidspunkt har vi valgt å trekke tilbake får forespørsel til deg " +"om å vurdere innleveringen "{$submissionTitle}" til " +"{$contextName}. Vi beklager den unlempe, dette eventuelt måtte forårsake, og " +"vi håper, at vi kan henvende oss til deg i fremtiden og be om din assistanse " +"i forbindelse med denne utgiverens fagfellevurderingsprosess.
        \n" +"
        \n" +"Hvis du har spørgsmål, ta gjerne kontakt." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Forespørsel om fagfellevurdering gjenopptatt" + +msgid "emails.reviewReinstate.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Vi vil gjerne spørre deg på nytt om du vil foreta en fagfellevurdering av " +"innleveringen, "{$submissionTitle}," for {$contextName}. Vi håper " +"at du har mulighet for å hjelpe med denne utgiverens fagfellevurdering.
        \n" +"
        \n" +"Du bes ta kontakt med meg hvis du har spørsmål." + +msgid "emails.reviewDecline.subject" +msgstr "Kan ikke foreta fagfellevurdering" + +msgid "emails.reviewDecline.body" +msgstr "" +"Redaktører:
        \n" +"
        \n" +"Jeg beklager, at jeg på nåværende tidspunkt ikke kan bedømme innleveringen " +""{$submissionTitle}" til {$contextName}. Takk, for at du tenkte på " +"meg, og du er alltid velkommen til at kontakte meg en annen gang.
        \n" +"
        \n" +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Påminnelse om fagfellevurdering" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Dette er kun for å minne deg om vår forespørsel om fagfellevurdering av " +"innelveringen "{$submissionTitle}" til {$contextName}. Vi hadde " +"håpet på å motta vurderingen senest den {$reviewDueDate} og ser frem til å " +"motta den, så snart du er ferdig med den.
        \n" +"
        \n" +"Hvis du ikke har brukernavn og passord til utgiverens nettsted tilgjengelig, " +"kan du bruke denne lenken til å nullstille passordet (som vil bli sendt til " +"deg via e-post sammen med brukernavnet ditt). {$passwordLostUrl}
        \n" +"
        \n" +"Innleveringens URL: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Brukernavn: {$recipientUsername}
        \n" +"
        \n" +"Vi ber deg bekrefte, om du er i stand til å fullføre dette vigtige bidraget " +"til vårt arbeid. Jeg ser frem til å høre fra deg.
        \n" +"
        \n" +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Dette er bare for å minne deg om vår forespørsel om din fagfellevurdering av " +"innleveringen "{$submissionTitle}" til {$contextName}. Vi hadde " +"håpet på å motta ditt svar senest den {$responseDueDate}, og ser fremdeles " +"frem til å motta den så snart du er ferdig med den.
        \n" +"
        \n" +"Innleveringens URL: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Vi ber deg bekrefte om du er i stand til at fullføre dette vigtige bidraget " +"til vårt arbeid. Jeg ser frem til at høre fra deg.
        \n" +"
        \n" +"{$contextSignature}" + +#, fuzzy +msgid "emails.editorDecisionAccept.subject" +msgstr "Redaktørbeslutning" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"{$authors}:
        \n" +"
        \n" +"Vi har foretatt en beslutning angående ditt bidrag til {$contextName}, "" +"{$submissionTitle}".
        \n" +"
        \n" +"Vi har besluttet at:
        \n" +"
        \n" +"Manuscript URL: {$submissionUrl}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" + +#, fuzzy +msgid "emails.layoutRequest.subject" +msgstr "Forespørsel om oppsett" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Innleveringen "{$submissionTitle}" til {$contextName} skal nå " +"gjøres publiseringsklar ved å følge disse stegene.
        \n" +"1. Klikk på innleveringens URL-adresse nedenfor.
        \n" +"2. Hent filene plassert under ‘Produksjonsklare filer’ og formater dem til " +"publiseringsklare filer i overensstemmelse med tidsskriftets krav.
        \n" +"3. Send den FÆRDIGE e-posten til redaktøren.
        \n" +"
        \n" +"{$contextName} URL: {$contextUrl}
        \n" +"Innleveringens URL: {$submissionUrl}
        \n" +"Brukernavn: {$recipientUsername}
        \n" +"
        \n" +"Hvis du ikke er i stand til å påta dig dette arbeidet på nåværende tidspunkt " +"eller har spørgsmål, bes du ta kontakt med meg. Takk for ditt bidrag til " +"denne utgivelsen." + +msgid "emails.layoutComplete.subject" +msgstr "Sideoppsett ferdiggjort" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Nå er de publiseringsklare filene for innleveringen "{$submissionTitle}," +"" i {$contextName} lastet opp og klare for korrekturlesning.
        \n" +"
        \n" +"Hvis du har spørsmål, ta kontakt med meg.
        \n" +"
        \n" +"{$senderName}" + +msgid "emails.indexRequest.subject" +msgstr "Forespørsel om indeksering" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Innleveringen "{$submissionTitle}" til {$contextName} skal nå " +"ndekseres ved å følge disse stegene.
        \n" +"1. Klikk på innleveringens URL-adresse nedenfor.
        \n" +"2. Hent filene plassert under ‘Produktionsklare filer’ og formater dem til " +"publikasjonsformater i overensstemmelse med tidsskriftets krav.
        \n" +"3. Send den FÆRDIGE e-posten til redaktøren
        \n" +"
        \n" +"{$contextName} URL: {$contextUrl}
        \n" +"Innleveringens URL: {$submissionUrl}
        \n" +"Brukernavn: {$recipientUsername}
        \n" +"
        \n" +"Hvis du ikke er i stand til å påta deg dette oppdraget på nåværende " +"tidspunkt, eller har spørgsmål, bes du ta kontakt med meg. Takk for dit " +"bidrag til denne utgivelsen.
        \n" +"
        \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Indeksering fullført" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Det er nå utarbeidet en indeks til innleveringen "{$submissionTitle}," +"" i {$contextName} og den er klar til korrekturlesning.
        \n" +"
        \n" +"Hvis du har spørsmål, ta kontakt med meg..
        \n" +"
        \n" +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "Utgivelse som kan være av interesse for deg" + +msgid "emails.emailLink.body" +msgstr "" +"Jeg tenkte at du muligens kan være interesseret i å lese "" +"{$submissionTitle}" av {$authors} som er publisert i Årg. {$volume}, " +"Nummer {$number} ({$year}) i {$contextName} på "{$submissionUrl}"." + +msgid "emails.emailLink.description" +msgstr "" +"Denne e-postmalen lar en registrert leser sende informasjon om en artikkel " +"til noen som kan være interessert. Den er tilgjengelig gjennom " +"leseverktøyene og må aktiveres av redaktøren på siden Administrasjon av " +"leseverktøy." + +msgid "emails.notifySubmission.subject" +msgstr "Innleveringsmelding" + +msgid "emails.notifySubmission.body" +msgstr "" +"Du har en melding fra {$sender} vedrørende "{$submissionTitle}" " +"({$monographDetailsUrl}):
        \n" +"
        \n" +"\t\t{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"En melding fra en bruker sendt fra en modal for informasjonssenter for " +"innlevering." + +msgid "emails.notifyFile.subject" +msgstr "Melding om innleveringsfil" + +msgid "emails.notifyFile.body" +msgstr "" +"Du har fått en melding fra {$sender} vedrørende filen "{$fileName}" +"" i "{$submissionTitle}" ({$monographDetailsUrl}):
        \n" +"
        \n" +"\t\t{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "En melding fra en bruker sendt fra en filinformasjonssentral modal" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Redaksjonel aktivitet for {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
        \n" +"
        \n" +"Din utgivers tilstandsrapport for {$month}, {$year} er nå tilgjengelig. De " +"statistiske nøkkeltallene ses nedenfor.
        \n" +"
          \n" +"\t
        • Nye innleveringer denne måned: {$newSubmissions}
        • \n" +"\t
        • Avviste innleveringer denne måned: {$declinedSubmissions}
        • \n" +"\t
        • Aksepterte innleveringer denne måned: {$acceptedSubmissions}
        • \n" +"\t
        • Systemets samlede antall innleveringer: {$totalSubmissions}
        • \n" +"
        \n" +"Logg inn hos utgiveren for å se flere opplysninger omredaktionelle udviklingstendenser og offentliggjorte artikelstatistikker. En " +"komplett kopi av denne månedens redaksjonelle udvikling er vedlagt.
        \n" +"
        \n" +"Med venlig hilsen
        \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
        \n" +"
        \n" +"{$announcementSummary}
        \n" +"
        \n" +"Besøk nettstedet vårt for å lesehele " +"oppslaget." + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Denne e-posten blir sendt til nylig registrerte brukere for å ønske dem " +#~ "velkommen til systemet og gi dem brukernavn og passord." + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName}
        \n" +#~ "
        \n" +#~ "Du har opprettet en konto med {$contextName}, men før du kan begynne å " +#~ "bruke den, må du validere e-postkontoen din. For å gjøre dette, følg bare " +#~ "lenken nedenfor:
        \n" +#~ "
        \n" +#~ "{$enableUrl}
        \n" +#~ "
        \n" +#~ "Tusen takk,
        \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Valider kontoen din" diff --git a/locale/nb/locale.po b/locale/nb/locale.po new file mode 100644 index 00000000000..dd8a7dab1e9 --- /dev/null +++ b/locale/nb/locale.po @@ -0,0 +1,1662 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-20 02:01+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "common.payments" +msgstr "Betalinger" + +msgid "monograph.audience" +msgstr "Lesere" + +msgid "monograph.audience.success" +msgstr "Leserinnstilingene har blitt oppdatert." + +msgid "monograph.coverImage" +msgstr "Omslag" + +msgid "monograph.audience.rangeQualifier" +msgstr "Lesernes kvalitetsrangering" + +msgid "monograph.audience.rangeFrom" +msgstr "Leserrangering (fra)" + +msgid "monograph.audience.rangeTo" +msgstr "Leserrangering (til)" + +msgid "monograph.audience.rangeExact" +msgstr "Leserrangering (nøyaktig)" + +msgid "monograph.languages" +msgstr "Språk (engelsk, fransk, spansk)" + +msgid "monograph.publicationFormats" +msgstr "Publikasjonsformat" + +msgid "monograph.publicationFormat" +msgstr "Format" + +msgid "monograph.publicationFormatDetails" +msgstr "Detaljer om det tilgjengelige publikasjonsformatet: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Detaljer om denne publikasjonen" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formater:" + +msgid "monograph.type" +msgstr "Type innlevering" + +msgid "submission.pageProofs" +msgstr "Korrektur" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Layoutredigereren laster opp de produksjonsklare filene som er klare for " +"publisering her. Bruk + Tildel for å nominere forfattere og andre " +"til korrekturlesing av tilpassede korrekturlesesider lastet opp for " +"godkjenning før publisering." + +msgid "monograph.task.addNote" +msgstr "Legg til i oppgave" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Open Access" + +msgid "monograph.publicationFormat.imprint" +msgstr "Varemerke" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Sideantall" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Forsiden" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Tilleggssider (etter bokens hoveddtekst)" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Produktsammensetning" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Produktsammensetning (valgfritt)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identifikatorer" + +msgid "monograph.publicationFormat.price" +msgstr "Pris" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Legg inn pris (kreves)." + +msgid "monograph.publicationFormat.priceType" +msgstr "Pristype" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Rabattprosent, hvis relevant" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Produktets tilgjengelighet" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Returindikator" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Digital informasjon" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Fysiske dimensjoner" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Filstørrelse i Mbytes" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Legg inn din egen filstørrelse?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Høyde" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Tykkelse" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Vekt" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Bredde" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Produksjonsland" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Digital teknisk beskyttelse" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Produktdistribusjonsregion" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Beskatningsprosent" + +msgid "monograph.publicationFormat.taxType" +msgstr "Beskatningstype" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Inkluder metadataene for dette publikasjonsformatet i katalogoppføringen for " +"denne boken." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Markeder og priser mangler." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Identifikasjonskode mangler." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Noen metadatafelt mangler." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

        Det valgte publikasjonsformatet eksisterer ikke lenger for denne " +"monografien.

        " + +msgid "monograph.publicationFormat.openTab" +msgstr "Åpne fanen for publikasjonsformat." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Publikasjonsformat" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Et navn kreves." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "En gyldig pris kreves." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Formatdetaljer" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Fysisk format" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Dette formatet vil bli tilgjengelig fra et separat nettsted" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL til eksternt materiale" + +msgid "grid.catalogEntry.isbn" +msgstr "" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "" + +msgid "grid.catalogEntry.isbn10.description" +msgstr "" + +msgid "grid.catalogEntry.monographRequired" +msgstr "En monografi-ID kreves." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Et publikasjonsformat må velges." + +msgid "grid.catalogEntry.availability" +msgstr "TIlgjengelighet" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Tilgjengelig" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Ikke tilgjengelig" + +msgid "grid.catalogEntry.proof" +msgstr "Korrektur" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Godkjenn formatet" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "

        Godkjenn oppsettet for publisering.

        " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

        Gjør om godkjenningen av oppsettet.

        " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Tilgjengeliggjøring av formatet" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

        Gjør dette formatet tilgjengelig for leserne . Nedlastbare " +"filer og andre distribusjoner vises i bokens katalogoppføring.

        " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

        Dette formatet vil ikke være tilgjengelig for lesere . " +"Eventuelle nedlastbare filer eller andre distribusjoner vises ikke lenger i " +"bokens katalogoppføring.

        " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Katalogoppføring ikke godkjent." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Formatet finnes ikke i katalogoppføringen." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Korrektur ikke godkjent." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Godkjent" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Venter på godkjenning" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "En filstørrelse for digitale formater kreves." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "En tilgjengelighetskode for produktet kreves." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "En sammensetningskode for produktet kreves." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Kodeverdi" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "ONIX-kodetype" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Identifikasjonskode kreves." + +msgid "grid.catalogEntry.valueRequired" +msgstr "En verdi kreves." + +msgid "grid.catalogEntry.salesRights" +msgstr "Salgsrettigheter" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Kodeverdi" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Type salgsrettighet" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Resten av verden?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Merk av i denne boksen for å bruke denne salgsrettighetsoppføringen som en " +"samlebetegnelse for formatet ditt. Land og regioner trenger ikke å velges i " +"dette tilfellet." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"En ROW-salgstype (resten av verden) er allerede definert for dette " +"publikasjonsformatet." + +msgid "grid.catalogEntry.countries" +msgstr "Land" + +msgid "grid.catalogEntry.regions" +msgstr "Regioner" + +msgid "grid.catalogEntry.included" +msgstr "Inkludert" + +msgid "grid.catalogEntry.excluded" +msgstr "Ekskludert" + +msgid "grid.catalogEntry.markets" +msgstr "Markedsområder" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Område" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Publikasjonsdatoer" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Det kreves en representant-rolle." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Et datoformat kreves." + +msgid "grid.catalogEntry.dateValue" +msgstr "Dato" + +msgid "grid.catalogEntry.dateRole" +msgstr "Rolle" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Datoformat" + +msgid "grid.catalogEntry.dateRequired" +msgstr "En dato kreves, og datoen må være på det valgte datoformatet." + +msgid "grid.catalogEntry.representatives" +msgstr "Representanter" + +msgid "grid.catalogEntry.representativeType" +msgstr "Type representant" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agenter" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Leverandører" + +msgid "grid.catalogEntry.agent" +msgstr "Agent" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Du kan velge en agent til å representere deg i det definerte området. " +"(Valgfritt)." + +msgid "grid.catalogEntry.supplier" +msgstr "Leverandør" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Velg en rolle:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Rolle" + +msgid "grid.catalogEntry.representativeName" +msgstr "Navn" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Telefon" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "E-post adresse" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Nettside" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Representant-ID" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Type representant-ID (GLN anbefales)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Du kan la denne delen stå tomt hvis du leverer din egne tjenester til " +"kundene dine." + +msgid "grid.action.addRepresentative" +msgstr "Legg til representant" + +msgid "grid.action.editRepresentative" +msgstr "Rediger representant" + +msgid "grid.action.deleteRepresentative" +msgstr "Ta bort representant" + +msgid "spotlight" +msgstr "Spotlight" + +msgid "spotlight.spotlights" +msgstr "Spotlights" + +msgid "spotlight.noneExist" +msgstr "Det finnes ingen aktuelle spotlights." + +msgid "spotlight.title.homePage" +msgstr "I spotlight" + +msgid "spotlight.author" +msgstr "Forfattere, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Spotlight-element" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Hovedside" + +msgid "grid.content.spotlights.form.location" +msgstr "Spotlight-plassering" + +msgid "grid.content.spotlights.form.item" +msgstr "Legg inn spotlight-tittelen (autofullføring)" + +msgid "grid.content.spotlights.form.title" +msgstr "Spotlight-tittel" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Bok" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Et objekt kreves." + +msgid "grid.content.spotlights.titleRequired" +msgstr "En spotlight-tittel kreves." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Velg et område for denne spotlighten." + +msgid "grid.action.editSpotlight" +msgstr "Rediger spotlight" + +msgid "grid.action.deleteSpotlight" +msgstr "Ta bort spotlight" + +msgid "grid.action.addSpotlight" +msgstr "Legg til spotlight" + +msgid "manager.series.open" +msgstr "Åpne innleveringer" + +msgid "manager.series.indexed" +msgstr "Indeksert" + +msgid "grid.libraryFiles.column.files" +msgstr "Filer" + +msgid "grid.action.catalogEntry" +msgstr "Vis katalogoppøringsskjema" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Formatet vises i katalogoppføringen" + +msgid "grid.action.editFormat" +msgstr "Rediger dette formatet" + +msgid "grid.action.deleteFormat" +msgstr "Ta bort dette formatet" + +msgid "grid.action.addFormat" +msgstr "Legg til publikasjonsformat" + +msgid "grid.action.approveProof" +msgstr "Godkjenn korrekturen for indeksering og inkludering i katalogen" + +msgid "grid.action.pageProofApproved" +msgstr "Korrekturfilen er klar for publisering" + +msgid "grid.action.newCatalogEntry" +msgstr "Ny katalogoppføring" + +msgid "grid.action.publicCatalog" +msgstr "Vis dette objektet i katalogen" + +msgid "grid.action.feature" +msgstr "Koble på funksjonsdisplayet" + +msgid "grid.action.featureMonograph" +msgstr "Vis dette i katalogkarusellen" + +msgid "grid.action.releaseMonograph" +msgstr "Marker denne publikasjonen som en 'ny utgave'" + +msgid "grid.action.manageCategories" +msgstr "Konfigurer kategorier" + +msgid "grid.action.manageSeries" +msgstr "Konfigurer serier" + +msgid "grid.action.addCode" +msgstr "Legg til kode" + +msgid "grid.action.editCode" +msgstr "Rediger kode" + +msgid "grid.action.deleteCode" +msgstr "Ta bort kode" + +msgid "grid.action.addRights" +msgstr "Legg til salgsrettigheter" + +msgid "grid.action.editRights" +msgstr "Rediger disse rettighetene" + +msgid "grid.action.deleteRights" +msgstr "Ta bort disse rettighetene" + +msgid "grid.action.addMarket" +msgstr "Legg til marked" + +msgid "grid.action.editMarket" +msgstr "Rediger marked" + +msgid "grid.action.deleteMarket" +msgstr "Ta bort marked" + +msgid "grid.action.addDate" +msgstr "Legg til publiseringsdato" + +msgid "grid.action.editDate" +msgstr "Rediger dato" + +msgid "grid.action.deleteDate" +msgstr "Ta bort dato" + +msgid "grid.action.createContext" +msgstr "Opprett ny utgiver" + +msgid "grid.action.publicationFormatTab" +msgstr "Vis fanen med publikasjonsformat" + +msgid "grid.action.moreAnnouncements" +msgstr "Gå til oppslagssiden" + +msgid "grid.action.submissionEmail" +msgstr "Trykk for å lese denne e-posten" + +msgid "grid.action.approveProofs" +msgstr "Vis korrekturer" + +msgid "grid.action.proofApproved" +msgstr "Formatet har gått gjennom korrektur" + +msgid "grid.action.availableRepresentation" +msgstr "Godkjenn/avvis dette formatet" + +msgid "grid.action.formatAvailable" +msgstr "Steng eller åpne tilgang til dette formatet" + +msgid "grid.reviewAttachments.add" +msgstr "Legg til vedleg til fagfellevurdering" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Tilgjengelige filer" + +msgid "series.series" +msgstr "Serier" + +msgid "series.featured.description" +msgstr "Serien kommer til å vises i hovedmenyen" + +msgid "series.path" +msgstr "Sti" + +msgid "catalog.manage" +msgstr "Kataloghåndtering" + +msgid "catalog.manage.newReleases" +msgstr "Nye utgivelser" + +msgid "catalog.manage.category" +msgstr "Kategori" + +msgid "catalog.manage.series" +msgstr "Serier" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Legg inn et gyldig ISSN." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "ISSN for nettutgave og for trykt utgave kan ikke være like." + +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN for nettutgave" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN for trykt utgave" + +msgid "catalog.selectSeries" +msgstr "Velg serie" + +msgid "catalog.selectCategory" +msgstr "Velg kategori" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Omslagsbildet til utvalgte bøker vises øverst på nettstedet som et rullbart " +"oppsett. Klikk 'Velg' og deretter stjernen for å legge til en bok i " +"karusellen. klikk på utropstegnet for å indikere at det er en ny utgivelse; " +"dra og slipp for å ordne rekkefølgen." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Klikk på 'Velg' og deretter på stjernen for å velge en utvalgt bok for denne " +"kategorien; dra og slipp for å bestille." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Klikk \"Velg\" og deretter stjernen for å velge en utvalgt bok for denne " +"serien; dra og slipp for å bestille. Serier identifiseres av en redaktør og " +"en serietittel innenfor en kategori, eller uavhengig." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Karusell" + +msgid "catalog.manage.newRelease" +msgstr "Utgivelse" + +msgid "catalog.manage.manageSeries" +msgstr "Administrer serier" + +msgid "catalog.manage.manageCategories" +msgstr "Administrer kategorier" + +msgid "catalog.manage.noMonographs" +msgstr "Det er ingen tildelte monografier." + +msgid "catalog.manage.featured" +msgstr "Utvalgt" + +msgid "catalog.manage.categoryFeatured" +msgstr "Utvalgt i kategori" + +msgid "catalog.manage.seriesFeatured" +msgstr "Utvalgt i serier" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monografi er utvalgt." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monografi er ikke utvalgt." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Boken er markert som en ny utgivelse." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Boken er ikke markert som en ny utgave." + +msgid "catalog.manage.feature.newRelease" +msgstr "Ny utgivelse" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Ny utgivelse i kategori" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Ny utgivelse i serie" + +msgid "catalog.manage.nonOrderable" +msgstr "Denne monografien kan ikke bestilles før den har blitt utvalgt." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Søk etter tittel og forfatter" + +msgid "catalog.manage.isFeatured" +msgstr "Denne monografien er utvalgt. Gjør denne monografien ikke utvalgt." + +msgid "catalog.manage.isNotFeatured" +msgstr "Denne monografien er ikke utvalgt. Gjør denne monografien utvalgt." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Denne monografien er markert som en ny utgivelse. Fjern den fra nye " +"utgivelser." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Denne monografien er ikke en ny utgivelse. Legg den til nye utgivelser." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Ingen innleveringer ble valgt for å bli lagt til katalogen." + +msgid "catalog.manage.submissionsNotFound" +msgstr "En eller flere av innleveringene ble ikke funnet." + +msgid "catalog.manage.findSubmissions" +msgstr "Finn monografier som skal legges til katalogen" + +msgid "catalog.noTitles" +msgstr "Ingen titler har blitt publisert enda." + +msgid "catalog.noTitlesNew" +msgstr "Ingen nye utgivelser er tilgjengelig for øyeblikket." + +msgid "catalog.noTitlesSearch" +msgstr "Ingen titler samsvarer med søket ditt \"{$searchQuery}\"." + +msgid "catalog.feature" +msgstr "Anbefaling" + +msgid "catalog.featured" +msgstr "Anbefalt" + +msgid "catalog.featuredBooks" +msgstr "Anbefalte bøker" + +msgid "catalog.foundTitleSearch" +msgstr "En tittel samsvarte med søket ditt \"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "{$number} titler ble funnet for søket \"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Alle bøker" + +msgid "catalog.newReleases" +msgstr "Nye utgivelser" + +msgid "catalog.dateAdded" +msgstr "Lagt til" + +msgid "catalog.publicationInfo" +msgstr "Informasjon om publikasjonen" + +msgid "catalog.published" +msgstr "Publisert" + +msgid "catalog.forthcoming" +msgstr "Kommende" + +msgid "catalog.categories" +msgstr "Kategorier" + +msgid "catalog.parentCategory" +msgstr "Hovedkategori" + +msgid "catalog.category.subcategories" +msgstr "Underkategorier" + +msgid "catalog.aboutTheAuthor" +msgstr "Om {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Merk: For å kjøpe varer må du først logge på. Hvis du velger et produkt du " +"vil kjøpe, kommer du til påloggingssiden. Publikasjoner merket med et Open " +"Access-ikon kan lastes ned gratis uten å logge inn." + +msgid "catalog.sortBy" +msgstr "Sorter monografier" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Velg hvordan bøkene i denne serien skal sorteres." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Velg hvordan bøkene sorteres i denne kategorien." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Bestem sorteringen på bøkene i kategorien." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Posisjon i serien (laveste først)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Posisjon i serien (høyeste først)" + +msgid "catalog.viewableFile.title" +msgstr "{$type}-visning av filen {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Tilbake til detaljer om {$monographTitle}" + +msgid "submission.search" +msgstr "Boksøk" + +msgid "common.publication" +msgstr "Monografi" + +msgid "common.publications" +msgstr "Monografier" + +msgid "common.prefix" +msgstr "Prefiks" + +msgid "common.preview" +msgstr "Forhåndsvisning" + +msgid "common.feature" +msgstr "Anbefalt" + +msgid "common.searchCatalog" +msgstr "Søk i katalog" + +msgid "common.moreInfo" +msgstr "Mer informasjon" + +msgid "common.listbuilder.completeForm" +msgstr "Fyll ut alle felt i skjemaet." + +msgid "common.listbuilder.selectValidOption" +msgstr "Velg et gyldig alternativ i listen." + +msgid "common.listbuilder.itemExists" +msgstr "Du kan ikke legge til samme element flere ganger." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Nettstedets hovedside: topptekst" + +msgid "navigation.catalog" +msgstr "Katalog" + +msgid "navigation.competingInterestPolicy" +msgstr "Policy for interessekonflikter" + +msgid "navigation.catalog.allMonographs" +msgstr "Alle monografier" + +msgid "navigation.catalog.manage" +msgstr "Administrer" + +msgid "navigation.catalog.administration.short" +msgstr "Administrasjon" + +msgid "navigation.catalog.administration" +msgstr "Katalogadministrasjon" + +msgid "navigation.catalog.administration.categories" +msgstr "Kategorier" + +msgid "navigation.catalog.administration.series" +msgstr "Serier" + +msgid "navigation.infoForAuthors" +msgstr "For forfattere" + +msgid "navigation.infoForLibrarians" +msgstr "For bibliotekarer" + +msgid "navigation.infoForAuthors.long" +msgstr "Informasjon for forfattere" + +msgid "navigation.infoForLibrarians.long" +msgstr "Informasjon for bibliotekarer" + +msgid "navigation.newReleases" +msgstr "Nye utgivelser" + +msgid "navigation.published" +msgstr "Publisert" + +msgid "navigation.wizard" +msgstr "Trinnvis veiledning" + +msgid "navigation.linksAndMedia" +msgstr "Lenker og sosiale medier" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Lenke til din katalog." + +msgid "navigation.skip.spotlights" +msgstr "Gå til spotlight" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Serier" + +msgid "navigation.navigationMenus.series.description" +msgstr "Lenke til en serie." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Kategori" + +msgid "navigation.navigationMenus.category.description" +msgstr "Lenke til en kategori." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Nye utgivelser" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Lenke til dine nye utgivelser." + +msgid "context.contexts" +msgstr "Utgivere" + +msgid "context.context" +msgstr "Utgivere" + +msgid "context.current" +msgstr "Gjeldende utgiver:" + +msgid "context.select" +msgstr "Bytt til en annen utgiver:" + +msgid "user.authorization.representationNotFound" +msgstr "Publiseringsformatet ble ikke funnet." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Inkluder brukere som ikke har noen rolle hos denne utgiveren." + +msgid "user.noRoles.submitMonograph" +msgstr "Send inn til en utgiver" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Send inn en monografi: Forfatterregistrering er for øyeblikket deaktivert." + +msgid "user.noRoles.regReviewer" +msgstr "Registrer som fagfelle" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Registrer som Fagfelle: Registrering av fagfeller er for øyeblikket " +"deaktivert." + +msgid "user.reviewerPrompt" +msgstr "Er du villig til å bli fagfelle hos denne utgiveren?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Ja, be om en rolle i {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Ja, jeg vil gjerne kontaktes angående forespørsler om fagfellevurdering av " +"innleveringer til denne utgiveren." + +msgid "user.register.contextsPrompt" +msgstr "Hvilke utgivere på dette nettstedet vil du registere deg hos?" + +msgid "user.register.otherContextRoles" +msgstr "Be om følgende roller." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Dersom du er bedt om å være fagfelle for en utgiver, oppgi de faglige " +"interessene dine her." + +msgid "user.role.manager" +msgstr "Redaksjonsleder" + +msgid "user.role.pressEditor" +msgstr "Redaktør" + +msgid "user.role.subEditor" +msgstr "Serieredaktør" + +msgid "user.role.copyeditor" +msgstr "Språkvasker" + +msgid "user.role.proofreader" +msgstr "Korrekturleser" + +msgid "user.role.productionEditor" +msgstr "Produksjonsredaktør" + +msgid "user.role.managers" +msgstr "Redaksjonsledere" + +msgid "user.role.subEditors" +msgstr "Serieredaktører" + +msgid "user.role.editors" +msgstr "Redaktører" + +msgid "user.role.copyeditors" +msgstr "Språkvaskere" + +msgid "user.role.proofreaders" +msgstr "Korrekturlesere" + +msgid "user.role.productionEditors" +msgstr "Produksjonsredaktører" + +msgid "user.register.selectContext" +msgstr "Velg en utgiver å registrere i:" + +msgid "user.register.noContexts" +msgstr "" +"Det finnes ingen utgivere du kan registrere deg hos på dette nettstedet." + +msgid "user.register.privacyStatement" +msgstr "Personvernerklæring" + +msgid "user.register.registrationDisabled" +msgstr "Denne utgiveren tar for øyeblikket ikke i mot brukerregistrering." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Passordet du skrev inn er ikke langt nok." + +msgid "user.register.readerDescription" +msgstr "Be om e-postvarsel når en ny monografi publiseres." + +msgid "user.register.authorDescription" +msgstr "Kan sende inn innleveringer til utgiveren." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Villig til å utføre fagfellevurdering av innleveringer for utgiveren." + +msgid "user.register.reviewerDescription" +msgstr "" +"Villig til å utføre fagvurdering av innleveringer for utgiveren. Oppgi " +"fagvurderingsinteresse (hovedområder og forskningsmetoder)." + +msgid "user.register.reviewerInterests" +msgstr "" +"Angi interessante vurderingsområder (hovedområder og forskningsmetoder):" + +msgid "user.register.form.userGroupRequired" +msgstr "Du må velge minst en rolle" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Ja, jeg godtar at dataene mine blir samlet inn og lagret i samsvar med denne " +"utgiverens personvernerklæring " +"." + +msgid "site.noPresses" +msgstr "Det er ingen utgivere tilgjengelig." + +msgid "site.pressView" +msgstr "Vis utgiverens nettside" + +msgid "about.pressContact" +msgstr "Kontakt" + +msgid "about.aboutContext" +msgstr "Om utgiveren" + +msgid "about.editorialTeam" +msgstr "Redaksjon" + +msgid "about.editorialPolicies" +msgstr "Redaksjonelle retningslinjer" + +msgid "about.focusAndScope" +msgstr "Hovedfokus og spennvidde" + +msgid "about.seriesPolicies" +msgstr "Retningslinjer for serier og kategorier" + +msgid "about.submissions" +msgstr "Innleveringer" + +msgid "about.onlineSubmissions" +msgstr "Online innleveringer" + +msgid "about.onlineSubmissions.login" +msgstr "Innlogging" + +msgid "about.onlineSubmissions.register" +msgstr "Registrer" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} eller {$register} for å foreta en innlevering." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} eller {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Ny innlevering" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "Se dine innleveringer til vurdering" + +msgid "about.authorGuidelines" +msgstr "Forfatterinstruks" + +msgid "about.submissionPreparationChecklist" +msgstr "Sjekkliste for klargjøring av innlevering" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Som del av innsendingsprosessen må forfatteren krysse av for at " +"innleveringen oppfyller følgende krav, og manuskript som ikke oppfyller " +"kravene og følger retningslinjene, kan bli returnert til forfatteren." + +msgid "about.copyrightNotice" +msgstr "Opphavsrettserklæring" + +msgid "about.privacyStatement" +msgstr "Personvernerklæring" + +msgid "about.reviewPolicy" +msgstr "Fagfellevurderingsprosess" + +msgid "about.publicationFrequency" +msgstr "Publiseringsfrekvens" + +msgid "about.openAccessPolicy" +msgstr "Open Access-retningslinjer" + +msgid "about.pressSponsorship" +msgstr "Sponsorer" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Mer informasjon om dette publiseringssystemet, plattformen og arbeidsflyten " +"fra OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "OMP sin redaksjonelle prosess og publiseringsprosess" + +msgid "about.aboutSoftware" +msgstr "Om Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"Denne utgiveren bruker Open Monograph Press {$ompVersion}, som er basert på " +"åpen kildekode- og publiseringsprogramvare som er utviklet, støttet og " +"distribuert fritt av Public Knowledge " +"Project under GNU General Public License. Kontakt utgiveren direkte for spørsmål om utgiveren og " +"innleveringer til utgiveren." + +#, fuzzy +msgid "about.aboutOMPSite" +msgstr "" +"Dette nettstedet bruker Open Monograph Press {$ompVersion}, som er " +"programvare for open source redigering og publisering utviklet, støttet og " +"distribuert fritt av Public Knowledge " +"Project under GNU General Public License." + +msgid "help.searchReturnResults" +msgstr "Tilbake til søkeresultat" + +msgid "help.goToEditPage" +msgstr "Åpne ny side for å redigere disse opplysningene" + +msgid "installer.appInstallation" +msgstr "OMP installasjon" + +msgid "installer.ompUpgrade" +msgstr "OMP-oppgradering" + +msgid "installer.installApplication" +msgstr "Installer Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Hvis du oppgraderer en eksisterende innstallasjon av OMP: fortsett til oppgraderingen ." + +msgid "installer.installationInstructions" +msgstr "" +"\n" +"

        Takk for at du lastet ned the Public Knowledge Projects Open " +"Monograph Press {$version}. Før du fortsetter, vennligst les README filen som følger med denne " +"programvaren. For mer informasjon om the Public Knowledge Project og dets " +"programvareprosjekter, se PKPs nettside. Hvis du har en feilmelding eller trenger teknisk " +"brukerstøtte for OMP, se supportforumet eller besøk PKPs nettbaserte feilrapporteringssystem. Selv om " +"supportforumet er den foretrukne måten å ta kontakt på, kan du også sende e-" +"post til teamet på pkp." +"contact@gmail.com.

        \n" + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Steg før installasjon" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

        1. De følgende filene og mappene (og deres innhold) må være overskrivbare:" +"

        \n" +"\t
          \n" +"\t\t
        • config.inc.php er overskrivbar (valgfritt): " +"{$writable_config}
        • \n" +"\t\t
        • public/ er overskrivbar: {$writable_public}
        • \n" +"\t\t
        • cache/ er overskrivbar: {$writable_cache}
        • \n" +"\t\t
        • cache/t_cache/ er overskrivbar: {$writable_templates_cache}" +"
        • \n" +"\t\t
        • cache/t_compile/ er overskrivbar: " +"{$writable_templates_compile}
        • \n" +"\t\t
        • cache/_db er overskrivbar: {$writable_db_cache}
        • \n" +"\t
        \n" +"

        2. Det må lages en mappe for å lagre opplastede filer. Mappen må være " +"overskrivbar. (Se «Filinnstillinger» under).

        " + +msgid "installer.upgradeInstructions" +msgstr "" +"

        OMP versjon {$version}

        \n" +"\n" +"

        Takk for at du laster ned Public Knowledge Projects Open " +"Monograph Press. Før du går videre, les filene README- og UPGRADE " +"som følger med denne programvaren. For mer informasjon om Public Knowledge " +"Project og deres programvareprosjekter, se PKPs nettsted. Hvis du har feilmeldinger eller " +"spørsmål om teknisk støtte for Open Journal Systems, se OJS' støtteforum eller besøk PKPs nettbaserte feilmeldingssystem. Selv om støtteforumet er den foretrukne " +"kontaktkanalen, kan du også sende en e-post til teamet: pkp-support@sfu.ca.

        \n" +"

        Det er på det sterkeste anbefalt at du tar backup av " +"databasen din, filmappen og OJS installasjonsmappe før du går videre.

        \n" +"

        Hvis du kjører installasjonen i PHP Safe Mode må du forsikre deg om at " +"max_execution_time directive i din php.ini konfigurasjonsfil er satt til en " +"høy grense. Hvis denne eller en annen tidsbegrensning (for eks. Apaches " +"«Timeout» direktiv) blir overskredet og oppgraderingsprosessen dermed blir " +"avbrutt, vil det bli nødvendig å gripe inn manuelt.

        " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"For fullstendig støtte for Unicode (UTF-8), velg UTF-8 for alle " +"innstillingene for tegnsett. Pass på at fullstendig støtte for Unicode " +"krever at PHP er kompilert med støtte for mbstring biblioteket. Det kan hende du får " +"problemer med å bruke utvidede tegnsett om serveren din ikke fyller disse " +"kravene. Serveren din støtter mbstring: {$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Serveren din lar for øyeblikket disse filene bli opplastet " +"{$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Serveren din lar for øyeblikket filene ha den maksimale størrelsen " +"{$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Primærspråket som skal brukes i dette systemet. Vennligst slå opp i OMP-" +"dokumentasjonen hvis du er interessert i støtte for språk som ikke er " +"oppført her." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Velg øvrige språk som skal støttes i dette systemet. Disse språkene vil bli " +"tilgjengelig til bruk for de tidsskrift nettstedet er vert for. Flere språk " +"kan også installeres når som helst, gjennom grensesnittet for " +"nettstedsadministrasjon." + +msgid "installer.filesDirInstructions" +msgstr "" +"Skriv inn fullstendig sti til en eksisterende mappe hvor opplastede filer " +"skal oppbevares. Denne mappen bør ikke kunne aksesseres direkte fra " +"internett. Vennligst sikre at denne mappen finnes og er overskrivbar " +"før du installerer. Windows filstinavn bør bruke vanlig skråstrek " +"(/), for eks. \"C:/myjournal/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP krever tilgang til en SQL-database for lagring av data. Se listen over " +"databaser som støttes i systemkravene ovenfor. Skriv inn innstillingene som " +"skal brukes for å opprette forbindelsen med databasen i feltene nedenfor." + +msgid "installer.upgradeApplication" +msgstr "Oppgrader Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

        Viktig!

        \n" +"

        Installasjonen kunne ikke automatisk overskrive konfigurasjonsfilen. Før " +"du forsøker å bruke systemet, vennligst åpne config.inc.php i et " +"egnet tekstbehandlingsprogram og erstatt innholdet i den med innholdet i " +"tekstfeltet nedenfor.

        " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

        OMP ble installert.

        \n" +"

        For å begynne å bruke systemet, logg inn med " +"brukernavnet og passord skrevet inn på forrige side.

        \n" +"

        Om du ønsker å bli del av PKP-fellesskapet, kan du:

        \n" +"
          \n" +"\t
        1. LesePKP-bloggen " +"og følgeRSS-" +"tjenesten for nyheter og oppdateringer.
        2. \n" +"\t
        3. Besøk støtteforumet om du har spørsmål og kommentarer.
        4. \n" +"
        " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

        Oppgradering av OMP til versjon {$version} ble gjennomført.

        \n" +"

        Ikke glem å sette «installert»-innstillingen i konfigurasjonsfilen din " +"(config.inc.php) tilbake til «På».

        \n" +"

        Om du ikke allerede har registrert deg og ønsker å motta nyheter og " +"oppdateringer, registrer deg påhttp://pkp.sfu.ca/ojs/register. Hvis " +"du har spørsmål eller kommentarer, besøk støtteforumet.

        " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Ventet-datoen for vurderingsrunde {$round} av manuskriptet {$submissionId} " +"ved {$reviewerName} er satt til {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} har avslått runde {$round} vurdering av manuskript " +"{$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} har akseptert runde {$round} vurdering av manuskript " +"{$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} har markert {$round} runde for innlevering {$submissionId} som " +"uoverveid." + +msgid "log.editor.decision" +msgstr "" +"Redaktørbeslutningen ({$decision}) for artikkelen {$submissionId} ble " +"journalført av {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"En redaksjonell anbefaling ({$decision}) for artikkelen {$submissionId} ble " +"registrert av {$editorName}." + +msgid "log.editor.archived" +msgstr "Manuskriptet {$submissionId} er arkivert." + +msgid "log.editor.restored" +msgstr "Manuskriptet {$submissionId} er hentet tilbake til arbeidsplanen." + +msgid "log.editor.editorAssigned" +msgstr "" +"{$editorName} er oppnevnt som redaktør for manuskriptet {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} har oppnevnt {$proofreaderName} til å korrigere manuskriptet " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} har sendt inn {$submissionId} for planlegging." + +msgid "log.imported" +msgstr "{$userName} har importert artikkel {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Identifikasjonskode lagt til." + +msgid "notification.editedIdentificationCode" +msgstr "Identifikasjonskode redigert." + +msgid "notification.removedIdentificationCode" +msgstr "Identifikasjonskode fjernet." + +msgid "notification.addedPublicationDate" +msgstr "Publiseringsdato lagt til." + +msgid "notification.editedPublicationDate" +msgstr "Publiseringdato redigert." + +msgid "notification.removedPublicationDate" +msgstr "Publiseringsdato fjernet." + +msgid "notification.addedPublicationFormat" +msgstr "Publiseringsformat lagt til." + +msgid "notification.editedPublicationFormat" +msgstr "Publikasjonsformat redigert." + +msgid "notification.removedPublicationFormat" +msgstr "Publikasjonsformat fjernet." + +msgid "notification.addedSalesRights" +msgstr "Salgsrettigheter lagt til." + +msgid "notification.editedSalesRights" +msgstr "Salgsrettigheter redigert." + +msgid "notification.removedSalesRights" +msgstr "Salgsrettigheter fjernet." + +msgid "notification.addedRepresentative" +msgstr "Representant lagt til." + +msgid "notification.editedRepresentative" +msgstr "Representant redigert." + +msgid "notification.removedRepresentative" +msgstr "Representant fjernet." + +msgid "notification.addedMarket" +msgstr "Marked lagt til." + +msgid "notification.editedMarket" +msgstr "Marked redigert." + +msgid "notification.removedMarket" +msgstr "Marked fjernet." + +msgid "notification.addedSpotlight" +msgstr "Spotlight lagt til." + +msgid "notification.editedSpotlight" +msgstr "Spotlight redigert." + +msgid "notification.removedSpotlight" +msgstr "Spotlight fjernet." + +msgid "notification.savedCatalogMetadata" +msgstr "Metadata lagret." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Metadata om publikasjonsformatet lagret." + +msgid "notification.proofsApproved" +msgstr "Korrektur godkjent." + +msgid "notification.removedSubmission" +msgstr "Innlevering fjernet." + +msgid "notification.type.submissionSubmitted" +msgstr "En ny monografi, «{$title}», har blitt innlevert." + +msgid "notification.type.editing" +msgstr "Redigeringsaktivitet" + +msgid "notification.type.reviewing" +msgstr "Vurderingsaktivitet" + +msgid "notification.type.site" +msgstr "Nettstedshenveldelser" + +msgid "notification.type.submissions" +msgstr "Innleveringshendelser" + +msgid "notification.type.userComment" +msgstr "En leser har kommentert «{$title}»." + +msgid "notification.type.public" +msgstr "Oppslag" + +msgid "notification.type.editorAssignmentTask" +msgstr "En ny monografi har blitt levert inn. Opprett en redaktør for den." + +msgid "notification.type.copyeditorRequest" +msgstr "Du har blitt bedt om å se over språvasken av «{$title}»." + +msgid "notification.type.layouteditorRequest" +msgstr "Du har blitt bedt om å se over layouten av «{$title}»." + +msgid "notification.type.indexRequest" +msgstr "Du har blitt bedt om å lage en indeks for «{$title}»." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Den interne vurderingsprosessen har startet." + +msgid "notification.type.approveSubmission" +msgstr "Denne innleveringen avventer godkjennelse før det kan vises i utgaven." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Venter på godkjenning." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Monografien vises ikke i katalogen før den er publisert. For å legge denne " +"boken til katalogen, klikk på fanen Publisering." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Ingen betalingsmetode er konfigurert." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Velg en betalingsmetode før du kan definere innstillinger for e-handel." + +msgid "notification.type.visitCatalogTitle" +msgstr "Katalogadministrasjon" + +#, fuzzy +msgid "notification.type.visitCatalog" +msgstr "" +"Monografien er godkjent. Gå til 'Katalog' for å legge inn " +"kataloginformasjonen ved å bruke katalogkoblingen ovenfor." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "Du har ikke rettigheter til å få tilgang til denne vurderingen." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Du har blitt nektet tilgang fordi du ikke ser ut til å være forfatter av " +"denne monografien." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Du har blitt nektet tilgang fordi du ikke ser ut til å ha fått tildelt " +"rollen som anmelder for denne monografien." + +msgid "user.authorization.monographFile" +msgstr "Du har blitt nektet tilgang til den angitte monografifilen." + +msgid "user.authorization.invalidMonograph" +msgstr "Ugyldig monografi eller ingen monografi forespurt!" + +#, fuzzy +msgid "user.authorization.noContext" +msgstr "Ingen utgiver i denne konteksten!" + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Du prøver å få tilgang til en monografi som ikke er en del av serien din." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" +"Ingen tilgang! Du har ikke blitt assosiert med dette redaksjonelle trinnet." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Ingen tilgang! Brukergruppen du er en del av er ikke tilknyttet dette " +"redaksjonelle trinnet. Sjekk utgiverinnstillingene dine." + +msgid "payment.directSales" +msgstr "Last ned fra utgiverens nettside" + +msgid "payment.directSales.price" +msgstr "Pris" + +msgid "payment.directSales.availability" +msgstr "Tilgjengelighet" + +msgid "payment.directSales.catalog" +msgstr "Katalog" + +msgid "payment.directSales.approved" +msgstr "Godkjent" + +msgid "payment.directSales.priceCurrency" +msgstr "Pris ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Prisene kan bare være numeriske. Ikke ta med valutasymboler." + +msgid "payment.directSales.directSales" +msgstr "Direkte salg" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Ikke tilgjengelig" + +msgid "payment.directSales.notSet" +msgstr "Ikke innstilt" + +msgid "payment.directSales.openAccess" +msgstr "Open Access" + +msgid "payment.directSales.price.description" +msgstr "" +"Filformater kan gjøres tilgjengelige for nedlasting fra forlagets nettsted " +"via Open Access uten kostnad for leserne eller direkte salg (ved hjelp av en " +"online betalingsprosessor konfigurert under Distribusjon). Spesifiser " +"hvilken tilgang som gjelder for denne filen." + +msgid "payment.directSales.validPriceRequired" +msgstr "En gyldig numerisk pris kreves." + +msgid "payment.directSales.purchase" +msgstr "Kjøp {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Last ned {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Kjøp nedlasting av monografi eller kapittel" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Denne transaksjonen er for kjøp av direkte nedlasting av en enkelt monografi " +"eller et monografikapittel." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Last inn XML-hjelp for å kartlegge filen {$filename} for å søke etter {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Bok" + +msgid "submission.pdf.download" +msgstr "Last ned denne PDF-filen" + +msgid "user.profile.form.showOtherContexts" +msgstr "Registrer hos andre utgivere" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Skjul andre utgivere" + +msgid "submission.round" +msgstr "Runde {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "En ugyldig publisert innlevering ble rapportert." + +msgid "catalog.coverImageTitle" +msgstr "Forsidebilde" + +msgid "grid.catalogEntry.chapters" +msgstr "" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +#~ msgid "debug.notes.currencyListLoad" +#~ msgstr "Lastet valutalisten \"{$filename}\" fra XML" + +msgid "section.section" +msgstr "Serier" diff --git a/locale/nb/manager.po b/locale/nb/manager.po new file mode 100644 index 00000000000..e8f968ae0ab --- /dev/null +++ b/locale/nb/manager.po @@ -0,0 +1,1667 @@ +# Tormod Strømme , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-09-22 07:38+0000\n" +"Last-Translator: Tormod Strømme \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Dette vil erstatte alle standard utgiverinnstillingene du hadde for dette " +"språket" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Beklager, ingen flere språk er tilgjengelig. Kontakt " +"nettstedsadministratoren din hvis du ønsker å bruke flere språk i dette " +"tidsskriftet." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Dette vil bli standard språk for utgiverens nettsted." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Minst en avkrysningsrute må være valgt for hver serieredigeringsoppgave." + +msgid "manager.series.form.reviewFormId" +msgstr "Kontroller at du har valgt et gyldig vurderingsskjema." + +msgid "manager.series.submissionIndexing" +msgstr "Vil ikke bli inkludert i utgivernes indeksering" + +msgid "manager.series.editorRestriction" +msgstr "Innleveringer kan bare sendes inn av redaktører og serieredaktører." + +msgid "manager.series.confirmDelete" +msgstr "Er du sikker på at du vil slette denne serien for alltid?" + +msgid "manager.series.indexed" +msgstr "Indeksert" + +msgid "manager.series.open" +msgstr "Åpne innleveringer" + +msgid "manager.series.readingTools" +msgstr "Leseverktøy" + +msgid "manager.series.submissionReview" +msgstr "Vil ikke bli fagfellevurdert" + +msgid "manager.series.submissionsToThisSection" +msgstr "Innleveringer til denne serien" + +msgid "manager.series.abstractsNotRequired" +msgstr "Krev ikke sammendrag" + +msgid "manager.series.disableComments" +msgstr "Deaktiver leserkommentarer vedrørende denne serien." + +msgid "manager.series.book" +msgstr "Bokserier" + +msgid "manager.series.create" +msgstr "Opprett serie" + +msgid "manager.series.policy" +msgstr "Seriebeskrivelse" + +msgid "manager.series.assigned" +msgstr "Redaktører til denne serien" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Legg til en serieredaktør i denne serien fra tilgjengelige serieredaktører. " +"Når redaktøren er lagt til, må du indikere om serieredaktøren vil ha tilsyn " +"med VURDERING (fagfellevurdering) og/eller REDIGERING (redigering av " +"manuskript, layout og korrekturlesing) av innleveringer i forbindelse med " +"denne serien. Serieredaktører opprettes ved å klikke på Serieredaktører under Roller i utgiver-" +"administrasjon." + +msgid "manager.series.hideAbout" +msgstr "Utelat denne serien fra \"Om utgiveren\"." + +msgid "manager.series.unassigned" +msgstr "Tilgjengelige serieredaktører" + +msgid "manager.series.form.abbrevRequired" +msgstr "En forkortet tittel til serien kreves." + +msgid "manager.series.form.titleRequired" +msgstr "En serietittel kreves." + +msgid "manager.series.noneCreated" +msgstr "Det er ikke opprettet noen serier." + +msgid "manager.series.existingUsers" +msgstr "Eksisterende brukere" + +msgid "manager.series.seriesTitle" +msgstr "Serietittel" + +msgid "manager.series.restricted" +msgstr "Ikke tillat forfattere å sende inn direkte til denne serien." + +msgid "manager.payment.generalOptions" +msgstr "Generelle innstillinger" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Slå på betalinger vedrørende denne utgiveren. Merk at brukerne må logge på " +"for å foreta betalinger." + +msgid "manager.payment.success" +msgstr "Betalingsinnsillingene har blitt oppdatert." + +msgid "manager.settings" +msgstr "Innstillinger" + +msgid "manager.settings.pressSettings" +msgstr "Utgiverinnstillinger" + +msgid "manager.settings.press" +msgstr "Utgiver" + +msgid "manager.settings.publisher.identity" +msgstr "Utgiveridentitet" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Disse feltene er obligatoriske for å publiserer gyldige ONIX-metadata." + +msgid "manager.settings.publisher" +msgstr "Utgiverens navn" + +msgid "manager.settings.location" +msgstr "Geografisk plassering" + +msgid "manager.settings.publisherCode" +msgstr "Utgiverkode" + +msgid "manager.settings.publisherCodeType" +msgstr "Type utgiverkode" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Dette er ikke en gyldig utgiverkode." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Alle innstillinger som er spesifikke for distribusjonsprosessen (meldinger, " +"indeksering, arkivering, betaling, leseverktøy)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Nedlasting av filer" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Visninger av monografiers sammendragside" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Monografisammendrag og nedlastinger" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Visninger av seriens hovedside" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Visninger av utgiverens hovedside" + +msgid "manager.tools" +msgstr "Verktøy" + +msgid "manager.tools.importExport" +msgstr "" +"Alle verktøy som er spesifikke for import og eksport av data (utgivere, " +"monografier, brukere)" + +msgid "manager.tools.statistics" +msgstr "" +"Verktøy for å generere rapporter relatert til bruksstatistikk (sideindeks " +"for katalogindeks, oversikt over sidevisning, nedlasting av monografifiler)" + +msgid "manager.users.availableRoles" +msgstr "Tilgjengelige roller" + +msgid "manager.users.currentRoles" +msgstr "Aktuelle roller" + +msgid "manager.users.selectRole" +msgstr "Velg rolle" + +msgid "manager.people.allEnrolledUsers" +msgstr "Registrerte brukere med roller hos denne utgiveren" + +msgid "manager.people.allPresses" +msgstr "Alle utgivere" + +msgid "manager.people.allSiteUsers" +msgstr "Verv en bruker fra denne plattformen til denne utgiveren" + +msgid "manager.people.allUsers" +msgstr "Alle brukere" + +msgid "manager.people.confirmRemove" +msgstr "" +"Vil du fjerne denne brukeren fra denne utgiveren? Denne handlingen vil " +"frigjøre brukeren fra alle roller hos denne utgiveren." + +msgid "manager.people.enrollExistingUser" +msgstr "Verv en eksisterende bruker" + +msgid "manager.people.enrollSyncPress" +msgstr "Med utgiver" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Velg en bruker du vil slå sammen med en annen brukerkonto (for eks. når noen " +"har to brukerkontoer). Den først valgte kontoen vil bli slettet og " +"tilhørende manuskript, oppdrag etc. vil bli overført til den andre kontoen." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Velg en bruker du vil overføre den foregående brukerens forfatterskap, " +"redigeringsoppdrag etc." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Vervingssynkronisering verver alle brukere som allerede er vervet i angitt " +"rolle hos den spsifiserte utgiveren til samme rolle hos denne utgiveren. " +"Denne funksjonen tillater at et felles sett brukere (for eks. fagfeller) " +"synkroniseres mellom utgivere." + +msgid "manager.people.confirmDisable" +msgstr "" +"Slå av denne brukeren? Dette vil hindre brukeren fra å logge inn på " +"systemet.\n" +"\n" +"Du kan velge å gi brukeren en begrunnelse for at kontoen er slått av." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Beklager, du har ikke administrative rettigheter over denne brukeren. Dette " +"kan være fordi:\n" +"\t\t
          \n" +"\t\t\t
        • Brukeren er nettstedsadministrator
        • \n" +"\t\t\t
        • Brukeren er aktiv hos en utgiver du ikke administrerer
        • \n" +"\t\t
        \n" +"\tDenne handlingen må utføres av en nettstedsadministrator.\n" +"\t" + +msgid "manager.system" +msgstr "Systeminnstillinger" + +msgid "manager.system.archiving" +msgstr "Arkivering" + +msgid "manager.system.reviewForms" +msgstr "Fagfellevurderingsskjema" + +msgid "manager.system.readingTools" +msgstr "Leseverktøy" + +msgid "manager.system.payments" +msgstr "Betalinger" + +msgid "user.authorization.pluginLevel" +msgstr "" +"Du har ikke tilstrekkelige brukerrettigheter til å administrere dette " +"programtillegget." + +msgid "manager.pressManagement" +msgstr "Utgiverinnstillinger" + +msgid "manager.setup" +msgstr "Innstillinger" + +msgid "manager.setup.aboutItemContent" +msgstr "Innhold" + +msgid "manager.setup.addAboutItem" +msgstr "Legg til om-element" + +msgid "manager.setup.addChecklistItem" +msgstr "Legg til sjekklisteelement" + +msgid "manager.setup.addItem" +msgstr "Legg til element" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Legg til element i \"Om utgiveren\"" + +msgid "manager.setup.addNavItem" +msgstr "Legg til element" + +msgid "manager.setup.addSponsor" +msgstr "Legg til sponsor" + +msgid "manager.setup.announcements" +msgstr "Oppslagstavle" + +msgid "manager.setup.announcements.success" +msgstr "Oppslagsinnstillingene har blitt oppdatert." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Oppslag kan publiseres for å informere leserne om nyheter og hendelser. " +"Publiserte oppslag vises på 'Oppslag'-siden." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Annen informasjon" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Skriv inn øvrig informasjon som skal vises til lesere på oppslagstavlen." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Vises i Om utgiveren) " + +msgid "manager.setup.contextAbout" +msgstr "Om utgiveren" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Ta med informasjon om utgiveren din som kan være av interesse for lesere, " +"forfattere eller fagfeller. Dette kan omfatte policyen for åpen tilgang, " +"fokus og utgiverens mål, sponsing og utgiverens historie." + +msgid "manager.setup.contextSummary" +msgstr "Kort beskrivelse av utgiveren" + +msgid "manager.setup.copyediting" +msgstr "Manusredaktører" + +msgid "manager.setup.copyeditInstructions" +msgstr "Manuskriptredaktørveiledninger" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Manuskriptredigeringsveiledninger blir gjort tilgjengelig for " +"manuskriptredaktører, forfattere og seksjonsredaktører på redigeringsstadiet " +"for innlevering. Nedenfor er et standard sett med instruksjoner i HTML, som " +"kan endres eller erstattes av utgiveren når som helst (i HTML eller ren " +"tekst)." + +msgid "manager.setup.copyrightNotice" +msgstr "Erklæring om opphavsrett" + +msgid "manager.setup.coverage" +msgstr "Dekning" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Makshøyde for forsidebilde" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Maksbredde for forsidebilde" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Bilder forminskes når de er større enn denne størrelsen, men blir aldri " +"oppskalert eller strukket for å passe til disse dimensjonene." + +msgid "manager.setup.customizingTheLook" +msgstr "Trinn 5. Tilpasning av utseendet" + +msgid "manager.setup.customTags" +msgstr "Brukerdefinerte etiketter" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Brukerdefinerte HTML header-tagger som skal føres inn i header-seksjonen til " +"hver side (for eks. META tagger)." + +msgid "manager.setup.details" +msgstr "Detaljer" + +msgid "manager.setup.details.description" +msgstr "Navn på utgiver, ISSN, kontakter, sponsorer, og søkemotorer." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Slå av brukerregistrering. Brukere må opprettes manuelt av en " +"redaksjonsleder." + +msgid "manager.setup.discipline" +msgstr "Akademisk fagområde og felt" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Spesielt nyttig når tidsskrift krysser grensene mellom fagfelt og/eller " +"forfattere sender inn tverrfaglige bidrag." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(For eks. historie; utdanningsvitenskap; sosiologi; psykologi; " +"kulturstudier; statsvitenskap)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "Gi eksempler på relevante fagemner for denne utgiveren" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Legg till innholdsfortegnelsen for denne boken (hvis den finnes)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Innhold på hovedsiden" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Vis utvalgte bøker på hovedsiden" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Utvalgte bøker" + +msgid "manager.setup.displayInSpotlight" +msgstr "Vis bøker fra spotlight på hovedsiden" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Spotlight" + +msgid "manager.setup.displayNewReleases" +msgstr "Vis nye utgivelser på hovedsiden" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Nyutgivelser" + +msgid "manager.setup.enableDois.description" +msgstr "" + +#, fuzzy +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "Velg objektene som skal tilordnes DOI." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "" + +msgid "manager.dois.formatIdentifier.file" +msgstr "" + +msgid "manager.setup.editorDecision" +msgstr "Redaktørens beslutning" + +msgid "manager.setup.emailBounceAddress" +msgstr "Feilmeldingsadresse" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Alle e-poster som ikke kan leveres, vil utløse en feilmelding som sendes til " +"denne adressen." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"NB: For å aktivere denne valgmuligheten, må " +"nettstedsadministratoren slå på allow_envelope_sender " +"valgmuligheten i OMP konfigurasjonsfilen. Ytterligere serverkonfigurasjon " +"kan være nødvendig for å støtte denne funksjonen (som likevel kan være " +"umulig å bruke på enkelte servere), som oppgitt i OMP-dokumentasjonen." + +msgid "manager.setup.emails" +msgstr "E-post identifikasjon" + +msgid "manager.setup.emailSignature" +msgstr "Signatur" + +#, fuzzy +msgid "manager.setup.emailSignature.description" +msgstr "" +"De forberedte e-postene som blir sendt av systemet på vegne av tidsskriftet " +"kommer til å ha følgende signatur nederst." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Aktiver mulighet for å lage oppslag" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Oppslag kan publiseres for å informere lesere om tidsskriftnyheter og " +"begivenheter. Publiserte oppslag vises på oppslagstavlen." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Vis på hovedsiden" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Hvor mange oppslag som skal vises på hovedsiden. La dette være tomt hvis du " +"ikke ønsker å vise noen." + +msgid "manager.setup.enablePressInstructions" +msgstr "Vis denne utgiveren på nettstedet" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Brukerdefinerte identifikatorer brukes til å identifisere publisert innhold." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Brukerdefinerte identifikatorer brukes til å identifisere " +"publiseringsversjoner (for eksempel HTML- eller PDF-filer) av publisert " +"innhold." + +msgid "manager.setup.enableUserRegistration" +msgstr "La brukere registrere seg på utgiverens nettsted." + +msgid "manager.setup.focusAndScope" +msgstr "Hovedfokus og spennvidde" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Beskriv spennvidden på artikler og annet innhold som utgiveren vil publisere " +"til forfattere, lesere og bibliotekarer." + +msgid "manager.setup.focusScope" +msgstr "Hovedfokus og spennvidde" + +msgid "manager.setup.focusScopeDescription" +msgstr "EXAMPLE HTML DATA" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Til forfattere for å indeksere eget verk" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP følger Open " +"Archives Initiative protokoll for innhøsting av metadata, som er en " +"framtidsrettet indekseringsstandard som gir tilgang til elektroniske " +"forskningsressurser på verdensbasis. Forfatterene kommer til å bruke en " +"tilpasset mal for å oppgi slike metadata for sitt manuskript. " +"Redaksjonslederen bør velge kategoriene for indeksering, og gi forfatterene " +"relevante eksempler til hjelp ved indekseringen. Disse termene skal holdes " +"atskilt med a semikolon (for eks. term1; term2). Merk eksemplene som " +"eksempler ved å bruke \"For eks.\" eller \"For eksempel,\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Hovedkontaktens e-post kreves." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Hovedkontaktens navn kreves." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Antallet fagkonsulenter per manuskript kreves." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Kontaktpersonens e-post må legges inn." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Navn på teknisk Teknisk kontaktpersons navn legges inn." + +msgid "manager.setup.generalInformation" +msgstr "Generell informasjon" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Trinn 1. Detaljene først" + +msgid "manager.setup.guidelines" +msgstr "Retningslinjer" + +msgid "manager.setup.preparingWorkflow" +msgstr "Trinn 3. Forbered arbeidsflyten" + +msgid "manager.setup.identity" +msgstr "Utgiveridentitet" + +msgid "manager.setup.information" +msgstr "Informasjon" + +msgid "manager.setup.information.description" +msgstr "" +"Korte beskrivelser av utgivelsen for interesserte bibliotekarer, forfattere, " +"og lesere som blir tilgjengelig i 'informasjon'-delen av sidefeltet." + +msgid "manager.setup.information.forAuthors" +msgstr "For forfattere" + +msgid "manager.setup.information.forLibrarians" +msgstr "For bibliotekarer" + +msgid "manager.setup.information.forReaders" +msgstr "For lesere" + +msgid "manager.setup.information.success" +msgstr "Utgiverinformasjonen har blitt oppdatert." + +msgid "manager.setup.institution" +msgstr "Institusjon" + +msgid "manager.setup.itemsPerPage" +msgstr "Elementer per side" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Begrens antall oppføringer (for eksempel innleveringer, brukere eller " +"redigeringsoppgaver) som skal vises i en liste på én nettside, før de resten " +"av oppføringene vises på en annen side." + +msgid "manager.setup.keyInfo" +msgstr "Nøkkelinformasjon" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Gi en kort beskrivelse av utgiveren din og identifiser redaktører, " +"tidsskriftsansvarlige og andre medlemmer av redaksjonen din." + +msgid "manager.setup.labelName" +msgstr "Etikettnavn" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Layoutredaktører" + +msgid "manager.setup.layoutInstructions" +msgstr "Layoutinstruksjoner" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Layoutinstruksjoner for formatering av forlagets publiseringsmateriale kan " +"utarbeides og angis nedenfor i HTML eller ren tekst. De vil bli gjort " +"tilgjengelig for layoutredigereren og seksjonsredigereren på " +"manuskriptredigeringssiden for hver innsending. (Ettersom hver utgiver kan " +"velge sine egne filformater, bibliografiske standarder, stilark osv., Gis " +"ikke en standardinstruksjon.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Layoutmaler" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Maler kan lastes opp slik at de vises under layout for hvert av " +"standardformatene som utgis av utgiveren (f.eks. Monografi, bokanmeldelse " +"osv.) Og for ethvert filformat (f.eks. Pdf, doc osv.) Med tillegg " +"kommentarer og spesifisering av skrift, størrelse, marginer osv. slik at den " +"kan fungere som en veiledning for layoutredaktører og språkvaskere." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Malfil" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Tittel" + +msgid "manager.setup.lists" +msgstr "Lister" + +msgid "manager.setup.lists.success" +msgstr "Utgiverens listeinnstillinger har blitt oppdatert." + +msgid "manager.setup.look" +msgstr "Utseendet" + +msgid "manager.setup.look.description" +msgstr "" +"Hjemmesidetopptekst, innhold, utgiverens-topptekst, bunntekst, " +"navigasjonsfelt, og stylesheet." + +msgid "manager.setup.settings" +msgstr "Innstillinger" + +msgid "manager.setup.management.description" +msgstr "" +"Planlegging, nettilgang, oppslag, og bruk av manusredaktører, " +"layoutredaktører og korrekturlesere." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Administrasjon av grunnleggende redaksjonelle trinn" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Administrasjons- og publiseringsoppsett" + +msgid "manager.setup.managingThePress" +msgstr "Steg 4. Håndtering av innstillingene" + +msgid "manager.setup.masthead.success" +msgstr "Tidsskriftets kolofonopplysninger har blitt oppdatert." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Ingen bildefil er lastet opp." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Ingen stylesheet lastet opp." + +msgid "manager.setup.note" +msgstr "Merknad" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Når e-postfunksjonen 'Send beskjed til forfatter' brukes skal e-posten " +"sendes til alle medforfattere, ikke bare til den forfatteren som sendte inn " +"manuskriptet." + +msgid "manager.setup.noUseCopyeditors" +msgstr "Språkvask vil bli utført av redaktøren eller en seksjonsredaktør." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Redaktørene kommer til å lage sideoppsett i format som egner seg for " +"elektronisk publisering." + +msgid "manager.setup.noUseProofreaders" +msgstr "Redaktørene og forfattere kommer til å korrigere sideoppsett." + +msgid "manager.setup.numPageLinks" +msgstr "Sidelenker" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Begrens antallet lenker som skal vises på hver side i en liste, før resten " +"blir vist på påfølgende sider." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Tilgang til utgiverinnhold" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN for nettutgaven" + +msgid "manager.setup.policies" +msgstr "Retningslinjer" + +msgid "manager.setup.policies.description" +msgstr "" +"Hovedfokus, fagvurdering, seksjoner, personopplysninger, sikkerhet, og " +"øvrige Om-emner." + +msgid "manager.setup.privacyStatement.success" +msgstr "Personvernerklæringen har blitt oppdatert." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Ulike komponenter som inngår i utgiverens utseende og design, kan " +"konfigureres fra denne siden, inkludert topp- og bunntekstelementer, temaer " +"og hvordan informasjonslister presenteres for brukerne." + +msgid "manager.setup.pressDescription" +msgstr "Utgiversammendrag" + +msgid "manager.setup.pressDescription.description" +msgstr "En kort beskrivelse av utgiveren." + +msgid "manager.setup.aboutPress" +msgstr "Om utgiveren" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Ta med all informasjon om utgiveren din som kan være av interesse for " +"lesere, forfattere eller anmeldere. Dette kan omfatte retningslinjene for " +"åpen tilgang, forlagets fokusområde, opphavsrett, sponsormelding, " +"forlagshistorikk og en personvernerklæring." + +msgid "manager.setup.pressArchiving" +msgstr "Arkivering" + +msgid "manager.setup.homepageContent" +msgstr "Innhold på hjemmesiden" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Som standard består hjemmesiden av navigasjonslenker. Ytterligere " +"hjemmesideinnhold kan legges til ved å bruke en eller flere av følgende " +"valgmuligheter, som vil bli vist i den viste rekkefølgen." + +msgid "manager.setup.pressHomepageContent" +msgstr "Utgiverens hovedside" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Som standard består forlagets nettsted av en serie navigasjonskoblinger. " +"Ytterligere nettstedinnhold kan legges til ved hjelp av ett eller flere av " +"følgende alternativer som vises i den viste rekkefølgen." + +msgid "manager.setup.contextInitials" +msgstr "Utgiverinitialer" + +msgid "manager.setup.selectCountry" +msgstr "" + +msgid "manager.setup.layout" +msgstr "Utgiverlayout" + +msgid "manager.setup.pageHeader" +msgstr "Utgiverens topptekst" + +msgid "manager.setup.pageHeaderDescription" +msgstr "" + +msgid "manager.setup.pressPolicies" +msgstr "Trinn 2. Utgiverens retningslinjer" + +msgid "manager.setup.pressSetup" +msgstr "Utgiverkonfigurasjon" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Utgiverkonfigurasjonen har blitt oppdatert." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Ugyldig stylesheet-format. Godkjent format er .css." + +msgid "manager.setup.pressTheme" +msgstr "Utseendemal" + +msgid "manager.setup.pressThumbnail" +msgstr "Utgiverens miniatyrbilde" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"En liten logo eller representasjon av forlaget som kan brukes i oppføringer." + +msgid "manager.setup.contextTitle" +msgstr "Utgivernavn" + +msgid "manager.setup.printIssn" +msgstr "ISSN for trykt utgave" + +msgid "manager.setup.proofingInstructions" +msgstr "Instruks for korrekturlesing" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Instruksen for korrekturlesing vil bli gjort tilgjengelig for " +"korrekturlesere, forfattere, layoutredaktører og seksjonsredaktører i " +"manuskriptbehandlingsstadiet. Nedenfor finner du standardinstruksjoner (i " +"HTML), som kan redigeres eller erstattes av redaksjonslederen når som helst " +"(i HTML eller ren tekst)." + +msgid "manager.setup.proofreading" +msgstr "Korrekturlesere" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Gjør instruksjoner tilgjengelig for layoutredaktører." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Innhold kan publiseres samlet, som del av en utgave med egen " +"innholdsoversikt. Alternativt kan enkeltelementene publiseres løpende, etter " +"hvert som de er ferdigstilt, og da legges de til i nyeste nummers " +"innholdsoversikt. I 'Om' tidsskriftet skal leserne finne opplysningene om " +"hvilket av disse to systemene dette tidsskriftet vil bruke, og om forventet " +"utgivelsesfrekvens." + +msgid "manager.setup.publisher" +msgstr "Utgiver" + +msgid "manager.setup.publisherDescription" +msgstr "Navnet på organisasjonen bak utgiveren vises i 'Om forlaget'." + +msgid "manager.setup.referenceLinking" +msgstr "Aktive henvisningslenker" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Layoutinstruksjoner for referanselinking" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Brukere må være registrert og logget inn for å se innhold med åpen tilgang." + +msgid "manager.setup.restrictSiteAccess" +msgstr "Brukere må logge inn for å se tidsskriftets nettsted." + +msgid "manager.setup.reviewGuidelines" +msgstr "Instruks for fagfeller" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Vis kriterier for å gjøre en vurdering av innleveringens egnethet for " +"publisering hos forlaget tilgjengelig for eksterne korrekturlesere. Den kan " +"inneholde instruksjoner om hvordan du forbereder en effektiv og nyttig " +"vurdering. Kritikere vil ha muligheten til å formidle kommentarer adressert " +"til forfatteren og redaktøren, samt separate kommentarer til redaktøren." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Retningslinjer for intern vurdering" + +msgid "manager.setup.reviewOptions" +msgstr "Fagfellevurderingsinnstillinger" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Automatiserte e-post purringer" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Merk For å aktivere automatiske epostvarsler, må " +"nettstedsadministratoren slå på valgmuligheten planlagte_oppgaver i " +"OJS-konfigurasjonsfilen. Annen serverkonfigurasjon kan være nødvendig for å " +"støtte denne funksjonen (som likevel kan være umulig å bruke på enkelte " +"servere), som oppgitt i OJS-dokumentasjonen." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Redaktører kommer til å vurdere fagfellene på en fempunkts skala etter hvert " +"vurderingsoppdrag." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Begrens filtilgang" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Fagfeller kommer til å få tilgang til manuskriptfilen bare etter å ha " +"akseptert vurderingsoppdraget." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Fagfelletilgang" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Slå på ettklikks tilgang for fagfellene" + +#, fuzzy +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"NB: E-post-invitasjonen til fagkonsulenter kommer til å " +"inneholde en spesiell URL som binger den inviterte fagfellen direkte til " +"fagvurderingssiden for det aktuelle manuskriptet (tilgang til andre sider " +"vil likevel kreve innlogging). Med denne valgmuligheten slått på, kan ikke " +"redaktørene endre e-postadresser eller legge til kopier eller blindkopier " +"ved bestilling av fagvurderinger (av sikkerhetsgrunner)." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Inkluder en sikker lenke i e-postinvitasjonen til anmeldere." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Vurdering av fagfeller" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Fagfelle-purringer" + +msgid "manager.setup.reviewPolicy" +msgstr "Om fagvurderingsprosessen" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Gi en kort beskrivelse (50-300 tegn) av tidsskriftet som søkemotorene kan " +"presentere når tidsskriftet vises blant søkeresultatene." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Søkermotorindeksering" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"For at brukere av søkemotorer skal finne dette tidsskriftet, bør du gi en " +"kort beskrivelse av tidsskriftet. Du oppfordres til å sende inn sitemap." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Innstillingene knyttet til søkemotorindeksen er oppdatert." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Seksjoner og seksjonsredaktører" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Hvis seksjoner ikke er angitt, vil bidraget bli sendt inn til Monografier.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"For å opprette eller endre seksjoner for utgiveren (f.eks. monografier, " +"bokanmeldelser, etc.), gå til seksjonsadministrasjon.

        Når " +"forfattere sender en innlevering til utgiveren, kommer de til å angi ..." + +msgid "manager.setup.securitySettings" +msgstr "Tilgang og sikkerhetsinnstillinger" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Andre sikkerhets- og tilgangsrelaterte innstillinger kan konfigureres fra Tilgang " +"og sikkerhet-siden." + +msgid "manager.setup.selectEditorDescription" +msgstr "" +"Utgiverredaktøren som skal følge bidraget gjennom den redaksjonelle " +"prosessen." + +msgid "manager.setup.selectSectionDescription" +msgstr "Seksjonen bidraget skal vurderes for." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "Vis alltid sideoppsettlenker og indikér om tilgangen er begrenset." + +msgid "manager.setup.siteAccess.view" +msgstr "Nettstedstilgang" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Se monografiinnhold" + +msgid "manager.setup.stepsToPressSite" +msgstr "Fem trinn til et utgivernettsted" + +msgid "manager.setup.subjectExamples" +msgstr "(F.eks. fotosyntese; sorte hull; Gödels teorem; Zenons paradokser)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Emneord" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Gi eksempler på relevante nøkkelord eller emneord, til veiledning for " +"forfatterene" + +msgid "manager.setup.submissionGuidelines" +msgstr "Retningslinjer for innlevering av manuskript" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Sjekklisteelement kreves." + +msgid "manager.setup.workflow" +msgstr "Arbeidsflyt" + +msgid "manager.setup.submissions.description" +msgstr "" +"Forfatterinstruks, opphavsrett, og indeksering (herunder registrering)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(F.eks. historisk studium; tankeeksperiment; feltundersøkelse; retorisk " +"analyse; aksjonsforskning; kartlegging/intervju)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Type (metode/innfallsvinkel)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Gi eksempler på relevante forskningstyper, metoder og innfallsvinkler for " +"dette fagfeltet" + +msgid "manager.setup.useCopyeditors" +msgstr "" +"Utgiveren kommer til å utpeke manusredaktører for bearbeiding av hvert " +"manuskript." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Utgiveren skal ha redaksjons- eller fagfelleråd." + +msgid "manager.setup.useImageTitle" +msgstr "Tittelbilde" + +msgid "manager.setup.useStyleSheet" +msgstr "Utgiverens stilark" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Tidsskriftet kommer til å utpeke layoutredaktører for å lage sideoppsett i " +"HTML, PDF, PS osv. for elektronisk publisering." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Utgiveren kommer til å utpeke korrekturlesere som vil korrigere " +"korrekturutskriftene (sammen med forfatterene)." + +msgid "manager.setup.userRegistration" +msgstr "Brukerregistrering" + +msgid "manager.setup.useTextTitle" +msgstr "Titteltekst" + +msgid "manager.setup.volumePerYear" +msgstr "Utgaver per år" + +msgid "manager.setup.publicationFormat.code" +msgstr "Format" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Et format må velges." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Du må gi et navn til dette formatet." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Er dette et fysisk (ikke-digitalt) format?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Siden dette publiseringsformatet for øyeblikket er koblet til en av " +"forlagets monografier, kan det ikke slettes." + +msgid "manager.setup.newPublicationFormat" +msgstr "Nytt publiseringsformat" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"For å opprette et nytt publiseringsformat må du fylle ut følgende skjema og " +"tryppe på knappen 'Opprett'." + +msgid "manager.setup.genresDescription" +msgstr "" +"Disse sjangrene brukes til filnavn og presenteres i en rullegardinmeny når " +"du laster opp filer. Sjangrene som heter ## tillater brukeren å knytte filen " +"til enten hele 99Z-boka eller et bestemt kapittel etter nummer (f.eks. 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Denne utgiveren tar ikke imot innleveringer på nåværende tidspunkt. Gå til " +"arbeidsflytinnstillingene for å tillate innleveringer." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Forhindre brukere fra å sende inn nye innleveringer til utgiveren. " +"Innleveringer kan deaktiveres for individuelle serier på siden utgiverserier." + +msgid "manager.setup.genres" +msgstr "Sjanger" + +msgid "manager.setup.newGenre" +msgstr "Ny monografisjanger" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"For å opprette en ny sjanger, fyll ut skjemaet nedenfor og klikk \"Opprett\" " +"-knappen." + +msgid "manager.setup.deleteSelected" +msgstr "Slett valgte" + +msgid "manager.setup.restoreDefaults" +msgstr "Gjenopprett standardinnstillinger" + +msgid "manager.setup.prospectus" +msgstr "Prospektveiledning" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Prospektveiledningen er et dokument utarbeidet av forlaget for å hjelpe " +"forfatteren med å beskrive materialet som sendes inn på en måte som gjør at " +"en forlegger kan bestemme verdien av innleveringen. Et prospekt kan dekke en " +"rekke aspekter - fra markedsføringspotensial til teoretisk verdi. Uansett " +"bør en utgiver lage en prospektveiledning som utfyller deres " +"publiseringsagenda." + +msgid "manager.setup.submitToCategories" +msgstr "Tillat kategoriinnleveringer" + +msgid "manager.setup.submitToSeries" +msgstr "Tillat serieinnleveringer" + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN (International Standard Serial Number) er et åttesifret nummer som " +"identifiserer tidsskrifter inkludert elektroniske serier. Et nummer er " +"tilgjengelig fra ISSN " +"International Center ." + +msgid "manager.setup.currentFormats" +msgstr "Aktuelle formater" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Kategorier og serier" + +msgid "manager.setup.categories.description" +msgstr "" +"Du kan lage en liste over kategorier for å organisere publikasjonene dine. " +"Kategorier kan være grupperinger av bøker etter emne, for eksempel økonomi; " +"litteratur; poesi; etc. Kategorier kan være innebygd under \"overordnede\" " +"kategorier: For eksempel kan en hovedkategori av økonomi omfatte " +"individuelle mikroøkonomiske og makroøkonomiske kategorier. Besøkende vil " +"kunne søke i og bla gjennom forlaget via kategorier." + +msgid "manager.setup.series.description" +msgstr "" +"Du kan lage et hvilket som helst antall serier for å organisere " +"publikasjonene dine. En serie representerer et bestemt sett med bøker som er " +"knyttet til et tema eller emner som noen har foreslått, ofte et " +"fakultetsmedlem, og den personen fører tilsyn med. Besøkende vil kunne søke " +"i og bla gjennom forlaget via serier." + +msgid "manager.setup.reviewForms" +msgstr "Fagfellevurderingsskjema" + +msgid "manager.setup.roleType" +msgstr "Rolletype" + +msgid "manager.setup.authorRoles" +msgstr "Forfatterroller" + +msgid "manager.setup.managerialRoles" +msgstr "Administrative roller" + +msgid "manager.setup.availableRoles" +msgstr "Tilgjengelige roller" + +msgid "manager.setup.currentRoles" +msgstr "Aktuelle roller" + +msgid "manager.setup.internalReviewRoles" +msgstr "Interne vurderingsroller" + +msgid "manager.setup.masthead" +msgstr "Kolofon" + +msgid "manager.setup.editorialTeam" +msgstr "Redaksjon" + +msgid "manager.setup.editorialTeam.description" +msgstr "Liste over redaktører, ledelse og andre personer tilknyttet utgiveren." + +msgid "manager.setup.files" +msgstr "Filer" + +msgid "manager.setup.productionTemplates" +msgstr "Produksjonsmaler" + +msgid "manager.files.note" +msgstr "" +"NB: Filutforskeren er en avansert funksjon som gir mulighet til å manipulere " +"filene og mappene til tidsskriftet direkte." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

        Forslag til Creative Commons Copyright Notices på engelsk

        \n" +"

        1. Forslag til retningslinjer for tidsskrift som tilbyr Open Access

        \n" +"Authors who publish with this journal agree to the following terms:\n" +"
          \n" +"\t
        1. Authors retain copyright and grant the journal right of first " +"publication with the work simultaneously licensed under a Creative Commons " +"Attribution License that allows others to share the work with an " +"acknowledgement of the work's authorship and initial publication in this " +"journal.
        2. \n" +"\t
        3. Authors are able to enter into separate, additional contractual " +"arrangements for the non-exclusive distribution of the journal's published " +"version of the work (e.g., post it to an institutional repository or publish " +"it in a book), with an acknowledgement of its initial publication in this " +"journal.
        4. \n" +"\t
        5. Authors are permitted and encouraged to post their work online (e.g., " +"in institutional repositories or on their website) prior to and during the " +"submission process, as it can lead to productive exchanges, as well as " +"earlier and greater citation of published work (See The Effect of Open " +"Access).
        6. \n" +"
        \n" +"\n" +"

        Forslag til retningslinjer for tidsskrift som tilbyr utsatt Open " +"Access (OA etter en karantenetid)

        \n" +"Authors who publish with this journal agree to the following terms:\n" +"
          \n" +"\t
        1. Authors retain copyright and grant the journal right of first " +"publication, with the work [SPECIFY PERIOD OF TIME] after publication " +"simultaneously licensed under a Creative Commons Attribution License that allows others to share the work with an acknowledgement of the " +"work's authorship and initial publication in this journal.
        2. \n" +"\t
        3. Authors are able to enter into separate, additional contractual " +"arrangements for the non-exclusive distribution of the journal's published " +"version of the work (e.g., post it to an institutional repository or publish " +"it in a book), with an acknowledgement of its initial publication in this " +"journal.
        4. \n" +"\t
        5. Authors are permitted and encouraged to post their work online (e.g., " +"in institutional repositories or on their website) prior to and during the " +"submission process, as it can lead to productive exchanges, as well as " +"earlier and greater citation of published work (See The Effect of Open " +"Access).
        6. \n" +"
        " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Trinn: Manuskriptarbeidskø > Manuskriptvurdering > " +"Manuskriptbehandling > Innholdsfortegnelse.

        \n" +"Velg en modell for håndtering av disse sidene av den redaksjonelle " +"prosessen. (For å oppnevne ansvarlig redaktør og seksjonsredaktører; gå til " +"Redaktører i tidsskriftadministrasjon.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

        For at lesere lett skal kunne finne nettpubliserte versjoner av verk " +"forfattere henviser til i artiklene sine, finnes følgende muligheter.

        \n" +"\n" +"
          \n" +"\t
        1. Legg til et Leseverktøy

          Redaksjonslederen kan legge " +"til verktøyet \"Finn henvisning\" i Leseverktøy som vises i sidespalten ved " +"publiserte artikler. Med dette verktøyet kan leseren lime inn tittelen fra " +"en henvisning for å søke etter verket i egnete søkeverktøy som er valgt på " +"forhånd av tidsskriftet.

        2. \n" +"\t
        3. Legg inn lenker i henvisningene

          Layoutredaktøren " +"kan legge inn aktive lenker direkte i artikkelfilens henvisninger ved å " +"følge instruksen nedenfor (som kan redigeres).

        4. \n" +"
        " + +msgid "manager.publication.library" +msgstr "Utgivers bibliotek" + +msgid "manager.setup.resetPermissions" +msgstr "Tilbakestill monografirettigheter" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Er du sikker på at du vil tilbakestille data om rettighetene som allerede er " +"knyttet til artiklene?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Erklæring om opphavsrett og lisensinformasjon vil bli permanent knyttet til " +"publisert materiale. Det betyr at data ikke vil forandres dersom " +"tidsskriftet endrer retningslinjer for nye innleveringer. For å " +"tilbakestille informasjonen allerede lagt ved det publiserte materialet, " +"bruk knappen under." + +msgid "manager.setup.resetPermissions.success" +msgstr "Monografitillatelsene ble tilbakestilt." + +msgid "grid.genres.title.short" +msgstr "Komponenter" + +msgid "grid.genres.title" +msgstr "Monografikomponenter" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Send en kopi til tidsskriftets hovedkontakt, som ble oppgitt i " +"utgiverinnstillingene." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Seriestien kan kun bestå av bokstaver og tall." + +msgid "grid.series.pathExists" +msgstr "Seriestien finnes allerede. Skriv inn en unik sti." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Velg serier" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Velg serien som du ønsker at dette menypunktet skal lenke til." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Velg kategori" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "Velg den kategorien som du ønsker at dette menypunktet skal lenke til." + +msgid "grid.series.urlWillBe" +msgstr "Seriens URL blir: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "Monografistatistikk" + +msgid "stats.publications.details" +msgstr "Monografiopplysninger" + +msgid "stats.publications.none" +msgstr "" +"Ingen monografier med bruksstatistikk som samsvarer med disse parameterne " +"ble funnet." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Totalt antall katalogvisninger etter dato" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Totalt antall filvisninger etter dato" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} av {$total} monografier" + +msgid "stats.publications.abstracts" +msgstr "Kataloginnganger" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Ingen objekt valgt." + +msgid "plugins.importexport.common.error.validation" +msgstr "Kunne ikke konvertere valgte objekt." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Ugyldig XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Eksporter innleveringer" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "" + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "" + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "" + +msgid "emailTemplate.variable.context.contextName" +msgstr "" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "" + +msgid "emailTemplate.variable.context.contactName" +msgstr "" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "" + +msgid "mailable.validateEmailContext.name" +msgstr "" + +msgid "mailable.validateEmailContext.description" +msgstr "" + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "" + +msgid "doi.description" +msgstr "" +"Dette programtillegget muliggjør tildeling av DOI til monografier, kapitler, " +"publikasjonsformater og filer i OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Konfigurer DOI-programtillegget for å kunne administrere og bruke DOIer i " +"OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "Velg publiseringsobjektene som skal tildeles DOI:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monografier" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Kapitler" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Publikasjonsformater" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Filer" + +msgid "doi.manager.settings.doiPrefix" +msgstr "DOI Prefiks" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "" +"DOI-prefikset er obligatorisk og må være på formatet 10.xxxx, hvor x er et " +"tall." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Bruk mønsteret nedenfor for å generere DOI-suffikser. Bruk %p for initialer " +"for utgivere,%m for monografi-ID,%c for kapittel-ID,%f for publikasjons-ID," +"%s for fil-ID og %x for \"Egendefinert identifikator\"." + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"For eksempel, press%ppub%r vil generere følgende DOI: 10.1234/pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "til monografier" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "til kapitler" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "til publikasjonsformater" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "til filer" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Skriv inn DOI-suffiksmønsteret for monografier." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Skriv inn DOI-suffiksmønsteret for kapitler." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Skriv inn DOI-suffiksmønsteret for publikasjonsformater." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Skriv inn DOI-suffiksmønsteret for for filer." + +msgid "doi.manager.settings.doiReassign" +msgstr "Tildel DOI-er på ny" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Endring av DOI-konfigurasjonen påvirker ikke tildelte DOI-er som allerede er " +"tildelt. Når DOI-konfigurasjonen er lagret, kan du bruke denne knappen til å " +"fjerne alle eksisterende DOI-er slik at de nye innstillingene trer i kraft " +"over alle eksisterende elementer." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Er du sikker på at du vil slette alle eksisterende DOI-er?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "DOI-en må begynne med {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Tildel" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "monografi" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "kapittel" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "publiseringsformat" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "fil" + +msgid "doi.editor.customSuffixMissing" +msgstr "DOI kan ikke tildeles fordi det brukerdefinerte suffikset mangler." + +msgid "doi.editor.missingParts" +msgstr "" +"Du kan ikke generere en DOI fordi en eller flere deler av DOI-mønsteret " +"mangler data." + +msgid "doi.editor.patternNotResolved" +msgstr "DOI kan ikke tildeles fordi den inneholder et uløselig mønster." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Det du ser er en forhåndsvisning av DOI. Merk av i boksen og lagre skjemaet " +"for å bruke DOI." + +msgid "doi.editor.assigned" +msgstr "DOI er tildelt denne {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Det spesifiserte DOI-suffikset er allerede i bruk sammen med et annet " +"publisert element. Skriv inn et unikt DOI-suffiks for hvert element." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Fjern" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Er du sikker på at du vil slette eksisterende DOI?" + +msgid "doi.editor.assignDoi" +msgstr "Tilordne DOI {$pubId} til denne {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI kan ikke tildeles fordi det tilpassede suffikset mangler." + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"DOI {$pubId} kan ikke tildeles fordi den inneholder et uløselig mønster." + +msgid "doi.editor.assignDoi.assigned" +msgstr "DOI-en {$pubId} er tildelt." + +msgid "doi.editor.missingPrefix" +msgstr "DOI-en må begynne med {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "DOI for denne publikasjonen blir {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "Ingen DOI er tildelt denne publikasjonen." + +msgid "doi.editor.preview.chapters" +msgstr "Kapittel: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Publikasjonsformat: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Fil: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Objekt" + +msgid "doi.manager.submissionDois" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "DOI-prefikset er tildelt av CrossRef og er i 10.xxxx-format (f.eks. 10.1234)." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "DOI-prefiks" + +#~ msgid "manager.setup.reviewOptions.showEnsuringLink" +#~ msgstr "" +#~ "Sett inn lenke til \"Sikre blind gjennomgang\" på sider der forfattere og " +#~ "fagfeller laster opp filer." + +#~ msgid "manager.setup.reviewOptions.blindReview" +#~ msgstr "Blind fagfellevurdering" diff --git a/locale/nb/submission.po b/locale/nb/submission.po new file mode 100644 index 00000000000..24964fd6f42 --- /dev/null +++ b/locale/nb/submission.po @@ -0,0 +1,585 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-30 13:53+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Velg komponent" + +msgid "submission.title" +msgstr "Boktittel" + +msgid "submission.select" +msgstr "Velg innlevering" + +msgid "submission.synopsis" +msgstr "Synopsis" + +msgid "submission.workflowType" +msgstr "Innleveringstype" + +msgid "submission.workflowType.description" +msgstr "" +"En monografi er et verk skrevet helt av en eller flere forfattere. Et " +"redigert verk har forskjellige forfattere for hvert kapittel (med " +"kapittelinformasjon angitt senere i denne prosessen.)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Antologi/redigert verk" + +msgid "submission.workflowType.editedVolume" +msgstr "" +"Antologi/redigeret verk: Forfattere er knyttet til deres eget kapittel." + +msgid "submission.workflowType.authoredWork" +msgstr "Monografi: Forfattere er knyttet til boken som helhet." + +msgid "submission.workflowType.change" +msgstr "Endre" + +msgid "submission.editorName" +msgstr "{$editorName} (ed)" + +msgid "submission.monograph" +msgstr "Monografi" + +msgid "submission.published" +msgstr "Klar til produksjon" + +msgid "submission.fairCopy" +msgstr "Språkvask" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Tillatelser" + +msgid "submission.chapter" +msgstr "Kapittel" + +msgid "submission.chapters" +msgstr "Kapitler" + +msgid "submission.chapter.addChapter" +msgstr "Legg til kapittel" + +msgid "submission.chapter.editChapter" +msgstr "Rediger kapittel" + +msgid "submission.chapter.pages" +msgstr "Sider" + +msgid "submission.copyedit" +msgstr "Manusredigering" + +msgid "submission.publicationFormats" +msgstr "Publikasjonsformater" + +msgid "submission.proofs" +msgstr "Korrekturer" + +msgid "submission.download" +msgstr "Last ned" + +msgid "submission.sharing" +msgstr "Del dette" + +msgid "manuscript.submission" +msgstr "Manusinnlevering" + +msgid "submission.round" +msgstr "Runde {$round}" + +msgid "submissions.queuedReview" +msgstr "Planlagt fagvurdert" + +msgid "manuscript.submissions" +msgstr "Manusinnleveringer" + +msgid "submission.metadata" +msgstr "Metadata" + +msgid "submission.supportingAgencies" +msgstr "Sponsorer" + +msgid "grid.action.addChapter" +msgstr "Opprett nytt kapittel" + +msgid "grid.action.editChapter" +msgstr "Rediger dette kapitlet" + +msgid "grid.action.deleteChapter" +msgstr "Slett dette kapitlet" + +msgid "submission.submit" +msgstr "Start innlevering av ny bok" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Start en ny innlevering i" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Ny innlevering" + +msgid "submission.submit.upload" +msgstr "Last opp innlevering" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "Sett denne bidragsyteren som redaktør for dette bindet." + +msgid "submission.submit.seriesPosition" +msgstr "Posisjon i serien" + +msgid "submission.submit.seriesPosition.description" +msgstr "Eksempler: Bok 2, bind 2" + +msgid "submission.submit.privacyStatement" +msgstr "Personvernerklæring" + +msgid "submission.submit.contributorRole" +msgstr "Bidragsyterens rolle" + +msgid "submission.submit.submissionFile" +msgstr "Inlleveringsfil" + +msgid "submission.submit.prepare" +msgstr "Forbered" + +msgid "submission.submit.catalog" +msgstr "Katalog" + +msgid "submission.submit.metadata" +msgstr "Metadata" + +msgid "submission.submit.finishingUp" +msgstr "Ferdiggjør" + +msgid "submission.submit.confirmation" +msgstr "Bekreftelse" + +msgid "submission.submit.nextSteps" +msgstr "Neste steg" + +msgid "submission.submit.coverNote" +msgstr "Kommentarer til redaktøren" + +msgid "submission.submit.generalInformation" +msgstr "Generell informasjon" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Utgiveren har blitt varslet om innleveringen din, og du har mottatt en e-" +"post som bekrefter mottakelsen av innleveringen din. Når redaktøren har " +"vurdert innlevberingen, blir du kontaktet." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Les og kryss av for alle delene i innleveringslisten. Det er " +"{$itemsRemaining} ukontrollerte deler." + +msgid "submission.submit.placement" +msgstr "Innleveringens plassering" + +msgid "submission.submit.userGroup" +msgstr "Lever inn i min rolle som…" + +msgid "submission.submit.noContext" +msgstr "Utgiveren til denne innleveringen ble ikke funnet." + +msgid "grid.chapters.title" +msgstr "Kapitler" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Slett språkvaskerens opplasting" + +msgid "submission.complete" +msgstr "Godkjent" + +msgid "submission.incomplete" +msgstr "Avventer godkjenning" + +msgid "submission.editCatalogEntry" +msgstr "Inngang" + +msgid "submission.catalogEntry.new" +msgstr "Legg til i katalogen" + +msgid "submission.catalogEntry.add" +msgstr "Legg til valgte bidrag i katalogen" + +msgid "submission.catalogEntry.select" +msgstr "Velg de monografiene som skal legges til i katalogen" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Du må velge minst en monografi for å legge til i katalogen." + +msgid "submission.catalogEntry.confirm" +msgstr "Legg denne boken til i den offentlige katalogen" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Bekreft at innleveringen er klar til å bli passert i katalogen." + +msgid "submission.catalogEntry.isAvailable" +msgstr "" +"Denne monografien er klar til å bli inkludert i den offentlige katalogen." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Se innlevering" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Publikasjonsdato" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Alle kapitler bruker monografiens publiseringdato." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Hvert kapittel kan ha sin egen publikasjonsdato." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografi" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Katalog" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Publikasjonsformat" + +msgid "submission.event.metadataPublished" +msgstr "Monografiens metadata er godkjent til publisering." + +msgid "submission.event.metadataUnpublished" +msgstr "Monografiens metadata er ikke lengre publisert." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "" +"Publikasjonsformatet \"{$publicationFormatName}\" er blitt offentliggjort." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" +"Publikasjonsformatet \"{$publicationFormatName}\" er ikke lengre " +"offentliggjort." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Publikasjonsformatet \"{$publicationFormatName}\" er godkjent for " +"publisering." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"Publikasjonsformatet \"{$publicationFormatName}\" er ikke lenger publisert." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Katalog-metadata ble oppdatert." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "Publikasjonsformatets metadata til \"{$formatName}\" ble opdatert." + +msgid "submission.event.publicationFormatCreated" +msgstr "Publikasjonsformatet \"{$formatName}\" ble opprettet." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Publikasjonsformatet \"{$formatName}\" ble fjernet." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Send til ekstern bedømming" + +msgid "workflow.review.externalReview" +msgstr "Ekstern bedømming" + +msgid "submission.upload.fileContents" +msgstr "Innleveringskomponent" + +msgid "submission.dependentFiles" +msgstr "Avhengige filer" + +msgid "submission.metadataDescription" +msgstr "" +"Disse spesifikasjonene er basert på Dublin Core metadata-settet, en " +"internasjonal standard som brukes til å beskrive publiseringsinnhold." + +msgid "section.any" +msgstr "Enhver serie" + +msgid "submission.list.monographs" +msgstr "Monografier" + +msgid "submission.list.countMonographs" +msgstr "{$count} monografier" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} av {$total} monografier" + +msgid "submission.list.orderFeatures" +msgstr "Sorteringsfunksjoner" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Dra og slipp eller trykk på opp- og nedknappene for å endre rekkefølgen på " +"funksjonene på hjemmesiden." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Dra og slipp eller trykk på opp- og nedknappene for å endre rekkefølgen på " +"funksjonene i {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Lagre rekkefølge" + +msgid "submission.list.viewEntry" +msgstr "Se post" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} titler" + +msgid "publication.catalogEntry" +msgstr "Katalogoppføring" + +msgid "publication.catalogEntry.success" +msgstr "Informasjon under katalogoppføringen er oppdatert." + +msgid "publication.invalidSeries" +msgstr "Seriebetegnelse på denne publikasjonen ble ikke funnet." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Inaktiv)" + +msgid "publication.required.issue" +msgstr "Publikasjonen må være tilknyttet et nummer før den kan publiseres." + +msgid "publication.publishedIn" +msgstr "Publisert i {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Alle publikasjonskrav er oppfylt. Er du sikker på at du vil publisere denne " +"katalogoppføringen?" + +msgid "publication.scheduledIn" +msgstr "Planlagt til publisering i {$issueName}." + +msgid "submission.publication" +msgstr "Publikasjon" + +msgid "publication.status.published" +msgstr "Publisert" + +msgid "submission.status.scheduled" +msgstr "Planlagt" + +msgid "publication.status.unscheduled" +msgstr "Ikke planlagt" + +msgid "submission.publications" +msgstr "Publikasjoner" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Opphavsrettsåret settes automatisk når denne innleveringen publiseres i et " +"nummer." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "Opphavsrettsåret settes automatisk basert på publiseringsdatoen." + +msgid "publication.datePublished" +msgstr "Dato publisert" + +msgid "publication.editDisabled" +msgstr "Denne versjonen er publisert og kan ikke redigeres." + +msgid "publication.event.published" +msgstr "Innleveringen ble publisert." + +msgid "publication.event.scheduled" +msgstr "Innleveringen var planlagt for publisering." + +msgid "publication.event.unpublished" +msgstr "Innleveringen ble ikke publisert." + +msgid "publication.event.versionPublished" +msgstr "En ny versjon ble publisert." + +msgid "publication.event.versionScheduled" +msgstr "En ny versjon var planlagt for publisering." + +msgid "publication.event.versionUnpublished" +msgstr "En versjon ble fjernet fra publikasjonen." + +msgid "publication.invalidSubmission" +msgstr "Innleveringen til denne publikasjonen kunne ikke finnes." + +msgid "publication.publish" +msgstr "Publiser" + +msgid "publication.publish.requirements" +msgstr "Følgende krav må være oppfylt før dette kan publiseres." + +msgid "publication.required.declined" +msgstr "En avvist innlevering kan ikke publiseres." + +msgid "publication.required.reviewStage" +msgstr "" +"Innleveringen må være under manusredigerings- eller produksjonstrinnet før " +"det kan publiseres." + +msgid "submission.license.description" +msgstr "" +"Lisensen settes automatisk til " +"{$licenseName} når den blir publisert." + +msgid "submission.copyrightHolder.description" +msgstr "Opphavsretten tildeles automatisk {$copyright} når den publiseres." + +msgid "submission.copyrightOther.description" +msgstr "" +"Tilordne opphavsrett i forbindelse med publiserte innleveringer til følgende " +"gruppe." + +msgid "publication.unpublish" +msgstr "Avpubliser" + +msgid "publication.unpublish.confirm" +msgstr "Er du sikker på at du ikke ønsker at dette skal publiseres?" + +msgid "publication.unschedule.confirm" +msgstr "" +"Er du sikker på at du ikke vil ha dette planlagt til senere publisering?" + +msgid "publication.version.details" +msgstr "Publikasjonsopplysninger i forbindelse med versjon {$version}" + +msgid "submission.queries.production" +msgstr "Diskusjon av produksjon" + +msgid "publication.chapter.landingPage" +msgstr "" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/nb_NO/admin.po b/locale/nb_NO/admin.po deleted file mode 100644 index 4c9455927e5..00000000000 --- a/locale/nb_NO/admin.po +++ /dev/null @@ -1,172 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-30 13:53+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

        OBS!

        \n" -"

        Systemet kunne ikke automatisk overskrive konfigurasjonsfilen. For å " -"endre konfigurasjonen må du åpne config.inc.php i et egnet " -"tekstbehandlingsprogram, og erstatte innholdet i den med innholdet i " -"tekstfeltet nedenfor.

        " - -msgid "admin.presses.addPress" -msgstr "Legg til utgiver" - -msgid "admin.contexts.contextDescription" -msgstr "Utgiverbeskrivelse" - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} ble redigert." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} ble oprettet." - -msgid "admin.contexts.form.pathExists" -msgstr "Den valgte filstien er allerede tatt i bruk av en annen utgiver." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "" -"Filstien kan bare inneholde bokstaver, tall, understrek og bindestrek, og må " -"begynne og slutte med en bokstav eller et tall." - -msgid "admin.contexts.form.pathRequired" -msgstr "Du må legge inn en filsti." - -msgid "admin.contexts.form.titleRequired" -msgstr "Du må legge inn en tittel." - -msgid "admin.contexts.create" -msgstr "Opprett utgiver" - -msgid "admin.presses.noneCreated" -msgstr "Ingen utgivere har blitt opprettet." - -msgid "admin.presses.pressSettings" -msgstr "Utgiverinnstillinger" - -msgid "admin.systemConfiguration" -msgstr "OMP-konfigurasjon" - -msgid "admin.systemVersion" -msgstr "OMP-versjon" - -msgid "admin.languages.confirmDisable" -msgstr "" -"Er du sikker på at du vil skru av denne språkpakken? Dette kan gå ut over " -"utgivere som bruker den." - -msgid "admin.languages.downloadUnavailable" -msgstr "" -"

        For øyeblikket er det dessverre ikke mulig å laste ned språkpakkene fra " -"webserveren hos Public Knowledge Project, fordi:

        \n" -"\t
          \n" -"\t\t
        • Din server har ikke eller tillater ikke bruk av GNU tar-" -"funksjonen
        • \n" -"\t\t
        • OJS klarer ikke å modifisere registerfilen for språkpakken, som " -"vanligvis heter «registry/locales.xml».
        • \n" -"\t
        \n" -"

        Språkpakkene kan lastes ned manuelt fra PKP-" -"nettstedet.

        " - -msgid "admin.languages.downloadFailed" -msgstr "" -"Noe gikk galt med nedlastingen av oversatte språkapakker. Se feilmeldingen(e)" -" nedenfor." - -msgid "admin.languages.noLocalesToDownload" -msgstr "Ingen språkpakker er tilgjengelig for nedlasting." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "" -"Velg øvrige språkpakker å installere støtte for i dette systemet. " -"Språkpakkene må være installert før de kan brukes av lokale tidsskrift. " -"Konsulter OMP-dokumentasjonen for informasjon om å legge til støtte for " -"flere språk." - -msgid "admin.languages.confirmUninstall" -msgstr "" -"Er du sikker på at du vil avinstallere denne språkpakken? Dette kan påvirke " -"alle lokale utgivere som for tiden bruker språkpakken." - -msgid "admin.locale.maybeIncomplete" -msgstr "De merkede språkpakkefilene kan være ukomplette." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "" -"Velg alle språkpakkene som nettstedet skal støtte. De valgte språkpakkene " -"vil bli tilgjengelig til bruk for alle utgiverne som nettstedet er vert for. " -"De vil også bli vist i en språkvalgmeny som vil vises på hver nettstedside (" -"men som kan overstyres på utgiverspesifikke sider). Hvis flere språkpakker " -"ikke er valgt, vil språkvekslingsmenyen ikke bli vist og utvidede " -"språkinnstillinger ikke være tilgjengelig for utgivere." - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "" -"Dette vil bli standard språk for nettstedet og alle de utgiverne det er vert " -"for." - -msgid "admin.settings.noPressRedirect" -msgstr "Omdiriger ikke" - -msgid "admin.settings.redirectInstructions" -msgstr "" -"Forespørsler til hovedsiden vil bli omdirigert til denne utgiveren. Dette " -"kan være nyttig hvis nettstedet bare er vert for en enkelt utgiver." - -msgid "admin.settings.redirect" -msgstr "Forlagsomdirigering" - -msgid "admin.settings.info.success" -msgstr "Nettstedsinformasjonen har blitt oppdatert." - -msgid "admin.settings.config.success" -msgstr "Konfigurasjonsinnstillingene for nettstedet har blitt oppdatert." - -msgid "admin.settings.appearance.success" -msgstr "Innstillingene for nettstedets utseende har blitt oppdatert." - -msgid "admin.hostedContexts" -msgstr "Tilknyttede utgivere" - -msgid "admin.settings.disableBulkEmailRoles.contextDisabled" -msgstr "" -"Masseutsending av e-post er deaktivert for denne utgiveren. Aktiver denne " -"funksjonen i Admin > " -"Nettstedsinnstillinger." - -msgid "admin.settings.disableBulkEmailRoles.description" -msgstr "" -"En forlagssjef kan ikke sende ut masseutsendte e-poster til rollene som er " -"valgt nedenfor. Bruk denne innstillignen til å begrense misbruk av e-" -"postnotisfunksjonen. For eksempel kan det være mer sikkert å deaktivere " -"masseutsendelse av e-post til lesere, forfattere eller andre store " -"brukergrupper som ikke har gitt samtykke til å motta slike e-poster.

        Funksjonen masseutsendelse av e-post kan deaktiveres fullstendig for denne " -"utgiveren under Admin > " -"Nettstedsinnstillinger." - -msgid "admin.settings.enableBulkEmails.description" -msgstr "" -"Velg utgiverne som skal få mulighet til masseutsendelse av e-post. Når denne " -"funksjonen er aktivert, kan en forlagssjef sende ut en e-post til alle " -"brukere som er registrert hos utgiveren.

        Misbruk av denne " -"funksjonen hvor uønskede e-postser sendes ut kan være i strid med anti-spam " -"lover i noen rettsområder og kan føre til at din e-postserver blokkeres som " -"spam. Søk teknisk rådgivning før du aktiverer denne funksjonen og sørg for " -"at forlagssjefene bruker denne funksjonen på rett måte.

        Ytterligere " -"begrensninger av denne funksjonen kan aktiveres for hver utgiver med " -"innstillingene i listen over utivere på " -"plattformen." - -msgid "admin.contexts.form.primaryLocaleNotSupported" -msgstr "Standardspråket må være et av språkene som er støttet av utgiveren." diff --git a/locale/nb_NO/api.po b/locale/nb_NO/api.po deleted file mode 100644 index e811009f5dd..00000000000 --- a/locale/nb_NO/api.po +++ /dev/null @@ -1,41 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-30 13:53+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "api.submissions.403.contextRequired" -msgstr "" -"For å opprette eller redigere en innlevering må du gjøre en forespørsel til " -"utgiverens API-endepunkt." - -msgid "api.submissions.403.cantChangeContext" -msgstr "Du kan ikke endre utgiver for en innlevering." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "Publikasjonen du ba om er ikke en del av denne innleveringen." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "Publikasjonen du ba om er ikke tilgjengelig fra denne utgiveren." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "" -"Du har ikke tillatelse til å flytte denne e-postmalen til en annen utgiver." - -msgid "api.submissions.400.submissionsNotFound" -msgstr "En eller flere av innleveringene ble ikke funnet." - -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Du må legge inn en eller flere innleverings ID-er som skal bli lagt til " -"katalogen." - -msgid "api.emails.403.disabled" -msgstr "E-post utsending har ikke blitt aktiverrt for denne utgiveren." diff --git a/locale/nb_NO/author.po b/locale/nb_NO/author.po deleted file mode 100644 index 9f81f01342e..00000000000 --- a/locale/nb_NO/author.po +++ /dev/null @@ -1,15 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-20 14:50+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "author.submit.notAccepting" -msgstr "Denne utgiveren tar for øyeblikket ikke imot innleveringer." diff --git a/locale/nb_NO/default.po b/locale/nb_NO/default.po deleted file mode 100644 index 24f3048d994..00000000000 --- a/locale/nb_NO/default.po +++ /dev/null @@ -1,183 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-05 09:46+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "EF" - -msgid "default.groups.plural.externalReviewer" -msgstr "Eksterne fagfeller" - -msgid "default.groups.name.externalReviewer" -msgstr "Ekstern fagfelle" - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Vi oppfordrer forskningsbibliotekarer til å katalogisere dette forlaget på " -"listen over bibliotekets beholdning av elektroniske utgivere. Denne " -"utgiverens open source-publiseringssystem er også egnet for biblioteker, som " -"kan være vert for fakultetsmedlemmene som deretter kan bruke det til " -"utgiverne de hjelper til med å redigere (se Open Monograph Press)." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"Er du interessert i å sende inn en innlevering til denne utgiveren? Vi " -"anbefaler at du går gjennom siden Om utgiveren , der du finner retningslinjene for utgiverens seksjoner, " -"samt Retningslinjer for forfattere. Forfattere må registrere seg for " -"utgiveren før de kan sende inn en innlevering. Hvis de allerede er logget " -"på, kan de ganske enkelt logge på " -"og begynne 5-trinnsprosessen." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Vi oppfordrer leserne til å registrere seg for nyhetstjenesten vedrørende " -"publikasjoner fra denne utgiveren. Bruk Registrer-lenken øverst på utgiverens nettsted. Denne " -"registreringen betyr at leseren mottar innholdsfortegnelsen fra hver nye " -"monografi på e-post. Denne listen lar også utgiveren hevde å ha et visst " -"nivå av støtte eller et visst antall lesere. Se forlagets " -"personvernerklæring , som garanterer leserne at navn og e-postadresser " -"ikke blir brukt for andre formål." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
        \n" -"________________________________________________________________________
        " -"\n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Denne utgiveren gir øyeblikkelig åpen tilgang til innholdet sitt basert på " -"prinsippet om å gjøre forskning fritt tilgjengelig for publikum for å støtte " -"en større global kunnskapsutveksling." - -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

        Navn og e-postadresser som er lagt ut på denne utgiverens nettsted, vil " -"kun brukes til de formål som er oppgitt av utgiveren, og vil ikke bli gjort " -"tilgjengelig for noe annet formål eller for noen annen part.

        " - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "" -"Teksten oppfyller de stilistiske og bibliografiske kravene som er angitt i <" -"a href=\"{$indexUrl}/{$contextPath}/about/submissions#authorGuidelines\" " -"target=\"_blank\"> Forfatterveiledninger under 'Om utgiveren '." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"Teksten er skrevet uten ekstra linjeavstand; bruker en 12-punkts font; " -"bruker kursiv i stedet for å understreke (unntatt URL-er); og alle " -"illustrasjoner, figurer og tabeller er plassert i teksten på de aktuelle " -"stedene i stedet for på slutten." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Der det er tilgjengelig, oppgis URL-er til referansene." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "" -"Innleveringsfilen er i Microsoft Word, RTF eller OpenDocument filformat." - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"Innleveringen er ikke tidligere publisert, og den er heller ikke sendt til " -"gjennomgang til en annen utgiver (eller så er redegjørelse gitt i " -"kommentarfeltet til redaktøren)." - -msgid "default.groups.abbrev.volumeEditor" -msgstr "VR" - -msgid "default.groups.plural.volumeEditor" -msgstr "Volumredaktører" - -msgid "default.groups.name.volumeEditor" -msgstr "Volumredaktør" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "KF" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Kapittelforfattere" - -msgid "default.groups.name.chapterAuthor" -msgstr "Kapittelforfatter" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "SRed" - -msgid "default.groups.plural.sectionEditor" -msgstr "Serieredaktører" - -msgid "default.groups.name.sectionEditor" -msgstr "Serieredaktør" - -msgid "default.groups.abbrev.editor" -msgstr "Red" - -msgid "default.groups.plural.editor" -msgstr "Redaktører" - -msgid "default.groups.name.editor" -msgstr "Redaktør" - -msgid "default.groups.abbrev.manager" -msgstr "RL" - -msgid "default.groups.plural.manager" -msgstr "Redaksjonsledere" - -msgid "default.groups.name.manager" -msgstr "Redaksjonsleder" - -msgid "default.genres.other" -msgstr "Andre" - -msgid "default.genres.illustration" -msgstr "Illustrasjon" - -msgid "default.genres.photo" -msgstr "Foto" - -msgid "default.genres.figure" -msgstr "Figur" - -msgid "default.genres.table" -msgstr "Tabell" - -msgid "default.genres.prospectus" -msgstr "Prospekt" - -msgid "default.genres.preface" -msgstr "Forord" - -msgid "default.genres.index" -msgstr "Indeks" - -msgid "default.genres.glossary" -msgstr "Ordliste" - -msgid "default.genres.chapter" -msgstr "Kapittelmanuskript" - -msgid "default.genres.manuscript" -msgstr "Bokmanuskript" - -msgid "default.genres.bibliography" -msgstr "Bibliografi" - -msgid "default.genres.appendix" -msgstr "Appendiks" diff --git a/locale/nb_NO/editor.po b/locale/nb_NO/editor.po deleted file mode 100644 index e08a468eb41..00000000000 --- a/locale/nb_NO/editor.po +++ /dev/null @@ -1,206 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-20 02:01+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "" -"Denne offentlige identifikatoren {$publicIdentifier} finnes allerede for et " -"objekt av samme type. Velg unike identifikatorer for samme type objekter fra " -"utgiveren din." - -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "" -"Filer som allerede er lastet opp til innlevering, uansett stadie, kan bli " -"lagt til listen for korrekturlesing ved å krysse av «Inkluder» under og " -"klikke «Søk». Alle tilgjengelige filer vil bli listet opp som alternativer." - -msgid "editor.monograph.proof.addNote" -msgstr "Legg til svar" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Legg inn vilkår" - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Legg inn vilkår for nedlasting" - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "" -"Legg til publikasjonsformater (f.eks. Digital, paperback) slik at " -"layouteditoren kan sette opp korrekturleser. Rettelser må " -"kontrolleres som godkjent, og Katalog-oppføringen for formatet må " -"kontrolleres som angitt i bokens katalogoppføring før et format kan gjøres " -" Tilgjengelig (dvs. publisert)." - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "" -"Ulike publikasjonsformater, som innbundet, paperback og digital, kan lastes " -"opp i delen for publikasjonsformater nedenfor. Du kan bruke oppsett for " -"publikasjonsformat nedenfor som en sjekkliste over hva som fortsatt må " -"gjøres for å publisere et publikasjonsformat." - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Godkjenning og publisering" - -msgid "editor.monograph.proofs" -msgstr "Korrektur" - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Språkvasket kopi" - -msgid "editor.submission.introduction" -msgstr "" -"Under innlevering velger redaktøren, etter gjennomgang av de innsendte " -"filene, den riktige handlingen (som inkluderer melding til forfatteren): " -"Send til intern vurdering (innebærer valg av filer for intern gjennomgang); " -"Send inn for ekstern vurdering (innebærer valg av filer for ekstern " -"vurdering); Godta innlevering (innebærer valg av filer for redaksjonelt " -"trinn); eller Avvis innlevering (arkivlagring)." - -msgid "editor.monograph.legend.uploaded" -msgstr "Fil lastet opp av rollen som er nevnt i tabelloversiktens tittelfelt" - -msgid "editor.monograph.legend.complete" -msgstr "Handlingen er avsluttet" - -msgid "editor.monograph.legend.in_progress" -msgstr "Handlingen pågår eller er ikke fullført ennå" - -msgid "editor.monograph.legend.delete" -msgstr "Slett objekt" - -msgid "editor.monograph.legend.edit" -msgstr "Redigere objekt" - -msgid "editor.monograph.legend.notes_new" -msgstr "" -"Filinformasjon: merknader, varslingsinnstillinger og historikk (Nye " -"merknader lagt til siden forrige besøk)" - -msgid "editor.monograph.legend.notes" -msgstr "" -"Filinformasjon: merknader, varslingsinnstillinger og historikk (Merknader er " -"tilgjengelige)" - -msgid "editor.monograph.legend.notes_none" -msgstr "" -"Filinformasjon: merknader, varslingsinnstillinger og historikk (Ingen " -"merknader lagt til ennå)" - -msgid "editor.monograph.legend.more_info" -msgstr "Mer informasjon: filmerknader varslingsinnstillinger og historikk" - -msgid "editor.monograph.legend.settings" -msgstr "" -"Se og få tilgang til objektinnstillinger, f.eks. informasjon og " -"slettingsalternativer" - -msgid "editor.monograph.legend.add_user" -msgstr "Legg til en bruker til seksjonen" - -msgid "editor.monograph.legend.add" -msgstr "Last opp en fil til seksjonen" - -msgid "editor.monograph.legend.participants" -msgstr "" -"Se og administrer deltakere som deltar i denne innleveringen: forfattere, " -"redaktører, designere m.m." - -msgid "editor.monograph.legend.bookInfo" -msgstr "" -"Se og administrer metadata for innlevering, notater, varsler og historikk" - -msgid "editor.monograph.legend.catalogEntry" -msgstr "" -"Se og administrer innleveringens katalogoppføring, inkludert metadata og " -"publiseringsformater" - -msgid "editor.monograph.legend.itemActions" -msgstr "Objekthandlinger" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Handlinger og innstillinger som er spesifikke for en enkelt fil." - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "" -"Valgmuligheter som er spesifikke for en gitt seksjon, for eksempel å laste " -"opp filer eller legge til brukere." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Seksjonshandlinger" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Generelle innleveringshandlinger og alternativer." - -msgid "editor.monograph.legend.submissionActions" -msgstr "Innleveringshandlinger" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Melding til bruker" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Nyeste filer" - -msgid "editor.monograph.final.currentFiles" -msgstr "Siste utkast" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Velg endelige utkast til filer" - -msgid "editor.monograph.externalReview" -msgstr "Start ekstern fagfellevurdering" - -msgid "editor.monograph.internalReviewDescription" -msgstr "Velg filer nedenfor for å sende til det interne vurderingsteget." - -msgid "editor.monograph.internalReview" -msgstr "Start intern fagfellevurdering" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Korrekturlesningsfiler" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Fagfellevurderingsalternativer" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Last opp fagfellevurdering" - -msgid "editor.monograph.editorToEnter" -msgstr "Redaktør legger inn anbefaling/kommentarer fra fagfelle" - -msgid "editor.monograph.replaceReviewer" -msgstr "Erstatt fagfelle" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "" -"Velg en fagfelle ovenfor, og trykk deretter på \"velg faglfelle\"-knappen " -"for å fortsette." - -msgid "editor.monograph.recommendation" -msgstr "Anbefaling" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Legg inn fagfellens anbefaling" - -msgid "editor.monograph.enterRecommendation" -msgstr "Legg inn anbefaling" - -msgid "editor.monograph.clearReview" -msgstr "Fjern fagfelle" - -msgid "editor.monograph.cancelReview" -msgstr "Avbryt forespørslen" - -msgid "editor.submissionArchive" -msgstr "Arkiv" - -msgid "editor.submissions.assignedTo" -msgstr "Oppnevnt for" diff --git a/locale/nb_NO/emails.po b/locale/nb_NO/emails.po deleted file mode 100644 index fb75673c484..00000000000 --- a/locale/nb_NO/emails.po +++ /dev/null @@ -1,1006 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-05 09:46+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "emails.announcement.description" -msgstr "Denne e-posten vil bli sendt når et nytt oppslag opprettes." - -msgid "emails.announcement.body" -msgstr "" -"{$title}
        \n" -"
        \n" -"{$summary}
        \n" -"
        \n" -"Besøk nettstedet vårt for å lesehele oppslaget." - -msgid "emails.announcement.subject" -msgstr "{$title}" - -msgid "emails.statisticsReportNotification.description" -msgstr "" -"Denne e-posten blir automatisk sendt en gang i måneden til redaktører og " -"magasinredaktører for å gi dem en oversikt over systemets tilstand." - -msgid "emails.statisticsReportNotification.body" -msgstr "" -"\n" -"{$name},
        \n" -"
        \n" -"Din utgivers tilstandsrapport for {$month}, {$year} er nå tilgjengelig. De " -"statistiske nøkkeltallene ses nedenfor.
        \n" -"
          \n" -"\t
        • Nye innleveringer denne måned: {$newSubmissions}
        • \n" -"\t
        • Avviste innleveringer denne måned: {$declinedSubmissions}
        • \n" -"\t
        • Aksepterte innleveringer denne måned: {$acceptedSubmissions}
        • \n" -"\t
        • Systemets samlede antall innleveringer: {$totalSubmissions}
        • \n" -"
        \n" -"Logg inn hos utgiveren for å se flere opplysninger omredaktionelle udviklingstendenser og offentliggjorte artikelstatistikker. En " -"komplett kopi av denne månedens redaksjonelle udvikling er vedlagt.
        \n" -"
        \n" -"Med venlig hilsen
        \n" -"{$principalContactSignature}" - -msgid "emails.statisticsReportNotification.subject" -msgstr "Redaksjonel aktivitet for {$month}, {$year}" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "" -"Denne e-posten vil bli sendt til forfatteren hvis redaktøren avviser " -"innleveringen før fagfellevurdering" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\t{$authorName}:
        \n" -"
        \n" -"Vi har foretatt en beslutning vedrørende ditt bidrag til {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Vi har besluttet å: Avvise innleveringen
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}\n" -"\t\t" - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.notificationCenterDefault.description" -msgstr "" -"Standardmeldingen (blank) som brukes i Notification Center Message " -"Listbuilder." - -msgid "emails.notificationCenterDefault.body" -msgstr "Skriv inn meldingen din." - -msgid "emails.notificationCenterDefault.subject" -msgstr "Melding vedrørende {$contextName}" - -msgid "emails.notifyFile.description" -msgstr "En melding fra en bruker sendt fra en filinformasjonssentral modal" - -msgid "emails.notifyFile.body" -msgstr "" -"Du har fått en melding fra {$sender} vedrørende filen "{$fileName}"" -" i "{$submissionTitle}" ({$monographDetailsUrl}):
        \n" -"
        \n" -"\t\t{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifyFile.subject" -msgstr "Melding om innleveringsfil" - -msgid "emails.notifySubmission.description" -msgstr "" -"En melding fra en bruker sendt fra en modal for informasjonssenter for " -"innlevering." - -msgid "emails.notifySubmission.body" -msgstr "" -"Du har en melding fra {$sender} vedrørende "{$submissionTitle}" " -"({$monographDetailsUrl}):
        \n" -"
        \n" -"\t\t{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifySubmission.subject" -msgstr "Innleveringsmelding" - -msgid "emails.emailLink.description" -msgstr "" -"Denne e-postmalen lar en registrert leser sende informasjon om en artikkel " -"til noen som kan være interessert. Den er tilgjengelig gjennom " -"leseverktøyene og må aktiveres av redaktøren på siden Administrasjon av " -"leseverktøy." - -msgid "emails.emailLink.body" -msgstr "" -"Jeg tenkte at du muligens kan være interesseret i å lese " -""{$submissionTitle}" av {$authorName} som er publisert i Årg. " -"{$volume}, Nummer {$number} ({$year}) i {$contextName} på " -""{$monographUrl}"." - -msgid "emails.emailLink.subject" -msgstr "Utgivelse som kan være av interesse for deg" - -msgid "emails.indexComplete.description" -msgstr "" -"Denne e-posten fra indeksøren til serieredaktør informerer om indeks er " -"ferdiggjort." - -msgid "emails.indexComplete.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Det er nå utarbeidet en indeks til innleveringen " -""{$submissionTitle}," i {$contextName} og den er klar til " -"korrekturlesning.
        \n" -"
        \n" -"Hvis du har spørsmål, ta kontakt med meg..
        \n" -"
        \n" -"{$signatureFullName}" - -msgid "emails.indexComplete.subject" -msgstr "Indeksering fullført" - -msgid "emails.indexRequest.description" -msgstr "" -"Denne e-posten fra serieredaktøren til indeksøren informerer om at " -"vedkommende har fått i oppgave å lage indekser for innleveringen. Den gir " -"informasjon om innleveringen og hvordan man får tilgang til den." - -msgid "emails.indexRequest.body" -msgstr "" -"{$participantName}:
        \n" -"
        \n" -"Innleveringen "{$submissionTitle}" til {$contextName} skal nå " -"ndekseres ved å følge disse stegene.
        \n" -"1. Klikk på innleveringens URL-adresse nedenfor.
        \n" -"2. Hent filene plassert under ‘Produktionsklare filer’ og formater dem til " -"publikasjonsformater i overensstemmelse med tidsskriftets krav.
        \n" -"3. Send den FÆRDIGE e-posten til redaktøren
        \n" -"
        \n" -"{$contextName} URL: {$contextUrl}
        \n" -"Innleveringens URL: {$submissionUrl}
        \n" -"Brukernavn: {$participantUsername}
        \n" -"
        \n" -"Hvis du ikke er i stand til å påta deg dette oppdraget på nåværende " -"tidspunkt, eller har spørgsmål, bes du ta kontakt med meg. Takk for dit " -"bidrag til denne utgivelsen.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.indexRequest.subject" -msgstr "Forespørsel om indeksering" - -msgid "emails.layoutComplete.description" -msgstr "" -"Denne e-mail fra layoutredaktøren til serieredaktøren underretter dem om at " -"layoutprocessen er fullført." - -msgid "emails.layoutComplete.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Nå er de publiseringsklare filene for innleveringen " -""{$submissionTitle}," i {$contextName} lastet opp og klare for " -"korrekturlesning.
        \n" -"
        \n" -"Hvis du har spørsmål, ta kontakt med meg.
        \n" -"
        \n" -"{$signatureFullName}" - -msgid "emails.layoutComplete.subject" -msgstr "Sideoppsett ferdiggjort" - -msgid "emails.layoutRequest.description" -msgstr "" -"Denne e-postmeldingen fra serieredaktøren til layoutredigereren informerer " -"dem om at han / hun har fått i oppgave å redigere layouten til en " -"innlevering. Den inneholder informasjon om innleveringen og hvordan man får " -"tilgang til den." - -msgid "emails.layoutRequest.body" -msgstr "" -"{$participantName}:
        \n" -"
        \n" -"Innleveringen "{$submissionTitle}" til {$contextName} skal nå " -"gjøres publiseringsklar ved å følge disse stegene.
        \n" -"1. Klikk på innleveringens URL-adresse nedenfor.
        \n" -"2. Hent filene plassert under ‘Produksjonsklare filer’ og formater dem til " -"publiseringsklare filer i overensstemmelse med tidsskriftets krav.
        \n" -"3. Send den FÆRDIGE e-posten til redaktøren.
        \n" -"
        \n" -"{$contextName} URL: {$contextUrl}
        \n" -"Innleveringens URL: {$submissionUrl}
        \n" -"Brukernavn: {$participantUsername}
        \n" -"
        \n" -"Hvis du ikke er i stand til å påta dig dette arbeidet på nåværende tidspunkt " -"eller har spørgsmål, bes du ta kontakt med meg. Takk for ditt bidrag til " -"denne utgivelsen." - -msgid "emails.layoutRequest.subject" -msgstr "Forespørsel om oppsett" - -msgid "emails.copyeditRequest.description" -msgstr "" -"Denne e-posten blir sendt av en serieredaktør til språkvaskeren for å be ham " -"eller henne om å starte språkvask. Den inneholder informasjon om " -"innleveringen og hvordan man får tilgang til den." - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$participantName}:
        \n" -"
        \n" -"Jeg ber deg om å foreta språkvask av "{$submissionTitle}" til " -"{$contextName} ved å følge disse trinnene.
        \n" -"1. Klik på innleveringens URL-adresse nedenfor.
        \n" -"2. Logg ind på utgiverens nettsted, og klikk på filen, som vises i trinn 1.<" -"br />\n" -"3. Les språkvask-veiledningen, som er på hjemmesiden
        \n" -"4. Åpne den nedlastede filen og foreta språkvask/manuskriptredigering, " -"tilføy eventuelle forespørsler til forfatteren.
        \n" -"5. Lagre den redigerte filen, og last opp i trinn 1 under Språkvask
        \n" -"6. Send den ferdige e-posten til redaktøren.
        \n" -"
        \n" -"{$contextName} URL: {$contextUrl}
        \n" -"Innleveringens URL: {$submissionUrl}
        \n" -"Brukernavn: {$participantUsername}" - -msgid "emails.copyeditRequest.subject" -msgstr "Forespørsel om språkvask" - -msgid "emails.editorRecommendation.description" -msgstr "" -"Denne e-postmeldingen fra anbefalende redaktøre eller seksjonsredaktør til " -"beslutningsredaktører eller seksjonsredaktører inneholder den endelige " -"anbefalingen om innleveringen." - -msgid "emails.editorRecommendation.body" -msgstr "" -"{$editors}:
        \n" -"
        \n" -"Anbefalingen vedrørende {$contextName}, "{$submissionTitle}" er: " -"{$recommendation}" - -msgid "emails.editorRecommendation.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionDecline.description" -msgstr "" -"Denne e-posten fra redaktøren eller serieredaktøren til en forfatter er et " -"varsel om den endelige avgjørelsen vedrørende deres bidrag." - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Vi har foretatt en beslutning angående ditt bidrag til {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Vi har besluttet at:
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionResubmit.description" -msgstr "" -"Denne e-posten fra redaktøren eller serieredaktøren til en forfatter er et " -"varsel om den endelige avgjørelsen vedrørende deres bidrag." - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Vi har foretatt en beslutning angående ditt bidrag til {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Vi har besluttet at:
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionRevisions.description" -msgstr "" -"Denne e-posten fra redaktøren eller serieredaktøren til en forfatter er et " -"varsel om den endelige avgjørelsen vedrørende deres bidrag." - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Vi har foretatt en beslutning angående ditt bidrag til {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Vi har besluttet at:
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "" -"Denne e-postmeldingen fra redaktøren eller seksjonsredaktøren til " -"forfatteren kunngjør at innleveringen nå sendes til produksjon." - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Vi har ferdiggjort redigeringen av innleveringen din, " -""{$submissionTitle},". Den blir nå sendt til publisering.
        \n" -"
        \n" -"Innleveringens URL: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "" -"Denne e-posten fra redaktøren eller serieredaktøren til forfatteren kunngjør " -"at innleveringen vil bli sendt til ekstern gjennomgang." - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Vi har foretatt en beslutning angående ditt bidrag til {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Vi har besluttet at:
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.editorDecisionAccept.description" -msgstr "" -"Denne e-posten fra redaktøren eller serieredaktøren til en forfatter er en " -"melding om den endelige avgjørelsen om deres bidrag." - -msgid "emails.editorDecisionAccept.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Vi har foretatt en beslutning angående ditt bidrag til {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Vi har besluttet at:
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionAccept.subject" -msgstr "Redaktørbeslutning" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "" -"Denne e-posten sendes automatisk når forfallsdato for en korrekturleser " -"overskrides (se Rangeringsinnstillinger under Innstillinger > Arbeidsflyt > " -"Fagfellevurdering) og når tilgang med ett klikk for fagfeller er aktivert. " -"Planlagte oppgaver må aktiveres og konfigureres (se nettstedets " -"konfigurasjonsfil)." - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Dette er bare for å minne deg om får forespørsel om din fagfellevurdering av " -"innleveringen "{$submissionTitle}" til {$contextName}. Vi hadde " -"håpet på å motta ditt svar senest den {$responseDueDate}, og ser fremdeles " -"frem til å motta den, så snart du er ferdig med den.
        \n" -"
        \n" -"Innleveringens URL: {$submissionReviewUrl}
        \n" -"
        \n" -"Vi ber deg bekrefte om du er i stand til at fullføre dette vigtige bidraget " -"til vårt arbeid. Jeg ser frem til at høre fra deg.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Automatisk påminnelse om fagfellevurdering" - -msgid "emails.reviewRemindAuto.description" -msgstr "" -"Denne e-posten sendes automatisk når forfallsdato for en anmelder " -"overskrides (se Fagfellevurderingsinnstillinger under Innstillinger > " -"Arbeidsflyt > Fagfellevurdering) og når tilgang med ett klikk for fagfeller " -"er deaktivert. Planlagte oppgaver må aktiveres og konfigureres (se " -"nettstedets konfigurasjonsfil)." - -msgid "emails.reviewRemindAuto.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Dette er bare for å minne deg om vår forespørsel om din fagfellevurdering av " -"innleveringen "{$submissionTitle}" til {$contextName}. Vi hadde " -"håpet på å motta ditt svar senest den {$responseDueDate}, og ser fremdeles " -"frem til å motta den så snart du er ferdig med den.
        \n" -"
        \n" -"Innleveringens URL: {$submissionReviewUrl}
        \n" -"
        \n" -"Vi ber deg bekrefte om du er i stand til at fullføre dette vigtige bidraget " -"til vårt arbeid. Jeg ser frem til at høre fra deg.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.subject" -msgstr "Automatisk påminnelse om fagfellevurdering" - -msgid "emails.reviewRemindOneclick.description" -msgstr "" -"Denne e-posten blir sendt av serieredaktøren til en fagfelle for å minne dem " -"om at fagfellevurderingen skulle ha blitt sendt inn." - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Dette er bare for å minne deg om får forespørsel om din fagfellevurdering av " -"innleveringen "{$submissionTitle}" til {$contextName}. Vi hadde " -"håpet på å motta ditt svar senest den {$responseDueDate}, og ser frem til å " -"motta den, så snart du er ferdig med den.
        \n" -"
        \n" -"Innleveringens URL: {$submissionReviewUrl}
        \n" -"
        \n" -"Vi ber deg bekrefte om du er i stand til at fullføre dette vigtige bidraget " -"til vårt arbeid. Jeg ser frem til at høre fra deg.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Påminnelse om fagfellevurdering" - -msgid "emails.reviewRemind.description" -msgstr "" -"Denne e-posten sendes av seksjonsredaktøren til en fagfelle for å minne ham " -"eller henne på om at vurderingen burde vært sendt inn." - -msgid "emails.reviewRemind.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Dette er kun for å minne deg om vår forespørsel om fagfellevurdering av " -"innelveringen "{$submissionTitle}" til {$contextName}. Vi hadde " -"håpet på å motta vurderingen senest den {$reviewDueDate} og ser frem til å " -"motta den, så snart du er ferdig med den.
        \n" -"
        \n" -"Hvis du ikke har brukernavn og passord til utgiverens nettsted tilgjengelig, " -"kan du bruke denne lenken til å nullstille passordet (som vil bli sendt til " -"deg via e-post sammen med brukernavnet ditt). {$passwordResetUrl}
        \n" -"
        \n" -"Innleveringens URL: {$submissionReviewUrl}
        \n" -"
        \n" -"Brukernavn: {$reviewerUserName}
        \n" -"
        \n" -"Vi ber deg bekrefte, om du er i stand til å fullføre dette vigtige bidraget " -"til vårt arbeid. Jeg ser frem til å høre fra deg.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemind.subject" -msgstr "Påminnelse om fagfellevurdering" - -msgid "emails.reviewAck.description" -msgstr "" -"Denne e-posten blir sendt av seksjonsredaktøren for å bekrefte at " -"fagfellevurderingen er mottatt, og takker fagfellen for deres bidrag." - -msgid "emails.reviewAck.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Takk for at du fullførte fagfellevurderingen av innleveringen. " -""{$submissionTitle}" til {$contextName}. Vi setter pris på ditt " -"bidrag til kvaliteten på verkene vi publiserer." - -msgid "emails.reviewAck.subject" -msgstr "Bekreftelse på vurderingg av innlevering" - -msgid "emails.reviewDecline.description" -msgstr "" -"Denne e-posten blir sendt av en fagfelle til seksjonsredaktøren som svar på " -"en forespørsel om fagfellevurdering, og varsler seksjonsredaktøren om at " -"forespørselen er avvist." - -msgid "emails.reviewDecline.body" -msgstr "" -"Redaktører:
        \n" -"
        \n" -"Jeg beklager, at jeg på nåværende tidspunkt ikke kan bedømme innleveringen " -""{$submissionTitle}" til {$contextName}. Takk, for at du tenkte på " -"meg, og du er alltid velkommen til at kontakte meg en annen gang.
        \n" -"
        \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.subject" -msgstr "Kan ikke foreta fagfellevurdering" - -msgid "emails.reviewConfirm.description" -msgstr "" -"Denne e-posten blir sendt av en fagfelle til seksjonsredaktøren som svar på " -"en forespørsel om fagfellevurdering, og gir beskjed til seksjonsredaktøren " -"om at forespørselen er godtatt og at vurderingen vil være fullført innen den " -"angitte datoen." - -msgid "emails.reviewConfirm.body" -msgstr "" -"Redaktører:
        \n" -"
        \n" -"Jeg kan og er villig til å bedømme innleveringen " -""{$submissionTitle}" til {$contextName}. Takk, fordi du tenkte på " -"meg, og jeg planlegger å være ferdig med fagfellevurderingen senest på " -"forfaldsdatoen, {$reviewDueDate}, hvis ikke før.
        \n" -"
        \n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.subject" -msgstr "Kan foreta fagfellevurdering" - -msgid "emails.reviewReinstate.description" -msgstr "" -"Denne e-posten blir sendt av seksjonsredaktøren til en fagfelle som har " -"påbegynt en fagfellevurdering for å varsle om at fagfellevurderingen er " -"kansellert." - -msgid "emails.reviewReinstate.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Vi vil gjerne spørre deg på nytt om du vil foreta en fagfellevurdering av " -"innleveringen, "{$submissionTitle}," for {$contextName}. Vi håper " -"at du har mulighet for å hjelpe med denne utgiverens fagfellevurdering.
        " -"\n" -"
        \n" -"Du bes ta kontakt med meg hvis du har spørsmål." - -msgid "emails.reviewReinstate.subject" -msgstr "Forespørsel om fagfellevurdering gjenopptatt" - -msgid "emails.reviewCancel.description" -msgstr "" -"Denne e-posten sendes av seksjonsredaktøren til en fagfelle som vurderer et " -"manuskript og varsler om at fagfellevurderingen er kansellert." - -msgid "emails.reviewCancel.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"På nåværende tidspunkt har vi valgt å trekke tilbake får forespørsel til deg " -"om å vurdere innleveringen "{$submissionTitle}" til {$contextName}" -". Vi beklager den unlempe, dette eventuelt måtte forårsake, og vi håper, at " -"vi kan henvende oss til deg i fremtiden og be om din assistanse i " -"forbindelse med denne utgiverens fagfellevurderingsprosess.
        \n" -"
        \n" -"Hvis du har spørgsmål, ta gjerne kontakt." - -msgid "emails.reviewCancel.subject" -msgstr "Avbryt forespørsel om fagfellevurdering" - -msgid "emails.reviewRequestAttached.description" -msgstr "" -"Denne e-posten blir sendt av serieredaktøren til en fagfelle og ber dem om å " -"godta eller nekte å vurdere en innlevering. Innleveringen er vedlagt denne e-" -"posten. Denne meldingen brukes hvis den valgte prosessinnstillingen at \"" -"Innlevering er vedlagt e-post\" er valgt" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Jeg tror at du vil kunne være en fremragende fagfelle til innleveringen " -""{$submissionTitle}", og jeg ber deg om å vurdere å påta deg denne " -"vigtige opgaven for oss. Du finner denne utgiverens retningslinjer for " -"fagfellevurdering nedenfor og innleveringen er lagt til som vedlegg til " -"denne e-posten. Din vurdering av innleveringen samt din anbefaling må sendes " -"til meg pr. e-post senest den {$reviewDueDate}.
        \n" -"
        \n" -"Vennligst gi beskjed per e-post innen den {$weekLaterDate} , om du kan og er " -"villig til å foreta fagfellevurderingen.
        \n" -"
        \n" -"Takk for at du vurderer denne forespøreselen.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"Retningslinjer for fagfellevurdering
        \n" -"
        \n" -"{$reviewGuidelines}
        \n" - -msgid "emails.reviewRequestAttached.subject" -msgstr "Forespørsel om fagfellevurdering" - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "" -"Denne e-posten sendes automatisk når en fagfelles svarfrist er overskredet (" -"se Fagfellevurderingsinnstillinger under Innstillinger > Arbeidsflyt > " -"Fagfellevurdering) og 'Aktiver tilgang for fagfeller med ett klikk' er " -"aktivert. Frister og påminnelser må defineres." - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Kjære {$reviewerName}:
        \n" -"Dette er bare for å minne deg om vår forespørsel om din vurdering av " -"manuskriptet "{$submissionTitle}," for {$contextName}. Vi hadde " -"håpet på å motta ditt svar senest den {$responseDueDate}, og denne e-posten " -"er blitt automatisk genereret og sendt til deg, da svarfristen er " -"overskredet.\n" -"
        \n" -"{$messageToReviewer}
        \n" -"
        \n" -"Logg på tidsskriftets nettsted for å gi beskjed, om du vil påta deg " -"fagfellevurderingen eller ikke, samt for å få tilgang til innleveringen og " -"registrere din vurdering og anbefaling.
        \n" -"
        \n" -"Selve vurderingen må leveres senest den {$reviewDueDate}.
        \n" -"
        \n" -"Innleveringens URL: {$submissionReviewUrl}
        \n" -"
        \n" -"Brukernavn: {$reviewerUserName}
        \n" -"
        \n" -"Takk for at du vurderer denne forespørselen.
        \n" -"
        \n" -"
        \n" -"Vennlig hilsen,
        \n" -"{$editorialContactSignature}
        \n" - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"Dette er bare for å minde deg om vår forespørsel om din fagfellevurdering av " -"innleveringen "{$submissionTitle}," for {$contextName}. Vi havde " -"håpet på å motta svar fra deg senest den {$responseDueDate}, og denne e-" -"posten er blitt automatisk genereret og sendt til deg, da svarfristen er " -"overskredet.\n" -"
        \n" -"Jeg tror, at du vil være en fremragende fagfelle til innleveringen. Nedenfor " -"finner du et sammendrag av innleveringen, og jeg håper, at du vil vurdere å " -"påta deg denne vigtige opgaven for oss.
        \n" -"
        \n" -"Logg på utgiverens nettsted for å gi beskjed om du vil påta deg " -"fagfellevurderingen eller ikke, samt for å få tilgang til innleveringen og " -"registrere din vurdering og anbefaling.
        \n" -"
        \n" -"Selve fagfellevurderingen må leveres senest den {$reviewDueDate}.
        \n" -"
        \n" -"Innleveringens URL-adresse: {$submissionReviewUrl}
        \n" -"
        \n" -"Tak for at du vurderer denne forespørselen.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -""{$submissionTitle}"
        \n" -"
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Forespørsel om fagfellevurdering" - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "" -"Denne e-posten sendes automatisk når en anmelders bekreftelsesdato " -"overskrides (se fagfellevurderingsinnstillinger under Innstillinger > " -"Arbeidsflyt > Fagfellevurdering) og \"Aktiver tilgang med ett klikk " -"vurdering\" ikke er valgt. Frister og påminnelser må defineres." - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Forespørsel om fagfellevurdering" - -msgid "emails.reviewRequestOneclick.description" -msgstr "" -"Denne e-postmeldingen fra serieredaktøren til en fagfelle ber fagfellen om å " -"godta eller avslå å vurdere en innlevering. Den inneholder informasjon om " -"innleveringen, f.eks. tittel og sammendrag, forfallsdato for vurdering, samt " -"hvordan man kan få tilgang til selve innleveringen. Denne meldingen brukes " -"hvis alternativet for standard fagfellevurdering er valgt under " -"Innstillinger > Arbeidsflyt > Vurdering og tilgang for fagfeller med ett " -"klikk er aktivert." - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Jeg tror, at du vil være en utmerket fagfelle for innleveringen " -""{$submissionTitle}", som har blitt levert inn til {$contextName}. " -"Nedenfor finder du et sammendrag av innleveringen, og jeg håper, at du vil " -"vurdere å påta deg denne vigtige opgaven for oss.
        \n" -"
        \n" -"Logg på utgiverens nettsted innen {$weekLaterDate} for å gi beskjed om du " -"vil påta deg fagfellevurderingen eller ikke, samt for å få adgang til " -"innleveringen og registrere din vurdering og anbefaling.
        \n" -"
        \n" -"Selve vurderingen må leveres senest den {$reviewDueDate}.
        \n" -"
        \n" -"Innleveringens URL-adresse: {$submissionReviewUrl}
        \n" -"
        \n" -"Tak for at du vurderer denne forespørselen.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -""{$submissionTitle}"
        \n" -"
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Forespørsel om fagfellevurdering" - -msgid "emails.reviewRequest.description" -msgstr "" -"Denne e-postmeldingen fra serieredaktøren til en fagfelle ber fagfellen om å " -"godta eller avvise oppgaven med å vurdere en innlevering. Den inneholder " -"informasjon om innleveringen, som tittel og sammendrag, forfallsdato for " -"gjennomgang, og hvordan du får tilgang til selve innleveringen. Denne " -"meldingen brukes når standard vurderingsprosess er valgt i Innstillinger > " -"Arbeidsflyt > Vurdering. (Se også REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequest.body" -msgstr "" -"Kjære {$reviewerName},
        \n" -"
        \n" -"{$messageToReviewer}
        \n" -"
        \n" -"Logg deg på utgiverens nettsted innen {$responseDueDate} for å gi beskjed om " -"du vil gjøre fagfellevurderingen eller ikke, samt få tilgang til " -"innleveringen og registrere din vurdering og anbefaling.
        \n" -"
        \n" -"Selve fagfellevurderingen må være sendt inn innen {$reviewDueDate}.
        \n" -"
        \n" -"URL for innlevering: {$submissionReviewUrl}
        \n" -"
        \n" -"Brukernavn: {$reviewerUserName}
        \n" -"
        \n" -"Takk for at du vurderer denne forespørselen.
        \n" -"
        \n" -"
        \n" -"Mange hilsener
        \n" -"{$editorialContactSignature}
        \n" - -msgid "emails.reviewRequest.subject" -msgstr "Forespørsel om fagfellevurdering" - -msgid "emails.editorAssign.description" -msgstr "" -"Denne e-posten varsler en serieredaktør om at redaktøren har tildelt " -"oppgaven med å følge et manuskript gjennom redigeringsprosessen. Den " -"inneholder informasjon om innleveringen og hvordan du får tilgang til " -"utgiverens nettsider." - -msgid "emails.editorAssign.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Som seksjonsredaktør har du fått tildelt innelveringen " -""{$submissionTitle}," som er sendt til {$contextName} og som du " -"skal følge gjennem den redaksjonelle prosessen..
        \n" -"
        \n" -"Innleveringens URL: {$submissionUrl}
        \n" -"Brukernavn: {$editorUsername}
        \n" -"
        \n" -"Mange takk" - -msgid "emails.editorAssign.subject" -msgstr "Redaksjonelt oppdrag" - -msgid "emails.submissionAckNotUser.description" -msgstr "" -"Når denne e-posten er aktivert, sendes meldinger automatisk til de andre " -"forfatterne som er oppført og som ikke er registrert i OMP." - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Hei
        \n" -"
        \n" -"{$submitterName} har sendt inn innleveringen "{$submissionTitle}" " -"til {$contextName}.
        \n" -"
        \n" -"Hvis du har spørsmål, er du velkommen til å kontakte meg. Takk for at du har " -"valgt at publisere hos oss.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.subject" -msgstr "Innleveringsbekreftelse" - -msgid "emails.submissionAck.description" -msgstr "" -"Når denne e-posten er aktivert, blir den automatisk sendt til en forfatter " -"når han eller hun sender et manuskript til tidsskriftet. Den inneholder " -"informasjon om hvordan forfatteren kan følge manuskriptet gjennom prosessen, " -"og det takker forfatteren for manuskriptet." - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Tak, for at du har sendt inn innleveringen "{$submissionTitle}" " -"til {$contextName}. Ved hjelp av det nettbaserte publiseringssystemet vi " -"bruker. Du kan følge innleveringen gjennom den redaksjonelle prosessen ved å " -"logge på tidsskriftets nettside:
        \n" -"
        \n" -"Innleveringens URL-adresse: {$submissionUrl}
        \n" -"Brukernavn: {$authorUsername}
        \n" -"
        \n" -"Hvis du har spørsmål er du velkommen til å kontakte meg. Takk for at du har " -"valgt å publisere hos oss.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.subject" -msgstr "Bekreftelse av innlevering" - -msgid "emails.publishNotify.description" -msgstr "" -"Denne e-posten vil bli sendt til registrerte lesere via lenken \"varsle " -"brukere\" på redaktørens hjemmeside. Den gir leserne beskjed om en ny bok og " -"inviterer dem til å besøke tidsskriftet på en spesifisert URL." - -msgid "emails.publishNotify.body" -msgstr "" -"Lesere:
        \n" -"
        \n" -"{$contextName} har nettopp gitt ut den siste boken på {$contextUrl}. Vi " -"inviterer deg til å bla gjennom innholdsfortegnelsen her og deretter besøke " -"nettstedet vårt der du kan bla gjennom monografier og andre ting som " -"interesserer deg.
        \n" -"
        \n" -"Takk for din interesse for vårt arbeid.
        \n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.subject" -msgstr "Ny bok har blitt publisert" - -msgid "emails.reviewerRegister.description" -msgstr "" -"Denne e-posten blir sendt til nylig registrerte fagfeller for å ønske dem " -"velkommen til systemet og for å informere dem om brukernavn og passord." - -msgid "emails.reviewerRegister.body" -msgstr "" -"Basert på din ekspertise har vi tatt oss friheten til å registrere navnet " -"ditt i {$contextName} rangeringsdatabasen. Dette krever ingen forpliktelse " -"fra din side, men lar oss bare kontakte deg angående en mulig gjennomgang av " -"en innlevering. Hvis du blir invitert til å foreta en fagfellevurdering, vil " -"du ha muligheten til å se tittelen og et sammendrag av innleveringen, og du " -"vil alltid kunne godta eller avvise invitasjonen. Du kan også når som helst " -"be om at navnet ditt blir fjernet fra listen over fagfeller.
        \n" -"
        \n" -"Vi gir deg et brukernavn og passord som skal brukes i forbindelse med alle " -"interaksjoner med utgiveren via utgiverens nettside. Du kan f.eks. be om å " -"få oppdatert profilen din, inkludert dine interesser.
        \n" -"
        \n" -"Brukernavn: {$username}
        \n" -"Passord: {$password}
        \n" -"
        \n" -"Takk skal du ha.
        \n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.subject" -msgstr "Registrering som fagfelle på {$contextName}" - -msgid "emails.userValidate.description" -msgstr "" -"Denne e-posten blir sendt til nylig registrerte brukere for å ønske dem " -"velkommen til systemet og gi dem brukernavn og passord." - -msgid "emails.userValidate.body" -msgstr "" -"{$userFullName}
        \n" -"
        \n" -"Du har opprettet en konto med {$contextName}, men før du kan begynne å bruke " -"den, må du validere e-postkontoen din. For å gjøre dette, følg bare lenken " -"nedenfor:
        \n" -"
        \n" -"{$enableUrl}
        \n" -"
        \n" -"Tusen takk,
        \n" -"{$principalContactSignature}" - -msgid "emails.userValidate.subject" -msgstr "Valider kontoen din" - -msgid "emails.userRegister.description" -msgstr "" -"Denne e-posten blir sendt til nylig registrerte brukere for å ønske dem " -"velkommen til systemet og gi dem brukernavn og passord." - -msgid "emails.userRegister.body" -msgstr "" -"{$userFullName}
        \n" -"
        \n" -"Du er nå registrert som bruker hos {$contextName}. Vi har tatt med " -"brukernavnet og passordet ditt i denne e-posten. Dette må brukes i " -"forbindelse med arbeidet rundt forlagets nettsider. Du kan når som helst be " -"om å bli fjernet fra brukerlisten ved å kontakte meg.
        \n" -"
        \n" -"Brukernavn: {$username}
        \n" -"Passord: {$password}
        \n" -"
        \n" -"Tusen takk,
        \n" -"{$principalContactSignature}" - -msgid "emails.userRegister.subject" -msgstr "Registrering hos utgiver" - -msgid "emails.passwordReset.description" -msgstr "" -"Denne e-posten vil bli sendt til registrerte brukere etter at de har " -"tilbakestilt passordet etter å ha fulgt prosessen beskrevet i e-posten " -"PASSWORD_RESET_CONFIRM." - -msgid "emails.passwordReset.body" -msgstr "" -"Passordet ditt er tilbakestilt og kan brukes på nettstedet {$siteTitle}.
        \n" -"
        \n" -"Brukernavnet ditt: {$username}
        \n" -"Ditt nye passord: {$password}
        \n" -"
        \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.subject" -msgstr "Nullstill passord" - -msgid "emails.passwordResetConfirm.description" -msgstr "" -"Denne e-posten blir sendt til registrerte brukere når de indikerer at de har " -"glemt passordet eller ikke kan logge inn. Den inneholder en URL som de kan " -"følge for å tilbakestille passordet." - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"Vi har mottatt en forespørsel om å tilbakestille passordet ditt for " -"nettstedet {$siteTitle}.
        \n" -"
        \n" -"Hvis du ikke selv sendte denne forespørselen, kan du ignorere denne e-" -"postadressen, og passordet ditt vil ikke bli endret. Klikk på URL-en " -"nedenfor for å endre passordet.
        \n" -"
        \n" -"Tilbakestill passordet mitt: {$url}
        \n" -"
        \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.subject" -msgstr "Bekreft tilbakestilling av passord" - -msgid "emails.notification.description" -msgstr "" -"Denne e-posten er sendt til registrerte brukere som har valgt å motta denne " -"typen meldinger." - -msgid "emails.notification.body" -msgstr "" -"Du har mottatt en ny melding fra {$siteTitle}:
        \n" -"
        \n" -"{$notificationContents}
        \n" -"
        \n" -"Lenke: {$url}
        \n" -"
        \n" -"Dette er en automatisk generert e-post; ikke svar på denne meldingen.
        " -"\n" -"{$principalContactSignature}" - -msgid "emails.notification.subject" -msgstr "Ny melding fra {$siteTitle}" diff --git a/locale/nb_NO/locale.po b/locale/nb_NO/locale.po deleted file mode 100644 index 9c79cfbd3a3..00000000000 --- a/locale/nb_NO/locale.po +++ /dev/null @@ -1,1618 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-20 02:01+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.series.open" -msgstr "Åpne innleveringer" - -msgid "manager.series.indexed" -msgstr "Indeksert" - -msgid "submission.round" -msgstr "Runde {$round}" - -msgid "spotlight" -msgstr "Spotlight" - -msgid "installer.upgradeComplete" -msgstr "" -"

        Oppgradering av OMP til versjon {$version} ble gjennomført.

        \n" -"

        Ikke glem å sette «installert»-innstillingen i konfigurasjonsfilen din " -"(config.inc.php) tilbake til «På».

        \n" -"

        Om du ikke allerede har registrert deg og ønsker å motta nyheter og " -"oppdateringer, registrer deg påhttp://pkp.sfu.ca/ojs/register. Hvis " -"du har spørsmål eller kommentarer, besøk støtteforumet.

        " - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "

        Godkjenn oppsettet for publisering.

        " - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Godkjenn formatet" - -msgid "grid.catalogEntry.proof" -msgstr "Korrektur" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Ikke tilgjengelig" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Tilgjengelig" - -msgid "grid.catalogEntry.availability" -msgstr "TIlgjengelighet" - -msgid "catalog.coverImageTitle" -msgstr "Forsidebilde" - -msgid "user.authorization.invalidPublishedSubmission" -msgstr "En ugyldig publisert innlevering ble rapportert." - -msgid "user.profile.form.hideOtherContexts" -msgstr "Skjul andre utgivere" - -msgid "user.profile.form.showOtherContexts" -msgstr "Registrer hos andre utgivere" - -msgid "submission.pdf.download" -msgstr "Last ned denne PDF-filen" - -msgid "rt.metadata.pkp.dctype" -msgstr "Bok" - -msgid "debug.notes.helpMappingLoad" -msgstr "" -"Last inn XML-hjelp for å kartlegge filen {$filename} for å søke etter {$id}." - -msgid "debug.notes.currencyListLoad" -msgstr "Lastet valutalisten \"{$filename}\" fra XML" - -msgid "payment.directSales.monograph.description" -msgstr "" -"Denne transaksjonen er for kjøp av direkte nedlasting av en enkelt monografi " -"eller et monografikapittel." - -msgid "payment.directSales.monograph.name" -msgstr "Kjøp nedlasting av monografi eller kapittel" - -msgid "payment.directSales.download" -msgstr "Last ned {$format}" - -msgid "payment.directSales.purchase" -msgstr "Kjøp {$format} ({$amount} {$currency})" - -msgid "payment.directSales.validPriceRequired" -msgstr "En gyldig numerisk pris kreves." - -msgid "payment.directSales.price.description" -msgstr "" -"Filformater kan gjøres tilgjengelige for nedlasting fra forlagets nettsted " -"via Open Access uten kostnad for leserne eller direkte salg (ved hjelp av en " -"online betalingsprosessor konfigurert under Distribusjon). Spesifiser " -"hvilken tilgang som gjelder for denne filen." - -msgid "payment.directSales.openAccess" -msgstr "Open Access" - -msgid "payment.directSales.notSet" -msgstr "Ikke innstilt" - -msgid "payment.directSales.notAvailable" -msgstr "Ikke tilgjengelig" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.directSales" -msgstr "Direkte salg" - -msgid "payment.directSales.numericOnly" -msgstr "Prisene kan bare være numeriske. Ikke ta med valutasymboler." - -msgid "payment.directSales.priceCurrency" -msgstr "Pris ({$currency})" - -msgid "payment.directSales.approved" -msgstr "Godkjent" - -msgid "payment.directSales.catalog" -msgstr "Katalog" - -msgid "payment.directSales.availability" -msgstr "Tilgjengelighet" - -msgid "payment.directSales.price" -msgstr "Pris" - -msgid "payment.directSales" -msgstr "Last ned fra utgiverens nettside" - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "" -"Ingen tilgang! Brukergruppen du er en del av er ikke tilknyttet dette " -"redaksjonelle trinnet. Sjekk utgiverinnstillingene dine." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "" -"Ingen tilgang! Du har ikke blitt assosiert med dette redaksjonelle trinnet." - -msgid "user.authorization.seriesAssignment" -msgstr "" -"Du prøver å få tilgang til en monografi som ikke er en del av serien din." - -msgid "user.authorization.noContext" -msgstr "Ingen utgiver i denne konteksten!" - -msgid "user.authorization.invalidMonograph" -msgstr "Ugyldig monografi eller ingen monografi forespurt!" - -msgid "user.authorization.monographFile" -msgstr "Du har blitt nektet tilgang til den angitte monografifilen." - -msgid "user.authorization.monographReviewer" -msgstr "" -"Du har blitt nektet tilgang fordi du ikke ser ut til å ha fått tildelt " -"rollen som anmelder for denne monografien." - -msgid "user.authorization.monographAuthor" -msgstr "" -"Du har blitt nektet tilgang fordi du ikke ser ut til å være forfatter av " -"denne monografien." - -msgid "user.authorization.invalidReviewAssignment" -msgstr "Du har ikke rettigheter til å få tilgang til denne vurderingen." - -#, fuzzy -msgid "notification.type.visitCatalog" -msgstr "" -"Monografien er godkjent. Gå til 'Katalog' for å legge inn " -"kataloginformasjonen ved å bruke katalogkoblingen ovenfor." - -msgid "notification.type.visitCatalogTitle" -msgstr "Katalogadministrasjon" - -msgid "notification.type.configurePaymentMethod" -msgstr "Velg en betalingsmetode før du kan definere innstillinger for e-handel." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Ingen betalingsmetode er konfigurert." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "" -"Monografien vises ikke i katalogen før den er publisert. For å legge denne " -"boken til katalogen, klikk på fanen Publisering." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Venter på godkjenning." - -msgid "notification.type.approveSubmission" -msgstr "Denne innleveringen avventer godkjennelse før det kan vises i utgaven." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Den interne vurderingsprosessen har startet." - -msgid "notification.type.indexRequest" -msgstr "Du har blitt bedt om å lage en indeks for «{$title}»." - -msgid "notification.type.layouteditorRequest" -msgstr "Du har blitt bedt om å se over layouten av «{$title}»." - -msgid "notification.type.copyeditorRequest" -msgstr "Du har blitt bedt om å se over språvasken av «{$title}»." - -msgid "notification.type.editorAssignmentTask" -msgstr "En ny monografi har blitt levert inn. Opprett en redaktør for den." - -msgid "notification.type.public" -msgstr "Oppslag" - -msgid "notification.type.userComment" -msgstr "En leser har kommentert «{$title}»." - -msgid "notification.type.reviewing" -msgstr "Vurderingsaktivitet" - -msgid "notification.type.submissions" -msgstr "Innleveringshendelser" - -msgid "notification.type.site" -msgstr "Nettstedshenveldelser" - -msgid "notification.type.editing" -msgstr "Redigeringsaktivitet" - -msgid "notification.type.submissionSubmitted" -msgstr "En ny monografi, «{$title}», har blitt innlevert." - -msgid "notification.removedSubmission" -msgstr "Innlevering fjernet." - -msgid "notification.proofsApproved" -msgstr "Korrektur godkjent." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Metadata om publikasjonsformatet lagret." - -msgid "notification.savedCatalogMetadata" -msgstr "Metadata lagret." - -msgid "notification.removedSpotlight" -msgstr "Spotlight fjernet." - -msgid "notification.editedSpotlight" -msgstr "Spotlight redigert." - -msgid "notification.addedSpotlight" -msgstr "Spotlight lagt til." - -msgid "notification.removedMarket" -msgstr "Marked fjernet." - -msgid "notification.editedMarket" -msgstr "Marked redigert." - -msgid "notification.addedMarket" -msgstr "Marked lagt til." - -msgid "notification.removedRepresentative" -msgstr "Representant fjernet." - -msgid "notification.editedRepresentative" -msgstr "Representant redigert." - -msgid "notification.addedRepresentative" -msgstr "Representant lagt til." - -msgid "notification.removedSalesRights" -msgstr "Salgsrettigheter fjernet." - -msgid "notification.editedSalesRights" -msgstr "Salgsrettigheter redigert." - -msgid "notification.addedSalesRights" -msgstr "Salgsrettigheter lagt til." - -msgid "notification.removedPublicationFormat" -msgstr "Publikasjonsformat fjernet." - -msgid "notification.editedPublicationFormat" -msgstr "Publikasjonsformat redigert." - -msgid "notification.addedPublicationFormat" -msgstr "Publiseringsformat lagt til." - -msgid "notification.removedPublicationDate" -msgstr "Publiseringsdato fjernet." - -msgid "notification.editedPublicationDate" -msgstr "Publiseringdato redigert." - -msgid "notification.addedPublicationDate" -msgstr "Publiseringsdato lagt til." - -msgid "notification.removedIdentificationCode" -msgstr "Identifikasjonskode fjernet." - -msgid "notification.editedIdentificationCode" -msgstr "Identifikasjonskode redigert." - -msgid "notification.addedIdentificationCode" -msgstr "Identifikasjonskode lagt til." - -msgid "log.imported" -msgstr "{$userName} har importert artikkel {$submissionId}." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} har sendt inn {$submissionId} for planlegging." - -msgid "log.proofread.assign" -msgstr "" -"{$assignerName} har oppnevnt {$proofreaderName} til å korrigere manuskriptet " -"{$submissionId}." - -msgid "log.editor.editorAssigned" -msgstr "" -"{$editorName} er oppnevnt som redaktør for manuskriptet {$submissionId}." - -msgid "log.editor.restored" -msgstr "Manuskriptet {$submissionId} er hentet tilbake til arbeidsplanen." - -msgid "log.editor.archived" -msgstr "Manuskriptet {$submissionId} er arkivert." - -msgid "log.editor.recommendation" -msgstr "" -"En redaksjonell anbefaling ({$decision}) for artikkelen {$submissionId} ble " -"registrert av {$editorName}." - -msgid "log.editor.decision" -msgstr "" -"Redaktørbeslutningen ({$decision}) for artikkelen {$submissionId} ble " -"journalført av {$editorName}." - -msgid "log.review.reviewUnconsidered" -msgstr "" -"{$editorName} har markert {$round} runde for innlevering {$submissionId} som " -"uoverveid." - -msgid "log.review.reviewAccepted" -msgstr "" -"{$reviewerName} har akseptert runde {$round} vurdering av manuskript " -"{$submissionId}." - -msgid "log.review.reviewDeclined" -msgstr "" -"{$reviewerName} har avslått runde {$round} vurdering av manuskript " -"{$submissionId}." - -msgid "log.review.reviewDueDateSet" -msgstr "" -"Ventet-datoen for vurderingsrunde {$round} av manuskriptet {$submissionId} " -"ved {$reviewerName} er satt til {$dueDate}." - -msgid "installer.installationComplete" -msgstr "" -"

        OMP ble installert.

        \n" -"

        For å begynne å bruke systemet, logg inn med " -"brukernavnet og passord skrevet inn på forrige side.

        \n" -"

        Om du ønsker å bli del av PKP-fellesskapet, kan du:

        \n" -"
          \n" -"\t
        1. LesePKP-bloggen " -"og følgeRSS-" -"tjenesten for nyheter og oppdateringer.
        2. \n" -"\t
        3. Besøk støtteforumet om du har spørsmål og kommentarer.
        4. \n" -"
        " - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

        Viktig!

        \n" -"

        Installasjonen kunne ikke automatisk overskrive konfigurasjonsfilen. Før " -"du forsøker å bruke systemet, vennligst åpne config.inc.php i et " -"egnet tekstbehandlingsprogram og erstatt innholdet i den med innholdet i " -"tekstfeltet nedenfor.

        " - -msgid "installer.upgradeApplication" -msgstr "Oppgrader Open Monograph Press" - -msgid "installer.databaseSettingsInstructions" -msgstr "" -"OMP krever tilgang til en SQL-database for lagring av data. Se listen over " -"databaser som støttes i systemkravene ovenfor. Skriv inn innstillingene som " -"skal brukes for å opprette forbindelsen med databasen i feltene nedenfor." - -msgid "installer.filesDirInstructions" -msgstr "" -"Skriv inn fullstendig sti til en eksisterende mappe hvor opplastede filer " -"skal oppbevares. Denne mappen bør ikke kunne aksesseres direkte fra " -"internett. Vennligst sikre at denne mappen finnes og er overskrivbar " -"før du installerer. Windows filstinavn bør bruke vanlig skråstrek " -"(/), for eks. \"C:/myjournal/files\"." - -msgid "installer.additionalLocalesInstructions" -msgstr "" -"Velg øvrige språk som skal støttes i dette systemet. Disse språkene vil bli " -"tilgjengelig til bruk for de tidsskrift nettstedet er vert for. Flere språk " -"kan også installeres når som helst, gjennom grensesnittet for " -"nettstedsadministrasjon." - -msgid "installer.localeInstructions" -msgstr "" -"Primærspråket som skal brukes i dette systemet. Vennligst slå opp i OMP-" -"dokumentasjonen hvis du er interessert i støtte for språk som ikke er " -"oppført her." - -msgid "installer.maxFileUploadSize" -msgstr "" -"Serveren din lar for øyeblikket filene ha den maksimale størrelsen " -"{$maxFileUploadSize}" - -msgid "installer.allowFileUploads" -msgstr "" -"Serveren din lar for øyeblikket disse filene bli opplastet " -"{$allowFileUploads}" - -msgid "installer.localeSettingsInstructions" -msgstr "" -"For fullstendig støtte for Unicode (UTF-8), velg UTF-8 for alle " -"innstillingene for tegnsett. Pass på at fullstendig støtte for Unicode " -"krever at PHP er kompilert med støtte for mbstring biblioteket. Det kan hende du får " -"problemer med å bruke utvidede tegnsett om serveren din ikke fyller disse " -"kravene. Serveren din støtter mbstring: {$supportsMBString}" - -msgid "installer.upgradeInstructions" -msgstr "" -"

        OMP versjon {$version}

        \n" -"\n" -"

        Takk for at du laster ned Public Knowledge Projects Open " -"Monograph Press. Før du går videre, les filene README- og UPGRADE " -"som følger med denne programvaren. For mer informasjon om Public Knowledge " -"Project og deres programvareprosjekter, se PKPs nettsted. Hvis du har feilmeldinger eller " -"spørsmål om teknisk støtte for Open Journal Systems, se OJS' støtteforum eller besøk PKPs nettbaserte feilmeldingssystem. Selv om støtteforumet er den foretrukne " -"kontaktkanalen, kan du også sende en e-post til teamet: pkp-support@sfu.ca.

        \n" -"

        Det er på det sterkeste anbefalt at du tar backup av " -"databasen din, filmappen og OJS installasjonsmappe før du går videre.

        \n" -"

        Hvis du kjører installasjonen i PHP Safe Mode må du forsikre deg om at " -"max_execution_time directive i din php.ini konfigurasjonsfil er satt til en " -"høy grense. Hvis denne eller en annen tidsbegrensning (for eks. Apaches " -"«Timeout» direktiv) blir overskredet og oppgraderingsprosessen dermed blir " -"avbrutt, vil det bli nødvendig å gripe inn manuelt.

        " - -msgid "installer.preInstallationInstructions" -msgstr "" -"

        1. De følgende filene og mappene (og deres innhold) må være " -"overskrivbare:

        \n" -"\t
          \n" -"\t\t
        • config.inc.php er overskrivbar (valgfritt): " -"{$writable_config}
        • \n" -"\t\t
        • public/ er overskrivbar: {$writable_public}
        • \n" -"\t\t
        • cache/ er overskrivbar: {$writable_cache}
        • \n" -"\t\t
        • cache/t_cache/ er overskrivbar: " -"{$writable_templates_cache}
        • \n" -"\t\t
        • cache/t_compile/ er overskrivbar: " -"{$writable_templates_compile}
        • \n" -"\t\t
        • cache/_db er overskrivbar: {$writable_db_cache}
        • \n" -"\t
        \n" -"

        2. Det må lages en mappe for å lagre opplastede filer. Mappen må være " -"overskrivbar. (Se «Filinnstillinger» under).

        " - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Steg før installasjon" - -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

        Takk for at du lastet ned the Public Knowledge Projects Open " -"Monograph Press {$version}. Før du fortsetter, vennligst les README filen som følger med denne " -"programvaren. For mer informasjon om the Public Knowledge Project og dets " -"programvareprosjekter, se " -"PKPs nettside. Hvis du har en feilmelding eller trenger teknisk " -"brukerstøtte for OMP, se supportforumet eller besøk PKPs nettbaserte feilrapporteringssystem. " -"Selv om supportforumet er den foretrukne måten å ta kontakt på, kan du også " -"sende e-post til teamet på pkp.contact@gmail.com.

        \n" - -msgid "installer.installApplication" -msgstr "Installer Open Monograph Press" - -msgid "installer.ompUpgrade" -msgstr "OMP-oppgradering" - -msgid "installer.appInstallation" -msgstr "OMP installasjon" - -msgid "help.goToEditPage" -msgstr "Åpne ny side for å redigere disse opplysningene" - -msgid "help.searchReturnResults" -msgstr "Tilbake til søkeresultat" - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "" -"Dette nettstedet bruker Open Monograph Press {$ompVersion}, som er " -"programvare for open source redigering og publisering utviklet, støttet og " -"distribuert fritt av Public Knowledge " -"Project under GNU General Public License." - -msgid "about.aboutOMPPress" -msgstr "" -"Denne utgiveren bruker Open Monograph Press {$ompVersion}, som er basert på " -"åpen kildekode- og publiseringsprogramvare som er utviklet, støttet og " -"distribuert fritt av Public Knowledge " -"Project under GNU General Public License. " -"Kontakt utgiveren direkte for spørsmål om utgiveren og innleveringer til " -"utgiveren." - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "OMP sin redaksjonelle prosess og publiseringsprosess" - -msgid "about.aboutThisPublishingSystem" -msgstr "" -"Mer informasjon om dette publiseringssystemet, plattformen og arbeidsflyten " -"fra OMP/PKP." - -msgid "about.pressSponsorship" -msgstr "Sponsorer" - -msgid "about.openAccessPolicy" -msgstr "Open Access-retningslinjer" - -msgid "about.publicationFrequency" -msgstr "Publiseringsfrekvens" - -msgid "about.reviewPolicy" -msgstr "Fagfellevurderingsprosess" - -msgid "about.privacyStatement" -msgstr "Personvernerklæring" - -msgid "about.copyrightNotice" -msgstr "Opphavsrettserklæring" - -msgid "about.submissionPreparationChecklist.description" -msgstr "" -"Som del av innsendingsprosessen må forfatteren krysse av for at " -"innleveringen oppfyller følgende krav, og manuskript som ikke oppfyller " -"kravene og følger retningslinjene, kan bli returnert til forfatteren." - -msgid "about.submissionPreparationChecklist" -msgstr "Sjekkliste for klargjøring av innlevering" - -msgid "about.authorGuidelines" -msgstr "Forfatterinstruks" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "Se dine innleveringer til vurdering" - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Ny innlevering" - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} eller {$viewSubmissions}." - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} eller {$register} for å foreta en innlevering." - -msgid "about.onlineSubmissions.register" -msgstr "Registrer" - -msgid "about.onlineSubmissions.login" -msgstr "Innlogging" - -msgid "about.onlineSubmissions" -msgstr "Online innleveringer" - -msgid "about.submissions" -msgstr "Innleveringer" - -msgid "about.seriesPolicies" -msgstr "Retningslinjer for serier og kategorier" - -msgid "about.focusAndScope" -msgstr "Hovedfokus og spennvidde" - -msgid "about.editorialPolicies" -msgstr "Redaksjonelle retningslinjer" - -msgid "about.editorialTeam" -msgstr "Redaksjon" - -msgid "about.aboutContext" -msgstr "Om utgiveren" - -msgid "about.pressContact" -msgstr "Kontakt" - -msgid "site.pressView" -msgstr "Vis utgiverens nettside" - -msgid "site.noPresses" -msgstr "Det er ingen utgivere tilgjengelig." - -msgid "user.register.form.privacyConsentThisContext" -msgstr "" -"Ja, jeg godtar at dataene mine blir samlet inn og lagret i samsvar med denne " -"utgiverens personvernerklæring " -"." - -msgid "user.register.form.userGroupRequired" -msgstr "Du må velge minst en rolle" - -msgid "user.register.reviewerInterests" -msgstr "" -"Angi interessante vurderingsområder (hovedområder og forskningsmetoder):" - -msgid "user.register.reviewerDescription" -msgstr "" -"Villig til å utføre fagvurdering av innleveringer for utgiveren. Oppgi " -"fagvurderingsinteresse (hovedområder og forskningsmetoder)." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Villig til å utføre fagfellevurdering av innleveringer for utgiveren." - -msgid "user.register.authorDescription" -msgstr "Kan sende inn innleveringer til utgiveren." - -msgid "user.register.readerDescription" -msgstr "Be om e-postvarsel når en ny monografi publiseres." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Passordet du skrev inn er ikke langt nok." - -msgid "user.register.registrationDisabled" -msgstr "Denne utgiveren tar for øyeblikket ikke i mot brukerregistrering." - -msgid "user.register.privacyStatement" -msgstr "Personvernerklæring" - -msgid "user.register.noContexts" -msgstr "" -"Det finnes ingen utgivere du kan registrere deg hos på dette nettstedet." - -msgid "user.register.selectContext" -msgstr "Velg en utgiver å registrere i:" - -msgid "user.role.productionEditors" -msgstr "Produksjonsredaktører" - -msgid "user.role.proofreaders" -msgstr "Korrekturlesere" - -msgid "user.role.copyeditors" -msgstr "Språkvaskere" - -msgid "user.role.editors" -msgstr "Redaktører" - -msgid "user.role.subEditors" -msgstr "Serieredaktører" - -msgid "user.role.managers" -msgstr "Redaksjonsledere" - -msgid "user.role.productionEditor" -msgstr "Produksjonsredaktør" - -msgid "user.role.proofreader" -msgstr "Korrekturleser" - -msgid "user.role.copyeditor" -msgstr "Språkvasker" - -msgid "user.role.subEditor" -msgstr "Serieredaktør" - -msgid "user.role.pressEditor" -msgstr "Redaktør" - -msgid "user.role.manager" -msgstr "Redaksjonsleder" - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Dersom du er bedt om å være fagfelle for en utgiver, oppgi de faglige " -"interessene dine her." - -msgid "user.register.otherContextRoles" -msgstr "Be om følgende roller." - -msgid "user.register.contextsPrompt" -msgstr "Hvilke utgivere på dette nettstedet vil du registere deg hos?" - -msgid "user.reviewerPrompt.optin" -msgstr "" -"Ja, jeg vil gjerne kontaktes angående forespørsler om fagfellevurdering av " -"innleveringer til denne utgiveren." - -msgid "user.reviewerPrompt.userGroup" -msgstr "Ja, be om en rolle i {$userGroup}." - -msgid "user.reviewerPrompt" -msgstr "Er du villig til å bli fagfelle hos denne utgiveren?" - -msgid "user.noRoles.regReviewerClosed" -msgstr "" -"Registrer som Fagfelle: Registrering av fagfeller er for øyeblikket " -"deaktivert." - -msgid "user.noRoles.regReviewer" -msgstr "Registrer som fagfelle" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "" -"Send inn en monografi: Forfatterregistrering er for øyeblikket deaktivert." - -msgid "user.noRoles.submitMonograph" -msgstr "Send inn til en utgiver" - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Inkluder brukere som ikke har noen rolle hos denne utgiveren." - -msgid "context.select" -msgstr "Bytt til en annen utgiver:" - -msgid "context.current" -msgstr "Gjeldende utgiver:" - -msgid "context.context" -msgstr "Utgivere" - -msgid "context.contexts" -msgstr "Utgivere" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Lenke til dine nye utgivelser." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Nye utgivelser" - -msgid "navigation.navigationMenus.category.description" -msgstr "Lenke til en kategori." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Kategori" - -msgid "navigation.navigationMenus.series.description" -msgstr "Lenke til en serie." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Serier" - -msgid "navigation.skip.spotlights" -msgstr "Gå til spotlight" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Lenke til din katalog." - -msgid "navigation.linksAndMedia" -msgstr "Lenker og sosiale medier" - -msgid "navigation.wizard" -msgstr "Trinnvis veiledning" - -msgid "navigation.published" -msgstr "Publisert" - -msgid "navigation.newReleases" -msgstr "Nye utgivelser" - -msgid "navigation.infoForLibrarians.long" -msgstr "Informasjon for bibliotekarer" - -msgid "navigation.infoForAuthors.long" -msgstr "Informasjon for forfattere" - -msgid "navigation.infoForLibrarians" -msgstr "For bibliotekarer" - -msgid "navigation.infoForAuthors" -msgstr "For forfattere" - -msgid "navigation.catalog.administration.series" -msgstr "Serier" - -msgid "navigation.catalog.administration.categories" -msgstr "Kategorier" - -msgid "navigation.catalog.administration" -msgstr "Katalogadministrasjon" - -msgid "navigation.catalog.administration.short" -msgstr "Administrasjon" - -msgid "navigation.catalog.manage" -msgstr "Administrer" - -msgid "navigation.catalog.allMonographs" -msgstr "Alle monografier" - -msgid "navigation.competingInterestPolicy" -msgstr "Policy for interessekonflikter" - -msgid "navigation.catalog" -msgstr "Katalog" - -msgid "common.homePageHeader.altText" -msgstr "Nettstedets hovedside: topptekst" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.listbuilder.itemExists" -msgstr "Du kan ikke legge til samme element flere ganger." - -msgid "common.listbuilder.selectValidOption" -msgstr "Velg et gyldig alternativ i listen." - -msgid "common.listbuilder.completeForm" -msgstr "Fyll ut alle felt i skjemaet." - -msgid "common.moreInfo" -msgstr "Mer informasjon" - -msgid "common.searchCatalog" -msgstr "Søk i katalog" - -msgid "common.feature" -msgstr "Anbefalt" - -msgid "common.preview" -msgstr "Forhåndsvisning" - -msgid "common.prefix" -msgstr "Prefiks" - -msgid "common.publications" -msgstr "Monografier" - -msgid "common.publication" -msgstr "Monografi" - -msgid "submission.search" -msgstr "Boksøk" - -msgid "catalog.viewableFile.return" -msgstr "Tilbake til detaljer om {$monographTitle}" - -msgid "catalog.viewableFile.title" -msgstr "{$type}-visning av filen {$title}" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Posisjon i serien (høyeste først)" - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Posisjon i serien (laveste først)" - -msgid "catalog.sortBy.catalogDescription" -msgstr "Bestem sorteringen på bøkene i kategorien." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Velg hvordan bøkene sorteres i denne kategorien." - -msgid "catalog.sortBy.seriesDescription" -msgstr "Velg hvordan bøkene i denne serien skal sorteres." - -msgid "catalog.sortBy" -msgstr "Sorter monografier" - -msgid "catalog.loginRequiredForPayment" -msgstr "" -"Merk: For å kjøpe varer må du først logge på. Hvis du velger et produkt du " -"vil kjøpe, kommer du til påloggingssiden. Publikasjoner merket med et Open " -"Access-ikon kan lastes ned gratis uten å logge inn." - -msgid "catalog.aboutTheAuthor" -msgstr "Om {$roleName}" - -msgid "catalog.category.subcategories" -msgstr "Underkategorier" - -msgid "catalog.parentCategory" -msgstr "Hovedkategori" - -msgid "catalog.categories" -msgstr "Kategorier" - -msgid "catalog.forthcoming" -msgstr "Kommende" - -msgid "catalog.published" -msgstr "Publisert" - -msgid "catalog.publicationInfo" -msgstr "Informasjon om publikasjonen" - -msgid "catalog.dateAdded" -msgstr "Lagt til" - -msgid "catalog.newReleases" -msgstr "Nye utgivelser" - -msgid "catalog.category.heading" -msgstr "Alle bøker" - -msgid "catalog.foundTitlesSearch" -msgstr "{$number} titler ble funnet for søket \"{$searchQuery}\"." - -msgid "catalog.foundTitleSearch" -msgstr "En tittel samsvarte med søket ditt \"{$searchQuery}\"." - -msgid "catalog.featuredBooks" -msgstr "Anbefalte bøker" - -msgid "catalog.featured" -msgstr "Anbefalt" - -msgid "catalog.feature" -msgstr "Anbefaling" - -msgid "catalog.noTitlesSearch" -msgstr "Ingen titler samsvarer med søket ditt \"{$searchQuery}\"." - -msgid "catalog.noTitlesNew" -msgstr "Ingen nye utgivelser er tilgjengelig for øyeblikket." - -msgid "catalog.noTitles" -msgstr "Ingen titler har blitt publisert enda." - -msgid "catalog.manage.isNotNewRelease" -msgstr "Denne monografien er ikke en ny utgivelse. Legg den til nye utgivelser." - -msgid "catalog.manage.isNewRelease" -msgstr "" -"Denne monografien er markert som en ny utgivelse. Fjern den fra nye " -"utgivelser." - -msgid "catalog.manage.isNotFeatured" -msgstr "Denne monografien er ikke utvalgt. Gjør denne monografien utvalgt." - -msgid "catalog.manage.isFeatured" -msgstr "Denne monografien er utvalgt. Gjør denne monografien ikke utvalgt." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Søk etter tittel og forfatter" - -msgid "catalog.manage.nonOrderable" -msgstr "Denne monografien kan ikke bestilles før den har blitt utvalgt." - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Ny utgivelse i serie" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Ny utgivelse i kategori" - -msgid "catalog.manage.feature.newRelease" -msgstr "Ny utgivelse" - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Boken er ikke markert som en ny utgave." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Boken er markert som en ny utgivelse." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Monografi er ikke utvalgt." - -msgid "catalog.manage.featuredSuccess" -msgstr "Monografi er utvalgt." - -msgid "catalog.manage.seriesFeatured" -msgstr "Utvalgt i serier" - -msgid "catalog.manage.categoryFeatured" -msgstr "Utvalgt i kategori" - -msgid "catalog.manage.featured" -msgstr "Utvalgt" - -msgid "catalog.manage.noMonographs" -msgstr "Det er ingen tildelte monografier." - -msgid "catalog.manage.manageCategories" -msgstr "Administrer kategorier" - -msgid "catalog.manage.manageSeries" -msgstr "Administrer serier" - -msgid "catalog.manage.newRelease" -msgstr "Utgivelse" - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Karusell" - -msgid "catalog.manage.seriesDescription" -msgstr "" -"Klikk \"Velg\" og deretter stjernen for å velge en utvalgt bok for denne " -"serien; dra og slipp for å bestille. Serier identifiseres av en redaktør og " -"en serietittel innenfor en kategori, eller uavhengig." - -msgid "catalog.manage.categoryDescription" -msgstr "" -"Klikk på 'Velg' og deretter på stjernen for å velge en utvalgt bok for denne " -"kategorien; dra og slipp for å bestille." - -msgid "catalog.manage.homepageDescription" -msgstr "" -"Omslagsbildet til utvalgte bøker vises øverst på nettstedet som et rullbart " -"oppsett. Klikk 'Velg' og deretter stjernen for å legge til en bok i " -"karusellen. klikk på utropstegnet for å indikere at det er en ny utgivelse; " -"dra og slipp for å ordne rekkefølgen." - -msgid "catalog.selectCategory" -msgstr "Velg kategori" - -msgid "catalog.selectSeries" -msgstr "Velg serie" - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "ISSN for nettutgave og for trykt utgave kan ikke være like." - -msgid "catalog.manage.series.printIssn" -msgstr "ISSN for trykt utgave" - -msgid "catalog.manage.series.onlineIssn" -msgstr "ISSN for nettutgave" - -msgid "catalog.manage.series.issn.validation" -msgstr "Legg inn et gyldig ISSN." - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series" -msgstr "Serier" - -msgid "catalog.manage.category" -msgstr "Kategori" - -msgid "catalog.manage.newReleases" -msgstr "Nye utgivelser" - -msgid "catalog.manage" -msgstr "Kataloghåndtering" - -msgid "series.path" -msgstr "Sti" - -msgid "series.featured.description" -msgstr "Serien kommer til å vises i hovedmenyen" - -msgid "series.series" -msgstr "Serier" - -msgid "submissionGroup.assignedSubEditors" -msgstr "Valgte redaktører" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Tilgjengelige filer" - -msgid "grid.reviewAttachments.add" -msgstr "Legg til vedleg til fagfellevurdering" - -msgid "grid.action.formatAvailable" -msgstr "Steng eller åpne tilgang til dette formatet" - -msgid "grid.action.availableRepresentation" -msgstr "Godkjenn/avvis dette formatet" - -msgid "grid.action.proofApproved" -msgstr "Formatet har gått gjennom korrektur" - -msgid "grid.action.approveProofs" -msgstr "Vis korrekturer" - -msgid "grid.action.submissionEmail" -msgstr "Trykk for å lese denne e-posten" - -msgid "grid.action.moreAnnouncements" -msgstr "Gå til oppslagssiden" - -msgid "grid.action.publicationFormatTab" -msgstr "Vis fanen med publikasjonsformat" - -msgid "grid.action.createContext" -msgstr "Opprett ny utgiver" - -msgid "grid.action.deleteDate" -msgstr "Ta bort dato" - -msgid "grid.action.editDate" -msgstr "Rediger dato" - -msgid "grid.action.addDate" -msgstr "Legg til publiseringsdato" - -msgid "grid.action.deleteMarket" -msgstr "Ta bort marked" - -msgid "grid.action.editMarket" -msgstr "Rediger marked" - -msgid "grid.action.addMarket" -msgstr "Legg til marked" - -msgid "grid.action.deleteRights" -msgstr "Ta bort disse rettighetene" - -msgid "grid.action.editRights" -msgstr "Rediger disse rettighetene" - -msgid "grid.action.addRights" -msgstr "Legg til salgsrettigheter" - -msgid "grid.action.deleteCode" -msgstr "Ta bort kode" - -msgid "grid.action.editCode" -msgstr "Rediger kode" - -msgid "grid.action.addCode" -msgstr "Legg til kode" - -msgid "grid.action.manageSeries" -msgstr "Konfigurer serier" - -msgid "grid.action.manageCategories" -msgstr "Konfigurer kategorier" - -msgid "grid.action.releaseMonograph" -msgstr "Marker denne publikasjonen som en 'ny utgave'" - -msgid "grid.action.featureMonograph" -msgstr "Vis dette i katalogkarusellen" - -msgid "grid.action.feature" -msgstr "Koble på funksjonsdisplayet" - -msgid "grid.action.publicCatalog" -msgstr "Vis dette objektet i katalogen" - -msgid "grid.action.newCatalogEntry" -msgstr "Ny katalogoppføring" - -msgid "grid.action.addAnnouncement" -msgstr "Legg til oppslag" - -msgid "grid.action.pageProofApproved" -msgstr "Korrekturfilen er klar for publisering" - -msgid "grid.action.approveProof" -msgstr "Godkjenn korrekturen for indeksering og inkludering i katalogen" - -msgid "grid.action.addFormat" -msgstr "Legg til publikasjonsformat" - -msgid "grid.action.deleteFormat" -msgstr "Ta bort dette formatet" - -msgid "grid.action.editFormat" -msgstr "Rediger dette formatet" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Formatet vises i katalogoppføringen" - -msgid "grid.action.catalogEntry" -msgstr "Vis katalogoppøringsskjema" - -msgid "grid.libraryFiles.column.files" -msgstr "Filer" - -msgid "grid.action.addSpotlight" -msgstr "Legg til spotlight" - -msgid "grid.action.deleteSpotlight" -msgstr "Ta bort spotlight" - -msgid "grid.action.editSpotlight" -msgstr "Rediger spotlight" - -msgid "grid.content.spotlights.locationRequired" -msgstr "Velg et område for denne spotlighten." - -msgid "grid.content.spotlights.titleRequired" -msgstr "En spotlight-tittel kreves." - -msgid "grid.content.spotlights.itemRequired" -msgstr "Et objekt kreves." - -msgid "grid.content.spotlights.form.type.book" -msgstr "Bok" - -msgid "grid.content.spotlights.form.title" -msgstr "Spotlight-tittel" - -msgid "grid.content.spotlights.form.item" -msgstr "Legg inn spotlight-tittelen (autofullføring)" - -msgid "grid.content.spotlights.form.location" -msgstr "Spotlight-plassering" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Hovedside" - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Spotlight-element" - -msgid "spotlight.author" -msgstr "Forfattere, " - -msgid "spotlight.title.homePage" -msgstr "I spotlight" - -msgid "spotlight.noneExist" -msgstr "Det finnes ingen aktuelle spotlights." - -msgid "spotlight.spotlights" -msgstr "Spotlights" - -msgid "grid.action.deleteRepresentative" -msgstr "Ta bort representant" - -msgid "grid.action.editRepresentative" -msgstr "Rediger representant" - -msgid "grid.action.addRepresentative" -msgstr "Legg til representant" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "" -"Du kan la denne delen stå tomt hvis du leverer din egne tjenester til " -"kundene dine." - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Type representant-ID (GLN anbefales)" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Representant-ID" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Nettside" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "E-post adresse" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Telefon" - -msgid "grid.catalogEntry.representativeName" -msgstr "Navn" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Rolle" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Velg en rolle:" - -msgid "grid.catalogEntry.supplier" -msgstr "Leverandør" - -msgid "grid.catalogEntry.agentTip" -msgstr "" -"Du kan velge en agent til å representere deg i det definerte området. " -"(Valgfritt)." - -msgid "grid.catalogEntry.agent" -msgstr "Agent" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Leverandører" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agenter" - -msgid "grid.catalogEntry.representativeType" -msgstr "Type representant" - -msgid "grid.catalogEntry.representatives" -msgstr "Representanter" - -msgid "grid.catalogEntry.dateRequired" -msgstr "En dato kreves, og datoen må være på det valgte datoformatet." - -msgid "grid.catalogEntry.dateFormat" -msgstr "Datoformat" - -msgid "grid.catalogEntry.dateRole" -msgstr "Rolle" - -msgid "grid.catalogEntry.dateValue" -msgstr "Dato" - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Et datoformat kreves." - -msgid "grid.catalogEntry.roleRequired" -msgstr "Det kreves en representant-rolle." - -msgid "grid.catalogEntry.publicationDates" -msgstr "Publikasjonsdatoer" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Område" - -msgid "grid.catalogEntry.markets" -msgstr "Markedsområder" - -msgid "grid.catalogEntry.excluded" -msgstr "Ekskludert" - -msgid "grid.catalogEntry.included" -msgstr "Inkludert" - -msgid "grid.catalogEntry.regions" -msgstr "Regioner" - -msgid "grid.catalogEntry.countries" -msgstr "Land" - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "" -"En ROW-salgstype (resten av verden) er allerede definert for dette " -"publikasjonsformatet." - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "" -"Merk av i denne boksen for å bruke denne salgsrettighetsoppføringen som en " -"samlebetegnelse for formatet ditt. Land og regioner trenger ikke å velges i " -"dette tilfellet." - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Resten av verden?" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Type salgsrettighet" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Kodeverdi" - -msgid "grid.catalogEntry.salesRights" -msgstr "Salgsrettigheter" - -msgid "grid.catalogEntry.valueRequired" -msgstr "En verdi kreves." - -msgid "grid.catalogEntry.codeRequired" -msgstr "Identifikasjonskode kreves." - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "ONIX-kodetype" - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Kodeverdi" - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "En sammensetningskode for produktet kreves." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "En tilgjengelighetskode for produktet kreves." - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "En filstørrelse for digitale formater kreves." - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Venter på godkjenning" - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Godkjent" - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Korrektur ikke godkjent." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Formatet finnes ikke i katalogoppføringen." - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Katalogoppføring ikke godkjent." - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

        Dette formatet vil ikke være tilgjengelig for lesere . " -"Eventuelle nedlastbare filer eller andre distribusjoner vises ikke lenger i " -"bokens katalogoppføring.

        " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Tilgjengeliggjøring av formatet" - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "" -"

        Gjør dette formatet tilgjengelig for leserne . Nedlastbare " -"filer og andre distribusjoner vises i bokens katalogoppføring.

        " - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

        Gjør om godkjenningen av oppsettet.

        " - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Et publikasjonsformat må velges." - -msgid "grid.catalogEntry.monographRequired" -msgstr "En monografi-ID kreves." - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL til eksternt materiale" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Dette formatet vil bli tilgjengelig fra et separat nettsted" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Fysisk format" - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Formatdetaljer" - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "En gyldig pris kreves." - -msgid "grid.catalogEntry.nameRequired" -msgstr "Et navn kreves." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Publikasjonsformat" - -msgid "monograph.publicationFormat.openTab" -msgstr "Åpne fanen for publikasjonsformat." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "" -"

        Det valgte publikasjonsformatet eksisterer ikke lenger for denne " -"monografien.

        " - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Noen metadatafelt mangler." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Identifikasjonskode mangler." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Markeder og priser mangler." - -msgid "monograph.publicationFormat.isApproved" -msgstr "" -"Inkluder metadataene for dette publikasjonsformatet i katalogoppføringen for " -"denne boken." - -msgid "monograph.publicationFormat.taxType" -msgstr "Beskatningstype" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Beskatningsprosent" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Produktdistribusjonsregion" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Digital teknisk beskyttelse" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Produksjonsland" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Bredde" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Vekt" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Tykkelse" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Høyde" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Legg inn din egen filstørrelse?" - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Filstørrelse i Mbytes" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Fysiske dimensjoner" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Digital informasjon" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Returindikator" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Produktets tilgjengelighet" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Rabattprosent, hvis relevant" - -msgid "monograph.publicationFormat.priceType" -msgstr "Pristype" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Legg inn pris (kreves)." - -msgid "monograph.publicationFormat.price" -msgstr "Pris" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Identifikatorer" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Produktsammensetning (valgfritt)" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Produktsammensetning" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Tilleggssider (etter bokens hoveddtekst)" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Forsiden" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Sideantall" - -msgid "monograph.publicationFormat.imprint" -msgstr "Varemerke" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Open Access" - -msgid "monograph.task.addNote" -msgstr "Legg til i oppgave" - -msgid "monograph.proofReadingDescription" -msgstr "" -"Layoutredigereren laster opp de produksjonsklare filene som er klare for " -"publisering her. Bruk + Tildel for å nominere forfattere og andre " -"til korrekturlesing av tilpassede korrekturlesesider lastet opp for " -"godkjenning før publisering." - -msgid "submission.pageProofs" -msgstr "Korrektur" - -msgid "monograph.type" -msgstr "Type innlevering" - -msgid "monograph.carousel.publicationFormats" -msgstr "Formater:" - -msgid "monograph.miscellaneousDetails" -msgstr "Detaljer om denne publikasjonen" - -msgid "monograph.publicationFormatDetails" -msgstr "Detaljer om det tilgjengelige publikasjonsformatet: {$format}" - -msgid "monograph.publicationFormat" -msgstr "Format" - -msgid "monograph.publicationFormats" -msgstr "Publikasjonsformat" - -msgid "monograph.languages" -msgstr "Språk (engelsk, fransk, spansk)" - -msgid "monograph.audience.rangeExact" -msgstr "Leserrangering (nøyaktig)" - -msgid "monograph.audience.rangeTo" -msgstr "Leserrangering (til)" - -msgid "monograph.audience.rangeFrom" -msgstr "Leserrangering (fra)" - -msgid "monograph.audience.rangeQualifier" -msgstr "Lesernes kvalitetsrangering" - -msgid "monograph.coverImage" -msgstr "Omslag" - -msgid "monograph.audience.success" -msgstr "Leserinnstilingene har blitt oppdatert." - -msgid "monograph.audience" -msgstr "Lesere" - -msgid "installer.updatingInstructions" -msgstr "" -"Hvis du oppgraderer en eksisterende innstallasjon av OMP: fortsett til oppgraderingen ." - -msgid "about.aboutSoftware" -msgstr "Om Open Monograph Press" - -msgid "user.authorization.representationNotFound" -msgstr "Publiseringsformatet ble ikke funnet." - -msgid "catalog.manage.findSubmissions" -msgstr "Finn monografier som skal legges til katalogen" - -msgid "catalog.manage.submissionsNotFound" -msgstr "En eller flere av innleveringene ble ikke funnet." - -msgid "catalog.manage.noSubmissionsSelected" -msgstr "Ingen innleveringer ble valgt for å bli lagt til katalogen." - -msgid "common.payments" -msgstr "Betalinger" diff --git a/locale/nb_NO/manager.po b/locale/nb_NO/manager.po deleted file mode 100644 index ee81d65ca34..00000000000 --- a/locale/nb_NO/manager.po +++ /dev/null @@ -1,1408 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-20 02:01+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "Til forfattere for å indeksere eget verk" - -msgid "manager.setup.focusScopeDescription" -msgstr "EXAMPLE HTML DATA" - -msgid "manager.setup.focusScope" -msgstr "Hovedfokus og spennvidde" - -msgid "manager.setup.focusAndScope.description" -msgstr "" -"Beskriv spennvidden på artikler og annet innhold som utgiveren vil publisere " -"til forfattere, lesere og bibliotekarer." - -msgid "manager.setup.focusAndScope" -msgstr "Hovedfokus og spennvidde" - -msgid "manager.setup.enableUserRegistration" -msgstr "La brukere registrere seg på utgiverens nettsted." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "" -"Brukerdefinerte identifikatorer brukes til å identifisere " -"publiseringsversjoner (for eksempel HTML- eller PDF-filer) av publisert " -"innhold." - -msgid "manager.setup.enablePublicMonographId" -msgstr "" -"Brukerdefinerte identifikatorer brukes til å identifisere publisert innhold." - -msgid "manager.setup.enablePressInstructions" -msgstr "Vis denne utgiveren på nettstedet" - -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "" -"Hvor mange oppslag som skal vises på hovedsiden. La dette være tomt hvis du " -"ikke ønsker å vise noen." - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Vis på hovedsiden" - -msgid "manager.setup.enableAnnouncements.description" -msgstr "" -"Oppslag kan publiseres for å informere lesere om tidsskriftnyheter og " -"begivenheter. Publiserte oppslag vises på oppslagstavlen." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Aktiver mulighet for å lage oppslag" - -msgid "manager.setup.emailSignature.description" -msgstr "" -"De forberedte e-postene som blir sendt av systemet på vegne av tidsskriftet " -"kommer til å ha følgende signatur nederst." - -msgid "manager.setup.emailSignature" -msgstr "Signatur" - -msgid "manager.setup.emails" -msgstr "E-post identifikasjon" - -msgid "manager.setup.emailBounceAddress.disabled" -msgstr "" -"NB: For å aktivere denne valgmuligheten, må " -"nettstedsadministratoren slå på allow_envelope_sender " -"valgmuligheten i OMP konfigurasjonsfilen. Ytterligere serverkonfigurasjon " -"kan være nødvendig for å støtte denne funksjonen (som likevel kan være " -"umulig å bruke på enkelte servere), som oppgitt i OMP-dokumentasjonen." - -msgid "manager.setup.emailBounceAddress.description" -msgstr "" -"Alle e-poster som ikke kan leveres, vil utløse en feilmelding som sendes til " -"denne adressen." - -msgid "manager.setup.emailBounceAddress" -msgstr "Feilmeldingsadresse" - -msgid "manager.setup.editorDecision" -msgstr "Redaktørens beslutning" - -msgid "manager.setup.doiPrefixDescription" -msgstr "" -"DOI-prefikset er tildelt av CrossRef og er i 10.xxxx-format (f.eks. 10.1234)." - -msgid "manager.setup.doiPrefix" -msgstr "DOI-prefiks" - -msgid "manager.setup.displayNewReleases.label" -msgstr "Nyutgivelser" - -msgid "manager.setup.displayNewReleases" -msgstr "Vis nye utgivelser på hovedsiden" - -msgid "manager.setup.displayInSpotlight.label" -msgstr "Spotlight" - -msgid "manager.setup.displayInSpotlight" -msgstr "Vis bøker fra spotlight på hovedsiden" - -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Utvalgte bøker" - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Vis utvalgte bøker på hovedsiden" - -msgid "manager.setup.displayOnHomepage" -msgstr "Innhold på hovedsiden" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "Legg till innholdsfortegnelsen for denne boken (hvis den finnes)." - -msgid "manager.setup.disciplineProvideExamples" -msgstr "Gi eksempler på relevante fagemner for denne utgiveren" - -msgid "manager.setup.disciplineExamples" -msgstr "" -"(For eks. historie; utdanningsvitenskap; sosiologi; psykologi; kulturstudier;" -" statsvitenskap)" - -msgid "manager.setup.disciplineDescription" -msgstr "" -"Spesielt nyttig når tidsskrift krysser grensene mellom fagfelt og/eller " -"forfattere sender inn tverrfaglige bidrag." - -msgid "manager.setup.discipline" -msgstr "Akademisk fagområde og felt" - -msgid "manager.setup.disableUserRegistration" -msgstr "" -"Slå av brukerregistrering. Brukere må opprettes manuelt av en " -"redaksjonsleder." - -msgid "manager.setup.details.description" -msgstr "Navn på utgiver, ISSN, kontakter, sponsorer, og søkemotorer." - -msgid "manager.setup.details" -msgstr "Detaljer" - -msgid "manager.setup.customTagsDescription" -msgstr "" -"Brukerdefinerte HTML header-tagger som skal føres inn i header-seksjonen til " -"hver side (for eks. META tagger)." - -msgid "manager.setup.customTags" -msgstr "Brukerdefinerte etiketter" - -msgid "manager.setup.customizingTheLook" -msgstr "Trinn 5. Tilpasning av utseendet" - -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" -msgstr "" -"Bilder forminskes når de er større enn denne størrelsen, men blir aldri " -"oppskalert eller strukket for å passe til disse dimensjonene." - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Maksbredde for forsidebilde" - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Makshøyde for forsidebilde" - -msgid "manager.setup.coverage" -msgstr "Dekning" - -msgid "manager.setup.copyrightNotice" -msgstr "Erklæring om opphavsrett" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "" -"Manuskriptredigeringsveiledninger blir gjort tilgjengelig for " -"manuskriptredaktører, forfattere og seksjonsredaktører på redigeringsstadiet " -"for innlevering. Nedenfor er et standard sett med instruksjoner i HTML, som " -"kan endres eller erstattes av utgiveren når som helst (i HTML eller ren " -"tekst)." - -msgid "manager.setup.copyeditInstructions" -msgstr "Manuskriptredaktørveiledninger" - -msgid "manager.setup.copyediting" -msgstr "Manusredaktører" - -msgid "manager.setup.contextSummary" -msgstr "Kort beskrivelse av utgiveren" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Ta med informasjon om utgiveren din som kan være av interesse for lesere, " -"forfattere eller fagfeller. Dette kan omfatte policyen for åpen tilgang, " -"fokus og utgiverens mål, sponsing og utgiverens historie." - -msgid "manager.setup.contextAbout" -msgstr "Om utgiveren" - -msgid "manager.setup.appearInAboutPress" -msgstr "(Vises i Om utgiveren) " - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "" -"Skriv inn øvrig informasjon som skal vises til lesere på oppslagstavlen." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Annen informasjon" - -msgid "manager.setup.announcementsDescription" -msgstr "" -"Oppslag kan publiseres for å informere leserne om nyheter og hendelser. " -"Publiserte oppslag vises på 'Oppslag'-siden." - -msgid "manager.setup.announcements.success" -msgstr "Oppslagsinnstillingene har blitt oppdatert." - -msgid "manager.setup.announcements" -msgstr "Oppslagstavle" - -msgid "manager.setup.addSponsor" -msgstr "Legg til sponsor" - -msgid "manager.setup.addNavItem" -msgstr "Legg til element" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Legg til element i \"Om utgiveren\"" - -msgid "manager.setup.addItem" -msgstr "Legg til element" - -msgid "manager.setup.addChecklistItem" -msgstr "Legg til sjekklisteelement" - -msgid "manager.setup.addAboutItem" -msgstr "Legg til om-element" - -msgid "manager.setup.aboutItemContent" -msgstr "Innhold" - -msgid "manager.setup" -msgstr "Innstillinger" - -msgid "manager.pressManagement" -msgstr "Utgiverinnstillinger" - -msgid "user.authorization.pluginLevel" -msgstr "" -"Du har ikke tilstrekkelige brukerrettigheter til å administrere dette " -"programtillegget." - -msgid "manager.system.payments" -msgstr "Betalinger" - -msgid "manager.system.readingTools" -msgstr "Leseverktøy" - -msgid "manager.system.reviewForms" -msgstr "Fagfellevurderingsskjema" - -msgid "manager.system.archiving" -msgstr "Arkivering" - -msgid "manager.system" -msgstr "Systeminnstillinger" - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Beklager, du har ikke administrative rettigheter over denne brukeren. Dette " -"kan være fordi:\n" -"\t\t
          \n" -"\t\t\t
        • Brukeren er nettstedsadministrator
        • \n" -"\t\t\t
        • Brukeren er aktiv hos en utgiver du ikke administrerer
        • \n" -"\t\t
        \n" -"\tDenne handlingen må utføres av en nettstedsadministrator.\n" -"\t" - -msgid "manager.people.confirmDisable" -msgstr "" -"Slå av denne brukeren? Dette vil hindre brukeren fra å logge inn på systemet." -"\n" -"\n" -"Du kan velge å gi brukeren en begrunnelse for at kontoen er slått av." - -msgid "manager.people.syncUserDescription" -msgstr "" -"Vervingssynkronisering verver alle brukere som allerede er vervet i angitt " -"rolle hos den spsifiserte utgiveren til samme rolle hos denne utgiveren. " -"Denne funksjonen tillater at et felles sett brukere (for eks. fagfeller) " -"synkroniseres mellom utgivere." - -msgid "manager.people.mergeUsers.into.description" -msgstr "" -"Velg en bruker du vil overføre den foregående brukerens forfatterskap, " -"redigeringsoppdrag etc." - -msgid "manager.people.mergeUsers.from.description" -msgstr "" -"Velg en bruker du vil slå sammen med en annen brukerkonto (for eks. når noen " -"har to brukerkontoer). Den først valgte kontoen vil bli slettet og " -"tilhørende manuskript, oppdrag etc. vil bli overført til den andre kontoen." - -msgid "manager.people.enrollSyncPress" -msgstr "Med utgiver" - -msgid "manager.people.enrollExistingUser" -msgstr "Verv en eksisterende bruker" - -msgid "manager.people.confirmRemove" -msgstr "" -"Vil du fjerne denne brukeren fra denne utgiveren? Denne handlingen vil " -"frigjøre brukeren fra alle roller hos denne utgiveren." - -msgid "manager.people.allUsers" -msgstr "Alle brukere" - -msgid "manager.people.allSiteUsers" -msgstr "Verv en bruker fra denne plattformen til denne utgiveren" - -msgid "manager.people.allPresses" -msgstr "Alle utgivere" - -msgid "manager.people.allEnrolledUsers" -msgstr "Registrerte brukere med roller hos denne utgiveren" - -msgid "manager.users.selectRole" -msgstr "Velg rolle" - -msgid "manager.users.currentRoles" -msgstr "Aktuelle roller" - -msgid "manager.users.availableRoles" -msgstr "Tilgjengelige roller" - -msgid "manager.tools.statistics" -msgstr "" -"Verktøy for å generere rapporter relatert til bruksstatistikk (sideindeks " -"for katalogindeks, oversikt over sidevisning, nedlasting av monografifiler)" - -msgid "manager.tools.importExport" -msgstr "" -"Alle verktøy som er spesifikke for import og eksport av data (utgivere, " -"monografier, brukere)" - -msgid "manager.tools" -msgstr "Verktøy" - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "" -"Avgrens resultater etter objekttype (utgivelse, serie, monografi, filtype) " -"og/eller etter en eller flere objektID-er." - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Avgrens resultater etter kontekst (serie og/eller monografi)." - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Visninger av utgiverens hovedside" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Visninger av seriens hovedside" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Monografi abstrakt og nedlastinger" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Visninger av monografi abstrakter" - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Nedlasting av filer" - -msgid "manager.settings.distributionDescription" -msgstr "" -"Alle innstillinger som er spesifikke for distribusjonsprosessen (meldinger, " -"indeksering, arkivering, betaling, leseverktøy)." - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "Dette er ikke en gyldig utgiverkode." - -msgid "manager.settings.publisherCodeType" -msgstr "Type utgiverkode" - -msgid "manager.settings.publisherCode" -msgstr "Utgiverkode" - -msgid "manager.settings.location" -msgstr "Geografisk plassering" - -msgid "manager.settings.publisher" -msgstr "Utgiverens navn" - -msgid "manager.settings.publisher.identity.description" -msgstr "" -"Disse feltene er obligatoriske for å publiserer gyldige ONIX-metadata." - -msgid "manager.settings.publisher.identity" -msgstr "Utgiveridentitet" - -msgid "manager.settings.press" -msgstr "Utgiver" - -msgid "manager.settings.pressSettings" -msgstr "Utgiverinnstillinger" - -msgid "manager.settings" -msgstr "Innstillinger" - -msgid "manager.payment.success" -msgstr "Betalingsinnsillingene har blitt oppdatert." - -msgid "manager.payment.options.enablePayments" -msgstr "" -"Slå på betalinger vedrørende denne utgiveren. Merk at brukerne må logge på " -"for å foreta betalinger." - -msgid "manager.payment.generalOptions" -msgstr "Generelle innstillinger" - -msgid "manager.series.restricted" -msgstr "Ikke tillat forfattere å sende inn direkte til denne serien." - -msgid "manager.series.seriesTitle" -msgstr "Serietittel" - -msgid "manager.series.existingUsers" -msgstr "Eksisterende brukere" - -msgid "manager.series.noneCreated" -msgstr "Det er ikke opprettet noen serier." - -msgid "manager.series.form.titleRequired" -msgstr "En serietittel kreves." - -msgid "manager.series.form.abbrevRequired" -msgstr "En forkortet tittel til serien kreves." - -msgid "manager.series.unassigned" -msgstr "Tilgjengelige serieredaktører" - -msgid "manager.series.hideAbout" -msgstr "Utelat denne serien fra \"Om utgiveren\"." - -msgid "manager.series.seriesEditorInstructions" -msgstr "" -"Legg til en serieredaktør i denne serien fra tilgjengelige serieredaktører. " -"Når redaktøren er lagt til, må du indikere om serieredaktøren vil ha tilsyn " -"med VURDERING (fagfellevurdering) og/eller REDIGERING (redigering av " -"manuskript, layout og korrekturlesing) av innleveringer i forbindelse med " -"denne serien. Serieredaktører opprettes ved å klikke på Serieredaktører under Roller i utgiver-" -"administrasjon." - -msgid "manager.series.assigned" -msgstr "Redaktører til denne serien" - -msgid "manager.series.policy" -msgstr "Seriebeskrivelse" - -msgid "manager.series.create" -msgstr "Opprett serie" - -msgid "manager.series.book" -msgstr "Bokserier" - -msgid "manager.series.disableComments" -msgstr "Deaktiver leserkommentarer vedrørende denne serien." - -msgid "manager.series.abstractsNotRequired" -msgstr "Krev ikke abstrakt" - -msgid "manager.series.submissionsToThisSection" -msgstr "Innleveringer til denne serien" - -msgid "manager.series.submissionReview" -msgstr "Vil ikke bli fagfellevurdert" - -msgid "manager.series.readingTools" -msgstr "Leseverktøy" - -msgid "manager.series.open" -msgstr "Åpne innleveringer" - -msgid "manager.series.indexed" -msgstr "Indeksert" - -msgid "manager.series.confirmDelete" -msgstr "Er du sikker på at du vil slette denne serien for alltid?" - -msgid "manager.series.editorRestriction" -msgstr "Innleveringer kan bare sendes inn av redaktører og serieredaktører." - -msgid "manager.series.submissionIndexing" -msgstr "Vil ikke bli inkludert i utgivernes indeksering" - -msgid "manager.series.form.reviewFormId" -msgstr "Kontroller at du har valgt et gyldig vurderingsskjema." - -msgid "manager.series.form.mustAllowPermission" -msgstr "" -"Minst en avkrysningsrute må være valgt for hver serieredigeringsoppgave." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Dette vil bli standard språk for utgiverens nettsted." - -msgid "manager.languages.noneAvailable" -msgstr "" -"Beklager, ingen flere språk er tilgjengelig. Kontakt " -"nettstedsadministratoren din hvis du ønsker å bruke flere språk i dette " -"tidsskriftet." - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "" -"Dette vil erstatte alle standard utgiverinnstillingene du hadde for dette " -"språket" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "" -"

        For at lesere lett skal kunne finne nettpubliserte versjoner av verk " -"forfattere henviser til i artiklene sine, finnes følgende muligheter.

        \n" -"\n" -"
          \n" -"\t
        1. Legg til et Leseverktøy

          Redaksjonslederen kan legge " -"til verktøyet \"Finn henvisning\" i Leseverktøy som vises i sidespalten ved " -"publiserte artikler. Med dette verktøyet kan leseren lime inn tittelen fra " -"en henvisning for å søke etter verket i egnete søkeverktøy som er valgt på " -"forhånd av tidsskriftet.

        2. \n" -"\t
        3. Legg inn lenker i henvisningene

          Layoutredaktøren " -"kan legge inn aktive lenker direkte i artikkelfilens henvisninger ved å " -"følge instruksen nedenfor (som kan redigeres).

        4. \n" -"
        " - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "" -"Trinn: Manuskriptarbeidskø > Manuskriptvurdering > " -"Manuskriptbehandling > Innholdsfortegnelse.

        \n" -"Velg en modell for håndtering av disse sidene av den redaksjonelle " -"prosessen. (For å oppnevne ansvarlig redaktør og seksjonsredaktører; gå til " -"Redaktører i tidsskriftadministrasjon.)" - -msgid "manager.setup.copyrightNotice.sample" -msgstr "" -"

        Forslag til Creative Commons Copyright Notices på engelsk

        \n" -"

        1. Forslag til retningslinjer for tidsskrift som tilbyr Open " -"Access

        \n" -"Authors who publish with this journal agree to the following terms:\n" -"
          \n" -"\t
        1. Authors retain copyright and grant the journal right of first " -"publication with the work simultaneously licensed under a Creative Commons " -"Attribution License that allows others to share the work with an " -"acknowledgement of the work's authorship and initial publication in this " -"journal.
        2. \n" -"\t
        3. Authors are able to enter into separate, additional contractual " -"arrangements for the non-exclusive distribution of the journal's published " -"version of the work (e.g., post it to an institutional repository or publish " -"it in a book), with an acknowledgement of its initial publication in this " -"journal.
        4. \n" -"\t
        5. Authors are permitted and encouraged to post their work online (e.g., " -"in institutional repositories or on their website) prior to and during the " -"submission process, as it can lead to productive exchanges, as well as " -"earlier and greater citation of published work (See The Effect of Open " -"Access).
        6. \n" -"
        \n" -"\n" -"

        Forslag til retningslinjer for tidsskrift som tilbyr utsatt Open " -"Access (OA etter en karantenetid)

        \n" -"Authors who publish with this journal agree to the following terms:\n" -"
          \n" -"\t
        1. Authors retain copyright and grant the journal right of first " -"publication, with the work [SPECIFY PERIOD OF TIME] after publication " -"simultaneously licensed under a Creative Commons Attribution " -"License that allows others to share the work with an acknowledgement of " -"the work's authorship and initial publication in this journal.
        2. \n" -"\t
        3. Authors are able to enter into separate, additional contractual " -"arrangements for the non-exclusive distribution of the journal's published " -"version of the work (e.g., post it to an institutional repository or publish " -"it in a book), with an acknowledgement of its initial publication in this " -"journal.
        4. \n" -"\t
        5. Authors are permitted and encouraged to post their work online (e.g., " -"in institutional repositories or on their website) prior to and during the " -"submission process, as it can lead to productive exchanges, as well as " -"earlier and greater citation of published work (See The Effect of Open " -"Access).
        6. \n" -"
        " - -msgid "manager.files.note" -msgstr "" -"NB: Filutforskeren er en avansert funksjon som gir mulighet til å manipulere " -"filene og mappene til tidsskriftet direkte." - -msgid "manager.setup.productionTemplates" -msgstr "Produksjonsmaler" - -msgid "manager.setup.files" -msgstr "Filer" - -msgid "manager.setup.editorialTeam.description" -msgstr "Liste over redaktører, ledelse og andre personer tilknyttet utgiveren." - -msgid "manager.setup.editorialTeam" -msgstr "Redaksjon" - -msgid "manager.setup.masthead" -msgstr "Kolofon" - -msgid "manager.setup.internalReviewRoles" -msgstr "Interne vurderingsroller" - -msgid "manager.setup.currentRoles" -msgstr "Aktuelle roller" - -msgid "manager.setup.availableRoles" -msgstr "Tilgjengelige roller" - -msgid "manager.setup.managerialRoles" -msgstr "Administrative roller" - -msgid "manager.setup.authorRoles" -msgstr "Forfatterroller" - -msgid "manager.setup.roleType" -msgstr "Rolletype" - -msgid "manager.setup.reviewForms" -msgstr "Fagfellevurderingsskjema" - -msgid "manager.setup.series.description" -msgstr "" -"Du kan lage et hvilket som helst antall serier for å organisere " -"publikasjonene dine. En serie representerer et bestemt sett med bøker som er " -"knyttet til et tema eller emner som noen har foreslått, ofte et " -"fakultetsmedlem, og den personen fører tilsyn med. Besøkende vil kunne søke " -"i og bla gjennom forlaget via serier." - -msgid "manager.setup.categories.description" -msgstr "" -"Du kan lage en liste over kategorier for å organisere publikasjonene dine. " -"Kategorier kan være grupperinger av bøker etter emne, for eksempel økonomi; " -"litteratur; poesi; etc. Kategorier kan være innebygd under \"overordnede\" " -"kategorier: For eksempel kan en hovedkategori av økonomi omfatte " -"individuelle mikroøkonomiske og makroøkonomiske kategorier. Besøkende vil " -"kunne søke i og bla gjennom forlaget via kategorier." - -msgid "manager.setup.categoriesAndSeries" -msgstr "Kategorier og serier" - -msgid "manager.setup.currentFormats" -msgstr "Aktuelle formater" - -msgid "manager.setup.issnDescription" -msgstr "" -"ISSN (International Standard Serial Number) er et åttesifret nummer som " -"identifiserer tidsskrifter inkludert elektroniske serier. Et nummer er " -"tilgjengelig fra ISSN " -"International Center ." - -msgid "manager.setup.submitToSeries" -msgstr "Tillat serieinnleveringer" - -msgid "manager.setup.submitToCategories" -msgstr "Tillat kategoriinnleveringer" - -msgid "manager.setup.prospectusDescription" -msgstr "" -"Prospektveiledningen er et dokument utarbeidet av forlaget for å hjelpe " -"forfatteren med å beskrive materialet som sendes inn på en måte som gjør at " -"en forlegger kan bestemme verdien av innleveringen. Et prospekt kan dekke en " -"rekke aspekter - fra markedsføringspotensial til teoretisk verdi. Uansett " -"bør en utgiver lage en prospektveiledning som utfyller deres " -"publiseringsagenda." - -msgid "manager.setup.prospectus" -msgstr "Prospektveiledning" - -msgid "manager.setup.restoreDefaults" -msgstr "Gjenopprett standardinnstillinger" - -msgid "manager.setup.deleteSelected" -msgstr "Slett valgte" - -msgid "manager.setup.newGenreDescription" -msgstr "" -"For å opprette en ny sjanger, fyll ut skjemaet nedenfor og klikk \"Opprett\" " -"-knappen." - -msgid "manager.setup.newGenre" -msgstr "Ny monografisjanger" - -msgid "manager.setup.genres" -msgstr "Sjanger" - -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "" -"Redaktørene sender fagfellevurderere forespørsel om å være fagfellevurderer " -"med det innsendte manuskriptet vedlagt e-posten. Fagfellevurdererne sender " -"sin aksept eller avslag til redaktørene på e-post, og sine kommentarer og " -"anbefalinger. Redaktørene legger inn fagfellevurderernes aksept eller avslag " -"på forespørselen, og deres vurderinger og anbefalinger på innleveringens " -"vurderingsside for å dokumentere fagfellevurderingsprosessen." - -msgid "manager.setup.genresDescription" -msgstr "" -"Disse sjangrene brukes til filnavn og presenteres i en rullegardinmeny når " -"du laster opp filer. Sjangrene som heter ## tillater brukeren å knytte filen " -"til enten hele 99Z-boka eller et bestemt kapittel etter nummer (f.eks. 02)." - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "" -"For å opprette et nytt publiseringsformat må du fylle ut følgende skjema og " -"tryppe på knappen 'Opprett'." - -msgid "manager.setup.newPublicationFormat" -msgstr "Nytt publiseringsformat" - -msgid "manager.setup.publicationFormat.inUse" -msgstr "" -"Siden dette publiseringsformatet for øyeblikket er koblet til en av " -"forlagets monografier, kan det ikke slettes." - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "Er dette et fysisk (ikke-digitalt) format?" - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "Du må gi et navn til dette formatet." - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "Et format må velges." - -msgid "manager.setup.publicationFormat.code" -msgstr "Format" - -msgid "manager.setup.volumePerYear" -msgstr "Utgaver per år" - -msgid "manager.setup.useTextTitle" -msgstr "Titteltekst" - -msgid "manager.setup.userRegistration" -msgstr "Brukerregistrering" - -msgid "manager.setup.useProofreaders" -msgstr "" -"Utgiveren kommer til å utpeke korrekturlesere som vil korrigere " -"korrekturutskriftene (sammen med forfatterene)." - -msgid "manager.setup.useLayoutEditors" -msgstr "" -"Tidsskriftet kommer til å utpeke layoutredaktører for å lage sideoppsett i " -"HTML, PDF, PS osv. for elektronisk publisering." - -msgid "manager.setup.useStyleSheet" -msgstr "Utgiverens stilark" - -msgid "manager.setup.useImageTitle" -msgstr "Tittelbilde" - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "Utgiveren skal ha redaksjons- eller fagfelleråd." - -msgid "manager.setup.useCopyeditors" -msgstr "" -"Utgiveren kommer til å utpeke manusredaktører for bearbeiding av hvert " -"manuskript." - -msgid "manager.setup.typeProvideExamples" -msgstr "" -"Gi eksempler på relevante forskningstyper, metoder og innfallsvinkler for " -"dette fagfeltet" - -msgid "manager.setup.typeMethodApproach" -msgstr "Type (metode/innfallsvinkel)" - -msgid "manager.setup.typeExamples" -msgstr "" -"(F.eks. historisk studium; tankeeksperiment; feltundersøkelse; retorisk " -"analyse; aksjonsforskning; kartlegging/intervju)" - -msgid "manager.setup.submissions.description" -msgstr "Forfatterinstruks, opphavsrett, og indeksering (herunder registrering)." - -msgid "manager.setup.workflow" -msgstr "Arbeidsflyt" - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "Sjekklisteelement kreves." - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Sjekkliste for klargjøring av manuskript" - -msgid "manager.setup.submissionGuidelines" -msgstr "Retningslinjer for innlevering av manuskript" - -msgid "manager.setup.subjectProvideExamples" -msgstr "" -"Gi eksempler på relevante nøkkelord eller emneord, til veiledning for " -"forfatterene" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Emneord" - -msgid "manager.setup.subjectExamples" -msgstr "(F.eks. fotosyntese; sorte hull; Gödels teorem; Zenons paradokser)" - -msgid "manager.setup.stepsToPressSite" -msgstr "Fem trinn til et utgivernettsted" - -msgid "manager.setup.siteAccess.viewContent" -msgstr "Se monografiinnhold" - -msgid "manager.setup.siteAccess.view" -msgstr "Nettstedstilgang" - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "Vis alltid sideoppsettlenker og indikér om tilgangen er begrenset." - -msgid "manager.setup.selectSectionDescription" -msgstr "Seksjonen bidraget skal vurderes for." - -msgid "manager.setup.selectEditorDescription" -msgstr "" -"Utgiverredaktøren som skal følge bidraget gjennom den redaksjonelle " -"prosessen." - -msgid "manager.setup.securitySettings.note" -msgstr "" -"Andre sikkerhets- og tilgangsrelaterte innstillinger kan konfigureres fra Tilgang " -"og sikkerhet-siden." - -msgid "manager.setup.securitySettings" -msgstr "Tilgang og sikkerhetsinnstillinger" - -msgid "manager.setup.sectionsDescription" -msgstr "" -"For å opprette eller endre seksjoner for utgiveren (f.eks. monografier, " -"bokanmeldelser, etc.), gå til seksjonsadministrasjon.

        Når " -"forfattere sender en innlevering til utgiveren, kommer de til å angi ..." - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "" -"(Hvis seksjoner ikke er angitt, vil bidraget bli sendt inn til Monografier.)" - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Seksjoner og seksjonsredaktører" - -msgid "manager.setup.searchEngineIndexing.success" -msgstr "Innstillingene knyttet til søkemotorindeksen er oppdatert." - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "" -"For at brukere av søkemotorer skal finne dette tidsskriftet, bør du gi en " -"kort beskrivelse av tidsskriftet. Du oppfordres til å sende inn sitemap." - -msgid "manager.setup.searchEngineIndexing" -msgstr "Søkermotorindeksering" - -msgid "manager.setup.searchDescription.description" -msgstr "" -"Gi en kort beskrivelse (50-300 tegn) av tidsskriftet som søkemotorene kan " -"presentere når tidsskriftet vises blant søkeresultatene." - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "" -"Redaktøren sender e-post til de utvalgte Fagkonsulentene med tittelen og " -"sammendrag av manuskriptet, og dessuten en invitasjon til å logge inn på " -"tidsskriftets nettsted for å ferdigstille vurderingen. Fagkonsulenten går " -"inn på nettstedet for å ta på seg vurderingsoppdraget, for å laste ned " -"manuskriptet, sende inn sine kommentarer, og velge en anbefaling." - -msgid "manager.setup.reviewProcessStandard" -msgstr "Standard fagvurderingsprosess" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Fagvurderingsprosess med e-post-vedlegg" - -msgid "manager.setup.reviewProcessDescription" -msgstr "" -"OMP støtter to modeller for vurderingsprosessen. Standard " -"fagvurderingsprosess er å anbefale, fordi den følger opp fagkonsulentene " -"gjennom hele prosessen, sikrer en komplett vurderingshistorikk for hvert " -"innsendt manuskript, og gjør bruk av automatiske purringer og standardiserte " -"anbefalinger for innsendte manuskript (aksepteres; aksepteres, med forbehold " -"om omarbeiding: sendes til enda en fagvurdering; sendes inn til et annet " -"publiseringssted; avvises; annet: se kommentarer).

        Velg en av " -"følgende:" - -msgid "manager.setup.reviewProcess" -msgstr "Fagvurderingsprosessen" - -msgid "manager.setup.reviewPolicy" -msgstr "Om fagvurderingsprosessen" - -msgid "manager.setup.reviewOptions.showEnsuringLink" -msgstr "" -"Sett inn lenke til \"Sikre blind gjennomgang\" på sider der forfattere og " -"fagfeller laster opp filer." - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Fagfelle-purringer" - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Vurdering av fagfeller" - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" -msgstr "Inkluder en sikker lenke i e-postinvitasjonen til anmeldere." - -#, fuzzy -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" -msgstr "" -"NB: E-post-invitasjonen til fagkonsulenter kommer til å " -"inneholde en spesiell URL som binger den inviterte fagfellen direkte til " -"fagvurderingssiden for det aktuelle manuskriptet (tilgang til andre sider " -"vil likevel kreve innlogging). Med denne valgmuligheten slått på, kan ikke " -"redaktørene endre e-postadresser eller legge til kopier eller blindkopier " -"ved bestilling av fagvurderinger (av sikkerhetsgrunner)." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" -msgstr "Slå på ettklikks tilgang for fagfellene" - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Fagfelletilgang" - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "" -"Fagfeller kommer til å få tilgang til manuskriptfilen bare etter å ha " -"akseptert vurderingsoppdraget." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" -msgstr "Begrens filtilgang" - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "" -"Redaktører kommer til å vurdere fagfellene på en fempunkts skala etter hvert " -"vurderingsoppdrag." - -msgid "manager.setup.reviewOptions.blindReview" -msgstr "Blind fagfellevurdering" - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "" -"Merk For å aktivere automatiske epostvarsler, må " -"nettstedsadministratoren slå på valgmuligheten planlagte_oppgaver i " -"OJS-konfigurasjonsfilen. Annen serverkonfigurasjon kan være nødvendig for å " -"støtte denne funksjonen (som likevel kan være umulig å bruke på enkelte " -"servere), som oppgitt i OJS-dokumentasjonen." - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Automatiserte e-post purringer" - -msgid "manager.setup.reviewOptions" -msgstr "Fagfellevurderingsinnstillinger" - -msgid "manager.setup.internalReviewGuidelines" -msgstr "Retningslinjer for intern vurdering" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "" -"Vis kriterier for å gjøre en vurdering av innleveringens egnethet for " -"publisering hos forlaget tilgjengelig for eksterne korrekturlesere. Den kan " -"inneholde instruksjoner om hvordan du forbereder en effektiv og nyttig " -"vurdering. Kritikere vil ha muligheten til å formidle kommentarer adressert " -"til forfatteren og redaktøren, samt separate kommentarer til redaktøren." - -msgid "manager.setup.reviewGuidelines" -msgstr "Instruks for fagfeller" - -msgid "manager.setup.restrictSiteAccess" -msgstr "Brukere må logge inn for å se tidsskriftets nettsted." - -msgid "manager.setup.restrictMonographAccess" -msgstr "" -"Brukere må være registrert og logget inn for å se innhold med åpen tilgang." - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Layoutinstruksjoner for referanselinking" - -msgid "manager.setup.referenceLinking" -msgstr "Aktive henvisningslenker" - -msgid "manager.setup.publisherDescription" -msgstr "Navnet på organisasjonen bak utgiveren vises i 'Om forlaget'." - -msgid "manager.setup.publisher" -msgstr "Utgiver" - -msgid "manager.setup.publicationScheduleDescription" -msgstr "" -"Innhold kan publiseres samlet, som del av en utgave med egen " -"innholdsoversikt. Alternativt kan enkeltelementene publiseres løpende, etter " -"hvert som de er ferdigstilt, og da legges de til i nyeste nummers " -"innholdsoversikt. I 'Om' tidsskriftet skal leserne finne opplysningene om " -"hvilket av disse to systemene dette tidsskriftet vil bruke, og om forventet " -"utgivelsesfrekvens." - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Gjør instruksjoner tilgjengelig for layoutredaktører." - -msgid "manager.setup.proofreading" -msgstr "Korrekturlesere" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "" -"Instruksen for korrekturlesing vil bli gjort tilgjengelig for " -"korrekturlesere, forfattere, layoutredaktører og seksjonsredaktører i " -"manuskriptbehandlingsstadiet. Nedenfor finner du standardinstruksjoner (i " -"HTML), som kan redigeres eller erstattes av redaksjonslederen når som helst (" -"i HTML eller ren tekst)." - -msgid "manager.setup.proofingInstructions" -msgstr "Instruks for korrekturlesing" - -msgid "manager.setup.printIssn" -msgstr "ISSN for trykt utgave" - -msgid "manager.setup.contextTitle" -msgstr "Utgivernavn" - -msgid "manager.setup.pressThumbnail.description" -msgstr "" -"En liten logo eller representasjon av forlaget som kan brukes i oppføringer." - -msgid "manager.setup.pressThumbnail" -msgstr "Utgiverens miniatyrbilde" - -msgid "manager.setup.pressTheme" -msgstr "Utseendemal" - -msgid "manager.setup.styleSheetInvalid" -msgstr "Ugyldig stylesheet-format. Godkjent format er .css." - -msgid "manager.setup.pressSetupUpdated" -msgstr "Utgiverkonfigurasjonen har blitt oppdatert." - -msgid "manager.setup.pressSetup" -msgstr "Utgiverkonfigurasjon" - -msgid "manager.setup.pressPolicies" -msgstr "Trinn 2. Utgiverens retningslinjer" - -msgid "manager.setup.pageHeader" -msgstr "Utgiverens topptekst" - -msgid "manager.setup.layout" -msgstr "Utgiverlayout" - -msgid "manager.setup.contextInitials" -msgstr "Utgiverinitialer" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "" -"Som standard består forlagets nettsted av en serie navigasjonskoblinger. " -"Ytterligere nettstedinnhold kan legges til ved hjelp av ett eller flere av " -"følgende alternativer som vises i den viste rekkefølgen." - -msgid "manager.setup.pressHomepageContent" -msgstr "Utgiverens hovedside" - -msgid "manager.setup.homepageContentDescription" -msgstr "" -"Som standard består hjemmesiden av navigasjonslenker. Ytterligere " -"hjemmesideinnhold kan legges til ved å bruke en eller flere av følgende " -"valgmuligheter, som vil bli vist i den viste rekkefølgen." - -msgid "manager.setup.homepageContent" -msgstr "Innhold på hjemmesiden" - -msgid "manager.setup.pressArchiving" -msgstr "Arkivering" - -msgid "manager.setup.aboutPress.description" -msgstr "" -"Ta med all informasjon om utgiveren din som kan være av interesse for " -"lesere, forfattere eller anmeldere. Dette kan omfatte retningslinjene for " -"åpen tilgang, forlagets fokusområde, opphavsrett, sponsormelding, " -"forlagshistorikk og en personvernerklæring." - -msgid "manager.setup.aboutPress" -msgstr "Om utgiveren" - -msgid "manager.setup.pressDescription.description" -msgstr "En kort beskrivelse av utgiveren." - -msgid "manager.setup.pressDescription" -msgstr "Utgiversammendrag" - -msgid "manager.setup.appearanceDescription" -msgstr "" -"Ulike komponenter som inngår i utgiverens utseende og design, kan " -"konfigureres fra denne siden, inkludert topp- og bunntekstelementer, temaer " -"og hvordan informasjonslister presenteres for brukerne." - -msgid "manager.setup.privacyStatement.success" -msgstr "Personvernerklæringen har blitt oppdatert." - -msgid "manager.setup.policies.description" -msgstr "" -"Hovedfokus, fagvurdering, seksjoner, personopplysninger, sikkerhet, og " -"øvrige Om-emner." - -msgid "manager.setup.policies" -msgstr "Retningslinjer" - -msgid "manager.setup.onlineIssn" -msgstr "ISSN for nettutgaven" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Tilgang til utgiverinnhold" - -msgid "manager.setup.numPageLinks.description" -msgstr "" -"Begrens antallet lenker som skal vises på hver side i en liste, før resten " -"blir vist på påfølgende sider." - -msgid "manager.setup.numPageLinks" -msgstr "Sidelenker" - -msgid "manager.setup.noUseProofreaders" -msgstr "Redaktørene og forfattere kommer til å korrigere sideoppsett." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "" -"Redaktørene kommer til å lage sideoppsett i format som egner seg for " -"elektronisk publisering." - -msgid "manager.setup.noUseCopyeditors" -msgstr "Språkvask vil bli utført av redaktøren eller en seksjonsredaktør." - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "" -"Når e-postfunksjonen 'Send beskjed til forfatter' brukes skal e-posten " -"sendes til alle medforfattere, ikke bare til den forfatteren som sendte inn " -"manuskriptet." - -msgid "manager.setup.note" -msgstr "Merknad" - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "Ingen stylesheet lastet opp." - -msgid "manager.setup.noImageFileUploaded" -msgstr "Ingen bildefil er lastet opp." - -msgid "manager.setup.masthead.success" -msgstr "Tidsskriftets kolofonopplysninger har blitt oppdatert." - -msgid "manager.setup.managingThePress" -msgstr "Steg 4. Håndtering av innstillingene" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Administrasjons- og publiseringsoppsett" - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Administrasjon av grunnleggende redaksjonelle trinn" - -msgid "manager.setup.management.description" -msgstr "" -"Planlegging, nettilgang, oppslag, og bruk av manusredaktører, " -"layoutredaktører og korrekturlesere." - -msgid "manager.setup.settings" -msgstr "Innstillinger" - -msgid "manager.setup.look.description" -msgstr "" -"Hjemmesidetopptekst, innhold, utgiverens-topptekst, bunntekst, " -"navigasjonsfelt, og stylesheet." - -msgid "manager.setup.look" -msgstr "Utseendet" - -msgid "manager.setup.lists" -msgstr "Lister" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Tittel" - -msgid "manager.setup.layoutTemplates.file" -msgstr "Malfil" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "" -"Maler kan lastes opp slik at de vises under layout for hvert av " -"standardformatene som utgis av utgiveren (f.eks. Monografi, bokanmeldelse " -"osv.) Og for ethvert filformat (f.eks. Pdf, doc osv.) Med tillegg " -"kommentarer og spesifisering av skrift, størrelse, marginer osv. slik at den " -"kan fungere som en veiledning for layoutredaktører og språkvaskere." - -msgid "manager.setup.layoutTemplates" -msgstr "Layoutmaler" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "" -"Layoutinstruksjoner for formatering av forlagets publiseringsmateriale kan " -"utarbeides og angis nedenfor i HTML eller ren tekst. De vil bli gjort " -"tilgjengelig for layoutredigereren og seksjonsredigereren på " -"manuskriptredigeringssiden for hver innsending. (Ettersom hver utgiver kan " -"velge sine egne filformater, bibliografiske standarder, stilark osv., Gis " -"ikke en standardinstruksjon.)" - -msgid "manager.setup.layoutInstructions" -msgstr "Layoutinstruksjoner" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Layoutredaktører" - -msgid "manager.setup.labelName" -msgstr "Etikettnavn" - -msgid "manager.setup.keyInfo.description" -msgstr "" -"Gi en kort beskrivelse av utgiveren din og identifiser redaktører, " -"tidsskriftsansvarlige og andre medlemmer av redaksjonen din." - -msgid "manager.setup.keyInfo" -msgstr "Nøkkelinformasjon" - -msgid "manager.setup.itemsPerPage.description" -msgstr "" -"Begrens antall oppføringer (for eksempel innleveringer, brukere eller " -"redigeringsoppgaver) som skal vises i en liste på én nettside, før de resten " -"av oppføringene vises på en annen side." - -msgid "manager.setup.itemsPerPage" -msgstr "Elementer per side" - -msgid "manager.setup.institution" -msgstr "Institusjon" - -msgid "manager.setup.information.success" -msgstr "Utgiverinformasjonen har blitt oppdatert." - -msgid "manager.setup.information.forReaders" -msgstr "For lesere" - -msgid "manager.setup.information.forLibrarians" -msgstr "For bibliotekarer" - -msgid "manager.setup.information.forAuthors" -msgstr "For forfattere" - -msgid "manager.setup.information.description" -msgstr "" -"Korte beskrivelser av utgivelsen for interesserte bibliotekarer, forfattere, " -"og lesere som blir tilgjengelig i 'informasjon'-delen av sidefeltet." - -msgid "manager.setup.information" -msgstr "Informasjon" - -msgid "manager.setup.identity" -msgstr "Utgiveridentitet" - -msgid "manager.setup.preparingWorkflow" -msgstr "Trinn 3. Forbered arbeidsflyten" - -msgid "manager.setup.guidelines" -msgstr "Retningslinjer" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Trinn 1. Detaljene først" - -msgid "manager.setup.generalInformation" -msgstr "Generell informasjon" - -msgid "manager.setup.form.supportNameRequired" -msgstr "Navn på teknisk Teknisk kontaktpersons navn legges inn." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Kontaktpersonens e-post må legges inn." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Antallet fagkonsulenter per manuskript kreves." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Hovedkontaktens navn kreves." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Hovedkontaktens e-post kreves." - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "" -"OMP følger Open " -"Archives Initiative protokoll for innhøsting av metadata, som er en " -"framtidsrettet indekseringsstandard som gir tilgang til elektroniske " -"forskningsressurser på verdensbasis. Forfatterene kommer til å bruke en " -"tilpasset mal for å oppgi slike metadata for sitt manuskript. " -"Redaksjonslederen bør velge kategoriene for indeksering, og gi forfatterene " -"relevante eksempler til hjelp ved indekseringen. Disse termene skal holdes " -"atskilt med a semikolon (for eks. term1; term2). Merk eksemplene som " -"eksempler ved å bruke \"For eks.\" eller \"For eksempel,\"." - -msgid "manager.setup.lists.success" -msgstr "Utgiverens listeinnstillinger har blitt oppdatert." - -msgid "manager.setup.resetPermissions.confirm" -msgstr "" -"Er du sikker på at du vil tilbakestille data om rettighetene som allerede er " -"knyttet til artiklene?" - -msgid "stats.publications.abstracts" -msgstr "Kataloginnganger" - -msgid "stats.publications.countOfTotal" -msgstr "{$count} av {$total} monografier" - -msgid "stats.publications.totalGalleyViews.timelineInterval" -msgstr "Totalt antall filvisninger etter dato" - -msgid "stats.publications.totalAbstractViews.timelineInterval" -msgstr "Totalt antall katalogvisninger etter dato" - -msgid "stats.publications.none" -msgstr "" -"Ingen monografier med bruksstatistikk som samsvarer med disse parameterne " -"ble funnet." - -msgid "stats.publications.details" -msgstr "Monografiopplysninger" - -msgid "stats.publicationStats" -msgstr "Monografistatistikk" - -msgid "grid.series.urlWillBe" -msgstr "Seriens URL blir: {$sampleUrl}" - -msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" -msgstr "Velg den kategorien som du ønsker at dette menypunktet skal lenke til." - -msgid "manager.navigationMenus.form.navigationMenuItem.category" -msgstr "Velg kategori" - -msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" -msgstr "Velg serien som du ønsker at dette menypunktet skal lenke til." - -msgid "manager.navigationMenus.form.navigationMenuItem.series" -msgstr "Velg serier" - -msgid "grid.series.pathExists" -msgstr "Seriestien finnes allerede. Skriv inn en unik sti." - -msgid "grid.series.pathAlphaNumeric" -msgstr "Seriestien kan kun bestå av bokstaver og tall." - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "" -"Send en kopi til tidsskriftets hovedkontakt, som ble oppgitt i " -"utgiverinnstillingene." - -msgid "grid.genres.title" -msgstr "Monografikomponenter" - -msgid "grid.genres.title.short" -msgstr "Komponenter" - -msgid "manager.setup.resetPermissions.success" -msgstr "Monografitillatelsene ble tilbakestilt." - -msgid "manager.setup.resetPermissions.description" -msgstr "" -"Erklæring om opphavsrett og lisensinformasjon vil bli permanent knyttet til " -"publisert materiale. Det betyr at data ikke vil forandres dersom " -"tidsskriftet endrer retningslinjer for nye innleveringer. For å " -"tilbakestille informasjonen allerede lagt ved det publiserte materialet, " -"bruk knappen under." - -msgid "manager.setup.resetPermissions" -msgstr "Tilbakestill monografirettigheter" - -msgid "manager.publication.library" -msgstr "Utgivers bibliotek" - -msgid "plugins.importexport.native.exportSubmissions" -msgstr "Eksporter innleveringer" - -msgid "plugins.importexport.common.invalidXML" -msgstr "Ugyldig XML:" - -msgid "plugins.importexport.common.error.validation" -msgstr "Kunne ikke konvertere valgte objekt." - -msgid "plugins.importexport.common.error.noObjectsSelected" -msgstr "Ingen objekt valgt." - -msgid "manager.setup.disableSubmissions.description" -msgstr "" -"Forhindre brukere fra å sende inn nye innleveringer til utgiveren. " -"Innleveringer kan deaktiveres for individuelle serier på siden utgiverserier." - -msgid "manager.setup.disableSubmissions.notAccepting" -msgstr "" -"Denne utgiveren tar ikke imot innleveringer på nåværende tidspunkt. Gå til " -"arbeidsflytinnstillingene for å tillate innleveringer." - -msgid "manager.series.confirmDeactivateSeries.error" -msgstr "" -"Minst en serie må være aktiv. Gå til arbeidsflytinnstillingene for å " -"deaktivere alle innleveringer til denne utgiveren." diff --git a/locale/nb_NO/submission.po b/locale/nb_NO/submission.po deleted file mode 100644 index fe9929db6bb..00000000000 --- a/locale/nb_NO/submission.po +++ /dev/null @@ -1,505 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-30 13:53+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "publication.scheduledIn" -msgstr "Planlagt til publisering i {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "" -"Alle publikasjonskrav er oppfylt. Er du sikker på at du vil publisere denne " -"katalogoppføringen?" - -msgid "publication.publishedIn" -msgstr "Publisert i {$issueName}." - -msgid "publication.required.issue" -msgstr "Publikasjonen må være tilknyttet et nummer før den kan publiseres." - -msgid "publication.invalidSeries" -msgstr "Seriebetegnelse på denne publikasjonen ble ikke funnet." - -msgid "publication.catalogEntry.success" -msgstr "Informasjon under katalogoppføringen er oppdatert." - -msgid "publication.catalogEntry" -msgstr "Katalogoppføring" - -msgid "catalog.browseTitles" -msgstr "{$numTitles} titler" - -msgid "submission.list.saveFeatureOrder" -msgstr "Lagre rekkefølge" - -msgid "submission.list.orderingFeaturesSection" -msgstr "" -"Dra og slipp eller trykk på opp- og nedknappene for å endre rekkefølgen på " -"funksjonene i {$title}." - -msgid "submission.list.orderingFeatures" -msgstr "" -"Dra og slipp eller trykk på opp- og nedknappene for å endre rekkefølgen på " -"funksjonene på hjemmesiden." - -msgid "submission.list.orderFeatures" -msgstr "Sorteringsfunksjoner" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} av {$total} monografier" - -msgid "submission.list.countMonographs" -msgstr "{$count} monografier" - -msgid "submission.list.monographs" -msgstr "Monografier" - -msgid "section.any" -msgstr "Enhver serie" - -msgid "submission.metadataDescription" -msgstr "" -"Disse spesifikasjonene er basert på Dublin Core metadata-settet, en " -"internasjonal standard som brukes til å beskrive publiseringsinnhold." - -msgid "submission.dependentFiles" -msgstr "Avhengige filer" - -msgid "submission.upload.fileContents" -msgstr "Innleveringskomponent" - -msgid "workflow.review.externalReview" -msgstr "Ekstern bedømming" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Send til ekstern bedømming" - -msgid "submission.submit.titleAndSummary" -msgstr "Tittel og sammendrag" - -msgid "submission.event.publicationFormatRemoved" -msgstr "Publikasjonsformatet \"{$formatName}\" ble fjernet." - -msgid "submission.event.publicationFormatCreated" -msgstr "Publikasjonsformatet \"{$formatName}\" ble opprettet." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Publikasjonsformatets metadata til \"{$formatName}\" ble opdatert." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Katalog-metadata ble oppdatert." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "" -"Publikasjonsformatet \"{$publicationFormatName}\" er ikke lenger publisert." - -msgid "submission.event.publicationFormatPublished" -msgstr "" -"Publikasjonsformatet \"{$publicationFormatName}\" er godkjent for " -"publisering." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "" -"Publikasjonsformatet \"{$publicationFormatName}\" er ikke lengre " -"offentliggjort." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "" -"Publikasjonsformatet \"{$publicationFormatName}\" er blitt offentliggjort." - -msgid "submission.event.metadataUnpublished" -msgstr "Monografiens metadata er ikke lengre publisert." - -msgid "submission.event.metadataPublished" -msgstr "Monografiens metadata er godkjent til publisering." - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Publikasjonsformat" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Katalog" - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monografi" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Hvert kapittel kan ha sin egen publikasjonsdato." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Alle kapitler bruker monografiens publiseringdato." - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Publikasjonsdato" - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Se innlevering" - -msgid "submission.catalogEntry.isAvailable" -msgstr "" -"Denne monografien er klar til å bli inkludert i den offentlige katalogen." - -msgid "submission.catalogEntry.confirm.required" -msgstr "Bekreft at innleveringen er klar til å bli passert i katalogen." - -msgid "submission.catalogEntry.confirm" -msgstr "Legg denne boken til i den offentlige katalogen" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "Du må velge minst en monografi for å legge til i katalogen." - -msgid "submission.catalogEntry.select" -msgstr "Velg de monografiene som skal legges til i katalogen" - -msgid "submission.catalogEntry.add" -msgstr "Legg til valgte bidrag i katalogen" - -msgid "submission.catalogEntry.new" -msgstr "Legg til i katalogen" - -msgid "submission.editCatalogEntry" -msgstr "Inngang" - -msgid "submission.incomplete" -msgstr "Avventer godkjenning" - -msgid "submission.complete" -msgstr "Godkjent" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Slett språkvaskerens opplasting" - -msgid "grid.chapters.title" -msgstr "Kapitler" - -msgid "submission.submit.noContext" -msgstr "Utgiveren til denne innleveringen ble ikke funnet." - -msgid "submission.submit.userGroupDescription" -msgstr "Hvis du sender inn et redigert verk bør du velge redaktørrollen." - -msgid "submission.submit.userGroup" -msgstr "Lever inn i min rolle som…" - -msgid "submission.submit.placement" -msgstr "Innleveringens plassering" - -msgid "submission.submit.checklistErrors" -msgstr "" -"Les og kryss av for alle delene i innleveringslisten. Det er " -"{$itemsRemaining} ukontrollerte deler." - -msgid "submission.submit.whatNext.description" -msgstr "" -"Utgiveren har blitt varslet om innleveringen din, og du har mottatt en e-" -"post som bekrefter mottakelsen av innleveringen din. Når redaktøren har " -"vurdert innlevberingen, blir du kontaktet." - -msgid "submission.submit.generalInformation" -msgstr "Generell informasjon" - -msgid "submission.submit.coverNote" -msgstr "Kommentarer til redaktøren" - -msgid "submission.submit.nextSteps" -msgstr "Neste steg" - -msgid "submission.submit.confirmation" -msgstr "Bekreftelse" - -msgid "submission.submit.finishingUp" -msgstr "Ferdiggjør" - -msgid "submission.submit.metadata" -msgstr "Metadata" - -msgid "submission.submit.catalog" -msgstr "Katalog" - -msgid "submission.submit.prepare" -msgstr "Forbered" - -msgid "submission.submit.submissionFile" -msgstr "Inlleveringsfil" - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Velg bidragsyterens rolle." - -msgid "submission.submit.form.abstractRequired" -msgstr "Legg inn et kort sammendrag av monografien." - -msgid "submission.submit.form.titleRequired" -msgstr "Legg inn tittelen på monografien din." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Forfatterens fornavn, etternavn og e-post må fylles ut." - -msgid "submission.submit.form.authorRequired" -msgstr "Minst en forfatter kreves." - -msgid "submission.submit.contributorRole" -msgstr "Bidragsyterens rolle" - -msgid "submission.submit.privacyStatement" -msgstr "Personvernerklæring" - -msgid "submission.submit.form.localeRequired" -msgstr "Velg et innleveringsspråk." - -msgid "submission.submit.seriesPosition.description" -msgstr "Eksempler: Bok 2, bind 2" - -msgid "submission.submit.seriesPosition" -msgstr "Posisjon i serien" - -msgid "author.submit.seriesRequired" -msgstr "En gyldig serie er nødvendig." - -msgid "author.isVolumeEditor" -msgstr "Sett denne bidragsyteren som redaktør for dette bindet." - -msgid "submission.submit.selectSeries" -msgstr "Velg serie (valgfritt)" - -msgid "submission.submit.cancelSubmission" -msgstr "" -"Du kan fullføre denne innleveringen ved en senere anledning om du velger «" -"Aktive innleveringer» fra forfattersiden." - -msgid "submission.submit.upload" -msgstr "Last opp innlevering" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Ny innlevering" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Start en ny innlevering i" - -msgid "submission.submit" -msgstr "Start innlevering av ny bok" - -msgid "grid.action.deleteChapter" -msgstr "Slett dette kapitlet" - -msgid "grid.action.editChapter" -msgstr "Rediger dette kapitlet" - -msgid "grid.action.addChapter" -msgstr "Opprett nytt kapittel" - -msgid "submission.supportingAgencies" -msgstr "Sponsorer" - -msgid "submission.metadata" -msgstr "Metadata" - -msgid "submission.confirmSubmit" -msgstr "Er du sikker på at du vil sende dette manuskriptet til utgiveren?" - -msgid "manuscript.submissions" -msgstr "Manusinnleveringer" - -msgid "submissions.queuedReview" -msgstr "Planlagt fagvurdert" - -msgid "submission.round" -msgstr "Runde {$round}" - -msgid "manuscript.submission" -msgstr "Manusinnlevering" - -msgid "submission.sharing" -msgstr "Del dette" - -msgid "submission.download" -msgstr "Last ned" - -msgid "submission.proofs" -msgstr "Korrekturer" - -msgid "submission.publicationFormats" -msgstr "Publikasjonsformater" - -msgid "submission.copyedit" -msgstr "Manusredigering" - -msgid "submission.chapter.pages" -msgstr "Sider" - -msgid "submission.chapter.editChapter" -msgstr "Rediger kapittel" - -msgid "submission.chapter.addChapter" -msgstr "Legg til kapittel" - -msgid "submission.chaptersDescription" -msgstr "" -"Du kan lage en liste over kapitlene her og knytte forfattere fra listen over " -"bidragsytere ovenfor. Disse forfatterne kan få tilgang til kapittelet på " -"forskjellige stadier i den redaksjonelle prosessen." - -msgid "submission.chapters" -msgstr "Kapitler" - -msgid "submission.chapter" -msgstr "Kapittel" - -msgid "submission.artwork.permissions" -msgstr "Tillatelser" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.fairCopy" -msgstr "Språkvask" - -msgid "submission.published" -msgstr "Klar til produksjon" - -msgid "submission.monograph" -msgstr "Monografi" - -msgid "submission.editorName" -msgstr "{$editorName} (ed)" - -msgid "submission.workflowType.change" -msgstr "Endre" - -msgid "submission.workflowType.authoredWork" -msgstr "Monografi: Forfattere er knyttet til boken som helhet." - -msgid "submission.workflowType.editedVolume" -msgstr "Antologi/redigeret verk: Forfattere er knyttet til deres eget kapittel." - -msgid "submission.workflowType.editedVolume.label" -msgstr "Antologi/redigert verk" - -msgid "submission.workflowType.description" -msgstr "" -"En monografi er et verk skrevet helt av en eller flere forfattere. Et " -"redigert verk har forskjellige forfattere for hvert kapittel (med " -"kapittelinformasjon angitt senere i denne prosessen.)" - -msgid "submission.workflowType" -msgstr "Innleveringstype" - -msgid "submission.synopsis" -msgstr "Synopsis" - -msgid "submission.select" -msgstr "Velg innlevering" - -msgid "submission.title" -msgstr "Boktittel" - -msgid "submission.upload.selectComponent" -msgstr "Velg komponent" - -msgid "submission.submit.title" -msgstr "Lever inn en monografi" - -msgid "submission.publication" -msgstr "Publikasjon" - -msgid "publication.status.published" -msgstr "Publisert" - -msgid "submission.status.scheduled" -msgstr "Planlagt" - -msgid "publication.status.unscheduled" -msgstr "Ikke planlagt" - -msgid "submission.publications" -msgstr "Publikasjoner" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Opphavsrettsåret settes automatisk når denne innleveringen publiseres i et " -"nummer." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "Opphavsrettsåret settes automatisk basert på publiseringsdatoen." - -msgid "publication.datePublished" -msgstr "Dato publisert" - -msgid "publication.editDisabled" -msgstr "Denne versjonen er publisert og kan ikke redigeres." - -msgid "publication.event.published" -msgstr "Innleveringen ble publisert." - -msgid "publication.event.scheduled" -msgstr "Innleveringen var planlagt for publisering." - -msgid "publication.event.unpublished" -msgstr "Innleveringen ble ikke publisert." - -msgid "publication.event.versionPublished" -msgstr "En ny versjon ble publisert." - -msgid "publication.event.versionScheduled" -msgstr "En ny versjon var planlagt for publisering." - -msgid "publication.event.versionUnpublished" -msgstr "En versjon ble fjernet fra publikasjonen." - -msgid "publication.invalidSubmission" -msgstr "Innleveringen til denne publikasjonen kunne ikke finnes." - -msgid "publication.publish" -msgstr "Publiser" - -msgid "publication.publish.requirements" -msgstr "Følgende krav må være oppfylt før dette kan publiseres." - -msgid "publication.required.declined" -msgstr "En avvist innlevering kan ikke publiseres." - -msgid "publication.required.reviewStage" -msgstr "" -"Innleveringen må være under manusredigerings- eller produksjonstrinnet før " -"det kan publiseres." - -msgid "submission.license.description" -msgstr "" -"Lisensen settes automatisk til " -"{$licenseName} når den blir publisert." - -msgid "submission.copyrightHolder.description" -msgstr "Opphavsretten tildeles automatisk {$copyright} når den publiseres." - -msgid "submission.copyrightOther.description" -msgstr "" -"Tilordne opphavsrett i forbindelse med publiserte innleveringer til følgende " -"gruppe." - -msgid "publication.unpublish" -msgstr "Avpubliser" - -msgid "publication.unpublish.confirm" -msgstr "Er du sikker på at du ikke ønsker at dette skal publiseres?" - -msgid "publication.unschedule.confirm" -msgstr "" -"Er du sikker på at du ikke vil ha dette planlagt til senere publisering?" - -msgid "publication.version.details" -msgstr "Publikasjonsopplysninger i forbindelse med versjon {$version}" - -msgid "submission.queries.production" -msgstr "Diskusjon av produksjon" - -msgid "publication.inactiveSeries" -msgstr "{$series} (Inaktiv)" - -msgid "submission.list.viewEntry" -msgstr "Se post" diff --git a/locale/pl/admin.po b/locale/pl/admin.po new file mode 100644 index 00000000000..55a8caeba3c --- /dev/null +++ b/locale/pl/admin.po @@ -0,0 +1,199 @@ +# Dorota Siwecka , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Obsługiwane wydawnictwa" + +msgid "admin.settings.appearance.success" +msgstr "Ustawienia widoku strony zostały pomyślnie zaktualizowane." + +msgid "admin.settings.config.success" +msgstr "Ustawienia konfiguracyjne strony zostały pomyślnie zaktualizowane." + +msgid "admin.settings.info.success" +msgstr "Informacje o stronie zostały pomyślnie zaktualizowane." + +msgid "admin.settings.redirect" +msgstr "Przekieruj do wydawnictwa" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Zapytanie na stronie głównej będzie przekierowane do wydawnictwa. To może " +"być przydatne, jeśli strona np. obsługuje tylko jedno wydawnictwo." + +msgid "admin.settings.noPressRedirect" +msgstr "Nie przekierowuj" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "To będzie domyślny język dla tej strony i obsługiwanych wydawnictw." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Wybierz ustawienia regionalne do obsługi ten strony. Wybrane ustawienia " +"regionalne będą dostępne do użytku dla obsługiwanych wydawnictw przez tę " +"stronę i również pojawią się w menu wyboru języka, znajdującego się na " +"stronie internetowej (który może być nadpisany na technicznych stronach " +"wydawnictwa). Jeśli zostanie wybrany jeden typ ustawień lokalnych, nie " +"pojawi się przełącznik zmiany języka, a także nie będą dostępne dla tych " +"wydawnictw rozszerzone ustawienia językowe." + +msgid "admin.locale.maybeIncomplete" +msgstr "Ustawienia lokalne oznaczone *mogą być niepełne." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Czy jesteś pewien, że chcesz odinstalować zaznaczone ustawienia lokalne? To " +"może mieć wpływ na każde obsługiwane wydawnictwo, które z nich korzysta." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Wybierz dodatkowe ustawienia regionalne do obsługi tego systemu. Ustawienia " +"regionalne muszą być zainstalowane zanim będą stosowane przez wydawnictwa. " +"Zobacz dokumentację OMP, aby zdobyć informacje o dodaniu obsługi dla nowych " +"języków." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Czy jesteś pewien, że chcesz wyłączyć te ustawienia regionalne? To może mieć " +"wpływ na każde obsługiwane wydawnictwo, które z nich korzysta." + +msgid "admin.systemVersion" +msgstr "Wersja OMP" + +msgid "admin.systemConfiguration" +msgstr "Konfiguracja OMP" + +msgid "admin.presses.pressSettings" +msgstr "Ustawienia dla wydawnictwa" + +msgid "admin.presses.noneCreated" +msgstr "Nie utworzono strony wydawnictwa." + +msgid "admin.contexts.create" +msgstr "Utwórz stronę wydawnictwa" + +msgid "admin.contexts.form.titleRequired" +msgstr "Tytuł jest wymagany." + +msgid "admin.contexts.form.pathRequired" +msgstr "Ścieżka jest wymagana." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Ścieżka może zawierać tylko litery, liczby oraz znaki _ i -. Musi zaczynać i " +"kończyć się literą lub liczbą." + +msgid "admin.contexts.form.pathExists" +msgstr "Wybrana ścieżka jest już używana przez inne wydawnictwo." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Podstawowe ustawienia regionalne muszą być jednymi z obsługiwanych przez " +"wydawnictwo." + +msgid "admin.contexts.form.create.success" +msgstr "{$name}zostało pomyślnie utworzone." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} zostało pomyślnie edytowane." + +msgid "admin.contexts.contextDescription" +msgstr "Opis wydawnictwa" + +msgid "admin.presses.addPress" +msgstr "Dodaj wydawnictwo" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

        ZWRÓĆ UWAGĘ!\n" +"

        System mógł automatycznie nadpisać plik konfiguracji. Aby zastosować " +"zmiany musisz otworzyć config.inc.php w odpowiednim edytorze tekstu " +"i zasątpić jego zawartość tekstem pola poniżej.

        " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Wybierz hostowane wydawnictwa, które powinny być uprawnione do wysyłania " +"masowych wiadomości e-mail. Gdy ta funkcja jest włączona, menedżer " +"wydawnictwa będzie mógł wysłać wiadomość e-mail do wszystkich użytkowników " +"zarejestrowanych w ich wydawnictwie.

        Niewłaściwe wykorzystanie tej " +"funkcji do wysyłania niechcianych wiadomości e-mail może naruszać przepisy " +"antyspamowe w niektórych jurysdykcjach i może spowodować zablokowanie " +"wiadomości e-mail z Twojego serwera jako spamu. Przed włączeniem tej funkcji " +"należy zasięgnąć porady technicznej i rozważyć skonsultowanie się z " +"menedżerami wydawnictwa, aby upewnić się, że jest ona używana w odpowiedni " +"sposób.

        Dalsze ograniczenia tej funkcji można włączyć dla każdego " +"wydawnictwa, odwiedzając kreator jej ustawień na liście Hostowane wydawnictwa." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Menadżer wydawnictwa nie będzie miał możliwości wysyłania wiadomości email " +"masowo do użytkowników o roli zaznaczonej poniżej. Skorzystaj z tych " +"ustawień, aby ograniczyć nadużywanie funkcji powiadomień e-mail. Na przykład " +"bezpieczniejsze może być wyłączenie masowych wiadomości do czytelników, " +"autorów lub innych dużych grup użytkowników, którzy nie wyrazili zgody na " +"otrzymywanie takich wiadomości.

        Funkcja masowego wysyłania " +"wiadomości może być całkowicie wyłączona dla tego wydawnictwa w Administracja > Ustawienia strony." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Funkcja masowego wysyłania wiadomości e-mail została wyłączona dla tego " +"wydawnictwa. Włącz tę funkcję w Administracja " +"> Ustawienia strony." + +msgid "admin.siteManagement.description" +msgstr "" +"Dodaj, edytuj lub usuń wydawnictwa z tej witryny i zarządzaj ustawieniami " +"całej witryny." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "Identyfikator rozdziału nie jest liczbą całkowitą" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "Identyfikator serii nie jest liczbą całkowitą" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +#~ msgid "admin.languages.downloadUnavailable" +#~ msgstr "" +#~ "

        Pobranie pakietu językowego ze strony Projektu Wiedzy Publicznej jest " +#~ "obecnie niedostępne ponieważ:

        \n" +#~ "\t
          \n" +#~ "\t\t
        • Twój serwer nie posiada lub nie ma dostępu do uruchomienia GNU " +#~ "\"tar\" utility
        • \n" +#~ "\t\t
        • OMP nie ma możliwości modyfikacji ustawień regionalnych pliku, " +#~ "typowych dla \"registry/locales.xml\".
        • \n" +#~ "\t
        \n" +#~ "

        Pakiet językowy może zostać pobrany ręcznie z: PKP web site.

        " + +#~ msgid "admin.languages.downloadFailed" +#~ msgstr "" +#~ "Pobieranie ustawień regionalnych nie powiodło się. Poniższa wiadomość " +#~ "opisuje błąd operacji." + +#~ msgid "admin.languages.noLocalesToDownload" +#~ msgstr "Brak ustawień regionalnych dostępnych do pobrania." + +#, fuzzy +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Użyj witryny jako platformy dla wszystkich czasopism." diff --git a/locale/pl/api.po b/locale/pl/api.po new file mode 100644 index 00000000000..72bb28c0502 --- /dev/null +++ b/locale/pl/api.po @@ -0,0 +1,44 @@ +# Dorota Siwecka , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-09 10:00+0000\n" +"Last-Translator: Dorota Siwecka \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Musisz dostarczyć przynajmniej jeden identyfikator zgłoszenia, aby był " +"dodany w katalogu." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "Nie udało się znaleźć wyszczególnionego zgłoszenia." + +msgid "api.submissions.400.wrongContext" +msgstr "Zgłoszenie, o które prosiłeś, nie znajduje się w tym wydawnictwie." + +msgid "api.emails.403.disabled" +msgstr "" +"Funkcja powiadamiania e-mailem nie została włączona dla tego wydawnictwa." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"Nie masz pozwolenia, aby zastosować ten szablon dla innego wydawnictwa." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "Publikacja, o którą poprosiłeś, nie należy do tego zlecenia." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "Publikacja, o którą poprosiłeś nie jest częścią tego zgłoszenia." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Nie możesz zmienić zlecenia dla tego zgłoszenia." + +msgid "api.submission.400.inactiveSection" +msgstr "" diff --git a/locale/pl/author.po b/locale/pl/author.po new file mode 100644 index 00000000000..ff41678bf9d --- /dev/null +++ b/locale/pl/author.po @@ -0,0 +1,20 @@ +# Dorota Siwecka , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-08 09:16+0000\n" +"Last-Translator: Dorota Siwecka \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "author.submit.notAccepting" +msgstr "Wydawnictwo nie przyjmuje obecnie zgłoszeń." + +msgid "author.submit" +msgstr "Nowe zgłoszenie" diff --git a/locale/pl/default.po b/locale/pl/default.po new file mode 100644 index 00000000000..06702fdae94 --- /dev/null +++ b/locale/pl/default.po @@ -0,0 +1,195 @@ +# Dorota Siwecka , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-09 10:00+0000\n" +"Last-Translator: Dorota Siwecka \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "default.genres.appendix" +msgstr "Załączniki" + +msgid "default.genres.bibliography" +msgstr "Bibliografia" + +msgid "default.genres.manuscript" +msgstr "Manuskrypt książki" + +msgid "default.genres.chapter" +msgstr "Rozdział manuskryptu" + +msgid "default.genres.glossary" +msgstr "Glosariusz" + +msgid "default.genres.index" +msgstr "Indeks" + +msgid "default.genres.preface" +msgstr "Wstęp" + +msgid "default.genres.prospectus" +msgstr "Konspekt" + +msgid "default.genres.table" +msgstr "Tabela" + +msgid "default.genres.figure" +msgstr "Rysunek" + +msgid "default.genres.photo" +msgstr "Zdjęcie" + +msgid "default.genres.illustration" +msgstr "Ilustracja" + +msgid "default.genres.other" +msgstr "Inne" + +msgid "default.groups.name.manager" +msgstr "Menadżer wydawnictwa" + +msgid "default.groups.plural.manager" +msgstr "Menadżerowie wydawnictwa" + +msgid "default.groups.abbrev.manager" +msgstr "MW" + +msgid "default.groups.name.editor" +msgstr "Redaktor wydawniczy" + +msgid "default.groups.plural.editor" +msgstr "Redaktorzy wydawniczy" + +msgid "default.groups.abbrev.editor" +msgstr "RW" + +msgid "default.groups.name.sectionEditor" +msgstr "Redaktor serii" + +msgid "default.groups.plural.sectionEditor" +msgstr "Redaktorzy serii" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "RS" + +msgid "default.groups.name.subscriptionManager" +msgstr "Menadżer subskrypcji" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Menadżerowie subskrypcji" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "MSub" + +msgid "default.groups.name.chapterAuthor" +msgstr "Autor rozdziału" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Autorzy rozdziału" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "AR" + +msgid "default.groups.name.volumeEditor" +msgstr "Redaktor tomu" + +msgid "default.groups.plural.volumeEditor" +msgstr "Redaktorzy tomu" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "RT" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

        Nazwy i adresy email wprowadzone na stronie wydawnictwa będą stosowane " +"wyłącznie dla wyznaczonych celów wydawnictwa oraz nie będą dostępne dla " +"innych stron i wykorzystywane do innych celów.

        " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Wydawnictwo zapewnia natychmiastowy otwarty dostęp zawartości w imię zasady " +"powszechnej dostępności badań w ramach publicznego wspierania światowej " +"wymiany wiedzy." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Zachęcamy czytelników do zapisania się do naszego serwisu powiadomień " +"wydawniczych. Użyj linku r, który znajduje się w górnej części strony głównej. Rejestracja " +"poskutkuje otrzymywaniem emailem przez czytelnika spisu treści dla każdej " +"monografii opublikowanej przez to wydawnictwo. Ta lista pozwala także " +"wydawnictwu spodziewać się pewnego poziomu wsparcia i czytelnictwa. Zobacz " +"Oświadczenie o ochronie prywatności , które zapewnia, że nazwa i adresy " +"email czytelników nie będą użyte do innych celów." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Czy jesteś zainteresowany zgłoszeniem swojej pracy wydawnictwu? Zalecamy " +"przejrzenie zakładki: O " +"wydanius, sekcję o polityce wydawniczej oraz zakładki Wskazówki " +"dla autora. Autorzy muszą zarejestrować się do wydawnictwa przed zgłoszeniem lub, " +"jeśli są już zarejestrowani, mogą łatwo " +"zalogować się a ,aby rozpocząć pięciostopniowy proces zgłoszenia." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Zachęcamy bibliotekarzy naukowych do włączenia publikacji wydawnictwa do " +"swoich zasobów elektronicznych. Ten otwarty system publikacji jest " +"odpowiedni dla bibliotek, które mogą w ten sposób zapewnić swoim " +"użytkownikom akademickim korzystanie z publikacji, w których redagowanie są " +"zaangażowanie (zobacz Open Monograph " +"Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Recenzent zewnętrzny" + +msgid "default.groups.plural.externalReviewer" +msgstr "Recenzenci zewnętrzni" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "RZ" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Tekst przestrzega wymagań stylistycznych i bibliograficznych " +#~ "przedstawionych we wskazówkach dla autora , które znajdują się w zakładce O wydaniu." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Tekst ma pojedyncze odstępy; stosuje 12-punktową czcionkę; używa kursywę, " +#~ "rzadziej podkreślenie (z wyjątkiem adresów URL); wszystkie ilustracje, " +#~ "rysunki, tabele są umieszczone w odpowiadającym fragmencie tekstu, " +#~ "rzadziej na końcu." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Adres URL dla odnośników został dostarczony tam, gdzie jest to możliwe." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Plik publikacji jest zapisany w formacie MicrosoftWord, RTF lub " +#~ "OpenDocument." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Zgłoszenie nie było wcześniej opublikowane ani nie jest obecnie rozważane " +#~ "do publikacji w innym wydawnictwo (lub wyjaśnienie zostało zawarte w " +#~ "komentarzach dla redaktora)." diff --git a/locale/pl/editor.po b/locale/pl/editor.po new file mode 100644 index 00000000000..9cdacc1a575 --- /dev/null +++ b/locale/pl/editor.po @@ -0,0 +1,210 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-12-01 14:05+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Archiwum zgłoszeń" + +msgid "editor.monograph.cancelReview" +msgstr "Anuluj zapytanie" + +msgid "editor.monograph.clearReview" +msgstr "Wymaż recenzenta" + +msgid "editor.monograph.enterRecommendation" +msgstr "Wprowadź rekomendację" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Wprowadź rekomendację recenzenta" + +msgid "editor.monograph.recommendation" +msgstr "Rekomendacja" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Wybierz recenzenta powyżej i naciśnij \"wybierz recenzenta\", aby " +"kontynuować." + +msgid "editor.monograph.replaceReviewer" +msgstr "Zastąp recenzenta" + +msgid "editor.monograph.editorToEnter" +msgstr "Edytor do wprowadzenia rekomendacji i komentarzy dla recenzenta" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Załaduj recenzję" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Możliwości recenzji naukowych" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Pliki do korekty" + +msgid "editor.monograph.internalReview" +msgstr "Rozpocznij wewnętrzną recenzje" + +msgid "editor.monograph.internalReviewDescription" +msgstr "Wybierz pliki poniżej, aby wysłać je do recenzji wewnętrznej." + +msgid "editor.monograph.externalReview" +msgstr "Rozpocznij zewnętrzną recenzję" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Wybierz ostateczną wersję roboczą pliku" + +msgid "editor.monograph.final.currentFiles" +msgstr "Obecna wersja robocza pliku" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Obecne pliki" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Wiadomość dla użytkownika" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Czynności, aby dokonać zgłoszenia" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Całościowe czynności i możliwości do dokonania zgłoszenia." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Sekcja czynności" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Możliwości charakterystyczne dla wybranej sekcji, na przykład załadowanie " +"plików lub dodanie użytkowników." + +msgid "editor.monograph.legend.itemActions" +msgstr "Czynności na pozycji" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Czynności i możliwości charakterystyczne dla indywidualnego pliku." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Wyświetl i zarządzaj zgłoszoną pozycją katalogową, włączając metadane i " +"formaty publikacji" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Wyświetl i zarządzaj metadanymi, uwagami, powiadomieniami i historią " +"zgłoszenia" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Wyświetl i zarządzaj uczestnikami tego zgłoszenia: autorami, redaktorami, " +"projektantami i innymi" + +msgid "editor.monograph.legend.add" +msgstr "Załaduj plik do sekcji" + +msgid "editor.monograph.legend.add_user" +msgstr "Dodaj użytkownika do sekcji" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Wyświetl i udostępnij ustawienia pozycji, takie jak informacje i możliwość " +"wykasowania" + +msgid "editor.monograph.legend.more_info" +msgstr "Więcej informacji: uwagi o pliku, możliwości powiadomień i historia" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Informacje o pliku: uwagi, możliwości powiadomień i historia (nie dodano " +"uwag)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Informacje o pliku: uwagi, możliwości powiadomień i historia (uwagi są " +"dostępne)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Informacje o pliku: uwagi, możliwości powiadomień i historia (dodano nowe " +"uwagi od ostatniej wizyty)" + +msgid "editor.monograph.legend.edit" +msgstr "Edytuj pozycję" + +msgid "editor.monograph.legend.delete" +msgstr "Usuń pozycję" + +msgid "editor.monograph.legend.in_progress" +msgstr "Czynności są w trakcie lub jeszcze nie zostały ukończone" + +msgid "editor.monograph.legend.complete" +msgstr "Ukończono czynności" + +msgid "editor.monograph.legend.uploaded" +msgstr "Plik załadowany w polu kolumny tytułowej" + +msgid "editor.submission.introduction" +msgstr "" +"W zgłoszeniu, redaktor po skonsultowaniu zgłoszonych plików, zaznaczył " +"odpowiednie czynności (w które wlicza się powiadomienie autora): wysłanie do " +"wewnętrznej recenzji (co wiąże się z wybraniem plików do wewnętrznej " +"recenzji); wysłanie do zewnętrznej recenzji (co wiąże się z wybraniem plików " +"do zewnętrznej recenzji); zaakceptowanie zgłoszenia (co wiąże się z " +"wybraniem pliku do procesu redakcyjnego); lub odrzucenie zgłoszenia " +"(archiwizacja zgłoszenia)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Czystopis" + +msgid "editor.monograph.proofs" +msgstr "Korekty" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Zatwierdzenie i opublikowanie" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Różne formaty publikacji, takie jak: twarda okładka, miękka okładka i wersja " +"cyfrowa, mogą być załadowane w sekcji poniżej Formaty publikacji. Możesz " +"użyć poniższego pola formatów publikacji jako listę kontrolną dla " +"brakujących czynności przed publikacją formatu." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Dodaj format publikacji (np. cyfrowy, broszurowa oprawa), dla których " +"redaktor składu przygotuje odbitki do korekty. Wersja próbna musi " +"być sprawdzona, zatwierdzona, a pozycja katalogowa formatu musi " +"być sprawdzona i zamieszczona w pozycji katalogowej książki, zanim format " +"zostanie udostępniony. (tj.opublikowany)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Ustaw warunki pobierania" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Ustaw warunki" + +msgid "editor.monograph.proof.addNote" +msgstr "Dodaj odpowiedź" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Pliki, które już zostały załadowane do stanu zgłoszenia mogą być dodane do " +"Plików korektorskich poprzez zaznaczenie poniższego pola \"Uwzględnij\" oraz " +"poprzez kliknięcie \"Szukaj\": wszystkie dostępne pliki zostaną umieszczone " +"na liście i mogą być wybrane do uwzględnienia." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Identyfikator publiczny '{$publicIdentifier}' już istnieje dla innego " +"przedmiotu tego rodzaju. Proszę, wybierz identyfikatory będące przeznaczone " +"dla przedmiotów zgodnych z rodzajem Twojego wydania." + +msgid "editor.submissions.assignedTo" +msgstr "Przypisano do redaktora" diff --git a/locale/pl/emails.po b/locale/pl/emails.po new file mode 100644 index 00000000000..31ba505f993 --- /dev/null +++ b/locale/pl/emails.po @@ -0,0 +1,517 @@ +# Dorota Siwecka , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-09 10:00+0000\n" +"Last-Translator: Dorota Siwecka \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Potwierdzenie zresetowania hasła" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Otrzymaliśmy prośbę, aby zresetować Twoje hasło na {$siteTitle}stronie.
        \n" +"
        \n" +"Jeśli nie wysłałeś tej prośby, zignoruj tego maila, Twoje hasło nie zostanie " +"zmienione. Jeśli chcesz zresetować hasło, kliknij na poniższy URL.
        \n" +"
        \n" +"Zresetuj moje hasło: {$passwordResetUrl}
        \n" +"
        \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Rejestracja" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
        \n" +"
        \n" +"Zostałeś zarejestrowany jako użytkownik platformy {$contextName}. W tym " +"mailu zawarliśmy Twój login i hasło, które są potrzebne do pracy na tej " +"stronie. W dowolnym momencie, możesz poprosić o usunięcie z listy " +"użytkowników poprzez skontaktowanie się ze mną.
        \n" +"
        \n" +"Login: {$recipientUsername}
        \n" +"Hasło: {$password}
        \n" +"
        \n" +"Z poważaniem,
        \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Potwierdź swoje konto" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
        \n" +"
        \n" +"utworzyłeś konto {$contextName}, ale zanim będziesz mógł z niego korzystać, " +"musisz potwierdzić swój adres email. Aby to zrobić kliknij link znajdujący " +"się poniżej:
        \n" +"
        \n" +"{$activateUrl}
        \n" +"
        \n" +"Dziękujemy,
        \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Potwierdź swoje konto" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
        \n" +"
        \n" +"Utworzyłeś konto {$siteTitle}, ale zanim zaczniesz z niego korzystać, musisz " +"zatwierdzić swoje konto e-mail. Aby to zrobić, po prostu kliknij na poniższy " +"link::
        \n" +"
        \n" +"{$activateUrl}
        \n" +"
        \n" +"Dziękuę,
        \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Zarejestruj się jako recenzent na {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Mając na uwadze Twoje doświadczenie, zarejestrowaliśmy Twoje imię i nazwisko " +"w bazie recenzentów dla {$contextName}. Nie jest to w żaden sposób " +"zobowiązujące dla Ciebie, ale po prostu pozwala nam na skontaktowanie się z " +"Tobą w sprawie zgłoszeń do recenzji. Po zaproszeniu do recenzji, będziesz " +"miał możliwość przeczytania tytułu i abstraktu proponowanej rozprawy, przy " +"czym zawsze możesz odmówić lub przyjąć zaproszenie. W dowolnym momencie " +"możesz również poprosić o usunięcie Twojego imienia i nazwiska z listy " +"recenzentów.
        \n" +"
        \n" +"Przekazujemy Ci login i hasło, które będą używane we wszelkich interakcjach " +"z wydawnictwem poprzez tę stronę. Możesz chcieć np. zaktualizować swój " +"profil, podając obszar swoich zainteresowań naukowych.
        \n" +"
        \n" +"Login: {$recipientUsername}
        \n" +"Hasło: {$password}
        \n" +"
        \n" +"Dziękujemy,
        \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Zadania redakcyjne" + +msgid "emails.editorAssign.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Zgłoszenie, "{$submissionTitle}," do {$contextName} zostało Ci " +"zlecone do redakcji..
        \n" +"
        \n" +"URL zgłoszenia: {$submissionUrl}
        \n" +"Login: {$recipientUsername}
        \n" +"
        \n" +"Dziękujemy," + +msgid "emails.reviewRequest.subject" +msgstr "Prośba o recenzję manuskryptu" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Szanowny/Szanowna {$recipientName},
        \n" +"
        \n" +"{$messageToReviewer}
        \n" +"
        \n" +"Prosimy, zaloguj się na platformę wydawniczą {$responseDueDate}, aby " +"zasygnalizować, czy podejmuje się Pan/Pani recenzji, a także aby mieć dostęp " +"do zgłoszenia oraz swoich recenzji i rekomendacji..
        \n" +"
        \n" +"Termin oddania recenzji: {$reviewDueDate}.
        \n" +"
        \n" +"URL złoszenia: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Login:{$recipientUsername}
        \n" +"
        \n" +"Dziękujemy za rozpatrzenie naszej prośby, .
        \n" +"
        \n" +"
        \n" +"Z poważaniem,
        \n" +"{$signature}
        \n" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Prośba o recenzję rękopisu" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Szanowny/ Szanowna {$recipientName},
        \n" +"Uprzejmie przypominamy o naszej prośbie o recenzję zgłoszenia "" +"{$submissionTitle}," dla {$contextName}. Mamy nadzieję otrzymać od " +"Ciebie odpowiedź do {$responseDueDate}, ten email został wysłany " +"automatycznie i zawiera zgodę na przekazywanie danych.\n" +"
        \n" +"{$messageToReviewer}
        \n" +"
        \n" +"Proszę, zaloguj się na stronie wydawnictwa, aby zaznaczyć, czy podejmujesz " +"się recenzji, a także, aby uzyskać dostęp do zgłoszenia oraz zarejestrować " +"swoją recenzję i rekomendację.
        \n" +"
        \n" +"Termin recenzji {$reviewDueDate}.
        \n" +"
        \n" +"Adres URL zgłoszenia: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Login: {$recipientUsername}
        \n" +"
        \n" +"Dziękujemy za rozpatrzenie naszej prośby.
        \n" +"
        \n" +"
        \n" +"Z poważaniem,
        \n" +"{$contextSignature}
        \n" + +msgid "emails.reviewCancel.subject" +msgstr "Prośba o anulowanie recenzji" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Zdecydowaliśmy o wycofaniu naszej prośby o recenzję tekstu, "" +"{$submissionTitle}," dla {$contextName}. Przepraszamy za niedogodności, " +"jakie mogliśmy spowodować i mamy nadzieję, że w przyszłości będziemy mogli " +"się kontaktować z prośbą o udział w redakcji innych tekstów. \n" +"
        \n" +"
        \n" +"W razie pytań, proszę skontaktuj się ze mną." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Ponowienie prośby o recenzję" + +msgid "emails.reviewReinstate.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Piszemy, aby ponowić prośbę o recenzję tekstu, "{$submissionTitle}," +"" dla {$contextName}. Mamy nadzieję, że weźmiesz udział w procedurze " +"recenzji dla tego pisma.
        \n" +"
        \n" +"W razie pytań, proszę, kontaktuj się ze mną." + +msgid "emails.reviewDecline.subject" +msgstr "Niezdolny do recenzji" + +msgid "emails.reviewDecline.body" +msgstr "" +"Redaktor (redaktorzy): :
        \n" +"
        \n" +"Obawiam się, że nie jestem w stanie w chwili obecnej zrecenzować zgłoszony " +"tekst, "{$submissionTitle}," dla {$contextName}. Dziękuję za " +"wzięcie mnie pod uwagę, (...)
        \n" +"
        \n" +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Przypomnienie o (...)" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Uprzejmie przypominamy o naszej prośbie o recenzję zgłoszenia "" +"{$submissionTitle}," dla: {$contextName}. Mamy nadzieję otrzymać " +"recenzję przed: {$reviewDueDate}, chociaż bylibyśmy usatysfakcjonowani, " +"jeśli otrzymamy ją tak szybko, jak to możliwe.
        \n" +"
        \n" +"Jeśli nie posiadasz loginu lub hasła, użyj linku poniżej do resetu hasła " +"(który zostanie wysłane razem z loginem). {$passwordLostUrl}
        \n" +"
        \n" +"Adres URL zgłoszenia: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Login: {$recipientUsername}
        \n" +"
        \n" +"Prosimy, potwierdź możliwość wniesienia tego znaczącego wkładu w pracę " +"wydawnictwa. Z niecierpliwością oczekuję na odpowiedź.
        \n" +"
        \n" +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Przypomnienie o prośbie o recenzję tekstu, "{$submissionTitle}," " +"dla {$contextName}. Mamy nadzieję, aby otrzymać recenzję przed " +"{$reviewDueDate}, ten mail został wysłany automatycznie w momencie upływu " +"tego terminu. Mimo tego, chcielibyśmy otrzymać recenzję możliwie jak " +"najszybciej.
        \n" +"
        \n" +"Jeśli nie posiadasz loginu lub hasła do strony internetowej wydawnictwa, " +"użyj tego linku, aby zresetować hasło (które zostanie do Ciebie wysłane " +"razem z loginem). {$passwordLostUrl}
        \n" +"
        \n" +"URL zgłoszonego tekstu: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Login: {$recipientUsername}
        \n" +"
        \n" +"Prosimy, potwierdź swoją gotowość do wniesienia tego znaczącego wkładu do " +"pracy naszego wydawnictwa. Z niecierpliwością czekam na odpowiedź.
        \n" +"
        \n" +"{$contextSignature}" + +#, fuzzy +msgid "emails.editorDecisionAccept.subject" +msgstr "Decyzja redaktora" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"{$authors}:
        \n" +"
        \n" +"Podjęliśmy decyzję odnośnie Pańskiego zgłoszenia do {$contextName}, "" +"{$submissionTitle}".
        \n" +"
        \n" +"Nasza decyzja:
        \n" +"
        \n" +"URL rękopisu: {$submissionUrl}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Twoje zgłoszenie zostało przesłane do recenzji wewnętrznej" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

        Szanowna Pani/Szanowny Panie{$recipientName},

        mam przyjemność " +"poinformować, że jeden z redaktorów przejrzał Pani/Pana zgłoszenie, " +"{$submissionTitle}, i zdecydował się wysłać je do recenzji zewnętrznej. " +"Otrzyma Pani/Pan od nas informację o opiniach recenzentów oraz informacje o " +"kolejnych krokach.

        Prosimy pamiętać, że wysłanie zgłoszenia do " +"recenzji zewnętrznej nie gwarantuje, że zostanie ono opublikowane. Rozważymy " +"zalecenia recenzentów przed podjęciem decyzji o przyjęciu zgłoszenia do " +"publikacji. Może Pani/Pan zostać poproszona/y o wprowadzenie poprawek i " +"ustosunkowanie się do uwag recenzentów przed podjęciem ostatecznej decyzji.

        Jeśli ma Pani/Pan jakieś pytania, skontaktuj się z nami ze swojego " +"zgłoszeniowego panelu roboczego.

        {$signature}

        " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Twoje zgłoszenie zostało wysłane do korekty" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"Droga(i) {$recipientName},

        \n" +"

        Z przyjemnością informuję, że zdecydowaliśmy się przyjąć Twoje zgłoszenie " +"bez recenzji. Uznaliśmy, że Twoja praca, {$submissionTitle}, spełnia nasze " +"oczekiwania, a my nie wymagamy, aby prace tego typu były poddawane recenzji. " +"Jesteśmy podekscytowani możliwością opublikowania Twojego artykułu w " +"{$contextName} i dziękujemy za wybranie naszego wydawnictwa jako miejsca " +"publikacji.

        \n" +"

        Twoje zgłoszenie zostanie wkrótce opublikowane na stronie wydawnictwa " +"{$contextName} i możesz je dołączyć do swojej listy publikacji. Zdajemy " +"sobie sprawę z ciężkiej pracy, która wkładana jest w każde udane zgłoszenie " +"i chcemy Ci pogratulować wysiłków.

        \n" +"

        Twoje zgłoszenie zostanie teraz poddane redakcji i formatowaniu, aby " +"przygotować je do publikacji.

        \n" +"

        Wkrótce otrzymasz dalsze instrukcje.

        \n" +"

        W razie jakichkolwiek pytań proszę o kontakt ze mną ze strony panelu roboczego zgłoszenia.

        \n" +"

        Z wyrazami szacunku,

        \n" +"

        {$signature}

        ,\n" + +#, fuzzy +msgid "emails.layoutRequest.subject" +msgstr "Prośba o szczotkę" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" +"

        {$recipientName},

        Nowe zgłoszenie jest gotowe na redakcję " +"techniczną:

        {$submissionId} " +"{$submissionTitle}
        {$contextName}

        1. 1. Kliknij powyższy " +"adres URL zgłoszenia.
        2. 2. Pobierz pliki gotowych produkcji i " +"wykorzystaj je do stworzenia odbitki (galley) zgodnie ze standardami " +"wydawnictwa.
        3. 3. Prześlij odbitki do sekcji Forma publikacji " +"zgłoszenia.
        4. 4. Użyj Dyskusji w trakcie produkcji, aby powiadomić " +"redaktora, że odbitki są gotowe.

        Jeśli nie możesz podjąć się " +"tego zlecenia lub masz jakiekolwiek pytania, proszę, skontaktuj się ze mną. " +"Dziękujemy, za Twój wkład w pracę wydawnictwa.

        Pozdrawiam,{$signature}" + +msgid "emails.layoutComplete.subject" +msgstr "Ukończono korektę układu graficznego" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Szczotki zostały przygotowane dla manuskryptu, "{$submissionTitle}," +"" dla {$contextName} i są gotowe do korekty.
        \n" +"
        \n" +"W razie pytań, proszę, skontaktuj się ze mną.
        \n" +"
        \n" +"{$senderName}" + +msgid "emails.indexRequest.subject" +msgstr "Prośba o indeks" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Zgłoszenie "{$submissionTitle}" do {$contextName} potrzebuje " +"utworzenia indeksów wedle następujących kroków.
        \n" +"1. Kliknij poniższy adres URL zgłoszenia.
        \n" +"2. Zaloguj się do wydawnictwa i użyj pliku korekty, aby utworzyć korektę " +"szpaltową zgodnie z wytycznymi tego wydawnictwa.
        \n" +"3. Wyślij email ukończenia do redaktora.
        \n" +"
        \n" +"{$contextName} URL: {$contextUrl}
        \n" +"Adres URL zgłoszenia: {$submissionUrl}
        \n" +"Login: {$recipientUsername}
        \n" +"
        \n" +"Jeśli nie jesteś w stanie podjąć się tego zadania lub masz jakiekolwiek " +"pytania, proszę, skontaktuj się ze mną. Dziękujemy za Twój wkład w pracę " +"wydawnictwa.
        \n" +"
        \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Ukończono Indeks Szczotki Drukarskiej" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Indeksy do manuskryptu "{$submissionTitle} dla {$contextName} zostały " +"przygotowane i są gotowe do korekty.
        \n" +"
        \n" +"W razie pytań skontaktuj się ze mną.
        \n" +"
        \n" +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "Manuskrypt, który może Cię zainteresować" + +msgid "emails.emailLink.body" +msgstr "" +"Możesz być zainteresowany zapoznaniem się z "{$submissionTitle}" " +"{$authors} opublikowanym w tomie: {$volume}, numer {$number} ({$year}) z " +"{$contextName} w: "{$submissionUrl}"." + +msgid "emails.emailLink.description" +msgstr "" +"Ten email dostarcza zarejestrowanemu czytelnikowi możliwość wysłania " +"informacji o monografii do osoby, która może być nią zainteresowana. Jest " +"dostępny przez Narzędzia Czytelnicze i musi być aktywowany przez menedżera " +"wydawnictwa na stronie administrującej narzędzia czytelnicze." + +msgid "emails.notifySubmission.subject" +msgstr "Powiadomienie o zgłoszeniu tekstu" + +msgid "emails.notifySubmission.body" +msgstr "" +"Masz wiadomość od: {$sender} dotyczącą "{$submissionTitle}" " +"({$monographDetailsUrl}):
        \n" +"
        \n" +"\t\t{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Powiadomienie od użytkownika wysłane z modalnego centrum informacji o " +"zgłoszeniach." + +msgid "emails.notifyFile.subject" +msgstr "Powiadomienie o pliku zgłoszenia" + +msgid "emails.notifyFile.body" +msgstr "" +"Masz wiadomość od {$sender} dotyczącą pliku "{$fileName}" w "" +"{$submissionTitle}" ({$monographDetailsUrl}):
        \n" +"
        \n" +"\t\t{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"Powiadomienie od użytkownika wysłane z modalnego centrum informacji o pliku" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Zadanie redakcyjne dla {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
        \n" +"
        \n" +"Raport o sprawności wydawnictwa na {$month}, {$year} jest teraz dostępny. " +"Poniżej znajdziesz Twoje najważniejsze statystyki dla tego miesiąca.
        \n" +"

          \n" +"\t
        • Nowe zgłoszenia w tym miesiącu: {$newSubmissions}
        • \n" +"\t
        • Odrzucone zgłoszenia w tym miesiącu: {$declinedSubmissions}
        • \n" +"\t
        • Zaakceptowane zgłoszenia w tym miesiącu: {$acceptedSubmissions}
        • \n" +"\t
        • Wszystkie zgłoszenia w systemie: {$totalSubmissions}
        • \n" +"
        \n" +"Zaloguj się do wydawnictwa po więcej szczegółów trendy redakcyjne i statystyki opublikowanych artykułów . Pełna " +"kopia trendów redakcyjnych z tego miesiąca znajduje się w załączniku.
        \n" +"
        \n" +"Z poważaniem,
        \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
        \n" +"
        \n" +"{$announcementSummary}
        \n" +"
        \n" +"Odwiedź naszą stronę, , aby przeczytać całe " +"ogłoszenie." + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Ten mail jest wysyłany do nowo zarejestrowanych użytkowników, aby powitać " +#~ "ich w naszej platformie oraz dostarczyć login i hasło." + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName}
        \n" +#~ "
        \n" +#~ "Stworzyłeś konto na {$contextName}, zanim zaczniesz z niego korzystać, " +#~ "zweryfikuj adres mailowy. Aby to uczynić, kliknij link poniżej:
        \n" +#~ "
        \n" +#~ "{$activateUrl}
        \n" +#~ "
        \n" +#~ "Z poważaniem,
        \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Zweryfikuj konto" + +#~ msgid "emails.editorAssign.description" +#~ msgstr "" +#~ "Ta wiadomość powiadamia redaktora serii, że został przypisany do " +#~ "nadzorowania zgłoszenia podczas procesu redakcyjnego. Dostarcza " +#~ "informacje o zgłoszeniu oraz dostępie do strony wydawnictwa." diff --git a/locale/pl/locale.po b/locale/pl/locale.po new file mode 100644 index 00000000000..f8c0801920d --- /dev/null +++ b/locale/pl/locale.po @@ -0,0 +1,1660 @@ +# Dorota Siwecka , 2022. +# rl , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-08 15:40+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "common.payments" +msgstr "Płatności" + +msgid "monograph.audience" +msgstr "Grupa odbiorcza" + +msgid "monograph.audience.success" +msgstr "Szczegóły dotyczące grupy odbiorczej zostały zaktualizowane." + +msgid "monograph.coverImage" +msgstr "Okładka" + +msgid "monograph.audience.rangeQualifier" +msgstr "Kwalifikator zakresu grupy odbiorczej" + +msgid "monograph.audience.rangeFrom" +msgstr "Zakres grupy odbiorczej (od)" + +msgid "monograph.audience.rangeTo" +msgstr "Zakres grupy odbiorczej (do)" + +msgid "monograph.audience.rangeExact" +msgstr "Zakres grupy odbiorczej (dokładnie)" + +msgid "monograph.languages" +msgstr "Języki (angielski, francuski, hiszpański)" + +msgid "monograph.publicationFormats" +msgstr "Formaty publikacji" + +msgid "monograph.publicationFormat" +msgstr "Format" + +msgid "monograph.publicationFormatDetails" +msgstr "Szczegóły dotyczące dostępnego formatu publikacji: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Szczegóły dotyczące monografii" + +msgid "monograph.carousel.publicationFormats" +msgstr "Wymiary:" + +msgid "monograph.type" +msgstr "Rodzaj zgłoszenia" + +msgid "submission.pageProofs" +msgstr "Wersja do ostatecznej weryfikacji" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Edytor układu wydruku załadował plik gotowy do wydania. Użyj +Assign, aby wyznaczyć autorów i innych do sprawdzenia wersji po ostatnich " +"korektach łącznie ze skorygowanymi plikami załadowanymi do zatwierdzenia " +"przez publikację." + +msgid "monograph.task.addNote" +msgstr "Dodaj do zadania" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Otwarty dostęp" + +msgid "monograph.publicationFormat.imprint" +msgstr "Znak firmowy (nazwa handlowa)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Liczba stron" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Materiały wprowadzające" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Materiały pomocnicze i informacyjne" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Skład produktu" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Szczegóły produktu (niewymagane)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identyfikacja produktu" + +msgid "monograph.publicationFormat.price" +msgstr "Cena" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Cena jest wymagana." + +msgid "monograph.publicationFormat.priceType" +msgstr "Cena druku" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Procent rabatu, jeśli dotyczy" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Dostępność produktu" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Instrukcja zwrotu" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Dane cyfrowe" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Wymiary fizyczne" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Rozmiar pliku w MB" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Wprowadź rozmiar swojego pliku?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Wysokość" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Grubość" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Waga" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Szerokość" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Kraj pochodzenia" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Cyfrowe zabezpieczenia techniczne" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Kraj dystrybucji produktu" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Stawka podatku" + +msgid "monograph.publicationFormat.taxType" +msgstr "Rodzaj podatku" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Załącz metadane dla formatu publikacji w pozycji katalogu dla tej książki." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Brakujące dane o rynkach i cenach." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Brakuje kodu identyfikacyjnego." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Brakuje niektórych pól z metadanymi." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

        Format publikacji, który wybrałeś nie istnieje już dla tej monografii. " + +msgid "monograph.publicationFormat.openTab" +msgstr "Otwórz zakładkę z formatem publikacji." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Format publikacji" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Nazwa jest wymagana." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Aktualna cena jest wymagana." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Szczegóły formatu" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Fizyczne wymiary" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Ten format będzie dostępny na osobnej stronie" + +msgid "grid.catalogEntry.remoteURL" +msgstr "Adres URL zdalnie zarządzanych treści" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "13-cyfrowy numer ISBN, taki jak np. 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "10-cyfrowy numer ISBN, taki jak np. 951-98548-9-2." + +msgid "grid.catalogEntry.monographRequired" +msgstr "ID monografii jest wymagane." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Format publikacji musi zostać wybrany." + +msgid "grid.catalogEntry.availability" +msgstr "Dostępność" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Dostępny" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Niedostępny" + +msgid "grid.catalogEntry.proof" +msgstr "Korekta" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Zatwierdzenie formatu" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

        Zatwierdź metadane dla tego formatu. Metadane mogą być sprawdzone przez " +"redakcyjny dla każdego formatu.

        " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

        Metadane dla tego formatu nie zostały zatwierdzone.

        " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Dostępność formatu" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

        Udostępnij ten formatczytelnikom.Pliki do pobrania i wszystkie " +"inne dystrybucje pojawią się w pozycji katalogowej książki.

        " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

        Ten format będzie niedostępny dla czytelników. Pliki do pobrania " +"lub wszystkie inne dystrybucje nie będą już widoczne w pozycji katalogowej " +"książki.

        " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Pozycja katalogowa niezatwierdzona." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Brak formatu w pozycji katalogowej." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Korekta niezatwierdzona." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Zatwierdzone" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Oczekuje na zatwierdzenie" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Cyfrowe rozmiary pliku wymagane." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Kod dostępności produktu jest wymagany." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Kod składu produktu musi być wybrany." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Wartość kodu" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Typ kodu ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Kod identyfikacyjny jest wymagany." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Wartość jest wymagana." + +msgid "grid.catalogEntry.salesRights" +msgstr "Prawo sprzedaży" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Wartość kodu" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Rodzaj prawa sprzedaży" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Reszta świata?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Zaznacz to pole, aby zastosować pozycję prawa sprzedaży jako catch-all dla " +"Twojego formatu. Kraje i regiony nie muszą być wybrane w tym przypadku." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "Istnieje już zdefiniowany typ sprzedaży formatu tej publikacji dla RŚ." + +msgid "grid.catalogEntry.countries" +msgstr "Kraje" + +msgid "grid.catalogEntry.regions" +msgstr "Regiony" + +msgid "grid.catalogEntry.included" +msgstr "Załączone" + +msgid "grid.catalogEntry.excluded" +msgstr "Wyłączone" + +msgid "grid.catalogEntry.markets" +msgstr "Obszar handlu" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Obszar" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Daty publikacji" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Przedstawiciel jest wymagany." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Format daty jest wymagany." + +msgid "grid.catalogEntry.dateValue" +msgstr "Data" + +msgid "grid.catalogEntry.dateRole" +msgstr "Funkcja" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Format daty" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Data jest wymagana i wartość daty musi zgadzać się z wybranym formatem daty." + +msgid "grid.catalogEntry.representatives" +msgstr "Przedstawiciele" + +msgid "grid.catalogEntry.representativeType" +msgstr "Typ przedstawiciela" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agenci" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Dostawcy" + +msgid "grid.catalogEntry.agent" +msgstr "Agent" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Możesz wyznaczyć agenta do reprezentowania Cię na wyznaczonym obszarze. To " +"nie jest wymagane." + +msgid "grid.catalogEntry.supplier" +msgstr "Dostawca" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Wybierz funkcję:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Funkcja" + +msgid "grid.catalogEntry.representativeName" +msgstr "Nazwa" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Numer telefonu" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Adres email" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Strona internetowa" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Numer identyfikacyjny przedstawiciela" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Typ numeru identyfikacyjnego przedstawiciela (GLN jest rekomendowany)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Możesz zostawić poniższą sekcję pustą jeśli samodzielnie świadczysz usługi " +"swoim klientom." + +msgid "grid.action.addRepresentative" +msgstr "Dodaj przedstawiciela" + +msgid "grid.action.editRepresentative" +msgstr "Zmień przedstawiciela" + +msgid "grid.action.deleteRepresentative" +msgstr "Usuń przedstawiciela" + +msgid "spotlight" +msgstr "Wyróżnione" + +msgid "spotlight.spotlights" +msgstr "Wyróżnione" + +msgid "spotlight.noneExist" +msgstr "Brak aktualnie wyróżnionych." + +msgid "spotlight.title.homePage" +msgstr "Wyróżnione" + +msgid "spotlight.author" +msgstr "Autor " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Wyróżniony przedmiot" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Strona główna" + +msgid "grid.content.spotlights.form.location" +msgstr "Lokalizacja wyróżnionej pozycji" + +msgid "grid.content.spotlights.form.item" +msgstr "Wprowadź wyróżniony tytuł (autouzupełniane)" + +msgid "grid.content.spotlights.form.title" +msgstr "Wyróżniony tytuł" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Książka" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Pozycja jest wymagana." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Wyróżniony tytuł jest wymagany." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Proszę wybierz lokalizację dla wyróżnionej pozycji." + +msgid "grid.action.editSpotlight" +msgstr "Zmień wyróżnioną pozycję" + +msgid "grid.action.deleteSpotlight" +msgstr "Usuń wyróżnioną pozycję" + +msgid "grid.action.addSpotlight" +msgstr "Dodaj wyróżnione" + +msgid "manager.series.open" +msgstr "Otwarte zgłoszenia" + +msgid "manager.series.indexed" +msgstr "Zaindeksowano" + +msgid "grid.libraryFiles.column.files" +msgstr "Pliki" + +msgid "grid.action.catalogEntry" +msgstr "Wyświetl formularz pozycji katalogowej" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Format ukazuje się w pozycji katalogowej" + +msgid "grid.action.editFormat" +msgstr "Edytuj ten format" + +msgid "grid.action.deleteFormat" +msgstr "Usuń ten format" + +msgid "grid.action.addFormat" +msgstr "Dodaj format publikacji" + +msgid "grid.action.approveProof" +msgstr "Zatwierdź korektę do zaindeksowania i załączenia w katalogu" + +msgid "grid.action.pageProofApproved" +msgstr "Wersja pliku po ostatecznych korektach jest gotowa do publikacji" + +msgid "grid.action.newCatalogEntry" +msgstr "Nowa pozycja katalogowa" + +msgid "grid.action.publicCatalog" +msgstr "Wyświetl ten przedmiot w katalogu" + +msgid "grid.action.feature" +msgstr "Przełącz wyświetlaną funkcję" + +msgid "grid.action.featureMonograph" +msgstr "Pokaż to jako katalog karuzelowy" + +msgid "grid.action.releaseMonograph" +msgstr "Oznacz jako \"nowe zgłoszenie\"" + +msgid "grid.action.manageCategories" +msgstr "Skonfiguruj kategorie dla wydawnictwa" + +msgid "grid.action.manageSeries" +msgstr "Skonfiguruj serię dla wydawnictwa" + +msgid "grid.action.addCode" +msgstr "Dodaj kod" + +msgid "grid.action.editCode" +msgstr "Edytuj kod" + +msgid "grid.action.deleteCode" +msgstr "Usuń kod" + +msgid "grid.action.addRights" +msgstr "Dodaj prawa sprzedaży" + +msgid "grid.action.editRights" +msgstr "Edytuj te prawa" + +msgid "grid.action.deleteRights" +msgstr "Usuń te prawa" + +msgid "grid.action.addMarket" +msgstr "Dodaj rynek" + +msgid "grid.action.editMarket" +msgstr "Edytuj rynek" + +msgid "grid.action.deleteMarket" +msgstr "Usuń rynek" + +msgid "grid.action.addDate" +msgstr "Dodaj datę publikacji" + +msgid "grid.action.editDate" +msgstr "Edytuj datę" + +msgid "grid.action.deleteDate" +msgstr "Usuń datę" + +msgid "grid.action.createContext" +msgstr "Utwórz nowe zlecenie" + +msgid "grid.action.publicationFormatTab" +msgstr "Pokaż zakładkę formatu publikacji" + +msgid "grid.action.moreAnnouncements" +msgstr "Idź do ogłoszeń wydawnictwa" + +msgid "grid.action.submissionEmail" +msgstr "Kliknij, aby przeczytać email" + +msgid "grid.action.approveProofs" +msgstr "Wyświetl wersję ostateczną" + +msgid "grid.action.proofApproved" +msgstr "Format został poddany korekcie" + +msgid "grid.action.availableRepresentation" +msgstr "Zatwierdź/ odrzuć format" + +msgid "grid.action.formatAvailable" +msgstr "Przełączaj dostępność tego formatu" + +msgid "grid.reviewAttachments.add" +msgstr "Dodaj załącznik do recenzji" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Dostępne pliki" + +msgid "series.series" +msgstr "Serie" + +msgid "series.featured.description" +msgstr "Seria wyświetli się w głównym menu" + +msgid "series.path" +msgstr "Ścieżka" + +msgid "catalog.manage" +msgstr "Zarządzanie katalogiem" + +msgid "catalog.manage.newReleases" +msgstr "Nowe wydania" + +msgid "catalog.manage.category" +msgstr "Kategoria" + +msgid "catalog.manage.series" +msgstr "Serie" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Proszę, wprowadź prawidłowy ISSN." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "ISSN druku i ISSN wersji online nie mogą być takie same." + +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN wersji online" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN druku" + +msgid "catalog.selectSeries" +msgstr "Wybrane serie" + +msgid "catalog.selectCategory" +msgstr "Wybierz kategorię" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Okładki wybranych książek pojawią się u góry strony głównej jako zestawienie " +"do przejrzenia. Kliknij \"oznacz\"; następnie gwiazdkę; aby dodać książkę do " +"karuzeli; kliknij wykrzyknik, aby oznaczyć jako nowo wydane; przeciągnij i " +"upuść, aby zamówić." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Kliknij \"zamieść\", następnie gwiazdkę, aby wybrać oznaczoną książkę dla " +"tej kategorii; przeciągnij i upuść, aby zamówić." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Kliknij \"zamieść\", następnie gwiazdkę, aby wybrać oznaczoną książkę dla " +"tej serii; przeciągnij i upuść, aby zamówić. Serie są zidentyfikowane z " +"redaktorem (lub redaktorami) i tytułem serii, zależnie lub niezależnie od " +"kategorii." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Karuzela" + +msgid "catalog.manage.newRelease" +msgstr "Wydanie" + +msgid "catalog.manage.manageSeries" +msgstr "Zarządzaj serią" + +msgid "catalog.manage.manageCategories" +msgstr "Zarządzaj kategoriami" + +msgid "catalog.manage.noMonographs" +msgstr "Brak przypisanych monografii." + +msgid "catalog.manage.featured" +msgstr "Polecane" + +msgid "catalog.manage.categoryFeatured" +msgstr "Polecane w kategorii" + +msgid "catalog.manage.seriesFeatured" +msgstr "Polecane w serii" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monografia jest polecana." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monografia nie jest polecana." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Monografia oznaczona jako nowe wydanie." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Monografia nie jest oznaczona jako nowe wydanie." + +msgid "catalog.manage.feature.newRelease" +msgstr "Nowe wydanie" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Nowe wydanie w kategorii" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Nowe wydanie w serii" + +msgid "catalog.manage.nonOrderable" +msgstr "Tej monografii nie da się zamówić, jeśli nie została zamieszczona." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Szukaj po tytule lub autorze" + +msgid "catalog.manage.isFeatured" +msgstr "Monografia jest polecana. Oznacz jako niepolecaną." + +msgid "catalog.manage.isNotFeatured" +msgstr "Monografia jest niepolecana. Oznacz jako polecaną." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Ta monografia widnieje jako nowe wydanie. Odznacz te monografię jako nowe " +"wydanie." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Ta monografia nie widnieje jako nowe wydanie. Oznacz jako nowe wydanie." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Nie wybrano żadnego zgłoszenia do umieszczenia w katalogu." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Nie udało się znaleźć zgłoszenia." + +msgid "catalog.manage.findSubmissions" +msgstr "Znajdź monografie, aby je zamieścić w katalogu" + +msgid "catalog.noTitles" +msgstr "Nie opublikowano jeszcze żadnego tytułu." + +msgid "catalog.noTitlesNew" +msgstr "Brak dostępnych nowych wydań w tym momencie." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Nie znaleziono pasującego tytułu dla Twojego wyszukiwania \"{$searchQuery}\"." + +msgid "catalog.feature" +msgstr "Cecha" + +msgid "catalog.featured" +msgstr "Polecane" + +msgid "catalog.featuredBooks" +msgstr "Polecane książki" + +msgid "catalog.foundTitleSearch" +msgstr "" +"Znaleziono jeden pasujący tytuł dla Twojego wyszukiwania \"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"{$number} tytuły/ tytułów zostało znalezionych dla Twojego wyszukiwania " +"\"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Wszystkie książki" + +msgid "catalog.newReleases" +msgstr "Nowe wydania" + +msgid "catalog.dateAdded" +msgstr "Dodano" + +msgid "catalog.publicationInfo" +msgstr "Informacje o publikacji" + +msgid "catalog.published" +msgstr "Opublikowane" + +msgid "catalog.forthcoming" +msgstr "Zapowiedzi" + +msgid "catalog.categories" +msgstr "Kategorie" + +msgid "catalog.parentCategory" +msgstr "Główna kategoria" + +msgid "catalog.category.subcategories" +msgstr "Podkategorie" + +msgid "catalog.aboutTheAuthor" +msgstr "O {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Zwróć uwagę: aby dokonać zakupu, wymagane jest zalogowanie. Po wybraniu " +"towaru zostaniesz automatycznie przekierowany na stronę logowania. Każdy " +"przedmiot oznaczany ikoną \"otwarty dostęp\" możesz pobrać za darmo bez " +"logowania." + +msgid "catalog.sortBy" +msgstr "Zamówienie monografii" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Wybierz jak zamówić książki w tej serii." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Wybierz jak zamówić książki w tej kategorii." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Wybierz jak zamówić książki w tym katalogu." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Pozycja w serii (od najniższej)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Pozycja w serii (od najwyższej)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} widok pliku {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Wróć, aby wyświetlić szczegóły o {$monographTitle}" + +msgid "submission.search" +msgstr "Wyszukiwanie książek" + +msgid "common.publication" +msgstr "Monografia" + +msgid "common.publications" +msgstr "Monografie" + +msgid "common.prefix" +msgstr "Tytuł" + +msgid "common.preview" +msgstr "Podgląd" + +msgid "common.feature" +msgstr "Cecha" + +msgid "common.searchCatalog" +msgstr "Katalog wyszukiwania" + +msgid "common.moreInfo" +msgstr "Więcej informacji" + +msgid "common.listbuilder.completeForm" +msgstr "Wypełnij formularz w całości." + +msgid "common.listbuilder.selectValidOption" +msgstr "Wybierz aktualną możliwość z listy." + +msgid "common.listbuilder.itemExists" +msgstr "Nie możesz dodać dwa razy tego samego przedmiotu." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Nagłówek strony głównej" + +msgid "navigation.catalog" +msgstr "Katalog" + +msgid "navigation.competingInterestPolicy" +msgstr "Polityka uczciwej konkurencji" + +msgid "navigation.catalog.allMonographs" +msgstr "Wszystkie monografie" + +msgid "navigation.catalog.manage" +msgstr "Zarządzaj" + +msgid "navigation.catalog.administration.short" +msgstr "Administracja" + +msgid "navigation.catalog.administration" +msgstr "Zarządzanie katalogiem" + +msgid "navigation.catalog.administration.categories" +msgstr "Kategorie" + +msgid "navigation.catalog.administration.series" +msgstr "Serie" + +msgid "navigation.infoForAuthors" +msgstr "Dla autorów" + +msgid "navigation.infoForLibrarians" +msgstr "Dla bibliotekarzy" + +msgid "navigation.infoForAuthors.long" +msgstr "Informacje dla autorów" + +msgid "navigation.infoForLibrarians.long" +msgstr "Informacje dla bibliotekarzy" + +msgid "navigation.newReleases" +msgstr "Nowe wydania" + +msgid "navigation.published" +msgstr "Opublikowane" + +msgid "navigation.wizard" +msgstr "Kreator" + +msgid "navigation.linksAndMedia" +msgstr "Linki i media społecznościowe" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Link do Twojego katalogu." + +msgid "navigation.skip.spotlights" +msgstr "Przejdź do wyróżnionych" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Serie" + +msgid "navigation.navigationMenus.series.description" +msgstr "Linki do serii." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Kategoria" + +msgid "navigation.navigationMenus.category.description" +msgstr "Link do kategorii." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Nowe wydania" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Link do nowych wydań." + +msgid "context.contexts" +msgstr "Zlecenia" + +msgid "context.context" +msgstr "Zlecenie" + +msgid "context.current" +msgstr "Bieżące zlecenie:" + +msgid "context.select" +msgstr "Przejdź do innego zlecenia:" + +msgid "user.authorization.representationNotFound" +msgstr "Nie odnaleziono wymaganego formatu publikacji." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Dołącz użytkowników, którzy nie pełnią żadnej roli w tym zleceniu." + +msgid "user.noRoles.submitMonograph" +msgstr "Zgłoś propozycję" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "Zgłoś monografię: rejestracja autora jest obecnie nieaktywna." + +msgid "user.noRoles.regReviewer" +msgstr "Zarejestruj się jako recenzent" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Zarejestruj się jako recenzent: rejestracja recenzenta jest obecnie " +"nieaktywna." + +msgid "user.reviewerPrompt" +msgstr "Czy chciałbyś/ chciałabyś zrecenzować zgłoszenie dla tego wydawnictwa?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Tak, zgłoś {$userGroup} swoją rolę." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Tak, chciałbym, aby się ze mną skontaktowano w sprawie recenzji tego " +"zgłoszenia." + +msgid "user.register.contextsPrompt" +msgstr "Do ilu zleceń na tej stronie chciałbyś być zarejestrowany?" + +msgid "user.register.otherContextRoles" +msgstr "Poproś o następującą rolę." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Jeśli poprosiłeś o rolę recenzenta, proszę wprowadź swój obszar " +"zainteresowań." + +msgid "user.role.manager" +msgstr "Menadżer wydania" + +msgid "user.role.pressEditor" +msgstr "Redaktor wydania" + +msgid "user.role.subEditor" +msgstr "Redaktor serii" + +msgid "user.role.copyeditor" +msgstr "Korektor" + +msgid "user.role.proofreader" +msgstr "Redaktor merytoryczny" + +msgid "user.role.productionEditor" +msgstr "Redaktor prowadzący" + +msgid "user.role.managers" +msgstr "Menadżerowie wydania" + +msgid "user.role.subEditors" +msgstr "Redaktorzy serii" + +msgid "user.role.editors" +msgstr "Redaktorzy" + +msgid "user.role.copyeditors" +msgstr "Korektorzy" + +msgid "user.role.proofreaders" +msgstr "Redaktorzy merytoryczni" + +msgid "user.role.productionEditors" +msgstr "Redaktorzy prowadzący" + +msgid "user.register.selectContext" +msgstr "Wybierz zlecenie, do którego chcesz się zarejestrować:" + +msgid "user.register.noContexts" +msgstr "Nie ma żadnych zleceń, do których mógłbyś się zarejestrować." + +msgid "user.register.privacyStatement" +msgstr "Oświadczenie o ochronie prywatności" + +msgid "user.register.registrationDisabled" +msgstr "Użytkownicy obecnie nie mogą się zarejestrować do tego zlecenia." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Twoje hasło zawiera za mało znaków." + +msgid "user.register.readerDescription" +msgstr "Powiadomienie emailem o publikacji monografii." + +msgid "user.register.authorDescription" +msgstr "Możliwość zgłoszenia obiektów do zlecenia." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Chętny do przeprowadzenia recenzji naukowej zgłoszenia do druku." + +msgid "user.register.reviewerDescription" +msgstr "" +"Chętny do przeprowadzenia recenzji naukowej zgłoszenia na stronę internetową." + +msgid "user.register.reviewerInterests" +msgstr "" +"Określ zainteresowania naukowe (obszary merytoryczne i metody badawcze):" + +msgid "user.register.form.userGroupRequired" +msgstr "Wybierz przynajmniej jedną rolę" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Wyrażam zgodę na przechowywanie i przetwarzanie moich danych na potrzeby " +"tego wydawnictwa ." + +msgid "site.noPresses" +msgstr "Brak dostępnych wydawnictw." + +msgid "site.pressView" +msgstr "Wyświetl stronę wydawnictwa" + +msgid "about.pressContact" +msgstr "Dane kontaktowe wydawnictwa" + +msgid "about.aboutContext" +msgstr "O wydawnictwie" + +msgid "about.editorialTeam" +msgstr "Zespół redakcyjny" + +msgid "about.editorialPolicies" +msgstr "Polityka wydawnicza" + +msgid "about.focusAndScope" +msgstr "Cel i zakres" + +msgid "about.seriesPolicies" +msgstr "Zasady zarządzania seriami i kategoriami" + +msgid "about.submissions" +msgstr "Zgłoszenia" + +msgid "about.onlineSubmissions" +msgstr "Zgłoszenia online" + +msgid "about.onlineSubmissions.login" +msgstr "Zaloguj się" + +msgid "about.onlineSubmissions.register" +msgstr "Zarejestruj się" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} lub {$register}, aby dokonać zgłoszenia." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} lub {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Nowe zgłoszenie" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "Wyświetl zaległe zgłoszenia" + +msgid "about.authorGuidelines" +msgstr "Wskazówki dla autora" + +msgid "about.submissionPreparationChecklist" +msgstr "Lista kontrolna stanu przygotowania zgłoszenia" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Jako element procesu zgłoszenia autorzy są proszeni o skompletowanie " +"zgłoszenia poprzez załączenie następujących pozycji. Zgłoszenia mogą być " +"zwrócona do autorów, jeśli nie zastosują podanych wskazówek." + +msgid "about.copyrightNotice" +msgstr "Informacja o prawach autorskich" + +msgid "about.privacyStatement" +msgstr "Oświadczenie o ochronie prywatności" + +msgid "about.reviewPolicy" +msgstr "Proces recenzji naukowej" + +msgid "about.publicationFrequency" +msgstr "Częstotliwość publikacji" + +msgid "about.openAccessPolicy" +msgstr "Polityka otwartego dostępu" + +msgid "about.pressSponsorship" +msgstr "Patronat wydawniczy" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Więcej informacji o systemie wydawniczym, platformie i Workflow OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Proces redakcyjny i wydawniczy OMP" + +msgid "about.aboutSoftware" +msgstr "O Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"To wydawnictwo korzysta z Open Monograph Press {$ompVersion}, które jest " +"otwartym oprogramowaniem do zarządzania wydawnictwem i publikowania " +"rozwijane, wspierane i darmowo dystrybuowane przez dowiedz się więcej o programie z licencją wolnego i darmowego " +"oprogramowania GNU. Skontaktuj się bezpośrednio z " +"wydawnictwem w razie pytań o wydawnictwo lub zgłoszony do niego tekst." + +msgid "about.aboutOMPSite" +msgstr "" +"Ta strona korzysta z Open Monograph Press {$ompVersion}, które jest otwartym " +"oprogramowaniem do zarządzania wydawnictwem i publikowania rozwijanym, " +"wspieranym i darmowo dystrybuowanym przez Public Knowledge Project na licencji wolnego i darmowego " +"oprogramowania GNU." + +msgid "help.searchReturnResults" +msgstr "Wróć do wyników wyszukiwania" + +msgid "help.goToEditPage" +msgstr "Otwórz nową stronę, aby zmienić tę informację" + +msgid "installer.appInstallation" +msgstr "Instalowanie OMP" + +msgid "installer.ompUpgrade" +msgstr "Aktualizacja OMP" + +msgid "installer.installApplication" +msgstr "Zainstaluj Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Jeśli aktualizujesz aktualną wersję OMP, kliknij " +"tutaj, aby przejść dalej." + +msgid "installer.installationInstructions" +msgstr "" +"

        Dziękujemy za pobranie Open Monograph Press {$version} " +"tworzonego przez Public Knowledge Project. Przed rozpoczęciem procedury, " +"zapoznaj się z READMEplikiem " +"załączonym w tym oprogramowaniu. Więcej informacji o Public Knowledge " +"Project i jego projektach oprogramowania znajdziesz na stronie PKP web site. W celu " +"zgłoszenia błędów lub uzyskania technicznych informacji na temat Open " +"Monograph Press, zobacz support forum lub odwiedź Public Knowledge Project online bug reporting " +"system. Chociaż forum wsparcia jest preferowaną metodą kontaktu, możesz " +"również skontaktować się z zespołem poprzez email: pkp.contact@gmail.com.

        " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Kroki preinstalacyjne" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

        1. Następujące pliki i foldery (oraz ich zawartość) muszą być możliwe do " +"zapisania:

        \n" +"
          \n" +"\t
        • config.inc.php jest możliwy do zapisania (opcjonalnie): " +"{$writable_config}
        • \n" +"\t
        • public/ jest możliwy do zapisania: {$writable_public}
        • \n" +"\t
        • cache/ jest możliwy do zapisania: {$writable_cache}
        • \n" +"\t
        • cache/t_cache/ jest możliwy do zapisania: " +"{$writable_templates_cache}
        • \n" +"\t
        • cache/t_compile/ jest możliwy do zapisania: " +"{$writable_templates_compile}
        • \n" +"\t
        • cache/_db jest możliwy do zapisania: {$writable_db_cache}\n" +"
        \n" +"\n" +"

        2. Aby zachować załadowane pliki stwórz folder możliwy do zapisania " +"(popatrz na \"ustawienia plików\" poniżej).

        " + +msgid "installer.upgradeInstructions" +msgstr "" +"

        OMP Version {$version}

        \n" +"\n" +"

        Dziękujemy za pobranie Open Monograph Press tworzonego " +"przez Public Knowledge Project. Przed rozpoczęciem procedury, zapoznaj się z " +"plikami README.md oraz UPGRADE załączonymi do tego " +"oprogramowania. Więcej informacji o Public Knowledge Project i jego " +"projektach znajdziesz na stronie PKP web site. W celu zgłoszenia błędów lub uzyskania " +"technicznych informacji na temat Open Monograph Press, zobacz forum pomocy lub odwiedź " +"Public Knowledge Project system zgłaszania błędów. Chociaż forum wsparcia jest " +"preferowaną metodą kontaktu, możesz również skontaktować się z zespołem " +"poprzez email pkp.contact@gmail." +"com.

        \n" +"

        Zdecydowanie zalecamy stworzenie kopii zapasowej bazy " +"danych, katalogu plików i katalogu instalacji OMP przed kontynuowaniem " +"procedury.

        " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Aby uzyskać pełną obsługę Unicode, PHP musi być skompilowane z obsługą " +"biblioteki mbstring (domyślnie włączone w większości ostatnich instalacji PHP). " +"Możesz mieć problemy z używaniem rozszerzonych zestawów znaków, jeśli Twój " +"serwer nie spełnia tych wymagań.\n" +"

        \n" +"Twój serwer jest obecnie obsługiwany przez mbstring: " +"{$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Serwer obecnie zezwala na załadowanie plików: {$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Twój serwer obecnie zezwala na maksymalny rozmiar plików: " +"{$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Główny język stosowany w tym systemie. Proszę, zapoznaj się z dokumentacją " +"OMP, jeśli jesteś zainteresowany obsługą w językach spoza listy." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Wybierz dodatkowy język do obsługi systemu. Te języki będą dostępne do " +"użytkowania dla wydawnictw obsługiwanych przez stronie. Dodatkowe języki " +"mogą być zainstalowane w dowolnym momencie przez interfejs administracji " +"strony. Ustawienia regionalne oznaczone * mogą być niekompletne." + +msgid "installer.filesDirInstructions" +msgstr "" +"Wprowadź pełną ścieżkę dostępu do istniejącego foldery, gdzie są " +"przechowywane ściągnięte pliki. Ten folder nie powinien mieć bezpośredniego " +"dostępu do sieci. Przed instalacją upewnij się, że folder istnieje i " +"jest możliwy do zapisania. Nazwa ścieżki dostępu Windowsa powinna " +"być poprzedzona ukośnikami, np. \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP wymaga dostępu do SQL bazy danych aby zachować swoje dane. Zobacz " +"wymagania systemu powyżej, aby otrzymać listę obsługiwanych baz danych. W " +"polach poniżej podaj ustawienia, które będą użyte do połączenia się z bazą " +"danych." + +msgid "installer.upgradeApplication" +msgstr "Aktualizuj Open Mongraph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

        WAŻNE!

        \n" +"

        Program instalacyjny nie mógł automatycznie zastąpić pliku konfiguracji. " +"Zanim spróbujesz korzystać z systemu, proszę otwórz config.inc.php " +"w odpowiednim edytorze tekstu i zastąp jego zawartość tekstem z poniższego " +"pola.

        " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

        Pomyślnie zakończone instalację OMP.

        \n" +"

        Aby zacząć korzystać z systemu zaloguj się " +"loginem i hasłem wprowadzonymi na poprzedniej stronie.

        \n" +"

        Jeśli chciałbyś otrzymywać wiadomości i ostatnie doniesienia " +"zarejestruj się na https://pkp.sfu.ca/developer-newsletter. Jeśli masz pytania lub komentarze, odwiedź forum wsparcia.

        " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

        Aktualizacja wersji {$version} OMP została pomyślnie zakończona.

        \n" +"

        Nie zapomnij ustawić zainstalowanych ustawień w konfiguracji Twojej kopii " +"zapasowej pliku config.inc.php z powrotem doOn.

        \n" +"

        Jeśli się jeszcze nie zarejestrowałeś i chciałbyś otrzymywać wiadomości i " +"najnowsze doniesienia, zarejestruj się na lists." +"publicknowledgeproject.org/lists/. Jeśli masz pytania lub " +"komentarze odwiedź forum wsparcia.

        " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Końcowy termin rundy {$round} recenzji zgłoszenia {$submissionId} przez " +"{$reviewerName} został ustalony na {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} odmówił udziału w rundzie {$round} recenzji dla zgłoszenia " +"{$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} weźmie udział w rundzie {$round} recenzji dla zgłoszenia " +"{$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} oznaczył rundę {$round} recenzji zgłoszenia {$submissionId} " +"jako nierozstrzygniętą." + +msgid "log.editor.decision" +msgstr "" +"Decyzja redaktorska ({$decision}) dla monografii {$submissionId} została " +"zanotowana przez {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"Rekomendacja redaktorska ({$decision}) dla monografii {$submissionId} " +"została odnotowana przez {$editorName}." + +msgid "log.editor.archived" +msgstr "Zgłoszenie {$submissionId} zostało zarchiwizowane." + +msgid "log.editor.restored" +msgstr "Zgłoszenie {$submissionId} zostało przywrócone do kolejki." + +msgid "log.editor.editorAssigned" +msgstr "" +"{$editorName} został przypisane do zgłoszenia {$submissionId} jako redaktor." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} przypisał {$proofreaderName} do korekty zgłoszenia " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} zgłosił {$submissionId} do rozplanowania." + +msgid "log.imported" +msgstr "{$userName} wprowadził monografię {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Dodano kod identyfikacyjny." + +msgid "notification.editedIdentificationCode" +msgstr "Zmieniono kod identyfikacyjny." + +msgid "notification.removedIdentificationCode" +msgstr "Usunięto kod identyfikacyjny." + +msgid "notification.addedPublicationDate" +msgstr "Dodano datę publikacji." + +msgid "notification.editedPublicationDate" +msgstr "Zmieniono datę publikacji." + +msgid "notification.removedPublicationDate" +msgstr "Usunięto datę publikacji." + +msgid "notification.addedPublicationFormat" +msgstr "Dodano format publikacji." + +msgid "notification.editedPublicationFormat" +msgstr "Zmieniono format publikacji." + +msgid "notification.removedPublicationFormat" +msgstr "Usunięto format publikacji." + +msgid "notification.addedSalesRights" +msgstr "Dodano prawa sprzedaży." + +msgid "notification.editedSalesRights" +msgstr "Zmieniono prawa sprzedaży." + +msgid "notification.removedSalesRights" +msgstr "Usunięto prawa sprzedaży." + +msgid "notification.addedRepresentative" +msgstr "Dodano przedstawiciela." + +msgid "notification.editedRepresentative" +msgstr "Zmieniono przedstawiciela." + +msgid "notification.removedRepresentative" +msgstr "Usunięto przedstawiciela." + +msgid "notification.addedMarket" +msgstr "Dodano rynek." + +msgid "notification.editedMarket" +msgstr "Zmieniono rynek." + +msgid "notification.removedMarket" +msgstr "Usunięto rynek." + +msgid "notification.addedSpotlight" +msgstr "Dodano wyróżnione." + +msgid "notification.editedSpotlight" +msgstr "Zmieniono wyróżnione." + +msgid "notification.removedSpotlight" +msgstr "Usunięto wyróżnione." + +msgid "notification.savedCatalogMetadata" +msgstr "Zapisano metadane katalogu." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Zapisano metadane formatu publikacji." + +msgid "notification.proofsApproved" +msgstr "Zatwierdzono korektę." + +msgid "notification.removedSubmission" +msgstr "Anulowano zgłoszenie." + +msgid "notification.type.submissionSubmitted" +msgstr "Została zgłoszona nowa monografia \"{$title},\"." + +msgid "notification.type.editing" +msgstr "Działania redakcyjne" + +msgid "notification.type.reviewing" +msgstr "Działania recenzenckie" + +msgid "notification.type.site" +msgstr "Działania na stronie" + +msgid "notification.type.submissions" +msgstr "Działania zgłoszeniowe" + +msgid "notification.type.userComment" +msgstr "Czytelnik skomentował \"{$title}\"." + +msgid "notification.type.public" +msgstr "Ogłoszenia publiczne" + +msgid "notification.type.editorAssignmentTask" +msgstr "Zgłoszono nową monografię, do której należy przypisać redaktora." + +msgid "notification.type.copyeditorRequest" +msgstr "Zostałeś poproszony o sprawdzenie redakcji \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "Zostałeś poproszony o recenzję składu \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "Zostałeś poproszony o stworzenie indeksu dla \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Rozpoczęto proces recenzji wewnętrznych." + +msgid "notification.type.approveSubmission" +msgstr "" +"Zgłoszenie obecnie oczekuje zatwierdzenia w narzędziu pozycji katalogowej " +"zanim pojawi się w publicznym katalogu." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Oczekuje na zatwierdzenie." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Monografia nie zostanie umieszczona w katalogu do momentu publikacji. Aby " +"dodać książkę do katalogu, kliknij zakładkę publikacji." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Nie skonfigurowano metody płatności." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Wymagana jest konfiguracja płatności zanim zdefiniujesz ustawienia e-" +"commerce." + +msgid "notification.type.visitCatalogTitle" +msgstr "Zarządzanie katalogiem" + +#, fuzzy +msgid "notification.type.visitCatalog" +msgstr "" +"Monografia została zatwierdzona. Proszę odwiedź katalog, używając powyższego " +"linku, aby zarządzać szczegółami katalogu." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Odmówiono dostępu. Nie jesteś adekwatnym recenzentem do tej monografii." + +msgid "user.authorization.monographAuthor" +msgstr "Odmówiono dostępu. Nie jesteś autorem tej monografii." + +msgid "user.authorization.monographReviewer" +msgstr "Odmówiono dostępu. Nie jesteś przypisanym recenzentem tej monografii." + +msgid "user.authorization.monographFile" +msgstr "Odmówiono dostępu do określonego pliku monografii." + +msgid "user.authorization.invalidMonograph" +msgstr "Nieważna lub niewymagana monografia!" + +msgid "user.authorization.noContext" +msgstr "Nie znaleziono wydawnictwa, które odpowiadałoby Twojemu zapytaniu." + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Próbujesz uzyskać dostęp do monografii, która nie jest częścią twojej serii." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Odmowa dostępu! Nie przypisano Cię do tego etapu prac." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Odmowa dostępu! Grupa użytkowników, do której obecnie należysz, nie została " +"przypisana do tego etapu pracy. Sprawdź swoje ustawienia zlecenia." + +msgid "payment.directSales" +msgstr "Ściągnij ze strony wydawnictwa" + +msgid "payment.directSales.price" +msgstr "Cena" + +msgid "payment.directSales.availability" +msgstr "Dostępność" + +msgid "payment.directSales.catalog" +msgstr "Katalog" + +msgid "payment.directSales.approved" +msgstr "Zatwierdzono" + +msgid "payment.directSales.priceCurrency" +msgstr "Cena ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Ceny nie powinny zawierać symboli walut." + +msgid "payment.directSales.directSales" +msgstr "Sprzedaż bezpośrednia" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Niedostępny" + +msgid "payment.directSales.notSet" +msgstr "Nie ustawiono" + +msgid "payment.directSales.openAccess" +msgstr "Otwarty dostęp" + +msgid "payment.directSales.price.description" +msgstr "" +"Format pliku może być dostępny do pobrania ze strony wydawnictwa poprzez " +"otwarty dostęp bez kosztów dla czytelników i w trakcie sprzedaży " +"bezpośredniej (używając płatności online jak ustalono w dziale dystrybucji). " +"Dla tego pliku oznacz podstawę dostępu." + +msgid "payment.directSales.validPriceRequired" +msgstr "Aktualna cena jest wymagana." + +msgid "payment.directSales.purchase" +msgstr "Zakup {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Pobierz {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Zakup monografię lub pobierz rozdział" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Ta transakcja została przeprowadzona, aby nabyć pojedynczą monografię lub " +"jej rozdział poprzez bezpośrednie pobranie." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Ponowne załadowanie XML pomoże plikowi mapowanemu {$filename} w poszukiwaniu " +"{$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Książka" + +msgid "submission.pdf.download" +msgstr "Pobierz ten plik PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Zarejestruj się dla kolejnego zlecenia" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Ukryj inne zlecenia" + +msgid "submission.round" +msgstr "Runda  {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Nieważne zgłoszenie publikacji zostało określone." + +msgid "catalog.coverImageTitle" +msgstr "Okładka" + +msgid "grid.catalogEntry.chapters" +msgstr "Rozdziały" + +msgid "search.results.orderBy.article" +msgstr "Tytuł artykułu" + +msgid "search.results.orderBy.author" +msgstr "Autor" + +msgid "search.results.orderBy.date" +msgstr "Data publikacji" + +msgid "search.results.orderBy.monograph" +msgstr "Tytuł monografii" + +msgid "search.results.orderBy.press" +msgstr "Tytuł wydawnictwa" + +msgid "search.results.orderBy.popularityAll" +msgstr "Popularność (w ogóle)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Popularność (ostatni miesiąc)" + +msgid "search.results.orderBy.relevance" +msgstr "Trafność" + +msgid "search.results.orderDir.asc" +msgstr "Rosnąco" + +msgid "search.results.orderDir.desc" +msgstr "Malejąco" + +msgid "section.section" +msgstr "Serie" diff --git a/locale/pl/manager.po b/locale/pl/manager.po new file mode 100644 index 00000000000..bd9601c15ab --- /dev/null +++ b/locale/pl/manager.po @@ -0,0 +1,1677 @@ +# Dorota Siwecka , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-09 10:00+0000\n" +"Last-Translator: Dorota Siwecka \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"To zastąpi jakiekolwiek szczegółowe ustawienia wydawnicze dla tych ustawień " +"regionalnych" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Przykro nam, brak dostępnych dodatkowych opcji językowych. Skontaktuj się z " +"administratorem strony, jeśli chcesz zastosować dodatkowy język dla tego " +"wydawnictwa." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "To będzie domyślny język dla strony wydawnictwa." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Proszę upewnij się, że przynajmniej jedno pole jest zaznaczone dla każdego " +"zlecenia Redaktora Serii." + +msgid "manager.series.form.reviewFormId" +msgstr "Proszę upewnij się, że wybrałeś prawidłową formę recenzji." + +msgid "manager.series.submissionIndexing" +msgstr "Nie będzie wzięte pod uwagę w indeksowaniu wydania" + +msgid "manager.series.editorRestriction" +msgstr "Pozycje mogą być zgłoszone tylko przez Redaktorów i Redaktorów Serii." + +msgid "manager.series.confirmDelete" +msgstr "Jesteś pewien, że chcesz ostatecznie usunąć tę serię?" + +msgid "manager.series.indexed" +msgstr "Zaindeksowano" + +msgid "manager.series.open" +msgstr "Otwarte zgłoszenia" + +msgid "manager.series.readingTools" +msgstr "Narzędzia czytelnicze" + +msgid "manager.series.submissionReview" +msgstr "Nie będzie poddane recenzji naukowej" + +msgid "manager.series.submissionsToThisSection" +msgstr "Złożono zgłoszenia do tej serii" + +msgid "manager.series.abstractsNotRequired" +msgstr "Nie wymaga abstraktów" + +msgid "manager.series.disableComments" +msgstr "Wyłączone komentarze czytelników dla tej serii." + +msgid "manager.series.book" +msgstr "Serie książek" + +msgid "manager.series.create" +msgstr "Stwórz serie" + +msgid "manager.series.policy" +msgstr "Opis serii" + +msgid "manager.series.assigned" +msgstr "Redaktorzy dla tej serii" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Dodaj Redaktora Serii do tej serii z dostępnych Redaktorów Serii. Po dodaniu " +"zaznacz, czy Redaktor Serii ma nadzorować recenzję (recenzję naukową) i/lub " +"edycję (redakcję, skład i korektę) zgłoszenia do tej serii. Redaktorzy Serii " +"są tworzeni poprzez kliknięcieRedaktorzy " +"Seriiw Role w Zarządzeniu Wydawnictwem." + +msgid "manager.series.hideAbout" +msgstr "Pomiń tę serię z O wydaniu." + +msgid "manager.series.unassigned" +msgstr "Dostępni Redaktorzy Serii" + +msgid "manager.series.form.abbrevRequired" +msgstr "Skrócony tytuł jest wymagany dla tej serii." + +msgid "manager.series.form.titleRequired" +msgstr "Tytuł jest wymagany dla tej serii." + +msgid "manager.series.noneCreated" +msgstr "Seria nie została utworzona." + +msgid "manager.series.existingUsers" +msgstr "Istniejący użytkownicy" + +msgid "manager.series.seriesTitle" +msgstr "Tytuł serii" + +msgid "manager.series.restricted" +msgstr "Nie pozwalaj autorom na bezpośrednie zgłoszenia do tej serii." + +msgid "manager.payment.generalOptions" +msgstr "Opcje Ogólne" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Płatności zostaną uruchomione dla tego wydawnictwa. Zauważ, że użytkownicy " +"muszą się zalogować, aby dokonać płatności." + +msgid "manager.payment.success" +msgstr "Zaktualizowano ustawienia płatności." + +msgid "manager.settings" +msgstr "Ustawienia" + +msgid "manager.settings.pressSettings" +msgstr "Ustawienia wydawnicze" + +msgid "manager.settings.press" +msgstr "Wydawnictwo" + +msgid "manager.settings.publisher.identity" +msgstr "Tożsamość wydawcy" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Te pole są wymagane, aby opublikować aktualne metadane ONIX." + +msgid "manager.settings.publisher" +msgstr "Nazwa Wydawcy" + +msgid "manager.settings.location" +msgstr "Położenie geograficzne" + +msgid "manager.settings.publisherCode" +msgstr "Kod wydawcy" + +msgid "manager.settings.publisherCodeType" +msgstr "Typ kodu wydawcy" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "To nie jest aktualny typ kodu wydawcy." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Wszystkie szczegóły ustawień do procesu dystrybucji (powiadomienia, " +"indeksowanie, archiwizowanie, płatności, narzędzia czytelnicze)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Pobrane monografie" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Widok abstraktu monografii" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Abstrakt monografii i pobrane" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Widok głównej strony serii" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Widok głównej strony wydania" + +msgid "manager.tools" +msgstr "Narzędzia" + +msgid "manager.tools.importExport" +msgstr "" +"Wszystkie narzędzia szczegółowe do importowania i eksportowania danych " +"(wydawnictw, monografii, użytkowników)" + +msgid "manager.tools.statistics" +msgstr "" +"Narzędzia do generowania raportu powiązanych ze statystykami użytkowania " +"(widok katalogu indeksów, widok abstraktu monografii, pobrane monografie)" + +msgid "manager.users.availableRoles" +msgstr "Dostępne role" + +msgid "manager.users.currentRoles" +msgstr "Bieżące role" + +msgid "manager.users.selectRole" +msgstr "Wybierz rolę" + +msgid "manager.people.allEnrolledUsers" +msgstr "Zapisani użytkownicy do tego wydania" + +msgid "manager.people.allPresses" +msgstr "Wszystkie wydania" + +msgid "manager.people.allSiteUsers" +msgstr "Zapisz użytkownika z tej strony do tego wydania" + +msgid "manager.people.allUsers" +msgstr "Wszyscy zapisani użytkownicy" + +msgid "manager.people.confirmRemove" +msgstr "" +"Usunąć użytkownika z tego wydania? Poskutkuje to wyrejestrowaniem " +"użytkownika z wszystkich ról dla tego wydania." + +msgid "manager.people.enrollExistingUser" +msgstr "Zapisz istniejącego użytkownika" + +msgid "manager.people.enrollSyncPress" +msgstr "Z wydania" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Wybierz użytkownika, aby połączyć z kontem innego użytkownika (np. kiedy " +"ktoś ma dwa konta użytkownika). Konto wybrane jako pierwsze zostanie " +"usunięte, a jego zgłoszenia, przypisane zadanie itp. zostaną przekazane na " +"drugie konto." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Wybierz użytkownika, któremu chcesz przypisać poprzednie autorstwo " +"użytkownika, zlecenia redakcyjne itp." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Synchronizacja zapisywania zapisze wszystkich użytkowników w przypisanych do " +"określonych ról w określonym wydaniu do tej samej roli w tym wydaniu. Ta " +"funkcja umożliwia synchronizowanie wspólnego zestawu użytkowników (np. " +"recenzentów) do wydań." + +msgid "manager.people.confirmDisable" +msgstr "" +"Dezaktywować użytkownika? To zapobiegnie logowaniu się tego użytkownika do " +"systemu?\n" +"\n" +"Opcjonalnie możesz podać użytkownikowi powód, dla którego dezaktywowano jego " +"konto." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Przykro nam, nie masz prawa administracyjnych do tego użytkownika. Może t " +"być spowodowane:\n" +"
          \n" +"
        • Użytkownik jest administratorem strony
        • \n" +"
        • Użytkownik jest aktywny w wydaniach, którymi nie zarządzasz
        • \n" +"
        \n" +"To zadanie musi być wykonane przez administratora strony.\n" +"\t" + +msgid "manager.system" +msgstr "Ustawienia systemu" + +msgid "manager.system.archiving" +msgstr "Archiwizowanie" + +msgid "manager.system.reviewForms" +msgstr "Formy recenzji" + +msgid "manager.system.readingTools" +msgstr "Narzędzia czytelnicze" + +msgid "manager.system.payments" +msgstr "Płatności" + +msgid "user.authorization.pluginLevel" +msgstr "Nie masz wystarczających upoważnień, aby zarządzać tą wtyczką." + +msgid "manager.pressManagement" +msgstr "Zarządzanie wydaniem" + +msgid "manager.setup" +msgstr "Konfiguracja" + +msgid "manager.setup.aboutItemContent" +msgstr "Zawartość" + +msgid "manager.setup.addAboutItem" +msgstr "Dodaj O pozycji" + +msgid "manager.setup.addChecklistItem" +msgstr "Dodaj listę kontrolną pozycji" + +msgid "manager.setup.addItem" +msgstr "Dodaj pozycję" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Dodaj pozycję do wyświetleń w \"O wydaniu\"" + +msgid "manager.setup.addNavItem" +msgstr "Dodaj pozycję" + +msgid "manager.setup.addSponsor" +msgstr "Dodaj sponsorów" + +msgid "manager.setup.announcements" +msgstr "Ogłoszenia" + +msgid "manager.setup.announcements.success" +msgstr "Ustawienia ogłoszeń zostały zaktualizowane." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Ogłoszenia będą publikowane, aby informować czytelników o wydarzeniach i " +"nowościach wydawniczych. Opublikowane ogłoszenia pojawią się na stronie " +"ogłoszeń." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Dodatkowe informacje" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Wprowadź dodatkowe informacje, które powinny być wyświetlane dla czytelników " +"w ogłoszeniach." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Do wyświetlenia w O wydaniu) " + +msgid "manager.setup.contextAbout" +msgstr "O wydaniu" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Zawiera wszelkie informacje o Twoim wydaniu, które mogą zainteresować " +"czytelników, autorów i recenzentów. To uwzględnia Twoją politykę otwartego " +"dostępu, cel i zakres Twojego wydania, sponsora i historię wydawnictwa." + +msgid "manager.setup.contextSummary" +msgstr "Streszczenie wydania" + +msgid "manager.setup.copyediting" +msgstr "Korektorzy" + +msgid "manager.setup.copyeditInstructions" +msgstr "Instrukcje korektorskie" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Instrukcje korektorskie będą dostępne dla korektorów, autorów i redaktorów " +"serii na etapie Redakcja Zgłoszenia. Poniżej znajduje się domyślny zestaw " +"instrukcji w HTML, które mogą być modyfikowane lub zastąpione przez " +"menedżerów wydania w każdym momencie (w HTML lub w tekście odkrytym)." + +msgid "manager.setup.copyrightNotice" +msgstr "Informacja o prawach autorskich" + +msgid "manager.setup.coverage" +msgstr "Pokrycie" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Maksymalna wysokość okładki" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Maksymalna szerokość okładki" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Obrazy zostaną zmniejszone, jeśli przekroczą podane wymiary, ale nigdy nie " +"zostaną rozszerzone lub rozciągnięte, aby spełniały te wytyczne." + +msgid "manager.setup.customizingTheLook" +msgstr "Krok 5. Dostosowywanie wyglądu i stylu" + +msgid "manager.setup.customTags" +msgstr "Tag niestandardowy" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Dostosuj tagi nagłówka HTML, aby były wstawione w nagłówki każdej strony " +"(np. tagi META)." + +msgid "manager.setup.details" +msgstr "Szczegóły" + +msgid "manager.setup.details.description" +msgstr "Nazwa wydawnictwa, kontaktów, sponsorów i narzędzi wyszukiwania." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Menedżer wydawnictwa zarejestruje wszystkie konta użytkowników. Redaktorzy " +"lub Redaktorzy Sekcji mogą zarejestrować konta użytkowników dla recenzentów." + +msgid "manager.setup.discipline" +msgstr "Dyscypliny i subdyscypliny akademickie" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Pożyteczne, kiedy wydanie przekroczy granice dyscypliny i/lub kiedy autor " +"zgłosi pozycję interdyscyplinarną." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(Np. Historia, edukacja, socjologia, psychologia, kulturoznawstwo, prawo)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Zawiera przykłady dyscyplin akademickich właściwych dla tego wydawnictwa" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Dodaj spis treści dla bieżącej monografii (jeśli jest dostępny)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Zawartość strony głównej" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Wyświetl polecane książki na stronie głównej" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Polecane książki" + +msgid "manager.setup.displayInSpotlight" +msgstr "Wyświetl książki w wyróżnieniach na stronie głównej" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Wyróżnione" + +msgid "manager.setup.displayNewReleases" +msgstr "Wyświetl nowe wydania na stronie głównej" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Nowe wydania" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Zezwalaj na przypisywanie identyfikatorów obiektów cyfrowych (DOI) do prac " +"opublikowanych przez to wydawnictwo." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Proszę wybierz typy zasobów, do których powinny zostać przypisane " +"identyfikatory DOI. Większość wydawnictw przypisuje DOI do monografii/" +"rozdziałów, ale możesz chcieć przypisać DOI do wszystkich opublikowanych " +"zasobów." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Wybierz domyślny wzór.
        %p.%m dla książek
        %p.%m.c%cdla " +"rozdziałów
        %p.%m.%f dla formatów publikacji
        %p.%m.%f.%s dla plików." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Format / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Decyzja Redaktora" + +msgid "manager.setup.emailBounceAddress" +msgstr "Adres zwrotny" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Każde adresat niedostarczonego emaila otrzyma zwrotną wiadomość o błędzie." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Aby wysłać niedostarczoną wiadomość na adres zwrotny, administrator strony " +"musi uruchomić allow_envelope_sender opcję w pliku " +"konfiguracyjnym. Konfiguracja serwera może być wymagana, jak wskazano w " +"dokumentacji OMP." + +msgid "manager.setup.emails" +msgstr "Identyfikator email" + +msgid "manager.setup.emailSignature" +msgstr "Podpis" + +#, fuzzy +msgid "manager.setup.emailSignature.description" +msgstr "" +"Przygotowane emaile wysyłane przez system w imieniu wydawnictwa będą " +"posiadać następujące sygnatury na końcu." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Włącz ogłoszenia" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Ogłoszenia będą publikowane, aby informować czytelników o wydarzeniach i " +"nowościach. Pojawią się w Ogłoszeniach." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Wyświetl na stronie głównej" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Ilość wyświetlanych ogłoszeń na stronie głównej. Zostaw puste, aby nie " +"wyświetlić żadnych." + +msgid "manager.setup.enablePressInstructions" +msgstr "Pozwól temu wydawnictwu na pojawiania się na tej stronie" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Stosowne identyfikatory będą stosowane to identyfikacji publikowanych " +"pozycji." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Stosowne identyfikatory będą stosowane do identyfikacji korekty szpaltowej " +"(np. HTML lub pliki PDF) dla publikowanych pozycji." + +msgid "manager.setup.enableUserRegistration" +msgstr "Odwiedzający mogą zgłosić konto użytkownika poprzez wydawnictwo." + +msgid "manager.setup.focusAndScope" +msgstr "Cel i zakres wydania" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Opisz autorów, czytelników i bibliotekarzy o przekroju monografii i innych " +"pozycji publikowanych przez wydawnictwo." + +msgid "manager.setup.focusScope" +msgstr "Cel i zakres" + +msgid "manager.setup.focusScopeDescription" +msgstr "
        PRZYKŁADOWE DANE HTML" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Dla autorów do indeksowania ich pracy" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP stosuje się doInicjatywy otwartych archiwówProtokół o zbieraniu metadanych, który " +"jest nowo powstałym standardem dla zapewnienia dobrze zaindeksowanego " +"dostępu do elektronicznych źródeł wyszukiwania na skalę globalną. Autorzy " +"będą stosować podobny szablon, aby dostarczyć metadane dla tego zgłoszenia. " +"Menedżer wydawnictwa powinien wybrać kategorię do zaindeksowania i " +"zaprezentować autorom wzory, które posłużą im za przykład w trakcie " +"indeksowania ich prac, oddzielające terminy średnikiem (np. termin 1; termin " +"2). Hasła będą prezentowane jako przykłady przez użycie \"np.\" lub \"na " +"przykład\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Podstawowy email kontaktowy jest wymagany." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Podstawowa nazwa kontaktowa jest wymagana." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Liczba recenzentów przypadających na zgłoszenie jest wymagana." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Dodatkowy email jest wymagany." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Dodatkowa nazwa jest wymagana." + +msgid "manager.setup.generalInformation" +msgstr "Ogólne informacje" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Krok 1. Przejście do szczegółów" + +msgid "manager.setup.guidelines" +msgstr "Wskazówki" + +msgid "manager.setup.preparingWorkflow" +msgstr "Krok 3. Przygotowanie cyklu pracy" + +msgid "manager.setup.identity" +msgstr "Tożsamość wydawnictwa" + +msgid "manager.setup.information" +msgstr "Informacje" + +msgid "manager.setup.information.description" +msgstr "" +"Krótkie opisy wydawnictwa dla bibliotekarzy oraz przyszłych autorów i " +"czytelników. Będą dostępne w pasku bocznym strony, kiedy dział informacji " +"zostanie dodany." + +msgid "manager.setup.information.forAuthors" +msgstr "Dla autorów" + +msgid "manager.setup.information.forLibrarians" +msgstr "Dla bibliotekarzy" + +msgid "manager.setup.information.forReaders" +msgstr "Dla czytelników" + +msgid "manager.setup.information.success" +msgstr "Zaktualizowane informacje dla tego wydawnictwa." + +msgid "manager.setup.institution" +msgstr "Instytucja" + +msgid "manager.setup.itemsPerPage" +msgstr "Pozycje na stronie" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Wprowadź limit pozycji (na przykład: zgłoszeń, użytkowników lub zadań " +"redakcyjnych) do ujęcia na liście przed prezentowaniem kolejnych pozycji na " +"innej stronie." + +msgid "manager.setup.keyInfo" +msgstr "Kluczowe informacje" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Dostarcz krótki opis Twojego wydawnictwa i określ redaktorów, dyrektorów " +"zarządzających i innych członków Twojego zespołu redakcyjnego." + +msgid "manager.setup.labelName" +msgstr "Nazwa marki" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Redaktorzy składu" + +msgid "manager.setup.layoutInstructions" +msgstr "Instrukcje dotyczące składu" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Instrukcje dotyczące składu mogą być przygotowane dla formatowania " +"publikowanych pozycji w wydawnictwie i dostępne pod poniższym adresem HTML " +"lub w tekście odkrytym. Będą dostępne dla Redaktora Składu i Redaktora " +"Sekcji w zakładce Redagowanie każdego zgłoszenia. (Każde wydawnictwo może " +"używać swoich formatów plików, standardów bibliograficznych, stylów strony " +"itp., domyślny zestaw instrukcji nie jest dostarczany.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Wzory składu" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Wzory mogą zostać przesłane do składu dla każdego standardowego formatu " +"publikowanych wydań (monografie, recenzje książek itp.) przy użyciu każdego " +"formatu plików (pdf, doc itp.) z dodanymi adnotacjami o konkretnej czcionce, " +"rozmiarze, marginesie itp., aby posłużyć za wskazówki dla Redaktorów Składu " +"i Redaktorów Merytorycznych." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Plik wzorcowy" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Tytuł" + +msgid "manager.setup.lists" +msgstr "Listy" + +msgid "manager.setup.lists.success" +msgstr "Zaktualizowano listę ustawień." + +msgid "manager.setup.look" +msgstr "Wygląd i styl" + +msgid "manager.setup.look.description" +msgstr "" +"Nagłówek strony głównej, zawartość, nagłówek wydawnictwa, stopka, pasek " +"nawigacyjny i styl strony." + +msgid "manager.setup.settings" +msgstr "Ustawienia" + +msgid "manager.setup.management.description" +msgstr "" +"Dostęp i bezpieczeństwo, harmonogramy, ogłoszenia, redakcja, skład i korekty." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Zarządzanie podstawowymi krokami redakcyjnymi" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Układ zarządzania i publikacji" + +msgid "manager.setup.managingThePress" +msgstr "Krok 4. Zarządzanie ustawieniami" + +msgid "manager.setup.masthead.success" +msgstr "" +"Zaktualizowano szczegóły dotyczące stopki redakcyjnej tego wydawnictwa." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Nie załadowano pliku z obrazem." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Nie załadowano stylu strony." + +msgid "manager.setup.note" +msgstr "Uwagi" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Kiedy używasz powiadomienia autora, dołącz adresy mailowe wszystkich " +"współautorów dla zgłoszenia z wieloma autorami, nie tylko użytkownika " +"zgłaszającego." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Redagowanie będzie prowadzone przez Redaktora lub Redaktora Sekcji " +"przypisanych do tego zgłoszenia." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Redaktor lub Redaktor Sekcji przypisany do zgłoszenia przygotuje pliki HTML, " +"PDF itp." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Redaktor lub Redaktor Sekcji przypisany do zgłoszenia sprawdzi korektę " +"szpaltową." + +msgid "manager.setup.numPageLinks" +msgstr "Linki do stron" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Wprowadź limit linków do wyświetlenia na kolejnych stronach na tej liście." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Dostęp do zawartości wydania" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN online" + +msgid "manager.setup.policies" +msgstr "Zasady" + +msgid "manager.setup.policies.description" +msgstr "" +"Cel, recenzja naukowa, sekcje, prywatność, bezpieczeństwo i inne o pozycjach." + +msgid "manager.setup.privacyStatement.success" +msgstr "Zaktualizowano oświadczenie o ochronie prywatności." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Różne komponenty wyglądu wydania mogą być konfigurowane przez tę stronę, " +"włączając elementy nagłówka i stopki, styl i temat wydania oraz jak " +"porządkować informacje prezentowane użytkownikom." + +msgid "manager.setup.pressDescription" +msgstr "Streszczenie wydania" + +msgid "manager.setup.pressDescription.description" +msgstr "Krótki opis Twojego wydania." + +msgid "manager.setup.aboutPress" +msgstr "O wydaniu" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Załącz wszelkie informacje dotyczące Twojego wydawnictwa, które mogą " +"zainteresować czytelników, autorów i recenzentów. Może zawierać Twoje zasady " +"otwartego dostępu, cel i zakres wydań, uwagi redaktorskie, sponsorów, " +"historię wydawnictwa i oświadczenie o ochronie prywatności." + +msgid "manager.setup.pressArchiving" +msgstr "Archiwizowanie wydawnictwa" + +msgid "manager.setup.homepageContent" +msgstr "Zawartość strony głównej wydawnictwa" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Strona główna wydawnictwa składa się z domyślnych linków nawigacyjnych. " +"Dodatkowa zawartość strony głównej może być dołączona przy użyciu jednej lub " +"wszystkich opcji, które ukażą się w zaprezentowanym porządku." + +msgid "manager.setup.pressHomepageContent" +msgstr "Zawartość strony głównej wydawnictwa" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Strona główna wydawnictwa składa się z domyślnych linków nawigacyjnych. " +"Dodatkowa zawartość strony głównej może być dołączona przy użyciu jednej lub " +"wszystkich opcji, które ukażą się w zaprezentowanym porządku." + +msgid "manager.setup.contextInitials" +msgstr "Inicjały wydawnictwa" + +msgid "manager.setup.selectCountry" +msgstr "" +"Wybierz kraj, w którym znajduje się to wydawnictwo , lub kraj adresu " +"korespondencyjnego dla wydawnictwa lub wydawcy." + +msgid "manager.setup.layout" +msgstr "Skład wydawnictwa" + +msgid "manager.setup.pageHeader" +msgstr "Nagłówek strony wydawnictwa" + +msgid "manager.setup.pageHeaderDescription" +msgstr " " + +msgid "manager.setup.pressPolicies" +msgstr "Krok 2. Polityka wydawnictwa" + +msgid "manager.setup.pressSetup" +msgstr "Konfiguracja wydawnictwa" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Zaktualizowano konfigurację Twojego wydawnictwa." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Nieważny format stylu strony. Akceptowalny format to .css." + +msgid "manager.setup.pressTheme" +msgstr "Temat wydawnictwa" + +msgid "manager.setup.pressThumbnail" +msgstr "Miniatura wydawnictwa" + +msgid "manager.setup.pressThumbnail.description" +msgstr "Na liście wydawnictw może być użyte logo wydawnictwa." + +msgid "manager.setup.contextTitle" +msgstr "Nazwa wydawnictwa" + +msgid "manager.setup.printIssn" +msgstr "ISSN druku" + +msgid "manager.setup.proofingInstructions" +msgstr "Instrukcje korektorskie" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Instrukcje korektorskie będą dostępne dla korektorów, autorów, redaktorów " +"składu i redaktorów sekcji w fazie redagowanie zgłoszenia. Poniżej znajduje " +"się domyślny zestaw instrukcji w HTML, które mogą być redagowane lub " +"zastąpione przez Menedżera wydawnictwa w dowolnym momencie (w HTML lub w " +"tekście odkrytym)." + +msgid "manager.setup.proofreading" +msgstr "Korektorzy" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Dostarcz Redaktorom Składu instrukcje." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Pozycje wydawnicze mogą być publikowane zbiorowo, jako część monografii z " +"oddzielnym spisem treści. Alternatywnie, indywidualne pozycje mogą być " +"publikowane tak szybko, jak są gotowe, poprzez dodanie je do \"bieżącego\" " +"tomu w spisie treści. Dostarcz czytelnikom w segmencie \"O wydaniu\" " +"oświadczenie o systemie, z jakiego korzysta wydawnictwo i jego oczekiwań " +"dotyczących częstotliwości publikacji." + +msgid "manager.setup.publisher" +msgstr "Wydawca" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Nazwa organizacji publikującej wydanie pojawi się w segmencie \"O wydaniu\"." + +msgid "manager.setup.referenceLinking" +msgstr "Linki odnoszące" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Instrukcje składu dla linków odnoszących" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Użytkownicy muszą być zarejestrowani i zalogowani, aby zobaczyć zawartość " +"otwartego dostępu." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Użytkownicy muszą być zarejestrowani i zalogowani, aby zobaczyć stronę " +"wydania." + +msgid "manager.setup.reviewGuidelines" +msgstr "Wskazówki dla zewnętrznej recenzji" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Dostarcz zewnętrznym recenzentom kryteria do oceny adekwatności zgłoszenia " +"do publikacji w tym wydawnictwie, które zwierają instrukcje do przygotowanie " +"efektywnej i pomocnej recenzji. Recenzencie będą mieli możliwość " +"wprowadzenia komentarzy dla autora i redaktora, jak i oddzielnych komentarzy " +"tylko dla redaktora." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Wskazówki dla wewnętrznej recenzji" + +msgid "manager.setup.reviewOptions" +msgstr "Opcje recenzji" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Automatyczny system przypominania" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Aby aktywować te opcje, administrator strony musi włączyć " +"scheduled_tasks opcję w pliku konfiguracji OMP. Dodatkowa " +"konfiguracja serweru może być wymagana, aby wzmocnić jego wydajność (może to " +"nie być możliwe na wszystkich serwerach), tak jak wspomniano w dokumentacji " +"OMP." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Redaktorzy ocenią recenzentów w skali pięciopunktowej po każdej recenzji." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Plik o ograniczonym dostępie" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Recenzenci będą mieli dostęp do zgłoszenia dopiero po wyrażeniu zgody na " +"recenzję." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Dostęp recenzenta" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Dostęp one-click recenzenta" + +#, fuzzy +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Recenzenci mogą mieć wysłane bezpieczne linki w emailu z zaproszeniem, który " +"umożliwi im dostęp do recenzji bez logowania. Dostęp do innych stron wymaga " +"zalogowania." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Zawiera bezpieczny link w emailu z zaproszeniem dla recenzentów." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Oceny recenzentów" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Przypomnienia dla recenzentów" + +msgid "manager.setup.reviewPolicy" +msgstr "Polityka recenzji" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Dostarcz krótki opis (50-300 znaków) wydania, który wyszukiwarka wyświetli " +"wydawnictwo w liście wyszukiwanych." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Indeksowanie wyszukiwania" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Pomóż wyszukiwarkom jak Google odnajdywać i wyświetlać Twoją stronę. " +"Zachęcamy Cię do zgłaszania Twojej mapy strony sitemap." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Zaktualizowano ustawienia indeksu wyszukiwarki." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Sekcje i Redaktorzy Sekcji" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Jeśli nie dodano sekcji, pozycje będą zgłaszane domyślnie do sekcji " +"monografii.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Aby stworzyć lub modyfikować sekcje dla wydawnictwa (np. Monografii, " +"Recenzje Książek itp.) idź do Zarządzania Sekcją.

        Autorzy " +"zgłoszonych pozycji do wydawnictwa przypiszą..." + +msgid "manager.setup.securitySettings" +msgstr "Ustawienia dostępu i bezpieczeństwa" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Inne opcje powiązane z bezpieczeństwem i dostępem mogą być skonfigurowane " +"przez stronę Dostęp i Bezpieczeństwo." + +msgid "manager.setup.selectEditorDescription" +msgstr "Redaktor wydania, który będzie czuwał nad procesem redaktorskim." + +msgid "manager.setup.selectSectionDescription" +msgstr "Sekcja wydawnictwa, dla której pozycja będzie rozważona." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Zawsze pokazuje linki do korekty szpaltowej i wskaż ograniczony dostęp." + +msgid "manager.setup.siteAccess.view" +msgstr "Strona dostępu" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Wyświetl zawartość monografii" + +msgid "manager.setup.stepsToPressSite" +msgstr "Pięć kroków do strony wydawnictwa" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(np. Fotosynteza; Czarna Dziura; Problem Map Czterokolorowych; Teoria Bayesa)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Słowa kluczowe" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Dostarcz przykładowe słowa kluczowe lub tematy jako wskazówki dla autorów" + +msgid "manager.setup.submissionGuidelines" +msgstr "Wskazówki dla zgłoszeń" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Lista kontrolna pozycji jest wymagana." + +msgid "manager.setup.workflow" +msgstr "Workflow" + +msgid "manager.setup.submissions.description" +msgstr "" +"Wskazówki dla autora, prawa autorskie i indeksowanie (wliczając rejestrację)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(np. Badania historyczne; Quasi-eksperymentalne; Analiza literacka; Ankieta/" +"Wywiad)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Typ (Metoda/Podejście)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Dostarcz przykłady ważnych typów badań naukowych, metod i podejścia dla tego " +"obszaru" + +msgid "manager.setup.useCopyeditors" +msgstr "Redaktor będzie przypisany do pracy nad tym zgłoszeniem." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Wydawnictwo będzie wspierane przez radę redakcyjną/recenzencką." + +msgid "manager.setup.useImageTitle" +msgstr "Tytuł obrazu" + +msgid "manager.setup.useStyleSheet" +msgstr "Styl strony wydawnictwa" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Redaktor składu będzie przypisany do przygotowania HTML, PDF itp., plików do " +"publikacji elektronicznej." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Korektor będzie przypisany do sprawdzenia (wraz z autorami) szpalty przed " +"publikacją." + +msgid "manager.setup.userRegistration" +msgstr "Rejestracja użytkownika" + +msgid "manager.setup.useTextTitle" +msgstr "Tytuł tekstu" + +msgid "manager.setup.volumePerYear" +msgstr "Tomy na rok" + +msgid "manager.setup.publicationFormat.code" +msgstr "Format" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Musisz wybrać format." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Musisz przypisać nazwę do formatu." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Czy to format nie cyfrowy?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Ten format publikacji nie może być usunięty, ponieważ jest obecnie w użyciu " +"przez inną monografię w Twoim wydawnictwie." + +msgid "manager.setup.newPublicationFormat" +msgstr "Nowy format publikacji" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Aby stworzyć nowy format publikacji, wypełnij formularz poniżej i kliknij " +"\"Utwórz\"." + +msgid "manager.setup.genresDescription" +msgstr "" +"Te gatunki są w użyciu dla celów nazwania plików i są prezentowane w menu " +"rozwijanym na załadowanych plikach. Gatunki oznaczone ## pozwalają " +"użytkownikowi połączyć plik z całą książką 99Z lub z konkretnym rozdziałem " +"przez numer (np.02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Wydawnictwo nie przyjmuje zgłoszeń w tym momencie. Przejdź do ustawień " +"workflow, aby wznowić nabór zgłoszeń." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Nie zezwalaj użytkownikom na zgłaszanie nowych artykułów do wydawnictwa. " +"Zgłoszenia mogą być nieaktywne dla indywidualnych wydań seria wydania w ustawieniach." + +msgid "manager.setup.genres" +msgstr "Gatunki" + +msgid "manager.setup.newGenre" +msgstr "Nowy gatunek monografii" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Aby utworzyć nowy gatunek, wypełnij formularz poniżej i kliknij \"Utwórz\"." + +msgid "manager.setup.deleteSelected" +msgstr "Usuń wybrane" + +msgid "manager.setup.restoreDefaults" +msgstr "Przywróć ustawienia domyślne" + +msgid "manager.setup.prospectus" +msgstr "Prospekt" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Prospekt to dokument przygotowany przez wydawnictwo, który pomaga autorowi " +"opisać zgłoszone materiały w sposób, który pozwoli wydawnictwu określić " +"wartość zgłoszenia. Prospekt może zawierać wiele pozycji: od potencjału " +"rynkowego do wartości merytorycznej; w każdym przypadku wydawnictwo powinno " +"stworzyć prospekt, który przekazuje ich program wydawniczy." + +msgid "manager.setup.submitToCategories" +msgstr "Uwzględnij kategorię zgłoszeń" + +msgid "manager.setup.submitToSeries" +msgstr "Uwzględnij serię zgłoszeń" + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN to ośmiocyfrowy numer, który identyfikuje periodyczne publikacje, " +"włącznie z seriami elektronicznymi. Numer można otrzymać z ISSN International Centre." + +msgid "manager.setup.currentFormats" +msgstr "Bieżące formaty" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Kategorie i serie" + +msgid "manager.setup.categories.description" +msgstr "" +"Możesz stworzyć listę kategorii, aby pomóc zorganizować Twoją publikację. " +"Kategorie to grupy książek posortowane według istoty przedmiotu, np. " +"ekonomia, literatura, poezja itp. Kategorie mogą być oznaczone nadrzędną " +"kategorią, np. nadrzędna kategoria - ekonomia zawiera poszczególne " +"indywidualne kategorie - mikroekonomia i makroekonomia. Odwiedzający będą " +"mogli znaleźć i przeglądać wydawnictwo poprzez kategorie." + +msgid "manager.setup.series.description" +msgstr "" +"Możesz stworzyć numer serii, aby pomóc zorganizować Twoje publikacje. Seria " +"reprezentuje zestaw książek poświęcony danemu tematowi, który ktoś " +"zaproponował, zazwyczaj członek wydziału lub więcej, który potem nadzoruje. " +"Odwiedzający będą mogli wyszukiwać i przeglądaąć wydawnictwo przez serię." + +msgid "manager.setup.reviewForms" +msgstr "Formularz recenzji" + +msgid "manager.setup.roleType" +msgstr "Typ roli" + +msgid "manager.setup.authorRoles" +msgstr "Role autora" + +msgid "manager.setup.managerialRoles" +msgstr "Role kierownicze" + +msgid "manager.setup.availableRoles" +msgstr "Dostępne role" + +msgid "manager.setup.currentRoles" +msgstr "Bieżące role" + +msgid "manager.setup.internalReviewRoles" +msgstr "Role związane z wewnętrznym procesem recenzji" + +msgid "manager.setup.masthead" +msgstr "Stopka redakcyjna" + +msgid "manager.setup.editorialTeam" +msgstr "Zespół redaktorski" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Lista redaktorów, dyrektorów zarządzających i innych związanych z " +"wydawnictwem." + +msgid "manager.setup.files" +msgstr "Pliki" + +msgid "manager.setup.productionTemplates" +msgstr "Wzory dla produkcji" + +msgid "manager.files.note" +msgstr "" +"Zauważ: Przeglądarka plików to zaawansowana funkcja, która pozwala " +"wyświetlać i bezpośrednio manewrować na plikach i folderach związanych z " +"wydawnictwem." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

        Deklaracja o prawach autorskich na licencji Creative Commons

        \n" +"

        Deklaracja o polityce wydawniczej na zasadzie Otwartego Dostępu

        \n" +"Autorzy, którzy publikują w tym wydawnictwie, przystają na następujące " +"warunki:\n" +"
          \n" +"\t
        1. Autorzy zachowują prawa autorskie i przyznają wydawnictwu prawo " +"pierwszeństwa publikacji, równocześnie licencjonowanej na zasadzie Creative " +"Commons Attribution License, która pozwala na pracę z uznaniem autorstwa " +"i pierwszeństwa publikacji w wydawnictwie.
        2. \n" +"\t
        3. Autorzy mogą przystępować do oddzielnych, dodatkowych, kontraktowych " +"serii z wersją pracy opublikowanej w wydawnictwie bez zasady wyłączności, z " +"powiadomieniem o pierwszej publikacji w tym wydawnictwie.
        4. \n" +"\t
        5. Autorzy mają pozwolenie i są zachęcani do opublikowania ich pracy " +"online (np. w repozytorium instytucjonalnym lub na ich stronie) przez lub w " +"trakcie procesu zgłoszenia, co może prowadzić do produktywnych wymian, jak " +"również do wcześniejszych i liczebniejszych cytowań publikowanej pracy " +"(zobacz The Effect of Open Access).
        6. \n" +"
        \n" +"\n" +"

        Deklaracja polityki wydawniczej na zasadzie odroczonego Otwartego " +"Dostępu

        \n" +"Autorzy, którzy publikują w tym wydawnictwie, przystają na następujące " +"warunki:\n" +"
          \n" +" \t
        1. Autorzy zachowują prawa autorskie i przyznają wydawnictwu prawo " +"pierwszeństwa publikacji pracy (określony przedział czasu) po publikacji " +"równocześnie licencjonowanej na zasadzie Creative Commons Attribution License która pozwala na pracę z uznaniem autorstwa i pierwszeństwa publikacji w " +"wydawnictwie.
        2. \n" +"\t
        3. Autorzy mogą wchodzić na oddzielne, dodatkowe serie kontraktowe dla " +"niewyłącznej dystrybucji wersji pracy publikowanej przez wydawnictwo (np. " +"publikowanie w repozytorium instytucjonalnym lub w książce) z uznaniem " +"autorstwa i pierwszeństwa publikacji w wydawnictwie.
        4. \n" +" \t
        5. Autorzy mają pozwolenie i są zachęcani do opublikowania ich pracy " +"online (np. w repozytorium instytucjonalnym lub na ich stronie) przez lub w " +"trakcie procesu zgłoszenia, co może prowadzić do produktywnych wymian, jak " +"również do wcześniejszych i liczebniejszych cytowań publikowanej pracy " +"(zobacz The Effect of Open Access).
        6. \n" +"
        " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Kroki: Kolejność zgłoszeń > Recenzja zgłoszenia> Redagowanie " +"zgłoszenia > Spis treści

        \n" +"Wybierz sposób obsługiwania tych aspektów w procesie redakcyjnym. (Idź to " +"Redaktorzy w zarządzaniu wydaniem, aby przypisać Redaktora zarządzającego i " +"Redaktorów serii.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

        Następujące opcje są dostępne, aby umożliwić czytelnikom zlokalizowanie " +"po autorze wersji online prac.

        \n" +"\n" +"
          \n" +"
        1. Dodaj Narzędzia czytelnicze

          Menedżer wydawnictwa może " +"dodać \"Znajdź odnośniki\" do Narzędzi czytelniczych, które towarzyszą " +"publikowanym pozycjom i które umożliwiają czytelnikom wklejanie tytułów " +"odnośników, a następnie przeszukiwanie wcześniej wybranej bazy naukowej dla " +"cytowanej pracy.

        2. \n" +"
        3. Linki osadzone w odnośnikach

          Redaktor składu może " +"dodać link odnośnika, który można odnaleźć online, używając następujących " +"instrukcji (które mogą być edytowane).

        4. \n" +"
        " + +msgid "manager.publication.library" +msgstr "Biblioteka wydawnictwa" + +msgid "manager.setup.resetPermissions" +msgstr "Resetuj uprawnienia monografii" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Czy jesteś pewien, że chcesz zresetować dane uprawnień przypadające " +"monografii?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Oświadczenie o prawach autorskich i informacja o licencji będzie trwale " +"przyłączona do publikowanych treści, zapewniając, że dane nie zmienią się w " +"przypadku zmiany polityki wydawnictwa dla nowych zgłoszeń. Aby zresetować " +"zmagazynowane informacje o uprawnieniach załączone do publikowanych treści, " +"użyj przycisku poniżej." + +msgid "manager.setup.resetPermissions.success" +msgstr "Uprawnienia monografii zostały pomyślnie zresetowane." + +msgid "grid.genres.title.short" +msgstr "Komponenty" + +msgid "grid.genres.title" +msgstr "Komponenty monografii" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Wyślij kopię do głównego kontaktu, podanego w Ustawieniach wydawnictwa." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Ścieżka serii musi składać się tylko z liter i cyfr." + +msgid "grid.series.pathExists" +msgstr "Ścieżka serii już istnieje. Wprowadź niepowtarzalną ścieżkę." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Wybierz serię" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Wybierz serię, do której chciałbyś włączyć link menu tej pozycji." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Wybierz kategorię" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "Wybierz kategorię, do której chciałbyś włączyć link meny tej pozycji." + +msgid "grid.series.urlWillBe" +msgstr "Adres URL serii: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "Statystyki monografii" + +msgid "stats.publications.details" +msgstr "Szczegóły monografii" + +msgid "stats.publications.none" +msgstr "" +"Nie znaleziono monografii przy użyciu statystyk pasujących do tych " +"parametrów." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Widok całego katalogu według daty" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Widok całego pliku według daty" + +msgid "stats.publications.countOfTotal" +msgstr "Całkowita liczba monografii {$count} {$total}" + +msgid "stats.publications.abstracts" +msgstr "Pozycje katalogowe" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Nie wybrano żadnej pozycji." + +msgid "plugins.importexport.common.error.validation" +msgstr "Wybrane obiekty nie mogą być przywrócone." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Uszkodzony XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Eksportuj zgłoszenia" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Wyślij kopię e-maila z potwierdzeniem zgłoszenia do głównego kontaktu w tym " +"wydawnictwie." + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"Nie określono głównego kontaktu dla tego wydawnictwa. Możesz wprowadzić " +"główny kontakt w oknie ustawienia wydawnictwa." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Nie udało się znaleźć podanych obiektów." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "Podany użytkownik, \"{$userName}\", nie istnieje." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Nie udało się przetworzyć formatów publikacji" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Nie udało się przetworzyć rozdziałów" + +msgid "emailTemplate.variable.context.contextName" +msgstr "Nazwa wydawnictwa" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "Adres URL strony głównej wydawnictwa" + +msgid "emailTemplate.variable.context.contactName" +msgstr "Nazwa pierwszej osoby kontaktowej wydawnictwa" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "Podpis mailowy wydawnictwa dla wiadomości automatycznych" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "Adres e-mail głównej osoby kontaktowej dla wydawnictwa" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "Nazwa rodzaju płatności" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Kwota płatności" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "Waluta kwoty płatności, np. USD" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "" +"Nazwa strony internetowej w przypadku hostingu więcej niż jednego wydawnictwa" + +msgid "mailable.validateEmailContext.name" +msgstr "Zatwierdzenie adresu e-mail (rejestracja wydawnictwa)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Ten e-mail jest automatycznie wysyłany do nowego użytkownika podczas " +"rejestracji w wydawnictwie, gdy ustawienia wymagają zatwierdzenia adresu e-" +"mail." + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "DOI" + +msgid "doi.description" +msgstr "" +"Wtyczka umożliwia przypisanie DOI do monografii, rozdziałów, formatów " +"publikacji i plików w OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Proszę skonfiguruj wtyczkę DOI, aby umożliwić zarządzanie i używannie DOI w " +"OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "Wybierz publikowane przedmioty, które będą miały przypisany DOI:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monografie" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Rozdziały" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Formaty publikacji" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Pliki" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Prefiks DOI" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "Prefiks DOI jest obowiązkowy i musi mieć format 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Zastosuj wzór wprowadzony poniżej, aby wygenerować sufiks DOI. Użyj %p dla " +"inicjałów wydawnictwa, %m dla ID monografii, %c dla ID rozdziału, %f dla ID " +"formatu publikacji, %s dla ID pliku i %x dla niestandardowego " +"identyfikatora. " + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Na przykład, press%ppub%r mogą stworzyć DOI takie jak 10.1234/pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "Dla monografii" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "Dla rozdziałów" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "Dla formatów publikacji" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "Dla plików" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Wprowadź wzór sufiksu DOI dla monografii." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Proszę wprowadź wzór sufiksu DOI dla rozdziałów." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Proszę wprowadź wzór sufiksu DOI dla formatów publikacji." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Proszę wprowadź wzór sufiksu DOI dla plików." + +msgid "doi.manager.settings.doiReassign" +msgstr "Zmień przypisany DOIs" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Jeśli zmieniłeś konfigurację DOI, DOIs, które zostały już przypisane nie " +"zmienią się. W momencie, kiedy konfiguracja DOI zostanie zapisana, użyj tego " +"przycisku, aby wyczyścić wszystkie istniejące DOI, wówczas nowe ustawienia " +"będą obowiązywały dla istniejących pozycji." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Czy jesteś pewien, że chcesz usunąć wszystkie istniejące DOIs?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "DOI musi rozpocząć się {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Przypisz" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "Monografia" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "Rozdział" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "Format publikacji" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "Plik" + +msgid "doi.editor.customSuffixMissing" +msgstr "" +"DOI nie może być przypisany, ponieważ brakuje niestandardowego sufiiksu." + +msgid "doi.editor.missingParts" +msgstr "" +"Nie możesz wygenerować DOI, ponieważ jedna albo więcej części wzoru DOI to " +"brakujące dane." + +msgid "doi.editor.patternNotResolved" +msgstr "DOI nie może być przypisany, ponieważ zawiera nieznany wzór." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Widzisz podgląd DOI. Uzupełnij pola wyboru, aby zapisać formę przypisaną do " +"DOI." + +msgid "doi.editor.assigned" +msgstr "DOI jest przypisane do {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Podany sufiks DOI jest już w użyciu przez inną publikowaną pozycję. Proszę " +"wprowadź unikatowy sufiks DOI dla każdej pozycji." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Wyczyść" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Czy jesteś pewien, że chcesz usunąć istniejące DOI?" + +msgid "doi.editor.assignDoi" +msgstr "Przypisz DOI {$pubId} do {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI nie może być przypisane, ponieważ brakuje standardowego sufiksu." + +msgid "doi.editor.assignDoi.pattern" +msgstr "DOI {$pubId} nie może być przypisane, ponieważ zawiera nieznany wzór." + +msgid "doi.editor.assignDoi.assigned" +msgstr "DOI {$pubId} został przypisany." + +msgid "doi.editor.missingPrefix" +msgstr "DOI musi rozpoczynać się {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "DOI dla tej publikacji to {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "DOI nie zostało nie zostało przypisane dla tej publikacji." + +msgid "doi.editor.preview.chapters" +msgstr "Rozdział: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Format publikacji: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Plik: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Pozycja" + +msgid "doi.manager.submissionDois" +msgstr "DOI książki" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Ten e-mail powiadamia autora, że jego zgłoszenie jest wysyłane do etapu " +"recenzji wewnętrznej." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Ten e-mail powiadamia autora, że jego zgłoszenie jest odrzucane, zanim " +"zostanie wysłane do recenzji, ponieważ nie spełnia wymagań dotyczących " +"publikacji w wydawnictwie." + +msgid "manager.institutions.noContext" +msgstr "Nie udało się odnaleźć wydawnictwa tej instytucji." + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Wysłane do recenzji wewnętrznej" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "Prefiks DOI (cyfrowego identyfikatora dokumentu elektronicznego) jest " +#~ "przedzielany przez CrossRef i występuje w formacie 10.xxxx (e.g. 10.1234)." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Prefiks DOI" diff --git a/locale/pl/submission.po b/locale/pl/submission.po new file mode 100644 index 00000000000..170e12a1eca --- /dev/null +++ b/locale/pl/submission.po @@ -0,0 +1,605 @@ +# Dorota Siwecka , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-09 10:00+0000\n" +"Last-Translator: Dorota Siwecka \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Wybierz komponent" + +msgid "submission.title" +msgstr "Tytuł książki" + +msgid "submission.select" +msgstr "Wybierz zgłoszenie" + +msgid "submission.synopsis" +msgstr "Streszczenie" + +msgid "submission.workflowType" +msgstr "Typ zgłoszenia" + +msgid "submission.workflowType.description" +msgstr "" +"Monografia to rozprawa autoryzowana przez jedną lub więcej osób. Zredagowany " +"tom posiada różnych autorów dla każdego rozdziału (w szczegółach rozdziału " +"wprowadzonymi w późniejszej facie procesu redakcyjnego.)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Redagowany tom" + +msgid "submission.workflowType.editedVolume" +msgstr "Redagowany tom: autorzy są kojarzeni z własnymi rozdziałami." + +msgid "submission.workflowType.authoredWork" +msgstr "Monografia: Autorzy są kojarzeni z całością książki." + +msgid "submission.workflowType.change" +msgstr "Zmień" + +msgid "submission.editorName" +msgstr "{$editorName} (ed)" + +msgid "submission.monograph" +msgstr "Monografia" + +msgid "submission.published" +msgstr "Gotowa produkcja" + +msgid "submission.fairCopy" +msgstr "Wersja ostateczna" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Pozwolenia" + +msgid "submission.chapter" +msgstr "Rozdział" + +msgid "submission.chapters" +msgstr "Rozdziały" + +msgid "submission.chapter.addChapter" +msgstr "Dodaj rozdział" + +msgid "submission.chapter.editChapter" +msgstr "Edytuj rozdział" + +msgid "submission.chapter.pages" +msgstr "Strony" + +msgid "submission.copyedit" +msgstr "Redakcja" + +msgid "submission.publicationFormats" +msgstr "Formaty publikacji" + +msgid "submission.proofs" +msgstr "Korekty" + +msgid "submission.download" +msgstr "Pobierz" + +msgid "submission.sharing" +msgstr "Udostępnij" + +msgid "manuscript.submission" +msgstr "Zgłoszenie manuskryptu" + +msgid "submission.round" +msgstr "Runda  {$round}" + +msgid "submissions.queuedReview" +msgstr "W trakcie recenzji" + +msgid "manuscript.submissions" +msgstr "Zgłoszenia manuskryptu" + +msgid "submission.metadata" +msgstr "Metadane" + +msgid "submission.supportingAgencies" +msgstr "Wspierające agencje" + +msgid "grid.action.addChapter" +msgstr "Utwórz nowy rozdział" + +msgid "grid.action.editChapter" +msgstr "Edytuj ten rozdział" + +msgid "grid.action.deleteChapter" +msgstr "Usuń ten rozdział" + +msgid "submission.submit" +msgstr "Rozpocznij zgłoszenie nowej książki" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Rozpocznij nowe zgłoszenie" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Nowe zgłoszenie" + +msgid "submission.submit.upload" +msgstr "Wprowadź zgłoszenie" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "Dobierz współautora jako redaktora tego tomu." + +msgid "submission.submit.seriesPosition" +msgstr "Pozycja w serii" + +msgid "submission.submit.seriesPosition.description" +msgstr "Przykłady: książka 2, tom 2" + +msgid "submission.submit.privacyStatement" +msgstr "Oświadczenie o ochronie prywatności" + +msgid "submission.submit.contributorRole" +msgstr "Rola współautora" + +msgid "submission.submit.submissionFile" +msgstr "Plik zgłoszenia" + +msgid "submission.submit.prepare" +msgstr "Przygotuj" + +msgid "submission.submit.catalog" +msgstr "Katalog" + +msgid "submission.submit.metadata" +msgstr "Metadane" + +msgid "submission.submit.finishingUp" +msgstr "Zakończenie" + +msgid "submission.submit.confirmation" +msgstr "Potwierdzenie" + +msgid "submission.submit.nextSteps" +msgstr "Następne kroki" + +msgid "submission.submit.coverNote" +msgstr "Pismo przewodnie dla redaktora" + +msgid "submission.submit.generalInformation" +msgstr "Ogólne informacje" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Wydawnictwo zostało powiadomione o zgłoszeniu, otrzymałeś email z " +"potwierdzeniem do Twojej ewidencji. . Kiedy redaktor zrecenzuje zgłoszenie, " +"skontaktujemy się z Tobą." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Proszę przeczytaj i sprawdź pozycje w liście kontrolnej zgłoszenia. " +"Niektóre pozycje są pominięte. {$itemsRemaining}." + +msgid "submission.submit.placement" +msgstr "Umiejscowienie zgłoszenia" + +msgid "submission.submit.userGroup" +msgstr "Zgłoś moją rolę jako..." + +msgid "submission.submit.noContext" +msgstr "Wydanie zgłoszenia nie mogło być znalezione." + +msgid "grid.chapters.title" +msgstr "Rozdziały" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Usuń załadowanego redaktora" + +msgid "submission.complete" +msgstr "Zatwierdzono" + +msgid "submission.incomplete" +msgstr "Oczekujące na zatwierdzenie" + +msgid "submission.editCatalogEntry" +msgstr "Pozycja" + +msgid "submission.catalogEntry.new" +msgstr "Dodaj pozycję" + +msgid "submission.catalogEntry.add" +msgstr "Dodaj wybrane do katalogu" + +msgid "submission.catalogEntry.select" +msgstr "Wybierz monografie, aby dodać je do katalogu" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Musisz wybrać przynajmniej jedną monografię do dodania do katalogu." + +msgid "submission.catalogEntry.confirm" +msgstr "Dodaj tę książkę do publicznego katalogu" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Proszę potwierdź gotowość zgłoszenia do umieszczenia w katalogu." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Ta monografia jest gotowa do załączenia w publicznym katalogu." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Wyświetl zgłoszenie" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Terminy publikacji" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Wszystkie rozdziały zastosują datę publikacji tej monografii." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Każdy rozdział może mieć swoją własną datę publikacji." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografia" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Katalog" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Format publikacji" + +msgid "submission.event.metadataPublished" +msgstr "Metadane monografii są zatwierdzone do publikacji." + +msgid "submission.event.metadataUnpublished" +msgstr "Metadane monografii nie są już publikowane." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Format publikacji \"{$publicationFormatName}\" jest udostępniony." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Format publikacji \"{$publicationFormatName}\" nie jest już dostępny." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Format publikacji \"{$publicationFormatName}\" został zatwierdzony dla tej " +"publikacji." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"Format publikacji \"{$publicationFormatName}\" nie jest już publikowany." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Metadane katalogu zostały zaktualizowane." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"Metadane formatu publikacji dla \"{$formatName}\" zostały zaktualizowane." + +msgid "submission.event.publicationFormatCreated" +msgstr "Format publikacji \"{$formatName}\" został utworzony." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Format publikacji \"{$formatName}\"został usunięty." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Wyślij do zewnętrznej recenzji" + +msgid "workflow.review.externalReview" +msgstr "Zewnętrzna recenzja" + +msgid "submission.upload.fileContents" +msgstr "Komponent zgłoszenia" + +msgid "submission.dependentFiles" +msgstr "Pliki zależne" + +msgid "submission.metadataDescription" +msgstr "" +"Te specyfikacje opierają się na zestawie metadanych Dublin Core o " +"międzynarodowym standardzie używanym do opisu zawartości wydawnictwa." + +msgid "section.any" +msgstr "Wszystkie serie" + +msgid "submission.list.monographs" +msgstr "Monografie" + +msgid "submission.list.countMonographs" +msgstr "{$count} monografie" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count}z {$total} monografii" + +msgid "submission.list.orderFeatures" +msgstr "Funkcje zamawiania" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Przeciągnij i upuść lub stuknij przyciski góra-dół, aby zmienić funkcje " +"zamawiania na stronie głównej." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Przeciągnij i upuść lub stuknij przyciski góra-dół, by zmienić zasady " +"zamawiania w {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Zapisz zamówienie" + +msgid "submission.list.viewEntry" +msgstr "Wgląd" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Tytuły" + +msgid "publication.catalogEntry" +msgstr "Pozycja katalogowa" + +msgid "publication.catalogEntry.success" +msgstr "Zaktualizowano szczegóły pozycji katalogowej." + +msgid "publication.invalidSeries" +msgstr "Nie znaleziono serii dla tej publikacji." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Nieaktywny)" + +msgid "publication.required.issue" +msgstr "" +"Publikacja musi być przypisana do problematyki zanim zostanie opublikowana." + +msgid "publication.publishedIn" +msgstr "Opublikowano w {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Wszystkie wymogi publikacyjne zostały spełnione. Czy jesteś pewien, że " +"chcesz upublicznić tę pozycję katalogową?" + +msgid "publication.scheduledIn" +msgstr "Zaplanowano do publikacji na {$issueName}." + +msgid "submission.publication" +msgstr "Publikacja" + +msgid "publication.status.published" +msgstr "Opublikowana" + +msgid "submission.status.scheduled" +msgstr "Zaplanowana" + +msgid "publication.status.unscheduled" +msgstr "Oczekująca" + +msgid "submission.publications" +msgstr "Publikacje" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Rok obowiązywania praw autorskich będzie ustawiony automatycznie w momencie " +"publikacji numeru." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Rok obowiązywania praw autorskich będzie ustawiony automatycznie na " +"podstawie wybranej daty publikacji." + +msgid "publication.datePublished" +msgstr "Data publikacji" + +msgid "publication.editDisabled" +msgstr "Niniejsza wersja jest już opublikowana. Nie można jej edytować." + +msgid "publication.event.published" +msgstr "Zgłoszenie zostało opublikowane." + +msgid "publication.event.scheduled" +msgstr "Zgłoszenie zostało zaplanowane do publikacji." + +msgid "publication.event.unpublished" +msgstr "Zgłoszenie zostało zdjęte z publikacji." + +msgid "publication.event.versionPublished" +msgstr "Nowa wersja została upubliczniona." + +msgid "publication.event.versionScheduled" +msgstr "Nowa wersja została zaplanowana do publikacji." + +msgid "publication.event.versionUnpublished" +msgstr "Wersja została usunięta z publikacji." + +msgid "publication.invalidSubmission" +msgstr "Nie można znaleźć zgłoszenia właściwego dla tej publikacji." + +msgid "publication.publish" +msgstr "Opublikuj" + +msgid "publication.publish.requirements" +msgstr "Zanim dojdzie do publikacji trzeba spełnić niniejsze wymagania." + +msgid "publication.required.declined" +msgstr "Odrzucone zgłoszenie nie może być opublikowane." + +msgid "publication.required.reviewStage" +msgstr "" +"Aby opublikować zgłoszenie musi być co najmniej w statusie Korekta lub " +"Produkcja." + +msgid "submission.license.description" +msgstr "" +"Licencja zostanie ustawiona automatycznie na {$licenseName} w momencie publikacji." + +msgid "submission.copyrightHolder.description" +msgstr "Prawa autorskie zostaną przydzielone automatycznie dla {$copyright}." + +msgid "submission.copyrightOther.description" +msgstr "Przydziel prawa autorskie do monografii podanemu niżej podmiotowi." + +msgid "publication.unpublish" +msgstr "Zdejmij z publikacji" + +msgid "publication.unpublish.confirm" +msgstr "Na pewno chcesz aby to było zdjęte z publikacji?" + +msgid "publication.unschedule.confirm" +msgstr "Na pewno chcesz zdjąć te pozycje z planu publikacji?" + +msgid "publication.version.details" +msgstr "Szczegóły publikacji dla wersji {$version}" + +msgid "submission.queries.production" +msgstr "Dyskusja w trakcie realizacji" + +msgid "publication.chapter.landingPage" +msgstr "Strona rozdziału" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Pokaż ten rozdział na nowej stronie i umieść link do tej strony w spisie " +"treści książki." + +msgid "publication.publish.success" +msgstr "Status publikacji zmieniony pomyślnie." + +msgid "chapter.volume" +msgstr "Wolumen" + +msgid "submission.withoutChapter" +msgstr "{$name} — Bez tego rozdziału" + +msgid "submission.chapterCreated" +msgstr " — Rozdział utworzony" + +msgid "chapter.pages" +msgstr "Strony" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Wyślij do recenzji wewnętrznej" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "To zgłoszenie jest gotowe do wysłania do recenzji wewnętrznej." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} przesłał to zgłoszenie do etapu recenzji wewnętrznej." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Wyślij do recenzji wewnętrznej" + +#, fuzzy +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"To zgłoszenie, {$title}, zostało przesłane do etapu recenzji wewnętrznej." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Wyślij e-mail do autorów, aby poinformować ich, że to zgłoszenie zostanie " +"wysłane do recenzji wewnętrznej. Jeśli to możliwe, poinformuj autorów o tym, " +"jak długo może potrwać proces recenzji wewnętrznej i kiedy powinni " +"spodziewać się ponownego kontaktu z redakcją." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" +"Wybierz pliki, które powinny zostać wysłane do etapu recenzji wewnętrznej." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "{$editorName} przesłał to zgłoszenie do etapu recenzji zewnętrznej." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Wyślij do recenzji zewnętrznej" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "Zgłoszenie, {$title}, zostało przesłane do etapu recenzji zewnętrznej." + +msgid "editor.submission.decision.backToReview" +msgstr "Wróć do recenzji" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Uchylenie decyzji o przyjęciu tego zgłoszenia i odesłanie go do etapu " +"recenzji." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} cofnął decyzję o przyjęciu tego zgłoszenia i skierował je z " +"powrotem do etapu recenzji." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Wyślij z powrotem do recenzji" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "Zgłoszenie, {$title}, zostało przesłane z powrotem do etapu recenzji." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Wyślij e-mail do autorów, aby poinformować ich, że ich zgłoszenie jest " +"odsyłane do etapu recenzji. Wyjaśnij, dlaczego podjęto taką decyzję i " +"poinformuj autora o tym, jakie dalsze recenzje zostaną podjęte." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Wyślij e-mail do autorów, aby poinformować ich, że to zgłoszenie zostanie " +"wysłane do recenzji. Jeśli to możliwe, poinformuj autorów o tym, jak długo " +"może potrwać proces recenzji i kiedy powinni spodziewać się ponownego " +"kontaktu z redakcją." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Wybierz pliki, które powinny zostać wysłane do etapu recenzji." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Zalecenie przesłania do recenzji zewnętrznej" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "Zaleca się przesłanie tego zgłoszenia do etapu recenzji zewnętrznej." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} zalecił przesłanie tego zgłoszenia do etapu recenzji " +"zewnętrznej." + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/pl_PL/admin.po b/locale/pl_PL/admin.po deleted file mode 100644 index d0989bbbb94..00000000000 --- a/locale/pl_PL/admin.po +++ /dev/null @@ -1,138 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-09 17:40+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish " -"\n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.hostedContexts" -msgstr "Obsługiwane wydawnictwa" - -msgid "admin.settings.info.success" -msgstr "Informacje o stronie zostały pomyślnie zaktualizowane." - -msgid "admin.settings.config.success" -msgstr "Ustawienia konfiguracyjne strony zostały pomyślnie zaktualizowane." - -msgid "admin.settings.appearance.success" -msgstr "Ustawienia widoku strony zostały pomyślnie zaktualizowane." - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

        ZWRÓĆ UWAGĘ!\n" -"

        System mógł automatycznie nadpisać plik konfiguracji. Aby zastosować " -"zmiany musisz otworzyć config.inc.php w odpowiednim edytorze tekstu " -"i zasątpić jego zawartość tekstem pola poniżej.

        " - -msgid "admin.presses.addPress" -msgstr "Dodaj wydawnictwo" - -msgid "admin.contexts.contextDescription" -msgstr "Opis wydawnictwa" - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} zostało pomyślnie edytowane." - -msgid "admin.contexts.form.create.success" -msgstr "{$name}zostało pomyślnie utworzone." - -msgid "admin.contexts.form.pathExists" -msgstr "Wybrana ścieżka jest już używana przez inne wydawnictwo." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "" -"Ścieżka może zawierać tylko litery, liczby oraz znaki _ i -. Musi zaczynać i " -"kończyć się literą lub liczbą." - -msgid "admin.contexts.form.pathRequired" -msgstr "Ścieżka jest wymagana." - -msgid "admin.contexts.form.titleRequired" -msgstr "Tytuł jest wymagany." - -msgid "admin.contexts.create" -msgstr "Utwórz stronę wydawnictwa" - -msgid "admin.presses.noneCreated" -msgstr "Nie utworzono strony wydawnictwa." - -msgid "admin.presses.pressSettings" -msgstr "Ustawienia dla wydawnictwa" - -msgid "admin.systemConfiguration" -msgstr "Konfiguracja OMP" - -msgid "admin.systemVersion" -msgstr "Wersja OMP" - -msgid "admin.languages.confirmDisable" -msgstr "" -"Czy jesteś pewien, że chcesz wyłączyć te ustawienia regionalne? To może mieć " -"wpływ na każde obsługiwane wydawnictwo, które z nich korzysta." - -msgid "admin.languages.downloadUnavailable" -msgstr "" -"

        Pobranie pakietu językowego ze strony Projektu Wiedzy Publicznej jest " -"obecnie niedostępne ponieważ:

        \n" -"\t
          \n" -"\t\t
        • Twój serwer nie posiada lub nie ma dostępu do uruchomienia GNU \"" -"tar\" utility
        • \n" -"\t\t
        • OMP nie ma możliwości modyfikacji ustawień regionalnych pliku, " -"typowych dla \"registry/locales.xml\".
        • \n" -"\t
        \n" -"

        Pakiet językowy może zostać pobrany ręcznie z: PKP web site.

        " - -msgid "admin.languages.downloadFailed" -msgstr "" -"Pobieranie ustawień regionalnych nie powiodło się. Poniższa wiadomość " -"opisuje błąd operacji." - -msgid "admin.languages.noLocalesToDownload" -msgstr "Brak ustawień regionalnych dostępnych do pobrania." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "" -"Wybierz dodatkowe ustawienia regionalne do obsługi tego systemu. Ustawienia " -"regionalne muszą być zainstalowane zanim będą stosowane przez wydawnictwa. " -"Zobacz dokumentację OMP, aby zdobyć informacje o dodaniu obsługi dla nowych " -"języków." - -msgid "admin.languages.confirmUninstall" -msgstr "" -"Czy jesteś pewien, że chcesz odinstalować zaznaczone ustawienia lokalne? To " -"może mieć wpływ na każde obsługiwane wydawnictwo, które z nich korzysta." - -msgid "admin.locale.maybeIncomplete" -msgstr "Ustawienia lokalne oznaczone *mogą być niepełne." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "" -"Wybierz ustawienia regionalne do obsługi ten strony. Wybrane ustawienia " -"regionalne będą dostępne do użytku dla obsługiwanych wydawnictw przez tę " -"stronę i również pojawią się w menu wyboru języka, znajdującego się na " -"stronie internetowej (który może być nadpisany na technicznych stronach " -"wydawnictwa). Jeśli zostanie wybrany jeden typ ustawień lokalnych, nie " -"pojawi się przełącznik zmiany języka, a także nie będą dostępne dla tych " -"wydawnictw rozszerzone ustawienia językowe." - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "To będzie domyślny język dla tej strony i obsługiwanych wydawnictw." - -msgid "admin.settings.noPressRedirect" -msgstr "Nie przekierowuj" - -msgid "admin.settings.redirectInstructions" -msgstr "" -"Zapytanie na stronie głównej będzie przekierowane do wydawnictwa. To może " -"być przydatne, jeśli strona np. obsługuje tylko jedno wydawnictwo." - -msgid "admin.settings.redirect" -msgstr "Przekieruj do wydawnictwa" diff --git a/locale/pl_PL/api.po b/locale/pl_PL/api.po deleted file mode 100644 index 16afa0d6f39..00000000000 --- a/locale/pl_PL/api.po +++ /dev/null @@ -1,37 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-01 14:05+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "api.submissions.403.contextRequired" -msgstr "" -"Aby dokonać zgłoszenia lub je zmienić, musisz poprosić o punkt końcowy API " -"wydawnictwa." - -msgid "api.submissions.403.cantChangeContext" -msgstr "Nie możesz zmienić zlecenia dla tego zgłoszenia." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "Publikacja, o którą poprosiłeś nie jest częścią tego zgłoszenia." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "Publikacja, o którą poprosiłeś, nie należy do tego zlecenia." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "Nie masz pozwolenia, aby zastosować ten szablon dla innego wydawnictwa." - -msgid "api.submissions.400.submissionsNotFound" -msgstr "Nie udało się znaleźć wyszczególnionego zgłoszenia." - -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Musisz dostarczyć przynajmniej jeden identyfikator zgłoszenia, aby był " -"dodany w katalogu." diff --git a/locale/pl_PL/author.po b/locale/pl_PL/author.po deleted file mode 100644 index bb4c7e03df8..00000000000 --- a/locale/pl_PL/author.po +++ /dev/null @@ -1,16 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-09 17:40+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "author.submit.notAccepting" -msgstr "Wydawnictwo nie przyjmuje obecnie zgłoszeń." diff --git a/locale/pl_PL/default.po b/locale/pl_PL/default.po deleted file mode 100644 index 1d59d9b0e93..00000000000 --- a/locale/pl_PL/default.po +++ /dev/null @@ -1,183 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-09 17:40+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.genres.manuscript" -msgstr "Manuskrypt książki" - -msgid "default.genres.bibliography" -msgstr "Bibliografia" - -msgid "default.genres.appendix" -msgstr "Załączniki" - -msgid "default.contextSettings.emailSignature" -msgstr "" -"________________________________________________________________________
        " -"\n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "RZ" - -msgid "default.groups.plural.externalReviewer" -msgstr "Recenzenci zewnętrzni" - -msgid "default.groups.name.externalReviewer" -msgstr "Recenzent zewnętrzny" - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Zachęcamy bibliotekarzy naukowych do włączenia tego wydawnictwa w obręb " -"zasobu elektronicznych wydań. Jednocześnie ten system publikacji w otwartym " -"dostępie jest odpowiedni dla bibliotek, aby mogły zapewnić swoim członkom " -"zespołów stosowanie go dla wydań, nad którymi obecnie pracują (see Open Monograph Press)." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"Czy jesteś zainteresowany zgłoszeniem swojej pracy wydawnictwu? Zalecamy " -"przejrzenie zakładki: O " -"wydanius, sekcję o polityce wydawniczej oraz " -"zakładki Wskazówki dla autora. Autorzy muszą zarejestrować się do " -"wydawnictwa przed zgłoszeniem lub, jeśli są już zarejestrowani, mogą łatwo <" -"a href=\"{$indexUrl}/index/login\"> zalogować się a ,aby rozpocząć " -"pięciostopniowy proces zgłoszenia." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Zachęcamy czytelników do zapisania się do naszego serwisu powiadomień " -"wydawniczych. Użyj linku r, który znajduje się w górnej części strony głównej. Rejestracja " -"poskutkuje otrzymywaniem emailem przez czytelnika spisu treści dla każdej " -"monografii opublikowanej przez to wydawnictwo. Ta lista pozwala także " -"wydawnictwu spodziewać się pewnego poziomu wsparcia i czytelnictwa. Zobacz " -"Oświadczenie o ochronie prywatności , które zapewnia, że nazwa i adresy " -"email czytelników nie będą użyte do innych celów." - -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Wydawnictwo zapewnia natychmiastowy otwarty dostęp zawartości w imię zasady " -"powszechnej dostępności badań w ramach publicznego wspierania światowej " -"wymiany wiedzy." - -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

        Nazwy i adresy email wprowadzone na stronie wydawnictwa będą stosowane " -"wyłącznie dla wyznaczonych celów wydawnictwa oraz nie będą dostępne dla " -"innych stron i wykorzystywane do innych celów.

        " - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "" -"Tekst przestrzega wymagań stylistycznych i bibliograficznych przedstawionych " -"we wskazówkach dla autora , które znajdują się w " -"zakładce O wydaniu." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"Tekst ma pojedyncze odstępy; stosuje 12-punktową czcionkę; używa kursywę, " -"rzadziej podkreślenie (z wyjątkiem adresów URL); wszystkie ilustracje, " -"rysunki, tabele są umieszczone w odpowiadającym fragmencie tekstu, rzadziej " -"na końcu." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Adres URL dla odnośników został dostarczony tam, gdzie jest to możliwe." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "" -"Plik publikacji jest zapisany w formacie MicrosoftWord, RTF lub OpenDocument." - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"Zgłoszenie nie było wcześniej opublikowane ani nie jest obecnie rozważane do " -"publikacji w innym wydawnictwo (lub wyjaśnienie zostało zawarte w " -"komentarzach dla redaktora)." - -msgid "default.groups.abbrev.volumeEditor" -msgstr "RT" - -msgid "default.groups.plural.volumeEditor" -msgstr "Redaktorzy tomu" - -msgid "default.groups.name.volumeEditor" -msgstr "Redaktor tomu" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "AR" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Autorzy rozdziału" - -msgid "default.groups.name.chapterAuthor" -msgstr "Autor rozdziału" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "RS" - -msgid "default.groups.plural.sectionEditor" -msgstr "Redaktorzy serii" - -msgid "default.groups.name.sectionEditor" -msgstr "Redaktor serii" - -msgid "default.groups.abbrev.editor" -msgstr "RW" - -msgid "default.groups.plural.editor" -msgstr "Redaktorzy wydawniczy" - -msgid "default.groups.name.editor" -msgstr "Redaktor wydawniczy" - -msgid "default.groups.abbrev.manager" -msgstr "MW" - -msgid "default.groups.plural.manager" -msgstr "Menadżerowie wydawnictwa" - -msgid "default.groups.name.manager" -msgstr "Menadżer wydawnictwa" - -msgid "default.genres.other" -msgstr "Inne" - -msgid "default.genres.illustration" -msgstr "Ilustracja" - -msgid "default.genres.photo" -msgstr "Zdjęcie" - -msgid "default.genres.figure" -msgstr "Rysunek" - -msgid "default.genres.table" -msgstr "Tabela" - -msgid "default.genres.prospectus" -msgstr "Konspekt" - -msgid "default.genres.preface" -msgstr "Wstęp" - -msgid "default.genres.index" -msgstr "Indeks" - -msgid "default.genres.glossary" -msgstr "Glosariusz" - -msgid "default.genres.chapter" -msgstr "Rozdział manuskryptu" diff --git a/locale/pl_PL/editor.po b/locale/pl_PL/editor.po deleted file mode 100644 index 79db60abb05..00000000000 --- a/locale/pl_PL/editor.po +++ /dev/null @@ -1,210 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-01 14:05+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "" -"Identyfikator publiczny '{$publicIdentifier}' już istnieje dla innego " -"przedmiotu tego rodzaju. Proszę, wybierz identyfikatory będące przeznaczone " -"dla przedmiotów zgodnych z rodzajem Twojego wydania." - -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "" -"Pliki, które już zostały załadowane do stanu zgłoszenia mogą być dodane do " -"Plików korektorskich poprzez zaznaczenie poniższego pola \"Uwzględnij\" oraz " -"poprzez kliknięcie \"Szukaj\": wszystkie dostępne pliki zostaną umieszczone " -"na liście i mogą być wybrane do uwzględnienia." - -msgid "editor.monograph.proof.addNote" -msgstr "Dodaj odpowiedź" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Ustaw warunki" - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Ustaw warunki pobierania" - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "" -"Dodaj format publikacji (np. cyfrowy, broszurowa oprawa), dla których " -"redaktor składu przygotuje odbitki do korekty. Wersja próbna musi " -"być sprawdzona, zatwierdzona, a pozycja katalogowa formatu musi " -"być sprawdzona i zamieszczona w pozycji katalogowej książki, zanim format " -"zostanie udostępniony. (tj.opublikowany)." - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "" -"Różne formaty publikacji, takie jak: twarda okładka, miękka okładka i wersja " -"cyfrowa, mogą być załadowane w sekcji poniżej Formaty publikacji. Możesz " -"użyć poniższego pola formatów publikacji jako listę kontrolną dla " -"brakujących czynności przed publikacją formatu." - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Zatwierdzenie i opublikowanie" - -msgid "editor.monograph.proofs" -msgstr "Korekty" - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Czystopis" - -msgid "editor.submission.introduction" -msgstr "" -"W zgłoszeniu, redaktor po skonsultowaniu zgłoszonych plików, zaznaczył " -"odpowiednie czynności (w które wlicza się powiadomienie autora): wysłanie do " -"wewnętrznej recenzji (co wiąże się z wybraniem plików do wewnętrznej " -"recenzji); wysłanie do zewnętrznej recenzji (co wiąże się z wybraniem plików " -"do zewnętrznej recenzji); zaakceptowanie zgłoszenia (co wiąże się z " -"wybraniem pliku do procesu redakcyjnego); lub odrzucenie zgłoszenia (" -"archiwizacja zgłoszenia)." - -msgid "editor.monograph.legend.uploaded" -msgstr "Plik załadowany w polu kolumny tytułowej" - -msgid "editor.monograph.legend.complete" -msgstr "Ukończono czynności" - -msgid "editor.monograph.legend.in_progress" -msgstr "Czynności są w trakcie lub jeszcze nie zostały ukończone" - -msgid "editor.monograph.legend.delete" -msgstr "Usuń pozycję" - -msgid "editor.monograph.legend.edit" -msgstr "Edytuj pozycję" - -msgid "editor.monograph.legend.notes_new" -msgstr "" -"Informacje o pliku: uwagi, możliwości powiadomień i historia (dodano nowe " -"uwagi od ostatniej wizyty)" - -msgid "editor.monograph.legend.notes" -msgstr "" -"Informacje o pliku: uwagi, możliwości powiadomień i historia (uwagi są " -"dostępne)" - -msgid "editor.monograph.legend.notes_none" -msgstr "" -"Informacje o pliku: uwagi, możliwości powiadomień i historia (nie dodano " -"uwag)" - -msgid "editor.monograph.legend.more_info" -msgstr "Więcej informacji: uwagi o pliku, możliwości powiadomień i historia" - -msgid "editor.monograph.legend.settings" -msgstr "" -"Wyświetl i udostępnij ustawienia pozycji, takie jak informacje i możliwość " -"wykasowania" - -msgid "editor.monograph.legend.add_user" -msgstr "Dodaj użytkownika do sekcji" - -msgid "editor.monograph.legend.add" -msgstr "Załaduj plik do sekcji" - -msgid "editor.monograph.legend.participants" -msgstr "" -"Wyświetl i zarządzaj uczestnikami tego zgłoszenia: autorami, redaktorami, " -"projektantami i innymi" - -msgid "editor.monograph.legend.bookInfo" -msgstr "" -"Wyświetl i zarządzaj metadanymi, uwagami, powiadomieniami i historią " -"zgłoszenia" - -msgid "editor.monograph.legend.catalogEntry" -msgstr "" -"Wyświetl i zarządzaj zgłoszoną pozycją katalogową, włączając metadane i " -"formaty publikacji" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Czynności i możliwości charakterystyczne dla indywidualnego pliku." - -msgid "editor.monograph.legend.itemActions" -msgstr "Czynności na pozycji" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "" -"Możliwości charakterystyczne dla wybranej sekcji, na przykład załadowanie " -"plików lub dodanie użytkowników." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Sekcja czynności" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Całościowe czynności i możliwości do dokonania zgłoszenia." - -msgid "editor.monograph.legend.submissionActions" -msgstr "Czynności, aby dokonać zgłoszenia" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Wiadomość dla użytkownika" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Obecne pliki" - -msgid "editor.monograph.final.currentFiles" -msgstr "Obecna wersja robocza pliku" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Wybierz ostateczną wersję roboczą pliku" - -msgid "editor.monograph.externalReview" -msgstr "Rozpocznij zewnętrzną recenzję" - -msgid "editor.monograph.internalReviewDescription" -msgstr "Wybierz pliki poniżej, aby wysłać je do recenzji wewnętrznej." - -msgid "editor.monograph.internalReview" -msgstr "Rozpocznij wewnętrzną recenzje" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Pliki do korekty" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Możliwości recenzji naukowych" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Załaduj recenzję" - -msgid "editor.monograph.editorToEnter" -msgstr "Edytor do wprowadzenia rekomendacji i komentarzy dla recenzenta" - -msgid "editor.monograph.replaceReviewer" -msgstr "Zastąp recenzenta" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "" -"Wybierz recenzenta powyżej i naciśnij \"wybierz recenzenta\", aby " -"kontynuować." - -msgid "editor.monograph.recommendation" -msgstr "Rekomendacja" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Wprowadź rekomendację recenzenta" - -msgid "editor.monograph.enterRecommendation" -msgstr "Wprowadź rekomendację" - -msgid "editor.monograph.clearReview" -msgstr "Wymaż recenzenta" - -msgid "editor.monograph.cancelReview" -msgstr "Anuluj zapytanie" - -msgid "editor.submissionArchive" -msgstr "Archiwum zgłoszeń" - -msgid "editor.submissions.assignedTo" -msgstr "Przypisano do redaktora" diff --git a/locale/pl_PL/emails.po b/locale/pl_PL/emails.po deleted file mode 100644 index 6606d9907ee..00000000000 --- a/locale/pl_PL/emails.po +++ /dev/null @@ -1,1000 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-11 12:51+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "emails.notification.subject" -msgstr "Nowe powiadomienie od {$siteTitle}" - -msgid "emails.reviewRequest.body" -msgstr "" -"Szanowny/Szanowna {$reviewerName},
        \n" -"
        \n" -"{$messageToReviewer}
        \n" -"
        \n" -"Prosimy, zaloguj się na platformę wydawniczą {$responseDueDate}, aby " -"zasygnalizować, czy podejmuje się Pan/Pani recenzji, a także aby mieć dostęp " -"do zgłoszenia oraz swoich recenzji i rekomendacji..
        \n" -"
        \n" -"Termin oddania recenzji: {$reviewDueDate}.
        \n" -"
        \n" -"URL złoszenia: {$submissionReviewUrl}
        \n" -"
        \n" -"Login:{$reviewerUserName}
        \n" -"
        \n" -"Dziękujemy za rozpatrzenie naszej prośby, .
        \n" -"
        \n" -"
        \n" -"Z poważaniem,
        \n" -"{$editorialContactSignature}
        \n" - -msgid "emails.reviewRequest.subject" -msgstr "Prośba o recenzję manuskryptu" - -msgid "emails.editorAssign.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Zgłoszenie, "{$submissionTitle}," do {$contextName} zostało Ci " -"zlecone do redakcji..
        \n" -"
        \n" -"URL zgłoszenia: {$submissionUrl}
        \n" -"Login: {$editorUsername}
        \n" -"
        \n" -"Dziękujemy," - -msgid "emails.submissionAckNotUser.subject" -msgstr "Potwierdzenie zgłoszenia" - -msgid "emails.submissionAck.description" -msgstr "" -"Ten email jest automatycznie wysyłany do autora, kiedy zakończył proces " -"rejestracji rękopisu na platformie. Dostarcza informacje, które umożliwią " -"obserwację procesu rejestracji. Dziękujemy za zgłoszenie rękopisu." - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Dziękujemy, za zgłoszenie rękopisu, "{$submissionTitle}" do " -"{$contextName}. Z naszym systemem operacyjnym, będziesz mógł śledzić postępy " -"w procesie edytorskim poprzez zalogowanie się na stronę::
        \n" -"
        \n" -"URL rękopisu: {$submissionUrl}
        \n" -"Login: {$authorUsername}
        \n" -"
        \n" -"W razie pytań, skontaktuj się ze mną. Dziękujemy za wybranie naszej " -"platformy.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.subject" -msgstr "Potwierdzenie zgłoszenia" - -msgid "emails.publishNotify.subject" -msgstr "Nowości wydawnicze" - -msgid "emails.reviewerRegister.description" -msgstr "" -"Ten mail jest wysłany do nowo zarejestrowanych recenzentów, aby powitać ich " -"na naszej platformie oraz dostarczyć login i hasło." - -msgid "emails.reviewerRegister.subject" -msgstr "Zarejestruj się jako recenzent na {$contextName}" - -msgid "emails.userValidate.description" -msgstr "" -"Ten mail jest wysyłany do nowo zarejestrowanych użytkowników, aby powitać " -"ich w naszej platformie oraz dostarczyć login i hasło." - -msgid "emails.userValidate.body" -msgstr "" -"{$userFullName}
        \n" -"
        \n" -"Stworzyłeś konto na {$contextName}, zanim zaczniesz z niego korzystać, " -"zweryfikuj adres mailowy. Aby to uczynić, kliknij link poniżej:
        \n" -"
        \n" -"{$activateUrl}
        \n" -"
        \n" -"Z poważaniem,
        \n" -"{$principalContactSignature}" - -msgid "emails.userValidate.subject" -msgstr "Zweryfikuj konto" - -msgid "emails.userRegister.body" -msgstr "" -"{$userFullName}
        \n" -"
        \n" -"Zostałeś zarejestrowany jako użytkownik platformy {$contextName}. W tym " -"mailu zawarliśmy Twój login i hasło, które są potrzebne do pracy na tej " -"stronie. W dowolnym momencie, możesz poprosić o usunięcie z listy " -"użytkowników poprzez skontaktowanie się ze mną.
        \n" -"
        \n" -"Login: {$username}
        \n" -"Hasło: {$password}
        \n" -"
        \n" -"Z poważaniem,
        \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.subject" -msgstr "Potwierdzenie zresetowania hasła" - -msgid "emails.userRegister.description" -msgstr "" -"Ten mail jest wysyłany do nowo zarejestrowanych użytkowników naszej " -"platformy, aby dostarczyć im login i hasło." - -msgid "emails.userRegister.subject" -msgstr "Rejestracja" - -msgid "emails.passwordReset.description" -msgstr "" -"Ten email jest wysłany do zarejestrowanego użytkownika, kiedy pomyślnie " -"zresetowano hasło zgodnie z procesem opisanym w wiadomości o resetowaniu " -"hasła." - -msgid "emails.passwordReset.body" -msgstr "" -"Twoje hasło zostało zresetowane na platformie {$siteTitle}
        \n" -"
        \n" -"Twój login: {$username}
        \n" -"Twoje nowe hasło: {$password}
        \n" -"
        \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.subject" -msgstr "Resetowanie hasła" - -msgid "emails.passwordResetConfirm.description" -msgstr "" -"Ten email został wysłany do zarejestrowanego użytkownika, kiedy zgłosił, że " -"zapomniał hasła lub nie może się zalogować. Wiadomość zawiera URL, którego " -"należy użyć, aby zresetować hasło." - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"Otrzymaliśmy prośbę, aby zresetować Twoje hasło na {$siteTitle}stronie.
        " -"\n" -"
        \n" -"Jeśli nie wysłałeś tej prośby, zignoruj tego maila, Twoje hasło nie zostanie " -"zmienione. Jeśli chcesz zresetować hasło, kliknij na poniższy URL.
        \n" -"
        \n" -"Zresetuj moje hasło: {$url}
        \n" -"
        \n" -"{$principalContactSignature}" - -msgid "emails.notification.description" -msgstr "" -"Ta wiadomość jest wysłana do zarejestrowanych użytkowników, którzy poprosili " -"o przesyłanie im tego rodzaju powiadomień." - -msgid "emails.notification.body" -msgstr "" -"Masz nowe powiadomienie od {$siteTitle}:
        \n" -"
        \n" -"{$notificationContents}
        \n" -"
        \n" -"Link: {$url}
        \n" -"
        \n" -"Ten mail jest automatycznie wygenerowany; proszę nie odpowiadać na tę " -"wiadomość.
        \n" -"{$principalContactSignature}" - -msgid "emails.reviewCancel.description" -msgstr "" -"Ten email jest wysyłany przez redaktora serii do recenzenta, aby " -"poinformować, że recenzja została anulowana." - -msgid "emails.reviewCancel.subject" -msgstr "Prośba o anulowanie recenzji" - -msgid "emails.reviewRemindOneclick.description" -msgstr "" -"Ten mail jest wysłany przed redaktora serii do recenzenta z przypomnieniem o " -"zbliżającym się terminie recenzji." - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Przypomnienie o recenzji zgłoszenia" - -msgid "emails.reviewRemind.description" -msgstr "" -"Ten mail został wysłany przez redaktora serii z przypomnieniem, że zbliża " -"się termin oddania recenzji." - -msgid "emails.reviewRemind.subject" -msgstr "Przypomnienie o (...)" - -msgid "emails.reviewAck.description" -msgstr "" -"Ten mail jest wysłany przez redaktora serii, aby potwierdzić otrzymanie " -"ukończonej recenzji i podziękować recenzentowi za jego pracę." - -msgid "emails.reviewAck.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Dziękujemy za oddanie recenzji zgłoszonego tekstu, " -""{$submissionTitle}," dla {$contextName}. Doceniamy Twój wkład w " -"jakość prac, które publikujemy." - -msgid "emails.reviewAck.subject" -msgstr "Powiadomienie o recenzji rękopisu" - -msgid "emails.reviewDecline.description" -msgstr "" -"Ten mail jest wysłany przez recenzenta do redaktora serii w odpowiedzi na " -"prośbę o recenzję, aby poinformować redaktora serii, że prośba o recenzję " -"została odrzucona." - -msgid "emails.reviewDecline.subject" -msgstr "Niezdolny do recenzji" - -msgid "emails.reviewConfirm.description" -msgstr "" -"Ten email jest wysłany przez recenzenta do redaktora serii w odpowiedzi na " -"prośbę o recenzję, aby poinformować, że prośba została zaakceptowana, a " -"recenzja zostanie ukończona w wyznaczonym terminie." - -msgid "emails.reviewConfirm.body" -msgstr "" -"Redaktor (redaktorzy)::
        \n" -"
        \n" -"Jestem zainteresowany recenzją zgłoszonego tekstu, , " -""{$submissionTitle}," dla {$contextName}. Dziękuję za wzięcie mnie " -"pod uwagę, planuję oddać recenzję w terminie, {$reviewDueDate}, lub " -"szybciej.
        \n" -"
        \n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.subject" -msgstr "Zdolny do recenzji" - -msgid "emails.reviewReinstate.description" -msgstr "" -"Ten email jest wysyłany przez Redaktora Serii do recenzenta, aby " -"poinformować, że recenzja została anulowana." - -msgid "emails.reviewReinstate.subject" -msgstr "Ponowienie prośby o recenzję" - -msgid "emails.reviewRequestAttached.subject" -msgstr "Prośba o recenzję rękopisu" - -msgid "emails.notificationCenterDefault.body" -msgstr "Proszę, wprowadź treść swojej wiadomości." - -msgid "emails.emailLink.description" -msgstr "" -"Ten email dostarcza zarejestrowanemu czytelnikowi możliwość wysłania " -"informacji o monografii do osoby, która może być nią zainteresowana. Jest " -"dostępny przez Narzędzia Czytelnicze i musi być aktywowany przez menedżera " -"wydawnictwa na stronie administrującej narzędzia czytelnicze." - -msgid "emails.statisticsReportNotification.body" -msgstr "" -"\n" -"{$name},
        \n" -"
        \n" -"Raport o sprawności wydawnictwa dla {$month}, {$year} jest teraz dostępny. " -"Poniżej Twoje najważniejsze statystyki dla tego miesiąca.
        \n" -"
          \n" -"\t
        • Nowe zgłoszenia w tym miesiącu: {$newSubmissions}
        • \n" -"\t
        • Odrzucone zgłoszenia w tym miesiącu: {$declinedSubmissions}
        • \n" -"\t
        • Zaakceptowane zgłoszenia w tym miesiącu: {$acceptedSubmissions}
        • \n" -"\t
        • Wszystkie zgłoszenia w systemie: {$totalSubmissions}
        • \n" -"
        \n" -"Zaloguj się do wydawnictwa po więcej szczegółów tendencje redakcyjne i statystyki opublikowanych artykułów . " -"Załączono pełną wersję miesięcznych tendencji redakcyjnych.
        \n" -"
        \n" -"Z poważaniem,
        \n" -"{$principalContactSignature}" - -msgid "emails.indexRequest.body" -msgstr "" -"{$participantName}:
        \n" -"
        \n" -"Zgłoszenie "{$submissionTitle}" do {$contextName} potrzebuje " -"utworzenia indeksów wedle następujących kroków.
        \n" -"1. Kliknij poniższy adres URL zgłoszenia.
        \n" -"2. Zaloguj się do wydawnictwa i użyj pliku korekty, aby utworzyć korektę " -"szpaltową zgodnie z wytycznymi tego wydawnictwa.
        \n" -"3. Wyślij email ukończenia do redaktora.
        \n" -"
        \n" -"{$contextName} URL: {$contextUrl}
        \n" -"Adres URL zgłoszenia: {$submissionUrl}
        \n" -"Login: {$participantUsername}
        \n" -"
        \n" -"Jeśli nie jesteś w stanie podjąć się tego zadania lub masz jakiekolwiek " -"pytania, proszę, skontaktuj się ze mną. Dziękujemy za Twój wkład w pracę " -"wydawnictwa.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.statisticsReportNotification.description" -msgstr "" -"Ten email jest automatycznie wysyłany co miesiąc do redaktorów i menedżerów " -"czasopisma, aby dać im wgląd w sprawność systemu." - -msgid "emails.statisticsReportNotification.subject" -msgstr "Zadanie redakcyjne dla {$month}, {$year}" - -msgid "emails.notificationCenterDefault.description" -msgstr "" -"Domyślna (pusta) wiadomość użyta w Listbuilder Centrum Wiadomości " -"Powiadomień." - -msgid "emails.emailLink.subject" -msgstr "Manuskrypt, który może Cię zainteresować" - -msgid "emails.indexComplete.subject" -msgstr "Ukończono Indeks Szczotki Drukarskiej" - -msgid "emails.layoutRequest.description" -msgstr "" -"Ten email od Redaktora Serii do Redaktora Składu zawiera informacje o " -"przypisaniu ich do zadania edycji wersji graficznej zgłoszenia. Dostarcza " -"też informacje o zgłoszeniu i dostępie do niego." - -msgid "emails.layoutComplete.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Szczotki zostały przygotowane dla manuskryptu, " -""{$submissionTitle}," dla {$contextName} i są gotowe do korekty.<" -"br />\n" -"
        \n" -"W razie pytań, proszę, skontaktuj się ze mną.
        \n" -"
        \n" -"{$signatureFullName}" - -msgid "emails.layoutComplete.subject" -msgstr "Ukończono korektę szpaltową układu graficznego" - -msgid "emails.layoutRequest.subject" -msgstr "Prośba o szczotkę" - -msgid "emails.editorRecommendation.description" -msgstr "" -"Ten email od rekomendującego redaktora albo sekcji redaktorskiej do " -"decyzyjnych redaktorów albo sekcji redaktorskiej zawiera informacje o " -"finalnej rekomendacji w sprawie zgłoszenia." - -msgid "emails.layoutRequest.body" -msgstr "" -"{$participantName}:
        \n" -"
        \n" -"Zgłoszenie "{$submissionTitle}" dla {$contextName} potrzebuje, aby " -"nanieść korektę szpaltową wedle następujących kroków.
        \n" -"1. Kliknij poniższy adres URL zgłoszenia.
        \n" -"2. Zaloguj się do wydawnictwa i użyj pliku wersji z układem graficznym, aby " -"stworzyć szpaltę zgodnie ze standardami wydawnictwa.
        \n" -"3. Wyślij email ZAKOŃCZONO do edytora.
        \n" -"
        \n" -"{$contextName} URL: {$contextUrl}
        \n" -"Adres URL zgłoszenia: {$submissionUrl}
        \n" -"Login: {$participantUsername}
        \n" -"
        \n" -"Jeśli nie możesz podjąć się tego zlecenialub masz jakiekolwiek pytania, " -"proszę, skontaktuj się ze mną. Dziękujemy, za Twój wkład w pracę wydawnictwa." - -msgid "emails.reviewRequestAttached.description" -msgstr "" -"Ten mail został wysłany przez redaktora serii do recenzenta z prośbą o " -"przyjęcie lub odrzucenie zlecenia recenzji tekstu. W załączniku link do " -"zaproponowanego tekstu. Wiadomość (...)" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "" -"Ten email jest automatycznie wysłany, kiedy recenzentowi upłynął termin (" -"zobacz Opcje Recenzji w segmencie Ustawienia>Workflow>Recenzja) i " -"przełącznik one-click recenzenta jest wyłączony. Zaplanowane zadania muszą " -"być nieaktywne i skonfigurowane (zobacz plik konfiguracji strony)." - -msgid "emails.reviewRemindAuto.description" -msgstr "" -"Ten email jest automatycznie wysłany, kiedy recenzentowi upłynął termin (" -"zobacz Opcje Recenzji w segmencie Ustawienia>Workflow>Recenzja) i " -"przełącznik one-click recenzenta jest wyłączony. Zaplanowane zadania muszą " -"być nieaktywne i skonfigurowane (zobacz plik konfiguracji strony)." - -msgid "emails.reviewRemind.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Uprzejmie przypominamy o naszej prośbie o recenzję zgłoszenia " -""{$submissionTitle}," dla: {$contextName}. Mamy nadzieję otrzymać " -"recenzję przed: {$reviewDueDate}, chociaż bylibyśmy usatysfakcjonowani, " -"jeśli otrzymamy ją tak szybko, jak to możliwe.
        \n" -"
        \n" -"Jeśli nie posiadasz loginu lub hasła, użyj linku poniżej do resetu hasła (" -"który zostanie wysłane razem z loginem). {$passwordResetUrl}
        \n" -"
        \n" -"Adres URL zgłoszenia: {$submissionReviewUrl}
        \n" -"
        \n" -"Login: {$reviewerUserName}
        \n" -"
        \n" -"Prosimy, potwierdź możliwość wniesienia tego znaczącego wkładu w pracę " -"wydawnictwa. Z niecierpliwością oczekuję na odpowiedź.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewCancel.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Zdecydowaliśmy o wycofaniu naszej prośby o recenzję tekstu, " -""{$submissionTitle}," dla {$contextName}. Przepraszamy za " -"niedogodności, jakie mogliśmy spowodować i mamy nadzieję, że w przyszłości " -"będziemy mogli się kontaktować z prośbą o udział w redakcji innych tekstów. " -"\n" -"
        \n" -"
        \n" -"W razie pytań, proszę skontaktuj się ze mną." - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "" -"Ten mail został wysłany automatycznie, ponieważ upłynął termin potwierdzenia " -"recenzenta (zobacz Opcje Recenzji w Ustawienia>Workflow>Recenzja) i " -"przełącznik one-click recenzenta jest nieaktywny. Zaplanowane zadanie muszą " -"być nieaktywne i skonfigurowane (zobacz plik konfiguracji strony)." - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Szanowny/ Szanowna {$reviewerName},
        \n" -"Uprzejmie przypominamy o naszej prośbie o recenzję zgłoszenia " -""{$submissionTitle}," dla {$contextName}. Mamy nadzieję otrzymać " -"od Ciebie odpowiedź do {$responseDueDate}, ten email został wysłany " -"automatycznie i zawiera zgodę na przekazywanie danych.\n" -"
        \n" -"{$messageToReviewer}
        \n" -"
        \n" -"Proszę, zaloguj się na stronie wydawnictwa, aby zaznaczyć, czy podejmujesz " -"się recenzji, a także, aby uzyskać dostęp do zgłoszenia oraz zarejestrować " -"swoją recenzję i rekomendację.
        \n" -"
        \n" -"Termin recenzji {$reviewDueDate}.
        \n" -"
        \n" -"Adres URL zgłoszenia: {$submissionReviewUrl}
        \n" -"
        \n" -"Login: {$reviewerUserName}
        \n" -"
        \n" -"Dziękujemy za rozpatrzenie naszej prośby.
        \n" -"
        \n" -"
        \n" -"Z poważaniem,
        \n" -"{$editorialContactSignature}
        \n" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Ufam, że będziesz świetnym recenzentem manuskryptu, " -""{$submissionTitle}," i proszę o rozważenie podjęcia się tego " -"ważnego dla nas zadania. Wskazówki dla recenzentów naszego wydawnictwa są " -"załączone poniżej, a zgłoszenie znajduje się w załączniku emaila. Twoja " -"recenzja zgłoszenia, razem z rekomendacjami powinna być wysłana do mnie " -"emailem przed: {$reviewDueDate}.
        \n" -"
        \n" -"Proszę, określ w odpowiedzi na tę wiadomość przed {$weekLaterDate}, czy masz " -"możliwość i chęć podjęcia się recenzji.
        \n" -"
        \n" -"Dziękujemy za rozpatrzenie naszej prośby.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"Wskazówki dla recenzentów
        \n" -"
        \n" -"{$reviewGuidelines}
        \n" - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "" -"Ten mail jest wysłany automatycznie, kiedy upływa data potwierdzenia " -"recenzenta (zobacz Opcje Recenzji w: Ustawienia>Workflow>Recenzja) i " -"przełącznik one-click recenzenta jest nieaktywny. Zaplanowane zadania muszą " -"być aktywowane i skonfigurowane (zobacz plik konfiguracji strony)." - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"Uprzejmie przypominamy o naszej prośbie o zrecenzowanie zgłoszenia " -""{$submissionTitle}," dla {$contextName}. Mamy nadzieję otrzymać " -"odpowiedź przed: {$responseDueDate}. Ten email został wysłany automatycznie " -"w momencie upływu terminu.\n" -"
        \n" -"Ufam, że będziesz świetnym recenzentem manuskryptu " -""{$submissionTitle}," które zostało zgłoszone do: {$contextName}. " -"Abstrakt zgłoszenia został załączony poniżej, mam nadzieję, że rozważysz " -"podjęcie się tego ważnego dla nas zadania.
        \n" -"
        \n" -"Proszę, zaloguj się na stronę wydawnictwa przed {$weekLaterDate}, aby " -"oświadczyć, czy podejmujesz się recenzji, a także aby mieć dostęp do " -"zgłoszenia oraz wgrać swoje recenzje i rekomendacje.
        \n" -"
        \n" -"Termin oddania recenzji: {$reviewDueDate}.
        \n" -"
        \n" -"Adres URL zgłoszenia: {$submissionReviewUrl}
        \n" -"
        \n" -"Dziękujemy, za rozpatrzenie naszej prośby.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -""{$submissionTitle}"
        \n" -"
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract}" - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Witaj,
        \n" -"
        \n" -"{$submitterName} zgłosił manuskrypt, "{$submissionTitle}" do " -"{$contextName}.
        \n" -"
        \n" -"W razie pytań, proszę skontaktuj się ze mną. Dziękujemy za wybranie naszego " -"wydawnictwa.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.body" -msgstr "" -"Czytelnicy:
        \n" -"
        \n" -"{$contextName} właśnie opublikował swoją najnowszą książkę na: {$contextUrl}" -". Zapraszamy Was do przejrzenia spisu treści oraz odwiedzenia naszej strony " -"internetowej w celu zapoznania się z innymi monografiami i pozycjami z " -"Waszego obszaru zainteresowania.
        \n" -"
        \n" -"Dziękujemy za ciągłe zainteresowanie naszą pracą,
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewerRegister.body" -msgstr "" -"Mając na uwadze Twoje doświadczenie, zarejestrowaliśmy Twoje imię i nazwisko " -"w bazie recenzentów dla {$contextName}. Nie jest to w żaden sposób " -"zobowiązujące dla Ciebie, ale po prostu pozwala nam na skontaktowanie się z " -"Tobą w sprawie zgłoszeń do recenzji. Po zaproszeniu do recenzji, będziesz " -"miał możliwość przeczytania tytułu i abstraktu proponowanej rozprawy, przy " -"czym zawsze możesz odmówić lub przyjąć zaproszenie. W dowolnym momencie " -"możesz również poprosić o usunięcie Twojego imienia i nazwiska z listy " -"recenzentów.
        \n" -"
        \n" -"Przekazujemy Ci login i hasło, które będą używane we wszelkich interakcjach " -"z wydawnictwem poprzez tę stronę. Możesz chcieć np. zaktualizować swój " -"profil, podając obszar swoich zainteresowań naukowych.
        \n" -"
        \n" -"Login: {$username}
        \n" -"Hasło: {$password}
        \n" -"
        \n" -"Dziękujemy,
        \n" -"{$principalContactSignature}" - -msgid "emails.reviewRequestOneclick.description" -msgstr "" -"Ten mail od Redaktora Serii do Recenzenta zawiera prośbę o akceptację lub " -"odrzucenie zadania napisania recenzji zgłoszenia. Dostarcza informacji o " -"zgłoszeniu, tj. tytuł i abstrakt, termin oddania recenzji i jak uzyskać " -"dostęp do zgłoszenia. Wiadomość jest wysyłana, kiedy zaznaczono Standardowy " -"Proces Recenzji w segmencie Zarządzanie>Ustawienia>Workflow>Recenzja i kiedy " -"aktywowano przełącznik one-click recenzenta." - -msgid "emails.reviewRequest.description" -msgstr "" -"Ten mail od Redaktora Serii do Recenzenta zawiera prośbę o akceptację lub " -"odrzucenie zadania napisania recenzji zgłoszenia. Dostarcza informacji o " -"zgłoszeniu, tj. tytuł i abstrakt, termin oddania recenzji i jak uzyskać " -"dostęp do zgłoszenia. Wiadomość jest wysyłana, kiedy zaznaczono Standardowy " -"Proces Recenzji w segmencie Zarządzanie>Ustawienia>Workflow>Recenzja. (W " -"przeciwnym wypadku zobacz REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.submissionAckNotUser.description" -msgstr "" -"Ten email, uaktywniony, jest automatycznie wysyłany do innych autorów, " -"którzy nie są użytkownikami OMP określonego w procesie zgłoszenia." - -msgid "emails.publishNotify.description" -msgstr "" -"Ten email jest wysłany do zarejestrowanych czytelników poprzez link \"" -"Powiadom użytkowników\" z panelu sterowania redaktora. Powiadamia " -"czytelników o nowych książkach i zaprasza do odwiedzenia wydawnictwa pod " -"dostarczonym adresem URL." - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Ufam, że będziesz świetnym recenzentem manuskryptu " -""{$submissionTitle}," które zostało zgłoszone do: {$contextName}. " -"Abstrakt zgłoszenia został załączony poniżej, mam nadzieję, że rozważysz " -"podjęcie się tego ważnego dla nas zadania.
        \n" -"
        \n" -"Proszę, zaloguj się na stronę wydawnictwa przed {$weekLaterDate}, aby " -"oświadczyć, czy podejmujesz się recenzji, a także aby mieć dostęp do " -"zgłoszenia oraz wgrać swoje recenzje i rekomendacje.
        \n" -"
        \n" -"Termin oddania recenzji: {$reviewDueDate}.
        \n" -"
        \n" -"Adres URL zgłoszenia: {$submissionReviewUrl}
        \n" -"
        \n" -"Dziękujemy, za rozpatrzenie naszej prośby.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -""{$submissionTitle}"
        \n" -"
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract}" - -msgid "emails.editorAssign.subject" -msgstr "Zadania redakcyjne" - -msgid "emails.announcement.description" -msgstr "Ten email jest wysyłany, kiedy pojawia się nowe ogłoszenie." - -msgid "emails.announcement.body" -msgstr "" -"{$title}
        \n" -"
        \n" -"{$summary}
        \n" -"
        \n" -"Odwiedź naszą stronę, , aby przeczytać całe " -"ogłoszenie." - -msgid "emails.announcement.subject" -msgstr "{$title}" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "" -"Ten mail jest wysyłany do autora, kiedy redaktor odrzuca tekst przez " -"rozpoczęciem procedury recenzji" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\t{$authorName}:
        \n" -"
        \n" -"Podjęliśmy decyzję odnośnie zgłoszonego tekstu do: {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Nasza decyzja:
        \n" -"
        \n" -"URL rękopisu: {$submissionUrl}\n" -"\t\t" - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Decyzja redaktora" - -msgid "emails.notificationCenterDefault.subject" -msgstr "Wiadomość dotycząca {$contextName}" - -msgid "emails.notifyFile.description" -msgstr "" -"Powiadomienie od użytkownika wysłane z modalnego centrum informacji o pliku" - -msgid "emails.notifyFile.body" -msgstr "" -"Masz wiadomość od {$sender} dotyczącą pliku "{$fileName}" w " -""{$submissionTitle}" ({$monographDetailsUrl}):
        \n" -"
        \n" -"\t\t{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifyFile.subject" -msgstr "Powiadomienie o pliku zgłoszenia" - -msgid "emails.notifySubmission.description" -msgstr "" -"Powiadomienie od użytkownika wysłane z modalnego centrum informacji o " -"zgłoszeniach." - -msgid "emails.notifySubmission.body" -msgstr "" -"Masz wiadomość od: {$sender} dotyczącą "{$submissionTitle}" " -"({$monographDetailsUrl}):
        \n" -"
        \n" -"\t\t{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifySubmission.subject" -msgstr "Powiadomienie o zgłoszeniu tekstu" - -msgid "emails.emailLink.body" -msgstr "" -"Możesz być zainteresowany zapoznaniem się z "{$submissionTitle}" " -"{$authorName} opublikowanym w tomie: {$volume}, numer {$number} ({$year}) z " -"{$contextName} w: "{$monographUrl}"." - -msgid "emails.indexComplete.description" -msgstr "" -"Ten email jest wysłany od indeksującego do redaktora serii, aby powiadomić, " -"że ukończono proces tworzenia indeksu." - -msgid "emails.indexComplete.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Indeksy do manuskryptu "{$submissionTitle} dla {$contextName} zostały " -"przygotowane i są gotowe do korekty.
        \n" -"
        \n" -"W razie pytań skontaktuj się ze mną.
        \n" -"
        \n" -"{$signatureFullName}" - -msgid "emails.indexRequest.description" -msgstr "" -"Ten email jest wysłany od Redaktora serii do indeksującego, aby powiadomić, " -"że został przydzielony do zrobienia indeksu dla zgłoszenia. Dostarcza " -"informacje o zgłoszeniu i dostępie do niego." - -msgid "emails.indexRequest.subject" -msgstr "Prośba o indeks" - -msgid "emails.layoutComplete.description" -msgstr "" -"Ten mail jest wysłany od edytora układu scalonego do redaktora serii z " -"informacją, że proces składania tekstu został zakończony." - -msgid "emails.copyeditRequest.description" -msgstr "" -"Ten mail jest wysłany przez redaktora serii do korektora z prośbą o " -"rozpoczęcie procedury korekty. Zawiera informacje odnośnie zgłoszonego " -"tekstu i dostępu do niego." - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$participantName}:
        \n" -"
        \n" -"Proszę o dokonanie korekty "{$submissionTitle}" dla {$contextName} " -"następującymi krokami .
        \n" -"1. Kliknij poniżej URL zgłoszonego tekstu.
        \n" -"2. Zaloguj się na stronę wydawnictwa i kliknij w plik, który pojawi się w " -"kroku 1.
        \n" -"3. Sprawdź instrukcje korekty zamieszczone na stronie.
        \n" -"4. Otwórz pobrany plik i dokonaj korekty and copyedit, while adding Author " -"Queries as needed.
        \n" -"5. Zapisz korektę i dodaj do Kroku 1 procesu korekty.
        \n" -"6. Wyślij maila z informacje o ukończeniu korekty do redaktora.
        \n" -"
        \n" -"{$contextName} URL: {$contextUrl}
        \n" -"URL tekstu: {$submissionUrl}
        \n" -"Login: {$participantUsername}" - -msgid "emails.copyeditRequest.subject" -msgstr "Prośba o korektę" - -msgid "emails.editorRecommendation.body" -msgstr "" -"{$editors}:
        \n" -"
        \n" -"Zalecenia odnośnie zgłoszonego tekstu do{$contextName}, " -""{$submissionTitle}" to: {$recommendation}" - -msgid "emails.editorRecommendation.subject" -msgstr "Zalecenia redaktora" - -msgid "emails.editorDecisionDecline.description" -msgstr "" -"Ten mail jest wysłany od edytora serii do autora z powiadomieniem o " -"ostatecznej decyzji odnośnie złożonego tekstu." - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Podjęliśmy decyzję odnośnie zgłoszonego tekstu do: {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Nasza decyzja:
        \n" -"
        \n" -"URL rękopisu: {$submissionUr" - -msgid "emails.editorDecisionDecline.subject" -msgstr "Decyzja redaktora" - -msgid "emails.editorDecisionResubmit.description" -msgstr "" -"Ten mail jest wysłany od edytora serii do autora z powiadomieniem o " -"ostatecznej decyzji odnośnie złożonego tekstu." - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Podjęliśmy decyzję odnośnie zgłoszonego tekstu do: {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Nasza decyzja:
        \n" -"
        \n" -"URL rękopisu: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Decyzja redaktora" - -msgid "emails.editorDecisionRevisions.description" -msgstr "" -"Ten mail jest wysłany od edytora serii do autora z powiadomieniem o " -"ostatecznej decyzji odnośnie złożonego tekstu." - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Podjęliśmy decyzję odnośnie zgłoszonego tekstu {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Nasza decyzja:
        \n" -"
        \n" -"URL rękopisu: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Decyzja redaktora" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "" -"Ten email jest wysyłany od redaktora lub redaktora serii do autora, aby " -"powiadomić, że jego zgłoszenia zostało wysłane do dalszej realizacji." - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Redagowanie zgłoszonego tekstu, "{$submissionTitle}," zostało " -"ukończone. Tekst jest przesyłany teraz do dalszej realizacji.
        \n" -"
        \n" -"URL rękopisu: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Decyzja redaktora" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "" -"Ten mail jest wysłany od edytora serii do autora z powiadomieniem, że jego " -"tekst jest przesyłany do zewnętrznych recenzji." - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Podjęliśmy decyzję odnośnie zgłoszonego tekstu do: {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Nasza decyzja:
        \n" -"
        \n" -"URL manuskryptu: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Decyzja redaktora" - -msgid "emails.editorDecisionAccept.description" -msgstr "" -"Ten mail jest wysłany od redaktora serii do autora z powiadomieniem o " -"ostatecznej decyzji dotyczącej zgłoszonego przez niego tekstu." - -msgid "emails.editorDecisionAccept.body" -msgstr "" -"{$authorName}:
        \n" -"
        \n" -"Podjęliśmy decyzję odnośnie Pańskiego zgłoszenia do {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Nasza decyzja:
        \n" -"
        \n" -"URL rękopisu: {$submissionUrl}" - -msgid "emails.editorDecisionAccept.subject" -msgstr "Decyzja redaktora" - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Przypomnienie o prośbie o recenzję zgłoszonego tekstu, " -""{$submissionTitle}," dla {$contextName}. Liczymy, że recenzja " -"zostanie dostarczona przed {$reviewDueDate}. Ta wiadomość została " -"automatycznie wysłana w dniu przekroczenia wyznaczonego terminu. Mimo to, " -"chcielibyśmy otrzymać recenzję możliwie jak najszybciej.
        \n" -"
        \n" -"URL zgłoszenia: {$submissionReviewUrl}
        \n" -"
        \n" -"Prosimy, potwierdź swoją gotowość do wniesienia tego znaczącego wkładu do " -"pracy naszego wydawnictwa. Z niecierpliwością czekam na odpowiedź.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Automatyczne przypomnienie o dostarczeniu recenzji" - -msgid "emails.reviewRemindAuto.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Przypomnienie o prośbie o recenzję tekstu, "{$submissionTitle}," " -"dla {$contextName}. Mamy nadzieję, aby otrzymać recenzję przed " -"{$reviewDueDate}, ten mail został wysłany automatycznie w momencie upływu " -"tego terminu. Mimo tego, chcielibyśmy otrzymać recenzję możliwie jak " -"najszybciej.
        \n" -"
        \n" -"Jeśli nie posiadasz loginu lub hasła do strony internetowej wydawnictwa, " -"użyj tego linku, aby zresetować hasło (które zostanie do Ciebie wysłane " -"razem z loginem). {$passwordResetUrl}
        \n" -"
        \n" -"URL zgłoszonego tekstu: {$submissionReviewUrl}
        \n" -"
        \n" -"Login: {$reviewerUserName}
        \n" -"
        \n" -"Prosimy, potwierdź swoją gotowość do wniesienia tego znaczącego wkładu do " -"pracy naszego wydawnictwa. Z niecierpliwością czekam na odpowiedź.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.subject" -msgstr "Automatyczne przypomnienie o recenzji zgłoszenia" - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Przypomnienie o naszej prośbie o recenzje zgłoszonego tekstu, " -""{$submissionTitle}," dla {$contextName}. Mamy nadzieję na " -"otrzymanie recenzji przed {$reviewDueDate}, prosimy o dostarczenie jej na " -"tyle szybko, na ile jest w stanie Pan/ Pani ją przygotować. .
        \n" -"
        \n" -"URL zgłoszonego tekstu: {$submissionReviewUrl}
        \n" -"
        \n" -"Prosimy, potwierdź możliwość wniesienia tego znaczącego wkładu w pracę " -"wydawnictwa. Z niecierpliwością oczekuję na odpowiedź. .
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewDecline.body" -msgstr "" -"Redaktor (redaktorzy): :
        \n" -"
        \n" -"Obawiam się, że nie jestem w stanie w chwili obecnej zrecenzować zgłoszony " -"tekst, "{$submissionTitle}," dla {$contextName}. Dziękuję za " -"wzięcie mnie pod uwagę, (...)
        \n" -"
        \n" -"{$reviewerName}" - -msgid "emails.reviewReinstate.body" -msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Piszemy, aby ponowić prośbę o recenzję tekstu, " -""{$submissionTitle}," dla {$contextName}. Mamy nadzieję, że " -"weźmiesz udział w procedurze recenzji dla tego pisma.
        \n" -"
        \n" -"W razie pytań, proszę, kontaktuj się ze mną." - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Prośba o recenzję rękopisu" - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Prośba o recenzję rękopisu" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Prośba o recenzję rękopisu" - -msgid "emails.editorAssign.description" -msgstr "" -"Ta wiadomość powiadamia redaktora serii, że został przypisany do " -"nadzorowania zgłoszenia podczas procesu redakcyjnego. Dostarcza informacje o " -"zgłoszeniu oraz dostępie do strony wydawnictwa." diff --git a/locale/pl_PL/locale.po b/locale/pl_PL/locale.po deleted file mode 100644 index a70be97a910..00000000000 --- a/locale/pl_PL/locale.po +++ /dev/null @@ -1,1626 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-15 13:16+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "catalog.coverImageTitle" -msgstr "Okładka" - -msgid "submission.pdf.download" -msgstr "Pobierz ten plik PDF" - -msgid "debug.notes.helpMappingLoad" -msgstr "" -"Ponowne załadowanie XML pomoże plikowi mapowanemu {$filename} w poszukiwaniu " -"{$id}." - -msgid "rt.metadata.pkp.dctype" -msgstr "Książka" - -msgid "payment.directSales.monograph.description" -msgstr "" -"Ta transakcja została przeprowadzona, aby nabyć pojedynczą monografię lub " -"jej rozdział poprzez bezpośrednie pobranie." - -msgid "payment.directSales.monograph.name" -msgstr "Zakup monografię lub pobierz rozdział" - -msgid "payment.directSales.download" -msgstr "Pobierz {$format}" - -msgid "payment.directSales.purchase" -msgstr "Zakup{$format} ({$amount} {$currency})" - -msgid "payment.directSales.validPriceRequired" -msgstr "Aktualna cena jest wymagana." - -msgid "payment.directSales.price.description" -msgstr "" -"Format pliku może być dostępny do pobrania ze strony wydawnictwa poprzez " -"otwarty dostęp bez kosztów dla czytelników i w trakcie sprzedaży " -"bezpośredniej (używając płatności online jak ustalono w dziale dystrybucji). " -"Dla tego pliku oznacz podstawę dostępu." - -msgid "payment.directSales.openAccess" -msgstr "Otwarty dostęp" - -msgid "payment.directSales.notSet" -msgstr "Nie ustawiono" - -msgid "payment.directSales.notAvailable" -msgstr "Niedostępny" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.directSales" -msgstr "Sprzedaż bezpośrednia" - -msgid "payment.directSales.numericOnly" -msgstr "Ceny nie powinny zawierać symboli walut." - -msgid "payment.directSales.priceCurrency" -msgstr "Cena ({$currency})" - -msgid "payment.directSales.approved" -msgstr "Zatwierdzono" - -msgid "payment.directSales.catalog" -msgstr "Katalog" - -msgid "payment.directSales.availability" -msgstr "Dostępność" - -msgid "payment.directSales.price" -msgstr "Cena" - -msgid "payment.directSales" -msgstr "Ściągnij ze strony wydawnictwa" - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "" -"Odmowa dostępu! Grupa użytkowników, do której obecnie należysz, nie została " -"przypisana do tego etapu pracy. Sprawdź swoje ustawienia zlecenia." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Odmowa dostępu! Nie przypisano Cię do tego etapu prac." - -msgid "user.authorization.seriesAssignment" -msgstr "" -"Próbujesz uzyskać dostęp do monografii, która nie jest częścią twojej serii." - -msgid "user.authorization.noContext" -msgstr "Brak wydań w kontekście!" - -msgid "user.authorization.invalidMonograph" -msgstr "Nieważna lub niewymagana monografia!" - -msgid "user.authorization.monographFile" -msgstr "Odmówiono dostępu do określonego pliku monografii." - -msgid "user.authorization.monographReviewer" -msgstr "Odmówiono dostępu. Nie jesteś przypisanym recenzentem tej monografii." - -msgid "user.authorization.monographAuthor" -msgstr "Odmówiono dostępu. Nie jesteś autorem tej monografii." - -msgid "user.authorization.invalidReviewAssignment" -msgstr "Odmówiono dostępu. Nie jesteś adekwatnym recenzentem do tej monografii." - -#, fuzzy -msgid "notification.type.visitCatalog" -msgstr "" -"Monografia została zatwierdzona. Proszę odwiedź katalog, używając powyższego " -"linku, aby zarządzać szczegółami katalogu." - -msgid "notification.type.visitCatalogTitle" -msgstr "Zarządzanie katalogiem" - -msgid "notification.type.configurePaymentMethod" -msgstr "" -"Wymagana jest konfiguracja płatności zanim zdefiniujesz ustawienia " -"e-commerce." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Nie skonfigurowano metody płatności." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "" -"Monografia nie zostanie umieszczona w katalogu do momentu publikacji. Aby " -"dodać książkę do katalogu, kliknij zakładkę publikacji." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Oczekuje na zatwierdzenie." - -msgid "notification.type.approveSubmission" -msgstr "" -"Zgłoszenie obecnie oczekuje zatwierdzenia w narzędziu pozycji katalogowej " -"zanim pojawi się w publicznym katalogu." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Rozpoczęto proces recenzji wewnętrznych." - -msgid "notification.type.indexRequest" -msgstr "Zostałeś poproszony o stworzenie indeksu dla \"{$title}\"." - -msgid "notification.type.layouteditorRequest" -msgstr "Zostałeś poproszony o recenzję składu \"{$title}\"." - -msgid "notification.type.copyeditorRequest" -msgstr "Zostałeś poproszony o sprawdzenie redakcji \"{$file}\"." - -msgid "notification.type.editorAssignmentTask" -msgstr "Zgłoszono nową monografię, do której należy przypisać redaktora." - -msgid "notification.type.public" -msgstr "Ogłoszenia publiczne" - -msgid "notification.type.userComment" -msgstr "Czytelnik skomentował \"{$title}\"." - -msgid "notification.type.submissions" -msgstr "Działania zgłoszeniowe" - -msgid "notification.type.site" -msgstr "Działania na stronie" - -msgid "notification.type.reviewing" -msgstr "Działania recenzenckie" - -msgid "notification.type.editing" -msgstr "Działania redakcyjne" - -msgid "notification.type.submissionSubmitted" -msgstr "Została zgłoszona nowa monografia \"{$title},\"." - -msgid "notification.removedSubmission" -msgstr "Anulowano zgłoszenie." - -msgid "notification.proofsApproved" -msgstr "Zatwierdzono korektę." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Zapisano metadane formatu publikacji." - -msgid "notification.savedCatalogMetadata" -msgstr "Zapisano metadane katalogu." - -msgid "notification.removedSpotlight" -msgstr "Usunięto wyróżnione." - -msgid "notification.editedSpotlight" -msgstr "Zmieniono wyróżnione." - -msgid "notification.addedSpotlight" -msgstr "Dodano wyróżnione." - -msgid "notification.removedMarket" -msgstr "Usunięto rynek." - -msgid "notification.editedMarket" -msgstr "Zmieniono rynek." - -msgid "notification.addedMarket" -msgstr "Dodano rynek." - -msgid "notification.editedRepresentative" -msgstr "Zmieniono przedstawiciela." - -msgid "notification.addedRepresentative" -msgstr "Dodano przedstawiciela." - -msgid "notification.removedSalesRights" -msgstr "Usunięto prawa sprzedaży." - -msgid "notification.editedSalesRights" -msgstr "Zmieniono prawa sprzedaży." - -msgid "notification.addedSalesRights" -msgstr "Dodano prawa sprzedaży." - -msgid "notification.removedPublicationFormat" -msgstr "Usunięto format publikacji." - -msgid "notification.editedPublicationFormat" -msgstr "Zmieniono format publikacji." - -msgid "notification.addedPublicationFormat" -msgstr "Dodano format publikacji." - -msgid "notification.removedPublicationDate" -msgstr "Usunięto datę publikacji." - -msgid "notification.editedPublicationDate" -msgstr "Zmieniono datę publikacji." - -msgid "notification.addedPublicationDate" -msgstr "Dodano datę publikacji." - -msgid "notification.removedIdentificationCode" -msgstr "Usunięto kod identyfikacyjny." - -msgid "notification.editedIdentificationCode" -msgstr "Zmieniono kod identyfikacyjny." - -msgid "notification.addedIdentificationCode" -msgstr "Dodano kod identyfikacyjny." - -msgid "log.imported" -msgstr "{$userName} wprowadził monografię {$submissionId}." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} zgłosił {$submissionId} do rozplanowania." - -msgid "log.proofread.assign" -msgstr "" -"{$assignerName} przypisał {$proofreaderName} do korekty zgłoszenia " -"{$submissionId}." - -msgid "log.editor.editorAssigned" -msgstr "" -"{$editorName} został przypisane do zgłoszenia {$submissionId} jako redaktor." - -msgid "log.editor.restored" -msgstr "Zgłoszenie {$submissionId} zostało przywrócone do kolejki." - -msgid "log.editor.archived" -msgstr "Zgłoszenie {$submissionId} zostało zarchiwizowane." - -msgid "log.editor.recommendation" -msgstr "" -"Rekomendacja redaktorska ({$decision}) dla monografii {$submissionId} " -"została odnotowana przez {$editorName}." - -msgid "log.editor.decision" -msgstr "" -"Decyzja redaktorska ({$decision}) dla monografii {$submissionId} została " -"zanotowana przez {$editorName}." - -msgid "log.review.reviewUnconsidered" -msgstr "" -"{$editorName} oznaczył rundę {$round} recenzji zgłoszenia {$submissionId} " -"jako nierozstrzygniętą." - -msgid "log.review.reviewAccepted" -msgstr "" -"{$reviewerName} weźmie udział w rundzie {$round} recenzji dla zgłoszenia " -"{$submissionId}." - -msgid "log.review.reviewDeclined" -msgstr "" -"{$reviewerName} odmówił udziału w rundzie {$round} recenzji dla zgłoszenia " -"{$submissionId}." - -msgid "log.review.reviewDueDateSet" -msgstr "" -"Końcowy termin rundy {$round} recenzji zgłoszenia {$submissionId} przez " -"{$reviewerName} został ustalony na {$dueDate}." - -msgid "installer.upgradeComplete" -msgstr "" -"

        Aktualizacja wersji {$version} OMP została pomyślnie zakończona.

        \n" -"

        Nie zapomnij ustawić zainstalowanych ustawień w konfiguracji Twojej kopii " -"zapasowej pliku config.inc.php z powrotem doOn.

        \n" -"

        Jeśli się jeszcze nie zarejestrowałeś i chciałbyś otrzymywać wiadomości i " -"najnowsze doniesienia, zarejestruj się na http://pkp.sfu.ca/omp/" -"register. Jeśli masz pytania lub komentarze odwiedź forum " -"wsparcia. visit the " -"support forum.

        " - -msgid "installer.installationComplete" -msgstr "" -"

        Pomyślnie zakończone instalację OMP.

        \n" -"

        Aby zacząć korzystać z systemu zaloguj się " -"loginem i hasłem wprowadzonymi na poprzedniej stronie.

        \n" -"

        Jeśli chciałbyś otrzymywać wiadomości i ostatnie doniesienia " -"zarejestruj się na http://pkp.sfu.ca/omp/register. Jeśli masz pytania lub " -"komentarze, odwiedź " -"forum wsparcia.

        " - -msgid "installer.overwriteConfigFileInstructions" -msgstr "" -"

        WAŻNE!

        \n" -"

        Program instalacyjny nie mógł automatycznie zastąpić pliku konfiguracji. " -"Zanim spróbujesz korzystać z systemu, proszę otwórz config.inc.php " -"w odpowiednim edytorze tekstu i zastąp jego zawartość tekstem z poniższego " -"pola.

        " - -msgid "installer.upgradeApplication" -msgstr "Aktualizuj Open Mongraph Press" - -msgid "installer.databaseSettingsInstructions" -msgstr "" -"OMP wymaga dostępu do SQL bazy danych aby zachować swoje dane. Zobacz " -"wymagania systemu powyżej, aby otrzymać listę obsługiwanych baz danych. W " -"polach poniżej podaj ustawienia, które będą użyte do połączenia się z bazą " -"danych." - -msgid "installer.filesDirInstructions" -msgstr "" -"Wprowadź pełną ścieżkę dostępu do istniejącego foldery, gdzie są " -"przechowywane ściągnięte pliki. Ten folder nie powinien mieć bezpośredniego " -"dostępu do sieci. Przed instalacją upewnij się, że folder istnieje i " -"jest możliwy do zapisania. Nazwa ścieżki dostępu Windowsa powinna " -"być poprzedzona ukośnikami, np. \"C:/mypress/files\"." - -msgid "installer.additionalLocalesInstructions" -msgstr "" -"Wybierz dodatkowy język do obsługi systemu. Te języki będą dostępne do " -"użytkowania dla wydawnictw obsługiwanych przez stronie. Dodatkowe języki " -"mogą być zainstalowane w dowolnym momencie przez interfejs administracji " -"strony. Ustawienia regionalne oznaczone * mogą być niekompletne." - -msgid "installer.localeInstructions" -msgstr "" -"Główny język stosowany w tym systemie. Proszę, zapoznaj się z dokumentacją " -"OMP, jeśli jesteś zainteresowany obsługą w językach spoza listy." - -msgid "installer.maxFileUploadSize" -msgstr "" -"Twój serwer obecnie zezwala na maksymalny rozmiar plików: " -"{$maxFileUploadSize}" - -msgid "installer.localeSettingsInstructions" -msgstr "" -"Aby uzyskać pełną obsługę Unikodu (UTF-8), wybierz UTF-8 dla ustawień " -"wszystkich zestawów znaków. Zauważ, że ta obsługa wymaga obecnie MySQL >= " -"4.1.1 lub PostgreSQL >= 9.1.5 serweru bazy danych. Zauważ także, że pełna " -"wersja Unikodu wymaga mbstring biblioteki (włączoną domyślnie dla większości " -"najnowszych oprogramowań PHP). Możesz napotkać problemy używając " -"rozszerzonego zestawu znaków, jeśli Twój serwer nie spełnia tych wymagań.\n" -"

        \n" -"Twój serwer jest obecnie obsługiwany przez mbstring: " -"{$supportsMBString}" - -msgid "installer.upgradeInstructions" -msgstr "" -"

        OMP Version {$version}

        \n" -"\n" -"

        Dziękujemy za pobranie Projektu Wiedzy Publicznej Open " -"Monograph Press . Przed rozpoczęciem procedury, zapoznaj się z READMEplikiem załączonym w tym " -"oprogramowaniu. UPGRADE Więcej " -"informacji o Projekcie Wiedzy Publicznej i jego projektach oprogramowania na " -"stronie PKP web site. W " -"celu zgłoszenia błędów lub uzyskania technicznych informacji na temat Open " -"Monograph Press, zobacz support forum lub odwiedź Projekt Wiedzy Publicznej online bug reporting system. " -"Chociaż forum wsparcia jest preferowaną metodą kontaktu, możesz również " -"skontaktować się z zespołem emailem pkp.contact@gmail.com.

        \n" -"

        Zdecydowanie zalecamy stworzenie kopii zapasowej bazy " -"danych, katalogu plików i katalogu instalacji OMP przed kontynuowaniem " -"procedury.

        \n" -"

        Jeśli korzystasz z PHP Safe Mode, upewnij się, że dyrektywa " -"max_execution_time w konfiguracji Twojego pliku php.ini configuration jest " -"ustawiona na najwyższy limit. Jeśli teraz lub później zostanie osiągnięty " -"limiet (e.g. Apache's \"Timeout\" directive) i proces aktualizacji zostanie " -"przerwany, będzie wymagana konfiguracja manualna.

        " - -#, fuzzy -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

        Dziękujemy za pobranie Projektu Wiedzy Publicznej Open " -"Monograph Press {$version}. Przed rozpoczęciem procedury, zapoznaj " -"się z READMEplikiem załączonym w tym " -"oprogramowaniu. Więcej informacji o Projekcie Wiedzy Publicznej i jego " -"projektach oprogramowania na stronie PKP web site. W celu zgłoszenia błędów lub uzyskania " -"technicznych informacji na temat Open Monograph Press, zobacz support forum lub odwiedź " -"Projekt Wiedzy Publicznej online bug reporting system. Chociaż forum wsparcia jest " -"preferowaną metodą kontaktu, możesz również skontaktować się z zespołem poe " -"emailem pkp.contact@gmail.com.

        \n" -"\n" -"

        Upgrade

        \n" -"\n" -"

        Jeśli aktualizujesz istniejącą instalację OMP. kliknij tutaj aby kontynuować.

        " - -msgid "installer.allowFileUploads" -msgstr "" -"Serwer obecnie zezwala na załadowanie plików: " -"{$allowFileUploads}" - -msgid "installer.preInstallationInstructions" -msgstr "" -"

        1. Następujące pliki i foldery (oraz ich zawartość) muszą być możliwe do " -"zapisania:

        \n" -"
          \n" -"\t
        • config.inc.php jest możliwy do zapisania (opcjonalnie): " -"{$writable_config}
        • \n" -"\t
        • public/ jest możliwy do zapisania: {$writable_public}
        • \n" -"\t
        • cache/ jest możliwy do zapisania: {$writable_cache}
        • \n" -"\t
        • cache/t_cache/ jest możliwy do zapisania: " -"{$writable_templates_cache}
        • \n" -"\t
        • cache/t_compile/ jest możliwy do zapisania: " -"{$writable_templates_compile}
        • \n" -"\t
        • cache/_db jest możliwy do zapisania: {$writable_db_cache}
        • " -"\n" -"
        \n" -"\n" -"

        2. Aby zachować załadowane pliki stwórz folder możliwy do zapisania (" -"popatrz na \"ustawienia plików\" poniżej).

        " - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Kroki preinstalacyjne" - -msgid "installer.installApplication" -msgstr "Zainstaluj Open Monograph Press" - -msgid "installer.ompUpgrade" -msgstr "Aktualizacja OMP" - -msgid "installer.appInstallation" -msgstr "Instalowanie OMP" - -msgid "help.goToEditPage" -msgstr "Otwórz nową stronę, aby zmienić tę informację" - -msgid "help.searchReturnResults" -msgstr "Wróć do wyników wyszukiwania" - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "" -"Ta strona korzysta z Open Monograph Press {$ompVersion}, które jest otwartym " -"oprogramowaniem do zarządzania wydawnictwem i publikowania rozwijane, " -"wspierane i darmowo dystrybuowane przez " -"Public Knowledge Project z licencja wolnego i darmowego oprogramowania " -"GNU." - -msgid "about.aboutOMPPress" -msgstr "" -"To wydawnictwo korzysta z Open Monograph Press {$ompVersion}, które jest " -"otwartym oprogramowaniem do zarządzania wydawnictwem i publikowania " -"rozwijane, wspierane i darmowo dystrybuowane przez dowiedz się więcej o programie z licencja wolnego i darmowego " -"oprogramowania GNU. Proszę, skontaktuj się z " -"wydawnictwem bezpośrednio w razie pytań o wydawnictwo lub zgłoszony do " -"niego tekst." - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "Proces redakcyjny i wydawniczy OMP" - -msgid "about.aboutThisPublishingSystem" -msgstr "" -"Więcej informacji o systemie wydawniczym, platformie i Workflow OMP/PKP." - -msgid "about.openAccessPolicy" -msgstr "Polityka otwartego dostępu" - -msgid "about.pressSponsorship" -msgstr "Patronat wydawniczy" - -msgid "about.publicationFrequency" -msgstr "Częstotliwość publikacji" - -msgid "about.reviewPolicy" -msgstr "Proces recenzji naukowej" - -msgid "about.privacyStatement" -msgstr "Oświadczenie o ochronie prywatności" - -msgid "about.copyrightNotice" -msgstr "Informacja o prawach autorskich" - -msgid "about.submissionPreparationChecklist.description" -msgstr "" -"Jako element procesu zgłoszenia autorzy są proszeni o skompletowanie " -"zgłoszenia poprzez załączenie następujących pozycji. Zgłoszenia mogą być " -"zwrócona do autorów, jeśli nie zastosują podanych wskazówek." - -msgid "about.submissionPreparationChecklist" -msgstr "Lista kontrolna stanu przygotowania zgłoszenia" - -msgid "about.authorGuidelines" -msgstr "Wskazówki dla autora" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "Wyświetl zaległe zgłoszenia" - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Nowe zgłoszenie" - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} lub {$viewSubmissions}." - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} lub {$register}, aby dokonać zgłoszenia." - -msgid "about.onlineSubmissions.register" -msgstr "Zarejestruj się" - -msgid "about.onlineSubmissions.login" -msgstr "Zaloguj się" - -msgid "about.onlineSubmissions" -msgstr "Zgłoszenia online" - -msgid "about.submissions" -msgstr "Zgłoszenia" - -msgid "about.focusAndScope" -msgstr "Cel i zakres" - -msgid "about.editorialPolicies" -msgstr "Polityka wydawnicza" - -msgid "about.editorialTeam" -msgstr "Zespół redakcyjny" - -msgid "about.aboutContext" -msgstr "O wydawnictwie" - -msgid "about.pressContact" -msgstr "Dane kontaktowe wydawnictwa" - -msgid "site.pressView" -msgstr "Wyświetl stronę wydawnictwa" - -msgid "user.register.form.userGroupRequired" -msgstr "Wybierz przynajmniej jedną rolę" - -msgid "user.register.reviewerInterests" -msgstr "" -"Określ zainteresowania naukowe (obszary merytoryczne i metody badawcze):" - -msgid "user.register.reviewerDescription" -msgstr "" -"Chętny do przeprowadzenia recenzji naukowej zgłoszenia na stronę internetową." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Chętny do przeprowadzenia recenzji naukowej zgłoszenia do druku." - -msgid "user.register.authorDescription" -msgstr "Możliwość zgłoszenia obiektów do zlecenia." - -msgid "user.register.readerDescription" -msgstr "Powiadomienie emailem o publikacji monografii." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Twoje hasło zawiera za mało znaków." - -msgid "user.register.registrationDisabled" -msgstr "Użytkownicy obecnie nie mogą się zarejestrować do tego zlecenia." - -msgid "user.register.privacyStatement" -msgstr "Oświadczenie o ochronie prywatności" - -msgid "user.register.noContexts" -msgstr "Nie ma żadnych zleceń, do których mógłbyś się zarejestrować." - -msgid "user.register.selectContext" -msgstr "Wybierz zlecenie, do którego chcesz się zarejestrować:" - -msgid "user.role.productionEditors" -msgstr "Redaktorzy prowadzący" - -msgid "user.role.proofreaders" -msgstr "Redaktorzy merytoryczni" - -msgid "user.role.copyeditors" -msgstr "Korektorzy" - -msgid "user.role.editors" -msgstr "Redaktorzy" - -msgid "user.role.subEditors" -msgstr "Redaktorzy serii" - -msgid "user.role.managers" -msgstr "Menadżerowie wydania" - -msgid "user.role.productionEditor" -msgstr "Redaktor prowadzący" - -msgid "user.role.copyeditor" -msgstr "Korektor" - -msgid "user.role.proofreader" -msgstr "Redaktor merytoryczny" - -msgid "user.role.manager" -msgstr "Menadżer wydania" - -msgid "user.role.subEditor" -msgstr "Redaktor serii" - -msgid "user.role.pressEditor" -msgstr "Redaktor wydania" - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Jeśli poprosiłeś o rolę recenzenta, proszę wprowadź swój obszar " -"zainteresowań." - -msgid "user.register.otherContextRoles" -msgstr "Poproś o następującą rolę." - -msgid "user.register.contextsPrompt" -msgstr "Do ilu zleceń na tej stronie chciałbyś być zarejestrowany?" - -msgid "user.reviewerPrompt.optin" -msgstr "" -"Tak, chciałbym, aby się ze mną skontaktowano w sprawie recenzji tego " -"zgłoszenia." - -msgid "user.reviewerPrompt.userGroup" -msgstr "Tak, zgłoś {$userGroup} swoją rolę." - -msgid "user.reviewerPrompt" -msgstr "Czy chciałbyś/ chciałabyś zrecenzować zgłoszenie dla tego wydawnictwa?" - -msgid "user.noRoles.regReviewerClosed" -msgstr "" -"Zarejestruj się jako recenzent: rejestracja recenzenta jest obecnie " -"nieaktywna." - -msgid "user.noRoles.regReviewer" -msgstr "Zarejestruj się jako recenzent" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Zgłoś monografię: rejestracja autora jest obecnie nieaktywna." - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Dołącz użytkowników, którzy nie pełnią żadnej roli w tym zleceniu." - -msgid "context.select" -msgstr "Przejdź do innego zlecenia:" - -msgid "context.current" -msgstr "Bieżące zlecenie:" - -msgid "context.context" -msgstr "Zlecenie" - -msgid "context.contexts" -msgstr "Zlecenia" - -msgid "user.noRoles.submitMonograph" -msgstr "Zgłoś propozycję" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Link do nowych wydań." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Nowe wydania" - -msgid "navigation.navigationMenus.category.description" -msgstr "Link do kategorii." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Kategoria" - -msgid "navigation.navigationMenus.series.description" -msgstr "Linki do serii." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Serie" - -msgid "navigation.skip.spotlights" -msgstr "Przejdź do wyróżnionych" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Link do Twojego katalogu." - -msgid "navigation.linksAndMedia" -msgstr "Linki i media społecznościowe" - -msgid "navigation.wizard" -msgstr "Kreator" - -msgid "navigation.published" -msgstr "Opublikowane" - -msgid "navigation.newReleases" -msgstr "Nowe wydania" - -msgid "navigation.infoForLibrarians.long" -msgstr "Informacje dla bibliotekarzy" - -msgid "navigation.infoForAuthors.long" -msgstr "Informacje dla autorów" - -msgid "navigation.infoForLibrarians" -msgstr "Dla bibliotekarzy" - -msgid "navigation.infoForAuthors" -msgstr "Dla autorów" - -msgid "navigation.catalog.administration.series" -msgstr "Serie" - -msgid "navigation.catalog.administration.categories" -msgstr "Kategorie" - -msgid "navigation.catalog.administration" -msgstr "Zarządzanie katalogiem" - -msgid "navigation.catalog.administration.short" -msgstr "Administracja" - -msgid "navigation.catalog.manage" -msgstr "Zarządzaj" - -msgid "navigation.catalog.allMonographs" -msgstr "Wszystkie monografie" - -msgid "navigation.competingInterestPolicy" -msgstr "Polityka uczciwej konkurencji" - -msgid "navigation.catalog" -msgstr "Katalog" - -msgid "common.homePageHeader.altText" -msgstr "Nagłówek strony głównej" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.listbuilder.itemExists" -msgstr "Nie możesz dodać dwa razy tego samego przedmiotu." - -msgid "common.searchCatalog" -msgstr "Katalog wyszukiwania" - -msgid "common.listbuilder.selectValidOption" -msgstr "Wybierz aktualną możliwość z listy." - -msgid "common.listbuilder.completeForm" -msgstr "Wypełnij formularz w całości." - -msgid "common.moreInfo" -msgstr "Więcej informacji" - -msgid "common.preview" -msgstr "Podgląd" - -msgid "common.prefix" -msgstr "Tytuł" - -msgid "common.publications" -msgstr "Monografie" - -msgid "common.publication" -msgstr "Monografia" - -msgid "submission.search" -msgstr "Wyszukiwanie książek" - -msgid "catalog.viewableFile.return" -msgstr "Wróć, aby wyświetlić szczegóły o {$monographTitle}" - -msgid "catalog.viewableFile.title" -msgstr "{$type} widok pliku {$title}" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Pozycja w serii (od najwyższej)" - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Pozycja w serii (od najniższej)" - -msgid "catalog.sortBy.categoryDescription" -msgstr "Wybierz jak zamówić książki w tej kategorii." - -msgid "catalog.sortBy.seriesDescription" -msgstr "Wybierz jak zamówić książki w tej serii." - -msgid "catalog.sortBy.catalogDescription" -msgstr "Wybierz jak zamówić książki w tym katalogu." - -msgid "catalog.sortBy" -msgstr "Zamówienie monografii" - -msgid "catalog.loginRequiredForPayment" -msgstr "" -"Zwróć uwagę: aby dokonać zakupu, wymagane jest zalogowanie. Po wybraniu " -"towaru zostaniesz automatycznie przekierowany na stronę logowania. Każdy " -"przedmiot oznaczany ikoną \"otwarty dostęp\" możesz pobrać za darmo bez " -"logowania." - -msgid "catalog.aboutTheAuthor" -msgstr "O {$roleName}" - -msgid "catalog.category.subcategories" -msgstr "Podkategorie" - -msgid "catalog.parentCategory" -msgstr "Główna kategoria" - -msgid "catalog.categories" -msgstr "Kategorie" - -msgid "catalog.forthcoming" -msgstr "Zapowiedzi" - -msgid "catalog.published" -msgstr "Opublikowane" - -msgid "catalog.publicationInfo" -msgstr "Informacje o publikacji" - -msgid "catalog.dateAdded" -msgstr "Dodano" - -msgid "catalog.newReleases" -msgstr "Nowe wydania" - -msgid "catalog.category.heading" -msgstr "Wszystkie książki" - -msgid "catalog.foundTitlesSearch" -msgstr "" -"{$number} tytuły/ tytułów zostało znalezionych dla Twojego wyszukiwania \"" -"{$searchQuery}\"." - -msgid "catalog.foundTitleSearch" -msgstr "" -"Znaleziono jeden pasujący tytuł dla Twojego wyszukiwania \"{$searchQuery}\"." - -msgid "catalog.featuredBooks" -msgstr "Polecane książki" - -msgid "catalog.featured" -msgstr "Polecane" - -msgid "catalog.feature" -msgstr "Cecha" - -msgid "catalog.noTitlesSearch" -msgstr "" -"Nie znaleziono pasującego tytułu dla Twojego wyszukiwania \"{$searchQuery}\"." - -msgid "catalog.noTitlesNew" -msgstr "Brak dostępnych nowych wydań w tym momencie." - -msgid "catalog.noTitles" -msgstr "Nie opublikowano jeszcze żadnego tytułu." - -msgid "catalog.manage.isNotNewRelease" -msgstr "Ta monografia nie widnieje jako nowe wydanie. Oznacz jako nowe wydanie." - -msgid "catalog.manage.isNewRelease" -msgstr "" -"Ta monografia widnieje jako nowe wydanie. Odznacz te monografię jako nowe " -"wydanie." - -msgid "catalog.manage.isNotFeatured" -msgstr "Monografia jest niepolecana. Oznacz jako polecaną." - -msgid "catalog.manage.isFeatured" -msgstr "Monografia jest polecana. Oznacz jako niepolecaną." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Szukaj po tytule lub autorze" - -msgid "catalog.manage.nonOrderable" -msgstr "Tej monografii nie da się zamówić, jeśli nie została zamieszczona." - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Nowe wydanie w serii" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Nowe wydanie w kategorii" - -msgid "catalog.manage.feature.newRelease" -msgstr "Nowe wydanie" - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Monografia nie jest oznaczona jako nowe wydanie." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Monografia oznaczona jako nowe wydanie." - -msgid "catalog.manage.categoryDescription" -msgstr "" -"Kliknij \"zamieść\", następnie gwiazdkę, aby wybrać oznaczoną książkę dla " -"tej kategorii; przeciągnij i upuść, aby zamówić." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Monografia nie jest polecana." - -msgid "catalog.manage.featuredSuccess" -msgstr "Monografia jest polecana." - -msgid "catalog.manage.seriesFeatured" -msgstr "Polecane w serii" - -msgid "catalog.manage.categoryFeatured" -msgstr "Polecane w kategorii" - -msgid "catalog.manage.featured" -msgstr "Polecane" - -msgid "catalog.manage.noMonographs" -msgstr "Brak przypisanych monografii." - -msgid "catalog.manage.newRelease" -msgstr "Wydanie" - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Karuzela" - -msgid "grid.content.spotlights.titleRequired" -msgstr "Wyróżniony tytuł jest wymagany." - -msgid "grid.content.spotlights.itemRequired" -msgstr "Pozycja jest wymagana." - -msgid "grid.content.spotlights.form.title" -msgstr "Wyróżniony tytuł" - -msgid "grid.content.spotlights.form.item" -msgstr "Wprowadź wyróżniony tytuł (autouzupełniane)" - -msgid "grid.content.spotlights.form.location" -msgstr "Lokalizacja wyróżnionej pozycji" - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Wyróżniony przedmiot" - -msgid "spotlight.title.homePage" -msgstr "Wyróżnione" - -msgid "spotlight.noneExist" -msgstr "Brak aktualnie wyróżnionych." - -msgid "spotlight.spotlights" -msgstr "Wyróżnione" - -msgid "grid.action.formatAvailable" -msgstr "Przełączaj dostępność tego formatu" - -msgid "grid.action.createContext" -msgstr "Utwórz nowe zlecenie" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Ukryj inne zlecenia" - -msgid "user.profile.form.showOtherContexts" -msgstr "Zarejestruj się dla kolejnego zlecenia" - -msgid "submission.round" -msgstr "Runda  {$round}" - -msgid "user.authorization.invalidPublishedSubmission" -msgstr "Nieważne zgłoszenie publikacji zostało określone." - -msgid "catalog.manage.seriesDescription" -msgstr "" -"Kliknij \"zamieść\", następnie gwiazdkę, aby wybrać oznaczoną książkę dla " -"tej serii; przeciągnij i upuść, aby zamówić. Serie są zidentyfikowane z " -"redaktorem (lub redaktorami) i tytułem serii, zależnie lub niezależnie od " -"kategorii." - -msgid "catalog.manage.homepageDescription" -msgstr "" -"Okładki wybranych książek pojawią się u góry strony głównej jako zestawienie " -"do przejrzenia. Kliknij \"oznacz\"; następnie gwiazdkę; aby dodać książkę do " -"karuzeli; kliknij wykrzyknik, aby oznaczyć jako nowo wydane; przeciągnij i " -"upuść, aby zamówić." - -msgid "catalog.selectCategory" -msgstr "Wybierz kategorię" - -msgid "catalog.selectSeries" -msgstr "Wybrane serie" - -msgid "catalog.manage.series.printIssn" -msgstr "ISSN druku" - -msgid "catalog.manage.series.onlineIssn" -msgstr "ISSN wersji online" - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "ISSN druku i ISSN wersji online nie mogą być takie same." - -msgid "catalog.manage.series.issn.validation" -msgstr "Proszę, wprowadź prawidłowy ISSN." - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series" -msgstr "Serie" - -msgid "catalog.manage.category" -msgstr "Kategoria" - -msgid "catalog.manage.newReleases" -msgstr "Nowe wydania" - -msgid "series.path" -msgstr "Ścieżka" - -msgid "series.featured.description" -msgstr "Seria wyświetli się w głównym menu" - -msgid "series.series" -msgstr "Serie" - -msgid "submissionGroup.assignedSubEditors" -msgstr "Przypisani edytorzy" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Dostępne pliki" - -msgid "grid.reviewAttachments.add" -msgstr "Dodaj załącznik do recenzji" - -msgid "grid.action.availableRepresentation" -msgstr "Zatwierdź/ odrzuć format" - -msgid "grid.action.proofApproved" -msgstr "Format został poddany korekcie" - -msgid "grid.action.approveProofs" -msgstr "Wyświetl wersję ostateczną" - -msgid "grid.action.submissionEmail" -msgstr "Kliknij, aby przeczytać email" - -msgid "grid.action.moreAnnouncements" -msgstr "Idź do ogłoszeń wydawnictwa" - -msgid "grid.action.publicationFormatTab" -msgstr "Pokaż zakładkę formatu publikacji" - -msgid "grid.action.deleteDate" -msgstr "Usuń datę" - -msgid "grid.action.editDate" -msgstr "Edytuj datę" - -msgid "grid.action.addDate" -msgstr "Dodaj datę publikacji" - -msgid "grid.action.deleteMarket" -msgstr "Usuń rynek" - -msgid "grid.action.editMarket" -msgstr "Edytuj rynek" - -msgid "grid.action.addMarket" -msgstr "Dodaj rynek" - -msgid "grid.action.deleteRights" -msgstr "Usuń te prawa" - -msgid "grid.action.editRights" -msgstr "Edytuj te prawa" - -msgid "grid.action.addRights" -msgstr "Dodaj prawa sprzedaży" - -msgid "grid.action.deleteCode" -msgstr "Usuń kod" - -msgid "grid.action.editCode" -msgstr "Edytuj kod" - -msgid "grid.action.addCode" -msgstr "Dodaj kod" - -msgid "grid.action.manageSeries" -msgstr "Skonfiguruj serię dla wydawnictwa" - -msgid "grid.action.manageCategories" -msgstr "Skonfiguruj kategorie dla wydawnictwa" - -msgid "grid.action.releaseMonograph" -msgstr "Oznacz jako \"nowe zgłoszenie\"" - -msgid "grid.action.publicCatalog" -msgstr "Wyświetl ten przedmiot w katalogu" - -msgid "grid.action.newCatalogEntry" -msgstr "Nowa pozycja katalogowa" - -msgid "grid.action.feature" -msgstr "Przełącz wyświetlaną funkcję" - -msgid "grid.action.featureMonograph" -msgstr "Pokaż to jako katalog karuzelowy" - -msgid "grid.action.addAnnouncement" -msgstr "Dodaj ogłoszenie" - -msgid "grid.action.addFormat" -msgstr "Dodaj format publikacji" - -msgid "grid.action.deleteFormat" -msgstr "Usuń ten format" - -msgid "grid.action.pageProofApproved" -msgstr "Wersja pliku po ostatecznych korektach jest gotowa do publikacji" - -msgid "grid.action.approveProof" -msgstr "Zatwierdź korektę do zaindeksowania i załączenia w katalogu" - -msgid "manager.series.indexed" -msgstr "Zaindeksowano" - -msgid "grid.action.editFormat" -msgstr "Edytuj ten format" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Format ukazuje się w pozycji katalogowej" - -msgid "grid.action.catalogEntry" -msgstr "Wyświetl formularz pozycji katalogowej" - -msgid "grid.libraryFiles.column.files" -msgstr "Pliki" - -msgid "manager.series.open" -msgstr "Otwarte zgłoszenia" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Książka" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Strona główna" - -msgid "spotlight.author" -msgstr "Autor " - -msgid "spotlight" -msgstr "Wyróżnione" - -msgid "grid.action.deleteRepresentative" -msgstr "Usuń przedstawiciela" - -msgid "grid.action.editRepresentative" -msgstr "Zmień przedstawiciela" - -msgid "grid.action.addRepresentative" -msgstr "Dodaj przedstawiciela" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "" -"Możesz zostawić poniższą sekcję pustą jeśli samodzielnie świadczysz usługi " -"swoim klientom." - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Typ numeru identyfikacyjnego przedstawiciela (GLN jest rekomendowany)" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Numer identyfikacyjny przedstawiciela" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Strona internetowa" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "Adres email" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Numer telefonu" - -msgid "grid.catalogEntry.representativeName" -msgstr "Nazwa" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Funkcja" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Wybierz funkcję:" - -msgid "grid.catalogEntry.supplier" -msgstr "Dostawca" - -msgid "grid.catalogEntry.agentTip" -msgstr "" -"Możesz wyznaczyć agenta do reprezentowania Cię na wyznaczonym obszarze. To " -"nie jest wymagane." - -msgid "grid.catalogEntry.agent" -msgstr "Agent" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Dostawcy" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agenci" - -msgid "grid.catalogEntry.representativeType" -msgstr "Typ przedstawiciela" - -msgid "grid.catalogEntry.representatives" -msgstr "Przedstawiciele" - -msgid "grid.catalogEntry.dateRequired" -msgstr "" -"Data jest wymagana i wartość daty musi zgadzać się z wybranym formatem daty." - -msgid "grid.catalogEntry.dateFormat" -msgstr "Format daty" - -msgid "grid.catalogEntry.dateRole" -msgstr "Funkcja" - -msgid "grid.catalogEntry.dateValue" -msgstr "Data" - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Format daty jest wymagany." - -msgid "grid.catalogEntry.roleRequired" -msgstr "Przedstawiciel jest wymagany." - -msgid "grid.catalogEntry.publicationDates" -msgstr "Daty publikacji" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Obszar" - -msgid "grid.catalogEntry.markets" -msgstr "Obszar handlu" - -msgid "grid.catalogEntry.excluded" -msgstr "Wyłączone" - -msgid "grid.catalogEntry.included" -msgstr "Załączone" - -msgid "grid.catalogEntry.regions" -msgstr "Regiony" - -msgid "grid.catalogEntry.countries" -msgstr "Kraje" - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "Istnieje już zdefiniowany typ sprzedaży formatu tej publikacji dla RŚ." - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "" -"Zaznacz to pole, aby zastosować pozycję prawa sprzedaży jako catch-all dla " -"Twojego formatu. Kraje i regiony nie muszą być wybrane w tym przypadku." - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Reszta świata?" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Rodzaj prawa sprzedaży" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Wartość kodu" - -msgid "grid.catalogEntry.salesRights" -msgstr "Prawo sprzedaży" - -msgid "grid.catalogEntry.valueRequired" -msgstr "Wartość jest wymagana." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Wartość kodu" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "Typ kodu ONIX" - -msgid "grid.catalogEntry.codeRequired" -msgstr "Kod identyfikacyjny jest wymagany." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Kod składu produktu musi być wybrany." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Brak formatu w pozycji katalogowej." - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

        Ten format będzie niedostępny dla czytelników. Pliki do pobrania " -"lub wszystkie inne dystrybucje nie będą już widoczne w pozycji katalogowej " -"książki.

        " - -msgid "monograph.publicationFormat.productComposition" -msgstr "Skład produktu" - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Kod dostępności produktu jest wymagany." - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Cyfrowe rozmiary pliku wymagane." - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Oczekuje na zatwierdzenie" - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Zatwierdzone" - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Korekta niezatwierdzona." - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Pozycja katalogowa niezatwierdzona." - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "" -"

        Udostępnij ten formatczytelnikom.Pliki do pobrania i wszystkie " -"inne dystrybucje pojawią się w pozycji katalogowej książki.

        " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Dostępność formatu" - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

        Metadane dla tego formatu nie zostały zatwierdzone.

        " - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" -"

        Zatwierdź metadane dla tego formatu. Metadane mogą być sprawdzone przez " -"redakcyjny dla każdego formatu.

        " - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Zatwierdzenie formatu" - -msgid "grid.catalogEntry.proof" -msgstr "Korekta" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Niedostępny" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Dostępny" - -msgid "grid.catalogEntry.availability" -msgstr "Dostępność" - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Format publikacji musi zostać wybrany." - -msgid "grid.catalogEntry.monographRequired" -msgstr "ID monografii jest wymagane." - -msgid "grid.catalogEntry.remoteURL" -msgstr "Adres URL zdalnie zarządzanych treści" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Ten format będzie dostępny na osobnej stronie" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Fizyczne wymiary" - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Szczegóły formatu" - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Aktualna cena jest wymagana." - -msgid "grid.catalogEntry.nameRequired" -msgstr "Nazwa jest wymagana." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Format publikacji" - -msgid "monograph.publicationFormat.openTab" -msgstr "Otwórz zakładkę z formatem publikacji." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "" -"

        Format publikacji, który wybrałeś nie istnieje już dla tej monografii. " -"

        " - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Brakuje niektórych pól z metadanymi." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Brakuje kodu identyfikacyjnego." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Brakujące dane o rynkach i cenach." - -msgid "monograph.publicationFormat.isApproved" -msgstr "" -"Załącz metadane dla formatu publikacji w pozycji katalogu dla tej książki." - -msgid "monograph.publicationFormat.taxType" -msgstr "Rodzaj podatku" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Stawka podatku" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Kraj dystrybucji produktu" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Cyfrowe zabezpieczenia techniczne" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Wprowadź rozmiar swojego pliku?" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Kraj pochodzenia" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Szerokość" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Waga" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Grubość" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Wysokość" - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Rozmiar pliku w MB" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Wymiary fizyczne" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Dane cyfrowe" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Instrukcja zwrotu" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Dostępność produktu" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Procent rabatu, jeśli dotyczy" - -msgid "monograph.publicationFormat.priceType" -msgstr "Cena druku" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Cena jest wymagana." - -msgid "monograph.publicationFormat.price" -msgstr "Cena" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Materiały pomocnicze i informacyjne" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Materiały wprowadzające" - -msgid "submission.pageProofs" -msgstr "Wersja do ostatecznej weryfikacji" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Otwarty dostęp" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Liczba stron" - -msgid "monograph.publicationFormat.imprint" -msgstr "Znak firmowy (nazwa handlowa)" - -msgid "monograph.proofReadingDescription" -msgstr "" -"Edytor układu wydruku załadował plik gotowy do wydania. Użyj " -"+Assign, aby wyznaczyć autorów i innych do sprawdzenia wersji po " -"ostatnich korektach łącznie ze skorygowanymi plikami załadowanymi do " -"zatwierdzenia przez publikację." - -msgid "monograph.task.addNote" -msgstr "Dodaj do zadania" - -msgid "monograph.type" -msgstr "Rodzaj zgłoszenia" - -msgid "monograph.carousel.publicationFormats" -msgstr "Wymiary:" - -msgid "monograph.audience.rangeExact" -msgstr "Zakres grupy odbiorczej (dokładnie)" - -msgid "monograph.audience.rangeTo" -msgstr "Zakres grupy odbiorczej (do)" - -msgid "monograph.audience.rangeFrom" -msgstr "Zakres grupy odbiorczej (od)" - -msgid "monograph.audience.rangeQualifier" -msgstr "Kwalifikator zakresu grupy odbiorczej" - -msgid "monograph.audience.success" -msgstr "Szczegóły dotyczące grupy odbiorczej zostały zaktualizowane." - -msgid "monograph.miscellaneousDetails" -msgstr "Szczegóły dotyczące monografii" - -msgid "monograph.publicationFormatDetails" -msgstr "Szczegóły dotyczące dostępnego formatu publikacji: {$format}" - -msgid "monograph.publicationFormat" -msgstr "Format" - -msgid "monograph.publicationFormats" -msgstr "Formaty publikacji" - -msgid "monograph.languages" -msgstr "Języki (angielski, francuski, hiszpański)" - -msgid "monograph.audience" -msgstr "Grupa odbiorcza" - -msgid "notification.removedRepresentative" -msgstr "Usunięto przedstawiciela." - -msgid "about.seriesPolicies" -msgstr "Zasady zarządzania seriami i kategoriami" - -msgid "common.feature" -msgstr "Cecha" - -msgid "catalog.manage.manageCategories" -msgstr "Zarządzaj kategoriami" - -msgid "catalog.manage.manageSeries" -msgstr "Zarządzaj serią" - -msgid "catalog.manage" -msgstr "Zarządzanie katalogiem" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Identyfikacja produktu" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Szczegóły produktu (niewymagane)" - -msgid "monograph.coverImage" -msgstr "Okładka" - -msgid "grid.action.addSpotlight" -msgstr "Dodaj wyróżnione" - -msgid "grid.action.deleteSpotlight" -msgstr "Usuń wyróżnioną pozycję" - -msgid "grid.action.editSpotlight" -msgstr "Zmień wyróżnioną pozycję" - -msgid "grid.content.spotlights.locationRequired" -msgstr "Proszę wybierz lokalizację dla wyróżnionej pozycji." - -msgid "site.noPresses" -msgstr "Brak dostępnych wydawnictw." - -msgid "user.register.form.privacyConsentThisContext" -msgstr "" -"Wyrażam zgodę na przechowywanie i przetwarzanie moich danych na potrzeby " -"tego wydawnictwa ." - -msgid "about.aboutSoftware" -msgstr "O Open Monograph Press" - -msgid "user.authorization.representationNotFound" -msgstr "Nie odnaleziono wymaganego formatu publikacji." - -msgid "catalog.manage.findSubmissions" -msgstr "Znajdź monografie, aby je zamieścić w katalogu" - -msgid "catalog.manage.submissionsNotFound" -msgstr "Nie udało się znaleźć zgłoszenia." - -msgid "catalog.manage.noSubmissionsSelected" -msgstr "Nie wybrano żadnego zgłoszenia do umieszczenia w katalogu." - -msgid "common.payments" -msgstr "Płatności" diff --git a/locale/pl_PL/manager.po b/locale/pl_PL/manager.po deleted file mode 100644 index aecbb5f9f5c..00000000000 --- a/locale/pl_PL/manager.po +++ /dev/null @@ -1,1394 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-14 15:47+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.setup.pageHeaderDescription" -msgstr " " - -msgid "stats.publications.abstracts" -msgstr "Pozycje katalogowe" - -msgid "stats.publications.countOfTotal" -msgstr "Całkowita liczba monografii {$count} {$total}" - -msgid "stats.publications.totalGalleyViews.timelineInterval" -msgstr "Widok całego pliku według daty" - -msgid "stats.publications.totalAbstractViews.timelineInterval" -msgstr "Widok całego katalogu według daty" - -msgid "stats.publications.none" -msgstr "" -"Nie znaleziono monografii przy użyciu statystyk pasujących do tych " -"parametrów." - -msgid "stats.publications.details" -msgstr "Szczegóły monografii" - -msgid "stats.publicationStats" -msgstr "Statystyki monografii" - -msgid "grid.series.urlWillBe" -msgstr "Adres URL serii: {$sampleUrl}" - -msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" -msgstr "Wybierz kategorię, do której chciałbyś włączyć link meny tej pozycji." - -msgid "manager.navigationMenus.form.navigationMenuItem.category" -msgstr "Wybierz kategorię" - -msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" -msgstr "Wybierz serię, do której chciałbyś włączyć link menu tej pozycji." - -msgid "manager.navigationMenus.form.navigationMenuItem.series" -msgstr "Wybierz serię" - -msgid "grid.series.pathExists" -msgstr "Ścieżka serii już istnieje. Wprowadź niepowtarzalną ścieżkę." - -msgid "grid.series.pathAlphaNumeric" -msgstr "Ścieżka serii musi składać się tylko z liter i cyfr." - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "Wyślij kopię do głównego kontaktu, podanego w Ustawieniach wydawnictwa." - -msgid "grid.genres.title" -msgstr "Komponenty monografii" - -msgid "grid.genres.title.short" -msgstr "Komponenty" - -msgid "manager.setup.resetPermissions.success" -msgstr "Uprawnienia monografii zostały pomyślnie zresetowane." - -msgid "manager.setup.resetPermissions.description" -msgstr "" -"Oświadczenie o prawach autorskich i informacja o licencji będzie trwale " -"przyłączona do publikowanych treści, zapewniając, że dane nie zmienią się w " -"przypadku zmiany polityki wydawnictwa dla nowych zgłoszeń. Aby zresetować " -"zmagazynowane informacje o uprawnieniach załączone do publikowanych treści, " -"użyj przycisku poniżej." - -msgid "manager.setup.resetPermissions.confirm" -msgstr "" -"Czy jesteś pewien, że chcesz zresetować dane uprawnień przypadające " -"monografii?" - -msgid "manager.setup.resetPermissions" -msgstr "Resetuj uprawnienia monografii" - -msgid "manager.publication.library" -msgstr "Biblioteka wydawnictwa" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "" -"

        Następujące opcje są dostępne, aby umożliwić czytelnikom zlokalizowanie " -"po autorze wersji online prac.

        \n" -"\n" -"
          \n" -"
        1. Dodaj Narzędzia czytelnicze

          Menedżer wydawnictwa może " -"dodać \"Znajdź odnośniki\" do Narzędzi czytelniczych, które towarzyszą " -"publikowanym pozycjom i które umożliwiają czytelnikom wklejanie tytułów " -"odnośników, a następnie przeszukiwanie wcześniej wybranej bazy naukowej dla " -"cytowanej pracy.

        2. \n" -"
        3. Linki osadzone w odnośnikach

          Redaktor składu może " -"dodać link odnośnika, który można odnaleźć online, używając następujących " -"instrukcji (które mogą być edytowane).

        4. \n" -"
        " - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "" -"Kroki: Kolejność zgłoszeń > Recenzja zgłoszenia> Redagowanie " -"zgłoszenia > Spis treści

        \n" -"Wybierz sposób obsługiwania tych aspektów w procesie redakcyjnym. (Idź to " -"Redaktorzy w zarządzaniu wydaniem, aby przypisać Redaktora zarządzającego i " -"Redaktorów serii.)" - -msgid "manager.setup.copyrightNotice.sample" -msgstr "" -"

        Deklaracja o prawach autorskich na licencji Creative Commons

        \n" -"

        Deklaracja o polityce wydawniczej na zasadzie Otwartego Dostępu

        \n" -"Autorzy, którzy publikują w tym wydawnictwie, przystają na następujące " -"warunki:\n" -"
          \n" -"\t
        1. Autorzy zachowują prawa autorskie i przyznają wydawnictwu prawo " -"pierwszeństwa publikacji, równocześnie licencjonowanej na zasadzie " -"Creative Commons Attribution License, która pozwala na pracę z uznaniem " -"autorstwa i pierwszeństwa publikacji w wydawnictwie.
        2. \n" -"\t
        3. Autorzy mogą przystępować do oddzielnych, dodatkowych, kontraktowych " -"serii z wersją pracy opublikowanej w wydawnictwie bez zasady wyłączności, z " -"powiadomieniem o pierwszej publikacji w tym wydawnictwie.
        4. \n" -"\t
        5. Autorzy mają pozwolenie i są zachęcani do opublikowania ich pracy " -"online (np. w repozytorium instytucjonalnym lub na ich stronie) przez lub w " -"trakcie procesu zgłoszenia, co może prowadzić do produktywnych wymian, jak " -"również do wcześniejszych i liczebniejszych cytowań publikowanej pracy (" -"zobacz The Effect of Open Access).
        6. \n" -"
        \n" -"\n" -"

        Deklaracja polityki wydawniczej na zasadzie odroczonego Otwartego " -"Dostępu

        \n" -"Autorzy, którzy publikują w tym wydawnictwie, przystają na następujące " -"warunki:\n" -"
          \n" -" \t
        1. Autorzy zachowują prawa autorskie i przyznają wydawnictwu prawo " -"pierwszeństwa publikacji pracy (określony przedział czasu) po publikacji " -"równocześnie licencjonowanej na zasadzie Creative Commons Attribution " -"License która pozwala na pracę z uznaniem autorstwa i pierwszeństwa " -"publikacji w wydawnictwie.
        2. \n" -"\t
        3. Autorzy mogą wchodzić na oddzielne, dodatkowe serie kontraktowe dla " -"niewyłącznej dystrybucji wersji pracy publikowanej przez wydawnictwo (np. " -"publikowanie w repozytorium instytucjonalnym lub w książce) z uznaniem " -"autorstwa i pierwszeństwa publikacji w wydawnictwie.
        4. \n" -" \t
        5. Autorzy mają pozwolenie i są zachęcani do opublikowania ich pracy " -"online (np. w repozytorium instytucjonalnym lub na ich stronie) przez lub w " -"trakcie procesu zgłoszenia, co może prowadzić do produktywnych wymian, jak " -"również do wcześniejszych i liczebniejszych cytowań publikowanej pracy (" -"zobacz The Effect of Open Access).
        6. \n" -"
        " - -msgid "manager.files.note" -msgstr "" -"Zauważ: Przeglądarka plików to zaawansowana funkcja, która pozwala " -"wyświetlać i bezpośrednio manewrować na plikach i folderach związanych z " -"wydawnictwem." - -msgid "manager.setup.productionTemplates" -msgstr "Wzory dla produkcji" - -msgid "manager.setup.files" -msgstr "Pliki" - -msgid "manager.setup.editorialTeam.description" -msgstr "" -"Lista redaktorów, dyrektorów zarządzających i innych związanych z " -"wydawnictwem." - -msgid "manager.setup.editorialTeam" -msgstr "Zespół redaktorski" - -msgid "manager.setup.masthead" -msgstr "Stopka redakcyjna" - -msgid "manager.setup.internalReviewRoles" -msgstr "Role związane z wewnętrznym procesem recenzji" - -msgid "manager.setup.currentRoles" -msgstr "Bieżące role" - -msgid "manager.setup.availableRoles" -msgstr "Dostępne role" - -msgid "manager.setup.managerialRoles" -msgstr "Role kierownicze" - -msgid "manager.setup.authorRoles" -msgstr "Role autora" - -msgid "manager.setup.roleType" -msgstr "Typ roli" - -msgid "manager.setup.reviewForms" -msgstr "Formularz recenzji" - -msgid "manager.setup.series.description" -msgstr "" -"Możesz stworzyć numer serii, aby pomóc zorganizować Twoje publikacje. Seria " -"reprezentuje zestaw książek poświęcony danemu tematowi, który ktoś " -"zaproponował, zazwyczaj członek wydziału lub więcej, który potem nadzoruje. " -"Odwiedzający będą mogli wyszukiwać i przeglądaąć wydawnictwo przez serię." - -msgid "manager.setup.categories.description" -msgstr "" -"Możesz stworzyć listę kategorii, aby pomóc zorganizować Twoją publikację. " -"Kategorie to grupy książek posortowane według istoty przedmiotu, np. " -"ekonomia, literatura, poezja itp. Kategorie mogą być oznaczone nadrzędną " -"kategorią, np. nadrzędna kategoria - ekonomia zawiera poszczególne " -"indywidualne kategorie - mikroekonomia i makroekonomia. Odwiedzający będą " -"mogli znaleźć i przeglądać wydawnictwo poprzez kategorie." - -msgid "manager.setup.categoriesAndSeries" -msgstr "Kategorie i serie" - -msgid "manager.setup.currentFormats" -msgstr "Bieżące formaty" - -msgid "manager.setup.issnDescription" -msgstr "" -"ISSN to ośmiocyfrowy numer, który identyfikuje periodyczne publikacje, " -"włącznie z seriami elektronicznymi. Numer można otrzymać z ISSN International Centre." - -msgid "manager.setup.submitToSeries" -msgstr "Uwzględnij serię zgłoszeń" - -msgid "manager.setup.submitToCategories" -msgstr "Uwzględnij kategorię zgłoszeń" - -msgid "manager.setup.prospectusDescription" -msgstr "" -"Prospekt to dokument przygotowany przez wydawnictwo, który pomaga autorowi " -"opisać zgłoszone materiały w sposób, który pozwoli wydawnictwu określić " -"wartość zgłoszenia. Prospekt może zawierać wiele pozycji: od potencjału " -"rynkowego do wartości merytorycznej; w każdym przypadku wydawnictwo powinno " -"stworzyć prospekt, który przekazuje ich program wydawniczy." - -msgid "manager.setup.prospectus" -msgstr "Prospekt" - -msgid "manager.setup.restoreDefaults" -msgstr "Przywróć ustawienia domyślne" - -msgid "manager.setup.deleteSelected" -msgstr "Usuń wybrane" - -msgid "manager.setup.newGenreDescription" -msgstr "" -"Aby utworzyć nowy gatunek, wypełnij formularz poniżej i kliknij \"Utwórz\"." - -msgid "manager.setup.newGenre" -msgstr "Nowy gatunek monografii" - -msgid "manager.setup.genres" -msgstr "Gatunki" - -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "" -"Redaktorzy wysyłają recenzentom prośbę o recenzję w emailu z załączonym " -"zgłoszeniem. Recenzenci wysyłają email redaktorom ze zgodą (z odmową) na " -"recenzję, jak również recenzję lub rekomendacje. Redaktorzy wprowadzają " -"zgodę (lub odmowę) recenzenta, jak również recenzję lub rekomendacje do " -"zgłoszenia na stronie recenzji, aby zapisać proces recenzji." - -msgid "manager.setup.genresDescription" -msgstr "" -"Te gatunki są w użyciu dla celów nazwania plików i są prezentowane w menu " -"rozwijanym na załadowanych plikach. Gatunki oznaczone ## pozwalają " -"użytkownikowi połączyć plik z całą książką 99Z lub z konkretnym rozdziałem " -"przez numer (np.02)." - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "" -"Aby stworzyć nowy format publikacji, wypełnij formularz poniżej i kliknij \"" -"Utwórz\"." - -msgid "manager.setup.newPublicationFormat" -msgstr "Nowy format publikacji" - -msgid "manager.setup.publicationFormat.inUse" -msgstr "" -"Ten format publikacji nie może być usunięty, ponieważ jest obecnie w użyciu " -"przez inną monografię w Twoim wydawnictwie." - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "Czy to format nie cyfrowy?" - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "Musisz przypisać nazwę do formatu." - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "Musisz wybrać format." - -msgid "manager.setup.publicationFormat.code" -msgstr "Format" - -msgid "manager.setup.volumePerYear" -msgstr "Tomy na rok" - -msgid "manager.setup.useTextTitle" -msgstr "Tytuł tekstu" - -msgid "manager.setup.userRegistration" -msgstr "Rejestracja użytkownika" - -msgid "manager.setup.useProofreaders" -msgstr "" -"Korektor będzie przypisany do sprawdzenia (wraz z autorami) szpalty przed " -"publikacją." - -msgid "manager.setup.useLayoutEditors" -msgstr "" -"Redaktor składu będzie przypisany do przygotowania HTML, PDF itp., plików do " -"publikacji elektronicznej." - -msgid "manager.setup.useStyleSheet" -msgstr "Styl strony wydawnictwa" - -msgid "manager.setup.useImageTitle" -msgstr "Tytuł obrazu" - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "Wydawnictwo będzie wspierane przez radę redakcyjną/recenzencką." - -msgid "manager.setup.useCopyeditors" -msgstr "Redaktor będzie przypisany do pracy nad tym zgłoszeniem." - -msgid "manager.setup.typeProvideExamples" -msgstr "" -"Dostarcz przykłady ważnych typów badań naukowych, metod i podejścia dla tego " -"obszaru" - -msgid "manager.setup.typeMethodApproach" -msgstr "Typ (Metoda/Podejście)" - -msgid "manager.setup.typeExamples" -msgstr "" -"(np. Badania historyczne; Quasi-eksperymentalne; Analiza literacka; Ankieta/" -"Wywiad)" - -msgid "manager.setup.submissions.description" -msgstr "" -"Wskazówki dla autora, prawa autorskie i indeksowanie (wliczając rejestrację)." - -msgid "manager.setup.workflow" -msgstr "Workflow" - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "Lista kontrolna pozycji jest wymagana." - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Lista kontrolna przygotowań zgłoszenia" - -msgid "manager.setup.submissionGuidelines" -msgstr "Wskazówki dla zgłoszeń" - -msgid "manager.setup.subjectProvideExamples" -msgstr "" -"Dostarcz przykładowe słowa kluczowe lub tematy jako wskazówki dla autorów" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Słowa kluczowe" - -msgid "manager.setup.subjectExamples" -msgstr "" -"(np. Fotosynteza; Czarna Dziura; Problem Map Czterokolorowych; Teoria Bayesa)" - -msgid "manager.setup.stepsToPressSite" -msgstr "Pięć kroków do strony wydawnictwa" - -msgid "manager.setup.siteAccess.viewContent" -msgstr "Wyświetl zawartość monografii" - -msgid "manager.setup.siteAccess.view" -msgstr "Strona dostępu" - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "Zawsze pokazuje linki do korekty szpaltowej i wskaż ograniczony dostęp." - -msgid "manager.setup.selectSectionDescription" -msgstr "Sekcja wydawnictwa, dla której pozycja będzie rozważona." - -msgid "manager.setup.selectEditorDescription" -msgstr "Redaktor wydania, który będzie czuwał nad procesem redaktorskim." - -msgid "manager.setup.securitySettings.note" -msgstr "" -"Inne opcje powiązane z bezpieczeństwem i dostępem mogą być skonfigurowane " -"przez stronę Dostęp i Bezpieczeństwo." - -msgid "manager.setup.securitySettings" -msgstr "Ustawienia dostępu i bezpieczeństwa" - -msgid "manager.setup.sectionsDescription" -msgstr "" -"Aby stworzyć lub modyfikować sekcje dla wydawnictwa (np. Monografii, " -"Recenzje Książek itp.) idź do Zarządzania Sekcją.

        Autorzy " -"zgłoszonych pozycji do wydawnictwa przypiszą..." - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "" -"(Jeśli nie dodano sekcji, pozycje będą zgłaszane domyślnie do sekcji " -"monografii.)" - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Sekcje i Redaktorzy Sekcji" - -msgid "manager.setup.searchEngineIndexing.success" -msgstr "Zaktualizowano ustawienia indeksu wyszukiwarki." - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "" -"Pomóż wyszukiwarkom jak Google odnajdywać i wyświetlać Twoją stronę. " -"Zachęcamy Cię do zgłaszania Twojej mapy strony sitemap." - -msgid "manager.setup.searchEngineIndexing" -msgstr "Indeksowanie wyszukiwania" - -msgid "manager.setup.searchDescription.description" -msgstr "" -"Dostarcz krótki opis (50-300 znaków) wydania, który wyszukiwarka wyświetli " -"wydawnictwo w liście wyszukiwanych." - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "" -"Redaktorzy powiadomią mailowo wybranych recenzentów o tytule i abstrakcie " -"zgłoszenia, jak również wyślą im zaproszenie do zalogowania się na stronę " -"wydawnictwa, aby ukończyć recenzję. Recenzenci odwiedzają stronę wydawnictwa " -"aby wyrazić zgodę na recenzję, pobrać zgłoszenia, dodać komentarze i wybrać " -"rekomendacje." - -msgid "manager.setup.reviewProcessStandard" -msgstr "Proces standardowej recenzji" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Proces recenzji email-załącznik" - -msgid "manager.setup.reviewProcessDescription" -msgstr "" -"OMP stosuje dwa modele zarządzania procesem recenzji. Zalecany jest " -"Standardowy proces recenzji, ponieważ prowadzi on recenzentów przez cały " -"proces, zapewniając całkowity ogląd historii zgłoszenia i korzysta z systemu " -"automatycznych powiadomień, a także standardowe rekomendacje dla zgłoszeń " -"(Akceptuj; Akceptuj po korekcie; Zgłoś do recenzji; Zgłoś gdzieś indziej; " -"Odrzuć; Zobacz komentarze).

        Wybierz jedno z poniższych:" - -msgid "manager.setup.reviewProcess" -msgstr "Proces recenzji" - -msgid "manager.setup.reviewPolicy" -msgstr "Polityka recenzji" - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Przypomnienia dla recenzentów" - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Oceny recenzentów" - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" -msgstr "Zawiera bezpieczny link w emailu z zaproszeniem dla recenzentów." - -#, fuzzy -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" -msgstr "" -"Recenzenci mogą mieć wysłane bezpieczne linki w emailu z zaproszeniem, który " -"umożliwi im dostęp do recenzji bez logowania. Dostęp do innych stron wymaga " -"zalogowania." - -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" -msgstr "Dostęp one-click recenzenta" - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Dostęp recenzenta" - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "" -"Recenzenci będą mieli dostęp do zgłoszenia dopiero po wyrażeniu zgody na " -"recenzję." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" -msgstr "Plik o ograniczonym dostępie" - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "" -"Redaktorzy ocenią recenzentów w skali pięciopunktowej po każdej recenzji." - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "" -"Aby aktywować te opcje, administrator strony musi włączyć " -"scheduled_tasks opcję w pliku konfiguracji OMP. Dodatkowa " -"konfiguracja serweru może być wymagana, aby wzmocnić jego wydajność (może to " -"nie być możliwe na wszystkich serwerach), tak jak wspomniano w dokumentacji " -"OMP." - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Automatyczny system przypominania" - -msgid "manager.setup.reviewOptions" -msgstr "Opcje recenzji" - -msgid "manager.setup.internalReviewGuidelines" -msgstr "Wskazówki dla wewnętrznej recenzji" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "" -"Dostarcz zewnętrznym recenzentom kryteria do oceny adekwatności zgłoszenia " -"do publikacji w tym wydawnictwie, które zwierają instrukcje do przygotowanie " -"efektywnej i pomocnej recenzji. Recenzencie będą mieli możliwość " -"wprowadzenia komentarzy dla autora i redaktora, jak i oddzielnych komentarzy " -"tylko dla redaktora." - -msgid "manager.setup.reviewGuidelines" -msgstr "Wskazówki dla zewnętrznej recenzji" - -msgid "manager.setup.restrictSiteAccess" -msgstr "" -"Użytkownicy muszą być zarejestrowani i zalogowani, aby zobaczyć stronę " -"wydania." - -msgid "manager.setup.restrictMonographAccess" -msgstr "" -"Użytkownicy muszą być zarejestrowani i zalogowani, aby zobaczyć zawartość " -"otwartego dostępu." - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Instrukcje składu dla linków odnoszących" - -msgid "manager.setup.referenceLinking" -msgstr "Linki odnoszące" - -msgid "manager.setup.publisherDescription" -msgstr "" -"Nazwa organizacji publikującej wydanie pojawi się w segmencie \"O wydaniu\"." - -msgid "manager.setup.publisher" -msgstr "Wydawca" - -msgid "manager.setup.publicationScheduleDescription" -msgstr "" -"Pozycje wydawnicze mogą być publikowane zbiorowo, jako część monografii z " -"oddzielnym spisem treści. Alternatywnie, indywidualne pozycje mogą być " -"publikowane tak szybko, jak są gotowe, poprzez dodanie je do \"bieżącego\" " -"tomu w spisie treści. Dostarcz czytelnikom w segmencie \"O wydaniu\" " -"oświadczenie o systemie, z jakiego korzysta wydawnictwo i jego oczekiwań " -"dotyczących częstotliwości publikacji." - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Dostarcz Redaktorom Składu instrukcje." - -msgid "manager.setup.proofreading" -msgstr "Korektorzy" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "" -"Instrukcje korektorskie będą dostępne dla korektorów, autorów, redaktorów " -"składu i redaktorów sekcji w fazie redagowanie zgłoszenia. Poniżej znajduje " -"się domyślny zestaw instrukcji w HTML, które mogą być redagowane lub " -"zastąpione przez Menedżera wydawnictwa w dowolnym momencie (w HTML lub w " -"tekście odkrytym)." - -msgid "manager.setup.proofingInstructions" -msgstr "Instrukcje korektorskie" - -msgid "manager.setup.printIssn" -msgstr "ISSN druku" - -msgid "manager.setup.contextTitle" -msgstr "Nazwa wydawnictwa" - -msgid "manager.setup.pressThumbnail.description" -msgstr "Na liście wydawnictw może być użyte logo wydawnictwa." - -msgid "manager.setup.pressThumbnail" -msgstr "Miniatura wydawnictwa" - -msgid "manager.setup.pressTheme" -msgstr "Temat wydawnictwa" - -msgid "manager.setup.styleSheetInvalid" -msgstr "Nieważny format stylu strony. Akceptowalny format to .css." - -msgid "manager.setup.pressSetupUpdated" -msgstr "Zaktualizowano konfigurację Twojego wydawnictwa." - -msgid "manager.setup.pressSetup" -msgstr "Konfiguracja wydawnictwa" - -msgid "manager.setup.pressPolicies" -msgstr "Krok 2. Polityka wydawnictwa" - -msgid "manager.setup.pageHeader" -msgstr "Nagłówek strony wydawnictwa" - -msgid "manager.setup.layout" -msgstr "Skład wydawnictwa" - -msgid "manager.setup.contextInitials" -msgstr "Inicjały wydawnictwa" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "" -"Strona główna wydawnictwa składa się z domyślnych linków nawigacyjnych. " -"Dodatkowa zawartość strony głównej może być dołączona przy użyciu jednej lub " -"wszystkich opcji, które ukażą się w zaprezentowanym porządku." - -msgid "manager.setup.homepageContentDescription" -msgstr "" -"Strona główna wydawnictwa składa się z domyślnych linków nawigacyjnych. " -"Dodatkowa zawartość strony głównej może być dołączona przy użyciu jednej lub " -"wszystkich opcji, które ukażą się w zaprezentowanym porządku." - -msgid "manager.setup.pressHomepageContent" -msgstr "Zawartość strony głównej wydawnictwa" - -msgid "manager.setup.homepageContent" -msgstr "Zawartość strony głównej wydawnictwa" - -msgid "manager.setup.pressArchiving" -msgstr "Archiwizowanie wydawnictwa" - -msgid "manager.setup.aboutPress.description" -msgstr "" -"Załącz wszelkie informacje dotyczące Twojego wydawnictwa, które mogą " -"zainteresować czytelników, autorów i recenzentów. Może zawierać Twoje zasady " -"otwartego dostępu, cel i zakres wydań, uwagi redaktorskie, sponsorów, " -"historię wydawnictwa i oświadczenie o ochronie prywatności." - -msgid "manager.setup.aboutPress" -msgstr "O wydaniu" - -msgid "manager.setup.pressDescription.description" -msgstr "Krótki opis Twojego wydania." - -msgid "manager.setup.pressDescription" -msgstr "Streszczenie wydania" - -msgid "manager.setup.appearanceDescription" -msgstr "" -"Różne komponenty wyglądu wydania mogą być konfigurowane przez tę stronę, " -"włączając elementy nagłówka i stopki, styl i temat wydania oraz jak " -"porządkować informacje prezentowane użytkownikom." - -msgid "manager.setup.privacyStatement.success" -msgstr "Zaktualizowano oświadczenie o ochronie prywatności." - -msgid "manager.setup.policies.description" -msgstr "" -"Cel, recenzja naukowa, sekcje, prywatność, bezpieczeństwo i inne o pozycjach." - -msgid "manager.setup.policies" -msgstr "Zasady" - -msgid "manager.setup.onlineIssn" -msgstr "ISSN online" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Dostęp do zawartości wydania" - -msgid "manager.setup.numPageLinks.description" -msgstr "" -"Wprowadź limit linków do wyświetlenia na kolejnych stronach na tej liście." - -msgid "manager.setup.numPageLinks" -msgstr "Linki do stron" - -msgid "manager.setup.noUseProofreaders" -msgstr "" -"Redaktor lub Redaktor Sekcji przypisany do zgłoszenia sprawdzi korektę " -"szpaltową." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "" -"Redaktor lub Redaktor Sekcji przypisany do zgłoszenia przygotuje pliki HTML, " -"PDF itp." - -msgid "manager.setup.noUseCopyeditors" -msgstr "" -"Redagowanie będzie prowadzone przez Redaktora lub Redaktora Sekcji " -"przypisanych do tego zgłoszenia." - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "" -"Kiedy używasz powiadomienia autora, dołącz adresy mailowe wszystkich " -"współautorów dla zgłoszenia z wieloma autorami, nie tylko użytkownika " -"zgłaszającego." - -msgid "manager.setup.note" -msgstr "Uwagi" - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "Nie załadowano stylu strony." - -msgid "manager.setup.noImageFileUploaded" -msgstr "Nie załadowano pliku z obrazem." - -msgid "manager.setup.masthead.success" -msgstr "Zaktualizowano szczegóły dotyczące stopki redakcyjnej tego wydawnictwa." - -msgid "manager.setup.managingThePress" -msgstr "Krok 4. Zarządzanie ustawieniami" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Układ zarządzania i publikacji" - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Zarządzanie podstawowymi krokami redakcyjnymi" - -msgid "manager.setup.management.description" -msgstr "" -"Dostęp i bezpieczeństwo, harmonogramy, ogłoszenia, redakcja, skład i korekty." - -msgid "manager.setup.settings" -msgstr "Ustawienia" - -msgid "manager.setup.look.description" -msgstr "" -"Nagłówek strony głównej, zawartość, nagłówek wydawnictwa, stopka, pasek " -"nawigacyjny i styl strony." - -msgid "manager.setup.look" -msgstr "Wygląd i styl" - -msgid "manager.setup.lists.success" -msgstr "Zaktualizowano listę ustawień." - -msgid "manager.setup.lists" -msgstr "Listy" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Tytuł" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "" -"Wzory mogą zostać przesłane do składu dla każdego standardowego formatu " -"publikowanych wydań (monografie, recenzje książek itp.) przy użyciu każdego " -"formatu plików (pdf, doc itp.) z dodanymi adnotacjami o konkretnej czcionce, " -"rozmiarze, marginesie itp., aby posłużyć za wskazówki dla Redaktorów Składu " -"i Redaktorów Merytorycznych." - -msgid "manager.setup.layoutTemplates.file" -msgstr "Plik wzorcowy" - -msgid "manager.setup.layoutTemplates" -msgstr "Wzory składu" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "" -"Instrukcje dotyczące składu mogą być przygotowane dla formatowania " -"publikowanych pozycji w wydawnictwie i dostępne pod poniższym adresem HTML " -"lub w tekście odkrytym. Będą dostępne dla Redaktora Składu i Redaktora " -"Sekcji w zakładce Redagowanie każdego zgłoszenia. (Każde wydawnictwo może " -"używać swoich formatów plików, standardów bibliograficznych, stylów strony " -"itp., domyślny zestaw instrukcji nie jest dostarczany.)" - -msgid "manager.setup.layoutInstructions" -msgstr "Instrukcje dotyczące składu" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Redaktorzy składu" - -msgid "manager.setup.labelName" -msgstr "Nazwa marki" - -msgid "manager.setup.keyInfo.description" -msgstr "" -"Dostarcz krótki opis Twojego wydawnictwa i określ redaktorów, dyrektorów " -"zarządzających i innych członków Twojego zespołu redakcyjnego." - -msgid "manager.setup.keyInfo" -msgstr "Kluczowe informacje" - -msgid "manager.setup.itemsPerPage.description" -msgstr "" -"Wprowadź limit pozycji (na przykład: zgłoszeń, użytkowników lub zadań " -"redakcyjnych) do ujęcia na liście przed prezentowaniem kolejnych pozycji na " -"innej stronie." - -msgid "manager.setup.itemsPerPage" -msgstr "Pozycje na stronie" - -msgid "manager.setup.institution" -msgstr "Instytucja" - -msgid "manager.setup.information.success" -msgstr "Zaktualizowane informacje dla tego wydawnictwa." - -msgid "manager.setup.information.forReaders" -msgstr "Dla czytelników" - -msgid "manager.setup.information.forLibrarians" -msgstr "Dla bibliotekarzy" - -msgid "manager.setup.information.forAuthors" -msgstr "Dla autorów" - -msgid "manager.setup.information.description" -msgstr "" -"Krótkie opisy wydawnictwa dla bibliotekarzy oraz przyszłych autorów i " -"czytelników. Będą dostępne w pasku bocznym strony, kiedy dział informacji " -"zostanie dodany." - -msgid "manager.setup.information" -msgstr "Informacje" - -msgid "manager.setup.identity" -msgstr "Tożsamość wydawnictwa" - -msgid "manager.setup.preparingWorkflow" -msgstr "Krok 3. Przygotowanie cyklu pracy" - -msgid "manager.setup.guidelines" -msgstr "Wskazówki" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Krok 1. Przejście do szczegółów" - -msgid "manager.setup.generalInformation" -msgstr "Ogólne informacje" - -msgid "manager.setup.form.supportNameRequired" -msgstr "Dodatkowa nazwa jest wymagana." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Dodatkowy email jest wymagany." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Podstawowa nazwa kontaktowa jest wymagana." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Podstawowy email kontaktowy jest wymagany." - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "" -"OMP stosuje się do" -"Inicjatywy otwartych archiwówProtokół o zbieraniu metadanych, który jest " -"nowo powstałym standardem dla zapewnienia dobrze zaindeksowanego dostępu do " -"elektronicznych źródeł wyszukiwania na skalę globalną. Autorzy będą stosować " -"podobny szablon, aby dostarczyć metadane dla tego zgłoszenia. Menedżer " -"wydawnictwa powinien wybrać kategorię do zaindeksowania i zaprezentować " -"autorom wzory, które posłużą im za przykład w trakcie indeksowania ich prac, " -"oddzielające terminy średnikiem (np. termin 1; termin 2). Hasła będą " -"prezentowane jako przykłady przez użycie \"np.\" lub \"na przykład\"." - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "Dla autorów do indeksowania ich pracy" - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Liczba recenzentów przypadających na zgłoszenie jest wymagana." - -msgid "manager.setup.focusScopeDescription" -msgstr "
        PRZYKŁADOWE DANE HTML" - -msgid "manager.setup.focusScope" -msgstr "Cel i zakres" - -msgid "manager.setup.focusAndScope.description" -msgstr "" -"Opisz autorów, czytelników i bibliotekarzy o przekroju monografii i innych " -"pozycji publikowanych przez wydawnictwo." - -msgid "manager.setup.focusAndScope" -msgstr "Cel i zakres wydania" - -msgid "manager.setup.enableUserRegistration" -msgstr "Odwiedzający mogą zgłosić konto użytkownika poprzez wydawnictwo." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "" -"Stosowne identyfikatory będą stosowane do identyfikacji korekty szpaltowej (" -"np. HTML lub pliki PDF) dla publikowanych pozycji." - -msgid "manager.setup.enablePublicMonographId" -msgstr "" -"Stosowne identyfikatory będą stosowane to identyfikacji publikowanych " -"pozycji." - -msgid "manager.setup.enablePressInstructions" -msgstr "Pozwól temu wydawnictwu na pojawiania się na tej stronie" - -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "" -"Ilość wyświetlanych ogłoszeń na stronie głównej. Zostaw puste, aby nie " -"wyświetlić żadnych." - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Wyświetl na stronie głównej" - -msgid "manager.setup.enableAnnouncements.description" -msgstr "" -"Ogłoszenia będą publikowane, aby informować czytelników o wydarzeniach i " -"nowościach. Pojawią się w Ogłoszeniach." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Włącz ogłoszenia" - -msgid "manager.setup.emailSignature.description" -msgstr "" -"Przygotowane emaile wysyłane przez system w imieniu wydawnictwa będą " -"posiadać następujące sygnatury na końcu." - -msgid "manager.setup.emailSignature" -msgstr "Podpis" - -msgid "manager.setup.emails" -msgstr "Identyfikator email" - -msgid "manager.setup.emailBounceAddress.disabled" -msgstr "" -"Aby wysłać niedostarczoną wiadomość na adres zwrotny, administrator strony " -"musi uruchomić allow_envelope_sender opcję w pliku " -"konfiguracyjnym. Konfiguracja serweru może być wymagana, jak wskazano w " -"dokumentacji OMP." - -msgid "manager.setup.emailBounceAddress.description" -msgstr "" -"Każde adresat niedostarczonego emaila otrzyma zwrotną wiadomość o błędzie." - -msgid "manager.setup.emailBounceAddress" -msgstr "Adres zwrotny" - -msgid "manager.setup.editorDecision" -msgstr "Decyzja Redaktora" - -msgid "manager.setup.doiPrefixDescription" -msgstr "" -"Prefiks DOI (cyfrowego identyfikatora dokumentu elektronicznego) jest " -"przedzielany przez CrossRef i występuje w formacie 10.xxxx (e.g. 10.1234)." - -msgid "manager.setup.doiPrefix" -msgstr "Prefiks DOI" - -msgid "manager.setup.displayNewReleases.label" -msgstr "Nowe wydania" - -msgid "manager.setup.displayNewReleases" -msgstr "Wyświetl nowe wydania na stronie głównej" - -msgid "manager.setup.displayInSpotlight.label" -msgstr "Wyróżnione" - -msgid "manager.setup.displayInSpotlight" -msgstr "Wyświetl książki w wyróżnieniach na stronie głównej" - -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Polecane książki" - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Wyświetl polecane książki na stronie głównej" - -msgid "manager.setup.displayOnHomepage" -msgstr "Zawartość strony głównej" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "Dodaj spis treści dla bieżącej monografii (jeśli jest dostępny)." - -msgid "manager.setup.disciplineProvideExamples" -msgstr "" -"Zawiera przykłady dyscyplin akademickich właściwych dla tego wydawnictwa" - -msgid "manager.setup.disciplineExamples" -msgstr "" -"(Np. Historia, edukacja, socjologia, psychologia, kulturoznawstwo, prawo)" - -msgid "manager.setup.disciplineDescription" -msgstr "" -"Pożyteczne, kiedy wydanie przekroczy granice dyscypliny i/lub kiedy autor " -"zgłosi pozycję interdyscyplinarną." - -msgid "manager.setup.discipline" -msgstr "Dyscypliny i subdyscypliny akademickie" - -msgid "manager.setup.disableUserRegistration" -msgstr "" -"Menedżer wydawnictwa zarejestruje wszystkie konta użytkowników. Redaktorzy " -"lub Redaktorzy Sekcji mogą zarejestrować konta użytkowników dla recenzentów." - -msgid "manager.setup.details.description" -msgstr "Nazwa wydawnictwa, kontaktów, sponsorów i narzędzi wyszukiwania." - -msgid "manager.setup.details" -msgstr "Szczegóły" - -msgid "manager.setup.customTagsDescription" -msgstr "" -"Dostosuj tagi nagłówka HTML, aby były wstawione w nagłówki każdej strony (" -"np. tagi META)." - -msgid "manager.setup.customTags" -msgstr "Tag niestandardowy" - -msgid "manager.setup.customizingTheLook" -msgstr "Krok 5. Dostosowywanie wyglądu i stylu" - -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" -msgstr "" -"Obrazy zostaną zmniejszone, jeśli przekroczą podane wymiary, ale nigdy nie " -"zostaną rozszerzone lub rozciągnięte, aby spełniały te wytyczne." - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Maksymalna szerokość okładki" - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Maksymalna wysokość okładki" - -msgid "manager.setup.coverage" -msgstr "Pokrycie" - -msgid "manager.setup.copyrightNotice" -msgstr "Informacja o prawach autorskich" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "" -"Instrukcje korektorskie będą dostępne dla korektorów, autorów i redaktorów " -"serii na etapie Redakcja Zgłoszenia. Poniżej znajduje się domyślny zestaw " -"instrukcji w HTML, które mogą być modyfikowane lub zastąpione przez " -"menedżerów wydania w każdym momencie (w HTML lub w tekście odkrytym)." - -msgid "manager.setup.copyeditInstructions" -msgstr "Instrukcje korektorskie" - -msgid "manager.setup.copyediting" -msgstr "Korektorzy" - -msgid "manager.setup.contextSummary" -msgstr "Streszczenie wydania" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Zawiera wszelkie informacje o Twoim wydaniu, które mogą zainteresować " -"czytelników, autorów i recenzentów. To uwzględnia Twoją politykę otwartego " -"dostępu, cel i zakres Twojego wydania, sponsora i historię wydawnictwa." - -msgid "manager.setup.contextAbout" -msgstr "O wydaniu" - -msgid "manager.setup.appearInAboutPress" -msgstr "(Do wyświetlenia w O wydaniu) " - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "" -"Wprowadź dodatkowe informacje, które powinny być wyświetlane dla czytelników " -"w ogłoszeniach." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Dodatkowe informacje" - -msgid "manager.setup.announcementsDescription" -msgstr "" -"Ogłoszenia będą publikowane, aby informować czytelników o wydarzeniach i " -"nowościach wydawniczych. Opublikowane ogłoszenia pojawią się na stronie " -"ogłoszeń." - -msgid "manager.setup.announcements.success" -msgstr "Ustawienia ogłoszeń zostały zaktualizowane." - -msgid "manager.setup.announcements" -msgstr "Ogłoszenia" - -msgid "manager.setup.addSponsor" -msgstr "Dodaj sponsorów" - -msgid "manager.setup.addNavItem" -msgstr "Dodaj pozycję" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Dodaj pozycję do wyświetleń w \"O wydaniu\"" - -msgid "manager.setup.addItem" -msgstr "Dodaj pozycję" - -msgid "manager.setup.addChecklistItem" -msgstr "Dodaj listę kontrolną pozycji" - -msgid "manager.setup.addAboutItem" -msgstr "Dodaj O pozycji" - -msgid "manager.setup.aboutItemContent" -msgstr "Zawartość" - -msgid "manager.setup" -msgstr "Konfiguracja" - -msgid "manager.people.confirmDisable" -msgstr "" -"Dezaktywować użytkownika? To zapobiegnie logowaniu się tego użytkownika do " -"systemu?\n" -"\n" -"Opcjonalnie możesz podać użytkownikowi powód, dla którego dezaktywowano jego " -"konto." - -msgid "manager.people.syncUserDescription" -msgstr "" -"Synchronizacja zapisywania zapisze wszystkich użytkowników w przypisanych do " -"określonych ról w określonym wydaniu do tej samej roli w tym wydaniu. Ta " -"funkcja umożliwia synchronizowanie wspólnego zestawu użytkowników (np. " -"recenzentów) do wydań." - -msgid "manager.people.mergeUsers.into.description" -msgstr "" -"Wybierz użytkownika, któremu chcesz przypisać poprzednie autorstwo " -"użytkownika, zlecenia redakcyjne itp." - -msgid "manager.pressManagement" -msgstr "Zarządzanie wydaniem" - -msgid "user.authorization.pluginLevel" -msgstr "Nie masz wystarczających upoważnień, aby zarządzać tą wtyczką." - -msgid "manager.system.payments" -msgstr "Płatności" - -msgid "manager.system.readingTools" -msgstr "Narzędzia czytelnicze" - -msgid "manager.system.reviewForms" -msgstr "Formy recenzji" - -msgid "manager.system.archiving" -msgstr "Archiwizowanie" - -msgid "manager.system" -msgstr "Ustawienia systemu" - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Przykro nam, nie masz prawa administracyjnych do tego użytkownika. Może t " -"być spowodowane:\n" -"
          \n" -"
        • Użytkownik jest administratorem strony
        • \n" -"
        • Użytkownik jest aktywny w wydaniach, którymi nie zarządzasz
        • \n" -"
        \n" -"To zadanie musi być wykonane przez administratora strony.\n" -"\t" - -msgid "manager.people.mergeUsers.from.description" -msgstr "" -"Wybierz użytkownika, aby połączyć z kontem innego użytkownika (np. kiedy " -"ktoś ma dwa konta użytkownika). Konto wybrane jako pierwsze zostanie " -"usunięte, a jego zgłoszenia, przypisane zadanie itp. zostaną przekazane na " -"drugie konto." - -msgid "manager.people.enrollSyncPress" -msgstr "Z wydania" - -msgid "manager.people.enrollExistingUser" -msgstr "Zapisz istniejącego użytkownika" - -msgid "manager.people.confirmRemove" -msgstr "" -"Usunąć użytkownika z tego wydania? Poskutkuje to wyrejestrowaniem " -"użytkownika z wszystkich ról dla tego wydania." - -msgid "manager.people.allUsers" -msgstr "Wszyscy zapisani użytkownicy" - -msgid "manager.people.allSiteUsers" -msgstr "Zapisz użytkownika z tej strony do tego wydania" - -msgid "manager.people.allPresses" -msgstr "Wszystkie wydania" - -msgid "manager.people.allEnrolledUsers" -msgstr "Zapisani użytkownicy do tego wydania" - -msgid "manager.users.selectRole" -msgstr "Wybierz rolę" - -msgid "manager.users.currentRoles" -msgstr "Bieżące role" - -msgid "manager.users.availableRoles" -msgstr "Dostępne role" - -msgid "manager.tools.statistics" -msgstr "" -"Narzędzia do generowania raportu powiązanych ze statystykami użytkowania (" -"widok katalogu indeksów, widok abstraktu monografii, pobrane monografie)" - -msgid "manager.tools.importExport" -msgstr "" -"Wszystkie narzędzia szczegółowe do importowania i eksportowania danych (" -"wydawnictw, monografii, użytkowników)" - -msgid "manager.tools" -msgstr "Narzędzia" - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "" -"Ogranicz wyniki do typu obiektu (wydanie, seria, monografia, typ pliku) i/" -"lub przez jeden (lub więcej) identyfikator obiektów." - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Ogranicz wyniki do zawartości (serii i/lub monografii)." - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Widok głównej strony wydania" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Widok głównej strony serii" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Abstrakt monografii i pobrane" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Widok abstraktu monografii" - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Pobrane monografie" - -msgid "manager.settings.distributionDescription" -msgstr "" -"Wszystkie szczegóły ustawień do procesu dystrybucji (powiadomienia, " -"indeksowanie, archiwizowanie, płatności, narzędzia czytelnicze)." - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "To nie jest aktualny typ kodu wydawcy." - -msgid "manager.settings.publisherCodeType" -msgstr "Typ kodu wydawcy" - -msgid "manager.settings.publisherCode" -msgstr "Kod wydawcy" - -msgid "manager.settings.location" -msgstr "Położenie geograficzne" - -msgid "manager.settings.publisher" -msgstr "Nazwa Wydawcy" - -msgid "manager.settings.publisher.identity.description" -msgstr "" -"Te pole są wymagane, aby opublikować aktualne metadane ONIX." - -msgid "manager.settings.publisher.identity" -msgstr "Tożsamość wydawcy" - -msgid "manager.settings.press" -msgstr "Wydawnictwo" - -msgid "manager.settings.pressSettings" -msgstr "Ustawienia wydawnicze" - -msgid "manager.settings" -msgstr "Ustawienia" - -msgid "manager.payment.success" -msgstr "Zaktualizowano ustawienia płatności." - -msgid "manager.payment.options.enablePayments" -msgstr "" -"Płatności zostaną uruchomione dla tego wydawnictwa. Zauważ, że użytkownicy " -"muszą się zalogować, aby dokonać płatności." - -msgid "manager.payment.generalOptions" -msgstr "Opcje Ogólne" - -msgid "manager.series.restricted" -msgstr "Nie pozwalaj autorom na bezpośrednie zgłoszenia do tej serii." - -msgid "manager.series.seriesTitle" -msgstr "Tytuł serii" - -msgid "manager.series.existingUsers" -msgstr "Istniejący użytkownicy" - -msgid "manager.series.noneCreated" -msgstr "Seria nie została utworzona." - -msgid "manager.series.form.titleRequired" -msgstr "Tytuł jest wymagany dla tej serii." - -msgid "manager.series.form.abbrevRequired" -msgstr "Skrócony tytuł jest wymagany dla tej serii." - -msgid "manager.series.unassigned" -msgstr "Dostępni Redaktorzy Serii" - -msgid "manager.series.hideAbout" -msgstr "Pomiń tę serię z O wydaniu." - -msgid "manager.series.seriesEditorInstructions" -msgstr "" -"Dodaj Redaktora Serii do tej serii z dostępnych Redaktorów Serii. Po dodaniu " -"zaznacz, czy Redaktor Serii ma nadzorować recenzję (recenzję naukową) i/lub " -"edycję (redakcję, skład i korektę) zgłoszenia do tej serii. Redaktorzy Serii " -"są tworzeni poprzez kliknięcieRedaktorzy " -"Seriiw Role w Zarządzeniu Wydawnictwem." - -msgid "manager.series.assigned" -msgstr "Redaktorzy dla tej serii" - -msgid "manager.series.policy" -msgstr "Opis serii" - -msgid "manager.series.create" -msgstr "Stwórz serie" - -msgid "manager.series.book" -msgstr "Serie książek" - -msgid "manager.series.disableComments" -msgstr "Wyłączone komentarze czytelników dla tej serii." - -msgid "manager.series.abstractsNotRequired" -msgstr "Nie wymaga abstraktów" - -msgid "manager.series.submissionsToThisSection" -msgstr "Złożono zgłoszenia do tej serii" - -msgid "manager.series.submissionReview" -msgstr "Nie będzie poddane recenzji naukowej" - -msgid "manager.series.readingTools" -msgstr "Narzędzia czytelnicze" - -msgid "manager.series.open" -msgstr "Otwarte zgłoszenia" - -msgid "manager.series.indexed" -msgstr "Zaindeksowano" - -msgid "manager.series.confirmDelete" -msgstr "Jesteś pewien, że chcesz ostatecznie usunąć tę serię?" - -msgid "manager.series.editorRestriction" -msgstr "Pozycje mogą być zgłoszone tylko przez Redaktorów i Redaktorów Serii." - -msgid "manager.series.submissionIndexing" -msgstr "Nie będzie wzięte pod uwagę w indeksowaniu wydania" - -msgid "manager.series.form.reviewFormId" -msgstr "Proszę upewnij się, że wybrałeś prawidłową formę recenzji." - -msgid "manager.languages.noneAvailable" -msgstr "" -"Przykro nam, brak dostępnych dodatkowych opcji językowych. Skontaktuj się z " -"administratorem strony, jeśli chcesz zastosować dodatkowy język dla tego " -"wydawnictwa." - -msgid "manager.series.form.mustAllowPermission" -msgstr "" -"Proszę upewnij się, że przynajmniej jedno pole jest zaznaczone dla każdego " -"zlecenia Redaktora Serii." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "To będzie domyślny język dla strony wydawnictwa." - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "" -"To zastąpi jakiekolwiek szczegółowe ustawienia wydawnicze dla tych ustawień " -"regionalnych" - -msgid "manager.setup.disableSubmissions.description" -msgstr "" -"Nie zezwalaj użytkownikom na zgłaszanie nowych artykułów do wydawnictwa. " -"Zgłoszenia mogą być nieaktywne dla indywidualnych wydań " -"seria wydania w ustawieniach." - -msgid "manager.setup.disableSubmissions.notAccepting" -msgstr "" -"Wydawnictwo nie przyjmuje zgłoszeń w tym momencie. Przejdź do ustawień " -"workflow, aby wznowić nabór zgłoszeń." - -msgid "manager.series.confirmDeactivateSeries.error" -msgstr "" -"Przynajmniej jedna seria musi być aktywna. Odwiedź ustawienia workflow, aby " -"zdezaktywować wszystkie zgłoszenia do tego wydania." - -msgid "plugins.importexport.native.exportSubmissions" -msgstr "Eksportuj zgłoszenia" - -msgid "plugins.importexport.common.invalidXML" -msgstr "Uszkodzony XML:" - -msgid "plugins.importexport.common.error.validation" -msgstr "Wybrane obiekty nie mogą być przywrócone." - -msgid "plugins.importexport.common.error.noObjectsSelected" -msgstr "Nie wybrano żadnej pozycji." diff --git a/locale/pl_PL/submission.po b/locale/pl_PL/submission.po deleted file mode 100644 index f595ab7835e..00000000000 --- a/locale/pl_PL/submission.po +++ /dev/null @@ -1,503 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-15 13:16+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.chapter.pages" -msgstr "Strony" - -msgid "submission.chapter.editChapter" -msgstr "Edytuj rozdział" - -msgid "submission.chapter.addChapter" -msgstr "Dodaj rozdział" - -msgid "submission.chaptersDescription" -msgstr "" -"Możesz zamieścić rozdziały tutaj i przypisać współpracowników z listy " -"powyżej. Wskazani współpracownicy będą mieli dostęp do rozdziału w trakcie " -"różnych etapów procesu publikacji." - -msgid "submission.chapters" -msgstr "Rozdziały" - -msgid "submission.chapter" -msgstr "Rozdział" - -msgid "submission.artwork.permissions" -msgstr "Pozwolenia" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.fairCopy" -msgstr "Wersja ostateczna" - -msgid "submission.published" -msgstr "Gotowa produkcja" - -msgid "submission.monograph" -msgstr "Monografia" - -msgid "submission.editorName" -msgstr "{$editorName} (ed)" - -msgid "submission.workflowType.change" -msgstr "Zmień" - -msgid "submission.workflowType.authoredWork" -msgstr "Monografia: Autorzy są kojarzeni z całością książki." - -msgid "submission.workflowType.editedVolume" -msgstr "Redagowany tom: autorzy są kojarzeni z własnymi rozdziałami." - -msgid "submission.workflowType.editedVolume.label" -msgstr "Redagowany tom" - -msgid "submission.workflowType.description" -msgstr "" -"Monografia to rozprawa autoryzowana przez jedną lub więcej osób. Zredagowany " -"tom posiada różnych autorów dla każdego rozdziału (w szczegółach rozdziału " -"wprowadzonymi w późniejszej facie procesu redakcyjnego.)" - -msgid "submission.workflowType" -msgstr "Typ zgłoszenia" - -msgid "submission.synopsis" -msgstr "Streszczenie" - -msgid "submission.select" -msgstr "Wybierz zgłoszenie" - -msgid "submission.title" -msgstr "Tytuł książki" - -msgid "submission.upload.selectComponent" -msgstr "Wybierz komponent" - -msgid "submission.submit.title" -msgstr "Zgłoś monografię" - -msgid "submission.list.countMonographs" -msgstr "{$count} monografie" - -msgid "submission.list.monographs" -msgstr "Monografie" - -msgid "section.any" -msgstr "Wszystkie serie" - -msgid "submission.metadataDescription" -msgstr "" -"Te specyfikacje opierają się na zestawie metadanych Dublin Core o " -"międzynarodowym standardzie używanym do opisu zawartości wydawnictwa." - -msgid "submission.dependentFiles" -msgstr "Pliki zależne" - -msgid "submission.upload.fileContents" -msgstr "Komponent zgłoszenia" - -msgid "workflow.review.externalReview" -msgstr "Zewnętrzna recenzja" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Wyślij do zewnętrznej recenzji" - -msgid "submission.submit.titleAndSummary" -msgstr "Tytuł i streszczenie" - -msgid "submission.event.publicationFormatRemoved" -msgstr "Format publikacji \"{$formatName}\"został usunięty." - -msgid "submission.event.publicationFormatCreated" -msgstr "Format publikacji \"{$formatName}\" został utworzony." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "" -"Metadane formatu publikacji dla \"{$formatName}\" zostały zaktualizowane." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Metadane katalogu zostały zaktualizowane." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "" -"Format publikacji \"{$publicationFormatName}\" nie jest już publikowany." - -msgid "submission.event.publicationFormatPublished" -msgstr "" -"Format publikacji \"{$publicationFormatName}\" został zatwierdzony dla tej " -"publikacji." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Format publikacji \"{$publicationFormatName}\" nie jest już dostępny." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Format publikacji \"{$publicationFormatName}\" jest udostępniony." - -msgid "submission.event.metadataUnpublished" -msgstr "Metadane monografii nie są już publikowane." - -msgid "submission.event.metadataPublished" -msgstr "Metadane monografii są zatwierdzone do publikacji." - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Format publikacji" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Katalog" - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monografia" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Każdy rozdział może mieć swoją własną datę publikacji." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Wszystkie rozdziały zastosują datę publikacji tej monografii." - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Terminy publikacji" - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Wyświetl zgłoszenie" - -msgid "submission.catalogEntry.isAvailable" -msgstr "Ta monografia jest gotowa do załączenia w publicznym katalogu." - -msgid "submission.catalogEntry.confirm.required" -msgstr "Proszę potwierdź gotowość zgłoszenia do umieszczenia w katalogu." - -msgid "submission.catalogEntry.confirm" -msgstr "Dodaj tę książkę do publicznego katalogu" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "Musisz wybrać przynajmniej jedną monografię do dodania do katalogu." - -msgid "submission.catalogEntry.select" -msgstr "Wybierz monografie, aby dodać je do katalogu" - -msgid "submission.catalogEntry.add" -msgstr "Dodaj wybrane do katalogu" - -msgid "submission.catalogEntry.new" -msgstr "Dodaj pozycję" - -msgid "submission.editCatalogEntry" -msgstr "Pozycja" - -msgid "submission.incomplete" -msgstr "Oczekujące na zatwierdzenie" - -msgid "submission.complete" -msgstr "Zatwierdzono" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Usuń załadowanego redaktora" - -msgid "grid.chapters.title" -msgstr "Rozdziały" - -msgid "submission.submit.noContext" -msgstr "Wydanie zgłoszenia nie mogło być znalezione." - -msgid "submission.submit.userGroupDescription" -msgstr "Jeśli zgłaszasz edytowany tom, powinieneś wybrać rolę redaktora tomu." - -msgid "submission.submit.userGroup" -msgstr "Zgłoś moją rolę jako..." - -msgid "submission.submit.placement" -msgstr "Umiejscowienie zgłoszenia" - -msgid "submission.submit.checklistErrors" -msgstr "" -"Proszę przeczytaj i sprawdź pozycje w liście kontrolnej zgłoszenia. " -"Niektóre pozycje są pominięte. {$itemsRemaining}." - -msgid "submission.submit.whatNext.description" -msgstr "" -"Wydawnictwo zostało powiadomione o zgłoszeniu, otrzymałeś email z " -"potwierdzeniem do Twojej ewidencji. . Kiedy redaktor zrecenzuje zgłoszenie, " -"skontaktujemy się z Tobą." - -msgid "submission.submit.generalInformation" -msgstr "Ogólne informacje" - -msgid "submission.submit.coverNote" -msgstr "Pismo przewodnie dla redaktora" - -msgid "submission.submit.nextSteps" -msgstr "Następne kroki" - -msgid "submission.submit.confirmation" -msgstr "Potwierdzenie" - -msgid "submission.submit.finishingUp" -msgstr "Zakończenie" - -msgid "submission.submit.metadata" -msgstr "Metadane" - -msgid "submission.submit.catalog" -msgstr "Katalog" - -msgid "submission.submit.prepare" -msgstr "Przygotuj" - -msgid "submission.submit.submissionFile" -msgstr "Plik zgłoszenia" - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Proszę wybierz rolę współautora." - -msgid "submission.submit.form.abstractRequired" -msgstr "Proszę wprowadź krótki opis monografii." - -msgid "submission.submit.form.titleRequired" -msgstr "Proszę wprowadź tytuł monografii." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Imię, nazwisko i adres email każdego autora jest wymagany." - -msgid "submission.submit.form.authorRequired" -msgstr "Przynajmniej jeden autor jest wymagany." - -msgid "submission.submit.contributorRole" -msgstr "Rola współautora" - -msgid "submission.submit.privacyStatement" -msgstr "Oświadczenie o ochronie prywatności" - -msgid "submission.submit.form.localeRequired" -msgstr "Proszę wybierz język zgłoszenia." - -msgid "submission.submit.seriesPosition.description" -msgstr "Przykłady: książka 2, tom 2" - -msgid "submission.submit.seriesPosition" -msgstr "Pozycja w serii" - -msgid "author.submit.seriesRequired" -msgstr "Aktualna seria jest wymagana." - -msgid "author.isVolumeEditor" -msgstr "Dobierz współautora jako redaktora tego tomu." - -msgid "submission.submit.selectSeries" -msgstr "Wybierz serię (opcjonalnie)" - -msgid "submission.submit.cancelSubmission" -msgstr "" -"Możesz dokończyć zgłoszenie w późniejszym terminie poprzez wybranie " -"Aktywnych Zgłoszeń ze strony autora." - -msgid "submission.submit.upload" -msgstr "Wprowadź zgłoszenie" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Nowe zgłoszenie" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Rozpocznij nowe zgłoszenie" - -msgid "submission.submit" -msgstr "Rozpocznij zgłoszenie nowej książki" - -msgid "grid.action.deleteChapter" -msgstr "Usuń ten rozdział" - -msgid "grid.action.editChapter" -msgstr "Edytuj ten rozdział" - -msgid "grid.action.addChapter" -msgstr "Utwórz nowy rozdział" - -msgid "submission.supportingAgencies" -msgstr "Wspierające agencje" - -msgid "submission.metadata" -msgstr "Metadane" - -msgid "submission.confirmSubmit" -msgstr "Czy jesteś pewien, że chcesz zgłosić swój manuskrypt do wydania?" - -msgid "manuscript.submissions" -msgstr "Zgłoszenia manuskryptu" - -msgid "submissions.queuedReview" -msgstr "W trakcie recenzji" - -msgid "submission.round" -msgstr "Runda  {$round}" - -msgid "manuscript.submission" -msgstr "Zgłoszenie manuskryptu" - -msgid "submission.sharing" -msgstr "Udostępnij" - -msgid "submission.download" -msgstr "Pobierz" - -msgid "submission.proofs" -msgstr "Korekty" - -msgid "submission.publicationFormats" -msgstr "Formaty publikacji" - -msgid "submission.copyedit" -msgstr "Redakcja" - -msgid "publication.scheduledIn" -msgstr "Zaplanowano do publikacji na {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "" -"Wszystkie wymogi publikacyjne zostały spełnione. Czy jesteś pewien, że " -"chcesz upublicznić tę pozycję katalogową?" - -msgid "publication.publishedIn" -msgstr "Opublikowano w {$issueName}." - -msgid "publication.required.issue" -msgstr "" -"Publikacja musi być przypisana do problematyki zanim zostanie opublikowana." - -msgid "publication.invalidSeries" -msgstr "Nie znaleziono serii dla tej publikacji." - -msgid "publication.catalogEntry.success" -msgstr "Zaktualizowano szczegóły pozycji katalogowej." - -msgid "publication.catalogEntry" -msgstr "Pozycja katalogowa" - -msgid "catalog.browseTitles" -msgstr "{$numTitles} Tytuły" - -msgid "submission.list.saveFeatureOrder" -msgstr "Zapisz zamówienie" - -msgid "submission.list.orderingFeaturesSection" -msgstr "" -"Przeciągnij i upuść lub stuknij przyciski góra-dół, by zmienić zasady " -"zamawiania w {$title}." - -msgid "submission.list.orderingFeatures" -msgstr "" -"Przeciągnij i upuść lub stuknij przyciski góra-dół, aby zmienić funkcje " -"zamawiania na stronie głównej." - -msgid "submission.list.orderFeatures" -msgstr "Funkcje zamawiania" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count}z {$total} monografii" - -msgid "publication.inactiveSeries" -msgstr "{$series} (Nieaktywny)" - -msgid "submission.list.viewEntry" -msgstr "Wgląd" - -msgid "submission.queries.production" -msgstr "Dyskusja w trakcie realizacji" - -msgid "publication.version.details" -msgstr "Szczegóły publikacji dla wersji {$version}" - -msgid "publication.unschedule.confirm" -msgstr "Na pewno chcesz zdjąć te pozycje z planu publikacji?" - -msgid "publication.unpublish.confirm" -msgstr "Na pewno chcesz aby to było zdjęte z publikacji?" - -msgid "publication.unpublish" -msgstr "Zdejmij z publikacji" - -msgid "submission.copyrightOther.description" -msgstr "Przydziel prawa autorskie do monografii podanemu niżej podmiotowi." - -msgid "submission.copyrightHolder.description" -msgstr "Prawa autorskie zostaną przydzielone automatycznie dla {$copyright}." - -msgid "submission.license.description" -msgstr "" -"Licencja zostanie ustawiona automatycznie na {$licenseName} w momencie publikacji." - -msgid "publication.required.reviewStage" -msgstr "" -"Aby opublikować zgłoszenie musi być co najmniej w statusie Korekta lub " -"Produkcja." - -msgid "publication.required.declined" -msgstr "Odrzucone zgłoszenie nie może być opublikowane." - -msgid "publication.publish.requirements" -msgstr "Zanim dojdzie do publikacji trzeba spełnić niniejsze wymagania." - -msgid "publication.publish" -msgstr "Opublikuj" - -msgid "publication.invalidSubmission" -msgstr "Nie można znaleźć zgłoszenia właściwego dla tej publikacji." - -msgid "publication.event.versionUnpublished" -msgstr "Wersja została usunięta z publikacji." - -msgid "publication.event.versionScheduled" -msgstr "Nowa wersja została zaplanowana do publikacji." - -msgid "publication.event.versionPublished" -msgstr "Nowa wersja została upubliczniona." - -msgid "publication.event.unpublished" -msgstr "Zgłoszenie zostało zdjęte z publikacji." - -msgid "publication.event.scheduled" -msgstr "Zgłoszenie zostało zaplanowane do publikacji." - -msgid "publication.event.published" -msgstr "Zgłoszenie zostało opublikowane." - -msgid "publication.editDisabled" -msgstr "Niniejsza wersja jest już opublikowana. Nie można jej edytować." - -msgid "publication.datePublished" -msgstr "Data publikacji" - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "" -"Rok obowiązywania praw autorskich będzie ustawiony automatycznie na " -"podstawie wybranej daty publikacji." - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Rok obowiązywania praw autorskich będzie ustawiony automatycznie w momencie " -"publikacji numeru." - -msgid "submission.publications" -msgstr "Publikacje" - -msgid "publication.status.unscheduled" -msgstr "Oczekująca" - -msgid "submission.status.scheduled" -msgstr "Zaplanowana" - -msgid "publication.status.published" -msgstr "Opublikowana" - -msgid "submission.publication" -msgstr "Publikacja" diff --git a/locale/pt/submission.po b/locale/pt/submission.po new file mode 100644 index 00000000000..e61f8854914 --- /dev/null +++ b/locale/pt/submission.po @@ -0,0 +1,3 @@ +# Ana Carvalho , 2024. +msgid "" +msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" diff --git a/locale/pt_BR/admin.po b/locale/pt_BR/admin.po index fe75bd1d5a9..ec6f1ad6ac1 100644 --- a/locale/pt_BR/admin.po +++ b/locale/pt_BR/admin.po @@ -1,10 +1,12 @@ +# Diego José Macêdo , 2022, 2023. +# Téssio Fechine , 2024. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T12:00:53-07:00\n" -"PO-Revision-Date: 2021-02-02 23:15+0000\n" -"Last-Translator: Diego José Macêdo \n" +"PO-Revision-Date: 2024-07-30 15:56+0000\n" +"Last-Translator: Téssio Fechine \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" @@ -12,55 +14,61 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.18.2\n" msgid "admin.hostedContexts" msgstr "Editoras hospedadas" +msgid "admin.settings.appearance.success" +msgstr "As configurações de aparência do site foram atualizadas com sucesso." + +msgid "admin.settings.config.success" +msgstr "As configurações do site foram atualizadas com sucesso." + +msgid "admin.settings.info.success" +msgstr "As informações do site foram atualizadas com sucesso." + msgid "admin.settings.redirect" msgstr "Redirecionar para editora" msgid "admin.settings.redirectInstructions" -msgstr "Solicitações para o site principal serão redirecionados para esta editora. Isso pode ser útil se o site está hospedando apenas uma editora, por exemplo." +msgstr "" +"Solicitações para o site principal serão redirecionados para esta editora. " +"Isso pode ser útil se o site está hospedando apenas uma editora, por exemplo." msgid "admin.settings.noPressRedirect" msgstr "Não redirecionar" -msgid "admin.contexts.confirmDelete" -msgstr "Tem certeza que deseja apagar definitivamente esta editora e todo seu conteúdo?" - -msgid "admin.contexts.create" -msgstr "Criar Editora" - -msgid "admin.contexts.form.titleRequired" -msgstr "Um título é necessário." - -msgid "admin.contexts.form.pathRequired" -msgstr "Um caminho é requerido." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "O caminho pode conter somente caracteres alfanuméricos, sublinhado, e hífens, e deve começar e terminar com um caractere alfanumérico." - -msgid "admin.contexts.form.pathExists" -msgstr "O caminho selecionado já é utilizado por outra editora." - msgid "admin.languages.primaryLocaleInstructions" msgstr "Este será o idioma padrão para o site e quaisquer editoras hospedadas." msgid "admin.languages.supportedLocalesInstructions" -msgstr "Selecione todas os idiomas que estarão disponíveis no site. Os idiomas selecionados estarão disponíveis para utilização por todas as editoras hospedados, e também aparecem em uma lista de idiomas em cada página do site (que pode ser substituída nas páginas específicas de cada editora). Se vários idiomas não forem selecionados, a lista de idiomas não aparecerá e as configurações de idioma não estarão disponíveis para as editoras." +msgstr "" +"Selecione todas os idiomas que estarão disponíveis no site. Os idiomas " +"selecionados estarão disponíveis para utilização por todas as editoras " +"hospedados, e também aparecem em uma lista de idiomas em cada página do site " +"(que pode ser substituída nas páginas específicas de cada editora). Se " +"vários idiomas não forem selecionados, a lista de idiomas não aparecerá e as " +"configurações de idioma não estarão disponíveis para as editoras." msgid "admin.locale.maybeIncomplete" msgstr "* Idiomas marcados podem estar incompletos." msgid "admin.languages.confirmUninstall" -msgstr "Tem certeza que deseja desinstalar este idioma? Pode afetar editora que o estão usando atualmente." +msgstr "" +"Tem certeza que deseja desinstalar este idioma? Pode afetar editora que o " +"estão usando atualmente." msgid "admin.languages.installNewLocalesInstructions" -msgstr "Selecione idiomas adicionais para instalar no sistema. Idiomas devem ser instalados antes de poderem ser usados por editoras hospedados. Consulte a documentação do OMP para obter informações sobre a adição de novos idiomas." +msgstr "" +"Selecione idiomas adicionais para instalar neste sistema. Idiomas devem ser " +"instalados antes de poderem ser usados por editoras hospedadas. Consulte a " +"documentação do OMP para obter informações sobre a adição de novos idiomas." msgid "admin.languages.confirmDisable" -msgstr "Tem certeza que deseja desabilitar este idioma? Pode afetar editora que o estão usando atualmente." +msgstr "" +"Tem certeza que deseja desabilitar este idioma? Pode afetar editora que o " +"estão usando atualmente." msgid "admin.systemVersion" msgstr "Versão do OMP" @@ -74,47 +82,45 @@ msgstr "Configurações de Editora" msgid "admin.presses.noneCreated" msgstr "Não foram criadas editoras." -msgid "admin.contexts.contextDescription" -msgstr "Descrição da editora" +msgid "admin.contexts.create" +msgstr "Criar Editora" -msgid "admin.presses.addPress" -msgstr "Adicionar Editora" +msgid "admin.contexts.form.titleRequired" +msgstr "Um título é necessário." -msgid "admin.overwriteConfigFileInstructions" +msgid "admin.contexts.form.pathRequired" +msgstr "Um caminho é requerido." + +msgid "admin.contexts.form.pathAlphaNumeric" msgstr "" -"

        ATENÇÃO!\n" -"

        O sistema não pode substituir automaticamente o arquivo de configuração. Para aplicar as alterações de configuração que você deve abrir config.inc.php em um editor de texto, substituindo o seu conteúdo com o conteúdo do campo de texto abaixo.

        " +"O caminho pode conter somente caracteres alfanuméricos, sublinhado, e " +"hífens, e deve começar e terminar com um caractere alfanumérico." -msgid "admin.contexts.form.edit.success" -msgstr "{$name} foi editado com sucesso." +msgid "admin.contexts.form.pathExists" +msgstr "O caminho selecionado já é utilizado por outra editora." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "A tradução principal deve ser uma das suportadas pela editora." msgid "admin.contexts.form.create.success" msgstr "{$name} foi criado com sucesso." -msgid "admin.settings.info.success" -msgstr "As informações do site foram atualizadas com sucesso." - -msgid "admin.settings.config.success" -msgstr "As configurações do site foram atualizadas com sucesso." +msgid "admin.contexts.form.edit.success" +msgstr "{$name} foi editado com sucesso." -msgid "admin.settings.appearance.success" -msgstr "As configurações de aparência do site foram atualizadas com sucesso." +msgid "admin.contexts.contextDescription" +msgstr "Descrição da editora" -msgid "admin.settings.disableBulkEmailRoles.contextDisabled" -msgstr "" -"O recurso de e-mail em massa foi desativado para esta editora. Habilite este " -"recurso em Administração> Configurações do " -"site ." +msgid "admin.presses.addPress" +msgstr "Adicionar Editora" -msgid "admin.settings.disableBulkEmailRoles.description" +msgid "admin.overwriteConfigFileInstructions" msgstr "" -"Um gerente de editora não poderá enviar e-mails em massa para nenhuma das " -"funções selecionadas abaixo. Use esta configuração para limitar o abuso do " -"recurso de notificação por e-mail. Por exemplo, pode ser mais seguro " -"desativar e-mails em massa para leitores, autores ou outros grandes grupos " -"de usuários que não consentiram em receber esses e-mails.

        O recurso " -"de e-mail em massa pode ser desativado completamente para esta editora em Administração> Configurações do site ." +"

        ATENÇÃO!\n" +"

        O sistema não pode substituir automaticamente o arquivo de configuração. " +"Para aplicar as alterações de configuração que você deve abrir " +"config.inc.php em um editor de texto, substituindo o seu conteúdo com " +"o conteúdo do campo de texto abaixo.

        " msgid "admin.settings.enableBulkEmails.description" msgstr "" @@ -130,5 +136,65 @@ msgstr "" "assistente de configurações na lista de " "Editoras Hospedadas ." -msgid "admin.contexts.form.primaryLocaleNotSupported" -msgstr "A tradução principal deve ser uma das suportadas pela editora." +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Um gerente de editora não poderá enviar e-mails em massa para nenhuma das " +"funções selecionadas abaixo. Use esta configuração para limitar o abuso do " +"recurso de notificação por e-mail. Por exemplo, pode ser mais seguro " +"desativar e-mails em massa para leitores, autores ou outros grandes grupos " +"de usuários que não consentiram em receber esses e-mails.

        O recurso " +"de e-mail em massa pode ser desativado completamente para esta editora em Administração> Configurações do site ." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"O recurso de e-mail em massa foi desativado para esta editora. Habilite este " +"recurso em Administração> Configurações do " +"site ." + +msgid "admin.siteManagement.description" +msgstr "" +"Adicione, edite ou remova editoras deste site e gerencie as configurações de " +"todo o site." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "O ID do capítulo não é um número inteiro" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "O ID da série não é um número inteiro" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Selecione o tipo de estatísticas de uso geográfico que podem ser coletadas " +"pelas editoras neste site. Estatísticas geográficas mais detalhadas podem " +"aumentar consideravelmente o tamanho do seu banco de dados e, em alguns " +"casos raros, podem prejudicar o anonimato de seus visitantes. Cada editora " +"pode definir essa configuração de maneira diferente, mas uma editoras nunca " +"pode coletar registros mais detalhados do que os configurados aqui. Por " +"exemplo, se o site suporta apenas país e região, a editora pode selecionar " +"país e região ou apenas país. A editora não poderá rastrear país, região e " +"cidade." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Habilite as estatísticas institucionais se desejar que as editoras neste " +"site possam coletar estatísticas de uso por instituição. As editoras " +"precisarão adicionar a instituição e seus intervalos de IP para usar esse " +"recurso. A ativação das estatísticas institucionais pode aumentar " +"consideravelmente o tamanho do seu banco de dados." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Tornar ou não os terminais da SUSHI API acessíveis publicamente para todas " +"as editoras neste site. Se você habilitar a API pública, cada editora pode " +"substituir essa configuração para tornar suas estatísticas privadas. No " +"entanto, se você desabilitar a API pública, as editoras não poderão tornar " +"sua própria API pública." + +#~ msgid "admin.contexts.confirmDelete" +#~ msgstr "" +#~ "Tem certeza que deseja apagar definitivamente esta editora e todo seu " +#~ "conteúdo?" + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Use o site como plataforma para todas as editoras." diff --git a/locale/pt_BR/api.po b/locale/pt_BR/api.po index a43905caefb..b14d44951a8 100644 --- a/locale/pt_BR/api.po +++ b/locale/pt_BR/api.po @@ -1,6 +1,8 @@ +# Diego José Macêdo , 2021, 2022. +# cicilia conceiçao de maria , 2021. msgid "" msgstr "" -"PO-Revision-Date: 2021-02-09 01:19+0000\n" +"PO-Revision-Date: 2022-12-23 19:02+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -9,32 +11,34 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.13.1\n" -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "Não tem permissões para mover este e-mail padrão para outra editora." - -msgid "api.submissions.403.contextRequired" +msgid "api.submissions.400.submissionIdsRequired" msgstr "" -"Para enviar ou editar uma submissão deve fazer um pedido ao endpoint da API " -"da editora." +"Você deve fornecer um ou mais IDs de submissão para serem adicionados ao " +"catálogo." -msgid "api.submissions.403.cantChangeContext" -msgstr "Você não pode alterar a editora de uma submissão." +msgid "api.submissions.400.submissionsNotFound" +msgstr "Uma ou mais submissões que você especificou não foram encontradas." -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "A publicação solicitada não é parte desta submissão." +msgid "api.submissions.400.wrongContext" +msgstr "A submissão solicitada não está nesta editora." + +msgid "api.emails.403.disabled" +msgstr "O recurso de notificação por e-mail não foi ativado para esta editora." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"Você não tem permissão para mover este modelo de e-mail para outra editora." msgid "api.publications.403.contextsDidNotMatch" msgstr "A publicação solicitada não é parte desta editora." -msgid "api.emails.403.disabled" -msgstr "O recurso de notificação por e-mail não foi ativado para esta editora." +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "A publicação solicitada não é parte desta submissão." -msgid "api.submissions.400.submissionsNotFound" -msgstr "Uma ou mais submissões que você especificou não foram encontradas." +msgid "api.submissions.403.cantChangeContext" +msgstr "Você não pode alterar a editora de uma submissão." -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Você deve fornecer um ou mais IDs de submissão para serem adicionados ao " -"catálogo." +msgid "api.submission.400.inactiveSection" +msgstr "Esta seção não está mais recebendo submissões." diff --git a/locale/pt_BR/author.po b/locale/pt_BR/author.po index 6bcc0843577..a8c1529669e 100644 --- a/locale/pt_BR/author.po +++ b/locale/pt_BR/author.po @@ -1,6 +1,7 @@ +# Diego José Macêdo , 2022. msgid "" msgstr "" -"PO-Revision-Date: 2020-06-05 16:39+0000\n" +"PO-Revision-Date: 2022-01-27 14:25+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -13,3 +14,6 @@ msgstr "" msgid "author.submit.notAccepting" msgstr "Esta editora não está aceitando submissões no momento." + +msgid "author.submit" +msgstr "Nova Submissão" diff --git a/locale/pt_BR/default.po b/locale/pt_BR/default.po index 599ca5aca85..647465edfca 100644 --- a/locale/pt_BR/default.po +++ b/locale/pt_BR/default.po @@ -1,9 +1,10 @@ +# Diego José Macêdo , 2022, 2023. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T12:00:53-07:00\n" -"PO-Revision-Date: 2020-06-06 02:27+0000\n" +"PO-Revision-Date: 2023-01-05 17:02+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -12,7 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.13.1\n" msgid "default.genres.appendix" msgstr "Apêndice" @@ -53,20 +54,14 @@ msgstr "Ilustração" msgid "default.genres.other" msgstr "Outro" -msgid "default.groups.name.siteAdmin" -msgstr "Admin do site" - -msgid "default.groups.plural.siteAdmin" -msgstr "Admins do site" - -msgid "default.groups.name.pressManager" -msgstr "Gerente de editora" +msgid "default.groups.name.manager" +msgstr "Gerente da editora" -msgid "default.groups.plural.pressManager" -msgstr "Gerentes de editora" +msgid "default.groups.plural.manager" +msgstr "Gerentes da editora" -msgid "default.groups.abbrev.pressManager" -msgstr "GerImp" +msgid "default.groups.abbrev.manager" +msgstr "GE" msgid "default.groups.name.editor" msgstr "Editor geral" @@ -77,15 +72,6 @@ msgstr "Editores gerais" msgid "default.groups.abbrev.editor" msgstr "EdGer" -msgid "default.groups.name.productionEditor" -msgstr "Editor de produção" - -msgid "default.groups.plural.productionEditor" -msgstr "Editores de produção" - -msgid "default.groups.abbrev.productionEditor" -msgstr "EdProd" - msgid "default.groups.name.sectionEditor" msgstr "Editor de série" @@ -95,41 +81,105 @@ msgstr "Editores de série" msgid "default.groups.abbrev.sectionEditor" msgstr "EdSer" -msgid "default.groups.name.copyeditor" -msgstr "Editor de texto" +msgid "default.groups.name.subscriptionManager" +msgstr "Gerente de assinaturas" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Gerentes de assinatura" -msgid "default.groups.plural.copyeditor" -msgstr "Editores de texto" +msgid "default.groups.abbrev.subscriptionManager" +msgstr "GSub" + +msgid "default.groups.name.chapterAuthor" +msgstr "Autor de capítulo" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Autores de capítulos" -msgid "default.groups.abbrev.copyeditor" -msgstr "EdText" +msgid "default.groups.abbrev.chapterAuthor" +msgstr "AUCap" -msgid "default.groups.name.proofreader" -msgstr "Leitor de provas" +msgid "default.groups.name.volumeEditor" +msgstr "Editor de volume" -msgid "default.groups.plural.proofreader" -msgstr "Leitores de provas" +msgid "default.groups.plural.volumeEditor" +msgstr "Editores de volumes" -msgid "default.groups.abbrev.proofreader" -msgstr "LeitProv" +msgid "default.groups.abbrev.volumeEditor" +msgstr "EdVol" -msgid "default.groups.name.designer" -msgstr "Designer" +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

        Os autores são convidados a fazer uma submissão a esta editora. As " +"submissões consideradas adequadas serão enviadas para avaliação por pares " +"antes de determinar se serão aceitas ou rejeitadas.

        Antes de fazer uma " +"submissão, os autores são responsáveis por obter permissão para publicar " +"qualquer material incluído na submissão , como fotos, documentos e conjuntos " +"de dados. Todos os autores identificados na submissão devem consentir em ser " +"identificados como autores. Onde apropriado, a pesquisa deve ser aprovada " +"por um comitê de ética apropriado de acordo com os requisitos legais do país " +"do estudo.

        Um editor pode rejeitar uma submissão se ela não atender " +"aos padrões mínimos de qualidade. Antes de enviar, certifique-se de que o " +"escopo e o esboço do livro estejam estruturados e articulados adequadamente. " +"O título deve ser conciso e o resumo deve ser autossuficiente. Isso " +"aumentará a probabilidade de os avaliadores concordarem em avaliar o livro. " +"Quando estiver satisfeito de que sua submissão atende a esse padrão, siga a " +"lista de verificação abaixo para preparar seu submissão.

        " + +msgid "default.contextSettings.checklist" +msgstr "" +"

        Todas as submissões devem atender aos seguintes requisitos.

        • Esta submissão atende aos requisitos descritos nas Diretrizes para autores.
        • Esta " +"submissão não foi publicada anteriormente, nem foi submetida a outra editora " +"para consideração.
        • Todas as referências foram verificadas quanto à " +"exatidão e integridade.
        • Todas as tabelas e as figuras foram " +"numeradas e rotuladas.
        • Foi obtida permissão para publicar todas as " +"fotos, conjuntos de dados e outros materiais fornecidos com esta submissão.
        " -msgid "default.groups.plural.designer" -msgstr "Designers" +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

        Os nomes e endereços de e-mail informados nesta editora serão usados " +"exclusivamente para os propósitos da mesma e não serão divulgados ou " +"oferecidos para nenhum outro propósito ou a terceiros.

        " -msgid "default.groups.abbrev.designer" -msgstr "Design" +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Esta editora oferece acesso aberto imediato ao seu conteúdo, seguindo o " +"princípio que tornar a pesquisa acessível ao público abertamente proporciona " +"maior intercâmbio de conhecimento de forma global." -msgid "default.groups.name.internalReviewer" -msgstr "Revisor interno" +msgid "default.contextSettings.forReaders" +msgstr "" +"Estimulamos os leitores a se cadastrarem no site para receber notificações " +"da editora. Acesse a página Cadastro no topo da págin. O cadastro permitirá ao leitor " +"receber em seu e-mail o Sumário de cada monografia publicada. A lista também " +"permite à editora afirmar o apoio de seus seguidores ou de leitura de suas " +"publicações. Acesse a página sobre a Declaração de Privacidade, que " +"assegura aos leitores que seus nomes e endereços de e-mail não serão usados " +"para outros propósitos." -msgid "default.groups.plural.internalReviewer" -msgstr "Revisor interno" +msgid "default.contextSettings.forAuthors" +msgstr "" +"Interessado em publicar nesta editora? Recomendamos que leia atentamente a " +"página Sobre a Editora, que " +"contém as políticas de seções, bem como as Diretrize para autores. É necessário que os autores façam um cadastro no sistema antes de realizar a " +"submissão, ou, caso já possuam um, basta fazer o acesso e iniciar os 5 passos do processo de submissão." -msgid "default.groups.abbrev.internalReviewer" -msgstr "RevInt" +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Estimulamos bibliotecas de pesquisa a listar esta editora como um fonte de " +"conteúdo eletrônico. Este sistema de código aberto também é útil para " +"bibliotecas, universidades e seus membros, para uso em conjunto com as " +"editoras com as quais possuem envolvimento editorial (saiba mais acessando " +"Open Monograph Press)." msgid "default.groups.name.externalReviewer" msgstr "Avaliador Externo" @@ -140,128 +190,144 @@ msgstr "Avaliadores Externo" msgid "default.groups.abbrev.externalReviewer" msgstr "RevExt" -msgid "default.groups.name.marketing" -msgstr "Coordenador de marketing e vendas" +#~ msgid "default.groups.name.siteAdmin" +#~ msgstr "Admin do site" -msgid "default.groups.plural.marketing" -msgstr "Coordenadores de marketing e vendas" +#~ msgid "default.groups.plural.siteAdmin" +#~ msgstr "Admins do site" -msgid "default.groups.abbrev.marketing" -msgstr "CMV" +#~ msgid "default.groups.name.pressManager" +#~ msgstr "Gerente de editora" -msgid "default.groups.name.funding" -msgstr "Coordenador de financiamento" +#~ msgid "default.groups.plural.pressManager" +#~ msgstr "Gerentes de editora" -msgid "default.groups.plural.funding" -msgstr "Coordenadores de financiamento" +#~ msgid "default.groups.abbrev.pressManager" +#~ msgstr "GerImp" -msgid "default.groups.abbrev.funding" -msgstr "CF" +#~ msgid "default.groups.name.productionEditor" +#~ msgstr "Editor de produção" -msgid "default.groups.name.indexer" -msgstr "Indexador" +#~ msgid "default.groups.plural.productionEditor" +#~ msgstr "Editores de produção" -msgid "default.groups.plural.indexer" -msgstr "Indexadores" +#~ msgid "default.groups.abbrev.productionEditor" +#~ msgstr "EdProd" -msgid "default.groups.abbrev.indexer" -msgstr "IND" +#~ msgid "default.groups.name.copyeditor" +#~ msgstr "Editor de texto" -msgid "default.groups.name.layoutEditor" -msgstr "Editor de layout" +#~ msgid "default.groups.plural.copyeditor" +#~ msgstr "Editores de texto" -msgid "default.groups.plural.layoutEditor" -msgstr "Editores de layout" +#~ msgid "default.groups.abbrev.copyeditor" +#~ msgstr "EdText" -msgid "default.groups.abbrev.layoutEditor" -msgstr "EdLay" +#~ msgid "default.groups.name.proofreader" +#~ msgstr "Leitor de provas" -msgid "default.groups.name.author" -msgstr "Autor" +#~ msgid "default.groups.plural.proofreader" +#~ msgstr "Leitores de provas" -msgid "default.groups.plural.author" -msgstr "Autores" +#~ msgid "default.groups.abbrev.proofreader" +#~ msgstr "LeitProv" -msgid "default.groups.abbrev.author" -msgstr "AU" +#~ msgid "default.groups.name.designer" +#~ msgstr "Designer" -msgid "default.groups.name.chapterAuthor" -msgstr "Autor de capítulo" +#~ msgid "default.groups.plural.designer" +#~ msgstr "Designers" -msgid "default.groups.plural.chapterAuthor" -msgstr "Autores de capítulos" +#~ msgid "default.groups.abbrev.designer" +#~ msgstr "Design" -msgid "default.groups.abbrev.chapterAuthor" -msgstr "AUCap" +#~ msgid "default.groups.name.internalReviewer" +#~ msgstr "Revisor interno" -msgid "default.groups.name.volumeEditor" -msgstr "Editor de volume" +#~ msgid "default.groups.plural.internalReviewer" +#~ msgstr "Revisor interno" -msgid "default.groups.plural.volumeEditor" -msgstr "Editores de volumes" +#~ msgid "default.groups.abbrev.internalReviewer" +#~ msgstr "RevInt" -msgid "default.groups.abbrev.volumeEditor" -msgstr "EdVol" +#~ msgid "default.groups.name.marketing" +#~ msgstr "Coordenador de marketing e vendas" -msgid "default.groups.name.translator" -msgstr "Tradutor" +#~ msgid "default.groups.plural.marketing" +#~ msgstr "Coordenadores de marketing e vendas" -msgid "default.groups.plural.translator" -msgstr "Tradutores" +#~ msgid "default.groups.abbrev.marketing" +#~ msgstr "CMV" -msgid "default.groups.abbrev.translator" -msgstr "Trads" +#~ msgid "default.groups.name.funding" +#~ msgstr "Coordenador de financiamento" -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "A submissão não foi publicada anteriormente, e não está em outra editora para consideração (ou uma explicação foi oferecida em Comentários ao editor)." +#~ msgid "default.groups.plural.funding" +#~ msgstr "Coordenadores de financiamento" -msgid "default.contextSettings.checklist.fileFormat" -msgstr "O arquivo de submissão está no formato Microsoft Word, RTF, ou OpenDocument." +#~ msgid "default.groups.abbrev.funding" +#~ msgstr "CF" -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "URLs para as referências foram informadas, quando disponíveis." +#~ msgid "default.groups.name.indexer" +#~ msgstr "Indexador" -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "O texto está formatado com linha simples; usa fonte tamanho 12 pontos, adota itálico em vez de sublinhado (exceto para URLs); todas as ilustrações, figuras e tabelas estão incluídas no texto em locais específicos, em vez de estarem no final.." +#~ msgid "default.groups.plural.indexer" +#~ msgstr "Indexadores" -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "O texto segue as normas bibliográficas e de estilo definida na página Diretrizes para Autores, disponível na página Sobre a editora." +#~ msgid "default.groups.abbrev.indexer" +#~ msgstr "IND" -msgid "default.contextSettings.privacyStatement" -msgstr "

        Os nomes e endereços de e-mail informados nesta editora serão usados exclusivamente para os propósitos da mesma e não serão divulgados ou oferecidos para nenhum outro propósito ou a terceiros.

        " +#~ msgid "default.groups.name.layoutEditor" +#~ msgstr "Editor de layout" -msgid "default.contextSettings.openAccessPolicy" -msgstr "Esta editora oferece acesso aberto imediato ao seu conteúdo, seguindo o princípio que tornar a pesquisa acessível ao público abertamente proporciona maior intercâmbio de conhecimento de forma global." +#~ msgid "default.groups.plural.layoutEditor" +#~ msgstr "Editores de layout" -msgid "default.contextSettings.emailSignature" -msgstr "" -"
        \n" -"________________________________________________________________________
        \n" -"{$ldelim}$contextName{$rdelim}" +#~ msgid "default.groups.abbrev.layoutEditor" +#~ msgstr "EdLay" -msgid "default.contextSettings.forReaders" -msgstr "Estimulamos os leitores a se cadastrarem no site para receber notificações da editora. Acesse a página Cadastro no topo da págin. O cadastro permitirá ao leitor receber em seu e-mail o Sumário de cada monografia publicada. A lista também permite à editora afirmar o apoio de seus seguidores ou de leitura de suas publicações. Acesse a página sobre a Declaração de Privacidade, que assegura aos leitores que seus nomes e endereços de e-mail não serão usados para outros propósitos." +#~ msgid "default.groups.name.author" +#~ msgstr "Autor" -msgid "default.contextSettings.forAuthors" -msgstr "" -"Interessado em publicar nesta editora? Recomendamos que leia atentamente a " -"página Sobre a Editora, que " -"contém as políticas de seções, bem como as Diretrize " -"para autores. É necessário que os autores façam um cadastro no sistema antes de " -"realizar a submissão, ou, caso já possuam um, basta fazer o acesso e iniciar os 5 passos do processo de " -"submissão." +#~ msgid "default.groups.plural.author" +#~ msgstr "Autores" -msgid "default.contextSettings.forLibrarians" -msgstr "Estimulamos bibliotecas de pesquisa a listar esta editora como um fonte de conteúdo eletrônico. Este sistema de código aberto também é útil para bibliotecas, universidades e seus membros, para uso em conjunto com as editoras com as quais possuem envolvimento editorial (saiba mais acessando Open Monograph Press)." +#~ msgid "default.groups.abbrev.author" +#~ msgstr "AU" -msgid "default.groups.name.manager" -msgstr "Gerente da editora" +#~ msgid "default.groups.name.translator" +#~ msgstr "Tradutor" -msgid "default.groups.plural.manager" -msgstr "Gerentes da editora" +#~ msgid "default.groups.plural.translator" +#~ msgstr "Tradutores" -msgid "default.groups.abbrev.manager" -msgstr "GE" +#~ msgid "default.groups.abbrev.translator" +#~ msgstr "Trads" + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "A submissão não foi publicada anteriormente, e não está em outra editora " +#~ "para consideração (ou uma explicação foi oferecida em Comentários ao " +#~ "editor)." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "O arquivo de submissão está no formato Microsoft Word, RTF, ou " +#~ "OpenDocument." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "URLs para as referências foram informadas, quando disponíveis." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "O texto está formatado com linha simples; usa fonte tamanho 12 pontos, " +#~ "adota itálico em vez de sublinhado (exceto para URLs); todas as " +#~ "ilustrações, figuras e tabelas estão incluídas no texto em locais " +#~ "específicos, em vez de estarem no final.." + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "O texto segue as normas bibliográficas e de estilo definida na página Diretrizes para Autores, disponível na página Sobre " +#~ "a editora." diff --git a/locale/pt_BR/editor.po b/locale/pt_BR/editor.po index 4e2b715018e..ff827d2c69f 100644 --- a/locale/pt_BR/editor.po +++ b/locale/pt_BR/editor.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T12:00:53-07:00\n" -"PO-Revision-Date: 2020-06-06 02:27+0000\n" +"PO-Revision-Date: 2021-03-02 10:12+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -169,3 +169,6 @@ msgstr "" "O identificador público '{$publicIdentifier}' já existe para outro objeto do " "mesmo tipo. Escolha identificadores exclusivos para os objetos do mesmo tipo " "na sua editora." + +msgid "editor.submissions.assignedTo" +msgstr "Designar a um Editor" diff --git a/locale/pt_BR/emails.po b/locale/pt_BR/emails.po index 0243741ad67..9c47faae2f9 100644 --- a/locale/pt_BR/emails.po +++ b/locale/pt_BR/emails.po @@ -1,9 +1,10 @@ +# Diego José Macêdo , 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-12-03T14:14:06-08:00\n" -"PO-Revision-Date: 2020-06-07 03:39+0000\n" +"PO-Revision-Date: 2024-03-16 21:39+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -12,63 +13,36 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "emails.notification.subject" -msgstr "Nova notificação de {$siteTitle}" - -msgid "emails.notification.body" -msgstr "" -"Chegou uma nova notificação de {$siteTitle}:
        \n" -"
        \n" -"{$notificationContents}
        \n" -"
        \n" -"Link: {$url}
        \n" -"
        \n" -"Este é um e-mail gerado automaticamente; por favor não responda a esta " -"mensagem.
        \n" -"{$principalContactSignature}" - -msgid "emails.notification.description" -msgstr "Esta mensagem é enviada a usuários cadastrados que escolherem receber este tipo de notificação via e-mail." +"X-Generator: Weblate 4.18.2\n" msgid "emails.passwordResetConfirm.subject" msgstr "Confirmação de redefinição de senha" msgid "emails.passwordResetConfirm.body" msgstr "" -"Recebemos uma solicitação para redefinir sua senha no site {$siteTitle}.
        \n" +"Recebemos uma solicitação para redefinir sua senha no site {$siteTitle}.
        \n" "
        \n" -"Caso não tenha feito a solicitação, ignore esta mensagem e sua senha não será alterada. Caso deseje redefinir sua senha, clique no endereço a seguir.
        \n" +"Caso não tenha feito a solicitação, ignore esta mensagem e sua senha não " +"será alterada. Caso deseje redefinir sua senha, clique no endereço a seguir." "
        \n" -"Redefinir senha: {$url}
        \n" "
        \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.description" -msgstr "Esta mensagem é enviada a usuário cadastrados que indicam ter esquecido a senha ou não conseguem acessar o sistema. A mensagem oferece um endereço para redefinir sua senha." +"Redefinir senha: {$passwordResetUrl}
        \n" +"
        \n" +"{$siteContactName}" msgid "emails.passwordReset.subject" -msgstr "Senha redefinida" +msgstr "" msgid "emails.passwordReset.body" msgstr "" -"Sua senha foi redefinida com sucesso e já pode ser usada para acesso ao site {$siteTitle}. Guarde seu login e sua senha, pois são essenciais para execução das atividades na editora.
        \n" -"
        \n" -"Login: {$username}
        \n" -"Nova senha: {$password}
        \n" -"
        \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.description" -msgstr "Esta mensagem é enviada a usuário cadastrado quando a senha é redefinida com sucesso, seguindo o processo descrito em PASSWORD_RESET_CONFIRM." msgid "emails.userRegister.subject" msgstr "Cadastro na editora" msgid "emails.userRegister.body" msgstr "" -"{$userFullName},
        \n" +"{$recipientName},
        \n" "
        \n" "Seu cadastro foi realizado com sucesso na editora {$contextName}. Nesta " "mensagem estão incluídos seu login e senha, necessário para acesso ao " @@ -76,31 +50,43 @@ msgstr "" "cadastro desta lista a qualquer momento, respondendo a esta mensagem ou " "enviando solicitação ao endereço de resposta.
        \n" "
        \n" -"Login: {$username}
        \n" +"Login: {$recipientUsername}
        \n" "Senha: {$password}
        \n" "
        \n" "Atenciosamente,
        \n" -"{$principalContactSignature}" +"{$signature}" -msgid "emails.userRegister.description" -msgstr "Esta mensagem é enviada a novos usuários cadastrados, como boas-vindas e oferecendo o registro de seus dados de acesso." +msgid "emails.userValidateContext.subject" +msgstr "Valide a sua conta" -msgid "emails.userValidate.subject" -msgstr "Validar seu cadastro" - -msgid "emails.userValidate.body" +msgid "emails.userValidateContext.body" msgstr "" -"{$userFullName},
        \n" +"{$recipientName}
        \n" "
        \n" -"Seu cadastro foi realizado com sucesso na editora {$contextName}, mas é necessário validar seu e-mail antes de poder acessar o sistema. Para isto, basta seguir o link:
        \n" +"Você criou uma conta com {$contextName}, mas antes de começar a usá-la, você " +"precisa validar sua conta de e-mail. Para fazer isso, basta acessar o link " +"abaixo:
        \n" "
        \n" -"{$activateUrl}
        \n" +"{$activateUrl}
        \n" "
        \n" -"Atenciosamente,
        \n" -"{$principalContactSignature}" +"Obrigado,
        \n" +"{$contextSignature}" -msgid "emails.userValidate.description" -msgstr "Esta mensagem é enviada a novos usuários cadastrados, como boas-vindas e permitir a validação do cadastro." +msgid "emails.userValidateSite.subject" +msgstr "Valide a sua conta" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
        \n" +"
        \n" +"Você criou uma conta com {$siteTitle}, mas antes de começar a usá-la, você " +"precisa validar sua conta de e-mail. Para fazer isso, basta acessar o link " +"abaixo:
        \n" +"
        \n" +"{$activateUrl}
        \n" +"
        \n" +"Obrigado,
        \n" +"{$siteSignature}" msgid "emails.reviewerRegister.subject" msgstr "Cadastro como Avaliador da editora {$contextName}" @@ -119,229 +105,131 @@ msgstr "" "editoriais na editora. Use-os para atualizar seu perfil, por exemplo, " "incluindo a área de interesse para avaliação.
        \n" "
        \n" -"Login: {$username}
        \n" +"Login: {$recipientUsername}
        \n" "Senha: {$password}
        \n" "
        \n" "Atenciosamente,
        \n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.description" -msgstr "Esta mensagem é enviada a novos usuários cadastrados, como boas-vindas e oferecendo o registro de seus dados de acesso." - -msgid "emails.publishNotify.subject" -msgstr "Novo livro publicado" - -msgid "emails.publishNotify.body" -msgstr "" -"Caros leitores,
        \n" -"
        \n" -"{$contextName} acabou de publicar seu último livro, disponível na página " -"{$contextUrl}. Convidamos todos a revisar o sumário nesta mensagem e em " -"seguida visitar o site para ver as monografias e encontrar os itens de seu " -"interesse.
        \n" -"
        \n" -"Agradecendo pelo seu apoio contínuo ao nosso trabalho,
        \n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.description" -msgstr "" -"Esta mensagem é enviada a leitores cadsatrados por meio do link \"Notificar " -"Usuários\" na página do editor. Notifica leitores de uma nova publicação, " -"com um convite para acessar o site por meio do endereço informado." - -msgid "emails.submissionAck.subject" -msgstr "Agradecimento pela submissão" - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName},
        \n" -"
        \n" -"Agradecemos a submissão do seu manuscrito, "{$submissionTitle}" à " -"editora {$contextName}. Por meio de nosso sistema online de administração, " -"poderá acompanhar o progresso por meio das etapas do processo editorial, " -"acessando o sistema com as informações a seguir:
        \n" -"
        \n" -"Página do manuscrito: {$submissionUrl}
        \n" -"Login: {$authorUsername}
        \n" -"
        \n" -"Em caso de dúvidas, entre em contato. Agradecemos por considerar nossa " -"editora como um veículo para seus trabalhos.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.description" -msgstr "Quando habilitada, esta mensagem é enviada automaticamente ao autor ao concluir o processo de submissão. Fornece informações sobre como acompanhar a submissão através do processo editorial, agradecendo o autor pela submissão." - -msgid "emails.submissionAckNotUser.subject" -msgstr "Agradecimento pela submissão" - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Olá,
        \n" -"
        \n" -"{$submitterName} submeteu o manuscrito "{$submissionTitle}" à editora {$contextName}.
        \n" -"
        \n" -"Em caso de dúvidas, entre em contato. Agradecemos por considerar nossa editora como um veículo para seus trabalhos.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.description" -msgstr "Quando habilitada, esta mensagem é enviada automaticamente aos coautores informados durante o processo de submissão, que não estão cadastrados no OMP." +"{$signature}" msgid "emails.editorAssign.subject" -msgstr "Tarefa editorial" +msgstr "Você foi designado como editor em uma submissão para {$contextName}" msgid "emails.editorAssign.body" msgstr "" -"{$editorialContactName},
        \n" +"{$recipientName},
        \n" "
        \n" -"A submissão "{$submissionTitle}" a editora {$contextName} está sob sua responsabilidade para acompanhamento durante o processo editorial, como editor.
        \n" +"A submissão "{$submissionTitle}" a editora {$contextName} está sob " +"sua responsabilidade para acompanhamento durante o processo editorial, como " +"editor.
        \n" "
        \n" "Página da submissão: {$submissionUrl}
        \n" -"Login: {$editorUsername}
        \n" +"Login: {$recipientUsername}
        \n" "
        \n" "Atenciosamente," -msgid "emails.editorAssign.description" -msgstr "" -"Esta mensagem notifica o editor de série que um editor o incumbiu da tarefa " -"de acompanhar o processo editorial de uma submissão. Fornece informações " -"sobre a submissão e de acesso ao site da editora." - msgid "emails.reviewRequest.subject" msgstr "Solicitação de Avaliação" msgid "emails.reviewRequest.body" msgstr "" -"{$reviewerName},
        \n" -"
        \n" -"{$messageToReviewer}
        \n" -"
        \n" -"Acesse o site da editora até {$responseDueDate} para indicar se está " -"disponível ou não para assumir esta avaliação, bem como acessar a submissão " -"e registrar sua avaliação e recomendação.
        \n" -"
        \n" -"O prazo de entrega da avaliação é {$reviewDueDate}.
        \n" -"
        \n" -"Página da submissão: {$submissionReviewUrl}
        \n" -"
        \n" -"Login: {$reviewerUserName}
        \n" -"
        \n" -"Agradecemos por considerar nossa solicitação.
        \n" -"
        \n" -"
        \n" -"Atenciosamente,
        \n" -"{$editorialContactSignature}
        \n" - -msgid "emails.reviewRequest.description" -msgstr "" -"Esta mensagem do editor de série solicita ao avaliador que aceite ou não " -"avaliar a submissão. Fornece informações sobre a submissão, como título e " -"resumo, a data de entrega da avaliação e como acessar a submissão. A " -"mensagem é usada quando o processo de avaliação padrão é o definido no passo " -"2 da configuração da editora (Caso contrário, veja REVIEW_REQUEST_ATTACHED)." - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Solicitação de avaliação" +"

        Prezado(a) {$recipientName},

        \n" +"

        Acredito que você seria um excelente avaliador para uma submissão ao " +"{$contextName}. O título e o resumo da submissão estão abaixo, e espero que " +"você considere assumir essa importante tarefa para nós.

        \n" +"

        Se você puder avaliar esta submissão, sua avaliação deve ser entregue até " +"{$reviewDueDate}. Você pode visualizar a submissão, fazer upload de arquivos " +"de avaliação e enviar seu parecer ao fazer login na editora e seguir as " +"etapas no link abaixo.

        \n" +"

        Login: {$recipientUsername}

        \n" +"

        {$submissionTitle}

        \n" +"

        Resumo

        \n" +"{$submissionAbstract}\n" +"

        Por favor, aceite ou recuse a " +"avaliação até {$responseDueDate}.

        \n" +"

        Você pode entrar em contato comigo com qualquer dúvida sobre a submissão " +"ou o processo de avaliação.

        \n" +"

        Obrigado por considerar este pedido. Sua ajuda é muito apreciada.

        \n" +"

        Atenciosamente,

        \n" +"{$signature}" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Solicitação de avaliação de uma submissão revisada" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

        Prezado {$recipientName},

        Obrigado por sua avaliação de {$submissionTitle}. Os autores consideraram o " +"feedback dos avaliadores e agora submeteram uma versão revisada de seu " +"trabalho. Estou escrevendo para perguntar se você faria uma segunda rodada " +"de avaliação por pares para esta submissão. {$contextName}.

        Se você " +"puder avaliar esta submissão, sua avaliação será válida até " +"{$reviewDueDate}. Você pode seguir as " +"etapas de avaliação para visualizar a submissão, baixe os arquivos de " +"revisão e enviar seus comentários de avaliação.

        {$submissionTitle}

        Resumo{$submissionAbstract}

        Aceite ou recuse a avaliação até " +"{$responseDueDate}.

        Por favor sinta-se à vontade para entrar em " +"contato comigo em caso de dúvidas sobre a submissão ou o processo de " +"avaliação.

        Obrigado por considerar esta solicitação. Sua ajuda é muito " +"apreciada.

        Atenciosamente,

        {$signature}" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Pedido de Avaliação de Manuscrito" -msgid "emails.reviewRequestOneclick.body" +msgid "emails.reviewResponseOverdueAuto.body" msgstr "" -"{$reviewerName},
        \n" -"
        \n" -"Acreditamos que será um excelente avaliador para o manuscrito " -""{$submissionTitle}", enviado à editora {$contextName}. O resumo " -"da submissão está incluído na mensagem e esperamos que considere assumir " -"esta importante tarefa para nós.
        \n" -"
        \n" -"Acesse o sistema até {$weekLaterDate} para indicar se aceitará ou não " -"realizar a avaliação, bem como acessar a submissão e registrar sua avaliação " -"e recomendação.
        \n" -"
        \n" -"O prazo de entrega da avaliação é {$reviewDueDate}.
        \n" -"
        \n" -"Página da submissão: {$submissionReviewUrl}
        \n" -"
        \n" -"Agradecemos por considerar nossa solicitação.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -""{$submissionTitle}"
        \n" +"Caro(a) {$recipientName},
        \n" +"Apenas relembrando gentilmente do nosso pedido para avaliação da submissão " +""{$submissionTitle}," para {$contextName}. Nos esperamos ter sua " +"resposta em {$responseDueDate}, sendo que esse e-mail foi gerado e enviado " +"automaticamente devido ao tempo.\n" "
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.description" -msgstr "" -"Esta mensagem do editor de série solicita ao avaliador que aceite ou não " -"avaliar a submissão. Fornece informações sobre a submissão, como título e " -"resumo, a data de entrega da avaliação e como acessar a submissão. A " -"mensagem é usada quando o processo de avaliação padrão é o definido no passo " -"2 da configuração da editora e o acesso rápido foi habilitado." - -msgid "emails.reviewRequestAttached.subject" -msgstr "Solicitação de avaliação" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName},
        \n" +"{$messageToReviewer}
        \n" "
        \n" -"Acreditamos que será um excelente avaliador para o manuscrito " -""{$submissionTitle}" e esperamos que considere assumir esta " -"importante tarefa para nós. As diretrizes de avaliação da editora estão em " -"apenso e a submissão está em anexo à mensagem. Sua avaliação e sua " -"recomendação devem ser encaminhados a este endereço até {$reviewDueDate}.
        \n" +"Por favor, entre no site da editora para indicar se aceita a avaliação, bem " +"como a submissão e os registros de avaliação e recomendação.
        \n" "
        \n" -"Por favor responda a esta mensagem até {$weekLaterDate} se está disponível " -"ou não para realizar a revisão.
        \n" +"A data limite da avaliação é até: {$reviewDueDate}.
        \n" "
        \n" -"Agradecemos por considerar nossa solicitação.
        \n" +"Endereço da submissão: {$reviewAssignmentUrl}
        \n" "
        \n" -"{$editorialContactSignature}
        \n" +"Usuário: {$recipientUsername}
        \n" "
        \n" +"Obrigado por considerar o pedido.
        \n" "
        \n" -"Diretrizes para avaliação
        \n" "
        \n" -"{$reviewGuidelines}
        \n" - -msgid "emails.reviewRequestAttached.description" -msgstr "" -"Esta mensagem do editor de série solicita ao avaliador que aceite ou não " -"avaliar a submissão. Inclui a submissão como anexo. Esta mensagem é usada " -"quando o processo de avaliação via e-mail com anexo é o escolhido no passo 2 " -"da configuração da editora (Caso contrário, veja REVIEW_REQUEST.)" +"Atenciosamente,
        \n" +"{$contextSignature}
        \n" msgid "emails.reviewCancel.subject" msgstr "Solicitação de avaliação cancelada" msgid "emails.reviewCancel.body" msgstr "" -"{$reviewerName},
        \n" +"{$recipientName},
        \n" "
        \n" -"Decidimos neste momento cancelar nossa solicitação de avaliação da submissão "{$submissionTitle}" à editora {$contextName}. Lamentamos qualquer inconveniente que isto possa causar e esperamos que possamos solicitar novamente sua ajuda no futuro.
        \n" +"Decidimos neste momento cancelar nossa solicitação de avaliação da submissão " +""{$submissionTitle}" à editora {$contextName}. Lamentamos qualquer " +"inconveniente que isto possa causar e esperamos que possamos solicitar " +"novamente sua ajuda no futuro.
        \n" "
        \n" "Em caso de dúvidas, entre em contato." -msgid "emails.reviewCancel.description" -msgstr "" -"Esta mensagem é envidada pelo editor de série ao avaliador que possui uma " -"avaliação em progresso, notificando-o de que a avaliação foi cancelada." - -msgid "emails.reviewConfirm.subject" -msgstr "Disponível para avaliação" +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Solicitação de avaliação restabelecida" -msgid "emails.reviewConfirm.body" +msgid "emails.reviewReinstate.body" msgstr "" -"Editores,
        \n" +"{$recipientName}:
        \n" "
        \n" -"Estou disponível e aceito realizar a avaliação da submissão "{$submissionTitle}", enviado à editora {$contextName}. Agradeço por considerar meu perfil para avaliação, e planejo concluir a avaliação até {$reviewDueDate}, se não antes.
        \n" +"Gostaríamos de restabelecer nossa solicitação para você avaliar a submissão, " +"\"{$submissionTitle}\" para {$contextName}. Esperamos que você possa ajudar " +"no processo de avaliação.
        \n" "
        \n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.description" -msgstr "Esta mensagem é enviada pelo avaliador em resposta à solicitação do editor de série pela solicitação de avaliação, notificando de sua disponibilidade e aceitação de realizar a avaliação até a data de entrega." +"Se você tiver alguma dúvida, entre em contato comigo." msgid "emails.reviewDecline.subject" msgstr "Indisponível para avaliação" @@ -350,449 +238,255 @@ msgid "emails.reviewDecline.body" msgstr "" "Editores,
        \n" "
        \n" -"Lamento informar que não estou disponível neste momento para avaliar a submissão "{$submissionTitle}", enviada à editora {$contextName}. Agradeço por considerar meu perfil, e sinta-se à vontade para entrar em contato novamente em oportunidade futura.
        \n" -"
        \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.description" -msgstr "Esta mensagem é enviada pelo avaliador em resposta à solicitação do editor de série pela solicitação de avaliação, notificando de sua disponibilidade e recusando realizar a avaliação." - -msgid "emails.reviewAck.subject" -msgstr "Agradecimento pela avaliação" - -msgid "emails.reviewAck.body" -msgstr "" -"{$reviewerName},
        \n" +"Lamento informar que não estou disponível neste momento para avaliar a " +"submissão "{$submissionTitle}", enviada à editora {$contextName}. " +"Agradeço por considerar meu perfil, e sinta-se à vontade para entrar em " +"contato novamente em oportunidade futura.
        \n" "
        \n" -"Agradecemos por concluir a avaliação da submissão " -""{$submissionTitle}" à editora {$contextName}. Sua contribuição é " -"essencial para a qualidade do trabalho publicado por esta editora." - -msgid "emails.reviewAck.description" -msgstr "Esta mensagem é enviada pelo editor de série confirmando o recebimento da avaliação e agradecendo o avaliador por sua contribuição." +"{$senderName}" msgid "emails.reviewRemind.subject" -msgstr "Avaliação pendente" +msgstr "Um lembrete para concluir sua avaliação" +#, fuzzy msgid "emails.reviewRemind.body" msgstr "" -"{$reviewerName},
        \n" +"{$recipientName},
        \n" "
        \n" -"Este é apenas um lembrete sobre nossa solicitação de avaliar a submissão "{$submissionTitle}", enviada à editora {$contextName}. Esperamos que possa concluí-la até {$reviewDueDate}, e agradeceríamos muito recebê-la assim que estiver concluída.
        \n" +"Este é apenas um lembrete sobre nossa solicitação de avaliar a submissão " +""{$submissionTitle}", enviada à editora {$contextName}. Esperamos " +"que possa concluí-la até {$reviewDueDate}, e agradeceríamos muito recebê-la " +"assim que estiver concluída.
        \n" "
        \n" -"Caso não tenha seu login ou senha de acesso ao sistema, use o endereço a seguir para redefinir sua senha (que será encaminhada junto com seu login). {$passwordResetUrl}
        \n" +"Caso não tenha seu login ou senha de acesso ao sistema, use o endereço a " +"seguir para redefinir sua senha (que será encaminhada junto com seu login). " +"{$passwordLostUrl}
        \n" "
        \n" -"Página da submissão: {$submissionReviewUrl}
        \n" +"Página da submissão: {$reviewAssignmentUrl}
        \n" "
        \n" -"Login: {$reviewerUserName}
        \n" +"Login: {$recipientUsername}
        \n" "
        \n" -"Confirme sua disponibilidade em concluir esta contribuição vital aos trabalhos da editora. Aguardamos seu contato.
        \n" +"Confirme sua disponibilidade em concluir esta contribuição vital aos " +"trabalhos da editora. Aguardamos seu contato.
        \n" "
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemind.description" -msgstr "Esta mensagem é enviada pelo editor de série lembrando o avaliador de avaliação pendente." - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Lembrete de avaliação pendente" - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"{$reviewerName},
        \n" -"
        \n" -"Este é apenas um lembrete sobre nossa solicitação de avaliar a submissão "{$submissionTitle}", enviada à editora {$contextName}. Esperamos que possa concluí-la até {$reviewDueDate}, e agradeceríamos muito recebê-la assim que estiver concluída.
        \n" -"
        \n" -"Página da submissão: {$submissionReviewUrl}
        \n" -"
        \n" -"Confirme sua disponibilidade em concluir esta contribuição vital aos trabalhos da editora. Aguardamos seu contato.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.description" -msgstr "Esta mensagem é enviada pelo editor de série lembrando o avaliador de avaliação pendente." - -msgid "emails.reviewRemindAuto.subject" -msgstr "Avaliação pendente - Lembrete automático" +"{$signature}" +#, fuzzy msgid "emails.reviewRemindAuto.body" msgstr "" -"{$reviewerName},
        \n" +"{$recipientName},
        \n" "
        \n" -"Este é apenas um lembrete de nossa solicitação de avaliar a submissão "{$submissionTitle}", enviada à editora {$contextName}. Esperamos que possa concluí-la até {$reviewDueDate}. Esta mensagem é gerada e enviada automaticamente passado o prazo de entrega. Ainda assim, agradeceríamos recebê-la assim que estiver concluída
        \n" +"Este é apenas um lembrete de nossa solicitação de avaliar a submissão "" +"{$submissionTitle}", enviada à editora {$contextName}. Esperamos que " +"possa concluí-la até {$reviewDueDate}. Esta mensagem é gerada e enviada " +"automaticamente passado o prazo de entrega. Ainda assim, agradeceríamos " +"recebê-la assim que estiver concluída
        \n" "
        \n" -"Caso não tenha seu login ou senha de acesso ao sistema, use o endereço a seguir para redefinir sua senha (que será encaminhada junto com seu login). {$passwordResetUrl}
        \n" +"Caso não tenha seu login ou senha de acesso ao sistema, use o endereço a " +"seguir para redefinir sua senha (que será encaminhada junto com seu login). " +"{$passwordLostUrl}
        \n" "
        \n" -"Página da submissão: {$submissionReviewUrl}
        \n" +"Página da submissão: {$reviewAssignmentUrl}
        \n" "
        \n" -"Confirme sua disponibilidade em concluir esta contribuição vital aos trabalhos da editora. Aguardamos seu contato.
        \n" +"Confirme sua disponibilidade em concluir esta contribuição vital aos " +"trabalhos da editora. Aguardamos seu contato.
        \n" "
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.description" -msgstr "Esta mensagem é enviada automaticamente ao avaliador quando a data de entrega da avaliação passou (veja Opções de avaliação, no passo 2 de configuração da editora) e o acesso rápido está desabilitado. Tarefas agendadas devem estar habilitadas e configuradas (veja o arquivo de configuração do site)." - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Avaliação pendente - Lembrete automático" - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName},
        \n" -"
        \n" -"Este é apenas um lembrete de nossa solicitação de avaliar a submissão "{$submissionTitle}", enviada à editora {$contextName}. Esperamos que possa concluí-la até {$reviewDueDate}. Esta mensagem é gerada e enviada automaticamente passado o prazo de entrega. Ainda assim, agradeceríamos recebê-la assim que estiver concluída.
        \n" -"
        \n" -"Página da submissão: {$submissionReviewUrl}
        \n" -"
        \n" -"Confirme sua disponibilidade em concluir esta contribuição vital aos trabalhos da editora. Aguardamos seu contato.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "Esta mensagem é enviada automaticamente ao avaliador quando a data de entrega da avaliação passou (veja Opções de avaliação, no passo 2 de configuração da editora) e o acesso rápido está habilitado. Tarefas agendadas devem estar habilitadas e configuradas (veja o arquivo de configuração do site)." +"{$contextSignature}" msgid "emails.editorDecisionAccept.subject" -msgstr "Decisão editorial" +msgstr "Sua submissão foi aceita para {$contextName}" msgid "emails.editorDecisionAccept.body" msgstr "" -"{$authorName},
        \n" -"
        \n" -"A decisão editorial sobre a submissão à editora {$contextName}, "{$submissionTitle}", foi tomada.
        \n" -"
        \n" -"A decisão é:
        \n" -"
        \n" -"Página do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionAccept.description" -msgstr "Esta mensagem é enviada pelo editor ou editor de série ao autor, notificando-o da decisão final sobre a submissão." - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Decisão editorial" - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"{$authorName},
        \n" -"
        \n" -"A decisão editorial sobre a submissão à editora {$contextName}, "{$submissionTitle}", foi tomada.
        \n" -"
        \n" -"A decisão é:
        \n" -"
        \n" -"Página do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "Esta mensagem é enviada pelo editor ou editor de série ao autor, notificando-o da decisão de enviar o trabalho para avaliação externa." - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Decisão editorial" - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"{$authorName},
        \n" -"
        \n" -"A edição do manuscrito "{$submissionTitle}" foi concluída. O " -"trabalho será enviado à editoração.
        \n" -"
        \n" -"Página do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "" -"Esta mensagem é enviada pelo editor ou editor de série ao autor, notificando-" -"o do envio da submissão para editoração." - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Decisão editorial" - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"{$authorName},
        \n" -"
        \n" -"A decisão editorial sobre a submissão à editora {$contextName}, "{$submissionTitle}", foi tomada.
        \n" -"
        \n" -"A decisão é:
        \n" -"
        \n" -"Página do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.description" -msgstr "Esta mensagem é enviada pelo editor ou editor de série ao autor, notificando-o da decisão final sobre a submissão." - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Decisão editorial" - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"{$authorName},
        \n" -"
        \n" -"A decisão editorial sobre a submissão à editora {$contextName}, "{$submissionTitle}", foi tomada.
        \n" -"
        \n" -"A decisão é:
        \n" -"
        \n" -"Página do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.description" -msgstr "Esta mensagem é enviada pelo editor ou editor de série ao autor, notificando-o da decisão final sobre a submissão." - -msgid "emails.editorDecisionDecline.subject" -msgstr "Decisão editorial" - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"{$authorName},
        \n" -"
        \n" -"A decisão editorial sobre a submissão à editora {$contextName}, "{$submissionTitle}", foi tomada.
        \n" -"
        \n" -"A decisão é:
        \n" -"
        \n" -"Página do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.description" -msgstr "Esta mensagem é enviada pelo editor ou editor de série ao autor, notificando-o da decisão final sobre a submissão." - -msgid "emails.copyeditRequest.subject" -msgstr "Solicitação de edição de texto" - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$participantName},
        \n" -"
        \n" -"Solicito realizar a edição de texto da submissão "{$submissionTitle}" à editora {$contextName}, conforme os seguintes passos:
        \n" -"1. Acesse a página da submissão abaixo.
        \n" -"2. Acesse o sistema e baixe o arquivo disponível no passo 1.
        \n" -"3. Consulte as instruções para edição de texto disponíveis na página.
        \n" -"4. Abra o arquivo baixado e faça as edições, enquanto inclui perguntas ao autor conforme a necessidade.
        \n" -"5. Salve o arquivo editado e envie-o ao passo 1 da edição de texto.
        \n" -"6. Envie a mensagem CONCLUÍDA ao editor.
        \n" -"
        \n" -"Página da editora {$contextName}: {$contextUrl}
        \n" -"Página da submissão: {$submissionUrl}
        \n" -"Login: {$participantUsername}" - -msgid "emails.copyeditRequest.description" -msgstr "Esta mensagem é enviada pelo editor de série ao editor de texto da submissão, solicitando o início da edição de texto. Fornece informações sobre a submissão e como acessá-la." +"

        Prezado {$recipientName},

        Tenho o prazer de informar que decidimos " +"aceitar sua submissão sem revisão adicional. Após uma " +"análise cuidadosa, descobrimos que sua submissão, {$submissionTitle}, " +"atendeu ou superou nossas expectativas. Estamos felizes em publicar sua peça " +"em {$contextName} e agradecemos por escolher nossa editora como local para " +"seu trabalho..

        Sua submissão será publicada em breve no site da " +"editora {$contextName} e você está convidado a incluí-lo em sua lista de " +"publicações. Reconhecemos o trabalho árduo de cada submissão bem-sucedida e " +"queremos parabenizá-lo por chegar a esse estágio.

        Sua submissão agora " +"passará por edição e formatação para prepará-lo para publicação.

        Em " +"breve você receberá mais instruções.

        Se você tiver alguma dúvida, " +"entre em contato comigo em seu painel de " +"submissão.

        Atenciosamente,

        {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Sua submissão foi enviada para avaliação interna" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

        Prezado {$recipientName},

        Tenho o prazer de informar que um editor " +"revisou seu envio, {$submissionTitle}, e decidiu enviá-lo para avaliação " +"interna. Você receberá nossos comentários dos avaliadores e informações " +"sobre as próximas etapas.

        Observe que enviar a submissão para " +"avaliação interna não garante que ela será publicado. Consideraremos as " +"recomendações dos avaliadores antes de decidir aceitar a submissão para " +"publicação. Você pode ser solicitado a fazer revisões e responder aos " +"comentários dos avaliadores antes que uma decisão final seja tomada.

        Se você tiver alguma dúvida, entre em contato comigo no painel de " +"submissão.

        {$signature}

        " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Sua submissão foi enviada para edição de texto" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

        Prezado {$recipientName},

        \n" +"

        Tenho o prazer de informá-lo que decidimos aceitar sua submissão sem " +"passar pela avaliação por pares. Achamos que sua submissão, " +"{$submissionTitle}, atendeu às nossas expectativas e não exigimos que " +"trabalhos desse tipo passem por avaliação por pares. Estamos entusiasmados " +"em publicar seu artigo em {$contextName} e agradecemos por escolher nossa " +"editora como local para seu trabalho.

        \n" +"

        Sua submissão será publicada em breve no site da editora para " +"{$contextName} e você pode incluí-la em sua lista de publicações. " +"Reconhecemos o trabalho árduo de cada submissão bem-sucedida e queremos " +"parabenizá-lo por seus esforços.

        \n" +"

        Sua submissão agora passará por edição e formatação para prepará-lo para " +"publicação.

        \n" +"

        Você receberá mais instruções em breve.

        \n" +"

        Se você tiver alguma dúvida, entre em contato comigo em seu painel de submissão.

        \n" +"

        Atenciosamente,

        \n" +"

        {$signature}

        \n" msgid "emails.layoutRequest.subject" -msgstr "Solicitação de composição" +msgstr "" +"A submissão {$submissionId} está pronta para editoração em {$contextAcronym}" +#, fuzzy msgid "emails.layoutRequest.body" msgstr "" -"{$participantName},
        \n" +"{$recipientName},
        \n" "
        \n" -"A submissão "{$submissionTitle}", enviada à editora {$contextName}, precisa agora ser transformada em composição final conforme os seguintes passos:
        \n" +"A submissão "{$submissionTitle}", enviada à editora " +"{$contextName}, precisa agora ser transformada em composição final conforme " +"os seguintes passos:
        \n" "1. Acesse a página da submissão abaixo.
        \n" -"2. Acesse o sistema e use o arquivo de versão de layout disponível para produzir a composição de acordo com esse padrão.
        \n" +"2. Acesse o sistema e use o arquivo de versão de layout disponível para " +"produzir a composição de acordo com esse padrão.
        \n" "3. Envie a mensagem CONCLUÍDA ao editor.
        \n" "
        \n" "Página da editora {$contextName}: {$contextUrl}
        \n" "Página da submissão: {$submissionUrl}
        \n" -"Login: {$participantUsername}
        \n" +"Login: {$recipientUsername}
        \n" "
        \n" -"Caso não tenha disponibilidade para assumir esta tarefa no momento, ou em caso de dúvidas, entre em contato. Agradecemos sua contribuição aos trabalhos da editora." - -msgid "emails.layoutRequest.description" -msgstr "Esta mensagem é enviada pelo editor de série ao editor de layout, solicitando a produção de uma composição da submissão. Fornece instruções sobre a submissão e como acessá-la." +"Caso não tenha disponibilidade para assumir esta tarefa no momento, ou em " +"caso de dúvidas, entre em contato. Agradecemos sua contribuição aos " +"trabalhos da editora." msgid "emails.layoutComplete.subject" -msgstr "Composição de layout concluída" +msgstr "Composições Concluídas" +#, fuzzy msgid "emails.layoutComplete.body" msgstr "" -"{$editorialContactName},
        \n" -"
        \n" -"As composições solicitadas para o manuscrito "{$submissionTitle}", enviado à editora {$contextName}, estão prontas para leitura de provas.
        \n" -"
        \n" -"Em caso de dúvidas, entre em contato.
        \n" -"
        \n" -"{$signatureFullName}" - -msgid "emails.layoutComplete.description" -msgstr "Esta mensagem é enviada pelo editor de layout ao editor de série, notificando-o da conclusão da criação das composições." +"

        Prezado(a) {$recipientName},

        As provas já foram preparadas para a " +"seguinte submissão e estão prontas para leitura de provas.

        {$submissionTitle}
        {$contextName}

        Se " +"você tiver alguma dúvida, entre em contato comigo.

        Atenciosamente,

        {$senderName}

        " msgid "emails.indexRequest.subject" msgstr "Solicitação de índice" msgid "emails.indexRequest.body" msgstr "" -"{$participantName},
        \n" +"{$recipientName},
        \n" +"
        \n" +"A submissão "{$submissionTitle}", enviada à editora " +"{$contextName}, precisa da produção de índices conforme os seguintes passos:" "
        \n" -"A submissão "{$submissionTitle}", enviada à editora {$contextName}, precisa da produção de índices conforme os seguintes passos:
        \n" "1. Acesse a página da submissão abaixo.
        \n" -"2. Acesse o sistema e use o arquivo de provas de página para criar composições conforme o padrão.
        \n" +"2. Acesse o sistema e use o arquivo de provas de página para criar " +"composições conforme o padrão.
        \n" "3. Envie a mensagem CONCLUÍDA ao editor.
        \n" "
        \n" "Página da editora {$contextName}: {$contextUrl}
        \n" "Página da submissão: {$submissionUrl}
        \n" -"Login: {$participantUsername}
        \n" +"Login: {$recipientUsername}
        \n" "
        \n" -"Caso não tenha disponibilidade para assumir esta tarefa no momento, ou em caso de dúvidas, entre em contato. Agradecemos sua contribuição aos trabalhos da editora.
        \n" +"Caso não tenha disponibilidade para assumir esta tarefa no momento, ou em " +"caso de dúvidas, entre em contato. Agradecemos sua contribuição aos " +"trabalhos da editora.
        \n" "
        \n" -"{$editorialContactSignature}" - -msgid "emails.indexRequest.description" -msgstr "Esta mensagem é enviada pelo editor de série ao indexador, notificando-o de que é necessário produzir os índices de uma submissão. Fornece instruções sobre a submissão e como acessá-la." +"{$signature}" msgid "emails.indexComplete.subject" msgstr "Composição de índices concluída" msgid "emails.indexComplete.body" msgstr "" -"{$editorialContactName},
        \n" +"{$recipientName},
        \n" "
        \n" -"A composição dos índices solicitados para o manuscrito "{$submissionTitle}", enviado à editora {$contextName}, está concluída e pronta para leitura de provas.
        \n" +"A composição dos índices solicitados para o manuscrito "" +"{$submissionTitle}", enviado à editora {$contextName}, está concluída e " +"pronta para leitura de provas.
        \n" "
        \n" "Em caso de dúvidas, entre em contato.
        \n" "
        \n" "{$signatureFullName}" -msgid "emails.indexComplete.description" -msgstr "Esta mensagem é enviada pelo indexador ao editor de série, notificando da criação dos índices para a submissão." - msgid "emails.emailLink.subject" msgstr "Manuscrito de seu interesse" msgid "emails.emailLink.body" -msgstr "Pensei que poderia se interessar em ler o "{$submissionTitle}", escrito por {$authorName} e publicado no v.{$volume} n.{$number} {$year} da editora {$contextName}, disponível no endereço "{$monographUrl}"." +msgstr "" +"Pensei que poderia se interessar em ler o "{$submissionTitle}", " +"escrito por {$authors} e publicado no v.{$volume} n.{$number} {$year} da " +"editora {$contextName}, disponível no endereço "{$submissionUrl}"." msgid "emails.emailLink.description" -msgstr "Este modelo de mensagem fornece aos leitores cadastrados a oportunidade e enviar a sua rede informações sobre a monografia que podem ser de interesse. Está disponível por meio das ferramentas de leitura, habilitadas pelo Gerenete da editora na página de administração das ferramentas de leitura." +msgstr "" +"Este modelo de mensagem fornece aos leitores cadastrados a oportunidade e " +"enviar a sua rede informações sobre a monografia que podem ser de interesse. " +"Está disponível por meio das ferramentas de leitura, habilitadas pelo " +"Gerenete da editora na página de administração das ferramentas de leitura." msgid "emails.notifySubmission.subject" msgstr "Notificação de submissão" msgid "emails.notifySubmission.body" msgstr "" -"Você recebeu uma nova mensagem de {$sender} com relação à monografia "{$submissionTitle}" ({$monographDetailsUrl}):
        \n" +"Você recebeu uma nova mensagem de {$sender} com relação à monografia "" +"{$submissionTitle}" ({$monographDetailsUrl}):
        \n" "
        \n" "\t\t{$message}
        \n" "
        \n" "\t\t" msgid "emails.notifySubmission.description" -msgstr "Notificação de usuário enviada pela janela modal do centro de informações da submissão." +msgstr "" +"Notificação de usuário enviada pela janela modal do centro de informações da " +"submissão." msgid "emails.notifyFile.subject" msgstr "Notificação de arquivo de submissão" msgid "emails.notifyFile.body" msgstr "" -"Você recebeu uma nova mensagem de {$sender} com relação ao arquivo "{$fileName}" da monografia "{$submissionTitle}" ({$monographDetailsUrl}):
        \n" +"Você recebeu uma nova mensagem de {$sender} com relação ao arquivo "" +"{$fileName}" da monografia "{$submissionTitle}" " +"({$monographDetailsUrl}):
        \n" "
        \n" "\t\t{$message}
        \n" "
        \n" "\t\t" msgid "emails.notifyFile.description" -msgstr "Notificação de usuário enviada pela janela modal do centro de informações de arquivos submissão." - -msgid "emails.notificationCenterDefault.subject" -msgstr "Uma mensagem sobre a editora {$contextName}" - -msgid "emails.notificationCenterDefault.body" -msgstr "Informe sua mensagem aqui." - -msgid "emails.notificationCenterDefault.description" -msgstr "Uma mensagem padrão em branco, a ser usada no centro de mensagens." - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Pedido de Avaliação de Manuscrito" - -msgid "emails.reviewRequestRemindAuto.body" msgstr "" -"Caro(a) {$reviewerName},
        \n" -"Apenas relembrando gentilmente do nosso pedido para avaliação da submissão " -""{$submissionTitle}," para {$contextName}. Nos esperamos ter sua " -"resposta em {$responseDueDate}, sendo que esse e-mail foi gerado e enviado " -"automaticamente devido ao tempo.\n" -"
        \n" -"{$messageToReviewer}
        \n" -"
        \n" -"Por favor, entre no site da editora para indicar se aceita a avaliação, bem " -"como a submissão e os registros de avaliação e recomendação.
        \n" -"
        \n" -"A data limite da avaliação é até: {$reviewDueDate}.
        \n" -"
        \n" -"Endereço da submissão: {$submissionReviewUrl}
        \n" -"
        \n" -"Usuário: {$reviewerUserName}
        \n" -"
        \n" -"Obrigado por considerar o pedido.
        \n" -"
        \n" -"
        \n" -"Atenciosamente,
        \n" -"{$editorialContactSignature}
        \n" - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "" -"Este e-mail é automaticamente enviado quando o avaliador é confirmado devido " -"ao tempo (veja a opção de avaliadores sobre as configurações > Fluxo de " -"submissão > Avaliação) e o botão de acesso ao avaliador fica desativado. " -"tarefas programadas devem ser ativadas e configuradas (veja o site de " -"configuração)." - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Pedido de Avaliação de Manuscrito" - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
        \n" -"Apenas relembrando gentilmente do nosso pedido para avaliação da submissão " -""{$submissionTitle}," para {$contextName}. Nos esperamos ter sua " -"resposta em {$responseDueDate},\n" -"sendo que esse email foi gerado e enviado automaticamente devido ao tempo.\n" -"
        \n" -"Acreditamos que você é um excelente avaliação para o manuscrito. O resumo da " -"submissão está inserido abaixo e esperamos que considere aceitar essa " -"importante tarefa para nos.\n" -"
        \n" -"
        \n" -"Por favor, entre no site da editora para indicar se aceita a avaliação, bem " -"como a submissão e os registros de revisão e recomendação.
        \n" -"
        \n" -"A avaliação até: {$reviewDueDate}.
        \n" -"
        \n" -"Endereço da Submissão: {$submissionReviewUrl}
        \n" -"
        \n" -"Obrigado por considerar o pedido.
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -""{$submissionTitle}"
        \n" -"
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "" -"Este e-mail é automaticamente enviado quando o avaliador é confirmado devido " -"ao tempo (veja a opção de revisores sobre as configurações > Fluxo de " -"submissão > Avaliação) e o botão de acesso ao avaliador fica desativado. " -"tarefas programadas devem ser ativadas e configuradas (veja o site de " -"configuração)" - -msgid "emails.announcement.description" -msgstr "Este email é enviado quando uma nova notícia é criada." - -msgid "emails.announcement.body" -msgstr "" -" {$title}
        \n" -"
        \n" -"{$summary}
        \n" -"
        \n" -"Visite nosso site para ler o comunicado completo." - -msgid "emails.announcement.subject" -msgstr "{$title}" +"Notificação de usuário enviada pela janela modal do centro de informações de " +"arquivos submissão" -msgid "emails.statisticsReportNotification.description" -msgstr "" -"Esse e-mail é enviado automaticamente mensalmente para editores e gerentes " -"para fornecer uma visão geral da editora." +msgid "emails.statisticsReportNotification.subject" +msgstr "Atividade editorial de {$month}, {$year}" msgid "emails.statisticsReportNotification.body" msgstr "" "\n" -"{$name},
        \n" +"{$recipientName},
        \n" "
        \n" "O relatório da sua editora de {$month}, {$year} já se encontra disponível. " "As estatísticas chave deste mês encontram-se disponíveis abaixo.
        \n" @@ -803,68 +497,79 @@ msgstr "" "\t
      6. Total de submissões ao sistema: {$totalSubmissions}
      7. \n" "\n" "Entre com a sua conta na editora para ver informações mais detalhadas tendências editoriais e estatísticas de artigos publicados. Encontra-" +"href=\"{$editorialStatsLink}\">tendências editoriais e estatísticas de livros publicados. Encontra-" "se anexada uma cópia das tendências editoriais deste mês.
        \n" "
        \n" "Atentamente,
        \n" -"{$principalContactSignature}" +"{$contextSignature}" -msgid "emails.statisticsReportNotification.subject" -msgstr "Atividade editorial de {$month}, {$year}" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "" -"Este e-mail é enviado ao autor se o editor rejeitar a submissão " -"inicialmente, antes da fase de avaliação" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\t{$authorName}:
        \n" -"
        \n" -"Chegamos a uma decisão sobre sua submissão para {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"Nossa decisão é: Rejeitar a Submissão
        \n" -"
        \n" -"URL do Manuscrito: {$submissionUrl}\n" -"\t\t" - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Decisão do Editor" - -msgid "emails.editorRecommendation.description" -msgstr "" -"Este e-mail do Editor que recomenda ou do Editor de Seção para os Editores " -"que tomam decisões ou Editores de Seção notifica-os de uma recomendação " -"final sobre a submissão." - -msgid "emails.editorRecommendation.body" -msgstr "" -"{$editors}:
        \n" -"
        \n" -"A recomendação referente a submissão para {$contextName}, "{$ " -"submissionTitle}" é: {$recommendation}" - -msgid "emails.editorRecommendation.subject" -msgstr "Recomendação do Editor" - -msgid "emails.reviewReinstate.description" -msgstr "" -"Este e-mail é enviado pelo Editor de Seção a um Avaliador que possui uma " -"avaliação da submissão em andamento para notificá-lo de que a avaliação foi " -"cancelada." +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" -msgid "emails.reviewReinstate.body" +msgid "emails.announcement.body" msgstr "" -"{$reviewerName}:
        \n" -"
        \n" -"Gostaríamos de restabelecer nossa solicitação para você avaliar a submissão, " -"\"{$submissionTitle}\" para {$contextName}. Esperamos que você possa ajudar " -"no processo de avaliação.
        \n" -"
        \n" -"Se você tiver alguma dúvida, entre em contato comigo." +" {$announcementTitle}
        \n" +"
        \n" +"{$announcementSummary}
        \n" +"
        \n" +"Visite nosso site para ler o comunicado " +"completo." + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Validar seu cadastro" + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName},
        \n" +#~ "
        \n" +#~ "Seu cadastro foi realizado com sucesso na editora {$contextName}, mas é " +#~ "necessário validar seu e-mail antes de poder acessar o sistema. Para " +#~ "isto, basta seguir o link:
        \n" +#~ "
        \n" +#~ "{$activateUrl}
        \n" +#~ "
        \n" +#~ "Atenciosamente,
        \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Esta mensagem é enviada a novos usuários cadastrados, como boas-vindas e " +#~ "permitir a validação do cadastro." + +msgid "emails.editorAssignReview.body" +msgstr "" +"

        Prezado(a) {$recipientName},

        A submissão a seguir foi atribuída " +"a você para passar pelo estágio de avaliação.

        { $submissionTitle}
        {$authors}

        Resumo

        {$submissionAbstract}

        Faça login em visualize a submissão e atribua avaliadores " +"qualificados. Você pode atribuir um avaliador clicando em \"Adicionar " +"Avaliador\".

        Agradecemos antecipadamente.

        Atenciosamente,{$signature}" + +msgid "emails.revisedVersionNotify.subject" +msgstr "Versão Revisada Enviada" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

        Prezado(a) {$recipientName},

        O autor enviou revisões para a " +"submissão, {$authorsShort} — {$submissionTitle}.

        Como editor " +"designado, pedimos que você faça login e visualize as revisões e tome a decisão de aceitar, recusar ou enviar a " +"submissão para avaliação posterior.


        Esta é uma mensagem " +"automática de {$contextName}." msgid "emails.reviewReinstate.subject" -msgstr "Solicitação de avaliação restabelecida" +msgstr "Ainda pode avaliar algo para {$contextName}?" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

        Prezado {$recipientName},

        A submissão a seguir foi atribuída a você " +"para acompanhar o estágio de editoração.

        {$submissionTitle}
        {$authors}

        Resumo

        {$submissionAbstract}

        Faça login em visualize a submissão. Assim que os arquivos " +"prontos para editoração estiverem disponíveis, carregue-os na seção " +"Publicação > Formatos de publicação.

        Agradecemos " +"antecipadamente.

        Atenciosamente,

        {$signature}" diff --git a/locale/pt_BR/locale.po b/locale/pt_BR/locale.po index 6906424705b..4263da41f52 100644 --- a/locale/pt_BR/locale.po +++ b/locale/pt_BR/locale.po @@ -1,9 +1,10 @@ +# Diego José Macêdo , 2021, 2022, 2023, 2024. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T12:00:53-07:00\n" -"PO-Revision-Date: 2020-10-13 13:50+0000\n" +"PO-Revision-Date: 2024-02-01 04:39+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -12,11 +13,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "common.payments" +msgstr "Pagamentos" msgid "monograph.audience" msgstr "Audiência" +msgid "monograph.audience.success" +msgstr "Os detalhes da audiência foram atualizados." + msgid "monograph.coverImage" msgstr "Capa" @@ -38,6 +45,15 @@ msgstr "Idiomas (Inglês, francês, espanhol)" msgid "monograph.publicationFormats" msgstr "Formatos de publicação" +msgid "monograph.publicationFormat" +msgstr "Formato" + +msgid "monograph.publicationFormatDetails" +msgstr "Detalhes sobre o formato disponível para publicação: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Detalhes sobre essa publicação" + msgid "monograph.carousel.publicationFormats" msgstr "Formatos:" @@ -49,10 +65,9 @@ msgstr "Leitura de provas" msgid "monograph.proofReadingDescription" msgstr "" -"O editor de layout envia os arquivos prontos para editoração. Use " -"+Designar para encaminhar as provas a autores e outros " -"participantes, com versões corrigidas enviadas para aprovação antes da " -"publicação." +"O editor de layout envia os arquivos prontos para editoração. Use " +"+Designar para encaminhar as provas a autores e outros participantes, " +"com versões corrigidas enviadas para aprovação antes da publicação." msgid "monograph.task.addNote" msgstr "Incluir para questionamentos" @@ -105,6 +120,9 @@ msgstr "Informação digital" msgid "monograph.publicationFormat.productDimensions" msgstr "Dimensões físicas" +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + msgid "monograph.publicationFormat.productFileSize" msgstr "Tamanho em MB" @@ -139,7 +157,9 @@ msgid "monograph.publicationFormat.taxType" msgstr "Tipo de taxa" msgid "monograph.publicationFormat.isApproved" -msgstr "Incluir metadados do formato de publicação na entrada de catálogo deste livro." +msgstr "" +"Incluir metadados do formato de publicação na entrada de catálogo deste " +"livro." msgid "monograph.publicationFormat.noMarketsAssigned" msgstr "Preço e mercados faltando." @@ -151,7 +171,9 @@ msgid "monograph.publicationFormat.missingONIXFields" msgstr "Campos de metadados faltando." msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "

        O formato de publicação escolhido não existe mais para esta monografia.

        " +msgstr "" +"

        O formato de publicação escolhido não existe mais para esta monografia." msgid "monograph.publicationFormat.openTab" msgstr "Aba de formato de publicação aberta." @@ -171,9 +193,21 @@ msgstr "Detalhes do formato" msgid "grid.catalogEntry.physicalFormat" msgstr "Formato físico" +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Este formato estará disponíivel em um site remoto" + msgid "grid.catalogEntry.remoteURL" msgstr "URL de conteúdo hospedado remotamente" +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "Um código ISBN de 13 dígitos, como 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "Um código ISBN de 10 dígitos, como 951-98548-9-4." + msgid "grid.catalogEntry.monographRequired" msgstr "ID de monografia obrigatório." @@ -195,6 +229,11 @@ msgstr "Prova" msgid "grid.catalogEntry.approvedRepresentation.title" msgstr "Aprovação do formato" +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

        Aprove os metadados para este formato. Os metadados podem ser verificados " +"no painel Editar para cada formato.

        " + msgid "grid.catalogEntry.approvedRepresentation.removeMessage" msgstr "

        Remova este formato do catálogo.

        " @@ -202,10 +241,17 @@ msgid "grid.catalogEntry.availableRepresentation.title" msgstr "Aprovação de formato" msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "

        Este formato estará agora disponível para os leitores, por meio de aruqivos para baixar que aparecerão no catálogo de entradas do livro e/ou por meio de ações adicionais definidas pela editora para distribuição.

        " +msgstr "" +"

        Este formato estará agora disponível para os leitores, por meio " +"de aruqivos para baixar que aparecerão no catálogo de entradas do livro e/ou " +"por meio de ações adicionais definidas pela editora para distribuição.

        " msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "

        Este formato não estará mais disponível para leitores, por meio de arquivos para baixar que apareciam anteriormente no catálogo de entradas do livro ou por meio de ações adicionais definidas pela editora para distribuição.

        " +msgstr "" +"

        Este formato não estará mais disponível para leitores, por meio " +"de arquivos para baixar que apareciam anteriormente no catálogo de entradas " +"do livro ou por meio de ações adicionais definidas pela editora para " +"distribuição.

        " msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" msgstr "Entrada de catálogo não aprovada." @@ -256,10 +302,14 @@ msgid "grid.catalogEntry.salesRightsROW" msgstr "Resto do mundo?" msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "Marque esta opção para usar a entrada de direitos de venda como regra geral para o formato. Não é necessário escolher países e regiões neste caso." +msgstr "" +"Marque esta opção para usar a entrada de direitos de venda como regra geral " +"para o formato. Não é necessário escolher países e regiões neste caso." msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "Já existe uma LINHA definida de tipos de venda para este formato de publicação." +msgstr "" +"Já existe uma LINHA definida de tipos de venda para este formato de " +"publicação." msgid "grid.catalogEntry.countries" msgstr "Países" @@ -298,7 +348,9 @@ msgid "grid.catalogEntry.dateFormat" msgstr "Formato" msgid "grid.catalogEntry.dateRequired" -msgstr "É obrigatório informar a data e o valor deve estar de acordo com o formato definido." +msgstr "" +"É obrigatório informar a data e o valor deve estar de acordo com o formato " +"definido." msgid "grid.catalogEntry.representatives" msgstr "Representantes" @@ -316,7 +368,9 @@ msgid "grid.catalogEntry.agent" msgstr "Agente" msgid "grid.catalogEntry.agentTip" -msgstr "Designe um agente para representá-lo neste território definido. Isto é opcional." +msgstr "" +"Designe um agente para representá-lo neste território definido. Isto é " +"opcional." msgid "grid.catalogEntry.supplier" msgstr "Fornecedor" @@ -346,7 +400,9 @@ msgid "grid.catalogEntry.representativeIdType" msgstr "Tipo de ID (GLN é o recomendado)" msgid "grid.catalogEntry.representativesDescription" -msgstr "Deixe as opções a seguir em branco, caso ofereça seus próprios serviços aos seus consumidores." +msgstr "" +"Deixe as opções a seguir em branco, caso ofereça seus próprios serviços aos " +"seus consumidores." msgid "grid.action.addRepresentative" msgstr "Incluir representante" @@ -357,6 +413,9 @@ msgstr "Editar representante" msgid "grid.action.deleteRepresentative" msgstr "Excluir representante" +msgid "spotlight" +msgstr "Em destaque" + msgid "spotlight.spotlights" msgstr "Em destaques" @@ -435,9 +494,6 @@ msgstr "Homologar a prova para indexação e inclusão no catálogo" msgid "grid.action.pageProofApproved" msgstr "Arquivo na página de provas está pronto para publicação" -msgid "grid.action.addAnnouncement" -msgstr "Incluir uma notícia" - msgid "grid.action.newCatalogEntry" msgstr "Nova entrada de catálogo" @@ -534,15 +590,9 @@ msgstr "Esta série aparecerá no menu principal" msgid "series.path" msgstr "Caminho" -msgid "grid.series.urlWillBe" -msgstr "O caminho da séria no navegador será {$sampleUrl}. O 'Caminho' é uma sequência de caracteres usado unicamente para identificar a série" - msgid "catalog.manage" msgstr "Administração do catálogo" -msgid "catalog.manage.homepage" -msgstr "Página inicial" - msgid "catalog.manage.newReleases" msgstr "Lançamentos" @@ -567,26 +617,30 @@ msgstr "ISSN online" msgid "catalog.manage.series.printIssn" msgstr "ISSN impresso" -msgid "catalog.manage.managementIntroduction" -msgstr "Boas-vindas à administração do catálogo. Nesta página pode-se publicar uma nova entrada de catálogo; revisar e configurar a listagem de livros em destaque; revisar e configurar a listagem de lançamentos; e revisar e configurar seus livros por séries e categorias." - msgid "catalog.selectSeries" msgstr "Escolher série" msgid "catalog.selectCategory" msgstr "Escolher categoria" -msgid "catalog.manage.spotlightDescription" -msgstr "Três destaques (ex.: Livro em destaque) aparecerão na página inicial da editora, com título, imagem e texto do destaque." - msgid "catalog.manage.homepageDescription" -msgstr "A capa de livros selecionados aparecerá próximo ao topo da página inicial, com um conjunto rolável. Clique em 'Destacar', e inclua então a estrela para exibir o livro no carrossel; clique o ponto de exclamação para listar como lançamento; arraste e solte para ordenar." +msgstr "" +"A capa de livros selecionados aparecerá próximo ao topo da página inicial, " +"com um conjunto rolável. Clique em 'Destacar', e inclua então a estrela para " +"exibir o livro no carrossel; clique o ponto de exclamação para listar como " +"lançamento; arraste e solte para ordenar." msgid "catalog.manage.categoryDescription" -msgstr "Clique em 'Destacar', em seguida a estrela para escolher um livro em destaque para esta categoria; arraste e solte para ordenar." +msgstr "" +"Clique em 'Destacar', em seguida a estrela para escolher um livro em " +"destaque para esta categoria; arraste e solte para ordenar." msgid "catalog.manage.seriesDescription" -msgstr "Clique em 'Destacar', em seguida a estrela para escolher um livro em destaque para esta série; arraste e solte para ordenar. Séries são identificadas com o(s) editor(es) e o título da série, dentro da categoria ou independentemente." +msgstr "" +"Clique em 'Destacar', em seguida a estrela para escolher um livro em " +"destaque para esta série; arraste e solte para ordenar. Séries são " +"identificadas com o(s) editor(es) e o título da série, dentro da categoria " +"ou independentemente." msgid "catalog.manage.placeIntoCarousel" msgstr "Carrossel" @@ -603,6 +657,76 @@ msgstr "Administrar categorias" msgid "catalog.manage.noMonographs" msgstr "Nenhuma monografia designada." +msgid "catalog.manage.featured" +msgstr "Destaque" + +msgid "catalog.manage.categoryFeatured" +msgstr "Categoria em destaque" + +msgid "catalog.manage.seriesFeatured" +msgstr "Série em destaque" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monografia é destaque." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monografia não destacada." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "A monografia está marcada como um novo lançamento." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "A monografia está desmarcada como um novo lançamento." + +msgid "catalog.manage.feature.newRelease" +msgstr "Lançamento" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Lançamento na categoria" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Lançamento em séries" + +msgid "catalog.manage.nonOrderable" +msgstr "Esta monografia não pode ser solicitada até que seja apresentada." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Busca por título ou autor" + +msgid "catalog.manage.isFeatured" +msgstr "Esta monografia está em destaque. Faça esta monografia não aparecer." + +msgid "catalog.manage.isNotFeatured" +msgstr "" +"Esta monografia não está em destaque. Faça a monografia está em destaque." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Esta monografia é um lançamento. Faça desta monografia não ser um lançamento." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Esta monografia não é um lançamento. Faça desta monografia um lançamento." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Nenhuma submissão foi selecionada para ser adicionada ao catalogo." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Uma ou mais submissões não foram encontradas." + +msgid "catalog.manage.findSubmissions" +msgstr "Encontre monografias para adicionar ao catálogo" + +msgid "catalog.noTitles" +msgstr "Sem publicações disponíveis." + +msgid "catalog.noTitlesNew" +msgstr "Sem novos títulos disponíveis neste momento." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Nenhuma publicação que atenda a busca por \"{$searchQuery}\" foi encontrada." + msgid "catalog.feature" msgstr "Destacar" @@ -612,6 +736,15 @@ msgstr "Destacado" msgid "catalog.featuredBooks" msgstr "Livros em destaque" +msgid "catalog.foundTitleSearch" +msgstr "" +"Uma publicação que atende a busca por \"{$searchQuery}\" foi encontrada." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"{$number} publicações foram encontradas que atendem a busca por " +"\"{$searchQuery}\"." + msgid "catalog.category.heading" msgstr "Todos os livros" @@ -627,6 +760,9 @@ msgstr "Dados da publicação" msgid "catalog.published" msgstr "Publicado" +msgid "catalog.forthcoming" +msgstr "Próximo" + msgid "catalog.categories" msgstr "Categorias" @@ -640,7 +776,43 @@ msgid "catalog.aboutTheAuthor" msgstr "Sobre o {$roleName}" msgid "catalog.loginRequiredForPayment" -msgstr "Nota: Para adquirir itens, é necessário acessar o sistema primeiro. Escolher um item para compra o levará a página de login. Itens com o ícone de acesso alberto podem ser baixados sem custos e sem login." +msgstr "" +"Nota: Para adquirir itens, é necessário acessar o sistema primeiro. Escolher " +"um item para compra o levará a página de login. Itens com o ícone de acesso " +"alberto podem ser baixados sem custos e sem login." + +msgid "catalog.sortBy" +msgstr "Ordem das publicações" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Escolha como ordenar as publicações desta série." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Escolha como ordenar as publicações desta categoria." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Escolha como ordenar as publicações no catálogo." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Posição da série (menor primeiro)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Posição da série (maior primeiro)" + +msgid "catalog.viewableFile.title" +msgstr "Versão {$type} do arquivo {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Retorne para ver os detalhes sobre {$monographTitle}" + +msgid "submission.search" +msgstr "Busca de Livros" + +msgid "common.publication" +msgstr "Monografia" + +msgid "common.publications" +msgstr "Monografias" msgid "common.prefix" msgstr "Prefixo" @@ -681,6 +853,9 @@ msgstr "Catálogo" msgid "navigation.competingInterestPolicy" msgstr "Política de conflito de interesses" +msgid "navigation.catalog.allMonographs" +msgstr "Todas as Monografias" + msgid "navigation.catalog.manage" msgstr "Administrar" @@ -720,15 +895,45 @@ msgstr "Guia" msgid "navigation.linksAndMedia" msgstr "Links e Redes Sociais" +msgid "navigation.navigationMenus.catalog.description" +msgstr "Link para o seu catálogo." + +msgid "navigation.skip.spotlights" +msgstr "Ir para destaques" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Series" + +msgid "navigation.navigationMenus.series.description" +msgstr "Link para uma série." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Categoria" + +msgid "navigation.navigationMenus.category.description" +msgstr "Link para uma categoria." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Lançamentos" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Link para seus Lançamentos." + msgid "context.contexts" msgstr "Editoras" msgid "context.context" msgstr "Editora" +msgid "context.current" +msgstr "Editora Atual:" + msgid "context.select" msgstr "Selecione uma Editora:" +msgid "user.authorization.representationNotFound" +msgstr "O formato de publicação solicitado não foi encontrado." + msgid "user.noRoles.selectUsersWithoutRoles" msgstr "Incluir usuários sem papel nesta editora." @@ -736,13 +941,38 @@ msgid "user.noRoles.submitMonograph" msgstr "Enviar proposta" msgid "user.noRoles.submitMonographRegClosed" -msgstr "Enviar uma monografia: cadastro de autores está temporariamente desabilitado." +msgstr "" +"Enviar uma monografia: cadastro de autores está temporariamente desabilitado." msgid "user.noRoles.regReviewer" msgstr "Cadastrar como avaliador" msgid "user.noRoles.regReviewerClosed" -msgstr "Cadastrar como avaliador: cadastro de avaliadores está temporariamente desabilitado." +msgstr "" +"Cadastrar como avaliador: cadastro de avaliadores está temporariamente " +"desabilitado." + +msgid "user.reviewerPrompt" +msgstr "Você gostaria de revisar as submissões para esta editora?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Sim, solicite o {$userGroup} papel." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Sim, gostaria de ser contatado com solicitações para avaliar submissões a " +"esta editora." + +msgid "user.register.contextsPrompt" +msgstr "Com quais editoras deste portal você gostaria de se registrar?" + +msgid "user.register.otherContextRoles" +msgstr "Solicite os seguintes papéis." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Se você pediu para ser um avaliador de qualquer editora, insira seus " +"assuntos de interesse." msgid "user.role.manager" msgstr "Gerente da Editora" @@ -780,9 +1010,6 @@ msgstr "Leitores de prova" msgid "user.role.productionEditors" msgstr "Editores de produção" -msgid "user.register.completeForm" -msgstr "Preencha o formulário para se cadastrar nesta editora." - msgid "user.register.selectContext" msgstr "Selecione uma editora a qual se registrará:" @@ -792,15 +1019,6 @@ msgstr "Sem editoras para se registrar nesse site." msgid "user.register.privacyStatement" msgstr "Declaração de privacidade" -msgid "user.register.alreadyRegisteredOtherContext" -msgstr " Clique aqui se você já está cadastrado em outra editora neste site." - -msgid "user.register.notAlreadyRegisteredOtherContext" -msgstr " Clique aqui se você não é cadastrado em outra editora neste site." - -msgid "user.register.loginToRegister" -msgstr "Informe seu login e senha atuais para se cadastrar nesta editora." - msgid "user.register.registrationDisabled" msgstr "Esta editora não está aceitando cadastros no momento." @@ -820,19 +1038,30 @@ msgid "user.register.reviewerDescription" msgstr "Disponível para avaliar submissões à editora." msgid "user.register.reviewerInterests" -msgstr "Identificar áreas de interesse para avaliação (áreas substanciais e métodos de pesquisa):" +msgstr "" +"Identificar áreas de interesse para avaliação (áreas substanciais e métodos " +"de pesquisa):" msgid "user.register.form.userGroupRequired" msgstr "É necessário escolher pelo menos um papel" +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Sim, concordo em ter meus dados coletados e armazenados de acordo com a Declaração de privacidade " +"desta editora." + +msgid "site.noPresses" +msgstr "Não há editoras disponíveis." + msgid "site.pressView" msgstr "Ver página da editora" msgid "about.pressContact" msgstr "Contato" -msgid "about.aboutThePress" -msgstr "Sobre" +msgid "about.aboutContext" +msgstr "Sobre a Editora" msgid "about.editorialTeam" msgstr "Equipe editorial" @@ -849,20 +1078,29 @@ msgstr "Políticas de séries e catálogos" msgid "about.submissions" msgstr "Submissões" -msgid "about.sponsors" -msgstr "Patrocinadores" - -msgid "about.contributors" -msgstr "Apoio" - msgid "about.onlineSubmissions" msgstr "Submissões online" msgid "about.onlineSubmissions.login" msgstr "Login" +msgid "about.onlineSubmissions.register" +msgstr "Registrar" + msgid "about.onlineSubmissions.registrationRequired" -msgstr "Realizar um cadastro e consequente login são necessários para submeter trabalhos e acompanhar a situação de submissões correntes. {$login} em uma conta existente ou {$register} uma nova conta." +msgstr "" +"Realizar um cadastro e consequente login são necessários para submeter " +"trabalhos e acompanhar a situação de submissões correntes. {$login} em uma " +"conta existente ou {$register} uma nova conta." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} ou {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Faça uma nova submissão" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "visualizar suas submissões pendentes" msgid "about.authorGuidelines" msgstr "Diretrizes para autores" @@ -871,7 +1109,10 @@ msgid "about.submissionPreparationChecklist" msgstr "Verificação da submissão" msgid "about.submissionPreparationChecklist.description" -msgstr "Como parte do processo de submissão, é necessário que os autores verifiquem que sua submissão atende aos seguintes requisitos, sendo que elas serão devolvidas submissão que não atendam a estas diretrizes." +msgstr "" +"Como parte do processo de submissão, é necessário que os autores verifiquem " +"que sua submissão atende aos seguintes requisitos, sendo que elas serão " +"devolvidas submissão que não atendam a estas diretrizes." msgid "about.copyrightNotice" msgstr "Aviso de direito autoral" @@ -899,17 +1140,26 @@ msgstr "" msgid "about.aboutThisPublishingSystem.altText" msgstr "Processo Editorial e de Publicação do OMP" -#, fuzzy +msgid "about.aboutSoftware" +msgstr "Sobre o Open Monograph Press" + msgid "about.aboutOMPPress" -msgstr "Esta editora adota o Open Monograph Press {$ompVersion}, software de código livre para administração e publicação de monografias, desenvolvido, mantido e distribuído gratuitamente pelo Public Knowledge Project, sob a Licença Pública Geral GNU." +msgstr "" +"Esta editora adota o Open Monograph Press {$ompVersion}, software de código " +"livre para administração e publicação de monografias, desenvolvido, mantido " +"e distribuído gratuitamente pelo Public " +"Knowledge Project, sob a Licença Pública Geral GNU. Por favor, entre em contato com a editora diretamente com " +"perguntas sobre a publicação e submissões à editora." -#, fuzzy msgid "about.aboutOMPSite" msgstr "" -"Este site adota o Open Monograph Press {$ompVersion}, software de código " -"livre para administração e publicação de monografias, desenvolvido, mantido " -"e distribuído gratuitamente pelo Public " -"Knowledge Project, sob a Licença Pública Geral GNU." +"Esta impressora usa Open Monograph Press {$ompVersion}, que é um software de " +"gerenciamento e publicação de imprensa de código aberto desenvolvido, " +"suportado e distribuído gratuitamente pelo Public Knowledge Project sob a " +"GNU General Public License. Visite o site do PKP para saber mais sobre o software. Entre em contato diretamente com " +"o site com perguntas sobre as editoras e submissões para as editoras." msgid "help.searchReturnResults" msgstr "Volta aos resultados da pesquisa" @@ -926,66 +1176,108 @@ msgstr "Atualização do OMP" msgid "installer.installApplication" msgstr "Instalar o Open Monograph Press" -#, fuzzy +msgid "installer.updatingInstructions" +msgstr "" +"Se você estiver atualizando uma instalação existente do OMP, clique aqui para prosseguir." + msgid "installer.installationInstructions" msgstr "" -"\n" -"

        Agradecemos por baixar o Open Monograph Press {$version}, software desenvolvido pelo Public Knowledge Project. Antes de continuar, leia o README incluído no pacote. Para maiores informações sobre o Public Knowledge Project e seus projetos de software, visite a página do PKP. Caso encontre falhas no sistema ou tenha perguntas técnicas sobre o Open Monograph Press, acesse o fórum de suporte ou o sistema de relatório de erros do PKP. Embora o fórum seja o método preferido de contato, aceitamos mensagens à equipe no endereço pkp.contact@gmail.com.

        \n" -"\n" -"

        Atualização

        \n" -"\n" -"

        Caso esteja atualizando uma versão existente no OMP, clique aqui para proceder.

        " +"

        Obrigado por baixar a Open Monograph Press {$version} do " +"Public Knowledge Project. Antes de continuar, leia o arquivo README incluído com este software. Para " +"obter mais informações sobre o Public Knowledge Project e seus projetos de " +"software, visite o site do " +"PKP. Se você tiver relatórios de bugs ou perguntas de suporte técnico " +"sobre a Open Monograph Press, consulte o fórum de suporte ou visite o fórum de suporte ou visite o PKP on-" +"line < a href=\"https://github.com/pkp/pkp-lib/issues/\" target=\"_blank" +"\">sistema de relatório de bug. Embora o fórum de suporte seja o método " +"preferencial de contato, você também pode enviar um e-mail para a equipe em " +"pkp.contact@gmail.com.

        " msgid "installer.preInstallationInstructionsTitle" msgstr "Antes de instalar" msgid "installer.preInstallationInstructions" msgstr "" -"

        1. Os seguintes arquivos e pastas (e seus conteúdos) devem possuir permissão de escrita:

        \n" +"

        1. Os seguintes arquivos e pastas (e seus conteúdos) devem possuir " +"permissão de escrita:

        \n" "
          \n" -"\t
        • config.inc.php com permissão (opcional): {$writable_config}
        • \n" +"\t
        • config.inc.php com permissão (opcional): {$writable_config}\n" "\t
        • public/ com permissão: {$writable_public}
        • \n" "\t
        • cache/ com permissão: {$writable_cache}
        • \n" -"\t
        • cache/t_cache/ com permissão: {$writable_templates_cache}
        • \n" -"\t
        • cache/t_compile/ com permissão: {$writable_templates_compile}
        • \n" +"\t
        • cache/t_cache/ com permissão: {$writable_templates_cache}\n" +"\t
        • cache/t_compile/ com permissão: {$writable_templates_compile}" +"
        • \n" "\t
        • cache/_db com permissão: {$writable_db_cache}
        • \n" "
        \n" "\n" -"

        2. Uma pasta para armazenar as submissões deve ser criado e deve possuir permissão de escrita (veja \"Configurações de arquivo\" a seguir).

        " +"

        2. Uma pasta para armazenar as submissões deve ser criado e deve possuir " +"permissão de escrita (veja \"Configurações de arquivo\" a seguir).

        " msgid "installer.upgradeInstructions" msgstr "" -"

        OMP versão {$version}

        \n" +"

        Versão OMP {$version}

        \n" "\n" -"

        Agradecemos por baixar o Open Monograph Press, software desenvolvido pelo Public Knowledge Project. Antes de continuar, leia o README e o UPGRADE incluídos no pacote. Paramaiores informações sobre o Public Knowledge Project e seus projetos de software, visite a página do PKP. Caso encontre falhas no sistema ou tenha perguntas técnicas sobre o Open Monograph Press, acesse o fórum de suporte ou o sistema de relatório de erros do PKP. Embora o fórum seja o método preferido de contato, aceitamos mensagens à equipe no endereço pkp.contact@gmail.com.

        \n" -"

        É altamente recomendado realizar uma cópia de segurança da base de dados, pasta de submissões e do código fonte do OMP atual antes de prosseguir.

        \n" -"

        Caso esteja rodando no PHP Safe Mode, assegure-se de que a diretiva max_execution_time no arquivo de configuração php.ini esteja definida com um limite alto. Caso este ou outro limite de tempo (ex.: diretivas de \"Timeout\" do Apache) seja ultrapassado e o processo de atualização interrompido, intervenção manual será necessária.

        " +"

        Obrigado por baixar a Open Monograph Press do Public " +"Knowledge Project. Antes de continuar, leia o README e o UPGRADE arquivos incluídos com este software. Para obter mais informações sobre o " +"Public Knowledge Project e seus projetos de software, visite o site do PKP. Se você tiver " +"relatórios de bugs ou perguntas de suporte técnico sobre a Open Monograph " +"Press, consulte o fórum de suporte ou visite o fórum de suporte ou visite o PKP on-line < a href=" +"\"https://github.com/pkp/pkp-lib/issues\" target=\"_blank\">sistema de " +"relatório de bug. Embora o fórum de suporte seja o método preferencial " +"de contato, você também pode enviar um e-mail para a equipe em pkp.contact@gmail.com.

        \n" +"

        É altamente recomendado que você faça backup de seu " +"banco de dados, diretório de arquivos e diretório de instalação do OMP antes " +"de continuar.

        " msgid "installer.localeSettingsInstructions" msgstr "" -"Para suporte total ao Unicode (UTF-8), escolha UTF-8 para todas as opções de configuração de caracteres. Note que isto exige servidores de bases de dados MySQL >= 4.1.1 ou PostgreSQL >= 9.1.5. Note também que suporte total ao Unicode exige a biblioteca mbstring (habilitada por padrão nas instalações do PHP mais recentes). Podem ocorrer problemas usando conjuntos de caracteres extendidos caso o servidor não atenda a estes requisitos.\n" +"Para suporte completo a Unicode, o PHP deve ser compilado com suporte para a " +"biblioteca mbstring (ativada por padrão nas instalações PHP mais recentes ). " +"Você pode ter problemas ao usar conjuntos de caracteres estendidos se o " +"servidor não atender a esses requisitos.\n" "

        \n" -"Suporte à biblioteca mbstring: {$supportsMBString}" +"Seu servidor atualmente suporta mbstring: {$supportsMBString}" msgid "installer.allowFileUploads" msgstr "Permissão para envio de arquivos: {$allowFileUploads}" msgid "installer.maxFileUploadSize" -msgstr "Tamanho máximo para envio de arquivos: {$maxFileUploadSize}" +msgstr "" +"Tamanho máximo para envio de arquivos: {$maxFileUploadSize}" msgid "installer.localeInstructions" -msgstr "O idioma principal para uso do sistema. Consulte a documentação do OMP caso tenha interesse em usar um idioma não listado aqui." +msgstr "" +"O idioma principal para uso do sistema. Consulte a documentação do OMP caso " +"tenha interesse em usar um idioma não listado aqui." msgid "installer.additionalLocalesInstructions" -msgstr "Escolha idiomas adicionais para uso no sistema. Estes idiomas estarão disponíveis nas editoras hospedadas neste site. Idiomas adicionais podem ser instalados a qualquer tempo a partir da interface de administração. Idiomas marcados com * podem estar incompletos." +msgstr "" +"Escolha idiomas adicionais para uso no sistema. Estes idiomas estarão " +"disponíveis nas editoras hospedadas neste site. Idiomas adicionais podem ser " +"instalados a qualquer tempo a partir da interface de administração. Idiomas " +"marcados com * podem estar incompletos." msgid "installer.filesDirInstructions" msgstr "" "Informe o caminho físico completo da pasta para hospedar as submissões. Este " "diretório não deve possuir acesso via direto do navegador. Assegure-" -"se de que a pasta exista e possui permissão de escrita antes da " -"instalação. Caminhos no Windows devem usar a barra, como, por " -"exemplo, \"C:/minhaeditora/arquivos\"." +"se de que a pasta exista e possui permissão de escrita antes da instalação. Caminhos no Windows devem usar a barra, como, por exemplo, \"C:/" +"minhaeditora/arquivos\"." msgid "installer.databaseSettingsInstructions" msgstr "" @@ -999,34 +1291,62 @@ msgstr "Atualizar o Open Monograph Press" msgid "installer.overwriteConfigFileInstructions" msgstr "" "

        IMPORTANTE!

        \n" -"

        O instalador não pode alterar automaticamente o arquivo de configuração. Antes de usar o sistema, abra o arquivo config.inc.php em um editor de texto apropriado e substitua seu conteúdo pelo do campo a seguir.

        " +"

        O instalador não pode alterar automaticamente o arquivo de configuração. " +"Antes de usar o sistema, abra o arquivo config.inc.php em um editor " +"de texto apropriado e substitua seu conteúdo pelo do campo a seguir.

        " msgid "installer.installationComplete" msgstr "" -"

        Instalação do OMP concluída com sucesso.

        \n" -"

        Para usar o sistema, entre com o login e senha informados no passo anterior.

        \n" -"

        Caso deseje receber avisos e atualizações, cadastre-se na página http://pkp.sfu.ca/omp/register. Caso tenha perguntas ou comentários, visite o fórum de suporte.

        " +"

        A instalação do OMP foi concluída com sucesso.

        \n" +"

        Para começar a usar o sistema, faça login com " +"o nome de usuário e a senha inseridos na página anterior.

        \n" +"

        Visite nosso fórum " +"da comunidade ou inscreva-se em nosso boletim informativo do desenvolvedor para receber avisos de segurança e atualizações sobre os próximos " +"lançamentos, novos plug-ins e recursos planejados.

        " msgid "installer.upgradeComplete" msgstr "" -"

        Atualização do OMP para a versão {$version} concluída com successo.

        \n" -"

        Não se esqueça de alterar a variável \"installed\" em seu arquivo de configuração config.inc.php de volta para On.

        \n" -"

        Caso não tenha se cadastrado ainda e deseje receber avisos e atualizações, >cadastre-se na página http://pkp.sfu.ca/omp/register. Caso tenha perguntas ou comentários, visite o fórum de suporte.

        " +"

        A atualização do OMP para a versão {$version} foi concluída com " +"sucesso.

        \n" +"

        Não se esqueça de definir a configuração \"installed\" em seu arquivo de " +"configuração config.inc.php como On.

        \n" +"

        Visite nosso fórum " +"da comunidade ou inscreva-se em nosso boletim informativo do desenvolvedor para receber avisos de segurança e atualizações sobre os próximos " +"lançamentos, novos plug-ins e recursos planejados.

        " msgid "log.review.reviewDueDateSet" -msgstr "A data de entrega da rodada {$round} de avaliação da submissão {$submissionId} por {$reviewerName} foi definida para {$dueDate}." +msgstr "" +"A data de entrega da rodada {$round} de avaliação da submissão " +"{$submissionId} por {$reviewerName} foi definida para {$dueDate}." msgid "log.review.reviewDeclined" -msgstr "{$reviewerName} recusou realizar a rodada {$round} de avaliação da submissão {$submissionId}." +msgstr "" +"{$reviewerName} recusou realizar a rodada {$round} de avaliação da submissão " +"{$submissionId}." msgid "log.review.reviewAccepted" -msgstr "{$reviewerName} aceitou realizar a rodada {$round} de avaliação da submissão {$submissionId}." +msgstr "" +"{$reviewerName} aceitou realizar a rodada {$round} de avaliação da submissão " +"{$submissionId}." msgid "log.review.reviewUnconsidered" -msgstr "{$editorName} marcou realizar a rodada {$round} de avaliação da submissão {$submissionId} como não considerada." +msgstr "" +"{$editorName} marcou realizar a rodada {$round} de avaliação da submissão " +"{$submissionId} como não considerada." msgid "log.editor.decision" -msgstr "Decisão editorial ({$decision}) para a monografia {$submissionId} foi registrada por {$editorName}." +msgstr "" +"Decisão editorial ({$decision}) para a monografia {$submissionId} foi " +"registrada por {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"Uma recomendação do editor ({$decision}) para a monografia {$submissionId} " +"foi registrada por {$editorName}." msgid "log.editor.archived" msgstr "A submissão {$submissionId} foi arquivada." @@ -1038,7 +1358,9 @@ msgid "log.editor.editorAssigned" msgstr "{$editorName} foi designado como editor da submissão {$submissionId}." msgid "log.proofread.assign" -msgstr "{$assignerName} designou {$proofreaderName} como leitor de provas da submissão {$submissionId}." +msgstr "" +"{$assignerName} designou {$proofreaderName} como leitor de provas da " +"submissão {$submissionId}." msgid "log.proofread.complete" msgstr "{$proofreaderName} enviou {$submissionId} para agendamento." @@ -1139,6 +1461,9 @@ msgstr "Eventos da submissão" msgid "notification.type.userComment" msgstr "Um leitor comentou sobre \"{$title}\"." +msgid "notification.type.public" +msgstr "Notícias Públicas" + msgid "notification.type.editorAssignmentTask" msgstr "Um editor precisa ser designado à nova monografia submetida." @@ -1155,28 +1480,46 @@ msgid "notification.type.editorDecisionInternalReview" msgstr "Avaliação interna iniciada." msgid "notification.type.approveSubmission" -msgstr "Submissão atualmente aguardando aprovação na ferramenta de entrada de catálogo antes de ser publicada no catálogo." +msgstr "" +"Submissão atualmente aguardando aprovação na ferramenta de entrada de " +"catálogo antes de ser publicada no catálogo." msgid "notification.type.approveSubmissionTitle" msgstr "Aguardando aprovação." +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"A monografia não será listada no catálogo até que seja publicada. Para " +"adicionar este livro ao catálogo, clique na guia Publicação." + msgid "notification.type.configurePaymentMethod.title" msgstr "Nenhuma forma de pagamento configurada." msgid "notification.type.configurePaymentMethod" -msgstr "Uma forma de pagamento configurada é necessária para definir configurações de comércio eletrônico." +msgstr "" +"Uma forma de pagamento configurada é necessária para definir configurações " +"de comércio eletrônico." msgid "notification.type.visitCatalogTitle" msgstr "Administração do catálogo" +#, fuzzy +msgid "notification.type.visitCatalog" +msgstr "" +"A monografia foi aprovada. Visite o Catálogo para gerenciar seus detalhes de " +"catálogo, usando o link do catálogo logo acima." + msgid "user.authorization.invalidReviewAssignment" -msgstr "Acesso negado, pois não parece ser um avalidor autorizado a ver esta monografia." +msgstr "" +"Acesso negado, pois não parece ser um avalidor autorizado a ver esta " +"monografia." msgid "user.authorization.monographAuthor" msgstr "Acesso negado, pois não parece ser the autor desta monografia." msgid "user.authorization.monographReviewer" -msgstr "Acesso negado, pois não parece ser um avaliador designado a esta monografia." +msgstr "" +"Acesso negado, pois não parece ser um avaliador designado a esta monografia." msgid "user.authorization.monographFile" msgstr "Acesso negado ao arquivo específico da monografia." @@ -1216,6 +1559,10 @@ msgstr "Aprovado" msgid "payment.directSales.priceCurrency" msgstr "Preço ({$currency})" +msgid "payment.directSales.numericOnly" +msgstr "" +"Preços devem ser exclusivamente numéricos. Não inclua símbolos monetários." + msgid "payment.directSales.directSales" msgstr "Venda direta" @@ -1232,7 +1579,11 @@ msgid "payment.directSales.openAccess" msgstr "Acesso aberto" msgid "payment.directSales.price.description" -msgstr "Formatos de arquivo podem estar disponíveis para baixar do site da editora por meio de acesso aberto, sem custos para leitores ou por meio de venda direta (usando um processador de pagamento online, configurado na Distribuição). Indique a forma de acesso para este arquivo." +msgstr "" +"Formatos de arquivo podem estar disponíveis para baixar do site da editora " +"por meio de acesso aberto, sem custos para leitores ou por meio de venda " +"direta (usando um processador de pagamento online, configurado na " +"Distribuição). Indique a forma de acesso para este arquivo." msgid "payment.directSales.validPriceRequired" msgstr "É necessário um valor numérico válido para o preço." @@ -1247,261 +1598,130 @@ msgid "payment.directSales.monograph.name" msgstr "Adquirir monografia ou capítulo para baixar" msgid "payment.directSales.monograph.description" -msgstr "Esta transação é para a compra direta de um arquivo para baixar de uma única mongrafia ou capítulo." +msgstr "" +"Esta transação é para a compra direta de um arquivo para baixar de uma única " +"mongrafia ou capítulo." msgid "debug.notes.helpMappingLoad" -msgstr "Arquivo de mapeamento de ajuda XML {$filename} recarregado, na busca por {$id}." - -msgid "submission.pdf.download" -msgstr "Baixar PDF" - -msgid "monograph.publicationFormat" -msgstr "Formato" - -msgid "monograph.publicationFormatDetails" -msgstr "Detalhes sobre o formato disponível para publicação: {$format}" - -msgid "monograph.miscellaneousDetails" -msgstr "Detalhes sobre essa publicação" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Este formato estará disponíivel em um site remoto" - -msgid "catalog.noTitles" -msgstr "Sem publicações disponíveis." - -msgid "catalog.noTitlesNew" -msgstr "Sem novos títulos disponíveis neste momento." - -msgid "catalog.noTitlesSearch" msgstr "" -"Nenhuma publicação que atenda a busca por \"{$searchQuery}\" foi encontrada." - -msgid "catalog.foundTitleSearch" -msgstr "Uma publicação que atende a busca por \"{$searchQuery}\" foi encontrada." - -msgid "catalog.foundTitlesSearch" -msgstr "{$number} publicações foram encontradas que atendem a busca por \"{$searchQuery}\"." - -msgid "catalog.sortBy" -msgstr "Ordem das publicações" - -msgid "catalog.sortBy.seriesDescription" -msgstr "Escolha como ordenar as publicações desta série." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Escolha como ordenar as publicações desta categoria." - -msgid "catalog.sortBy.catalogDescription" -msgstr "Escolha como ordenar as publicações no catálogo." - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Posição da série (menor primeiro)" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Posição da série (maior primeiro)" - -msgid "catalog.viewableFile.title" -msgstr "Versão {$type} do arquivo {$title}" - -msgid "catalog.viewableFile.return" -msgstr "Retorne para ver os detalhes sobre {$monographTitle}" - -msgid "context.current" -msgstr "Editora Atual:" - -msgid "about.onlineSubmissions.register" -msgstr "Registrar" - -msgid "payment.directSales.numericOnly" -msgstr "Preços devem ser exclusivamente numéricos. Não inclua símbolos monetários." - -msgid "payment.directSales.readRemotely" -msgstr "Ir para {$format}" +"Arquivo de mapeamento de ajuda XML {$filename} recarregado, na busca por " +"{$id}." msgid "rt.metadata.pkp.dctype" msgstr "Livro" +msgid "submission.pdf.download" +msgstr "Baixar PDF" + msgid "user.profile.form.showOtherContexts" msgstr "Registrar em outras editoras" msgid "user.profile.form.hideOtherContexts" msgstr "Ocultar outras editoras" -msgid "spotlight" -msgstr "Em destaque" - msgid "submission.round" msgstr "Rodada {$round}" -msgid "catalog.coverImageTitle" -msgstr "Capa" - msgid "user.authorization.invalidPublishedSubmission" msgstr "Uma submissão inválida publicada foi especificada." -#, fuzzy -msgid "notification.type.visitCatalog" -msgstr "" -"A monografia foi aprovada. Visite o Catálogo para gerenciar seus detalhes de " -"catálogo, usando o link do catálogo logo acima." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "" -"A monografia não será listada no catálogo até que seja publicada. Para " -"adicionar este livro ao catálogo, clique na guia Publicação." - -msgid "notification.type.public" -msgstr "Notícias Públicas" - -msgid "log.editor.recommendation" -msgstr "" -"Uma recomendação do editor ({$decision}) para a monografia {$submissionId} " -"foi registrada por {$editorName}." - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "visualizar suas submissões pendentes" - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Faça uma nova submissão" - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} ou {$viewSubmissions}." - -msgid "about.aboutContext" -msgstr "Sobre a Editora" - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Se você pediu para ser um avaliador de qualquer editora, insira seus " -"assuntos de interesse." - -msgid "user.register.otherContextRoles" -msgstr "Solicite os seguintes papéis." - -msgid "user.register.contextsPrompt" -msgstr "Com quais editoras deste portal você gostaria de se registrar?" - -msgid "user.reviewerPrompt.optin" -msgstr "" -"Sim, gostaria de ser contatado com solicitações para avaliar submissões a " -"esta editora." - -msgid "user.reviewerPrompt.userGroup" -msgstr "Sim, solicite o {$userGroup} papel." - -msgid "user.reviewerPrompt" -msgstr "Você gostaria de revisar as submissões para esta editora?" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Link para seus Lançamentos." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Lançamentos" - -msgid "navigation.navigationMenus.category.description" -msgstr "Link para uma categoria." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Categoria" - -msgid "navigation.navigationMenus.series.description" -msgstr "Link para uma série." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Series" +msgid "catalog.coverImageTitle" +msgstr "Capa" -msgid "navigation.skip.spotlights" -msgstr "Ir para destaques" +msgid "grid.catalogEntry.chapters" +msgstr "Capítulos" -msgid "navigation.navigationMenus.catalog.description" -msgstr "Link para o seu catálogo." +msgid "search.results.orderBy.article" +msgstr "Título do Artigo" -msgid "navigation.catalog.allMonographs" -msgstr "Todas as Monografias" +msgid "search.results.orderBy.author" +msgstr "Autor" -msgid "common.publications" -msgstr "Monografias" +msgid "search.results.orderBy.date" +msgstr "Data de Publicação" -msgid "common.publication" -msgstr "Monografia" +msgid "search.results.orderBy.monograph" +msgstr "Título da Monografia" -msgid "submission.search" -msgstr "Busca de Livros" +msgid "search.results.orderBy.press" +msgstr "Título da Editora" -msgid "catalog.forthcoming" -msgstr "Próximo" +msgid "search.results.orderBy.popularityAll" +msgstr "Popularidade (todo o tempo)" -msgid "catalog.manage.isNotNewRelease" -msgstr "" -"Esta monografia não é um lançamento. Faça desta monografia um lançamento." +msgid "search.results.orderBy.popularityMonth" +msgstr "Popularidade (Último Mês)" -msgid "catalog.manage.isNewRelease" -msgstr "" -"Esta monografia é um lançamento. Faça desta monografia não ser um lançamento." +msgid "search.results.orderBy.relevance" +msgstr "Relevância" -msgid "catalog.manage.isNotFeatured" -msgstr "" -"Esta monografia não está em destaque. Faça a monografia está em destaque." +msgid "search.results.orderDir.asc" +msgstr "Ascendente" -msgid "catalog.manage.isFeatured" -msgstr "Esta monografia está em destaque. Faça esta monografia não aparecer." +msgid "search.results.orderDir.desc" +msgstr "Descendente" -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Busca por título ou autor" +#~ msgid "grid.series.urlWillBe" +#~ msgstr "" +#~ "O caminho da séria no navegador será {$sampleUrl}. O 'Caminho' é uma " +#~ "sequência de caracteres usado unicamente para identificar a série" -msgid "catalog.manage.nonOrderable" -msgstr "Esta monografia não pode ser solicitada até que seja apresentada." +#~ msgid "catalog.manage.homepage" +#~ msgstr "Página inicial" -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Lançamento em séries" +#~ msgid "catalog.manage.managementIntroduction" +#~ msgstr "" +#~ "Boas-vindas à administração do catálogo. Nesta página pode-se publicar " +#~ "uma nova entrada de catálogo; revisar e configurar a listagem de livros " +#~ "em destaque; revisar e configurar a listagem de lançamentos; e revisar e " +#~ "configurar seus livros por séries e categorias." -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Lançamento na categoria" +#~ msgid "catalog.manage.spotlightDescription" +#~ msgstr "" +#~ "Três destaques (ex.: Livro em destaque) aparecerão na página inicial da " +#~ "editora, com título, imagem e texto do destaque." -msgid "catalog.manage.feature.newRelease" -msgstr "Lançamento" +#~ msgid "user.register.completeForm" +#~ msgstr "Preencha o formulário para se cadastrar nesta editora." -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "A monografia está desmarcada como um novo lançamento." +#~ msgid "user.register.alreadyRegisteredOtherContext" +#~ msgstr "" +#~ " Clique aqui se você já está cadastrado " +#~ "em outra editora neste site." -msgid "catalog.manage.newReleaseSuccess" -msgstr "A monografia está marcada como um novo lançamento." +#~ msgid "user.register.notAlreadyRegisteredOtherContext" +#~ msgstr "" +#~ " Clique aqui se você não " +#~ "é cadastrado em outra editora neste site." -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Monografia não destacada." +#~ msgid "user.register.loginToRegister" +#~ msgstr "Informe seu login e senha atuais para se cadastrar nesta editora." -msgid "catalog.manage.featuredSuccess" -msgstr "Monografia é destaque." +#~ msgid "about.aboutThePress" +#~ msgstr "Sobre" -msgid "catalog.manage.seriesFeatured" -msgstr "Série em destaque" +#~ msgid "about.sponsors" +#~ msgstr "Patrocinadores" -msgid "catalog.manage.categoryFeatured" -msgstr "Categoria em destaque" +#~ msgid "about.contributors" +#~ msgstr "Apoio" -msgid "catalog.manage.featured" -msgstr "Destaque" +#~ msgid "payment.directSales.readRemotely" +#~ msgstr "Ir para {$format}" -msgid "submissionGroup.assignedSubEditors" -msgstr "Editores atribuídos" +#~ msgid "grid.action.addAnnouncement" +#~ msgstr "Adicionar Notícia" -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" -"

        Aprove os metadados para este formato. Os metadados podem ser verificados " -"no painel Editar para cada formato.

        " +msgid "section.section" +msgstr "Séries" -msgid "monograph.audience.success" -msgstr "Os detalhes da audiência foram atualizados." +msgid "search.cli.rebuildIndex.indexing" +msgstr "Indexação \"{$pressName}\"" -msgid "site.noPresses" -msgstr "Não há editoras disponíveis." +msgid "search.cli.rebuildIndex.indexingByPressNotSupported" +msgstr "Esta implementação de pesquisa não permite a reindexação por editora." -msgid "user.register.form.privacyConsentThisContext" +msgid "search.cli.rebuildIndex.unknownPress" msgstr "" -"Sim, concordo em ter meus dados coletados e armazenados de acordo com a Declaração de privacidade " -"desta editora." +"O caminho da editora \"{$pressPath}\" fornecido não pôde ser resolvido para " +"uma editora." diff --git a/locale/pt_BR/manager.po b/locale/pt_BR/manager.po index d8fd55b2aa2..f45434a1213 100644 --- a/locale/pt_BR/manager.po +++ b/locale/pt_BR/manager.po @@ -1,9 +1,11 @@ +# Diego José Macêdo , 2021, 2022, 2023, 2024. +# cicilia conceiçao de maria , 2021. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T12:00:53-07:00\n" -"PO-Revision-Date: 2021-02-09 01:19+0000\n" +"PO-Revision-Date: 2024-04-06 04:06+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -12,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.18.2\n" msgid "manager.language.confirmDefaultSettingsOverwrite" msgstr "" @@ -20,13 +22,17 @@ msgstr "" "para este idioma" msgid "manager.languages.noneAvailable" -msgstr "Nenhum idioma adicional disponível. Enter em contato com o administrador do site caso deseje usar idiomas adicionais nesta editora." +msgstr "" +"Nenhum idioma adicional disponível. Enter em contato com o administrador do " +"site caso deseje usar idiomas adicionais nesta editora." msgid "manager.languages.primaryLocaleInstructions" msgstr "Este será o idioma padrão para o site da editora." msgid "manager.series.form.mustAllowPermission" -msgstr "Certifique-se de marcar pelo menos um checkbox para cada tarefa do editor de série." +msgstr "" +"Certifique-se de marcar pelo menos um checkbox para cada tarefa do editor de " +"série." msgid "manager.series.form.reviewFormId" msgstr "Certifique-se de escolher um formulário de avaliação válido." @@ -74,7 +80,13 @@ msgid "manager.series.assigned" msgstr "Editores desta série" msgid "manager.series.seriesEditorInstructions" -msgstr "Inclua um editor de série de um dos disponíveis. Uma vez incluído, defina se o editor de série acompanhará o processo de AVALIAÇÂO (pelos pares) e/ou a EDIÇÃO (edição de texto, layout e leitura de provas) das submissões a esta série. Editores de série são criados acessando a página Editores de série, sob Papéis na administração da editora." +msgstr "" +"Inclua um editor de série de um dos disponíveis. Uma vez incluído, defina se " +"o editor de série acompanhará o processo de AVALIAÇÂO (pelos pares) e/ou a " +"EDIÇÃO (edição de texto, layout e leitura de provas) das submissões a esta " +"série. Editores de série são criados acessando a página Editores de série, sob Papéis na administração " +"da editora." msgid "manager.series.hideAbout" msgstr "Omitir esta série na página Sobre desta editora." @@ -100,6 +112,17 @@ msgstr "Título da séries" msgid "manager.series.restricted" msgstr "Não permita que os autores enviem diretamente para esta série." +msgid "manager.payment.generalOptions" +msgstr "Opções gerais" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Os pagamentos serão ativados para esta editora. Observe que os usuários " +"deverão fazer login para efetuar pagamentos." + +msgid "manager.payment.success" +msgstr "As configurações de pagamento foram atualizadas." + msgid "manager.settings" msgstr "Configurações" @@ -109,11 +132,15 @@ msgstr "Configurações da editora" msgid "manager.settings.press" msgstr "Editora" +msgid "manager.settings.publisher.identity" +msgstr "Identidade do Editor" + msgid "manager.settings.publisher.identity.description" msgstr "" "Estes campos não são obrigatórios para uso do OMP, porém são obrigatórios " -"para criar " -"metadados ONIX válidos. Inclua-os caso deseje usar a funcionalidade ONIX." +"para criar metadados ONIX válidos. Inclua-os caso deseje usar a funcionalidade " +"ONIX." msgid "manager.settings.publisher" msgstr "Nome da editora" @@ -124,8 +151,16 @@ msgstr "Localização geográfica" msgid "manager.settings.publisherCode" msgstr "Código da editora" +msgid "manager.settings.publisherCodeType" +msgstr "Tipo de código da editora" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Este não é um tipo de código de editor válido." + msgid "manager.settings.distributionDescription" -msgstr "Todas as configurações específicas ao processo de distribuição (notificação, indexação, arquivamento, pagamento, ferramentas de leitura)." +msgstr "" +"Todas as configurações específicas ao processo de distribuição (notificação, " +"indexação, arquivamento, pagamento, ferramentas de leitura)." msgid "manager.statistics.reports.defaultReport.monographDownloads" msgstr "Download arquivo da Monografia" @@ -142,17 +177,19 @@ msgstr "Série de visitas à página principal" msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" msgstr "Visualizações da página principal da editora" -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Restringir resultados por contexto (series e/ou monografia)." - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "Restringir resultados por tipo de objeto (editora, séries, monografia, tipos de arquivos) e / ou por uma ou mais identificador(es) de objeto." - msgid "manager.tools" msgstr "Ferramentas" msgid "manager.tools.importExport" -msgstr "Todas as ferramentas específicas para importar e exportar dados (editoras, mongrafias, usuários)" +msgstr "" +"Todas as ferramentas específicas para importar e exportar dados (editoras, " +"mongrafias, usuários)" + +msgid "manager.tools.statistics" +msgstr "" +"Ferramentas para gerar relatórios relacionados a estatísticas de uso " +"(exibição de página de índice de catálogo, exibição de página abstrata de " +"monografia, downloads de arquivo de monografia)" msgid "manager.users.availableRoles" msgstr "Papéis disponíveis" @@ -163,6 +200,9 @@ msgstr "Papéis atuais" msgid "manager.users.selectRole" msgstr "Escolher papel" +msgid "manager.people.allEnrolledUsers" +msgstr "Usuários cadastrados nesta Editora" + msgid "manager.people.allPresses" msgstr "Todas as editoras" @@ -173,25 +213,33 @@ msgid "manager.people.allUsers" msgstr "Todos os usuários cadastrados" msgid "manager.people.confirmRemove" -msgstr "Remover este usuário desta editora? A ação removerá todos os papéis do usuário nesta editora." +msgstr "" +"Remover este usuário desta editora? A ação removerá todos os papéis do " +"usuário nesta editora." msgid "manager.people.enrollExistingUser" msgstr "Cadastrar usuário existente" -msgid "manager.people.existingUserRequired" -msgstr "Informar um usuári existente." - msgid "manager.people.enrollSyncPress" msgstr "Na editora" msgid "manager.people.mergeUsers.from.description" -msgstr "Escolha o cadastro a ser mesclado em outro (ex.: quando alguém possui dois cadastros distintos). O cadastro escolhido primeiro será excluído e suas submissões, tarefas, etc, serão atribuídos ao cadastro escolhido depois." +msgstr "" +"Escolha o cadastro a ser mesclado em outro (ex.: quando alguém possui dois " +"cadastros distintos). O cadastro escolhido primeiro será excluído e suas " +"submissões, tarefas, etc, serão atribuídos ao cadastro escolhido depois." msgid "manager.people.mergeUsers.into.description" -msgstr "Escolha o cadastro no qual atribuir as submissões, tarefas, etc, do cadastro anterior." +msgstr "" +"Escolha o cadastro no qual atribuir as submissões, tarefas, etc, do cadastro " +"anterior." msgid "manager.people.syncUserDescription" -msgstr "Sincronização de cadastros atribuirá todos os usuários no papel específico em uma dada editora no mesmo papel nesta editora. A função permite compartilhar conjuntos de usuários (ex.: avaliadores), sincronizando seus cadastros entre editoras." +msgstr "" +"Sincronização de cadastros atribuirá todos os usuários no papel específico " +"em uma dada editora no mesmo papel nesta editora. A função permite " +"compartilhar conjuntos de usuários (ex.: avaliadores), sincronizando seus " +"cadastros entre editoras." msgid "manager.people.confirmDisable" msgstr "" @@ -201,7 +249,8 @@ msgstr "" msgid "manager.people.noAdministrativeRights" msgstr "" -"Sem direitos administrativos sobre este cadastro. Isto pode ser causado pelos seguinte motivos:\n" +"Sem direitos administrativos sobre este cadastro. Isto pode ser causado " +"pelos seguinte motivos:\n" "\t\t
          \n" "\t\t\t
        • O usuário é o administrador do site
        • \n" "\t\t\t
        • O usuário está ativo em editoras fora de sua administração
        • \n" @@ -224,6 +273,9 @@ msgstr "Ferramentas de leitura" msgid "manager.system.payments" msgstr "Pagamentos" +msgid "user.authorization.pluginLevel" +msgstr "Você não possui permissões adequadas para gerenciar este plugin." + msgid "manager.pressManagement" msgstr "Administração da editora" @@ -234,73 +286,57 @@ msgid "manager.setup.aboutItemContent" msgstr "Conteúdo" msgid "manager.setup.addAboutItem" -msgstr "Incluir item no Sobre" +msgstr "Adicione o elemento" msgid "manager.setup.addChecklistItem" msgstr "Incluir item de verificação" -msgid "manager.setup.addContributor" -msgstr "Incluir contribuidor" - msgid "manager.setup.addItem" msgstr "Incluir item" msgid "manager.setup.addItemtoAboutPress" -msgstr "Incluir item para exibição na página \"Sobre a editora\"" - -msgid "manager.setup.additionalContent" -msgstr "Conteúdo adicional" - -msgid "manager.setup.additionalContentDescription" -msgstr "Apresentar o conteúdo a seguir, usando texto/HTML, na página inicial abaixo da capa, caso exista." +msgstr "Previsão de impressão" msgid "manager.setup.addNavItem" msgstr "Incluir item" msgid "manager.setup.addSponsor" -msgstr "Incliur patrocinador" - -msgid "manager.setup.alternateHeader" -msgstr "Cabeçalho alternativo" - -msgid "manager.setup.alternateHeaderDescription" -msgstr "Em vez de um título e logotipo, uma versão HTML do cabeçalho pode ser inserida no campo de texto a seguir. Deixe em branco caso não seja usado." +msgstr "Adicionar Instituição Patrocinadora" msgid "manager.setup.announcements" msgstr "Notícias" +msgid "manager.setup.announcements.success" +msgstr "As configurações de notícias foram atualizadas." + msgid "manager.setup.announcementsDescription" -msgstr "Notícias podem ser publicadas para informa sobre eventos e novidades da editora aos leitores. Elas aparecerão na página de Notícias." +msgstr "" +"Notícias podem ser publicadas para informa sobre eventos e novidades da " +"editora aos leitores. Elas aparecerão na página de Notícias." msgid "manager.setup.announcementsIntroduction" msgstr "Informação adicional" msgid "manager.setup.announcementsIntroduction.description" -msgstr "Digite qualquer texto adicional que deva ser exibido aos leitores na página de notícias." +msgstr "" +"Digite qualquer texto adicional que deva ser exibido aos leitores na página " +"de notícias." msgid "manager.setup.appearInAboutPress" msgstr "(Apresentar em Sobre a editora) " -msgid "manager.setup.authorCopyrightNotice" -msgstr "Aviso de direito autoral" - -msgid "manager.setup.authorCopyrightNoticeAgree" -msgstr "Exigir que autores concordem e aceitem o aviso de direito autoral como parte do processo de submissão." - -msgid "manager.setup.authorCopyrightNotice.description" -msgstr "O aviso de direito autoral a seguir aparecerá na página Sobre a editora, e nos metadados de cada item publicado. Embora seja de respponsabilidade da editora definir a natureza de seu acordo de direito autoral com os autores, o Public Knowledge Project recomenda o uso de uma licença Creative Commons. Para isso, uma proposta de aviso de direito autoral é apresentada, que pode ser copiada e colada no campo para que as editoras possam (a) oferecer acesso aberto, (b) oferecer acesso aberto adiado, ou (c) não oferecer acesso aberto." - -msgid "manager.setup.authorGuidelines.description" -msgstr "Defina os padrões bibliográficos e de formatação que devem ser adotados pelos autores aos submeter trabalhos a esta editora (ex.: Manual de Publicação da Associação Americana de Psicologia, 5 edição, 2001). Geralmente é útil apresentar exemplos de formatos de citação a serem usados nas submissões, comuns a editoras e livros." - -msgid "manager.setup.contributor" -msgstr "Contribuidor" +msgid "manager.setup.contextAbout" +msgstr "Sobre a Editora" -msgid "manager.setup.contributors" -msgstr "Apoio" +msgid "manager.setup.contextAbout.description" +msgstr "" +"Inclua qualquer informação sobre sua editora que possa interessar aos " +"leitores, autores ou avaliadores. Isso pode incluir sua política de acesso " +"aberto, o foco e o escopo da editora, a divulgação de patrocínios e o " +"histórico." -msgid "manager.setup.contributors.description" -msgstr "Agências ou organizações que oferecem apoio financeiro ou outro tipo de recurso para a editora, aparecerão em Sobre a editora e podem ser acompanhadas por uma nota de agradecimento." +msgid "manager.setup.contextSummary" +msgstr "Sumário" msgid "manager.setup.copyediting" msgstr "Editores de texto" @@ -309,7 +345,11 @@ msgid "manager.setup.copyeditInstructions" msgstr "Instruções" msgid "manager.setup.copyeditInstructionsDescription" -msgstr "As instruções de edição de texto estarão disponíveis para editores de texto, autores e editores de seção, durante o estágio de edição. Segu um modelo de instruções em HTML, que pode ser modificado ou substituído pelo gerente da editora a qualquer momento (em HTML ou texto puro)." +msgstr "" +"As instruções de edição de texto estarão disponíveis para editores de texto, " +"autores e editores de seção, durante o estágio de edição. Segu um modelo de " +"instruções em HTML, que pode ser modificado ou substituído pelo gerente da " +"editora a qualquer momento (em HTML ou texto puro)." msgid "manager.setup.copyrightNotice" msgstr "Aviso de direito autoral" @@ -317,6 +357,17 @@ msgstr "Aviso de direito autoral" msgid "manager.setup.coverage" msgstr "Cobertura" +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Altura máxima da imagem de capa" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Largura máxima da imagem de capa" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"As imagens serão reduzidas quando maiores que esse tamanho, mas nunca serão " +"ampliadas ou esticadas para se ajustar a essas dimensões." + msgid "manager.setup.customizingTheLook" msgstr "Passo 5. Personalizano o visual & a experiência" @@ -324,7 +375,9 @@ msgid "manager.setup.customTags" msgstr "Marcações personalizadas" msgid "manager.setup.customTagsDescription" -msgstr "Marcações de cabeçalho de páginas HTML personalizdas, a serem incluídas em todas as páginas (ex.: marcações META)." +msgstr "" +"Marcações de cabeçalho de páginas HTML personalizdas, a serem incluídas em " +"todas as páginas (ex.: marcações META)." msgid "manager.setup.details" msgstr "Detalhes" @@ -333,16 +386,21 @@ msgid "manager.setup.details.description" msgstr "Nome da editora, contatos, patrocinadores e mecanismos de busca." msgid "manager.setup.disableUserRegistration" -msgstr "O gerente da editora cadastra todos os usuários, sendo que editores e editores de seção podem cadastrar apenas avaliadores." +msgstr "" +"O gerente da editora cadastra todos os usuários, sendo que editores e " +"editores de seção podem cadastrar apenas avaliadores." msgid "manager.setup.discipline" msgstr "Grande área, área e subárea do conhecimento" msgid "manager.setup.disciplineDescription" -msgstr "Útil para editoras multidisciplnares ou autores que submetem trabalhos multidisciplinares." +msgstr "" +"Útil para editoras multidisciplnares ou autores que submetem trabalhos " +"multidisciplinares." msgid "manager.setup.disciplineExamples" -msgstr "(Ex.: História; Educação; Sociologia; Psicologia; Estudos Culturais; Direito)" +msgstr "" +"(Ex.: História; Educação; Sociologia; Psicologia; Estudos Culturais; Direito)" msgid "manager.setup.disciplineProvideExamples" msgstr "" @@ -354,11 +412,45 @@ msgstr "Incluir o sumário da monografia atual, caso esteja disponível." msgid "manager.setup.displayOnHomepage" msgstr "Cnteúdo da página inicial" -msgid "manager.setup.doiPrefix" -msgstr "Prefixo DOI" +msgid "manager.setup.displayFeaturedBooks" +msgstr "Mostrar publicações aprimoradas na página inicial" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Livros em destaque" + +msgid "manager.setup.displayInSpotlight" +msgstr "Mostrar publicações em destaque na página inicial" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Destaque" + +msgid "manager.setup.displayNewReleases" +msgstr "Mostrar novos lançamentos na página inicial" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Novos lançamentos" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Permitir que identificadores de objetos digitais (DOIs) sejam atribuídos a " +"trabalhos publicados por esta editora." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Selecione os tipos de trabalhos publicados por esta editora aos quais devem " +"ser atribuídos DOIs. A maioria das editoras atribui DOIs a monografias/" +"capítulos, mas você pode querer atribuir DOIs a todos os itens publicados." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Use padrões.
          %p.%m para monografias
          %p.%m.c%c para capítulos
          " +"%p.%m.%f para formatos de publicação
          %p.%m.%f.%s para arquivos." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "Ao atingir a fase de Edição de Texto" -msgid "manager.setup.doiPrefixDescription" -msgstr "O prefixo DOI (Digital Object Identifier) é designado pelo CrossRef, no formato 10.xxxx (ex.: 10.1234)." +msgid "manager.dois.formatIdentifier.file" +msgstr "Formato / {$format}" msgid "manager.setup.editorDecision" msgstr "Decisão editorial" @@ -367,7 +459,16 @@ msgid "manager.setup.emailBounceAddress" msgstr "Endereço de retorno" msgid "manager.setup.emailBounceAddress.description" -msgstr "Qualquer mensagem não entregue resultará em uma mensagem de erro que será enderçada a este destinatário." +msgstr "" +"Qualquer mensagem não entregue resultará em uma mensagem de erro que será " +"enderçada a este destinatário." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Para enviar e-mails não entregues a um endereço de devolução, o " +"administrador do site deve ativar a opção allow_envelope_sender " +"no arquivo de configuração do site. A configuração do servidor pode ser " +"necessária, conforme indicado na documentação do OMP." msgid "manager.setup.emails" msgstr "Identificação das mensagens" @@ -375,26 +476,51 @@ msgstr "Identificação das mensagens" msgid "manager.setup.emailSignature" msgstr "Assinatura" -msgid "manager.setup.emailSignatureDescription" -msgstr "Os modelos de mensagens são enviados pelo sistema em nome da editora, apresentando a seguinte assinatura no final. O corpo das mensagens está disponível para personalização mais adiante." +msgid "manager.setup.emailSignature.description" +msgstr "" +"Os e-mails enviados automaticamente em nome da editora terão a seguinte " +"assinatura adicionada." msgid "manager.setup.enableAnnouncements.enable" msgstr "Permitir a Gerentes da editora incluir notícias" +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Notícias podem ser publicados para informar os leitores sobre eventos e " +"novidades. As notícias publicadas aparecerão na Página de Notícias." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Exibir na página inicial" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Quantas notícias serão exibidos na página inicial. Deixe em branco para não " +"exibir nenhum." + msgid "manager.setup.enablePressInstructions" msgstr "Apresentar esta editora publicamente no site" msgid "manager.setup.enablePublicMonographId" -msgstr "Identificadores personalizados adotados para identificação dos itens publicados." +msgstr "" +"Identificadores personalizados adotados para identificação dos itens " +"publicados." msgid "manager.setup.enablePublicGalleyId" -msgstr "Identificadores personalizados serão adotados para identificação de composições finais (ex.: HTML arquivos PDF) de itens publicados." +msgstr "" +"Identificadores personalizados serão adotados para identificação de " +"composições finais (ex.: HTML arquivos PDF) de itens publicados." + +msgid "manager.setup.enableUserRegistration" +msgstr "Visitantes podem criar contas de usuário na editora." msgid "manager.setup.focusAndScope" msgstr "Foco e escopo" msgid "manager.setup.focusAndScope.description" -msgstr "Informe a seguir um texto, que aparecerá na página Sobre a editora, que apresenta a autores, leitores e bibliotecários as características das monografias e outros itens publicados pela editora." +msgstr "" +"Informe a seguir um texto, que aparecerá na página Sobre a editora, que " +"apresenta a autores, leitores e bibliotecários as características das " +"monografias e outros itens publicados pela editora." msgid "manager.setup.focusScope" msgstr "Foco e escopo" @@ -406,7 +532,16 @@ msgid "manager.setup.forAuthorsToIndexTheirWork" msgstr "Para a indexação dos trabalhos pelos autores" msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "O OMP adota o protocolo de coleta de metadados do Open Archives Initiative, que se tornou um padrão emergente para proporcionar acesso a recursos eletrônicos de pesquisa bem indexados, em uma escala global. Os autores usarão um modelo semelhante para informar metadados sobre suas submissões. O gerente da editora deve escolher as categorias de indexação e apresentar aos autores exemplos relevantes para auxiliá-los na indexação do trabalho, separando os termos com ponto-e-vírgula (ex.: termo1; termo2). Os campos apresentarão os exemplos usando \"Ex.:\" ou \"Oor examplo,\"." +msgstr "" +"O OMP adota o protocolo de coleta de metadados do Open Archives Initiative, que se " +"tornou um padrão emergente para proporcionar acesso a recursos eletrônicos " +"de pesquisa bem indexados, em uma escala global. Os autores usarão um modelo " +"semelhante para informar metadados sobre suas submissões. O gerente da " +"editora deve escolher as categorias de indexação e apresentar aos autores " +"exemplos relevantes para auxiliá-los na indexação do trabalho, separando os " +"termos com ponto-e-vírgula (ex.: termo1; termo2). Os campos apresentarão os " +"exemplos usando \"Ex.:\" ou \"Oor examplo,\"." msgid "manager.setup.form.contactEmailRequired" msgstr "É necessário informar o e-mail do contato principal email." @@ -435,14 +570,16 @@ msgstr "Diretrizes" msgid "manager.setup.preparingWorkflow" msgstr "Passo 3. Preparando o fluxo de trabalho" -msgid "manager.setup.homepageImage" -msgstr "Capa" +msgid "manager.setup.identity" +msgstr "Identidade da editora" -msgid "manager.setup.homepageImageDescription" -msgstr "Incluir imagem de capa ou grafismo no meio da página inicial. Caso use o layout e css padrão, a largura máxima deve ser de 750px quando usar ma barra lateral e 540px para quando usar duas barras. Caso use um layout e css personalizado, esses valores podem variar." +msgid "manager.setup.information" +msgstr "Informação" msgid "manager.setup.information.description" -msgstr "Breve descrição da editora para bibliotecários e potenciais autores e leitores, disponível na seção \"Informação\" da barra lateral." +msgstr "" +"Breve descrição da editora para bibliotecários e potenciais autores e " +"leitores, disponível na seção \"Informação\" da barra lateral." msgid "manager.setup.information.forAuthors" msgstr "Para autores" @@ -453,9 +590,29 @@ msgstr "Para bibliotecários" msgid "manager.setup.information.forReaders" msgstr "Para leitores" +msgid "manager.setup.information.success" +msgstr "As informações desta editora foram atualizadas." + msgid "manager.setup.institution" msgstr "Instituição" +msgid "manager.setup.itemsPerPage" +msgstr "Items por página" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Limite o número de itens (por exemplo, submissões, usuários ou atribuições " +"de edição) a serem exibidos em uma lista antes de mostrar os itens " +"subsequentes em outra página." + +msgid "manager.setup.keyInfo" +msgstr "Informação chave" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Forneça uma breve descrição da sua editora e identifique editores, diretores " +"executivos e outros membros da sua equipe editorial." + msgid "manager.setup.labelName" msgstr "Nome do rótulo" @@ -478,7 +635,12 @@ msgid "manager.setup.layoutTemplates" msgstr "Modelos de layout" msgid "manager.setup.layoutTemplatesDescription" -msgstr "Modelos de layout podem ser apresentados na seção Layout para cada padrão de formato publicado (ex.: monografia, revisão de livro, etc.) usando qualquer formato de arquivo (ex.: pdf, doc, etc.) com anotações que incluem especificação de fonte, tamanho, margens, como guias para os editores de layout leitores de provas." +msgstr "" +"Modelos de layout podem ser apresentados na seção Layout para cada padrão de " +"formato publicado (ex.: monografia, revisão de livro, etc.) usando qualquer " +"formato de arquivo (ex.: pdf, doc, etc.) com anotações que incluem " +"especificação de fonte, tamanho, margens, como guias para os editores de " +"layout leitores de provas." msgid "manager.setup.layoutTemplates.file" msgstr "Modelo" @@ -489,20 +651,24 @@ msgstr "Título" msgid "manager.setup.lists" msgstr "Listas" +msgid "manager.setup.lists.success" +msgstr "As configurações de lista foram atualizadas." + msgid "manager.setup.look" msgstr "Visual & Experiência" msgid "manager.setup.look.description" -msgstr "Cabeçalho da página inicial, conteúdo cabeçalho da editora, rodapé, barra de navegação e folha de estilos." - -msgid "manager.setup.mailingAddress.description" -msgstr "O endereço físico e postal da editora." +msgstr "" +"Cabeçalho da página inicial, conteúdo cabeçalho da editora, rodapé, barra de " +"navegação e folha de estilos." msgid "manager.setup.settings" msgstr "Configurações" msgid "manager.setup.management.description" -msgstr "Acesso e segurança, agendamento, notícias, edição de texto, layout e leitura de provas." +msgstr "" +"Acesso e segurança, agendamento, notícias, edição de texto, layout e leitura " +"de provas." msgid "manager.setup.managementOfBasicEditorialSteps" msgstr "Administração dos passos editoriais básicos" @@ -513,6 +679,9 @@ msgstr "Configuração da administração e publicação" msgid "manager.setup.managingThePress" msgstr "Passo 4. Administrando as configurações" +msgid "manager.setup.masthead.success" +msgstr "Os detalhes do cabeçalho desta editora foram atualizados." + msgid "manager.setup.noImageFileUploaded" msgstr "Nenhuma imagem enviada." @@ -522,65 +691,75 @@ msgstr "Nenhuma folha de estilos enviada." msgid "manager.setup.note" msgstr "Nota" -msgid "manager.setup.notifications" -msgstr "Notificação de submissão" - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "Enviar uma cópia ao contato principal, identificado no Passo 1." - -msgid "manager.setup.notifications.copySpecifiedAddress" -msgstr "Enviar uma cópia a este endereço:" - -msgid "manager.setup.notifications.description" -msgstr "Ao concluir o processo de submissão, autores recebem automaticamente uma mensagem de agradecimento (disponível para ver e editar em Modelos de mensagens). Além disso, uma cópia da mensagem pode ser enviada conform a seguir:" - msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "Ao usar a mensagem Notificar autor, incluir o endereço de todos os coautores para submissões com múltipla autoria, em vez de enviar apenas para quem submeteu." +msgstr "" +"Ao usar a mensagem Notificar autor, incluir o endereço de todos os coautores " +"para submissões com múltipla autoria, em vez de enviar apenas para quem " +"submeteu." msgid "manager.setup.noUseCopyeditors" -msgstr "A edição de texto será tarefa do editor ou editor de seção designado à submissão." +msgstr "" +"A edição de texto será tarefa do editor ou editor de seção designado à " +"submissão." msgid "manager.setup.noUseLayoutEditors" -msgstr "Um editor ou editor de seção designado à submissão preparará os arquivos HTML, PDF, etc." +msgstr "" +"Um editor ou editor de seção designado à submissão preparará os arquivos " +"HTML, PDF, etc." msgid "manager.setup.noUseProofreaders" -msgstr "Um editor ou editor de seção designado à submissão verificará as composições finais." +msgstr "" +"Um editor ou editor de seção designado à submissão verificará as composições " +"finais." msgid "manager.setup.numPageLinks" msgstr "Links de página" +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Limite o número de links a serem exibidos nas páginas subsequentes em uma " +"lista." + msgid "manager.setup.onlineAccessManagement" msgstr "Acesso ao conteúdo da editora" msgid "manager.setup.onlineIssn" msgstr "ISSN eletrônico" -msgid "manager.setup.openAccess" -msgstr "A editora oferecerá acesso aberto ao seu conteúdo." - -msgid "manager.setup.openAccessPolicy" -msgstr "Política de acesso aberto" - -msgid "manager.setup.openAccessPolicy.description" -msgstr "Caso a editora ofereça aos leitores acesso gratuito e imediato ao conteúdo publicado, informe a seguir uma política de acesso aberto, que aparecerá na página Sobre a editora, na seção Políticas." - -msgid "manager.setup.peerReview.description" -msgstr "Defina a política de avaliação pelos pares para os leitores e autores, incluindo o número de avaliadores normalmente usado na avaliação de uma submissão, os critérios julgados pelos avalidores, tempo padrão para realização de uma avaliação, bem como os princípios de recrutamento de avaliadores. O conteúdo aparecerá na página Sobre a editora." - msgid "manager.setup.policies" msgstr "Políticas" msgid "manager.setup.policies.description" -msgstr "Foco, avaliação pelos pares seções, privacidade, segurança e itens adicionais sobre a editora." +msgstr "" +"Foco, avaliação pelos pares seções, privacidade, segurança e itens " +"adicionais sobre a editora." + +msgid "manager.setup.privacyStatement.success" +msgstr "A declaração de privacidade foi atualizada." msgid "manager.setup.appearanceDescription" -msgstr "Vários componentes da aparência da Editora podem ser configurados a partir desta página, incluindo elementos do cabeçalho e rodapé, o tema, e como listas de informações são apresentadas aos usuários." +msgstr "" +"Vários componentes da aparência da Editora podem ser configurados a partir " +"desta página, incluindo elementos do cabeçalho e rodapé, o tema, e como " +"listas de informações são apresentadas aos usuários." msgid "manager.setup.pressDescription" msgstr "Apresentação" msgid "manager.setup.pressDescription.description" -msgstr "A apresentação da editora deve ser incluída aqui. O texto aparecerá na página inicial da editora." +msgstr "" +"A apresentação da editora deve ser incluída aqui. O texto aparecerá na " +"página inicial da editora." + +msgid "manager.setup.aboutPress" +msgstr "Sobre a Editora" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Inclua qualquer informação sobre sua editora que possa interessar aos " +"leitores, autores ou avaliadores. Isso pode incluir sua política de acesso " +"aberto, o foco e o escopo da editora, aviso de direitos autorais, divulgação " +"de patrocínios, histórico da editora e uma declaração de privacidade." msgid "manager.setup.pressArchiving" msgstr "Arquivamento" @@ -589,31 +768,36 @@ msgid "manager.setup.homepageContent" msgstr "Conteúdo da Página Inicial da Editora" msgid "manager.setup.homepageContentDescription" -msgstr "A homepage da editora consiste, por padrão, em links de navegação. Conteúdos adicionais à página inicial podem ser anexados usando uma ou todas das seguintes opções, que serão exibidos na ordem mostrada." +msgstr "" +"A homepage da editora consiste, por padrão, em links de navegação. Conteúdos " +"adicionais à página inicial podem ser anexados usando uma ou todas das " +"seguintes opções, que serão exibidos na ordem mostrada." msgid "manager.setup.pressHomepageContent" msgstr "Conteúdo da página inicial da editora" msgid "manager.setup.pressHomepageContentDescription" -msgstr "A página inicial da editora consiste, por padrão, de links de navegação. Conteúdo adicional pode ser incluído usando uma ou mais das opções a seguir, que aparecerão na ordem exibida." +msgstr "" +"A página inicial da editora consiste, por padrão, de links de navegação. " +"Conteúdo adicional pode ser incluído usando uma ou mais das opções a seguir, " +"que aparecerão na ordem exibida." msgid "manager.setup.contextInitials" msgstr "Sigla" +msgid "manager.setup.selectCountry" +msgstr "" +"Selecione o país onde esta editora está localizada ou o país do endereço de " +"correspondência da editora." + msgid "manager.setup.layout" msgstr "Leiaute da Editora" -msgid "manager.setup.pageFooter" -msgstr "Rodapé" - -msgid "manager.setup.pageFooterDescription" -msgstr "Este é o rodapé da editora. Para alterar ou atualizar o rodapé, cole código HTML no campo a seguir. Exemplos podem incluir outra barra de navegação, um contador, etc. O rodapé aparecerá em todas as páginas." - msgid "manager.setup.pageHeader" msgstr "Cabeçalho interno" msgid "manager.setup.pageHeaderDescription" -msgstr "Versões gráficas do título e logoti (arquivos permitidos são .gif, .jpg, ou .png), possivelmente em tamanhos menores que os usados na página inicial, podem ser enviados aqui e serão apresentados nas páginas internas do site, substituindo a versão em texto que aparece." +msgstr "Descrição do Cabeçalho da Página" msgid "manager.setup.pressPolicies" msgstr "Passo 2. Políticas" @@ -630,32 +814,30 @@ msgstr "Formato de folha de estilo inválido. O formato é .css." msgid "manager.setup.pressTheme" msgstr "Tema" -msgid "manager.setup.contextTitle" -msgstr "Nome da Editora" +msgid "manager.setup.pressThumbnail" +msgstr "Thumbnail" -msgid "manager.setup.principalContact" -msgstr "Contato principal" +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Um pequeno logotipo ou representação da editora que pode ser usado em listas " +"de editoras." -msgid "manager.setup.principalContactDescription" -msgstr "Esta posição, que pode ser considerada como o editor científico, editor-chefe, ou algum outro cargo administrativo, será apresentado na página inicial na seção Contato, junto com o contato de suporte técnico." +msgid "manager.setup.contextTitle" +msgstr "Nome da Editora" msgid "manager.setup.printIssn" msgstr "ISSN impresso" -msgid "manager.setup.privacyStatement" -msgstr "Política de privacidade" - -msgid "manager.setup.privacyStatement2" -msgstr "Politica de privacidade" - -msgid "manager.setup.privacyStatement.description" -msgstr "Esta política aparecerá na página Sobre a editora, bem como nas páginas de submissão do autor, notificação e de cadastros. É apresentada a seguir uma proposta de política, que pode ser editada a qualquer momento." - msgid "manager.setup.proofingInstructions" msgstr "Instruções para leitura de provas" msgid "manager.setup.proofingInstructionsDescription" -msgstr "As instruções para leitura de provas aparecerão para leitores de provas, autores, editores de layout e editores de seção no estão de edição da submissão. É apresentada a seguir um modelo de instruções em HTML, que pode ser personalizado ou substiuído pelo gerente da editora a qualquer momento (em HTML ou texto puro)." +msgstr "" +"As instruções para leitura de provas aparecerão para leitores de provas, " +"autores, editores de layout e editores de seção no estão de edição da " +"submissão. É apresentada a seguir um modelo de instruções em HTML, que pode " +"ser personalizado ou substiuído pelo gerente da editora a qualquer momento " +"(em HTML ou texto puro)." msgid "manager.setup.proofreading" msgstr "Leitores de provas" @@ -664,13 +846,20 @@ msgid "manager.setup.provideRefLinkInstructions" msgstr "Ofereça instruções aos editores de layout." msgid "manager.setup.publicationScheduleDescription" -msgstr "Publicações da editora podem ser coletivas, como parte de uma monografia com seu sumário próprio. Os items também podem ser publicados individualmente, assim que estiverem prontos, incluíndo-os ao sumário \"corrente\" do volume. Ofereça aos leitores, na página Sobre a editora, uma declaração sobre o sistema adotado pela editora e a frquência de publicação esperada." +msgstr "" +"Publicações da editora podem ser coletivas, como parte de uma monografia com " +"seu sumário próprio. Os items também podem ser publicados individualmente, " +"assim que estiverem prontos, incluíndo-os ao sumário \"corrente\" do volume. " +"Ofereça aos leitores, na página Sobre a editora, uma declaração sobre o " +"sistema adotado pela editora e a frquência de publicação esperada." msgid "manager.setup.publisher" msgstr "Publicadora" msgid "manager.setup.publisherDescription" -msgstr "O nome da organização que publica o conteúdo da editora aparecerá na página Sobre a editora." +msgstr "" +"O nome da organização que publica o conteúdo da editora aparecerá na página " +"Sobre a editora." msgid "manager.setup.referenceLinking" msgstr "Conectando referências" @@ -679,91 +868,126 @@ msgid "manager.setup.refLinkInstructions.description" msgstr "Instruções de layout para conectar referências" msgid "manager.setup.restrictMonographAccess" -msgstr "Usuários devem se cadastrar e acessar o sistema para ver o conteúdo de acesso aberto." +msgstr "" +"Usuários devem se cadastrar e acessar o sistema para ver o conteúdo de " +"acesso aberto." msgid "manager.setup.restrictSiteAccess" -msgstr "Usuários devem se cadastrar e acessar o sistema para ver o site da editora." +msgstr "" +"Usuários devem se cadastrar e acessar o sistema para ver o site da editora." msgid "manager.setup.reviewGuidelines" msgstr "Diretrizes de avaliação" msgid "manager.setup.reviewGuidelinesDescription" -msgstr "As diretrizes de avaliação definirão os critérios a serem julgados em uma submissão, para garantir sua publicação, e podem incluir instruções especiais para preparar uma avaliação efetiva e construtiva. Ao realizar uma avaliação, os avaliadores terão, por padrão, dois campos de texto aberto, o primeiro de conteúdo \"para autor e editor,\" e o segundo \"para o editor.\" Opcionalmente, o gerente pode criar formulários de avaliação na área específica. Em todos os casos, os editores terão a opção de incluir as avaliações ao se comunicarem com o autor." +msgstr "" +"As diretrizes de avaliação definirão os critérios a serem julgados em uma " +"submissão, para garantir sua publicação, e podem incluir instruções " +"especiais para preparar uma avaliação efetiva e construtiva. Ao realizar uma " +"avaliação, os avaliadores terão, por padrão, dois campos de texto aberto, o " +"primeiro de conteúdo \"para autor e editor,\" e o segundo \"para o editor.\" " +"Opcionalmente, o gerente pode criar formulários de avaliação na área " +"específica. Em todos os casos, os editores terão a opção de incluir as " +"avaliações ao se comunicarem com o autor." msgid "manager.setup.internalReviewGuidelines" msgstr "Diretrizes de Revisão Internas" -msgid "manager.setup.internalReviewGuidelinesDescription" -msgstr "Como as Diretrizes de Avaliação Externa, estas instruções informam os revisores sobre a avaliação da submissão. Estas instruções são para Revisores Internos, que geralmente realizam um processo de revisão usando revisores internos para a editora." - msgid "manager.setup.reviewOptions" msgstr "Opções de Avaliação" msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Lembretes automáticos (disponíveis nos modelos de mensagens do OMP) podem ser enviados aos avaliadores em dois momentos (enquanto o editor pode sempre se comunicar diretamente com o avaliador, a qualquer momento)." +msgstr "" +"Lembretes automáticos (disponíveis nos modelos de mensagens do OMP) podem " +"ser enviados aos avaliadores em dois momentos (enquanto o editor pode sempre " +"se comunicar diretamente com o avaliador, a qualquer momento)." msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "Nota: Para ativar estas opções, o administrador do site deve habilitar a opção scheduled_tasks no arquivo de configuração do OMP. Configurações adicionais no servidor podem ser necessárias para oferecer suporte à funcionalidade (que pode não ser possível em todos os servidores), conforme indicado na documentação do OMP." - -msgid "manager.setup.reviewOptions.noteOnModification" -msgstr "Os valores padrão podem ser alterados para qualquer submissão durante o processo editorial." +msgstr "" +"Nota: Para ativar estas opções, o administrador do site " +"deve habilitar a opção scheduled_tasks no arquivo de configuração " +"do OMP. Configurações adicionais no servidor podem ser necessárias para " +"oferecer suporte à funcionalidade (que pode não ser possível em todos os " +"servidores), conforme indicado na documentação do OMP." msgid "manager.setup.reviewOptions.onQuality" -msgstr "Editores classificarão os avaliadores em escal de cinco pontos após cada avaliação." +msgstr "" +"Editores classificarão os avaliadores em escal de cinco pontos após cada " +"avaliação." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Restringir acesso a arquivos" msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "Avaliadores terão acesso ao arquivo de submissão somente após concordar em avaliá-la." +msgstr "" +"Avaliadores terão acesso ao arquivo de submissão somente após concordar em " +"avaliá-la." msgid "manager.setup.reviewOptions.reviewerAccess" msgstr "Acesso do avaliador" +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Acesso de Avaliadores com um clique" + +#, fuzzy +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Os Avaliadores podem receber um link seguro no convite por e-mail, o que " +"permitirá que eles acessem a avaliação sem fazer login. O acesso a outras " +"páginas exige que eles façam login." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Inclua um link seguro no convite por e-mail aos avaliadores." + msgid "manager.setup.reviewOptions.reviewerRatings" msgstr "Classificação do avaliador" msgid "manager.setup.reviewOptions.reviewerReminders" msgstr "Lembretes ao avaliador" -msgid "manager.setup.reviewOptions.reviewTime" -msgstr "Tempo de avaliação" - msgid "manager.setup.reviewPolicy" msgstr "Política de avaliação" -msgid "manager.setup.reviewProcess" -msgstr "Processo de avaliação" - -msgid "manager.setup.reviewProcessDescription" -msgstr "O OMP pode usar dois modelos para gerenciar o processo de avaliação. O modelo padrão é recomendado por guiar os avaliadores durante o processo, garantindo um histórico completo da avaliação para cada submissão, além de ter a seu favor os lembretes automáticos e recomendações prédefinidas para as submissões (Aceitar; Aceitar com revisões; Submieter novamente para avaliação; Submeter a outra editora; Rejeitar; Ver comentários).

          Escolha um dos modelos a seguir:" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Processo com anexos via e-mail" - -msgid "manager.setup.reviewProcessStandard" -msgstr "Processo padrão" - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "Editores enviam aos avaliadores uma mensagem contento 0 título e o resumo da submissão, bem como um convite para acessar o sistema da editora para concluir a avaliação. Avaliadores acessam o sistema para aceitar a responsabilidade de avaliação, baixar as submissões, enviar comentários e escolher sua recomendação." +msgid "manager.setup.searchDescription.description" +msgstr "" +"Forneça uma breve descrição (50 a 300 caracteres) da editora, para que os " +"mecanismos de pesquisa podem exibir ao listar a editora nos resultados da " +"busca." msgid "manager.setup.searchEngineIndexing" msgstr "Indexação de mecanismos de busca" msgid "manager.setup.searchEngineIndexing.description" -msgstr "Para auxiliar quem usa mecanismos de busca a descobrir esta editora, ofereça uma breve apresentação da editora e palavras-have relevantes (separadas por ponto-e-vírgula)." +msgstr "" +"Para auxiliar quem usa mecanismos de busca a descobrir esta editora, ofereça " +"uma breve apresentação da editora e palavras-have relevantes (separadas por " +"ponto-e-vírgula)." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "A configuração do índice do motor de busca foi atualizada." msgid "manager.setup.sectionsAndSectionEditors" msgstr "Secções e editores de seção" msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "(Caso não tenha incluído seções, os itens serão submetidos, por padrão, à seção Monografias.)" +msgstr "" +"(Caso não tenha incluído seções, os itens serão submetidos, por padrão, à " +"seção Monografias.)" msgid "manager.setup.sectionsDescription" -msgstr "Para criar ou alterar seções da editora (ex.: Monografias, Revisões de livros, etc.) acesse a administração de seções.

          Ao submter itens, os autores designarão..." +msgstr "" +"Para criar ou alterar seções da editora (ex.: Monografias, Revisões de " +"livros, etc.) acesse a administração de seções.

          Ao submeter " +"itens, os autores designarão…" msgid "manager.setup.securitySettings" msgstr "Configurações de segurança de acesso" msgid "manager.setup.securitySettings.note" -msgstr "Outras opções relacionadas com segurança e acesso podem ser configuradas na página Acesso e segurança." +msgstr "" +"Outras opções relacionadas com segurança e acesso podem ser configuradas na " +"página Acesso e segurança." msgid "manager.setup.selectEditorDescription" msgstr "O editor geral será o responsável por acompanhar o processo editorial." @@ -772,16 +996,23 @@ msgid "manager.setup.selectSectionDescription" msgstr "A seção para a qual o item deverá ser considerado." msgid "manager.setup.showGalleyLinksDescription" -msgstr "Sempre exibir os links para as composições e identificar se são de acesso restrito." +msgstr "" +"Sempre exibir os links para as composições e identificar se são de acesso " +"restrito." -msgid "manager.setup.sponsors.description" -msgstr "O nome das organizaçõess (ex.: associações de pesquisa, departamentos de universidades, cooperativas, etc.) que patrocinam a editora aparecerá na página Sobre a editora e pode ser acompanhado de uma nota de agradecimento." +msgid "manager.setup.siteAccess.view" +msgstr "Acesso ao site" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Exibir conteúdo da monografia" msgid "manager.setup.stepsToPressSite" msgstr "Cinco passos para montar o site da editora" msgid "manager.setup.subjectExamples" -msgstr "(Ex.: Fotossíntese; Buracos Negros; Problema do mapa de quatro cores; Teoria Bayesiana)" +msgstr "" +"(Ex.: Fotossíntese; Buracos Negros; Problema do mapa de quatro cores; Teoria " +"Bayesiana)" msgid "manager.setup.subjectKeywordTopic" msgstr "Palavras-chave" @@ -792,12 +1023,6 @@ msgstr "Ofereça exemplos de termos ou assuntos como auxílio ao autores" msgid "manager.setup.submissionGuidelines" msgstr "Diretrizes de submissão" -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Verificação da submissão" - -msgid "manager.setup.submissionPreparationChecklistDescription" -msgstr "Ao submter à editora, autores precisam primeiro marcar cada item de verificação da submissão como realizados, antes de proceder. A lista também aparece nas diretrizes de submissão, na página Sobre a editora. A lista pode ser editada a seguir, porém, é obrigatório marcar todos os itens na lista antes de continuar o processo de submissão." - msgid "maganer.setup.submissionChecklistItemRequired" msgstr "Item de verificação obrigatório." @@ -805,22 +1030,21 @@ msgid "manager.setup.workflow" msgstr "Fluxo de trabalho" msgid "manager.setup.submissions.description" -msgstr "Diretrizes de submissão, direito autoral e indexação (incluindo o cadastro)." - -msgid "manager.setup.technicalSupportContact" -msgstr "Contato de suporte técnico" - -msgid "manager.setup.technicalSupportContactDescription" -msgstr "Esta pessoa aparecera na página Contato, como suporte a editores, autores e avaliadores, devendo possuir experiência com o sistema sob a ótica de todos os papéis. O sistema exige pouco suporte técnico, e a posição pode ser considerada de meio-período. Pode haver situações, como por exemplo, problemas de envio de arquivos, execução de tarefas ou com formatos de arquivo por parte de autores ou avaliadores, ou a necessidade de garantir cópias de segurança regulares do sistema." +msgstr "" +"Diretrizes de submissão, direito autoral e indexação (incluindo o cadastro)." msgid "manager.setup.typeExamples" -msgstr "(Ex.: Investigação histórica; Quase-experimental; Análise literária; Levantamento/Entrevista)" +msgstr "" +"(Ex.: Investigação histórica; Quase-experimental; Análise literária; " +"Levantamento/Entrevista)" msgid "manager.setup.typeMethodApproach" msgstr "Tipo (Método/Abordagem)" msgid "manager.setup.typeProvideExamples" -msgstr "Ofereça exemplos de termos de tipos, métodos ou abordagens de pesquisa relevantes para este campo." +msgstr "" +"Ofereça exemplos de termos de tipos, métodos ou abordagens de pesquisa " +"relevantes para este campo." msgid "manager.setup.useCopyeditors" msgstr "Um editor de texto será designado a cada submissão." @@ -828,12 +1052,6 @@ msgstr "Um editor de texto será designado a cada submissão." msgid "manager.setup.useEditorialReviewBoard" msgstr "A editora usará um comitê editorial/de avaliação." -msgid "manager.setup.useImageLogo" -msgstr "Logotipo" - -msgid "manager.setup.useImageLogoDescription" -msgstr "Um logotipo opcional pode ser enviado e usado junto à imagem ou texto definido para o título, configurado anteriormente." - msgid "manager.setup.useImageTitle" msgstr "Imagem de título" @@ -841,10 +1059,14 @@ msgid "manager.setup.useStyleSheet" msgstr "Folha de estilos da Editora" msgid "manager.setup.useLayoutEditors" -msgstr "Um editor de layout será designado para preparar os arquivos nos formatos HTML, PDF, etc., para publicação eletrônica." +msgstr "" +"Um editor de layout será designado para preparar os arquivos nos formatos " +"HTML, PDF, etc., para publicação eletrônica." msgid "manager.setup.useProofreaders" -msgstr "Um leitor de provas será designado para verificar (junto com os autores) as composições finais antes da publicação." +msgstr "" +"Um leitor de provas será designado para verificar (junto com os autores) as " +"composições finais antes da publicação." msgid "manager.setup.userRegistration" msgstr "Cadastro de usuário" @@ -855,9 +1077,6 @@ msgstr "Título" msgid "manager.setup.volumePerYear" msgstr "Volumes por ano" -msgid "manager.setup.registerPressForIndexing" -msgstr "Cadastrar editora para indexação (Coleta de metadados)" - msgid "manager.setup.publicationFormat.code" msgstr "Formato" @@ -871,19 +1090,35 @@ msgid "manager.setup.publicationFormat.physicalFormat" msgstr "Este é um formato é físico (não-digital)?" msgid "manager.setup.publicationFormat.inUse" -msgstr "O formato de publicação está em uso por uma monografia nesta editora, portanto, não pode ser excluído." +msgstr "" +"O formato de publicação está em uso por uma monografia nesta editora, " +"portanto, não pode ser excluído." msgid "manager.setup.newPublicationFormat" msgstr "Novo formato de publicação" msgid "manager.setup.newPublicationFormatDescription" -msgstr "Para criar um novo formato de publicação, preencha o formulário a seguir e pressione no botão 'Criar'." +msgstr "" +"Para criar um novo formato de publicação, preencha o formulário a seguir e " +"pressione no botão 'Criar'." msgid "manager.setup.genresDescription" -msgstr "Estes gêneros são usados para nomenclatura e são apresentados em um menu drop-down ao enviar arquivos. Os gêneros designados com ## permitem ao usuário associar o arquivo a um livro 99z inteiro ou a um capítulo em particular, pelo número (ex.: 02)." +msgstr "" +"Estes gêneros são usados para nomenclatura e são apresentados em um menu " +"drop-down ao enviar arquivos. Os gêneros designados com ## permitem ao " +"usuário associar o arquivo a um livro 99z inteiro ou a um capítulo em " +"particular, pelo número (ex.: 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Esta editora não está aceitando submissões no momento. Visite as " +"configurações do fluxo de trabalho para permitir submissões." -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "Editores enviam a avlaiadores solicitações de avaliação com a submissão como anexo da mensagem. Avalidores encaminham via e-mail sua aceitação ou recusa, bem como a avaliação e recomendação. Os editores informam no sistema a aceitação ou recusa do avaliador, assim como as avaliações e recomendações na página de avaliação da submissão, para registro do processo." +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Impedir que os usuários submetem novos artigos para a editora. As submissões " +"podem ser desabilitadas para séries individuais da editora na página de " +"configurações da série da editora ." msgid "manager.setup.genres" msgstr "Gêneros" @@ -892,7 +1127,9 @@ msgid "manager.setup.newGenre" msgstr "Novo gênero de monografia" msgid "manager.setup.newGenreDescription" -msgstr "Para criar um gênerio, preencha o formulário a seguir e pressione no botão 'Criar'." +msgstr "" +"Para criar um gênerio, preencha o formulário a seguir e pressione no botão " +"'Criar'." msgid "manager.setup.deleteSelected" msgstr "Excluir os marcados" @@ -904,7 +1141,12 @@ msgid "manager.setup.prospectus" msgstr "Guia de prospecto" msgid "manager.setup.prospectusDescription" -msgstr "O guia de prospecto é um documento para auxiliar o autor a descrever o material enviado de forma a permitir à editora determinar o valor da submissão. Prospectos podem incluir muitos itens - do ponto de vista do potencial de marketing ou valor teórico; em qualquer caso, a editora deve criar um guia de prospoecto que complemente sua pauta de publicação." +msgstr "" +"O guia de prospecto é um documento para auxiliar o autor a descrever o " +"material enviado de forma a permitir à editora determinar o valor da " +"submissão. Prospectos podem incluir muitos itens - do ponto de vista do " +"potencial de marketing ou valor teórico; em qualquer caso, a editora deve " +"criar um guia de prospoecto que complemente sua pauta de publicação." msgid "manager.setup.submitToCategories" msgstr "Permitir submissão de categoria" @@ -913,7 +1155,14 @@ msgid "manager.setup.submitToSeries" msgstr "Permitir submissão de séries" msgid "manager.setup.issnDescription" -msgstr "O ISSN (International Standard Serial Number) é um código de oito dígitos que identifica que uma publicações é seriada, incluíndo publicações eletrônicas. É administrado por uma rede mundial de Centros Nacionais coordenados pelo Centro Internacional em Paris, com apoio da Unesco e do governo francês. O número pode ser obtido do site do ISSN. Esta ação pode ser realizada a qualquer momento." +msgstr "" +"O ISSN (International Standard Serial Number) é um código de oito dígitos " +"que identifica que uma publicações é seriada, incluíndo publicações " +"eletrônicas. É administrado por uma rede mundial de Centros Nacionais " +"coordenados pelo Centro Internacional em Paris, com apoio da Unesco e do " +"governo francês. O número pode ser obtido do site do ISSN. Esta ação pode ser realizada a qualquer " +"momento." msgid "manager.setup.currentFormats" msgstr "Formatos atuais" @@ -922,10 +1171,21 @@ msgid "manager.setup.categoriesAndSeries" msgstr "Categorias e Séries" msgid "manager.setup.categories.description" -msgstr "Crie uma lista de categorias para ajudar a organizar suas publicações. Categorias são grupos de livros de acordo com o assunto, por exemplo, Economia; Literatura; Poesia; e assim por diante. Categorias pode ser agrupadas dentro de categorias \"pai\": por exemplo, um pa Economia pode incluir as categorias Micro e Macroeconomia. Visitantes poderão então buscar e navegar no conteúdo da editora por meio das categorias." +msgstr "" +"Crie uma lista de categorias para ajudar a organizar suas publicações. " +"Categorias são grupos de livros de acordo com o assunto, por exemplo, " +"Economia; Literatura; Poesia; e assim por diante. Categorias pode ser " +"agrupadas dentro de categorias \"pai\": por exemplo, um pa Economia pode " +"incluir as categorias Micro e Macroeconomia. Visitantes poderão então buscar " +"e navegar no conteúdo da editora por meio das categorias." msgid "manager.setup.series.description" -msgstr "Você pode criar um número de série para ajudar a organizar suas publicações. Uma série representa um conjunto especial de livros dedicados a temas ou assuntos propostos, normalmente sugeridos por membros do comitê ou pesquisadores, que fazem seu acompanhamento. Visitantes poderão buscar e navegar no conteúdo da editora por série." +msgstr "" +"Você pode criar um número de série para ajudar a organizar suas publicações. " +"Uma série representa um conjunto especial de livros dedicados a temas ou " +"assuntos propostos, normalmente sugeridos por membros do comitê ou " +"pesquisadores, que fazem seu acompanhamento. Visitantes poderão buscar e " +"navegar no conteúdo da editora por série." msgid "manager.setup.reviewForms" msgstr "Formulários de avaliação" @@ -955,7 +1215,10 @@ msgid "manager.setup.editorialTeam" msgstr "Equipe editorial" msgid "manager.setup.editorialTeam.description" -msgstr "O expediente deve conter a lista de editores, diretores e outros indivíduos associados à editora. Os dados informados aqui serão publicados na página Sobre a editora." +msgstr "" +"O expediente deve conter a lista de editores, diretores e outros indivíduos " +"associados à editora. Os dados informados aqui serão publicados na página " +"Sobre a editora." msgid "manager.setup.files" msgstr "Arquivos" @@ -964,7 +1227,10 @@ msgid "manager.setup.productionTemplates" msgstr "Modelos de produção" msgid "manager.files.note" -msgstr "Nota: O navegador de arquivos é uma funcionalidade avançada que permite o acesso e manipulação direta de pastas e arquivos associados à editora diretamente." +msgstr "" +"Nota: O navegador de arquivos é uma funcionalidade avançada que permite o " +"acesso e manipulação direta de pastas e arquivos associados à editora " +"diretamente." msgid "manager.setup.copyrightNotice.sample" msgstr "" @@ -972,62 +1238,88 @@ msgstr "" "

          Proposta de política de acesso aberto

          \n" "Autores que publicam nesta editora concordam com os seguintes termos:\n" "
            \n" -"\t
          1. Autores mantém o direito autoral e transferem à editora o direito de primeira publicação do trabalho, licenciada simultaneamente sob uma licença de atribuição Creative Commons, que permite a outros compartilhar o trabalho com o reconhecimento de autoria e publicação inicial nesta editora.
          2. \n" -"\t
          3. Autores podem assumir outros contratos adicionais em separado, para a distribuição não exclusiva da versão publicada pela editora (ex.: publicação em repositório institucional ou em um livro), com reconhecimento de publicação inicial nesta editora.
          4. \n" -"\t
          5. Autores podem e são incentivados a publicar seu trabalho online (ex.: em repositórios institucionais ou seu próprio site) antes e durante o processo de submissão, pois podem levar a trocas produtivas de informação, bem como citação maior e mais rápida do trabalho publicado (veja O efeito do acesso aberto).
          6. \n" +"\t
          7. Autores mantém o direito autoral e transferem à editora o direito de " +"primeira publicação do trabalho, licenciada simultaneamente sob uma licença de atribuição Creative Commons, que permite a outros " +"compartilhar o trabalho com o reconhecimento de autoria e publicação inicial " +"nesta editora.
          8. \n" +"\t
          9. Autores podem assumir outros contratos adicionais em separado, para a " +"distribuição não exclusiva da versão publicada pela editora (ex.: publicação " +"em repositório institucional ou em um livro), com reconhecimento de " +"publicação inicial nesta editora.
          10. \n" +"\t
          11. Autores podem e são incentivados a publicar seu trabalho online (ex.: " +"em repositórios institucionais ou seu próprio site) antes e durante o " +"processo de submissão, pois podem levar a trocas produtivas de informação, " +"bem como citação maior e mais rápida do trabalho publicado (veja O efeito " +"do acesso aberto).
          12. \n" "
          \n" "\n" "

          Proposta de política para acesso aberto adiado

          \n" "Autores que publicam nesta editora concordam com os seguintes termos:\n" "
            \n" -"\t
          1. Autores mantém o direito autoral e transferem à editora o direito de primeira publicação do trabalho [ESPECIFICAR PERÍODO DE TEMPO] após a publicação, licenciada simultaneamente sob uma licença de atribuição Creative Commons, que permite a outros compartilhar o trabalho com o reconhecimento de autoria e publicação inicial nesta editora.
          2. \n" -"\t
          3. Autores podem assumir outros contratos adicionais em separado, para a distribuição não exclusiva da versão publicada pela editora (ex.: publicação em repositório institucional ou em um livro), com reconhecimento de publicação inicial nesta editora.
          4. \n" -"\t
          5. >Autores podem e são incentivados a publicar seu trabalho online (ex.: em repositórios institucionais ou seu próprio site) antes e durante o processo de submissão, pois podem levar a trocas produtivas de informação, bem como citação maior e mais rápida do trabalho publicado (veja O efeito do acesso aberto)
          6. \n" +"\t
          7. Autores mantém o direito autoral e transferem à editora o direito de " +"primeira publicação do trabalho [ESPECIFICAR PERÍODO DE TEMPO] após a " +"publicação, licenciada simultaneamente sob uma licença de atribuição " +"Creative Commons, que permite a outros compartilhar o trabalho com o " +"reconhecimento de autoria e publicação inicial nesta editora.
          8. \n" +"\t
          9. Autores podem assumir outros contratos adicionais em separado, para a " +"distribuição não exclusiva da versão publicada pela editora (ex.: publicação " +"em repositório institucional ou em um livro), com reconhecimento de " +"publicação inicial nesta editora.
          10. \n" +"\t
          11. >Autores podem e são incentivados a publicar seu trabalho online " +"(ex.: em repositórios institucionais ou seu próprio site) antes e durante o " +"processo de submissão, pois podem levar a trocas produtivas de informação, " +"bem como citação maior e mais rápida do trabalho publicado (veja O efeito " +"do acesso aberto)
          12. \n" "
          " msgid "manager.setup.basicEditorialStepsDescription" msgstr "" -"Passos: Fila de submissão > Avaliação > Edição > Sumário.

          \n" -"Escolha um modelo para lidar com os aspectos do processo editorial (Para designar um editor gerente e editor de séries, acesse Editores, na administração da editora.)" +"Passos: Fila de submissão > Avaliação > Edição > Sumário.

          \n" +"Escolha um modelo para lidar com os aspectos do processo editorial (Para " +"designar um editor gerente e editor de séries, acesse Editores, na " +"administração da editora.)" msgid "manager.setup.referenceLinkingDescription" msgstr "" -"

          Para abilitar leitores a localizar versões online do trabalho citado pelo autor, estão disponíveis as opções a seguir.

          \n" +"

          Para abilitar leitores a localizar versões online do trabalho citado pelo " +"autor, estão disponíveis as opções a seguir.

          \n" "\n" "
            \n" -"\t
          1. Inclua uma ferramenta de leitura

            O Gerente da editora pode incluir a opção \"Encontrar referências\" na ferramenta de leitura que acompanha cada item publicado, permitindo aos leitores colar o título da referência e buscá-la em bases de dados pré-definidas.

          2. \n" -"\t
          3. Embutir links nas referências

            O editor de layout pode incluir links nas referências que podem ser encontradas online, de acordo com as seguintes instruções (que podem ser personalizadas).

          4. \n" +"\t
          5. Inclua uma ferramenta de leitura

            O Gerente da " +"editora pode incluir a opção \"Encontrar referências\" na ferramenta de " +"leitura que acompanha cada item publicado, permitindo aos leitores colar o " +"título da referência e buscá-la em bases de dados pré-definidas.

          6. \n" +"\t
          7. Embutir links nas referências

            O editor de layout " +"pode incluir links nas referências que podem ser encontradas online, de " +"acordo com as seguintes instruções (que podem ser personalizadas).

          8. \n" "
          " msgid "manager.publication.library" msgstr "Biblioteca da Editora" -msgid "manager.settings.publisherCodeType" -msgstr "Tipo de código da editora" - -msgid "user.authorization.pluginLevel" -msgstr "Você não possui permissões adequadas para gerenciar este plugin." - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Mostrar publicações aprimoradas na página inicial" - -msgid "manager.setup.displayInSpotlight" -msgstr "Mostrar publicações em destaque na página inicial" - -msgid "manager.setup.displayNewReleases" -msgstr "Mostrar novos lançamentos na página inicial" - -msgid "manager.setup.enableUserRegistration" -msgstr "Visitantes podem criar contas de usuário na editora." - msgid "manager.setup.resetPermissions" msgstr "Redefinir as Permissões das Submissões" msgid "manager.setup.resetPermissions.confirm" -msgstr "Tem certeza que deseja redefinir as permissões definidas nas submissões?" +msgstr "" +"Tem certeza que deseja redefinir as permissões definidas nas submissões?" msgid "manager.setup.resetPermissions.description" -msgstr "As declarações de direitos autorais e informações sobre a licença serão permanentemente ligados aos conteúdos publicados, assegurando que esses dados não mudarão no caso de uma editora mudar as políticas relativas aos novas submissões. Para redefinir as permissões já associadas aos conteúdos publicados, use o botão abaixo." +msgstr "" +"As declarações de direitos autorais e informações sobre a licença serão " +"permanentemente ligados aos conteúdos publicados, assegurando que esses " +"dados não mudarão no caso de uma editora mudar as políticas relativas aos " +"novas submissões. Para redefinir as permissões já associadas aos conteúdos " +"publicados, use o botão abaixo." + +msgid "manager.setup.resetPermissions.success" +msgstr "As permissões da monografia foram redefinidas com sucesso." msgid "grid.genres.title.short" msgstr "Componentes" @@ -1035,253 +1327,609 @@ msgstr "Componentes" msgid "grid.genres.title" msgstr "Componentes da Publicação" -msgid "stats.publications.abstracts" -msgstr "Entradas do catálogo" +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "Enviar uma cópia ao contato principal, identificado no Passo 1." -msgid "stats.publications.countOfTotal" -msgstr "{$count} de {$total} monografias" +msgid "grid.series.pathAlphaNumeric" +msgstr "O caminho das series devem consistir apenas em letras e números." -msgid "stats.publications.totalGalleyViews.timelineInterval" -msgstr "Total de visualizações de arquivo por data" +msgid "grid.series.pathExists" +msgstr "O caminho das series já existe. Por favor, insira um caminho único." -msgid "stats.publications.totalAbstractViews.timelineInterval" -msgstr "Total de visualizações de catálogo por data" +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Selecionar Série" -msgid "stats.publications.none" -msgstr "" -"Não foram encontradas monografias com estatísticas de uso correspondentes a " -"esses parâmetros." +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Selecione a série à qual você deseja vincular este item de menu." -msgid "stats.publications.details" -msgstr "Detalhes da monografia" +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Selecione a Categoria" -msgid "stats.publicationStats" -msgstr "Estatísticas da monografia" +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "Selecione a categoria à qual você deseja vincular este item de menu." msgid "grid.series.urlWillBe" msgstr "A URL da série será: {$sampleUrl}" -msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" -msgstr "Selecione a categoria à qual você deseja vincular este item de menu." +msgid "stats.contextStats" +msgstr "Estatísticas da Editora" -msgid "manager.navigationMenus.form.navigationMenuItem.category" -msgstr "Selecione a Categoria" +msgid "stats.context.tooltip.text" +msgstr "" +"Número de visitantes que visualizam a página de índice da editora e do " +"catálogo." -msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" -msgstr "Selecione a série à qual você deseja vincular este item de menu." +msgid "stats.context.tooltip.label" +msgstr "Sobre as estatísticas da editora" -msgid "manager.navigationMenus.form.navigationMenuItem.series" -msgstr "Selecionar Série" +msgid "stats.context.downloadReport.description" +msgstr "" +"Baixe uma planilha CSV/Excel com estatísticas de uso para esta editora que " +"correspondam aos seguintes parâmetros." -msgid "grid.series.pathExists" -msgstr "O caminho das series já existe. Por favor, insira um caminho único." +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "O número de exibições de página de índice da editora e do catálogo." -msgid "grid.series.pathAlphaNumeric" -msgstr "O caminho das series devem consistir apenas em letras e números." +msgid "stats.context.downloadReport.downloadContext" +msgstr "Baixar Editora" -msgid "manager.setup.resetPermissions.success" -msgstr "As permissões da monografia foram redefinidas com sucesso." +msgid "stats.publications.downloadReport.description" +msgstr "" +"Baixe uma planilha CSV/Excel com estatísticas de uso para monografias que " +"correspondam aos seguintes parâmetros." -msgid "manager.setup.siteAccess.viewContent" -msgstr "Exibir conteúdo da monografia" +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Baixar Monografias" -msgid "manager.setup.siteAccess.view" -msgstr "Acesso ao site" +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" +"O número de visualizações de resumos e downloads de arquivos para cada " +"monografia." -msgid "manager.setup.searchEngineIndexing.success" -msgstr "A configuração do índice do motor de busca foi atualizada." +msgid "stats.publicationStats" +msgstr "Estatísticas da monografia" -msgid "manager.setup.searchDescription.description" +msgid "stats.publications.details" +msgstr "Detalhes da monografia" + +msgid "stats.publications.none" msgstr "" -"Forneça uma breve descrição (50 a 300 caracteres) da editora, para que os " -"mecanismos de pesquisa podem exibir ao listar a editora nos resultados da " -"busca." +"Não foram encontradas monografias com estatísticas de uso correspondentes a " +"esses parâmetros." -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" -msgstr "Inclua um link seguro no convite por e-mail aos avaliadores." +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Total de visualizações de catálogo por data" -#, fuzzy -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" -msgstr "" -"Os Avaliadores podem receber um link seguro no convite por e-mail, o que " -"permitirá que eles acessem a avaliação sem fazer login. O acesso a outras " -"páginas exige que eles façam login." +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Total de visualizações de arquivo por data" -msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" -msgstr "Acesso de Avaliadores com um clique" +msgid "stats.publications.countOfTotal" +msgstr "{$count} de {$total} monografias" -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" -msgstr "Restringir acesso a arquivos" +msgid "stats.publications.abstracts" +msgstr "Entradas do catálogo" -msgid "manager.setup.pressThumbnail.description" -msgstr "" -"Um pequeno logotipo ou representação da editora que pode ser usado em listas " -"de editoras." +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Nenhum objeto selecionado." -msgid "manager.setup.pressThumbnail" -msgstr "Thumbnail" +msgid "plugins.importexport.common.error.validation" +msgstr "Não foi possível converter os objetos selecionados." -msgid "manager.setup.aboutPress.description" +msgid "plugins.importexport.common.invalidXML" +msgstr "XML inválido:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Exportar submissões" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" msgstr "" -"Inclua qualquer informação sobre sua editora que possa interessar aos " -"leitores, autores ou avaliadores. Isso pode incluir sua política de acesso " -"aberto, o foco e o escopo da editora, aviso de direitos autorais, divulgação " -"de patrocínios, histórico da editora e uma declaração de privacidade." +"Envie uma cópia do e-mail de confirmação da submissão para o contato " +"principal desta editora." -msgid "manager.setup.aboutPress" -msgstr "Sobre a Editora" +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"Nenhum contato principal foi definido para esta editora. Você pode inserir o " +"contato principal nas configurações da editora." -msgid "manager.setup.privacyStatement.success" -msgstr "A declaração de privacidade foi atualizada." +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Os objetos especificados não foram encontrados." -msgid "manager.setup.numPageLinks.description" +msgid "plugins.importexport.native.error.unknownUser" +msgstr "O usuário especificado, \"{$userName}\", não existe." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "O processo falhou ao analisar os formatos de publicação" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "O processo falhou ao analisar capítulos" + +msgid "emailTemplate.variable.context.contextName" +msgstr "O nome da editora" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "A URL da página inicial da editora" + +msgid "emailTemplate.variable.context.contactName" +msgstr "O nome do contato principal da editora" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "A assinatura de e-mail da editora para e-mails automáticos" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "O endereço de e-mail do contato principal da editora" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "O nome do tipo de pagamento" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "O valor do pagamento" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "A moeda do valor do pagamento, como Real" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Nome do site quando mais de uma editora é hospedada" + +msgid "mailable.validateEmailContext.name" +msgstr "Validar e-mail (registro de editora)" + +msgid "mailable.validateEmailContext.description" msgstr "" -"Limite o número de links a serem exibidos nas páginas subsequentes em uma " -"lista." +"Este e-mail é enviado automaticamente para um novo usuário quando ele se " +"registra na editora, quando as configurações exigem a validação do endereço " +"de e-mail." -msgid "manager.setup.masthead.success" -msgstr "Os detalhes do cabeçalho desta editora foram atualizados." +msgid "doi.displayName" +msgstr "DOI" -msgid "manager.setup.lists.success" -msgstr "As configurações de lista foram atualizadas." +msgid "doi.manager.displayName" +msgstr "DOIs" -msgid "manager.setup.keyInfo.description" +msgid "doi.description" msgstr "" -"Forneça uma breve descrição da sua editora e identifique editores, diretores " -"executivos e outros membros da sua equipe editorial." +"Este plugin permite a atribuição dos Identificadores de Objetos Digitais " +"(DOIs) a monografias, capítulos, formatos de publicação e arquivos no OMP." -msgid "manager.setup.keyInfo" -msgstr "Informação chave" +msgid "doi.readerDisplayName" +msgstr "DOI:" -msgid "manager.setup.itemsPerPage.description" +msgid "doi.manager.settings.description" msgstr "" -"Limite o número de itens (por exemplo, submissões, usuários ou atribuições " -"de edição) a serem exibidos em uma lista antes de mostrar os itens " -"subsequentes em outra página." +"Por favor, configure o plugin DOI para ser capaz de gerir e utilizar DOIs no " +"OMP:" -msgid "manager.setup.itemsPerPage" -msgstr "Items por página" +msgid "doi.manager.settings.explainDois" +msgstr "" +"Por favor, selecione os objetos publicados que terão Identificadores " +"Digitais de Objeto (DOI) atribuídos:" -msgid "manager.setup.information.success" -msgstr "As informações desta editora foram atualizadas." +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monografias" -msgid "manager.setup.information" -msgstr "Informação" +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Capítulos" -msgid "manager.setup.identity" -msgstr "Identidade da editora" +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Formatos de publicação" -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "" -"Quantas notícias serão exibidos na página inicial. Deixe em branco para não " -"exibir nenhum." +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Arquivos" -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Exibir na página inicial" +msgid "doi.manager.settings.doiPrefix" +msgstr "Prefixo DOI" -msgid "manager.setup.enableAnnouncements.description" -msgstr "" -"Notícias podem ser publicados para informar os leitores sobre eventos e " -"novidades. As notícias publicadas aparecerão na Página de Notícias." +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "O prefixo DOI é obrigatório e deve ser na forma 10.xxxx." -msgid "manager.setup.emailSignature.description" +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Insira um padrão de sufixo personalizado para cada tipo de publicação. O " +"padrão de sufixo personalizado pode usar os seguintes símbolos para gerar o " +"sufixo:

          %p digite as iniciais
          %m ID da " +"monografia
          %c ID do capítulo
          %f ID do " +"formato de publicação
          %s ID do arquivo
          %x " +"Identificador personalizado

          Esteja ciente de que os padrões de " +"sufixo personalizados geralmente levam a problemas na geração e depósito de " +"DOIs. Ao usar um padrão de sufixo personalizado, teste cuidadosamente se os " +"editores podem gerar DOIs e depositá-los em uma agência de registro como o " +"Crossref. " + +msgid "doi.manager.settings.doiSuffixPattern.example" msgstr "" -"Os e-mails preparados que são enviados pelo sistema em nome da editora terão " -"a seguinte assinatura adicionada ao final." +"Por exemplo, editora%ppub%f poderia criar um DOI como 10.1234/" +"editoraESPpub100" -msgid "manager.setup.emailBounceAddress.disabled" +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "para monografias" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "para capítulos" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "para formatos de publicação" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "para arquivos" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Digite o padrão de sufixo DOI para monografias." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Digite o padrão de sufixo DOI para os capítulos." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Por favor entre o padrão de sufixo DOI para formatos de publicação." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Digite o padrão de sufixo DOI para os arquivos." + +msgid "doi.manager.settings.doiReassign" +msgstr "Reatribuir DOIs" + +msgid "doi.manager.settings.doiReassign.description" msgstr "" -"Para enviar e-mails não entregues a um endereço de devolução, o " -"administrador do site deve ativar a opção allow_envelope_sender " -"no arquivo de configuração do site. A configuração do servidor pode ser " -"necessária, conforme indicado na documentação do OMP." +"Se você alterar a configuração de seu DOI, os DOIs que já foram atribuídos " +"não serão afetados.Uma vez que a configuração do DOI for salva, use este " +"botão para deletar todos os DOIs existentes, para que a nova configuração " +"surta efeito com os objetos existentes." -msgid "manager.setup.displayNewReleases.label" -msgstr "Novos lançamentos" +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Tem certeza que deseja deletar todos DOIs existentes?" -msgid "manager.setup.displayInSpotlight.label" -msgstr "Destaque" +msgid "doi.editor.doi" +msgstr "DOI" -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Livros em destaque" +msgid "doi.editor.doi.description" +msgstr "O DOI deve começar com {$prefix}." -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgid "doi.editor.doi.assignDoi" +msgstr "Atribuir" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "monografia" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "capítulo" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "formato de publicação" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "Arquivo" + +msgid "doi.editor.customSuffixMissing" +msgstr "O DOI não pode ser atribuído porque falta o sufixo personalizado." + +msgid "doi.editor.missingParts" msgstr "" -"As imagens serão reduzidas quando maiores que esse tamanho, mas nunca serão " -"ampliadas ou esticadas para se ajustar a essas dimensões." +"Não é possível gerar um DOI porque faltam dados em uma ou mais partes do " +"padrão do DOI." -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Largura máxima da imagem de capa" +msgid "doi.editor.patternNotResolved" +msgstr "" +"Não é possível atribuir o DOI porque este contém um padrão não resolvido." -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Altura máxima da imagem de capa" +msgid "doi.editor.canBeAssigned" +msgstr "" +"O que está vendo é uma pré-visualização do DOI. Selecione a caixa de " +"verificação e salve o formulário para atribuir o DOI." -msgid "manager.setup.contextSummary" -msgstr "Sumário" +msgid "doi.editor.assigned" +msgstr "O DOI é atribuído a este {$pubObjectType}." -msgid "manager.setup.contextAbout.description" +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" msgstr "" -"Inclua qualquer informação sobre sua editora que possa interessar aos " -"leitores, autores ou avaliadores. Isso pode incluir sua política de acesso " -"aberto, o foco e o escopo da editora, a divulgação de patrocínios e o " -"histórico." +"O sufixo DOI já está em uso por outro item publicado. Por favor insira um " +"sufixo DOI exclusivo para cada item." -msgid "manager.setup.contextAbout" -msgstr "Sobre a Editora" +msgid "doi.editor.clearObjectsDoi" +msgstr "Limpar" -msgid "manager.setup.announcements.success" -msgstr "As configurações de notícias foram atualizadas." +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Tem certeza de que deseja deletar o DOI existente?" -msgid "manager.people.allEnrolledUsers" -msgstr "Usuários cadastrados nesta Editora" +msgid "doi.editor.assignDoi" +msgstr "Atribua o DOI {$pubId} a este {$pubObjectType}" -msgid "manager.tools.statistics" +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "O DOI não pode ser atribuído porque falta o sufixo personalizado." + +msgid "doi.editor.assignDoi.pattern" msgstr "" -"Ferramentas para gerar relatórios relacionados a estatísticas de uso (" -"exibição de página de índice de catálogo, exibição de página abstrata de " -"monografia, downloads de arquivo de monografia)" +"O DOI {$pubId} não pode ser atribuído porque contém um padrão não resolvido." -msgid "manager.settings.publisherCodeType.invalid" -msgstr "Este não é um tipo de código de editor válido." +msgid "doi.editor.assignDoi.assigned" +msgstr "O DOI {$pubId} foi atribuído." -msgid "manager.settings.publisher.identity" -msgstr "Identidade do Editor" +msgid "doi.editor.missingPrefix" +msgstr "O DOI deve começar com {$doiPrefix}." -msgid "manager.payment.success" -msgstr "As configurações de pagamento foram atualizadas." +msgid "doi.editor.preview.publication" +msgstr "O DOI para esta publicação será {$doi}." -msgid "manager.payment.options.enablePayments" +msgid "doi.editor.preview.publication.none" +msgstr "Um DOI não foi atribuído a esta publicação." + +msgid "doi.editor.preview.chapters" +msgstr "Capítulo: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Formato da publicação: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Arquivo: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Item" + +msgid "doi.manager.submissionDois" +msgstr "DOIs de Monografias" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" msgstr "" -"Os pagamentos serão ativados para esta editora. Observe que os usuários " -"deverão fazer login para efetuar pagamentos." +"Este e-mail notifica o autor de que sua submissão está sendo enviada para a " +"fase de avaliação interna." -msgid "manager.payment.generalOptions" -msgstr "Opções gerais" +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Este e-mail notifica o autor de que sua submissão está sendo rejeitada, " +"antes de ser enviada para avaliação, pois a submissão não atende aos " +"requisitos para publicação nesta editora." -msgid "plugins.importexport.native.exportSubmissions" -msgstr "Exportar submissões" +msgid "manager.institutions.noContext" +msgstr "A editora desta instituição não foi encontrada." -msgid "plugins.importexport.common.invalidXML" -msgstr "XML inválido:" +msgid "manager.manageEmails.description" +msgstr "Edite as mensagens enviadas em e-mails desta editora." -msgid "plugins.importexport.common.error.validation" -msgstr "Não foi possível converter os objetos selecionados." +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Enviado para Avaliação Interna" -msgid "plugins.importexport.common.error.noObjectsSelected" -msgstr "Nenhum objeto selecionado." +msgid "mailable.indexRequest.name" +msgstr "Índice Solicitado" -msgid "manager.setup.disableSubmissions.description" +msgid "mailable.indexComplete.name" +msgstr "Índice Concluído" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Nova Versão Criada" + +msgid "mailable.publicationVersionNotify.description" msgstr "" -"Impedir que os usuários submetem novos artigos para a editora. As submissões " -"podem ser desabilitadas para séries individuais da editora na página de " -"configurações da série da editora ." +"Este e-mail notifica automaticamente os editores designados quando uma nova " +"versão da submissão foi criada." -msgid "manager.setup.disableSubmissions.notAccepting" +msgid "mailable.submissionNeedsEditor.description" msgstr "" -"Esta editora não está aceitando submissões no momento. Visite as " -"configurações do fluxo de trabalho para permitir submissões." +"Este e-mail é enviado aos gerentes da editora quando uma nova submissão é " +"feita e nenhum editor é designado." + +#~ msgid "manager.people.existingUserRequired" +#~ msgstr "Informar um usuári existente." + +#~ msgid "manager.setup.addContributor" +#~ msgstr "Incluir contribuidor" + +#~ msgid "manager.setup.additionalContent" +#~ msgstr "Conteúdo adicional" + +#~ msgid "manager.setup.additionalContentDescription" +#~ msgstr "" +#~ "Apresentar o conteúdo a seguir, usando texto/HTML, na página inicial " +#~ "abaixo da capa, caso exista." + +#~ msgid "manager.setup.alternateHeader" +#~ msgstr "Cabeçalho alternativo" + +#~ msgid "manager.setup.alternateHeaderDescription" +#~ msgstr "" +#~ "Em vez de um título e logotipo, uma versão HTML do cabeçalho pode ser " +#~ "inserida no campo de texto a seguir. Deixe em branco caso não seja usado." + +#~ msgid "manager.setup.authorCopyrightNotice" +#~ msgstr "Aviso de direito autoral" + +#~ msgid "manager.setup.authorCopyrightNoticeAgree" +#~ msgstr "" +#~ "Exigir que autores concordem e aceitem o aviso de direito autoral como " +#~ "parte do processo de submissão." + +#~ msgid "manager.setup.authorCopyrightNotice.description" +#~ msgstr "" +#~ "O aviso de direito autoral a seguir aparecerá na página Sobre a editora, " +#~ "e nos metadados de cada item publicado. Embora seja de respponsabilidade " +#~ "da editora definir a natureza de seu acordo de direito autoral com os " +#~ "autores, o Public Knowledge Project recomenda o uso de uma licença Creative Commons. Para isso, uma proposta de aviso de direito autoral é apresentada, que pode ser " +#~ "copiada e colada no campo para que as editoras possam (a) oferecer acesso " +#~ "aberto, (b) oferecer acesso aberto adiado, ou (c) não oferecer acesso " +#~ "aberto." + +#~ msgid "manager.setup.authorGuidelines.description" +#~ msgstr "" +#~ "Defina os padrões bibliográficos e de formatação que devem ser adotados " +#~ "pelos autores aos submeter trabalhos a esta editora (ex.: Manual de " +#~ "Publicação da Associação Americana de Psicologia, 5 edição, 2001). " +#~ "Geralmente é útil apresentar exemplos de formatos de citação a serem " +#~ "usados nas submissões, comuns a editoras e livros." + +#~ msgid "manager.setup.contributor" +#~ msgstr "Contribuidor" + +#~ msgid "manager.setup.contributors" +#~ msgstr "Apoio" + +#~ msgid "manager.setup.contributors.description" +#~ msgstr "" +#~ "Agências ou organizações que oferecem apoio financeiro ou outro tipo de " +#~ "recurso para a editora, aparecerão em Sobre a editora e podem ser " +#~ "acompanhadas por uma nota de agradecimento." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Prefixo DOI" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "O prefixo DOI (Digital Object Identifier) é designado pelo CrossRef, no formato 10." +#~ "xxxx (ex.: 10.1234)." + +#~ msgid "manager.setup.emailSignatureDescription" +#~ msgstr "" +#~ "Os modelos de mensagens são enviados pelo sistema em nome da editora, " +#~ "apresentando a seguinte assinatura no final. O corpo das mensagens está " +#~ "disponível para personalização mais adiante." + +#~ msgid "manager.setup.homepageImage" +#~ msgstr "Capa" + +#~ msgid "manager.setup.homepageImageDescription" +#~ msgstr "" +#~ "Incluir imagem de capa ou grafismo no meio da página inicial. Caso use o " +#~ "layout e css padrão, a largura máxima deve ser de 750px quando usar ma " +#~ "barra lateral e 540px para quando usar duas barras. Caso use um layout e " +#~ "css personalizado, esses valores podem variar." + +#~ msgid "manager.setup.mailingAddress.description" +#~ msgstr "O endereço físico e postal da editora." + +#~ msgid "manager.setup.notifications" +#~ msgstr "Notificação de submissão" + +#~ msgid "manager.setup.notifications.copySpecifiedAddress" +#~ msgstr "Enviar uma cópia a este endereço:" + +#~ msgid "manager.setup.notifications.description" +#~ msgstr "" +#~ "Ao concluir o processo de submissão, autores recebem automaticamente uma " +#~ "mensagem de agradecimento (disponível para ver e editar em Modelos de " +#~ "mensagens). Além disso, uma cópia da mensagem pode ser enviada conform a " +#~ "seguir:" + +#~ msgid "manager.setup.openAccess" +#~ msgstr "A editora oferecerá acesso aberto ao seu conteúdo." + +#~ msgid "manager.setup.openAccessPolicy" +#~ msgstr "Política de acesso aberto" + +#~ msgid "manager.setup.openAccessPolicy.description" +#~ msgstr "" +#~ "Caso a editora ofereça aos leitores acesso gratuito e imediato ao " +#~ "conteúdo publicado, informe a seguir uma política de acesso aberto, que " +#~ "aparecerá na página Sobre a editora, na seção Políticas." + +#~ msgid "manager.setup.peerReview.description" +#~ msgstr "" +#~ "Defina a política de avaliação pelos pares para os leitores e autores, " +#~ "incluindo o número de avaliadores normalmente usado na avaliação de uma " +#~ "submissão, os critérios julgados pelos avalidores, tempo padrão para " +#~ "realização de uma avaliação, bem como os princípios de recrutamento de " +#~ "avaliadores. O conteúdo aparecerá na página Sobre a editora." + +#~ msgid "manager.setup.pageFooter" +#~ msgstr "Rodapé" + +#~ msgid "manager.setup.pageFooterDescription" +#~ msgstr "" +#~ "Este é o rodapé da editora. Para alterar ou atualizar o rodapé, cole " +#~ "código HTML no campo a seguir. Exemplos podem incluir outra barra de " +#~ "navegação, um contador, etc. O rodapé aparecerá em todas as páginas." + +#~ msgid "manager.setup.principalContact" +#~ msgstr "Contato principal" + +#~ msgid "manager.setup.principalContactDescription" +#~ msgstr "" +#~ "Esta posição, que pode ser considerada como o editor científico, editor-" +#~ "chefe, ou algum outro cargo administrativo, será apresentado na página " +#~ "inicial na seção Contato, junto com o contato de suporte técnico." + +#~ msgid "manager.setup.privacyStatement" +#~ msgstr "Política de privacidade" + +#~ msgid "manager.setup.privacyStatement2" +#~ msgstr "Politica de privacidade" + +#~ msgid "manager.setup.privacyStatement.description" +#~ msgstr "" +#~ "Esta política aparecerá na página Sobre a editora, bem como nas páginas " +#~ "de submissão do autor, notificação e de cadastros. É apresentada a seguir " +#~ "uma proposta de política, que pode ser editada a qualquer momento." + +#~ msgid "manager.setup.internalReviewGuidelinesDescription" +#~ msgstr "" +#~ "Como as Diretrizes de Avaliação Externa, estas instruções informam os " +#~ "revisores sobre a avaliação da submissão. Estas instruções são para " +#~ "Revisores Internos, que geralmente realizam um processo de revisão usando " +#~ "revisores internos para a editora." + +#~ msgid "manager.setup.reviewOptions.noteOnModification" +#~ msgstr "" +#~ "Os valores padrão podem ser alterados para qualquer submissão durante o " +#~ "processo editorial." + +#~ msgid "manager.setup.reviewOptions.reviewTime" +#~ msgstr "Tempo de avaliação" + +#~ msgid "manager.setup.sponsors.description" +#~ msgstr "" +#~ "O nome das organizaçõess (ex.: associações de pesquisa, departamentos de " +#~ "universidades, cooperativas, etc.) que patrocinam a editora aparecerá na " +#~ "página Sobre a editora e pode ser acompanhado de uma nota de " +#~ "agradecimento." + +#~ msgid "manager.setup.technicalSupportContact" +#~ msgstr "Contato de suporte técnico" + +#~ msgid "manager.setup.technicalSupportContactDescription" +#~ msgstr "" +#~ "Esta pessoa aparecera na página Contato, como suporte a editores, autores " +#~ "e avaliadores, devendo possuir experiência com o sistema sob a ótica de " +#~ "todos os papéis. O sistema exige pouco suporte técnico, e a posição pode " +#~ "ser considerada de meio-período. Pode haver situações, como por exemplo, " +#~ "problemas de envio de arquivos, execução de tarefas ou com formatos de " +#~ "arquivo por parte de autores ou avaliadores, ou a necessidade de garantir " +#~ "cópias de segurança regulares do sistema." + +#~ msgid "manager.setup.useImageLogo" +#~ msgstr "Logotipo" + +#~ msgid "manager.setup.useImageLogoDescription" +#~ msgstr "" +#~ "Um logotipo opcional pode ser enviado e usado junto à imagem ou texto " +#~ "definido para o título, configurado anteriormente." + +#~ msgid "manager.setup.registerPressForIndexing" +#~ msgstr "Cadastrar editora para indexação (Coleta de metadados)" + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "O endereço de correspondência da editora" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "O link para a página de estatísticas de livros" + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Este e-mail é enviado automaticamente mensalmente aos editores e gerentes de " +"editoras para fornecer a eles uma visão geral da integridade do sistema." -msgid "manager.series.confirmDeactivateSeries.error" +msgid "manager.sections.alertDelete" msgstr "" -"Pelo menos uma série deve estar ativa. Visite as configurações do fluxo de " -"trabalho para desativar todas as submissões para esta editora." +"Antes que esta série possa ser excluída, você deve mover as submissões " +"associadas a esta série para outras séries." + +msgid "mailable.layoutComplete.name" +msgstr "Composições Completas" + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "" +"Um registro de direitos de vendas foi ignorado porque não tem país nem " +"região atribuídos." + +msgid "emailTemplate.variable.context.contextAcronym" +msgstr "As iniciais da editora" diff --git a/locale/pt_BR/submission.po b/locale/pt_BR/submission.po index 6ada4a26316..e500e8a95a8 100644 --- a/locale/pt_BR/submission.po +++ b/locale/pt_BR/submission.po @@ -1,9 +1,10 @@ +# Diego José Macêdo , 2021, 2022. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T12:00:54-07:00\n" -"PO-Revision-Date: 2020-06-07 03:39+0000\n" +"PO-Revision-Date: 2022-12-23 19:02+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -12,10 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.submit.title" -msgstr "Enviar Monografia" +"X-Generator: Weblate 4.13.1\n" msgid "submission.upload.selectComponent" msgstr "Seleciona o componente" @@ -33,7 +31,13 @@ msgid "submission.workflowType" msgstr "Tipo de livro" msgid "submission.workflowType.description" -msgstr "Uma monografia é um trabalho produzido por um ou mais autores. Um volume editado possui diferentes autores para cada capítulo, sendo que os detalhes de cada capítulo são informados mais tarde durante o processo." +msgstr "" +"Uma monografia é um trabalho produzido por um ou mais autores. Um volume " +"editado possui diferentes autores para cada capítulo, sendo que os detalhes " +"de cada capítulo são informados mais tarde durante o processo." + +msgid "submission.workflowType.editedVolume.label" +msgstr "Volume Editado" msgid "submission.workflowType.editedVolume" msgstr "Volume editado: Autores são associados com seu próprio capítulo." @@ -41,6 +45,12 @@ msgstr "Volume editado: Autores são associados com seu próprio capítulo." msgid "submission.workflowType.authoredWork" msgstr "Monografia: Autores são associados com o livro com um todo." +msgid "submission.workflowType.change" +msgstr "Mudar" + +msgid "submission.editorName" +msgstr "{$editorName} (ed)" + msgid "submission.monograph" msgstr "Monografia" @@ -50,6 +60,9 @@ msgstr "Pronto para editoração" msgid "submission.fairCopy" msgstr "Cópia limpa" +msgid "submission.authorListSeparator" +msgstr "; " + msgid "submission.artwork.permissions" msgstr "Permissões" @@ -59,15 +72,15 @@ msgstr "Capítulo" msgid "submission.chapters" msgstr "Capítulos" -msgid "submission.chaptersDescription" -msgstr "Liste os capítulos aqui, aos quais também pode designar contribuidores a partir da lista acima. Os contribuidores poderão acessar o capítulo durante os vários estágios do processo de publicação." - msgid "submission.chapter.addChapter" msgstr "Incluir capítulo" msgid "submission.chapter.editChapter" msgstr "Editar capítulo" +msgid "submission.chapter.pages" +msgstr "Páginas" + msgid "submission.copyedit" msgstr "Editar texto" @@ -95,9 +108,6 @@ msgstr "Em avaliação" msgid "manuscript.submissions" msgstr "Submissões de manuscritos" -msgid "submission.confirmSubmit" -msgstr "Deseja realmente enviar este manuscrito para a editora?" - msgid "submission.metadata" msgstr "Metadados" @@ -125,23 +135,17 @@ msgstr "Novo envio" msgid "submission.submit.upload" msgstr "Enviar" -msgid "submission.submit.cancelSubmission" -msgstr "O envio pode ser concluído posteriormente, escolhendo da lista de Submissões ativas, na página inicial do papel de autor." +msgid "author.volumeEditor" +msgstr "Editor de Volume" -msgid "submission.submit.selectSeries" -msgstr "Escolher séries (opcional)" +msgid "author.isVolumeEditor" +msgstr "Identifique esse colaborador como o editor deste volume." msgid "submission.submit.seriesPosition" msgstr "Posição na série (ex.: Livro 2, ou Volume 2)" -msgid "submission.submit.placement.seriesDescription" -msgstr "Caso o livro também deva ser considerado para uma série..." - -msgid "submission.submit.placement.seriesPositionDescription" -msgstr "Livros em séries são normalmente mantidos na ordem inversa em que são publicados, para proporcionar uma visão do desenvolvimento da série, bem como manter as mais recentes à frente." - -msgid "submission.submit.form.localeRequired" -msgstr "Escolha o idioma da submissão." +msgid "submission.submit.seriesPosition.description" +msgstr "Exemplos: Livro 2, Volume 2" msgid "submission.submit.privacyStatement" msgstr "Declaração de Privacidade" @@ -149,21 +153,6 @@ msgstr "Declaração de Privacidade" msgid "submission.submit.contributorRole" msgstr "Papel do contribuidor" -msgid "submission.submit.form.authorRequired" -msgstr "Pelo menos um autor é obrigatório." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "São informações obrigatórias para cada autor o prénome, o sobrenome e o endereço de e-mail." - -msgid "submission.submit.form.titleRequired" -msgstr "O título da monografia é obrigatório." - -msgid "submission.submit.form.abstractRequired" -msgstr "Informe um breve resumo da monografia." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Escolha o papel do contribuidor." - msgid "submission.submit.submissionFile" msgstr "Arquivo de submissão" @@ -192,10 +181,15 @@ msgid "submission.submit.generalInformation" msgstr "Informações gerais" msgid "submission.submit.whatNext.description" -msgstr "A editora foi notificada de sua submissão, bem como uma mensagem de confirmação enviada ao seu endereço de e-mail para seus registros. O editor entrará em contato assim que concluir sua avaliação da submissão." +msgstr "" +"A editora foi notificada de sua submissão, bem como uma mensagem de " +"confirmação enviada ao seu endereço de e-mail para seus registros. O editor " +"entrará em contato assim que concluir sua avaliação da submissão." msgid "submission.submit.checklistErrors" -msgstr "Leia atentamente e marque os itens da lista de verificação. Ainda há {$itemsRemaining} itens não marcados." +msgstr "" +"Leia atentamente e marque os itens da lista de verificação. Ainda há " +"{$itemsRemaining} itens não marcados." msgid "submission.submit.placement" msgstr "Colocação da submissão" @@ -203,8 +197,8 @@ msgstr "Colocação da submissão" msgid "submission.submit.userGroup" msgstr "Enviar no meu papel como..." -msgid "submission.submit.userGroupDescription" -msgstr "Caso esteja submetendo um volume editado, escolha o papel do editor do volume." +msgid "submission.submit.noContext" +msgstr "Não foi possível encontrar a editora desta submissão." msgid "grid.chapters.title" msgstr "Capítulos" @@ -212,8 +206,11 @@ msgstr "Capítulos" msgid "grid.copyediting.deleteCopyeditorResponse" msgstr "Excluir arquivo do editor de texto" -msgid "publication.catalogEntry" -msgstr "Catálogo" +msgid "submission.complete" +msgstr "Aprovado" + +msgid "submission.incomplete" +msgstr "Esperando Aprovação" msgid "submission.editCatalogEntry" msgstr "Entrada" @@ -221,6 +218,16 @@ msgstr "Entrada" msgid "submission.catalogEntry.new" msgstr "Nova entrada no catálogo" +msgid "submission.catalogEntry.add" +msgstr "Adicionar Seleção ao Catálogo" + +msgid "submission.catalogEntry.select" +msgstr "Selecione monografias para adicionar ao catálogo" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" +"Você deve selecionar ao menos uma monografia para adicionar ao catálogo." + msgid "submission.catalogEntry.confirm" msgstr "Adicionar este livro ao catálogo público" @@ -230,6 +237,18 @@ msgstr "Confirme que a submissão está pronta para entrar no catálogo." msgid "submission.catalogEntry.isAvailable" msgstr "Esta monografia está pronta para entrar no catálogo." +msgid "submission.catalogEntry.viewSubmission" +msgstr "Ver Submissão" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Datas de publicação" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Todos os capítulos usarão a data de publicação da monografia." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Cada capítulo pode ter sua própria data de publicação." + msgid "submission.catalogEntry.monographMetadata" msgstr "Monografia" @@ -249,19 +268,25 @@ msgid "submission.event.publicationFormatMadeAvailable" msgstr "O formato de publicação \"{$publicationFormatName}\" está disponível." msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "O formato de publicação \"{$publicationFormatName}\" não está mais disponível." +msgstr "" +"O formato de publicação \"{$publicationFormatName}\" não está mais " +"disponível." msgid "submission.event.publicationFormatPublished" -msgstr "O formato de publicação \"{$publicationFormatName}\" foi aprovado para publicação." +msgstr "" +"O formato de publicação \"{$publicationFormatName}\" foi aprovado para " +"publicação." msgid "submission.event.publicationFormatUnpublished" -msgstr "O formato de publicação \"{$publicationFormatName}\" não está mais publicado." +msgstr "" +"O formato de publicação \"{$publicationFormatName}\" não está mais publicado." msgid "submission.event.catalogMetadataUpdated" msgstr "Os metadados do catálogo foram atualizados." msgid "submission.event.publicationMetadataUpdated" -msgstr "Os metadados do formato de publicação \"{$formatName}\" foram atualizados." +msgstr "" +"Os metadados do formato de publicação \"{$formatName}\" foram atualizados." msgid "submission.event.publicationFormatCreated" msgstr "O formato de publicação \"{$formatName}\" foi criado." @@ -269,131 +294,83 @@ msgstr "O formato de publicação \"{$formatName}\" foi criado." msgid "submission.event.publicationFormatRemoved" msgstr "O formato de publicação \"{$formatName}\" foi excluído." -msgid "submission.submit.titleAndSummary" -msgstr "Título e Resumo" - -msgid "submission.submit.seriesPosition.description" -msgstr "Exemplos: Livro 2, Volume 2" - -msgid "submission.complete" -msgstr "Aprovado" - -msgid "submission.incomplete" -msgstr "Esperando Aprovação" +msgid "editor.submission.decision.sendExternalReview" +msgstr "Enviar ao Avaliador Externo" msgid "workflow.review.externalReview" msgstr "Avaliador Externo" -msgid "editor.submission.decision.sendExternalReview" -msgstr "Enviar ao Avaliador Externo" - msgid "submission.upload.fileContents" msgstr "Componente da Submissão" -msgid "submission.workflowType.editedVolume.label" -msgstr "Volume Editado" - -msgid "publication.scheduledIn" -msgstr "Programado para publicação em {$issueName}." +msgid "submission.dependentFiles" +msgstr "Arquivos Dependentes" -msgid "publication.publish.confirmation" +msgid "submission.metadataDescription" msgstr "" -"Todos os requisitos de publicação foram atendidos. Tem certeza de que deseja " -"tornar pública essa entrada no catálogo?" - -msgid "publication.publishedIn" -msgstr "Publicado em {$issueName}." - -msgid "publication.required.issue" -msgstr "A publicação deve ser atribuída a uma edição antes de ser publicada." +"Estas especificações estão baseadas no conjunto de metadados Dublin Core, um " +"padrão internacional utilizado para descrever conteúdo." -msgid "publication.invalidSeries" -msgstr "Não foi possível encontrar a série desta publicação." +msgid "section.any" +msgstr "Qualquer Série" -msgid "publication.catalogEntry.success" -msgstr "Os detalhes da entrada do catálogo foram atualizados." +msgid "submission.list.monographs" +msgstr "Monografias" -msgid "catalog.browseTitles" -msgstr "{$numTitles} Títulos" +msgid "submission.list.countMonographs" +msgstr "{$count} monografias" -msgid "submission.list.saveFeatureOrder" -msgstr "Salvar pedido" +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} de {$total} monografias" -msgid "submission.list.orderingFeaturesSection" -msgstr "" -"Arraste e solte ou toque nos botões para cima e para baixo para alterar a " -"ordem dos recursos em {$title}." +msgid "submission.list.orderFeatures" +msgstr "Recursos de pedidos" msgid "submission.list.orderingFeatures" msgstr "" "Arraste e solte ou toque nos botões para cima e para baixo para alterar a " "ordem dos recursos na página inicial." -msgid "submission.list.orderFeatures" -msgstr "Recursos de pedidos" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} de {$total} monografias" - -msgid "submission.list.countMonographs" -msgstr "{$count} monografias" - -msgid "submission.list.monographs" -msgstr "Monografias" - -msgid "section.any" -msgstr "Qualquer Série" - -msgid "submission.metadataDescription" +msgid "submission.list.orderingFeaturesSection" msgstr "" -"Estas especificações estão baseadas no conjunto de metadados Dublin Core, um " -"padrão internacional utilizado para descrever conteúdo." - -msgid "submission.dependentFiles" -msgstr "Arquivos Dependentes" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Cada capítulo pode ter sua própria data de publicação." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Todos os capítulos usarão a data de publicação da monografia." +"Arraste e solte ou toque nos botões para cima e para baixo para alterar a " +"ordem dos recursos em {$title}." -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Datas de publicação" +msgid "submission.list.saveFeatureOrder" +msgstr "Salvar pedido" -msgid "submission.catalogEntry.viewSubmission" -msgstr "Ver Submissão" +msgid "submission.list.viewEntry" +msgstr "Ver entrada" -msgid "submission.catalogEntry.selectionMissing" -msgstr "" -"Você deve selecionar ao menos uma monografia para adicionar ao catálogo." +msgid "catalog.browseTitles" +msgstr "{$numTitles} Títulos" -msgid "submission.catalogEntry.select" -msgstr "Selecione monografias para adicionar ao catálogo" +msgid "publication.catalogEntry" +msgstr "Catálogo" -msgid "submission.catalogEntry.add" -msgstr "Adicionar Seleção ao Catálogo" +msgid "publication.catalogEntry.success" +msgstr "Os detalhes da entrada do catálogo foram atualizados." -msgid "submission.submit.noContext" -msgstr "Não foi possível encontrar a editora desta submissão." +msgid "publication.invalidSeries" +msgstr "Não foi possível encontrar a série desta publicação." -msgid "author.submit.seriesRequired" -msgstr "Uma série válida é necessária." +msgid "publication.inactiveSeries" +msgstr "{$series} (Inativa)" -msgid "author.isVolumeEditor" -msgstr "Identifique esse colaborador como o editor deste volume." - -msgid "submission.chapter.pages" -msgstr "Páginas" +msgid "publication.required.issue" +msgstr "A publicação deve ser atribuída a uma edição antes de ser publicada." -msgid "submission.authorListSeparator" -msgstr "; " +msgid "publication.publishedIn" +msgstr "Publicado em {$issueName}." -msgid "submission.editorName" -msgstr "{$editorName} (ed)" +msgid "publication.publish.confirmation" +msgstr "" +"Todos os requisitos de publicação foram atendidos. Tem certeza de que deseja " +"tornar pública essa entrada no catálogo?" -msgid "submission.workflowType.change" -msgstr "Alterar" +msgid "publication.scheduledIn" +msgstr "" +"Programado para publicação em {$issueName}." msgid "submission.publication" msgstr "Publicação" @@ -491,3 +468,177 @@ msgstr "Detalhes da publicação da versão {$version}" msgid "submission.queries.production" msgstr "Discussão da Editoração" +msgid "publication.chapter.landingPage" +msgstr "Página do capítulo" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Mostre este capítulo em sua própria página e crie um link para essa página " +"no índice do livro." + +msgid "publication.publish.success" +msgstr "O status da publicação foi alterado com sucesso." + +msgid "chapter.volume" +msgstr "Volume" + +msgid "submission.withoutChapter" +msgstr "{$name} — Sem este capítulo" + +msgid "submission.chapterCreated" +msgstr " — Capítulo criado" + +msgid "chapter.pages" +msgstr "Páginas" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Enviar para avaliação interna" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "Esta submissão está pronta para ser enviada para avaliação interna." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} enviou esta submissão para a fase de avaliação interna." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Enviado para Avaliação Interna" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"A submissão, {$title}, foi enviada para a fase de avaliação interna. O autor " +"foi notificado, a menos que você opte por ignorar esse e-mail." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Envie um e-mail aos autores para que eles saibam que esta submissão será " +"enviada para avaliação interna. Se possível, dê aos autores alguma indicação " +"de quanto tempo o processo de avaliação interna pode levar e quando eles " +"devem esperar para terem notícias dos editores novamente." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" +"Selecione os arquivos que devem ser enviados para a etapa de avaliação " +"interna." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "{$editorName} enviou esta submissão para a fase de avaliação externa." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Enviado para Avaliação Externa" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "A submissão, {$title}, foi enviada para a fase de avaliação externa." + +msgid "editor.submission.decision.backToReview" +msgstr "Voltar para avaliação" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Reverta a decisão de aceitar esta submissão e envie-o de volta para a fase " +"de avaliação." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} reverteu a decisão de aceitar esta submissão e o enviou de " +"volta à fase de avaliação." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Enviado de volta para avaliação" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "A submissão, {$title}, foi enviada de volta à fase de avaliação." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Envie um e-mail para os autores para que eles saibam que sua submissão está " +"sendo enviada de volta para a fase de avaliação. Explique por que essa " +"decisão foi tomada e informe o autor sobre qual avaliação adicional será " +"realizada." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Envie um e-mail para os autores para que eles saibam que esta submissão será " +"enviada para avaliação por pares. Se possível, dê aos autores alguma " +"indicação de quanto tempo o processo de avaliação por pares pode levar e " +"quando eles devem esperar para terem noticias dos editores novamente." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" +"Selecione os arquivos que devem ser enviados para a etapa de avaliação." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Recomendar Enviar para Avaliação Externa" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" +"Recomendar que esta submissão seja enviada para a fase de avaliação externa." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} recomendou que esta submissão seja enviada para a fase de " +"avaliação externa." + +msgid "doi.submission.incorrectContext" +msgstr "" +"Não foi possível criar um DOI para a seguinte submissão: {$pubObjectTitle}. " +"Não existe no contexto atual da editora." + +msgid "publication.chapter.licenseUrl" +msgstr "URL de licença" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "URL de licença de capítulo padrão" + +msgid "submission.copyright.description" +msgstr "" +"Por favor, leia e entenda os termos de direitos autorais para submissões a " +"esta editora." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Sem permissão para submeter a esta editora porque os autores devem ser " +"registrados pela equipe editorial. Se você acredita que isso é um erro, " +"entre em contato com {$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} não está aceitando envios para a série {$section}. Se " +"precisar de ajuda para recuperar sua submissão, entre em contato com {$name}." + +msgid "submission.sectionNotFound" +msgstr "Não foi possível encontrar a série para esta submissão." + +msgid "submission.sectionRestrictedToEditors" +msgstr "" +"Somente a equipe editorial está autorizada a enviar artigos para esta série." + +msgid "submission.wizard.submitting.monograph" +msgstr "Submetendo uma Monografia." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" +"Submetendo uma Monografia em {$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Submetendo um Volume Editado." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Submetendo um Volume Editado em {$language}." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Forneça todos os capítulos desta submissão. Se você estiver submetendo um " +"volume editado, certifique-se de que cada capítulo indique os colaboradores " +"desse capítulo." + +#~ msgid "submission.submit.placement.seriesDescription" +#~ msgstr "Caso o livro também deva ser considerado para uma série..." + +#~ msgid "submission.submit.placement.seriesPositionDescription" +#~ msgstr "" +#~ "Livros em séries são normalmente mantidos na ordem inversa em que são " +#~ "publicados, para proporcionar uma visão do desenvolvimento da série, bem " +#~ "como manter as mais recentes à frente." diff --git a/locale/pt_PT/admin.po b/locale/pt_PT/admin.po index 2e5d9c4db82..26b04c51d53 100644 --- a/locale/pt_PT/admin.po +++ b/locale/pt_PT/admin.po @@ -1,7 +1,10 @@ +# Carla Marques , 2022, 2023. +# José Carvalho , 2022, 2023. +# Carlos Costa , 2023. msgid "" msgstr "" -"PO-Revision-Date: 2021-01-28 11:18+0000\n" -"Last-Translator: Carla Marques \n" +"PO-Revision-Date: 2023-10-31 11:06+0000\n" +"Last-Translator: José Carvalho \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -9,117 +12,127 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.13.1\n" -msgid "admin.languages.primaryLocaleInstructions" -msgstr "Este será o idioma padrão para o site e qualquer editora alojada." +msgid "admin.hostedContexts" +msgstr "Editoras Alojadas" -msgid "admin.settings.noPressRedirect" -msgstr "Não redirecionar" +msgid "admin.settings.appearance.success" +msgstr "As configurações da aparência do site foram atualizadas com sucesso." + +msgid "admin.settings.config.success" +msgstr "As configurações do site foram atualizadas com sucesso." + +msgid "admin.settings.info.success" +msgstr "As informações do site foram atualizadas com sucesso." + +msgid "admin.settings.redirect" +msgstr "Redirecionar para editora" msgid "admin.settings.redirectInstructions" msgstr "" "Pedidos ao site principal serão redirecionados para esta editora. Esta ação " "será útil caso o site apenas tenha uma editora alojada, por exemplo." -msgid "admin.settings.redirect" -msgstr "Redirecionar para editora" - -msgid "admin.settings.info.success" -msgstr "As informações do site foram atualizadas com sucesso." +msgid "admin.settings.noPressRedirect" +msgstr "Não redirecionar" -msgid "admin.settings.config.success" -msgstr "As configurações do site foram atualizadas com sucesso." +msgid "admin.languages.primaryLocaleInstructions" +msgstr "Este será o idioma padrão para o site e qualquer editora alojada." -msgid "admin.settings.appearance.success" -msgstr "As configurações da aparência do site foram atualizadas com sucesso." +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Selecione todos os idiomas para disponibilizar no site. Os idiomas " +"selecionados ficarão disponíveis para todas as editoras hospedadas no site, " +"e também aparecerão num menu de idiomas selecionados em cada página (que " +"pode ser substituído em páginas específicas da editora). Se não estiverem " +"selecionado vários idiomas, o menu de alteração de idioma não aparecerá e as " +"editoras não terão configurações de idioma." -msgid "admin.hostedContexts" -msgstr "Editoras Alojadas" +msgid "admin.locale.maybeIncomplete" +msgstr "* Os idiomas marcados podem estar incompletos." -msgid "admin.overwriteConfigFileInstructions" +msgid "admin.languages.confirmUninstall" msgstr "" -"

          AVISO!\n" -"

          O sistema não conseguiu substituir automaticamente o ficheiro de " -"configuração. Para aplicar as suas alterações de configuração deve abrir " -"config.inc.php num editor de texto adequado e substituir os " -"conteúdos pelos do campo de texto abaixo.

          " +"Deseja realmente desinstalar este idioma? Esta ação pode afetar as editoras " +"alojadas que estejam a utilizar este idioma." -msgid "admin.presses.addPress" -msgstr "Adicionar Editora" +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Selecione qualquer idioma adicional para instalar o suporte neste sistema. " +"Os idiomas devem ser instalados antes de poderem ser utilizados pelas " +"editoras alojadas. Veja a documentação do OMP para mais informações sobre " +"adicionar suporte para novos idiomas." -msgid "admin.contexts.contextDescription" -msgstr "Descrição da Editora" +msgid "admin.languages.confirmDisable" +msgstr "" +"Deseja realmente desativar este idioma? Esta ação pode afetar editoras " +"alojadas que estejam a utilizar o idioma." -msgid "admin.contexts.form.edit.success" -msgstr "{$name} foi editado com sucesso." +msgid "admin.systemVersion" +msgstr "Versão do OMP" -msgid "admin.contexts.form.create.success" -msgstr "{$name} foi criado com sucesso." +msgid "admin.systemConfiguration" +msgstr "Configurações do OMP" -msgid "admin.contexts.form.pathExists" -msgstr "O caminho selecionado já se encontra em uso por outra editora." +msgid "admin.presses.pressSettings" +msgstr "Configurações da Editora" -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "" -"O caminho apenas pode incluir letras, números e os seguintes caracteres: _ e " -"-. Deve iniciar e terminar com uma letra ou número." +msgid "admin.presses.noneCreated" +msgstr "Não foram criadas editoras." -msgid "admin.contexts.form.pathRequired" -msgstr "É necessário inserir um caminho." +msgid "admin.contexts.create" +msgstr "Criar Editora" msgid "admin.contexts.form.titleRequired" msgstr "É necessário inserir um título." -msgid "admin.contexts.create" -msgstr "Criar Editora" - -msgid "admin.presses.noneCreated" -msgstr "Não foram criadas editoras." +msgid "admin.contexts.form.pathRequired" +msgstr "É necessário inserir um caminho." -msgid "admin.presses.pressSettings" -msgstr "Configurações da Editora" +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"O caminho apenas pode incluir letras, números e os seguintes caracteres: _ e " +"-. Deve iniciar e terminar com uma letra ou número." -msgid "admin.systemConfiguration" -msgstr "Configurações do OMP" +msgid "admin.contexts.form.pathExists" +msgstr "O caminho selecionado já se encontra em uso por outra editora." -msgid "admin.systemVersion" -msgstr "Versão do OMP" +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "O idioma principal deve ser um dos idiomas suportados pela editora." -msgid "admin.languages.confirmDisable" -msgstr "" -"Deseja realmente desativar este idioma? Esta ação pode afetar editoras " -"alojadas que estejam a utilizar o idioma." +msgid "admin.contexts.form.create.success" +msgstr "{$name} foi criado com sucesso." -msgid "admin.languages.installNewLocalesInstructions" -msgstr "" -"Selecione qualquer idioma adicional para instalar o suporte neste sistema. " -"Os idiomas devem ser instalados antes de poderem ser utilizados pelas " -"editoras alojadas. Veja a documentação do OMP para mais informações sobre " -"adicionar suporte para novos idiomas." +msgid "admin.contexts.form.edit.success" +msgstr "{$name} foi editado com sucesso." -msgid "admin.languages.confirmUninstall" -msgstr "" -"Deseja realmente desinstalar este idioma? Esta ação pode afetar as editoras " -"alojadas que estejam a utilizar este idioma." +msgid "admin.contexts.contextDescription" +msgstr "Descrição da Editora" -msgid "admin.locale.maybeIncomplete" -msgstr "* Os idiomas marcados podem estar incompletos." +msgid "admin.presses.addPress" +msgstr "Adicionar Editora" -msgid "admin.languages.supportedLocalesInstructions" +msgid "admin.overwriteConfigFileInstructions" msgstr "" -"Selecione todos os idiomas para disponibilizar no site. Os idiomas " -"selecionados ficarão disponíveis para todas as editoras hospedadas no site, " -"e também aparecerão num menu de idiomas selecionados em cada página (que " -"pode ser substituído em páginas específicas da editora). Se não estiverem " -"selecionado vários idiomas, o menu de alteração de idioma não aparecerá e as " -"editoras não terão configurações de idioma." +"

          AVISO!\n" +"

          O sistema não conseguiu substituir automaticamente o ficheiro de " +"configuração. Para aplicar as suas alterações de configuração deve abrir " +"config.inc.php num editor de texto adequado e substituir os " +"conteúdos pelos do campo de texto abaixo.

          " -msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgid "admin.settings.enableBulkEmails.description" msgstr "" -"O recurso de e-mails em massa foi desativado para esta editora. Ative este " -"recurso em Administração> Configurações do " -"Site." +"Selecione as editoras alojadas que podem enviar e-mails em massa. Quando " +"este recurso está ativo, o editor-gestor poderá enviar e-mails a todos os " +"utilizadores registados na sua editora.

          A má utilização deste recurso " +"ao enviar e-mails não solicitados poderá violar as leis anti-spam em alguns " +"locais e pode levar a que o seu servidor de e-mail seja bloqueado como spam. " +"Procure apoio técnico antes de ativar este recurso e considere consultar os " +"editores-gestores para se assegurar que é usado de forma " +"apropriada.

          Restrições adicionais a este recursos podem ser ativados " +"para cada editora ao visitar o assistente de configuração na lista de Revistas Alojadas." msgid "admin.settings.disableBulkEmailRoles.description" msgstr "" @@ -131,18 +144,49 @@ msgstr "" "mails em massa pode ser completamente desativado para esta editora em Administração > Configurações do Site." -msgid "admin.settings.enableBulkEmails.description" +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" msgstr "" -"Selecione as editoras alojadas que podem enviar e-mails em massa. Quando " -"este recurso está ativo, o editor-gestor poderá enviar e-mails a todos os " -"utilizadores registados na sua editora.

          A má utilização deste recurso " -"ao enviar e-mails não solicitados poderá violar as leis anti-spam em alguns " -"locais e pode levar a que o seu servidor de e-mail seja bloqueado como spam. " -"Procure apoio técnico antes de ativar este recurso e considere consultar os " -"editores-gestores para se assegurar que é usado de forma apropriada.

          " -"Restrições adicionais a este recursos podem ser ativados para cada editora " -"ao visitar o assistente de configuração na lista de Revistas Alojadas." +"O recurso de e-mails em massa foi desativado para esta editora. Ative este " +"recurso em Administração> Configurações do " +"Site." -msgid "admin.contexts.form.primaryLocaleNotSupported" -msgstr "O idioma principal deve ser um dos idiomas suportados pela editora." +msgid "admin.siteManagement.description" +msgstr "" +"Adicione, edite ou remova editoras deste site e gira as configurações a " +"nível do site." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "O ID do capítulo não é um número inteiro" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "O ID da série não é um número inteiro" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Selecione o tipo de estatísticas de uso geográfico que podem ser registadas " +"pelas editoras neste sistema. Estatísticas geográficas mais detalhadas podem " +"aumentar consideravelmente o tamanho da sua base de dados e, em alguns casos " +"raros, podem prejudicar o anonimato dos seus visitantes. Cada editora pode " +"definir essa configuração individualmente, mas nunca poderão registar dados " +"mais detalhados do que os que estão aqui configurados. Por exemplo, se o " +"sistema suporta apenas o país e a região, a editora pode selecionar país e " +"região ou apenas país. A editora não poderá registar país, região e cidade." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Habilite as estatísticas institucionais se desejar que as editoras neste " +"sistema possam coletar estatísticas de uso por instituição. As editoras " +"necessitarão de adicionar a instituição e os seus intervalos de IP para usar " +"esse recurso. A ativação das estatísticas institucionais pode aumentar " +"consideravelmente o tamanho da sua base de dados." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Tornar ou não os endpoints da SUSHI API acessíveis publicamente para todas " +"as editoras neste site. Se ativar a API pública, cada editora pode " +"substituir essa configuração para tornar suas estatísticas privadas. No " +"entanto, se você desativar a API pública, as editoras não poderão tornar sua " +"própria API pública." + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Use o website como plataforma para todas as revistas." diff --git a/locale/pt_PT/api.po b/locale/pt_PT/api.po index c9f551495f2..62e826efb7a 100644 --- a/locale/pt_PT/api.po +++ b/locale/pt_PT/api.po @@ -1,7 +1,9 @@ +# Carla Marques , 2022. +# José Carvalho , 2023. msgid "" msgstr "" -"PO-Revision-Date: 2021-01-22 11:36+0000\n" -"Last-Translator: Carla Marques \n" +"PO-Revision-Date: 2023-01-03 09:02+0000\n" +"Last-Translator: José Carvalho \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -9,32 +11,33 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.13.1\n" -msgid "api.submissions.403.contextRequired" +msgid "api.submissions.400.submissionIdsRequired" msgstr "" -"Para enviar ou editar uma submissão deve fazer um pedido ao endpoint da API " -"da editora." +"Deve forneceere um ou mais IDs de submissões para serem adicionados ao " +"catálogo." -msgid "api.submissions.403.cantChangeContext" -msgstr "Não pode alterar a editora de uma submissão." +msgid "api.submissions.400.submissionsNotFound" +msgstr "Uma ou mais submissões que especificou não foram encontradas." -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "A publicação que solicitou não faz parte desta submissão." +msgid "api.submissions.400.wrongContext" +msgstr "A submissão solicitada não está nesta editora." -msgid "api.publications.403.contextsDidNotMatch" -msgstr "A publicação que solicitou não faz parte desta editora." +msgid "api.emails.403.disabled" +msgstr "O recurso de notificação de e-mail não foi ativado para esta editora." msgid "api.emailTemplates.403.notAllowedChangeContext" msgstr "Não tem permissões para mover este e-mail padrão para outra editora." -msgid "api.submissions.400.submissionsNotFound" -msgstr "Uma ou mais submissões que especificou não foram encontradas." +msgid "api.publications.403.contextsDidNotMatch" +msgstr "A publicação que solicitou não faz parte desta editora." -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Deve forneceere um ou mais IDs de submissões para serem adicionados ao " -"catálogo." +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "A publicação que solicitou não faz parte desta submissão." -msgid "api.emails.403.disabled" -msgstr "O recurso de notificação de e-mail não foi ativado para esta editora." +msgid "api.submissions.403.cantChangeContext" +msgstr "Não pode alterar a editora de uma submissão." + +msgid "api.submission.400.inactiveSection" +msgstr "Esta secção não está a aceitar novas submissões." diff --git a/locale/pt_PT/author.po b/locale/pt_PT/author.po index eb655e669fa..50835081062 100644 --- a/locale/pt_PT/author.po +++ b/locale/pt_PT/author.po @@ -1,7 +1,8 @@ +# Carla Marques , 2022. msgid "" msgstr "" -"PO-Revision-Date: 2020-02-07 10:35+0000\n" -"Last-Translator: Carla Marques \n" +"PO-Revision-Date: 2022-01-27 14:25+0000\n" +"Last-Translator: Carla Marques \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -13,3 +14,6 @@ msgstr "" msgid "author.submit.notAccepting" msgstr "Esta editora não se encontra a aceitar submissões de momento." + +msgid "author.submit" +msgstr "Nova Submissão" diff --git a/locale/pt_PT/default.po b/locale/pt_PT/default.po index 8d3ec095f97..ddf1e07ef6b 100644 --- a/locale/pt_PT/default.po +++ b/locale/pt_PT/default.po @@ -1,7 +1,9 @@ +# Carla Marques , 2022, 2023. +# José Carvalho , 2022. msgid "" msgstr "" -"PO-Revision-Date: 2020-06-16 12:39+0000\n" -"Last-Translator: Carla Marques \n" +"PO-Revision-Date: 2023-01-18 11:31+0000\n" +"Last-Translator: Carla Marques \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -9,173 +11,209 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.13.1\n" -msgid "default.contextSettings.emailSignature" -msgstr "" -"
          \n" -"________________________________________________________________________
          " -"\n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "RE" +msgid "default.genres.appendix" +msgstr "Apêndice" -msgid "default.groups.plural.externalReviewer" -msgstr "Revisores Externos" +msgid "default.genres.bibliography" +msgstr "Bibliografia" -msgid "default.groups.name.externalReviewer" -msgstr "Revisor Externo" +msgid "default.genres.manuscript" +msgstr "Manuscrito do livro" -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Encorajamos as bibliotecas a listar esta editora nos seus catálogos de " -"recursos eletrónicos. Este sistema de publicação é um software de código " -"aberto também é adequado para bibliotecas que queiram alojar editoras para " -"os seus membros que estejam envolvidos em processos de edição e publicação (" -"veja Open Monograph Press)." +msgid "default.genres.chapter" +msgstr "Manuscrito do Capítulo" -msgid "default.contextSettings.forAuthors" -msgstr "" -"Interessado em submeter o seu manuscrito a esta editora? Leia Sobre a Editora para saber mais sobre " -"as políticas da editora e as Instruções aos Autores. Os autores têm " -"primeiro que se registar na editora antes de enviar a submissão, ou se já estiver " -"registado pode simplesmente entrar no " -"sistema e iniciar o processo de submissão em 5 passos." +msgid "default.genres.glossary" +msgstr "Glossário" -msgid "default.contextSettings.forReaders" -msgstr "" -"Encorajamos os leitores a registar-se para receber notificações da editora. " -"Aceda através do botão de Registo no canto superior direito da página de início da " -"editora. Com este registo, o leitor irá receber por e-mail o Sumário de cada " -"nova monografia publicada pela editora. Esta lista também permite que a " -"editora anuncie um certo nível de apoio ou de quantidade de leitores. Saiba " -"mais sobre a Declaração de Privacidade da editora que assegura aos " -"leitores que o seu nome e e-mail não serão utilizados para outros propósitos." +msgid "default.genres.index" +msgstr "Sumário" -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Esta editora fornece acesso aberto imediato aos seus conteúdos seguindo o " -"princípio de que a disponibilização gratuita da investigação apoia uma maior " -"troca global de conhecimento." +msgid "default.genres.preface" +msgstr "Prefácio" -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

          Os nomes e endereços de e-mail inseridos nesta editora serão usados " -"exclusivamente para os propósitos da editora e não serão tornados públicos " -"para qualquer outro propósito ou disponibilizados a terceiros.

          " +msgid "default.genres.prospectus" +msgstr "Prospecto" -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "" -"O texto cumpre as normas estilísticas e bibliográficas referidas nas Instruções aos Autores, que podem ser lidas em Sobre a Editora." +msgid "default.genres.table" +msgstr "Tabela" -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"O texto foi formatado em espaço simples; com fonte a 12 pontos; adota " -"itálicos, em vez de sublinhados (exceto para endereços URL); e todas as " -"ilustrações, figuras, e tabelas encontram-se no correto local no texto, e " -"não todas no final." +msgid "default.genres.figure" +msgstr "Figura" -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Foram inseridos os URLs das referências, quando disponíveis." +msgid "default.genres.photo" +msgstr "Fotografia" -msgid "default.contextSettings.checklist.fileFormat" -msgstr "" -"O ficheiro da submissão encontra-se em formato Microsoft Word, RTF, ou " -"OpenDocument." +msgid "default.genres.illustration" +msgstr "Ilustração" -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"A submissão não foi previamente publicada, nem se encontra em consideração " -"em outra editora (ou foi inserida uma explicação nos Comentários ao Editor)." +msgid "default.genres.other" +msgstr "Outro" -msgid "default.groups.abbrev.volumeEditor" -msgstr "EV" +msgid "default.groups.name.manager" +msgstr "Editor-gestor" -msgid "default.groups.plural.volumeEditor" -msgstr "Editores de volume" +msgid "default.groups.plural.manager" +msgstr "Editores-gestores" -msgid "default.groups.name.volumeEditor" -msgstr "Editor de volume" +msgid "default.groups.abbrev.manager" +msgstr "EG" -msgid "default.groups.abbrev.chapterAuthor" -msgstr "AC" +msgid "default.groups.name.editor" +msgstr "Editor" -msgid "default.groups.plural.chapterAuthor" -msgstr "Autores de Capítulo" +msgid "default.groups.plural.editor" +msgstr "Editores" -msgid "default.groups.name.chapterAuthor" -msgstr "Autor de Capítulo" +msgid "default.groups.abbrev.editor" +msgstr "Ed" -msgid "default.groups.abbrev.sectionEditor" -msgstr "EdS" +msgid "default.groups.name.sectionEditor" +msgstr "Editor de série" msgid "default.groups.plural.sectionEditor" msgstr "Editores de série" -msgid "default.groups.name.sectionEditor" -msgstr "Editor de série" +msgid "default.groups.abbrev.sectionEditor" +msgstr "EdS" -msgid "default.groups.abbrev.editor" -msgstr "Ed" +msgid "default.groups.name.subscriptionManager" +msgstr "Gestor de Subscrições" -msgid "default.groups.plural.editor" -msgstr "Editores" +msgid "default.groups.plural.subscriptionManager" +msgstr "Gestores de Subscrições" -msgid "default.groups.name.editor" -msgstr "Editor" +msgid "default.groups.abbrev.subscriptionManager" +msgstr "GSub" -msgid "default.groups.abbrev.manager" -msgstr "EG" +msgid "default.groups.name.chapterAuthor" +msgstr "Autor de Capítulo" -msgid "default.groups.plural.manager" -msgstr "Editores-gestores" +msgid "default.groups.plural.chapterAuthor" +msgstr "Autores de Capítulo" -msgid "default.groups.name.manager" -msgstr "Editor-gestor" +msgid "default.groups.abbrev.chapterAuthor" +msgstr "AC" -msgid "default.genres.other" -msgstr "Outro" +msgid "default.groups.name.volumeEditor" +msgstr "Editor de volume" -msgid "default.genres.illustration" -msgstr "Ilustração" +msgid "default.groups.plural.volumeEditor" +msgstr "Editores de volume" -msgid "default.genres.photo" -msgstr "Fotografia" +msgid "default.groups.abbrev.volumeEditor" +msgstr "EV" -msgid "default.genres.figure" -msgstr "Figura" +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

          Os autores são convidados a fazer uma submissão a esta editora. As " +"submissões consideradas adequadas serão enviadas para revisão por pares " +"antes de determinar se serão aceitas ou rejeitadas.

          Antes de fazer uma " +"submissão, os autores são responsáveis por obter permissão para publicar " +"qualquer material incluído na submissão , como fotografias, documentos e " +"conjuntos de dados. Todos os autores identificados na submissão devem " +"consentir em ser identificados como autores. Onde apropriado, a investigação " +"deve ser aprovada por um comité de ética apropriado de acordo com os " +"requisitos legais do país do estudo.

          Um editor pode rejeitar uma " +"submissão se ela não responder aos padrões mínimos de qualidade. Antes de " +"submeter, certifique-se de que o âmbito e o esboço do livro estão " +"estruturados e articulados adequadamente. O título deve ser conciso e o " +"resumo deve ser autossuficiente. Isso aumentará a probabilidade de os " +"revisores concordarem em rever o livro. Quando estiver satisfeito de que a " +"sua submissão responde a esse padrão, siga a lista de verificação abaixo " +"para preparar a sua submissão.

          " + +msgid "default.contextSettings.checklist" +msgstr "" +"

          Todas as submissões devem seguir os seguintes requisitos.

          • Esta " +"submissão segue os requisitos descritos nas Instruções aos Autores.
          • Esta " +"submissão não foi publicada anteriormente, nem foi submetida a outra editora " +"para consideração.
          • Todas as referências foram verificadas quanto à " +"exatidão e integridade.
          • Todas as tabelas e as figuras foram " +"numeradas e rotuladas.
          • Foi obtida permissão para publicar todas as " +"fotografias, conjuntos de dados e outros materiais enviados nesta submissão." +"
          " -msgid "default.genres.table" -msgstr "Tabela" +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

          Os nomes e endereços de e-mail inseridos nesta editora serão usados " +"exclusivamente para os propósitos da editora e não serão tornados públicos " +"para qualquer outro propósito ou disponibilizados a terceiros.

          " -msgid "default.genres.prospectus" -msgstr "Prospecto" +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Esta editora fornece acesso aberto imediato aos seus conteúdos seguindo o " +"princípio de que a disponibilização gratuita da investigação apoia uma maior " +"troca global de conhecimento." -msgid "default.genres.preface" -msgstr "Prefácio" +msgid "default.contextSettings.forReaders" +msgstr "" +"Encorajamos os leitores a registar-se para receber notificações da editora. " +"Aceda através do botão de Registo no canto superior direito da página de início da editora. Com " +"este registo, o leitor irá receber por e-mail o Sumário de cada nova " +"monografia publicada pela editora. Esta lista também permite que a editora " +"anuncie um certo nível de apoio ou de quantidade de leitores. Saiba mais " +"sobre a Declaração de Privacidade da editora que " +"assegura aos leitores que o seu nome e e-mail não serão utilizados para " +"outros propósitos." -msgid "default.genres.index" -msgstr "Sumário" +msgid "default.contextSettings.forAuthors" +msgstr "" +"Interessado em submeter o seu manuscrito a esta editora? Leia Sobre a Editora para saber mais " +"sobre as políticas da editora e as Instruções aos Autores. Os autores " +"têm primeiro que se registar na editora antes de enviar a submissão, ou se já estiver " +"registado pode simplesmente entrar no " +"sistema e iniciar o processo de submissão em 5 passos." -msgid "default.genres.glossary" -msgstr "Glossário" +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Encorajamos as bibliotecas a listar esta editora nos seus catálogos de " +"recursos eletrónicos. Este sistema de publicação é um software de código " +"aberto também é adequado para bibliotecas que queiram alojar editoras para " +"os seus membros que estejam envolvidos em processos de edição e publicação " +"(veja Open Monograph Press)." -msgid "default.genres.chapter" -msgstr "Manuscrito do Capítulo" +msgid "default.groups.name.externalReviewer" +msgstr "Revisor Externo" -msgid "default.genres.manuscript" -msgstr "Manuscrito do livro" +msgid "default.groups.plural.externalReviewer" +msgstr "Revisores Externos" -msgid "default.genres.bibliography" -msgstr "Bibliografia" +msgid "default.groups.abbrev.externalReviewer" +msgstr "RE" -msgid "default.genres.appendix" -msgstr "Apêndice" +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "O texto cumpre as normas estilísticas e bibliográficas referidas nas Instruções aos Autores, que podem ser lidas em " +#~ "Sobre a Editora." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "O texto foi formatado em espaço simples; com fonte a 12 pontos; adota " +#~ "itálicos, em vez de sublinhados (exceto para endereços URL); e todas as " +#~ "ilustrações, figuras, e tabelas encontram-se no correto local no texto, e " +#~ "não todas no final." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "Foram inseridos os URLs das referências, quando disponíveis." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "O ficheiro da submissão encontra-se em formato Microsoft Word, RTF, ou " +#~ "OpenDocument." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "A submissão não foi previamente publicada, nem se encontra em " +#~ "consideração em outra editora (ou foi inserida uma explicação nos " +#~ "Comentários ao Editor)." diff --git a/locale/pt_PT/editor.po b/locale/pt_PT/editor.po index 188e132730a..fdcc971a506 100644 --- a/locale/pt_PT/editor.po +++ b/locale/pt_PT/editor.po @@ -11,197 +11,197 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "" -"O identificador público '{$publicIdentifier}' já existe para outro objeto do " -"mesmo tipo. Escolha identificadores únicos para objetos do mesmo tipo." +msgid "editor.submissionArchive" +msgstr "Arquivo de Submissões" -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "" -"Qualquer ficheiro já enviado para qualquer etapa do processo editorial pode " -"ser adicionado aos ficheiros de prova assinalando a opção 'Incluir' abaixo e " -"clicando em 'Pesquisar': todos os ficheiros disponíveis aparecerão e podem " -"ser incluídos." +msgid "editor.monograph.cancelReview" +msgstr "Cancelar Pedido" -msgid "editor.monograph.proof.addNote" -msgstr "Adicionar resposta" +msgid "editor.monograph.clearReview" +msgstr "Eliminar Revisor" -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Estabelecer condições" +msgid "editor.monograph.enterRecommendation" +msgstr "Inserir Recomendação" -msgid "editor.monograph.approvedProofs.edit" -msgstr "Estabelecer condições para descarregar" +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Insira a Recomendação do Revisor" -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "" -"Adicionar formatos de publicação (ex.: digital, em papel) para que o editor " -"de layout prepare as provas para a leitura de provas. As Provas " -"devem ser verificadas e aprovadas e a entrada no Catálogo para o " -"formato deve ser marcada como publicada na entrada do catálogo do livro, " -"para que esse formato fique Disponível (i.e., publicado)." +msgid "editor.monograph.recommendation" +msgstr "Recomendação" -msgid "editor.monograph.production.approvalAndPublishingDescription" +msgid "editor.monograph.selectReviewerInstructions" msgstr "" -"Diferentes formatos de publicação, tal como capa dura, capa mole e digital, " -"podem ser transferidos para a secção de Formatos de Publicação abaixo. Pode " -"utilizar a grelha de formatos de publicação abaixo como lista de verificação " -"para as tarefas a fazer até publicar um formato." +"Selecione um revisor da lista abaixo e clique no botão \"Selecionar Revisor" +"\" para continuar." -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Aprovação e Publicação" - -msgid "editor.monograph.proofs" -msgstr "Provas" +msgid "editor.monograph.replaceReviewer" +msgstr "Substituir Revisor" -msgid "editor.monograph.editorial.fairCopy" -msgstr "Ficheiro revisto" +msgid "editor.monograph.editorToEnter" +msgstr "Editor insere recomendação/comentários pelo revisor" -msgid "editor.submission.introduction" -msgstr "" -"Na etapa Submissão, o editor, após verificar os ficheiros submetidos, " -"seleciona a ação apropriada (que inclui notificação ao autor): Enviar para " -"Revisão Interna (implica escolher os ficheiros a enviar para Revisão " -"Interna); Enviar para Revisão Externa (implica escolher os ficheiros a " -"enviar para Revisão Externa); Aceitar Submissão (implica escolher os " -"ficheiros a enviar para a etapa de Edição); ou Rejeitar Submissão (arquiva a " -"submissão)." +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Enviar revisão" -msgid "editor.monograph.legend.uploaded" -msgstr "Ficheiro enviado pelo papel na coluna título da tabela" +msgid "editor.monograph.peerReviewOptions" +msgstr "Opções de Revisão por Pares" -msgid "editor.monograph.legend.complete" -msgstr "Ação concluída" +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Ficheiros para Leitura de Provas" -msgid "editor.monograph.legend.in_progress" -msgstr "Ação em progresso ou ainda não concluída" +msgid "editor.monograph.internalReview" +msgstr "Iniciar Revisão Interna" -msgid "editor.monograph.legend.delete" -msgstr "Eliminar item" +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Selecione os ficheiros abaixo para enviar para a etapa de revisão interna." -msgid "editor.monograph.legend.edit" -msgstr "Editar item" +msgid "editor.monograph.externalReview" +msgstr "Iniciar Revisão Externa" -msgid "editor.monograph.legend.notes_new" -msgstr "" -"Informação do ficheiro: notas, opções de notificação, e histórico (Novas " -"notas desde a última visita)" +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Selecionar Ficheiros de Rascunho Finais" -msgid "editor.monograph.legend.notes" -msgstr "" -"Informação do ficheiro: notas, opções de notificação, e histórico (Notas " -"encontram-se disponíveis)" +msgid "editor.monograph.final.currentFiles" +msgstr "Fciheiros de Rascunho Finais Atuais" -msgid "editor.monograph.legend.notes_none" -msgstr "" -"Informações do ficheiro: notas, opções de notificação, e histórico (Não " -"foram adicionadas notas)" +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Ficheiros Atuais" -msgid "editor.monograph.legend.more_info" -msgstr "Mais informação: notas do ficheiro, opções de notificação, e histórico" +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Mensagem ao utilizador" -msgid "editor.monograph.legend.settings" -msgstr "" -"Ver e aceder às configurações do item, tais como opções de informação e " -"eliminação" +msgid "editor.monograph.legend.submissionActions" +msgstr "Ações da Submissão" -msgid "editor.monograph.legend.add_user" -msgstr "Adicionar utilizador à secção" +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Ações e opções gerais da submissão." -msgid "editor.monograph.legend.add" -msgstr "Enviar um ficheiro para a secção" +msgid "editor.monograph.legend.sectionActions" +msgstr "Ações da Secção" -msgid "editor.monograph.legend.participants" +msgid "editor.monograph.legend.sectionActionsDescription" msgstr "" -"Ver e gerir os participantes desta submissão: autores, editores, designers, " -"e outros" +"Opções específicas de uma dada secção, por exemplo envio de ficheiros ou " +"inclusão de utilizadores." -msgid "editor.monograph.legend.bookInfo" -msgstr "Ver e gerir metadados, notas, notificações, e histórico da submissão" +msgid "editor.monograph.legend.itemActions" +msgstr "Ações de item" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Ações e opções específicas de um ficheiro." msgid "editor.monograph.legend.catalogEntry" msgstr "" "Ver e gerir a entrada no catálogo da submissão, incluindo metadados e " "formatos de publicação" -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Ações e opções específicas de um ficheiro." - -msgid "editor.monograph.legend.itemActions" -msgstr "Ações de item" +msgid "editor.monograph.legend.bookInfo" +msgstr "Ver e gerir metadados, notas, notificações, e histórico da submissão" -msgid "editor.monograph.legend.sectionActionsDescription" +msgid "editor.monograph.legend.participants" msgstr "" -"Opções específicas de uma dada secção, por exemplo envio de ficheiros ou " -"inclusão de utilizadores." +"Ver e gerir os participantes desta submissão: autores, editores, designers, " +"e outros" -msgid "editor.monograph.legend.sectionActions" -msgstr "Ações da Secção" +msgid "editor.monograph.legend.add" +msgstr "Enviar um ficheiro para a secção" -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Ações e opções gerais da submissão." +msgid "editor.monograph.legend.add_user" +msgstr "Adicionar utilizador à secção" -msgid "editor.monograph.legend.submissionActions" -msgstr "Ações da Submissão" +msgid "editor.monograph.legend.settings" +msgstr "" +"Ver e aceder às configurações do item, tais como opções de informação e " +"eliminação" -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Mensagem ao utilizador" +msgid "editor.monograph.legend.more_info" +msgstr "Mais informação: notas do ficheiro, opções de notificação, e histórico" -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Ficheiros Atuais" +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Informações do ficheiro: notas, opções de notificação, e histórico (Não " +"foram adicionadas notas)" -msgid "editor.monograph.final.currentFiles" -msgstr "Fciheiros de Rascunho Finais Atuais" +msgid "editor.monograph.legend.notes" +msgstr "" +"Informação do ficheiro: notas, opções de notificação, e histórico (Notas " +"encontram-se disponíveis)" -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Selecionar Ficheiros de Rascunho Finais" +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Informação do ficheiro: notas, opções de notificação, e histórico (Novas " +"notas desde a última visita)" -msgid "editor.monograph.externalReview" -msgstr "Iniciar Revisão Externa" +msgid "editor.monograph.legend.edit" +msgstr "Editar item" -msgid "editor.monograph.internalReviewDescription" -msgstr "" -"Selecione os ficheiros abaixo para enviar para a etapa de revisão interna." +msgid "editor.monograph.legend.delete" +msgstr "Eliminar item" -msgid "editor.monograph.internalReview" -msgstr "Iniciar Revisão Interna" +msgid "editor.monograph.legend.in_progress" +msgstr "Ação em progresso ou ainda não concluída" -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Ficheiros para Leitura de Provas" +msgid "editor.monograph.legend.complete" +msgstr "Ação concluída" -msgid "editor.monograph.peerReviewOptions" -msgstr "Opções de Revisão por Pares" +msgid "editor.monograph.legend.uploaded" +msgstr "Ficheiro enviado pelo papel na coluna título da tabela" -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Enviar revisão" +msgid "editor.submission.introduction" +msgstr "" +"Na etapa Submissão, o editor, após verificar os ficheiros submetidos, " +"seleciona a ação apropriada (que inclui notificação ao autor): Enviar para " +"Revisão Interna (implica escolher os ficheiros a enviar para Revisão " +"Interna); Enviar para Revisão Externa (implica escolher os ficheiros a " +"enviar para Revisão Externa); Aceitar Submissão (implica escolher os " +"ficheiros a enviar para a etapa de Edição); ou Rejeitar Submissão (arquiva a " +"submissão)." -msgid "editor.monograph.editorToEnter" -msgstr "Editor insere recomendação/comentários pelo revisor" +msgid "editor.monograph.editorial.fairCopy" +msgstr "Ficheiro revisto" -msgid "editor.monograph.replaceReviewer" -msgstr "Substituir Revisor" +msgid "editor.monograph.proofs" +msgstr "Provas" -msgid "editor.monograph.selectReviewerInstructions" +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Aprovação e Publicação" + +msgid "editor.monograph.production.approvalAndPublishingDescription" msgstr "" -"Selecione um revisor da lista abaixo e clique no botão \"Selecionar Revisor\"" -" para continuar." +"Diferentes formatos de publicação, tal como capa dura, capa mole e digital, " +"podem ser transferidos para a secção de Formatos de Publicação abaixo. Pode " +"utilizar a grelha de formatos de publicação abaixo como lista de verificação " +"para as tarefas a fazer até publicar um formato." -msgid "editor.monograph.recommendation" -msgstr "Recomendação" +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Adicionar formatos de publicação (ex.: digital, em papel) para que o editor " +"de layout prepare as provas para a leitura de provas. As Provas " +"devem ser verificadas e aprovadas e a entrada no Catálogo para o " +"formato deve ser marcada como publicada na entrada do catálogo do livro, " +"para que esse formato fique Disponível (i.e., publicado)." -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Insira a Recomendação do Revisor" +msgid "editor.monograph.approvedProofs.edit" +msgstr "Estabelecer condições para descarregar" -msgid "editor.monograph.enterRecommendation" -msgstr "Inserir Recomendação" +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Estabelecer condições" -msgid "editor.monograph.clearReview" -msgstr "Eliminar Revisor" +msgid "editor.monograph.proof.addNote" +msgstr "Adicionar resposta" -msgid "editor.monograph.cancelReview" -msgstr "Cancelar Pedido" +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Qualquer ficheiro já enviado para qualquer etapa do processo editorial pode " +"ser adicionado aos ficheiros de prova assinalando a opção 'Incluir' abaixo e " +"clicando em 'Pesquisar': todos os ficheiros disponíveis aparecerão e podem " +"ser incluídos." -msgid "editor.submissionArchive" -msgstr "Arquivo de Submissões" +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"O identificador público '{$publicIdentifier}' já existe para outro objeto do " +"mesmo tipo. Escolha identificadores únicos para objetos do mesmo tipo." msgid "editor.submissions.assignedTo" msgstr "Designar a um Editor" diff --git a/locale/pt_PT/emails.po b/locale/pt_PT/emails.po index b1e6d832028..4122a33dd6c 100644 --- a/locale/pt_PT/emails.po +++ b/locale/pt_PT/emails.po @@ -1,6 +1,8 @@ +# Carla Marques , 2022, 2023. +# José Carvalho , 2022. msgid "" msgstr "" -"PO-Revision-Date: 2020-09-29 10:49+0000\n" +"PO-Revision-Date: 2023-04-18 09:48+0000\n" "Last-Translator: Carla Marques \n" "Language-Team: Portuguese (Portugal) \n" @@ -9,119 +11,81 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.13.1\n" -msgid "emails.submissionAck.description" -msgstr "" -"Este e-mail quando está ativo, é enviado automaticamente ao autor quando " -"envia uma submissão à editora. Fornece informações sobre como seguir a " -"submissão durante o processo editorial e agradece ao autor a submissão." +msgid "emails.passwordResetConfirm.subject" +msgstr "Confirmação de Alteração de Senha" -msgid "emails.submissionAck.body" +msgid "emails.passwordResetConfirm.body" msgstr "" -"{$authorName}:
          \n" +"Recebemos um pedido de alteração da sua senha para o site de {$siteTitle}." "
          \n" -"Agradecmos a submissão do seu manuscrito, "{$submissionTitle}" a " -"{$contextName}. Conseguirá seguir o progresso da submissão através do " -"sistema de gestão editorial online que estamos a utilizar, bastando para " -"isso entrar no sistema com o seu utilizador:
          \n" "
          \n" -"URL do manuscrito: {$submissionUrl}
          \n" -"Nome de utilizador: {$authorUsername}
          \n" +"Se não enviou este pedido, ignore este e-mail e a sua senha permanecerá " +"inalterada. Se pretende alterar a sua senha, clique no URL abaixo.
          \n" "
          \n" -"Em caso de dúvidas, entre em contacto connosco. Agradecemos por considerar a " -"nossa editora como um veículo para os seus trabalhos.
          \n" +"Alterar a minha senha: {$passwordResetUrl}
          \n" "
          \n" -"{$editorialContactSignature}" - -msgid "emails.userRegister.subject" -msgstr "Registo da Editora" +"{$siteContactName}" -msgid "emails.passwordReset.description" +msgid "emails.passwordReset.subject" msgstr "" -"Este e-mail é enviada a utilizadores registados quando a senha é alterada " -"com sucesso quando seguem o processo do e-mail PASSWORD_RESET_CONFIRM." msgid "emails.passwordReset.body" msgstr "" -"A sua senha foi alterada com sucesso para o site de {$siteTitle}.
          \n" -"
          \n" -"Nome de utilizador: {$username}
          \n" -"Senha: {$password}
          \n" -"
          \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.subject" -msgstr "Senha alterada" -msgid "emails.passwordResetConfirm.description" -msgstr "" -"Este e-mail é enviado para um utilizador registado que indique que se " -"esqueceu da sua senha ou não consiga aceder ao sistema. Fornece um URL para " -"alteração de senha." +msgid "emails.userRegister.subject" +msgstr "Registo da Editora" -msgid "emails.passwordResetConfirm.body" +msgid "emails.userRegister.body" msgstr "" -"Recebemos um pedido de alteração da sua senha para o site de {$siteTitle}.<" -"br />\n" +"{$recipientName}
          \n" "
          \n" -"Se não enviou este pedido, ignore este e-mail e a sua senha permanecerá " -"inalterada. Se pretende alterar a sua senha, clique no URL abaixo.
          \n" +"Encontra-se registado com sucesso na {$contextName}. Encontra abaixo o seu " +"nome de utilizador e senha, que serão necessários para entrar no site da " +"editora. A qualquer momento, pode solicitar que seja removido da lista de " +"utilizadores, entrando em contacto com a editora.
          \n" "
          \n" -"Alterar a minha senha: {$url}
          \n" +"Nome de utilizador: {$recipientUsername}
          \n" +"Senha: {$password}
          \n" "
          \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.subject" -msgstr "Confirmação de Alteração de Senha" +"Agradecendo antecipadamente o seu interesse,
          \n" +"{$signature}" -msgid "emails.notification.description" -msgstr "" -"Este e-mail é enviado para utilizadores registados que pretendem receber " -"este tipo de notificação." +msgid "emails.userValidateContext.subject" +msgstr "Valide a sua conta" -msgid "emails.notification.body" +msgid "emails.userValidateContext.body" msgstr "" -"Tem uma nova notificação de {$siteTitle}:
          \n" +"{$recipientName}
          \n" "
          \n" -"{$notificationContents}
          \n" +"Criou uma nova conta em {$contextName}, mas antes de poder começar a utilizá-" +"la, é necessário validar a sua conta de e-mail. Para isso, clique no link " +"abaixo:
          \n" "
          \n" -"Link: {$url}
          \n" +"{$activateUrl}
          \n" "
          \n" -"Este é um e-mail gerado automaticamente; por favor não responda a esta " -"mensagem.
          \n" -"{$principalContactSignature}" - -msgid "emails.notification.subject" -msgstr "Nova notificação de {$siteTitle}" - -msgid "emails.submissionAck.subject" -msgstr "Agradecimento de Submissão" +"Obrigado,
          \n" +"{$contextSignature}" -msgid "emails.publishNotify.description" -msgstr "" -"Este e-mail é enviado a leitores registados através do link \"Notificar " -"Utilizadores\" na página do Editor. Notifica os leitores da publicação de um " -"novo livro e convida-os a visitar o URL da editora." +msgid "emails.userValidateSite.subject" +msgstr "Valide a sua Conta" -msgid "emails.publishNotify.body" +msgid "emails.userValidateSite.body" msgstr "" -"Caros leitores:
          \n" +"{$recipientName}
          \n" "
          \n" -"{$contextName} publicou um novo livro disponível para consulta em " -"{$contextUrl}. Convidamo-lo a ler o Sumário aqui e a visitar o nosso site " -"para ler monografias e outros itens do seu interesse.
          \n" +"Criou uma conta em {$siteTitle}, mas antes de poder começar a utilizá-la, é " +"necessário validar a sua conta de e-mail. Para isso, clique no link abaixo:" "
          \n" -"Agradecendo o seu contínuo interesse no nosso trabalho,
          \n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.subject" -msgstr "Novo livro publicado" +"
          \n" +"{$activateUrl}
          \n" +"
          \n" +"Obrigado,
          \n" +"{$siteSignature}" -msgid "emails.reviewerRegister.description" -msgstr "" -"Este e-mail é enviado para novos utilizadores registados como revisores como " -"boas-vindas ao sistema e fornecer o nome de utilizador e senha." +msgid "emails.reviewerRegister.subject" +msgstr "Registo como Revisor em {$contextName}" msgid "emails.reviewerRegister.body" msgstr "" @@ -138,160 +102,16 @@ msgstr "" "as interações com a editora neste site. Pode desejar, por exemplo, atualizar " "o seu perfil, incluindo os seus interesses de revisão.
          \n" "
          \n" -"Nome de utilizador: {$username}
          \n" -"Senha: {$password}
          \n" -"
          \n" -"Atenciosamente,
          \n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.subject" -msgstr "Registo como Revisor em {$contextName}" - -msgid "emails.userValidate.description" -msgstr "" -"Este e-mail é enviado para novos utilizadores registados para lhes dar as " -"boas-vindas e fornecer um registo do seu nome de utilizador e senha." - -msgid "emails.userValidate.body" -msgstr "" -"{$userFullName}
          \n" -"
          \n" -"Criou uma conta em {$contextName}, mas antes de poder aceder ao site, é " -"necessário que valide a sua conta de e-mail. Para validar, clique no link " -"abaixo:
          \n" -"
          \n" -"{$activateUrl}
          \n" -"
          \n" -"Atenciosamente,
          \n" -"{$principalContactSignature}" - -msgid "emails.userValidate.subject" -msgstr "Validar a sua Conta" - -msgid "emails.userRegister.description" -msgstr "" -"Este e-mail é enviado a novos utilizadores que se registaram para lhes dar " -"as boas-vindas ao sistema e fornecer-lhes o nome de utilizador e senha." - -msgid "emails.userRegister.body" -msgstr "" -"{$userFullName}
          \n" -"
          \n" -"Encontra-se registado com sucesso na {$contextName}. Encontra abaixo o seu " -"nome de utilizador e senha, que serão necessários para entrar no site da " -"editora.\n" -"A qualquer momento, pode solicitar que seja removido da lista de " -"utilizadores, entrando em contacto com a editora.
          \n" -"
          \n" -"Nome de utilizador: {$username}
          \n" +"Nome de utilizador: {$recipientUsername}
          \n" "Senha: {$password}
          \n" "
          \n" -"Agradecendo antecipadamente o seu interesse,
          \n" -"{$principalContactSignature}" - -msgid "emails.reviewRequestOneclick.description" -msgstr "" -"Este e-mail enviado pelo Editor de Secção solicita ao Revisor que aceite ou " -"rejeite a tarefa de rever a submissão. Fornece informação sobre a submissão " -"tal como título e resumo, prazo de envio da revisão, e como aceder à " -"submissão. Esta mensagem é utilizada quando foi selecionado o Processo de " -"Revisão Padrão em Configurações > Fluxo de Trabalho > Revisão, e foi ativado " -"o acesso em 1 clique." - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"{$reviewerName}:
          \n" -"
          \n" -"Acreditamos que daria excelente revisor para o manuscrito, " -""{$submissionTitle}," que foi submetido a {$contextName}. O resumo " -"da submissão encontra-se abaixo na mensagem.
          \n" -"
          \n" -"Entre no sistema com o seu nome de utilizador até {$weekLaterDate} para nos " -"inidicar se está disponível ou não para realizar a tarefa de revisão, bem " -"como poder visualizar a submissão e registar a sua revisão e recomendações. <" -"br />\n" -"
          \n" -"Prazo de envio da revisão {$reviewDueDate}.
          \n" -"
          \n" -"URL da submissão: {$submissionReviewUrl}
          \n" -"
          \n" -"Agradecemos por considerar a nossa solicitação.
          \n" -"
          \n" -"{$editorialContactSignature}
          \n" -"
          \n" -"
          \n" -"
          \n" -""{$submissionTitle}"
          \n" -"
          \n" -"{$abstractTermIfEnabled}
          \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Pedido de revisão" - -msgid "emails.reviewRequest.description" -msgstr "" -"Este e-mail é enviado pelo Editor de Secção para solicitar ao Revisor que " -"aceite ou rejeite a tarefa de revisão da submissão. Fornece informação sobre " -"a submissão, tal como título e resumo, prazo de envio da revisão, e como " -"aceder à submissão. Esta mensagem é utilizada quando o Processo de Revisão " -"Padrão foi selecionado em Configurações > Fluxo de trabalho > Revisão. (De " -"outra forma ver REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequest.body" -msgstr "" -"Caro(a) {$reviewerName},
          \n" -"
          \n" -"{$messageToReviewer}
          \n" -"
          \n" -"Entre no sistema com o seu nome de utilizador até {$responseDueDate} para " -"indicar se está disponível ou não para realizar a revisão, bem como ter " -"acesso à submissão e registar a sua revisão e recomendação.
          \n" -"
          \n" -"Prazo de envio da revisão {$reviewDueDate}.
          \n" -"
          \n" -"URL da submissão: {$submissionReviewUrl}
          \n" -"
          \n" -"Nome de utilizador: {$reviewerUserName}
          \n" -"
          \n" -"Agradecemos por considerar nossa solicitação.
          \n" -"
          \n" -"
          \n" "Atenciosamente,
          \n" -"{$editorialContactSignature}
          \n" - -msgid "emails.reviewRequest.subject" -msgstr "Pedido de revisão" +"{$signature}" -msgid "emails.editorAssign.description" -msgstr "" -"Este e-mail notifica o Editor de Secção que o Editor lhe atribuiu a tarefa " -"de supervisionar o processo editorial da submissão. Fornece informação sobre " -"a submissão e como aceder-lhe no site da editora." - -msgid "emails.editorAssign.body" -msgstr "" -"{$editorialContactName}:
          \n" -"
          \n" -"Foi-lhe atribuída a submissão, "{$submissionTitle}," a " -"{$contextName} como Editor para seguir o processo editorial completo.
          " -"\n" -"
          \n" -"URL da submissão: {$submissionUrl}
          \n" -"Nome de utilizador: {$editorUsername}
          \n" -"
          \n" -"Atenciosamente," - -msgid "emails.editorAssign.subject" -msgstr "Tarefa editorial" - -msgid "emails.submissionAckNotUser.description" -msgstr "" -"Este e-mail, quando ativo, é enviado automaticamente para os co-autores que " -"não são utilizadores registados do OMP, inseridos durante o processo de " -"submissão." +msgid "emails.submissionAckNotAuthor.subject" +msgstr "Agradecimento pela submissão" -msgid "emails.submissionAckNotUser.body" +msgid "emails.submissionAckNotAuthor.body" msgstr "" "Olá,
          \n" "
          \n" @@ -301,104 +121,74 @@ msgstr "" "Em caso de dúvidas, entre em contacto. Agradecemos por considerar a nossa " "editora como veículo para os seus trabalhos.
          \n" "
          \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.subject" -msgstr "Agradecimento pela submissão" - -msgid "emails.reviewCancel.subject" -msgstr "Pedido de Revisão Cancelada" - -msgid "emails.reviewRequestAttached.description" -msgstr "" -"Este e-mail é enviado pelo Editor de Série ao Revisor para lhe solicitar que " -"aceite ou rejeite a tarefa de rever uma submissão. Inclui a submissão como " -"anexo. Esta mensagem é utilizada quado o Processo de Revisão com Anexo de E-" -"mail é selcionado em Configurações > Fluxo de Trabalho > Revisão. (De outra " -"forma ver REVIEW_REQUEST.)" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName}:
          \n" -"
          \n" -"Acreditamos que seria uma excelente escolha para revisor do manuscrito " -""{$submissionTitle}," e pedimos-lhe que considere realizar esta " -"importante tarefa para nós. As instruções de revisão desta editora encontram-" -"se abaixo, e a submissão segue em anexo ao e-mail. A sua revisão da " -"submissão, bem como a sua recomendação, devem ser enviadas até " -"{$reviewDueDate}.
          \n" -"
          \n" -"O prazo de resposta se está ou não disponível para realizar esta revisão é " -"{$weekLaterDate}.
          \n" -"
          \n" -"Agradecemos considerar a nossa solicitação.
          \n" -"
          \n" -"{$editorialContactSignature}
          \n" -"
          \n" -"
          \n" -"Instruções de revisão
          \n" -"
          \n" -"{$reviewGuidelines}
          \n" +"{$contextSignature}" -msgid "emails.reviewRequestAttached.subject" -msgstr "Pedido de Revisão de Manuscrito" +msgid "emails.editorAssign.subject" +msgstr "Foi designado como editor a uma submissão para {$contextName}" -msgid "emails.reviewRequestRemindAutoOneclick.description" +msgid "emails.editorAssign.body" msgstr "" -"Este e-mail é enviado automaticamente quando ultrapassa o prazo de " -"confirmação do revisor (ver Opções de Revisão em Configurações > Fluxo de " -"trabalho > Revisão) e o acesso 1-clique encontra-se ativado. Tarefas " -"agendadas devem ser ativadas e configuradas (ver o ficheiro de configuração " -"do site)." +"Caro {$recipientName},

          Foi-lhe atribuída a submissão como Editor para " +"seguir o processo editorial.

          {$submissionTitle}
          {$authors}

          Abstract

          {$submissionAbstract}

          Se considerar " +"a submissão relevante para publicação em {$contextName}, envie para a etapa " +"de revisão clicando em \"Enviar para Revisão Interna\" e depois designe os " +"revisores clicando em \"Adicionar Revisor\".

          Se a submissão não for " +"apropriada para esta editora, rejeite a submissão.

          \n" +"Antecipadamente grato.

          Atenciosamente,

          {$contextSignature}" -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
          \n" -"Este é um lembrete relativo à sua revisão da submissão " -""{$submissionTitle}," a {$contextName}. Esperávamos ter a sua " -"resposta até {$responseDueDate}, e este e-mail foi gerado automaticamente e " -"enviado por ter ultrapassado o prazo.\n" -"
          \n" -"Acreditamos que seria um excelente revisor para este manuscrito. O resumo da " -"submissão encontra-se inserido abaixo, e esperamo que considere realizar " -"esta importante tarefa para nós.
          \n" -"
          \n" -"Entre no site da editora para indicar se está ou não disponível para " -"realizar a revisão, bem como aceder à submissão e registar a sua revisão e " -"recomendações.
          \n" -"
          \n" -"O prazo de revisão é {$reviewDueDate}.
          \n" -"
          \n" -"URL da submissão: {$submissionReviewUrl}
          \n" -"
          \n" -"Agradecemos considerar esta solicitação.
          \n" -"
          \n" -"{$editorialContactSignature}
          \n" -"
          \n" -"
          \n" -"
          \n" -""{$submissionTitle}"
          \n" -"
          \n" -"{$abstractTermIfEnabled}
          \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Pedido de Revisão de Manuscrito" +msgid "emails.reviewRequest.subject" +msgstr "Pedido de revisão" -msgid "emails.reviewRequestRemindAuto.description" +msgid "emails.reviewRequest.body" msgstr "" -"Este e-mail é enviado automaticamente quando o prazo de confirmação de um " -"revisor é ultrapassado (ver Opções de Revisão em Configurações > Fluxo de " -"Trabalho > Revisão) e o acesso 1-clique está desativad. Tarefas agendadas " -"devem estar ativadas e configuradas (ver o ficheiro de configuração do site)." +"

          Caro(a) {$recipientName},

          Acreditamos que seria um excelente " +"revisor para uma submissão enviada a {$contextName}. O título e resumo da " +"submissão encontram-se abaixo, e esperamos que considere realizar esta " +"importante tarefa para nós.

          Se estiver disponível para rever esta " +"submissão, o prazo para a revisão será {$reviewDueDate}. Pode visualizar a " +"submissão, carregar ficheiros de revisão, e submeter a sua revisão ao entrar " +"na editora e seguindos os passos através do link abaixo.

          {$submissionTitle}

          Resumo

          {$submissionAbstract}

          .Aceite ou recuse a revisão até " +"{$responseDueDate}.

          Caso tenha alguma questão sobre a " +"submissão ou o processo de revisão, não hesite em contactar-nos.

          Agradecemos por considerar a nossa solicitação.

          \n" +"Atenciosamente,

          \n" +"{$signature}" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Solicitação de revisão de uma submissão já revista" + +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

          Caro(a) {$recipientName},

          Obrigado pela sua revisão de {$submissionTitle}. Os autores consideraram o " +"feedback dos revisores e agora submeteram uma versão revista do trabalho. " +"Estamos a contactar para saber se estaria disponível para efetuar uma " +"segunda ronda de revisão para esta submissão.

          Se puder rever este " +"trabalho, a sua revisão deverá ser efetuada até {$reviewDueDate}. Pode seguir as etapas de revisão para " +"visualizar o trabalho, enviar ficheiros de revisão e submeter os seus " +"comentários.

          {$submissionTitle}

          Resumo

          {$submissionAbstract}

          Aceite ou recuse a revisão até " +"{$responseDueDate}.

          Caso tenha alguma questão sobre a submissão " +"ou o processo de revisão, não hesite em contactar-nos.

          Agradecemos por " +"considerar este nosso pedido.

          Atenciosamente,

          {$signature}" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Solicitação de Revisão de Manuscrito" -msgid "emails.reviewRequestRemindAuto.body" +msgid "emails.reviewResponseOverdueAuto.body" msgstr "" -"Caro(a) {$reviewerName},
          \n" -"Este e-mail serve de lembrete do nosso pedido de revisão da submissão " -""{$submissionTitle}," a {$contextName}. Esperávamos ter a sua " -"resposta até {$responseDueDate}, e este e-mail foi gerado automaticamente e " -"enviado quando o prazo foi ultrapassado.
          \n" +"Caro(a) {$recipientName},
          \n" +"Este e-mail serve de lembrete do nosso pedido de revisão da submissão "" +"{$submissionTitle}," a {$contextName}. Esperávamos ter a sua resposta " +"até {$responseDueDate}, e este e-mail foi gerado automaticamente e enviado " +"quando o prazo foi ultrapassado.
          \n" "{$messageToReviewer}
          \n" "
          \n" "Entre no site da editora para indicar se está disponível para realizar a " @@ -407,43 +197,47 @@ msgstr "" "
          \n" "O prazo de envio da revisão é {$reviewDueDate}.
          \n" "
          \n" -"URL da submissão: {$submissionReviewUrl}
          \n" +"URL da submissão: {$reviewAssignmentUrl}
          \n" "
          \n" -"Nome de utilizador: {$reviewerUserName}
          \n" +"Nome de utilizador: {$recipientUsername}
          \n" "
          \n" "Agradecemos considerar esta solicitação.
          \n" "
          \n" "
          \n" "Atentamente,
          \n" -"{$editorialContactSignature}
          \n" - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Solicitação de Revisão de Manuscrito" - -msgid "emails.reviewRemind.subject" -msgstr "Lembrete de Revisão da Submissão" +"{$contextSignature}
          \n" -msgid "emails.reviewAck.description" -msgstr "" -"Esta mensagem é enviada pelo Editor de Série para confirmar a receção da " -"revisão e agradecer ao revisor pela sua contribuição." +msgid "emails.reviewCancel.subject" +msgstr "Pedido de Revisão Cancelada" -msgid "emails.reviewAck.body" +msgid "emails.reviewCancel.body" msgstr "" -"{$reviewerName}:
          \n" +"{$recipientName}:
          \n" "
          \n" -"Agradecemos ter concluído a revisão da submissão " -""{$submissionTitle}," a {$contextName}. Agradecemos a sua " -"contribuição para a qualidade dos trabalhos que publicamos." +"Neste ponto, chegámos à decisão de cancelar o nosso pedido de revisão da " +"submissão, "{$submissionTitle}," a {$contextName}. Pedimos " +"desculpa por qualquer incómodo causado e esperamos poder solicitar-lhe " +"outras revisões no futuro.
          \n" +"
          \n" +"Se tiver alguma questão, não hesite em contactar-nos." -msgid "emails.reviewAck.subject" -msgstr "Agradecimento pela Revisão" +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Pedido de Revisão Restabelecido" -msgid "emails.reviewDecline.description" +msgid "emails.reviewReinstate.body" msgstr "" -"Este e-mail é enviado pelo Revisor para o Editor de Série em resposta a um " -"pedido de revisão para notificar o Editor de Série que não se encontra " -"disponível para realizar a revisão." +"

          Caro(a) {$recipientName}:

          Recentemente cancelámos o pedido de " +"revisão da submissão, {$submissionTitle}, para {$contextName}. Gostaríamos " +"de restabelecer o nosso pedido para que realize a revisão da submissão.

          Esperamos que esteja disponível para nos auxiliar no processo de " +"revisão da revista, para tal pode entrar " +"na sua contae visualizar a submissão, enviar ficheiros de revisão, e " +"enviar a sua revisão.

          Caso tenha alguma questão, não hesite em " +"contactar.

          Atenciosamente,

          {$signature}" + +msgid "emails.reviewDecline.subject" +msgstr "Indisponível para Revisão" msgid "emails.reviewDecline.body" msgstr "" @@ -454,378 +248,220 @@ msgstr "" "Agradeço por me considerarem, e poderão contactar-me no futuro para outras " "revisões futuras.
          \n" "
          \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.subject" -msgstr "Indisponível para Revisão" - -msgid "emails.reviewConfirm.description" -msgstr "" -"Este e-mail é enviado pelo Revisor para o Editor de Série em resposta a um " -"pedido de revisão para notificar o Editor de Série que o pedido de revisão " -"foi aceite e irá ser concluída até à data especificada." - -msgid "emails.reviewConfirm.body" -msgstr "" -"Editor(es):
          \n" -"
          \n" -"Estou disponível e é com todo o gosto que irei realizar a revisão da " -"submissão "{$submissionTitle}," a {$contextName}. Agradeço terem " -"se lembrado de mim, e planeio ter a revisão concluída até ao prazo de envio, " -"{$reviewDueDate}, se não antes.
          \n" -"
          \n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.subject" -msgstr "Disponível para Revisão" - -msgid "emails.reviewReinstate.description" -msgstr "" -"Este e-mail é enviado pelo Editor de Secção a um Revisor que tenha uma " -"revisão em progresso para o notificar de que a revisão foi cancelada." - -msgid "emails.reviewReinstate.body" -msgstr "" -"{$reviewerName}:
          \n" -"
          \n" -"Gostaríamos de restabelecer o nosso pedido para que realize a revisão da " -"submissão "{$submissionTitle}," a {$contextName}. Esperamos que " -"esteja disponível para nos auxiliar no processo de revisão da revista.
          " -"\n" -"
          \n" -"Se tiver alguma questão, não hesite em contactar-nos." +"{$senderName}" -msgid "emails.reviewReinstate.subject" -msgstr "Pedido de Revisão Restabelecido" +msgid "emails.reviewRemind.subject" +msgstr "Lembrete de Revisão da Submissão" -msgid "emails.reviewCancel.description" +msgid "emails.reviewRemind.body" msgstr "" -"Este e-mail é enviado pelo Editor de Série a um Revisor que tenha uma " -"revisão de uma submissão em progresso para notificá-lo que a revisão foi " -"cancelada." +"

          Caro(a) {$recipientName}:

          Este e-mail serve como lembrete " +"relativamente ao nosso pedido de revisão da submissão \"{$submissionTitle},\"" +" a {$contextName}. Esperávamos receber a sua revisão até {$reviewDueDate} e " +"gostaríamos de receber o mais breve possível que o conseguir preparar.

          Pode entrar na sua conta da " +"editora e seguir os passos de revisão para visualizar a submissão, enviar " +"ficheiros de revisão, e submeter os seus comentários.

          Se necessitar de " +"uma extensão do prazo, não hesite em contactar. Ficamos a aguardar a sua " +"revisão.

          Atenciosamente,

          {$signature}" -msgid "emails.reviewCancel.body" +msgid "emails.reviewRemindAuto.body" msgstr "" -"{$reviewerName}:
          \n" -"
          \n" -"Neste ponto, chegámos à decisão de cancelar o nosso pedido de revisão da " -"submissão, "{$submissionTitle}," a {$contextName}. Pedimos " -"desculpa por qualquer incómodo causado e esperamos poder solicitar-lhe " -"outras revisões no futuro.
          \n" -"
          \n" -"Se tiver alguma questão, não hesite em contactar-nos." +"

          Caro(a) {$recipientName}:

          Este e-mail serve de lembrete da " +"{$contextName} relativo ao nosso pedido de revisão da submissão, \"" +"{$submissionTitle}\"

          . Esperávamos receber a revisão até " +"{$reviewDueDate}, e gostaríamos de contar com a sua participação e receber a " +"revisão o mais breve que conseguir ter a revisão pronta.

          Entre na sua contada editora e siga os passos " +"de revisão para visualizar a submissão, enviar ficheiros de revisão, e " +"submeter os seus comentários.

          Se necessitar de uma extensão do prazo, " +"não hesite em contactar. Ficamos a aguardar a sua revisão.

          \n" +"Atenciosamente,

          {$contextSignature}" msgid "emails.editorDecisionAccept.subject" -msgstr "Decisão editorial" +msgstr "A sua submissão foi aceite para {$contextName}" -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "" -"Este e-mail é automaticamente enviado quando o prazo de revisão é " -"ultrapassado (ver Opções de Revisão em Configurações > Fluxo de Trabalho > " -"Revisão) e o acesso 1-clique está ativo. Tarefas agendadas devem estar " -"ativadas e configuradas (ver o ficheiro de configuração do site)." - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"{$reviewerName}:
          \n" -"
          \n" -"Este e-mail serve de lembrete do nosso pedido de revisão da submissão, " -""{$submissionTitle}," a {$contextName}. Esperávamos receber a " -"revisão até {$reviewDueDate}, e este e-mail foi gerado e enviado " -"automaticamente quando a data foi ultrapassada. Gostaríamos de a receber o " -"mais breve que a consiga ter pronta.
          \n" -"
          \n" -"URL da Submissão: {$submissionReviewUrl}
          \n" -"
          \n" -"Confirme a sua disponibilidade para concluir esta contribuição vital ao " -"trabalho da editora. Ficamos a aguardar o seu contacto.
          \n" -"
          \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Lembrete automático de Revisão de Submissão" - -msgid "emails.reviewRemindAuto.description" -msgstr "" -"Este e-mail é enviado automaticamente quando o prazo de revisão é " -"ultrapassado (ver Opções de Revisão em Configurações > Fluxo de trabalho > " -"Revisão) e o acesso 1-clique está desativado. Tarefas agendadas devem estar " -"ativadas e configuradas (ver o ficheiro de configuração do site)." - -msgid "emails.reviewRemindAuto.body" +msgid "emails.editorDecisionAccept.body" msgstr "" -"{$reviewerName}:
          \n" -"
          \n" -"Este e-mail serve de lembrete do nosso pedido de revisão da submissão, " -""{$submissionTitle}," a {$contextName}. Esperávamos receber a " -"revisão até {$reviewDueDate}, e este e-mail foi gerado e enviado " -"automaticamente quando a data foi ultrapassada. Gostaríamos mesmo assim de " -"contar com a sua participação e receber a revisão o mais breve que conseguir " -"ter a revisão pronta.
          \n" -"
          \n" -"Se não se recordar do seu nome de utilizador e senha do site, pode utilizar " -"este link para alterar a sua senha (que será enviada por e-mail junto com o " -"seu nome de utlizador). {$passwordResetUrl}
          \n" -"
          \n" -"URL da Submissão: {$submissionReviewUrl}
          \n" -"
          \n" -"Nome de utilizador: {$reviewerUserName}
          \n" -"
          \n" -"Confirme se está disponível para concluir esta contribuição vital para o " -"trabalho da editora. Ficamos a aguardar o seu contacto.
          \n" -"
          \n" -"{$editorialContactSignature}" +"

          Caro(a) {$recipientName},

          Tenho o prazer de informar que decidimos " +"aceitar sua submissão sem revisão adicional. Após uma análise cuidadosa, " +"descobrimos que sua submissão, {$submissionTitle}, atendeu ou superou as " +"nossas expectativas. Estamos felizes em publicar o seu trabalho em " +"{$contextName} e agradecemos por escolher nossa editora para publicação.

          A sua submissão será publicada em breve no website da editora " +"{$contextName} e está convidado a incluí-la na sua lista de publicações. " +"Reconhecemos o trabalho árduo de cada submissão bem-sucedida e queremos " +"parabenizá-lo por isso.

          A sua submissão passará agora por edição e " +"formatação para prepará-la para a publicação.

          Em breve receberá mais " +"instruções.

          Se tiver alguma dúvida, contacte-nos através do seu painel de submissão.

          Atenciosamente,

          {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "A sua submissão foi enviada para revisão interna" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

          Caro {$recipientName},

          É com muito gosto que informo que um editor " +"reviu a sua submissão, {$submissionTitle}, e decidiu enviar para revisão " +"interna. Terá notícias nossas em breve junto com feedback dos revisores e " +"informação sobre as etapas seguintes.

          Note que enviar a submissão " +"para revisão interna não garante que será publicado. Teremos em consideração " +"as recomendações dos revisores antes de ser tomada uma decisão final.

          Caso tenha alguma questão, não hesite em contactar-me através do painel " +"de submissão.

          {$signature}

          " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "A sua submissão foi enviada para edição de texto" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

          Caro{$recipientName},

          \n" +"

          É com muito gosto que informo que decidimos aceitar a sua submissão sem " +"passar por revisão por pares. Consideramos que a sua submissão, " +"{$submissionTitle}, cumpre as nossas expectativas, e não exigimos que " +"trabalhos deste tipo passem por revisão por pares. Estamos muito contentes " +"por publicar a sua obra em {$contextName} e agradecemos-lhe por escolher a " +"nossa editora como local de publicação do seu trabalho.

          \n" +"

          A sua submissão será publicada em breve no site da {$contextName} e " +"convidamo-lo a incluir na sua lista de publicações. Reconhecemos o trabalho " +"árduo que existe por trás de uma submissão bem sucedida e gostaríamos de lhe " +"dar os parabéns pelo seu esforço.

          \n" +"

          A sua submissão serguirá agora para a edição de texto e formatação para a " +"preparar para publicação.

          \n" +"

          Receberá mais instruções em breve.

          \n" +"

          Caso tenha alguma questão, por favor contacte-me através do seu dashboard de submissão.

          \n" +"

          Cumprimentos,

          \n" +"

          {$signature}

          \n" -msgid "emails.reviewRemindAuto.subject" -msgstr "Lembrete automático de Revisão da Submissão" - -msgid "emails.reviewRemindOneclick.description" +msgid "emails.layoutRequest.subject" msgstr "" -"Este e-mail é enviado pelo Editor de Série para lembrar o revisor que o " -"prazo de revisão foi ultrapassado." +"A submissão {$submissionId} está pronta para Produção em {$contextAcronym}" -msgid "emails.reviewRemindOneclick.body" +msgid "emails.layoutRequest.body" msgstr "" -"{$reviewerName}:
          \n" -"
          \n" -"Este e-mail serve como lembrete do nosso pedido de revisão da submissão, " -""{$submissionTitle}," a {$contextName}. Esperávamos receber a " -"revisão até {$reviewDueDate}, e gostaríamos de a receber o mais breve que " -"consiga tê-la pronta.
          \n" -"
          \n" -"URL da Submissão: {$submissionReviewUrl}
          \n" -"
          \n" -"Confirme a sua disponibilidade para completar esta contribuição vital ao " -"trabalho da editora. Ficamos a aguardar o seu contacto.
          \n" -"
          \n" -"{$editorialContactSignature}" +"

          Caro(a){$recipientName},

          Um novo trabalhar está disponível para " +"edição de layout:

          {$submissionId} " +"{$submissionTitle}
          {$contextName}

          1. Clique no URL da " +"Submissão abaixo.
          2. Descarregue os ficheiros e use-os para criar as " +"composições finais de acordo com as instruções e templates da editora.
          3. Faça o upload dos ficheiros para a secção dos Formatos de " +"Publicação.
          4. Use as Discussões de Produção para notificar o editor de " +"que as composições estão prontas.

          Se não conseguir efetuar esta " +"tarefa no tempo previsto ou tiver alguma dúvida acerca da submissão, não " +"hesite em contactar-nos. Agradecemos o seu " +"contributo.

          Atenciosamente,

          {$signature}" -msgid "emails.reviewRemindOneclick.subject" -msgstr "Lembrete de Revisão da Submissão" +msgid "emails.layoutComplete.subject" +msgstr "Composições concluídas" -msgid "emails.reviewRemind.description" +msgid "emails.layoutComplete.body" msgstr "" -"Este e-mail é enviado pelo Editor de Série para lembrar o revisor que o " -"prazo de revisão foi ultrapassado." +"

          Caro(a) {$recipientName}:

          As composições finais já se encontram " +"preparadas para a seguinte submissão e estão prontas para revisão final.

          {$submissionTitle}
          {$contextName}

          Se tiver alguma questão, não hesite em " +"contactar.

          Atenciosamente,

          {$senderName}

          " -msgid "emails.reviewRemind.body" -msgstr "" -"{$reviewerName}:
          \n" -"
          \n" -"Este e-mail serve como lembrete relativo ao nosso pedido de revisão da " -"submissão "{$submissionTitle}," a {$contextName}. Esperávamos " -"receber a sua revisão até {$reviewDueDate}, e gostaríamos de receber o mais " -"breve possível que o conseguir preparar.
          \n" -"
          \n" -"Se não se recordar do seu nome de utilizador e senha do site, pode utilizar " -"este link para restaurar a sua senha (que será enviada por e-mail junto com " -"o nome de utilizador). {$passwordResetUrl}
          \n" -"
          \n" -"URL da Submissão: {$submissionReviewUrl}
          \n" -"
          \n" -"Nome de utilizador: {$reviewerUserName}
          \n" -"
          \n" -"Confirme se está disponível para esta contribuição vital para o trabalho da " -"editora. Ficamos a aguardar o seu contacto.
          \n" -"
          \n" -"{$editorialContactSignature}" +msgid "emails.indexRequest.subject" +msgstr "Solicitar índice" -msgid "emails.layoutRequest.body" +msgid "emails.indexRequest.body" msgstr "" -"{$participantName}:
          \n" +"{$recipientName}:
          \n" "
          \n" -"A submissão "{$submissionTitle}" a {$contextName} está pronta a " -"publicar e necessita de composições finais executadas segundos os seguintes " -"passos.
          \n" -"1. Clique no URL da Submissão abaixo.
          \n" -"2. Entre na sua conta da editora e utilizador o ficheiro de Layout para " +"A submissão "{$submissionTitle}" a {$contextName} necessita que " +"sejam criados os índices, seguindos as etapas seguintes.
          \n" +"1. Clique no URL da Submissão.
          \n" +"2. Entre na sua conta da editora e use os ficheiros de Prova de Página para " "criar as composições finais de acordo com os padrões da editora.
          \n" -"3. Envie o e-mail CONCLUÍDO ao editor.
          \n" +"3. Envie o e-mail de CONCLUÍDO ao editor.
          \n" "
          \n" "{$contextName} URL: {$contextUrl}
          \n" "URL da Submissão: {$submissionUrl}
          \n" -"Nome de utilizador: {$participantUsername}
          \n" +"Nome de utilizador: {$recipientUsername}
          \n" "
          \n" -"Se não estiver disponível para realizar esta tarefa de moemnto ou tiver " -"alguma questão, não hesite em contactar. Agradecemos desde já a sua " -"contribuição para a editora." - -msgid "emails.layoutRequest.subject" -msgstr "Solicitar design editorial" - -msgid "emails.copyeditRequest.description" -msgstr "" -"Este e-mail é enviado pelo Editor de Série ao Editor de Texto de uma " -"submissão para solicitar que inicie o processo de edição de texto . Fornece " -"informação sobre a submissão e como lhe aceder." - -msgid "emails.copyeditRequest.body" -msgstr "" -"{$participantName}:
          \n" -"
          \n" -"Venho por este meio solicitar a realização da tarefa de edição de texto da " -"submissão "{$submissionTitle}" a {$contextName} seguindos os " -"seguintes passos.
          \n" -"1. Clique no URL da Submissão abaixo.
          \n" -"2. Entre na sua conta da editora e clique no Ficheiro que aparece no Passo " -"1.
          \n" -"3. Consulte as Instruções para Edição de Texto publicados no site.
          \n" -"4. Abra o documento descarregados e realize a edição de texto, pode " -"adicionar Questões ao Autor sempre que necessário.
          \n" -"5. Guarde o documento editado e transfira para o Passo 1 da etapa de Edição " -"de Texto.
          \n" -"6. Envie o e-mail de CONCLUÍDO ao editor.
          \n" -"
          \n" -"{$contextName} URL: {$contextUrl}
          \n" -"URL da submissão: {$submissionUrl}
          \n" -"Nome de utilizador: {$participantUsername}" - -msgid "emails.copyeditRequest.subject" -msgstr "Pedido de Edição de Texto" - -msgid "emails.editorRecommendation.description" -msgstr "" -"Este e-mail é enviado pelo Editor recomendador ou Editor de Secção para os " -"Editores decisores ou Editores de Secção para lhe dar a conhecer a sua " -"recomendação final relativa à submissão." - -msgid "emails.editorRecommendation.body" -msgstr "" -"{$editors}:
          \n" -"
          \n" -"A minha recomendação relativa à submissão a {$contextName}, " -""{$submissionTitle}" é: {$recommendation}" - -msgid "emails.editorRecommendation.subject" -msgstr "Recomendação do Editor" - -msgid "emails.editorDecisionDecline.description" -msgstr "" -"Este e-mail é enviado pelo Editor ou Editor de Série ao Autor para o " -"notificar da decisão final relativa à sua submissão." - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"{$authorName}:
          \n" -"
          \n" -"Chegamos a uma decisão relativamente à sua submissão a {$contextName}, " -""{$submissionTitle}".
          \n" +"Se não estiver disponível para realizar esta tarefa ou tiver alguma questão, " +"não hesite em contactar. Agradecemos a sua contribuição para a nossa editora." "
          \n" -"A nossa decisão é:
          \n" "
          \n" -"URL do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.subject" -msgstr "Decisão editorial" +"{$signature}" -msgid "emails.editorDecisionResubmit.description" -msgstr "" -"Este e-mail é enviado pelo Editor ou Editor de Série ao Autor para o " -"notificar da decisão final relativa à sua submissão." +msgid "emails.indexComplete.subject" +msgstr "Composições Finais de Inídices concluída" -msgid "emails.editorDecisionResubmit.body" +msgid "emails.indexComplete.body" msgstr "" -"{$authorName}:
          \n" +"{$recipientName}:
          \n" "
          \n" -"Chegámos a uma decisão relativamente à sua submissão a {$contextName}, " -""{$submissionTitle}".
          \n" +"Os índices encontram-se preparados para o manuscrito "" +"{$submissionTitle}," a {$contextName} e estão prontos para seguir para " +"Leitura de Prova
          \n" "
          \n" -"A nossa decisão é:
          \n" +"Se tiver alguma questão, não hesite em contactar.
          \n" "
          \n" -"URL do manuscrito: {$submissionUrl}" +"{$signatureFullName}" -msgid "emails.editorDecisionResubmit.subject" -msgstr "Decisão editorial" +msgid "emails.emailLink.subject" +msgstr "Manuscrito do seu possível interesse" -msgid "emails.editorDecisionRevisions.description" +msgid "emails.emailLink.body" msgstr "" -"Este e-mail é enviado pelo Editor ou Editor de Série ao Autor para o " -"notificar da decisão final relativa à sua submissão." +"Achámos que poderia ter interesse em ler "{$submissionTitle}" de " +"{$authors} publicados no Vol {$volume}, No {$number} ({$year}) de " +"{$contextName} em "{$submissionUrl}"." -msgid "emails.editorDecisionRevisions.body" +msgid "emails.emailLink.description" msgstr "" -"{$authorName}:
          \n" -"
          \n" -"Chegámos a uma decisão relativamente à sua submissão a {$contextName}, " -""{$submissionTitle}".
          \n" -"
          \n" -"A nossa decisão é:
          \n" -"
          \n" -"URL do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Decisão Editorial" +"Este e-mail padrão fornece aos leitores registados a oportunidade de enviar " +"informação sobre uma monografia a alguém que possa ter interesse em lê-la. " +"Encontra-se disponível através das Ferramentas de Leitura e deve estar ativa " +"pelo Editor-gestor da Editora na página de Configurações, Ferramentas de " +"Leitura." -msgid "emails.editorDecisionSendToProduction.description" -msgstr "" -"Este e-mail é enviado pelo Editor ou Editor de Série ao Autor para o " -"notificar que a sua submissão será enviada para produção." +msgid "emails.notifySubmission.subject" +msgstr "Notificação de Submissão" -msgid "emails.editorDecisionSendToProduction.body" +msgid "emails.notifySubmission.body" msgstr "" -"{$authorName}:
          \n" +"Tem uma nova mensagem de {$sender} relativamente a "{$submissionTitle}" +"" ({$monographDetailsUrl}):
          \n" "
          \n" -"A edição do seu manuscrito "{$submissionTitle}," foi concluída. A " -"submissão seguirá para a etapa de Produção.
          \n" +"\t\t{$message}
          \n" "
          \n" -"URL do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Decisão editorial" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "" -"Este e-mail é enviado pelo Editor ou Editor de Série ao Autor para o " -"notificar que a sua submissão foi enviada para revisão externa." +"\t\t" -msgid "emails.editorDecisionSendToExternal.body" +msgid "emails.notifySubmission.description" msgstr "" -"{$authorName}:
          \n" -"
          \n" -"Chegámos a uma decisão relativamente à sua submissão a {$contextName}, " -""{$submissionTitle}".
          \n" -"
          \n" -"A nossa decisão é:
          \n" -"
          \n" -"URL do manuscrito: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Decisão Editorial" +"Notificação de um utilizador enviado através da uma janela na informação da " +"submissão." -msgid "emails.editorDecisionAccept.description" -msgstr "" -"Este e-mail é enviado pelo Editor de Série ao Autor para o notificar da " -"decisão editorial final relativamente à sua submissão." +msgid "emails.notifyFile.subject" +msgstr "Notificação de Submissão de Ficheiro" -msgid "emails.editorDecisionAccept.body" +msgid "emails.notifyFile.body" msgstr "" -"{$authorName}:
          \n" +"Recebeu uma nova mensagem de {$sender} relativamente ao ficheiro "" +"{$fileName}" em "{$submissionTitle}" ({$monographDetailsUrl}):" "
          \n" -"Chegámos a uma decisão relativamente à sua submissão a {$contextName}, " -""{$submissionTitle}".
          \n" "
          \n" -"A decisão tomada é:
          \n" +"\t\t{$message}
          \n" "
          \n" -"URL do manuscrito: {$submissionUrl}" - -msgid "emails.layoutComplete.subject" -msgstr "Composições finais concluídas" +"\t\t" -msgid "emails.layoutRequest.description" +msgid "emails.notifyFile.description" msgstr "" -"Este e-mail é enviado pelo Editor de Série ao Editor de Layout para o " -"notificar de que foi designado para realizar a tarefa de edição de layout da " -"submissão. Fornece informação sobre a submissão e como aceder-lhe." +"Notificação enviada por um utilizador através de uma janela na informação da " +"submissão" -msgid "emails.statisticsReportNotification.description" -msgstr "" -"Este e-mail é enviado automaticamente de forma mensal a editores e editores-" -"gestores para fornecer-lhes uma visão geral da editora." +msgid "emails.statisticsReportNotification.subject" +msgstr "Atividade editorial em {$month}, {$year}" msgid "emails.statisticsReportNotification.body" msgstr "" "\n" -"{$name},
          \n" +"{$recipientName},
          \n" "
          \n" "O relatório da sua editora de {$month}, {$year} já se encontra disponível. " "As estatísticas chave deste mês encontram-se disponíveis abaixo.
          \n" @@ -836,177 +472,77 @@ msgstr "" "\t
        • Total de submissões ao sistema: {$totalSubmissions}
        • \n" "

        \n" "Entre com a sua conta na editora para ver informações mais detalhadas tendências editoriais e estatísticas de artigos publicados. Encontra-" +"href=\"{$editorialStatsLink}\">tendências editoriais e estatísticas de livros publicados. Encontra-" "se anexada uma cópia das tendências editoriais deste mês.
        \n" "
        \n" "Atentamente,
        \n" -"{$principalContactSignature}" - -msgid "emails.statisticsReportNotification.subject" -msgstr "Atividade editorial em {$month}, {$year}" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "" -"Este e-mail é enviado ao autor caso o editor decida rejeitar a submissão " -"inicialmente, antes da etapa de revisão" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\t{$authorName}:
        \n" -"
        \n" -"Chegámos a uma decisão relativamente à sua submissão a {$contextName}, " -""{$submissionTitle}".
        \n" -"
        \n" -"A nossa decisão é: Rejeitar a Submissão
        \n" -"
        \n" -"URL do Manuscrito: {$submissionUrl}\n" -"\t\t" - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Decisão Editorial" +"{$contextSignature}" -msgid "emails.notificationCenterDefault.description" -msgstr "" -"Uma mensagem padrão (em branco) utilizada no Centro de Notificações de " -"Mensagens." - -msgid "emails.notificationCenterDefault.body" -msgstr "Insira a sua mensagem." - -msgid "emails.notificationCenterDefault.subject" -msgstr "Nova mensagem sobre {$contextName}" - -msgid "emails.notifyFile.description" -msgstr "" -"Notificação enviada por um utilizador através de uma janela na informação da " -"submissão" - -msgid "emails.notifyFile.body" -msgstr "" -"Recebeu uma nova mensagem de {$sender} relativamente ao ficheiro " -""{$fileName}" em "{$submissionTitle}" " -"({$monographDetailsUrl}):
        \n" -"
        \n" -"\t\t{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifyFile.subject" -msgstr "Notificação de Submissão de Ficheiro" - -msgid "emails.notifySubmission.description" -msgstr "" -"Notificação de um utilizador enviado através da uma janela na informação da " -"submissão." - -msgid "emails.notifySubmission.body" -msgstr "" -"Tem uma nova mensagem de {$sender} relativamente a " -""{$submissionTitle}" ({$monographDetailsUrl}):
        \n" -"
        \n" -"\t\t{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifySubmission.subject" -msgstr "Notificação de Submissão" - -msgid "emails.emailLink.description" -msgstr "" -"Este e-mail padrão fornece aos leitores registados a oportunidade de enviar " -"informação sobre uma monografia a alguém que possa ter interesse em lê-la. " -"Encontra-se disponível através das Ferramentas de Leitura e deve estar ativa " -"pelo Editor-gestor da Editora na página de Configurações, Ferramentas de " -"Leitura." - -msgid "emails.emailLink.body" -msgstr "" -"Achámos que poderia ter interesse em ler "{$submissionTitle}" de " -"{$authorName} publicados no Vol {$volume}, No {$number} ({$year}) de " -"{$contextName} em "{$monographUrl}"." - -msgid "emails.emailLink.subject" -msgstr "Manuscrito do seu possível interesse" - -msgid "emails.indexComplete.description" -msgstr "" -"Este e-mail é enviado pelo Indexador ao Editor de Série para o notificar que " -"o processo de criação de índices já se encontra concluído." - -msgid "emails.indexComplete.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"Os índices encontram-se preparados para o manuscrito " -""{$submissionTitle}," a {$contextName} e estão prontos para seguir " -"para Leitura de Prova
        \n" -"
        \n" -"Se tiver alguma questão, não hesite em contactar.
        \n" -"
        \n" -"{$signatureFullName}" - -msgid "emails.indexComplete.subject" -msgstr "Composições Finais de Inídices concluída" - -msgid "emails.indexRequest.description" -msgstr "" -"Este e-mail é enviado pelo Editor de Série para o Indexador para o notificar " -"que foi designado para realizar a tarefa de criar índices para a submissão. " -"Fornece informação sobre a submissão e como aceder-lhe." +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" -msgid "emails.indexRequest.body" +msgid "emails.announcement.body" msgstr "" -"{$participantName}:
        \n" -"
        \n" -"A submissão "{$submissionTitle}" a {$contextName} necessita que " -"sejam criados os índices, seguindos as etapas seguintes.
        \n" -"1. Clique no URL da Submissão.
        \n" -"2. Entre na sua conta da editora e use os ficheiros de Prova de Página para " -"criar as composições finais de acordo com os padrões da editora.
        \n" -"3. Envie o e-mail de CONCLUÍDO ao editor.
        \n" -"
        \n" -"{$contextName} URL: {$contextUrl}
        \n" -"URL da Submissão: {$submissionUrl}
        \n" -"Nome de utilizador: {$participantUsername}
        \n" +"{$announcementTitle}
        \n" "
        \n" -"Se não estiver disponível para realizar esta tarefa ou tiver alguma questão, " -"não hesite em contactar. Agradecemos a sua contribuição para a nossa " -"editora.
        \n" +"{$announcementSummary}
        \n" "
        \n" -"{$editorialContactSignature}" +"Visite o nosso website para ler a notícia " +"completa." -msgid "emails.indexRequest.subject" -msgstr "Solicitar índice" +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Este e-mail é enviado para novos utilizadores registados para lhes dar as " +#~ "boas-vindas e fornecer um registo do seu nome de utilizador e senha." -msgid "emails.layoutComplete.description" -msgstr "" -"Este e-mail é enviado pelo Editor de Layout para o Editor de Série para o " -"notificar que o processo de layout foi concluído." +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName}
        \n" +#~ "
        \n" +#~ "Criou uma conta em {$contextName}, mas antes de poder aceder ao site, é " +#~ "necessário que valide a sua conta de e-mail. Para validar, clique no link " +#~ "abaixo:
        \n" +#~ "
        \n" +#~ "{$activateUrl}
        \n" +#~ "
        \n" +#~ "Atenciosamente,
        \n" +#~ "{$signature}" -msgid "emails.layoutComplete.body" -msgstr "" -"{$editorialContactName}:
        \n" -"
        \n" -"As compoisções finais já se encontram preparadas para o manuscrito " -""{$submissionTitle}," a {$contextName} e estão prontos para seguir " -"para leitura de prova.
        \n" -"
        \n" -"Se tiver alguma questão, não hesite em contactar.
        \n" -"
        \n" -"{$signatureFullName}" - -msgid "emails.announcement.description" -msgstr "Este e-mail é enviado quando uma nova notícia é criada." +#~ msgid "emails.userValidate.subject" +#~ msgstr "Validar a sua Conta" -msgid "emails.announcement.body" -msgstr "" -"{$title}
        \n" -"
        \n" -"{$summary}
        \n" -"
        \n" -"Visite o nosso website para ler a notícia completa." - -msgid "emails.announcement.subject" -msgstr "{$title}" +msgid "emails.reviewReinstate.subject" +msgstr "Ainda se encontra disponível para rever algo para {$contextName}?" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

        Caro(a) {$recipientName},

        O autor enviou revisões para a submissão, " +"{$authorsShort} — {$submissionTitle}.

        Como editor designado, " +"pedimos-lhe que entre na sua conta e veja as " +"revisões e emita uma decisão de aceitar, recusar ou enviar a submissão " +"para revisão adicional.




        Esta é uma mensagem automática de{$contextName}." + +msgid "emails.revisedVersionNotify.subject" +msgstr "Versão Revista Carregada" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

        Caro(a) {$recipientName},

        A seguinte submissão foi-lhe designada " +"para gerir a etapa da Produção.

        {$submissionTitle}
        {$authors}

        Resumo

        {$submissionAbstract}

        . Assim que os " +"ficheiros prontos-para-produção estiverem disponíveis, faça upload na secção " +"Publicação > Formatos de Publicação.

        Agradecemos " +"antecipadamente.

        Atenciosamente,

        {$signature}" + +msgid "emails.editorAssignReview.body" +msgstr "" +"

        Caro(a) {$recipientName},

        A seguinte submissão foi-lhe designada " +"para gerir a etapa da revisão.

        { " +"$submissionTitle}
        {$authors}

        Resumo

        {$submissionAbstract}

        Faça login em ver a submissão e designe revisores " +"qualificados. Pode designar um revisor ao clicar em \"Adicionar Revisor\".

        Agradecemos antecipadamente.

        Atenciosamente,

        {$signature}" diff --git a/locale/pt_PT/locale.po b/locale/pt_PT/locale.po index f6b63a7bcc2..4bdf49ec834 100644 --- a/locale/pt_PT/locale.po +++ b/locale/pt_PT/locale.po @@ -1,7 +1,9 @@ +# Carla Marques , 2021, 2022, 2023. +# José Carvalho , 2022, 2023, 2024. msgid "" msgstr "" -"PO-Revision-Date: 2021-01-18 15:16+0000\n" -"Last-Translator: Carla Marques \n" +"PO-Revision-Date: 2024-02-06 09:02+0000\n" +"Last-Translator: José Carvalho \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -9,634 +11,614 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.18.2\n" -msgid "grid.action.addFormat" -msgstr "Adicionar Formato da Publicação" - -msgid "grid.action.deleteFormat" -msgstr "Remover este formato" - -msgid "grid.action.editFormat" -msgstr "Editar este formato" +msgid "common.payments" +msgstr "Pagamentos" -msgid "grid.action.formatInCatalogEntry" -msgstr "O formato aparece na entrada do catálogo" +msgid "monograph.audience" +msgstr "Público" -msgid "grid.action.catalogEntry" -msgstr "Ver o formulário de entrada de catálogo" +msgid "monograph.audience.success" +msgstr "Os detalhes do público foram atualizados." -msgid "grid.libraryFiles.column.files" -msgstr "Ficheiros" +msgid "monograph.coverImage" +msgstr "Imagem da capa" -msgid "manager.series.indexed" -msgstr "Indexado" +msgid "monograph.audience.rangeQualifier" +msgstr "Qualificadores de alcance de público" -msgid "manager.series.open" -msgstr "Submissões Abertas" +msgid "monograph.audience.rangeFrom" +msgstr "Alcance de público (de)" -msgid "grid.action.deleteRepresentative" -msgstr "Remover este Representante" +msgid "monograph.audience.rangeTo" +msgstr "Alcance de público (a)" -msgid "grid.action.editRepresentative" -msgstr "Editar este Representante" +msgid "monograph.audience.rangeExact" +msgstr "Alcance de público (exato)" -msgid "grid.action.addRepresentative" -msgstr "Adicionar Representante" +msgid "monograph.languages" +msgstr "Idiomas (Inglês, Francês, Espanhol)" -msgid "grid.catalogEntry.representativesDescription" -msgstr "" -"Pode deixar a seguinte secção vazia se fornecer serviços próprios aos seus " -"clientes." +msgid "monograph.publicationFormats" +msgstr "Formatos de publicação" -msgid "grid.catalogEntry.representativeIdType" -msgstr "Tipo de ID Representante (GLN is recommended)" +msgid "monograph.publicationFormat" +msgstr "Formato" -msgid "grid.catalogEntry.representativeIdValue" -msgstr "ID de Representante" +msgid "monograph.publicationFormatDetails" +msgstr "Detalhes sobre o formato disponível para publicação: {$format}" -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Website" +msgid "monograph.miscellaneousDetails" +msgstr "Detalhes sobre esta monografia" -msgid "grid.catalogEntry.representativeEmail" -msgstr "E-mail" +msgid "monograph.carousel.publicationFormats" +msgstr "Formatos:" -msgid "grid.catalogEntry.representativePhone" -msgstr "Telefone" +msgid "monograph.type" +msgstr "Tipo de Submissão" -msgid "grid.catalogEntry.representativeName" -msgstr "Noome" +msgid "submission.pageProofs" +msgstr "Revisão de provas" -msgid "grid.catalogEntry.representativeRole" -msgstr "Função" +msgid "monograph.proofReadingDescription" +msgstr "" +"O editor de layout carrega aqui os ficheiros prontos para publicação. " +"Utilize +Designar para designar autores e outros para rever as " +"provas, adicionando ficheiros corrigidos para aprovação antes da publicação." -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Escolha uma função:" +msgid "monograph.task.addNote" +msgstr "Adicionar à tarefa" -msgid "grid.catalogEntry.supplier" -msgstr "Fornecedor" +msgid "monograph.accessLogoOpen.altText" +msgstr "Acesso Aberto" -msgid "grid.catalogEntry.agentTip" -msgstr "" -"Pode designar um agente para o representar neste território definido. Não é " -"necessário." +msgid "monograph.publicationFormat.imprint" +msgstr "Marca (nome comercial)" -msgid "grid.catalogEntry.agent" -msgstr "Agente" +msgid "monograph.publicationFormat.pageCounts" +msgstr "Número de páginas" -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Fornecedores" +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Páginas iniciais" -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agentes" +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Páginas finais" -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Código do valor" +msgid "monograph.publicationFormat.productComposition" +msgstr "Composição do produto" -msgid "notification.removedSpotlight" -msgstr "Destaque removido." +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Detalhe do produto (opcional)" -msgid "notification.editedSpotlight" -msgstr "Destaque editado." +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identificação do produto" -msgid "notification.addedSpotlight" -msgstr "Destaque adicionado." +msgid "monograph.publicationFormat.price" +msgstr "Preço" -msgid "navigation.skip.spotlights" -msgstr "Saltar para os destaques" +msgid "monograph.publicationFormat.priceRequired" +msgstr "O preço é obrigatório." -msgid "grid.action.addSpotlight" -msgstr "Adicionar Destaque" +msgid "monograph.publicationFormat.priceType" +msgstr "Tipo de Preço" -msgid "grid.action.deleteSpotlight" -msgstr "Remover este destaque" +msgid "monograph.publicationFormat.discountAmount" +msgstr "Percentagem de desconto, se aplicável" -msgid "grid.action.editSpotlight" -msgstr "Editar este destaque" +msgid "monograph.publicationFormat.productAvailability" +msgstr "Disponibilidade do produto" -msgid "grid.content.spotlights.locationRequired" -msgstr "Por favor escolha uma localização para este destaque." +msgid "monograph.publicationFormat.returnInformation" +msgstr "Indicador de Devolução" -msgid "grid.content.spotlights.titleRequired" -msgstr "É necessário um título de destaque." +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Informação Digital" -msgid "grid.content.spotlights.itemRequired" -msgstr "É necessário um item." +msgid "monograph.publicationFormat.productDimensions" +msgstr "Dimensões Físicas" -msgid "grid.content.spotlights.form.type.book" -msgstr "Livro" +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " -msgid "grid.content.spotlights.form.title" -msgstr "Título do destaque" +msgid "monograph.publicationFormat.productFileSize" +msgstr "Tamanho do ficheiro em Mbytes" -msgid "grid.content.spotlights.form.item" -msgstr "Introduzir o título do destaque (autocompletar)" +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Introduzir o tamanho do seu ficheiro?" -msgid "grid.content.spotlights.form.location" -msgstr "Posição dos destaques" +msgid "monograph.publicationFormat.productHeight" +msgstr "Altura" -msgid "grid.content.spotlights.category.homepage" -msgstr "Página inicial" +msgid "monograph.publicationFormat.productThickness" +msgstr "Espessura" -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Item Destacado" +msgid "monograph.publicationFormat.productWeight" +msgstr "Peso" -msgid "spotlight.author" -msgstr "Autor, " +msgid "monograph.publicationFormat.productWidth" +msgstr "Largura" -msgid "spotlight.title.homePage" -msgstr "Em destaque" +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "País de Produção" -msgid "spotlight.noneExist" -msgstr "Não existem destaques." +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Proteção Técnica Digital" -msgid "spotlight.spotlights" -msgstr "Destaques" +msgid "monograph.publicationFormat.productRegion" +msgstr "Região de Distribuição" -msgid "spotlight" -msgstr "Destaque" +msgid "monograph.publicationFormat.taxRate" +msgstr "Taxa de imposto" -msgid "catalog.featuredBooks" -msgstr "Livros em Destaque" +msgid "monograph.publicationFormat.taxType" +msgstr "Tipo de Imposto" -msgid "catalog.featured" -msgstr "Destaque" +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Incluir os metadados para este formato de publicação na entrada do catálogo " +"deste livro." -msgid "navigation.newReleases" -msgstr "Novos Lançamentos" +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Mercados e preços em falta." -msgid "grid.catalogEntry.representativeType" -msgstr "Tipo de representante" +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Falta um código de identificação." -msgid "grid.catalogEntry.representatives" -msgstr "Representantes" +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Faltam alguns metadados." -msgid "grid.catalogEntry.dateRequired" +msgid "monograph.publicationFormat.formatDoesNotExist" msgstr "" -"É necessária uma data e esta deve corresponder ao formato da data escolhida." +"

        O formato de publicação que escolheu já não existe para esta monografia." -msgid "grid.catalogEntry.dateFormat" -msgstr "Formato de Data" +msgid "monograph.publicationFormat.openTab" +msgstr "Abrir separador Formato de publicação." -msgid "grid.catalogEntry.dateRole" -msgstr "Função" +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Formato de publicação" -msgid "grid.catalogEntry.dateValue" -msgstr "Data" +msgid "grid.catalogEntry.nameRequired" +msgstr "O nome é obrigatório." -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "É necessário um formato de data." +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Um preço válido é obrigatório." -msgid "grid.catalogEntry.roleRequired" -msgstr "A indicação de um representante é necessária." +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Detalhes do Formato" -msgid "grid.catalogEntry.publicationDates" -msgstr "Datas de publicação" +msgid "grid.catalogEntry.physicalFormat" +msgstr "Formato físico" -msgid "grid.catalogEntry.marketTerritory" -msgstr "Território" +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Este formato estará disponível num website separado" -msgid "grid.catalogEntry.markets" -msgstr "Territórios de Mercado" +msgid "grid.catalogEntry.remoteURL" +msgstr "URL do conteúdo alojado remotamente" -msgid "grid.catalogEntry.excluded" -msgstr "Excluído" +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" -msgid "grid.catalogEntry.included" -msgstr "Incluído" +msgid "grid.catalogEntry.isbn13.description" +msgstr "Código ISBN com 13 dígitos, tal como 978-951-98548-9-2." -msgid "grid.catalogEntry.regions" -msgstr "Regiões" +msgid "grid.catalogEntry.isbn10.description" +msgstr "Código ISBN com 10 dígitos, tal como 951-98548-9-4." -msgid "grid.catalogEntry.countries" -msgstr "Países" - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "" -"O \"Resto do Mundo\" já foi definido como o âmbito de aplicação para as " -"condições de distribuição deste formato." +msgid "grid.catalogEntry.monographRequired" +msgstr "O ID da monoografia é obrigatório." -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "" -"Marque esta caixa para usar esta entrada de Direitos de Venda como um \"" -"catch-all\" para o seu formato. Os países e regiões não precisam ser " -"escolhidos neste caso." +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Deve ser selecionado um formato de publicação." -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Resto do Mundo?" +msgid "grid.catalogEntry.availability" +msgstr "Disponibilidade" -msgid "grid.catalogEntry.salesRightsType" -msgstr "Tipo de direitos de venda" +msgid "grid.catalogEntry.isAvailable" +msgstr "Disponível" -msgid "grid.catalogEntry.salesRights" -msgstr "Direitos de Venda" +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Não Disponível" -msgid "grid.catalogEntry.valueRequired" -msgstr "É necessário um valor." +msgid "grid.catalogEntry.proof" +msgstr "Prova" -msgid "grid.catalogEntry.codeRequired" -msgstr "É necessário um código de identificação." +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Aprovação do Formato" -msgid "grid.catalogEntry.identificationCodeType" -msgstr "Tipo de código ONIX" +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

        Aprovar os metadados para este formato. Os metadados podem ser " +"verificados a partir do painel Editar em cada formato.

        " -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Valor de código" +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

        Indicar que os metadados para este formato não foram aprovados.

        " -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Deve ser escolhido um código de composição do produto." +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Disponibilidade do Formato" -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "É necessário um código de disponibilidade do produto." +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

        Disponibilize este formato aos leitores. Os ficheiros para " +"download e quaisquer outras distribuições aparecerão na entrada do catálogo " +"do livro.

        " -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "É necessário um tamanho de ficheiro para formatos digitais." +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

        Este formato estará indisponível para os leitores. Qualquer " +"ficheiro descarregável ou outras distribuições deixarão de aparecer na " +"entrada do livro no catálogo .

        " -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "A aguardar aprovação" +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Entrada no catálogo não aprovada." -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Aprovado" +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Formato não disponível na entrada do catálogo." msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" msgstr "Prova não aprovada." -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Formato não disponível na entrada do catálogo." +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Aprovado" -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Entrada no catálogo não aprovada." +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "A aguardar aprovação" -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

        Este formato estará indisponível para os leitores. Qualquer " -"ficheiro descarregável ou outras distribuições deixarão de aparecer na " -"entrada do livro no catálogo .

        " +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "É necessário um tamanho de ficheiro para formatos digitais." -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "" -"

        Disponibilize este formato aos leitores. Os ficheiros para " -"download e quaisquer outras distribuições aparecerão na entrada do catálogo " -"do livro.

        " +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "É necessário um código de disponibilidade do produto." -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Disponibilidade do Formato" +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Deve ser escolhido um código de composição do produto." -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

        Indicar que os metadados para este formato não foram aprovados.

        " +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Valor de código" -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" -"

        Aprovar os metadados para este formato. Os metadados podem ser " -"verificados a partir do painel Editar em cada formato.

        " +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Tipo de código ONIX" -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Aprovação do Formato" +msgid "grid.catalogEntry.codeRequired" +msgstr "É necessário um código de identificação." -msgid "grid.catalogEntry.proof" -msgstr "Prova" +msgid "grid.catalogEntry.valueRequired" +msgstr "É necessário um valor." -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Não Disponível" +msgid "grid.catalogEntry.salesRights" +msgstr "Direitos de Venda" -msgid "grid.catalogEntry.isAvailable" -msgstr "Disponível" +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Código do valor" -msgid "grid.catalogEntry.availability" -msgstr "Disponibilidade" +msgid "grid.catalogEntry.salesRightsType" +msgstr "Tipo de direitos de venda" -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Deve ser selecionado um formato de publicação." +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Resto do Mundo?" -msgid "grid.catalogEntry.monographRequired" -msgstr "O ID da monoografia é obrigatório." +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Marque esta caixa para usar esta entrada de Direitos de Venda como um " +"\"catch-all\" para o seu formato. Os países e regiões não precisam ser " +"escolhidos neste caso." -msgid "grid.catalogEntry.remoteURL" -msgstr "URL do conteúdo alojado remotamente" +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"O \"Resto do Mundo\" já foi definido como o âmbito de aplicação para as " +"condições de distribuição deste formato." -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Este formato estará disponível num website separado" +msgid "grid.catalogEntry.countries" +msgstr "Países" -msgid "grid.catalogEntry.physicalFormat" -msgstr "Formato físico" +msgid "grid.catalogEntry.regions" +msgstr "Regiões" -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Detalhes do Formato" +msgid "grid.catalogEntry.included" +msgstr "Incluído" -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Um preço válido é obrigatório." +msgid "grid.catalogEntry.excluded" +msgstr "Excluído" -msgid "grid.catalogEntry.nameRequired" -msgstr "O nome é obrigatório." +msgid "grid.catalogEntry.markets" +msgstr "Territórios de Mercado" -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Formato de publicação" +msgid "grid.catalogEntry.marketTerritory" +msgstr "Território" -msgid "monograph.publicationFormat.openTab" -msgstr "Abrir separador Formato de publicação." +msgid "grid.catalogEntry.publicationDates" +msgstr "Datas de publicação" -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "" -"

        O formato de publicação que escolheu já não existe para esta " -"monografia.

        " +msgid "grid.catalogEntry.roleRequired" +msgstr "A indicação de um representante é necessária." -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Faltam alguns metadados." +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "É necessário um formato de data." -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Falta um código de identificação." +msgid "grid.catalogEntry.dateValue" +msgstr "Data" -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Mercados e preços em falta." +msgid "grid.catalogEntry.dateRole" +msgstr "Função" -msgid "monograph.publicationFormat.isApproved" +msgid "grid.catalogEntry.dateFormat" +msgstr "Formato de Data" + +msgid "grid.catalogEntry.dateRequired" msgstr "" -"Incluir os metadados para este formato de publicação na entrada do catálogo " -"deste livro." +"É necessária uma data e esta deve corresponder ao formato da data escolhida." -msgid "monograph.publicationFormat.taxType" -msgstr "Tipo de Imposto" +msgid "grid.catalogEntry.representatives" +msgstr "Representantes" -msgid "monograph.publicationFormat.taxRate" -msgstr "Taxa de imposto" +msgid "grid.catalogEntry.representativeType" +msgstr "Tipo de representante" -msgid "monograph.publicationFormat.productRegion" -msgstr "Região de Distribuição" +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agentes" -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Proteção Técnica Digital" +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Fornecedores" -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "País de Produção" +msgid "grid.catalogEntry.agent" +msgstr "Agente" -msgid "monograph.publicationFormat.productWidth" -msgstr "Largura" +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Pode designar um agente para o representar neste território definido. Não é " +"necessário." -msgid "monograph.publicationFormat.productWeight" -msgstr "Peso" +msgid "grid.catalogEntry.supplier" +msgstr "Fornecedor" -msgid "monograph.publicationFormat.productThickness" -msgstr "Espessura" +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Escolha uma função:" -msgid "monograph.publicationFormat.productHeight" -msgstr "Altura" +msgid "grid.catalogEntry.representativeRole" +msgstr "Função" -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Introduzir o tamanho do seu ficheiro?" +msgid "grid.catalogEntry.representativeName" +msgstr "Noome" -msgid "monograph.publicationFormat.productFileSize" -msgstr "Tamanho do ficheiro em Mbytes" +msgid "grid.catalogEntry.representativePhone" +msgstr "Telefone" -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " +msgid "grid.catalogEntry.representativeEmail" +msgstr "E-mail" -msgid "monograph.publicationFormat.productDimensions" -msgstr "Dimensões Físicas" +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Website" -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Informação Digital" +msgid "grid.catalogEntry.representativeIdValue" +msgstr "ID de Representante" -msgid "monograph.publicationFormat.returnInformation" -msgstr "Indicador de Devolução" +msgid "grid.catalogEntry.representativeIdType" +msgstr "Tipo de ID Representante (GLN is recommended)" -msgid "monograph.publicationFormat.productAvailability" -msgstr "Disponibilidade do produto" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Percentagem de desconto, se aplicável" +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Pode deixar a seguinte secção vazia se fornecer serviços próprios aos seus " +"clientes." -msgid "monograph.publicationFormat.priceType" -msgstr "Tipo de Preço" +msgid "grid.action.addRepresentative" +msgstr "Adicionar Representante" -msgid "monograph.publicationFormat.priceRequired" -msgstr "O preço é obrigatório." +msgid "grid.action.editRepresentative" +msgstr "Editar este Representante" -msgid "monograph.publicationFormat.price" -msgstr "Preço" +msgid "grid.action.deleteRepresentative" +msgstr "Remover este Representante" -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Identificação do produto" +msgid "spotlight" +msgstr "Destaque" -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Detalhe do produto (opcional)" +msgid "spotlight.spotlights" +msgstr "Destaques" -msgid "monograph.publicationFormat.productComposition" -msgstr "Composição do produto" +msgid "spotlight.noneExist" +msgstr "Não existem destaques." -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Páginas finais" +msgid "spotlight.title.homePage" +msgstr "Em destaque" -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Páginas iniciais" +msgid "spotlight.author" +msgstr "Autor, " -msgid "monograph.publicationFormat.pageCounts" -msgstr "Número de páginas" +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Item Destacado" -msgid "monograph.publicationFormat.imprint" -msgstr "Marca (nome comercial)" +msgid "grid.content.spotlights.category.homepage" +msgstr "Página inicial" -msgid "monograph.accessLogoOpen.altText" -msgstr "Acesso Aberto" +msgid "grid.content.spotlights.form.location" +msgstr "Posição dos destaques" -msgid "monograph.task.addNote" -msgstr "Adicionar à tarefa" +msgid "grid.content.spotlights.form.item" +msgstr "Introduzir o título do destaque (autocompletar)" -msgid "monograph.proofReadingDescription" -msgstr "" -"O editor de layout carrega aqui os ficheiros prontos para publicação. " -"Utilize +Designar para designar autores e outros para rever as " -"provas, adicionando ficheiros corrigidos para aprovação antes da publicação." +msgid "grid.content.spotlights.form.title" +msgstr "Título do destaque" -msgid "submission.pageProofs" -msgstr "Revisão de provas" +msgid "grid.content.spotlights.form.type.book" +msgstr "Livro" -msgid "monograph.type" -msgstr "Tipo de Submissão" +msgid "grid.content.spotlights.itemRequired" +msgstr "É necessário um item." -msgid "monograph.carousel.publicationFormats" -msgstr "Formatos:" +msgid "grid.content.spotlights.titleRequired" +msgstr "É necessário um título de destaque." -msgid "monograph.miscellaneousDetails" -msgstr "Detalhes sobre esta monografia" +msgid "grid.content.spotlights.locationRequired" +msgstr "Por favor escolha uma localização para este destaque." -msgid "monograph.publicationFormatDetails" -msgstr "Detalhes sobre o formato disponível para publicação: {$format}" +msgid "grid.action.editSpotlight" +msgstr "Editar este destaque" -msgid "monograph.publicationFormat" -msgstr "Formato" +msgid "grid.action.deleteSpotlight" +msgstr "Remover este destaque" -msgid "monograph.publicationFormats" -msgstr "Formatos de publicação" +msgid "grid.action.addSpotlight" +msgstr "Adicionar Destaque" -msgid "monograph.languages" -msgstr "Idiomas (Inglês, Francês, Espanhol)" +msgid "manager.series.open" +msgstr "Submissões abertas" -msgid "monograph.audience.rangeExact" -msgstr "Alcance de público (exato)" +msgid "manager.series.indexed" +msgstr "Indexado" -msgid "monograph.audience.rangeTo" -msgstr "Alcance de público (a)" +msgid "grid.libraryFiles.column.files" +msgstr "Ficheiros" -msgid "monograph.audience.rangeFrom" -msgstr "Alcance de público (de)" +msgid "grid.action.catalogEntry" +msgstr "Ver o formulário de entrada de catálogo" -msgid "monograph.audience.rangeQualifier" -msgstr "Qualificadores de alcance de público" +msgid "grid.action.formatInCatalogEntry" +msgstr "O formato aparece na entrada do catálogo" -msgid "monograph.coverImage" -msgstr "Imagem da capa" +msgid "grid.action.editFormat" +msgstr "Editar este formato" -msgid "monograph.audience.success" -msgstr "Os detalhes do público foram atualizados." +msgid "grid.action.deleteFormat" +msgstr "Remover este formato" -msgid "monograph.audience" -msgstr "Público" +msgid "grid.action.addFormat" +msgstr "Adicionar Formato da Publicação" -msgid "catalog.manage.newReleases" -msgstr "Novos Lançamentos" +msgid "grid.action.approveProof" +msgstr "Aprove a prova para indexação e inclusão no catálogo" -msgid "catalog.manage" -msgstr "Gestão do Catálogo" +msgid "grid.action.pageProofApproved" +msgstr "A página de ficheiro de provas está pronto para publicação" -msgid "series.path" -msgstr "Caminho" +msgid "grid.action.newCatalogEntry" +msgstr "Nova Entrada no Catálogo" -msgid "series.featured.description" -msgstr "Esta série aparecerá no menu de navegação" +msgid "grid.action.publicCatalog" +msgstr "Ver este item no catálogo" -msgid "series.series" -msgstr "Séries" +msgid "grid.action.feature" +msgstr "Alternar a disponibilização de destaques" -msgid "submissionGroup.assignedSubEditors" -msgstr "Designar editores" +msgid "grid.action.featureMonograph" +msgstr "Destacar no carrossel do catálogo" -msgid "grid.reviewAttachments.availableFiles" -msgstr "Ficheiros disponíveis" +msgid "grid.action.releaseMonograph" +msgstr "Marcar esta submissão como 'novo lançamento'" -msgid "grid.reviewAttachments.add" -msgstr "Adicionar Anexo à Revisão" +msgid "grid.action.manageCategories" +msgstr "Configurar categorias para esta editora" -msgid "grid.action.formatAvailable" -msgstr "Ativar e desativar a disponibilidade deste formato" +msgid "grid.action.manageSeries" +msgstr "Configurar séries para esta editora" -msgid "grid.action.availableRepresentation" -msgstr "Aprovar/Rejeitar este formato" +msgid "grid.action.addCode" +msgstr "Adicionar código" -msgid "grid.action.proofApproved" -msgstr "O formato foi revisto" +msgid "grid.action.editCode" +msgstr "Editar o código" -msgid "grid.action.approveProofs" -msgstr "Ver grelha de provas" +msgid "grid.action.deleteCode" +msgstr "Eliminar este código" -msgid "grid.action.submissionEmail" -msgstr "Clique para ler o e-mail" +msgid "grid.action.addRights" +msgstr "Incluir direitos de venda" -msgid "grid.action.moreAnnouncements" -msgstr "Ir para página das notícias da editora" +msgid "grid.action.editRights" +msgstr "Editar estes direitos" -msgid "grid.action.publicationFormatTab" -msgstr "Disponibilizar separador do formato de publicação" +msgid "grid.action.deleteRights" +msgstr "Eliminar estes direitos" -msgid "grid.action.createContext" -msgstr "Criar nova Editora" +msgid "grid.action.addMarket" +msgstr "Adicionar mercado" -msgid "grid.action.deleteDate" -msgstr "Eliminar data" +msgid "grid.action.editMarket" +msgstr "Editar este mercado" -msgid "grid.action.editDate" -msgstr "Editar data" +msgid "grid.action.deleteMarket" +msgstr "Eliminar este mercado" msgid "grid.action.addDate" msgstr "Adicionar data de publicação" -msgid "grid.action.deleteMarket" -msgstr "Eliminar este mercado" - -msgid "grid.action.editMarket" -msgstr "Editar este mercado" +msgid "grid.action.editDate" +msgstr "Editar data" -msgid "grid.action.addMarket" -msgstr "Adicionar mercado" +msgid "grid.action.deleteDate" +msgstr "Eliminar data" -msgid "grid.action.deleteRights" -msgstr "Eliminar estes direitos" +msgid "grid.action.createContext" +msgstr "Criar nova Editora" -msgid "grid.action.editRights" -msgstr "Editar estes direitos" +msgid "grid.action.publicationFormatTab" +msgstr "Disponibilizar separador do formato de publicação" -msgid "grid.action.addRights" -msgstr "Incluir direitos de venda" +msgid "grid.action.moreAnnouncements" +msgstr "Ir para página das notícias da editora" -msgid "grid.action.deleteCode" -msgstr "Eliminar este código" +msgid "grid.action.submissionEmail" +msgstr "Clique para ler o e-mail" -msgid "grid.action.editCode" -msgstr "Editar o código" +msgid "grid.action.approveProofs" +msgstr "Ver grelha de provas" -msgid "grid.action.addCode" -msgstr "Adicionar código" +msgid "grid.action.proofApproved" +msgstr "O formato foi revisto" -msgid "grid.action.manageSeries" -msgstr "Configurar séries para esta editora" +msgid "grid.action.availableRepresentation" +msgstr "Aprovar/Rejeitar este formato" -msgid "grid.action.manageCategories" -msgstr "Configurar categorias para esta editora" +msgid "grid.action.formatAvailable" +msgstr "Ativar e desativar a disponibilidade deste formato" -msgid "grid.action.releaseMonograph" -msgstr "Marcar esta submissão como 'novo lançamento'" +msgid "grid.reviewAttachments.add" +msgstr "Adicionar Anexo à Revisão" -msgid "grid.action.featureMonograph" -msgstr "Destacar no carrossel do catálogo" +msgid "grid.reviewAttachments.availableFiles" +msgstr "Ficheiros disponíveis" -msgid "grid.action.feature" -msgstr "Alternar a disponibilização de destaques" +msgid "series.series" +msgstr "Séries" -msgid "grid.action.publicCatalog" -msgstr "Ver este item no catálogo" +msgid "series.featured.description" +msgstr "Esta série aparecerá no menu de navegação" -msgid "grid.action.newCatalogEntry" -msgstr "Nova Entrada no Catálogo" +msgid "series.path" +msgstr "Caminho" -msgid "grid.action.addAnnouncement" -msgstr "Inserir uma notícia" +msgid "catalog.manage" +msgstr "Gestão do Catálogo" -msgid "grid.action.pageProofApproved" -msgstr "A página de ficheiro de provas está pronto para publicação" - -msgid "grid.action.approveProof" -msgstr "Aprove a prova para indexação e inclusão no catálogo" +msgid "catalog.manage.newReleases" +msgstr "Novos Lançamentos" -msgid "catalog.manage.series.issn.equalValidation" -msgstr "O ISSN impresso e o online devem ser diferentes." +msgid "catalog.manage.category" +msgstr "Categoria" -msgid "catalog.manage.series.issn.validation" -msgstr "Insira um ISSN válido." +msgid "catalog.manage.series" +msgstr "Série" msgid "catalog.manage.series.issn" msgstr "ISSN" -msgid "catalog.manage.series" -msgstr "Série" - -msgid "catalog.manage.category" -msgstr "Categoria" +msgid "catalog.manage.series.issn.validation" +msgstr "Insira um ISSN válido." -msgid "catalog.selectCategory" -msgstr "Selecionar Categoria" +msgid "catalog.manage.series.issn.equalValidation" +msgstr "O ISSN impresso e o online devem ser diferentes." -msgid "catalog.selectSeries" -msgstr "Selecionar Série" +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN online" msgid "catalog.manage.series.printIssn" msgstr "ISSN impresso" -msgid "catalog.manage.series.onlineIssn" -msgstr "ISSN online" +msgid "catalog.selectSeries" +msgstr "Selecionar Série" -msgid "catalog.manage.categoryDescription" -msgstr "" -"Clique em \"Destacar\", depois na estrela para selecionar um livro destacado " -"para esta categoria; arraste para ordenar." +msgid "catalog.selectCategory" +msgstr "Selecionar Categoria" msgid "catalog.manage.homepageDescription" msgstr "" @@ -645,981 +627,1042 @@ msgstr "" "selecione a estrela para adicionar o livro ao carrossel; clique no ponto de " "exclamação para destacar como novo lançamento; arraste para ordenar." -msgid "catalog.manage.seriesFeatured" -msgstr "Série em Destaque" - -msgid "catalog.manage.categoryFeatured" -msgstr "Categoria em Destaque" +msgid "catalog.manage.categoryDescription" +msgstr "" +"Clique em \"Destacar\", depois na estrela para selecionar um livro destacado " +"para esta categoria; arraste para ordenar." -msgid "catalog.manage.featured" -msgstr "Destaque" +msgid "catalog.manage.seriesDescription" +msgstr "" +"Clique \"Destacar\" e depois a estrela para selecionar um livro nesta série; " +"arraste para ordenar. As séries são identificadas com um editor e um título, " +"com ou sem categoria." -msgid "catalog.manage.noMonographs" -msgstr "Nenhuma monografia selecionada." +msgid "catalog.manage.placeIntoCarousel" +msgstr "Carrossel" -msgid "catalog.manage.manageCategories" -msgstr "Gerir Categorias" +msgid "catalog.manage.newRelease" +msgstr "Lançamento" msgid "catalog.manage.manageSeries" msgstr "Gerir Séries" -msgid "catalog.manage.newRelease" -msgstr "Lançamento" +msgid "catalog.manage.manageCategories" +msgstr "Gerir Categorias" -msgid "catalog.manage.placeIntoCarousel" -msgstr "Carrossel" +msgid "catalog.manage.noMonographs" +msgstr "Nenhuma monografia selecionada." -msgid "catalog.manage.seriesDescription" -msgstr "" -"Clique \"Destacar\" e depois a estrela para selecionar um livro nesta série; " -"arraste para ordenar. As séries são identificadas com um editor e um título, " -"com ou sem categoria." +msgid "catalog.manage.featured" +msgstr "Destaque" -msgid "catalog.foundTitleSearch" -msgstr "Um título corresponde à sua pesquisa por \"{$searchQuery}\"." +msgid "catalog.manage.categoryFeatured" +msgstr "Categoria em Destaque" -msgid "catalog.feature" -msgstr "Destacado" +msgid "catalog.manage.seriesFeatured" +msgstr "Série em Destaque" -msgid "catalog.noTitlesSearch" -msgstr "Não existem títulos para a sua pesquisa por \"{$searchQuery}\"." +msgid "catalog.manage.featuredSuccess" +msgstr "A monografia foi destacada." -msgid "catalog.noTitlesNew" -msgstr "Sem novos lançamentos disponíveis." +msgid "catalog.manage.notFeaturedSuccess" +msgstr "A monografia não foi destacada." -msgid "catalog.noTitles" -msgstr "Ainda não existem títulos publicados." +msgid "catalog.manage.newReleaseSuccess" +msgstr "A monografia encontra-se marcada como novo lançamento." -msgid "catalog.manage.isNotNewRelease" -msgstr "Esta monografia não é um novo lançamento. Torná-la um novo lançamento." +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "A monografia foi desmarcada como novo lançamento." -msgid "catalog.manage.isNewRelease" -msgstr "" -"Esta monografia é um novo lançamento. Retirar esta monografia dos novos " -"lançamentos." +msgid "catalog.manage.feature.newRelease" +msgstr "Novo lançamento" -msgid "catalog.manage.isNotFeatured" -msgstr "Esta monografia não está destacada. Tornar esta monografia destacada." +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Novo lançamento na categoria" -msgid "catalog.manage.isFeatured" -msgstr "Esta monografia está destacada. Torná-la não destacada." +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Novo lançamento na série" + +msgid "catalog.manage.nonOrderable" +msgstr "Esta monografia não é encomendável até ser lançada." msgid "catalog.manage.filter.searchByAuthorOrTitle" msgstr "Pesquisar por título ou autor" -msgid "catalog.manage.nonOrderable" -msgstr "Esta monografia não é encomendável até ser lançada." +msgid "catalog.manage.isFeatured" +msgstr "Esta monografia está destacada. Torná-la não destacada." -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Novo lançamento na série" +msgid "catalog.manage.isNotFeatured" +msgstr "Esta monografia não está destacada. Tornar esta monografia destacada." -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Novo lançamento na categoria" +msgid "catalog.manage.isNewRelease" +msgstr "" +"Esta monografia é um novo lançamento. Retirar esta monografia dos novos " +"lançamentos." -msgid "catalog.manage.feature.newRelease" -msgstr "Novo lançamento" +msgid "catalog.manage.isNotNewRelease" +msgstr "Esta monografia não é um novo lançamento. Torná-la um novo lançamento." -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "A monografia foi desmarcada como novo lançamento." +msgid "catalog.manage.noSubmissionsSelected" +msgstr "" +"Não existem submissões selecionadas para serem adicionadas ao catálogo." -msgid "catalog.manage.newReleaseSuccess" -msgstr "A monografia encontra-se marcada como novo lançamento." +msgid "catalog.manage.submissionsNotFound" +msgstr "Uma ou mais submissões não foram encontradas." -msgid "catalog.manage.notFeaturedSuccess" -msgstr "A monografia não foi destacada." +msgid "catalog.manage.findSubmissions" +msgstr "Pesquisar monografias para adicionar ao catálogo" -msgid "catalog.manage.featuredSuccess" -msgstr "A monografia foi destacada." +msgid "catalog.noTitles" +msgstr "Ainda não existem títulos publicados." -msgid "navigation.navigationMenus.category.description" -msgstr "Link para uma categoria." +msgid "catalog.noTitlesNew" +msgstr "Sem novos lançamentos disponíveis." -msgid "navigation.navigationMenus.category.generic" -msgstr "Categoria" +msgid "catalog.noTitlesSearch" +msgstr "Não existem títulos para a sua pesquisa por \"{$searchQuery}\"." -msgid "navigation.navigationMenus.series.description" -msgstr "Link para um série." +msgid "catalog.feature" +msgstr "Destacado" -msgid "navigation.navigationMenus.series.generic" -msgstr "Séries" +msgid "catalog.featured" +msgstr "Destaque" -msgid "navigation.navigationMenus.catalog.description" -msgstr "Link para o seu catálogo." +msgid "catalog.featuredBooks" +msgstr "Livros em Destaque" -msgid "navigation.linksAndMedia" -msgstr "Links e Redes Sociais" +msgid "catalog.foundTitleSearch" +msgstr "Encontrada uma correspondência à sua pesquisa \"{$searchQuery}\"." -msgid "navigation.wizard" -msgstr "Guia" +msgid "catalog.foundTitlesSearch" +msgstr "{$number} títulos correspondem à sua pesquisa por \"{$searchQuery}\"." -msgid "navigation.published" -msgstr "Publicado" +msgid "catalog.category.heading" +msgstr "Todos os Livros" -msgid "navigation.infoForLibrarians.long" -msgstr "Informação aos Bibliotecários" +msgid "catalog.newReleases" +msgstr "Novos lançamentos" -msgid "navigation.infoForAuthors.long" -msgstr "Informação aos Autores" +msgid "catalog.dateAdded" +msgstr "Adicionado" -msgid "navigation.infoForLibrarians" -msgstr "Para Bibliotecários" +msgid "catalog.publicationInfo" +msgstr "Informação da Publicação" -msgid "navigation.infoForAuthors" -msgstr "Para Autores" +msgid "catalog.published" +msgstr "Publicado" -msgid "navigation.catalog.administration.series" -msgstr "Séries" +msgid "catalog.forthcoming" +msgstr "Próximo" -msgid "navigation.catalog.administration.categories" +msgid "catalog.categories" msgstr "Categorias" -msgid "navigation.catalog.administration" -msgstr "Administração do Catálogo" +msgid "catalog.parentCategory" +msgstr "Categoria principal" -msgid "navigation.catalog.administration.short" -msgstr "Administração" +msgid "catalog.category.subcategories" +msgstr "Subcategorias" -msgid "navigation.catalog.manage" -msgstr "Gerir" +msgid "catalog.aboutTheAuthor" +msgstr "Sobre o {$roleName}" -msgid "navigation.catalog.allMonographs" -msgstr "Todas as Monografias" +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Nota: Para poder adquirir item, é necessário primeiro aceder ao sistema. " +"Selecionar um item para compra irá redirecioná-lo para a página de acesso. " +"Qualquer item marcado com o ícone de Acesso Aberto pode ser descarregado " +"gratuitamente, sem acesso ao sistema." -msgid "navigation.competingInterestPolicy" -msgstr "Política de conflito de interesses" +msgid "catalog.sortBy" +msgstr "Ordem das publicações" -msgid "navigation.catalog" -msgstr "Catálogo" +msgid "catalog.sortBy.seriesDescription" +msgstr "Escolha a forma de ordenação dos livros desta série." -msgid "common.homePageHeader.altText" -msgstr "Cabeçalho da página de início" +msgid "catalog.sortBy.categoryDescription" +msgstr "Escolha a forma de ordenação dos livros desta categoria." -msgid "common.omp" -msgstr "OMP" +msgid "catalog.sortBy.catalogDescription" +msgstr "Ecolha a forma de ordenação dos livros no catálogo." -msgid "common.software" -msgstr "Open Monograph Press" +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Posição da série (menor primeiro)" -msgid "common.listbuilder.itemExists" -msgstr "Não pode adicionar o mesmo item mais do que uma vez." +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Posição da série (maior primeiro)" -msgid "common.listbuilder.selectValidOption" -msgstr "Selecione uma opção válida da lista." +msgid "catalog.viewableFile.title" +msgstr "Versão {$type} do ficheiro {$title}" -msgid "common.listbuilder.completeForm" -msgstr "Preencha todos os campos do formulário." - -msgid "common.moreInfo" -msgstr "Mais Informações" +msgid "catalog.viewableFile.return" +msgstr "Regressar para visualizar os detalhes sobre {$monographTitle}" -msgid "common.searchCatalog" -msgstr "Pesquisar no Catálogo" +msgid "submission.search" +msgstr "Pesquisa de Livros" -msgid "common.feature" -msgstr "Destaque" +msgid "common.publication" +msgstr "Monografia" -msgid "common.preview" -msgstr "Pré-visualização" +msgid "common.publications" +msgstr "Monografias" msgid "common.prefix" msgstr "Prefixo" -msgid "common.publications" -msgstr "Monografias" +msgid "common.preview" +msgstr "Pré-visualização" -msgid "common.publication" -msgstr "Monografia" +msgid "common.feature" +msgstr "Destaque" -msgid "submission.search" -msgstr "Pesquisa de Livros" +msgid "common.searchCatalog" +msgstr "Pesquisar no Catálogo" -msgid "catalog.viewableFile.return" -msgstr "Regressar para visualizar os detalhes sobre {$monographTitle}" +msgid "common.moreInfo" +msgstr "Mais Informações" -msgid "catalog.viewableFile.title" -msgstr "Versão {$type} do ficheiro {$title}" +msgid "common.listbuilder.completeForm" +msgstr "Preencha todos os campos do formulário." -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Posição da série (maior primeiro)" +msgid "common.listbuilder.selectValidOption" +msgstr "Selecione uma opção válida da lista." -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Posição da série (menor primeiro)" +msgid "common.listbuilder.itemExists" +msgstr "Não pode adicionar o mesmo item mais do que uma vez." -msgid "catalog.sortBy.catalogDescription" -msgstr "Ecolha a forma de ordenação dos livros no catálogo." +msgid "common.software" +msgstr "Open Monograph Press" -msgid "catalog.sortBy.categoryDescription" -msgstr "Escolha a forma de ordenação dos livros desta categoria." +msgid "common.omp" +msgstr "OMP" -msgid "catalog.sortBy.seriesDescription" -msgstr "Escolha a forma de ordenação dos livros desta série." +msgid "common.homePageHeader.altText" +msgstr "Cabeçalho da página de início" -msgid "catalog.sortBy" -msgstr "Ordem das publicações" +msgid "navigation.catalog" +msgstr "Catálogo" -msgid "catalog.loginRequiredForPayment" -msgstr "" -"Nota: Para poder adquirir item, é necessário primeiro aceder ao sistema. " -"Selecionar um item para compra irá redirecioná-lo para a página de acesso. " -"Qualquer item marcado com o ícone de Acesso Aberto pode ser descarregado " -"gratuitamente, sem acesso ao sistema." +msgid "navigation.competingInterestPolicy" +msgstr "Política de conflito de interesses" -msgid "catalog.aboutTheAuthor" -msgstr "Sobre o {$roleName}" +msgid "navigation.catalog.allMonographs" +msgstr "Todas as Monografias" -msgid "catalog.category.subcategories" -msgstr "Subcategorias" +msgid "navigation.catalog.manage" +msgstr "Gerir" -msgid "catalog.parentCategory" -msgstr "Categoria principal" +msgid "navigation.catalog.administration.short" +msgstr "Administração" -msgid "catalog.categories" +msgid "navigation.catalog.administration" +msgstr "Administração do Catálogo" + +msgid "navigation.catalog.administration.categories" msgstr "Categorias" -msgid "catalog.forthcoming" -msgstr "Próximo" +msgid "navigation.catalog.administration.series" +msgstr "Séries" -msgid "catalog.published" -msgstr "Publicado" +msgid "navigation.infoForAuthors" +msgstr "Para Autores" -msgid "catalog.publicationInfo" -msgstr "Informação da Publicação" +msgid "navigation.infoForLibrarians" +msgstr "Para Bibliotecários" -msgid "catalog.dateAdded" -msgstr "Adicionado" +msgid "navigation.infoForAuthors.long" +msgstr "Informação aos Autores" -msgid "catalog.newReleases" -msgstr "Novos lançamentos" +msgid "navigation.infoForLibrarians.long" +msgstr "Informação aos Bibliotecários" -msgid "catalog.category.heading" -msgstr "Todos os Livros" +msgid "navigation.newReleases" +msgstr "Novos Lançamentos" -msgid "catalog.foundTitlesSearch" -msgstr "{$number} títulos correspondem à sua pesquisa por \"{$searchQuery}\"." +msgid "navigation.published" +msgstr "Publicado" -msgid "installer.preInstallationInstructionsTitle" -msgstr "Passos de Pré-Instalação" +msgid "navigation.wizard" +msgstr "Guia" -#, fuzzy -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

        Obrigado por transferir o Open Monograph Press {$version}" -" do Public Knowledge Project. Antes de continuar, leia o ficheiro README incluído neste software. Para mais " -"informações sobre o Public Knowledge Project e os seus projetos de software, " -"visite o website do PKP" -". Se tiver algum relatório de erros ou pedidos de suporte técnico sobre o " -"Open Monograph Press, veja o forum de suporte ou visite o sistema de relatório de erros online do " -"PKP. Apesar do forum de suporte ser o método preferencial de contacto, pode " -"também enviar um e-mail à equipa através do pkp.contact@gmail.com.

        \n" -"\n" -"

        Atualização

        \n" -"\n" -"

        Se está a atualizar uma instalação existente do OMP, clique aqio para continuar.

        " +msgid "navigation.linksAndMedia" +msgstr "Links e Redes Sociais" -msgid "installer.installApplication" -msgstr "Instalar o Open Monograph Press" +msgid "navigation.navigationMenus.catalog.description" +msgstr "Link para o seu catálogo." -msgid "installer.ompUpgrade" -msgstr "Atualização do OMP" +msgid "navigation.skip.spotlights" +msgstr "Saltar para os destaques" -msgid "installer.appInstallation" -msgstr "Instalação do OMP" +msgid "navigation.navigationMenus.series.generic" +msgstr "Séries" -msgid "help.goToEditPage" -msgstr "Abrir uma nova página para editar esta informação" +msgid "navigation.navigationMenus.series.description" +msgstr "Link para um série." -msgid "help.searchReturnResults" -msgstr "Voltar aos Resultados de Pesquisa" +msgid "navigation.navigationMenus.category.generic" +msgstr "Categoria" -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "" -"Este site utiliza o Open Monograph Press {$ompVersion}, um software em open " -"source de gestão e publicação editorial, desenvolvido, suportado e " -"livremente distribuído pelo Public Knowledge " -"Project sob a Licença Públicar Geral GNU." +msgid "navigation.navigationMenus.category.description" +msgstr "Link para uma categoria." -msgid "about.aboutOMPPress" -msgstr "" -"Esta editora usa o Open Monograph Press {$ompVersion}, um software em open " -"source de gestão editorial e publicação para editoras desenvolvido, " -"suportado, e distribuído gratuitamente pelo Public Knowledge Project sob a " -"GNU General Public License. Visite o website do PKP para saber mais sobre o software. Contacte a editora diretamente para questões sobre a editora e " -"submissões à editora." +msgid "navigation.navigationMenus.newRelease" +msgstr "Novos lançamentos" -msgid "about.aboutThisPublishingSystem.altText" -msgstr "Processo Editorial e de Publicação do OMP" +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Link para os Novos Lançamentos." -msgid "about.aboutThisPublishingSystem" -msgstr "" -"Mais informações sobre o sistema de publicação, Plataforma e Fluxo de " -"trabalho do OMP/PKP." +msgid "context.contexts" +msgstr "Editoras" -msgid "about.pressSponsorship" -msgstr "Patrocínios à Editora" +msgid "context.context" +msgstr "Editora" -msgid "about.openAccessPolicy" -msgstr "Política de Acesso Aberto" +msgid "context.current" +msgstr "Editora Atual:" -msgid "about.publicationFrequency" -msgstr "Periodicidade" +msgid "context.select" +msgstr "Selecione outra editora:" -msgid "about.reviewPolicy" -msgstr "Processo de Revisão por pares" +msgid "user.authorization.representationNotFound" +msgstr "O formato de publicação solicitado não pode ser encontrado." -msgid "about.privacyStatement" -msgstr "Política de Privacidade" +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Incluir utilizadores sem papéis nesta editora." -msgid "about.copyrightNotice" -msgstr "Aviso de Direitos de Autor" +msgid "user.noRoles.submitMonograph" +msgstr "Submeter nova Proposta" -msgid "about.submissionPreparationChecklist.description" +msgid "user.noRoles.submitMonographRegClosed" msgstr "" -"Como parte do processo de submissão, os autores têm que verificar que " -"cumprem todos os seguintes requisitos nas suas submissões, e as submissões " -"poderão ser enviadas de volta aos autores se não cumprirem estas instruções." +"Submeter uma Monografia: registo de Autores temporariamente desativado." -msgid "about.submissionPreparationChecklist" -msgstr "Verificação da Submissão" +msgid "user.noRoles.regReviewer" +msgstr "Registar como Revisor" -msgid "about.authorGuidelines" -msgstr "Instruções aos Autores" +msgid "user.noRoles.regReviewerClosed" +msgstr "Registar como Revisor: registo de Revisor temporariamente desativado." -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "ver as suas submissões pendentes" +msgid "user.reviewerPrompt" +msgstr "Encontra-se disponível para rever submissões a esta editora?" -msgid "about.onlineSubmissions.newSubmission" -msgstr "Enviar uma nova submissão" +msgid "user.reviewerPrompt.userGroup" +msgstr "Sim, solicitar o papel de {$userGroup}." -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} ou {$viewSubmissions}." +msgid "user.reviewerPrompt.optin" +msgstr "Sim, gostaria de ser contactado para rever submissões a esta editora." -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} ou {$register} para enviar uma nova submissão." +msgid "user.register.contextsPrompt" +msgstr "Em que editoras deste portal se pretende registar?" -msgid "about.onlineSubmissions.register" -msgstr "Registo" +msgid "user.register.otherContextRoles" +msgstr "Solicitar os seguintes papéis." -msgid "about.onlineSubmissions.login" -msgstr "Acesso" +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Se solicitou permissão para ser revisor para uma das editoras do portal, " +"insira os seus assuntos de interesse." -msgid "about.onlineSubmissions" -msgstr "Submissões online" +msgid "user.role.manager" +msgstr "Editor-gestor" -msgid "about.submissions" -msgstr "Submissões" +msgid "user.role.pressEditor" +msgstr "Editor" -msgid "about.seriesPolicies" -msgstr "Políticas de Séries e Categorias" +msgid "user.role.subEditor" +msgstr "Editor de Série" -msgid "about.focusAndScope" -msgstr "Âmbito" +msgid "user.role.copyeditor" +msgstr "Editor de texto" -msgid "about.editorialPolicies" -msgstr "Políticas Editoriais" +msgid "user.role.proofreader" +msgstr "Leitor de prova" -msgid "about.editorialTeam" -msgstr "Equipa Editorial" +msgid "user.role.productionEditor" +msgstr "Editor de produção" -msgid "about.aboutContext" -msgstr "Sobre a Editora" - -msgid "about.pressContact" -msgstr "Contacto da Editora" +msgid "user.role.managers" +msgstr "Editores-gestores" -msgid "site.pressView" -msgstr "Ver Site da Editora" +msgid "user.role.subEditors" +msgstr "Editores de Série" -msgid "user.register.form.userGroupRequired" -msgstr "É necessário selecionar pelo menos um papel" +msgid "user.role.editors" +msgstr "Editores" -msgid "user.register.reviewerInterests" -msgstr "" -"Identificar as suas áreas de interesses de revisão (áreas do conhecimento e " -"métodos de investigação):" +msgid "user.role.copyeditors" +msgstr "Editores de texto" -msgid "user.register.reviewerDescription" -msgstr "Disponível para realizar revisão por pares de submissões a este portal." +msgid "user.role.proofreaders" +msgstr "Leitores de prova" -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "" -"Disponível para realizar revisão por pares de submissões a esta editora." +msgid "user.role.productionEditors" +msgstr "Editores de Produção" -msgid "user.register.authorDescription" -msgstr "Permitida a submissão de itens à editora." +msgid "user.register.selectContext" +msgstr "Selecione a editora onde pretende registar-se:" -msgid "user.register.readerDescription" -msgstr "Notificado por e-mail aquando da publicação de uma monografia." +msgid "user.register.noContexts" +msgstr "Não existem editoras disponíveis para se registar." -msgid "user.register.form.passwordLengthTooShort" -msgstr "A senha que inseriu é demasiado curta." +msgid "user.register.privacyStatement" +msgstr "Política de Privacidade" msgid "user.register.registrationDisabled" msgstr "" "Esta editora não se encontra de momento a aceitar registos de utilizadores." -msgid "user.register.privacyStatement" -msgstr "Política de Privacidade" - -msgid "user.register.noContexts" -msgstr "Não existem editoras disponíveis para se registar." - -msgid "user.register.selectContext" -msgstr "Selecione a editora onde pretende registar-se:" - -msgid "user.role.productionEditors" -msgstr "Editores de Produção" +msgid "user.register.form.passwordLengthTooShort" +msgstr "A senha que inseriu é demasiado curta." -msgid "user.role.proofreaders" -msgstr "Leitores de prova" +msgid "user.register.readerDescription" +msgstr "Notificado por e-mail aquando da publicação de uma monografia." -msgid "user.role.copyeditors" -msgstr "Editores de texto" +msgid "user.register.authorDescription" +msgstr "Permitida a submissão de itens à editora." -msgid "user.role.editors" -msgstr "Editores" +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "" +"Disponível para realizar revisão por pares de submissões a esta editora." -msgid "user.role.subEditors" -msgstr "Editores de Série" +msgid "user.register.reviewerDescription" +msgstr "" +"Disponível para realizar revisão por pares de submissões a este portal." -msgid "user.role.managers" -msgstr "Editores-gestores" +msgid "user.register.reviewerInterests" +msgstr "" +"Identificar as suas áreas de interesses de revisão (áreas do conhecimento e " +"métodos de investigação):" -msgid "user.role.productionEditor" -msgstr "Editor de produção" +msgid "user.register.form.userGroupRequired" +msgstr "É necessário selecionar pelo menos um papel" -msgid "user.role.proofreader" -msgstr "Leitor de prova" +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Sim, concordo em ter os meus dados recolhidos e armazenados de acordo com a " +"política de privacidade da " +"editora." -msgid "user.role.copyeditor" -msgstr "Editor de texto" +msgid "site.noPresses" +msgstr "Não existem editoras disponíveis." -msgid "user.role.subEditor" -msgstr "Editor de Série" +msgid "site.pressView" +msgstr "Ver Site da Editora" -msgid "user.role.pressEditor" -msgstr "Editor" +msgid "about.pressContact" +msgstr "Contacto da Editora" -msgid "user.role.manager" -msgstr "Editor-gestor" +msgid "about.aboutContext" +msgstr "Sobre a Editora" -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Se solicitou permissão para ser revisor para uma das editoras do portal, " -"insira os seus assuntos de interesse." +msgid "about.editorialTeam" +msgstr "Equipa Editorial" -msgid "user.register.otherContextRoles" -msgstr "Solicitar os seguintes papéis." +msgid "about.editorialPolicies" +msgstr "Políticas Editoriais" -msgid "user.register.contextsPrompt" -msgstr "Em que editoras deste portal se pretende registar?" +msgid "about.focusAndScope" +msgstr "Âmbito" -msgid "user.reviewerPrompt.optin" -msgstr "Sim, gostaria de ser contactado para rever submissões a esta editora." +msgid "about.seriesPolicies" +msgstr "Políticas de Séries e Categorias" -msgid "user.reviewerPrompt.userGroup" -msgstr "Sim, solicitar o papel de {$userGroup}." +msgid "about.submissions" +msgstr "Submissões" -msgid "user.reviewerPrompt" -msgstr "Encontra-se disponível para rever submissões a esta editora?" +msgid "about.onlineSubmissions" +msgstr "Submissões online" -msgid "user.noRoles.regReviewerClosed" -msgstr "Registar como Revisor: registo de Revisor temporariamente desativado." +msgid "about.onlineSubmissions.login" +msgstr "Acesso" -msgid "user.noRoles.regReviewer" -msgstr "Registar como Revisor" +msgid "about.onlineSubmissions.register" +msgstr "Registo" -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Submeter uma Monografia: registo de Autores temporariamente desativado." +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} ou {$register} para enviar uma nova submissão." -msgid "user.noRoles.submitMonograph" -msgstr "Submeter nova Proposta" +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} ou {$viewSubmissions}." -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Incluir utilizadores sem papéis nesta editora." +msgid "about.onlineSubmissions.newSubmission" +msgstr "Enviar uma nova submissão" -msgid "context.select" -msgstr "Selecione outra editora:" +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "ver as suas submissões pendentes" -msgid "context.current" -msgstr "Editora Atual:" +msgid "about.authorGuidelines" +msgstr "Instruções aos Autores" -msgid "context.context" -msgstr "Editora" +msgid "about.submissionPreparationChecklist" +msgstr "Verificação da Submissão" -msgid "context.contexts" -msgstr "Editoras" +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Como parte do processo de submissão, os autores têm que verificar que " +"cumprem todos os seguintes requisitos nas suas submissões, e as submissões " +"poderão ser enviadas de volta aos autores se não cumprirem estas instruções." -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Link para os Novos Lançamentos." +msgid "about.copyrightNotice" +msgstr "Aviso de Direitos de Autor" -msgid "navigation.navigationMenus.newRelease" -msgstr "Novos lançamentos" +msgid "about.privacyStatement" +msgstr "Política de Privacidade" -msgid "catalog.coverImageTitle" -msgstr "Capa" +msgid "about.reviewPolicy" +msgstr "Processo de Revisão por pares" -msgid "user.authorization.invalidPublishedSubmission" -msgstr "Não foi especificada uma submissão publicada válida." +msgid "about.publicationFrequency" +msgstr "Periodicidade" -msgid "submission.round" -msgstr "Ronda {$round}" +msgid "about.openAccessPolicy" +msgstr "Política de Acesso Aberto" -msgid "user.profile.form.hideOtherContexts" -msgstr "Esconder outras editoras" +msgid "about.pressSponsorship" +msgstr "Patrocínios à Editora" -msgid "user.profile.form.showOtherContexts" -msgstr "Registar-se em outras editoras" +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Mais informações sobre o sistema de publicação, Plataforma e Fluxo de " +"trabalho do OMP/PKP." -msgid "submission.pdf.download" -msgstr "Transferir PDF" +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Processo Editorial e de Publicação do OMP" -msgid "rt.metadata.pkp.dctype" -msgstr "Livro" +msgid "about.aboutSoftware" +msgstr "Sobre o Open Monograph Press" -msgid "debug.notes.helpMappingLoad" +msgid "about.aboutOMPPress" msgstr "" -"Ficheiro XML de ajuda de mapeamento recarregado {$filename} na procura por " -"{$id}." +"Esta editora usa o Open Monograph Press {$ompVersion}, um software em open " +"source de gestão editorial e publicação para editoras desenvolvido, " +"suportado, e distribuído gratuitamente pelo Public Knowledge Project sob a " +"GNU General Public License. Visite o website do PKP para saber mais sobre o software. Contacte a editora diretamente para questões sobre a " +"editora e submissões à editora." -msgid "payment.directSales.monograph.description" +msgid "about.aboutOMPSite" msgstr "" -"Esta transação refere-se à compra do download direto de apenas uma " -"monografia ou um capítulo de monografia." - -msgid "payment.directSales.monograph.name" -msgstr "Comprar Monografia ou Capítulo" +"Esta editora utiliza o Open Monograph Press {$ompVersion}, um software em " +"open source de gestão e publicação editorial, desenvolvido, suportado e " +"livremente distribuído pelo Public Knowledge " +"Project sob a Licença Públicar Geral GNU." -msgid "payment.directSales.download" -msgstr "Transferir {$format}" +msgid "help.searchReturnResults" +msgstr "Voltar aos Resultados de Pesquisa" -msgid "payment.directSales.purchase" -msgstr "Comprar {$format} ({$amount} {$currency})" +msgid "help.goToEditPage" +msgstr "Abrir uma nova página para editar esta informação" -msgid "payment.directSales.validPriceRequired" -msgstr "É obrigatório inserir um preço com valor numérico." +msgid "installer.appInstallation" +msgstr "Instalação do OMP" -msgid "payment.directSales.price.description" -msgstr "" -"Formatos de ficheiros podem estar disponíveis para download através do site " -"da editora em acesso aberto sem custos para os leitores ou vendas diretas (" -"utilizando um processador de pagamentos online, configurado em Distribuição)" -". Indique a forma de acesso a este ficheiro." +msgid "installer.ompUpgrade" +msgstr "Atualização do OMP" -msgid "payment.directSales.openAccess" -msgstr "Acesso Aberto" +msgid "installer.installApplication" +msgstr "Instalar o Open Monograph Press" -msgid "payment.directSales.notSet" -msgstr "Não definido" +msgid "installer.updatingInstructions" +msgstr "" +"Se está a atualizar uma instalação existente do OMP, clique aqui para continuar." -msgid "payment.directSales.notAvailable" -msgstr "Indisponível" +msgid "installer.installationInstructions" +msgstr "" +"

        Obrigado por transferir o Open Monograph Press {$version} do Public Knowledge Project. Antes de continuar, por favor leia o " +"ficheiro README.md incluído neste " +"software. Para mais informações sobre o Public Knowledge Project e os seus " +"projetos de software, visite o website do PKP. Se tiver algum relatório de erros ou pedidos de " +"suporte técnico sobre o Open Monograph Press, veja o forum de suporte ou visite o sistema de relatório de erros online do PKP. Apesar do fórum de " +"suporte ser o método preferencial de contacto, pode também enviar um e-mail " +"para a equipa através do pkp." +"contact@gmail.com.

        " -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" +msgid "installer.preInstallationInstructionsTitle" +msgstr "Passos de Pré-Instalação" -msgid "payment.directSales.directSales" -msgstr "Venda Direta" - -msgid "payment.directSales.numericOnly" -msgstr "Preços devem ser apenas numéricos. Não inclua símbolos monetários." - -msgid "payment.directSales.priceCurrency" -msgstr "Preço ({$currency})" - -msgid "payment.directSales.approved" -msgstr "Aprovado" - -msgid "payment.directSales.catalog" -msgstr "Catálogo" - -msgid "payment.directSales.availability" -msgstr "Disponibilidade" - -msgid "payment.directSales.price" -msgstr "Preço" +msgid "installer.preInstallationInstructions" +msgstr "" +"

        1. Os seguintes ficheiros e diretórios (e os seus conteúdos) devem ser " +"editáveis:

        \n" +"
          \n" +"\t
        • config.inc.php é editável (opcional): {$writable_config}\n" +"\t
        • public/ é editável: {$writable_public}
        • \n" +"\t
        • cache/ é editável: {$writable_cache}
        • \n" +"\t
        • cache/t_cache/ é editável: {$writable_templates_cache}
        • \n" +"\t
        • cache/t_compile/ é editável: {$writable_templates_compile}\n" +"\t
        • cache/_db é editável: {$writable_db_cache}
        • \n" +"
        \n" +"\n" +"

        2. Um diretório para armazenar ficheiros deve ser criado e tornado " +"editável (ver \"Configurações Ficheiro\" abaixo).

        " -msgid "payment.directSales" -msgstr "Download através do Website da Editora" +msgid "installer.upgradeInstructions" +msgstr "" +"

        Versão do OMP {$version}

        \n" +"\n" +"

        Obrigada por transferir o software do Public Knowledge Project " +"Open Monograph Press. Antes de continuar, por favor leia o " +"README e UPGRADE os ficheiros incluídos neste software. Para mais " +"informações sobre o Public Knowledge Project e os seus projetos de software, " +"visite o website do PKP. Se tiver relatórios de erros ou questões de suporte técnicos sobre o " +"Open Monograph Press, visite o fórum de suporte ou visite o sistema de comunicação de erros online do " +"PKP. Apesar do fórum de suporte ser o método de contacto preferencial, " +"também pode enviar e-mail para a equipa através do e-mail pkp.contact@gmail.com.

        \n" +"

        É altamente recomendado que faça backups da sua base de " +"dados, diretório de ficheiros, e do diretório da instalação do OMP antes de " +"proceder.

        " -msgid "user.authorization.workflowStageSettingMissing" +msgid "installer.localeSettingsInstructions" msgstr "" -"Acesso negado! O grupo de utilizadores em que se encontra não foi designado " -"a esta etapa do fluxo de trabalho. Verifique as configurações da editora." +"Para uma compatibilidade completa de Unicode, o PHP deve ser compilado com a " +"biblioteca mbstring (ativa por defeito nas instalações mais recentes do PHP). " +"Pode ter alguns problemas com alguns conjuntos de caracteres caso o seu " +"servidor não possua estes requisitos.\n" +"

        \n" +"O seu servidor de momento suporta mbstring: {$supportsMBString}" -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Acesso negado! Não foi designado e esta etapa do fluxo de trabalho." +msgid "installer.allowFileUploads" +msgstr "" +"O seu servidor de momento permite transferências de ficheiros: " +"{$allowFileUploads}" -msgid "user.authorization.seriesAssignment" -msgstr "Está a tentar aceder a uma monografia que não faz parte da sua série." +msgid "installer.maxFileUploadSize" +msgstr "" +"O seu servidor de momento permite-lhe a transferência de ficheiro com " +"tamanho máximo de: {$maxFileUploadSize}" -msgid "user.authorization.noContext" -msgstr "Nenhuma editora neste contexto!" +msgid "installer.localeInstructions" +msgstr "" +"Idioma principal para uso neste sistema. Consulte a documentação do OMP se " +"estiver interessado em apoio em outros idiomas que não estejam nesta lista." -msgid "user.authorization.invalidMonograph" -msgstr "Monografia inválida ou nenhum monografia solicitada!" +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Selecione qualquer idioma adicional para utilizar neste sistema. Estes " +"idiomas estarão disponíveis para utilização das editoras alojadas neste " +"site. Idiomas adicionais podem ser instalados a qualquer momento através da " +"interface de administração. Idiomas marcados com * podem estar incompletos." -msgid "user.authorization.monographFile" -msgstr "Foi-lhe negado o acesso a este ficheiro específico da monografia." +msgid "installer.filesDirInstructions" +msgstr "" +"Insira o caminho completo para uma pasta existente onde os ficheiros " +"transferidos serão guardados. Esta pasta não deve ser acessível diretamente " +"através da web. Assegure-se que esta pasta existe e é editável antes " +"da instalação. Caminhos Windows devem usar barra, ex. \"C:/mypress/" +"files\"." -msgid "user.authorization.monographReviewer" +msgid "installer.databaseSettingsInstructions" msgstr "" -"Foi-lhe negado o acesso porque não é um revisor designado para esta " -"monografia." +"O OMP necessita de acesso à base de dados SQL para armazenar os dados. Veja " +"os requisitos de sistema abaixo com a lista de bases de dados suportadas. " +"Nos campos abaixo, forneça as configurações a ser usadas para conectar à " +"base de dados." -msgid "user.authorization.monographAuthor" -msgstr "Foi-lhe negado o acesso à submissão porque não é o autor da monografia." +msgid "installer.upgradeApplication" +msgstr "Atualizar Open Monograph Press" -msgid "user.authorization.invalidReviewAssignment" +msgid "installer.overwriteConfigFileInstructions" msgstr "" -"Foi-lhe negado acesso porque não parece ser um revisor válido para esta " -"monografia." +"

        IMPORTANTE!

        \n" +"

        O instalador não pode alterar automaticamente o ficheiro de configuração. " +"Antes de tentar usar o sistema, abra config.inc.php num editor de " +"texto e substitua os seus conteúdos pelos do campo de texto abaixo. .

        " -#, fuzzy -msgid "notification.type.visitCatalog" +msgid "installer.installationComplete" msgstr "" -"A monografia foi aprovada. Visite o Catálogo para gerir os detalhes do " -"catálogo, utilizando o link de catálogo logo acima." +"

        Instalação do OMP concluída com sucesso.

        \n" +"

        Para começar a utilizar o sistema, aceda com " +"o nome de utilizador e senha inseridos na página anterior.

        \n" +"

        Visite o nosso fórum " +"da communidade ou inscreva-se na nossa newsletter para programadores " +"para receber notificações de segurança, e updates em novas releases, novos " +"plugins, e ferramentas planeadas.

        " -msgid "notification.type.visitCatalogTitle" -msgstr "Gestão do Catálogo" +msgid "installer.upgradeComplete" +msgstr "" +"

        Atualização do OMP para a versão {$version} concluída com sucesso.

        \n" +"

        Não se esqueça de configurar como \"instalado\" no seu ficheiro de " +"configuração config.inc.php de volta para Ativo.

        \n" +"

        Visite o nosso fórum " +"da comunidade ou inscreva-se na nossa newsletter de programadores para " +"receber notificações de segurança, e updates sobre as novas releases, novos " +"plugins, e ferramentas planeadas.

        " -msgid "notification.type.configurePaymentMethod" +msgid "log.review.reviewDueDateSet" msgstr "" -"Um método de pagamento configurado é necessário antes de definir as " -"configurações de e-commerce." +"A data prevista para a {$round} ronda de revisão da submissão " +"{$submissionId} atribuída a {$reviewerName} foi definida para {$dueDate}." -msgid "notification.type.configurePaymentMethod.title" -msgstr "Não existem formas de pagamento configuradas." +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} rejeitou a {$round} de revisão da submissão {$submissionId}." -msgid "notification.type.formatNeedsApprovedSubmission" +msgid "log.review.reviewAccepted" msgstr "" -"A monografia não ficará listada no catálogo até ser publicada. Para " -"adicionar este livro ao catálogo, clique no separador da Publicação." +"{$reviewerName} aceitou a {$round} ronda de revisão da submissão " +"{$submissionId}." -msgid "notification.type.approveSubmissionTitle" -msgstr "A aguardar aprovação." +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} marcou a {$round} ronda de revisão da submissão " +"{$submissionId} como não considerada." -msgid "notification.type.approveSubmission" +msgid "log.editor.decision" msgstr "" -"Esta submissão encontra-se de momento a aguardar aprovação na ferramenta de " -"entrada do Catálogo antes de aparecer no catálogo público." +"A decisão editorial ({$decision}) para a monografia {$submissionId} foi " +"registada por {$editorName}." -msgid "notification.type.editorDecisionInternalReview" -msgstr "Processo de revisão interna iniciado." +msgid "log.editor.recommendation" +msgstr "" +"A recomendação do editor ({$decision}) para a monografia {$submissionId} foi " +"registada por {$editorName}." -msgid "notification.type.indexRequest" -msgstr "Foi-lhe solicitado que criasse um índice de \"{$title}\"." +msgid "log.editor.archived" +msgstr "A submissão {$submissionId} foi arquivada." -msgid "notification.type.layouteditorRequest" -msgstr "Foi-lhe solicitado que reveja o design de \"{$title}\"." +msgid "log.editor.restored" +msgstr "A submissão {$submissionId} foi restaurada para a fila." -msgid "notification.type.copyeditorRequest" -msgstr "Foi-lhe solicitado que realize a edição de texto de \"{$file}\"." +msgid "log.editor.editorAssigned" +msgstr "{$editorName} foi designado como editor à submissão {$submissionId}." -msgid "notification.type.editorAssignmentTask" +msgid "log.proofread.assign" msgstr "" -"Uma nova monografia foi submetida e necessita de ser designada a um editor." +"{$assignerName} designou {$proofreaderName} para realizar a leitura de " +"provas da submissão {$submissionId}." -msgid "notification.type.public" -msgstr "Notícias Públicas" +msgid "log.proofread.complete" +msgstr "{$proofreaderName} submeteu {$submissionId} para agendamento." -msgid "notification.type.userComment" -msgstr "Um leitor fez um comentário sobre \"{$title}\"." +msgid "log.imported" +msgstr "{$userName} importou a monografia {$submissionId}." -msgid "notification.type.submissions" -msgstr "Eventos da Submissão" +msgid "notification.addedIdentificationCode" +msgstr "Código de Identificação adicionado." -msgid "notification.type.site" -msgstr "Eventos do site" +msgid "notification.editedIdentificationCode" +msgstr "Código de Identificação editado." -msgid "notification.type.reviewing" -msgstr "Eventos da Revisão" +msgid "notification.removedIdentificationCode" +msgstr "Código de Identificação removido." -msgid "notification.type.editing" -msgstr "Eventos da Edição" +msgid "notification.addedPublicationDate" +msgstr "Data de Publicação adicionada." -msgid "notification.type.submissionSubmitted" -msgstr "Uma nova monografia, \"{$title}\", foi submetida." +msgid "notification.editedPublicationDate" +msgstr "Data de Publicação editada." -msgid "notification.removedSubmission" -msgstr "Submissão eliminada." +msgid "notification.removedPublicationDate" +msgstr "Data de Publicação removida." -msgid "notification.proofsApproved" -msgstr "Provas aprovadas." +msgid "notification.addedPublicationFormat" +msgstr "Formato de Publicação adicionado." -msgid "notification.savedPublicationFormatMetadata" -msgstr "Metadados do formato de publicação guardados." +msgid "notification.editedPublicationFormat" +msgstr "Formato de Publicação editado." -msgid "notification.savedCatalogMetadata" -msgstr "Metadados do catálogo guardados." +msgid "notification.removedPublicationFormat" +msgstr "Formato de Publicação removido." -msgid "notification.removedMarket" -msgstr "Mercado removido." +msgid "notification.addedSalesRights" +msgstr "Direitos de Venda adicionados." -msgid "notification.editedMarket" -msgstr "Mercado editado." +msgid "notification.editedSalesRights" +msgstr "Direitos de Venda editados." -msgid "notification.addedMarket" -msgstr "Mercado adicionado." +msgid "notification.removedSalesRights" +msgstr "Direitos de Venda removidos." -msgid "notification.removedRepresentative" -msgstr "Representante removido." +msgid "notification.addedRepresentative" +msgstr "Representante adicionado." msgid "notification.editedRepresentative" msgstr "Representante editado." -msgid "notification.addedRepresentative" -msgstr "Representante adicionado." +msgid "notification.removedRepresentative" +msgstr "Representante removido." -msgid "notification.removedSalesRights" -msgstr "Direitos de Venda removidos." +msgid "notification.addedMarket" +msgstr "Mercado adicionado." -msgid "notification.editedSalesRights" -msgstr "Direitos de Venda editados." +msgid "notification.editedMarket" +msgstr "Mercado editado." -msgid "notification.addedSalesRights" -msgstr "Direitos de Venda adicionados." +msgid "notification.removedMarket" +msgstr "Mercado removido." -msgid "notification.removedPublicationFormat" -msgstr "Formato de Publicação removido." +msgid "notification.addedSpotlight" +msgstr "Destaque adicionado." -msgid "notification.editedPublicationFormat" -msgstr "Formato de Publicação editado." +msgid "notification.editedSpotlight" +msgstr "Destaque editado." -msgid "notification.addedPublicationFormat" -msgstr "Formato de Publicação adicionado." +msgid "notification.removedSpotlight" +msgstr "Destaque removido." -msgid "notification.removedPublicationDate" -msgstr "Data de Publicação removida." +msgid "notification.savedCatalogMetadata" +msgstr "Metadados do catálogo guardados." -msgid "notification.editedPublicationDate" -msgstr "Data de Publicação editada." +msgid "notification.savedPublicationFormatMetadata" +msgstr "Metadados do formato de publicação guardados." -msgid "notification.addedPublicationDate" -msgstr "Data de Publicação adicionada." +msgid "notification.proofsApproved" +msgstr "Provas aprovadas." -msgid "notification.removedIdentificationCode" -msgstr "Código de Identificação removido." +msgid "notification.removedSubmission" +msgstr "Submissão eliminada." -msgid "notification.editedIdentificationCode" -msgstr "Código de Identificação editado." +msgid "notification.type.submissionSubmitted" +msgstr "Uma nova monografia, \"{$title}\", foi submetida." -msgid "notification.addedIdentificationCode" -msgstr "Código de Identificação adicionado." +msgid "notification.type.editing" +msgstr "Eventos da Edição" -msgid "log.imported" -msgstr "{$userName} importou a monografia {$submissionId}." +msgid "notification.type.reviewing" +msgstr "Eventos da Revisão" -msgid "log.proofread.complete" -msgstr "{$proofreaderName} submeteu {$submissionId} para agendamento." +msgid "notification.type.site" +msgstr "Eventos do site" -msgid "log.proofread.assign" +msgid "notification.type.submissions" +msgstr "Eventos da Submissão" + +msgid "notification.type.userComment" +msgstr "Um leitor fez um comentário sobre \"{$title}\"." + +msgid "notification.type.public" +msgstr "Notícias Públicas" + +msgid "notification.type.editorAssignmentTask" msgstr "" -"{$assignerName} designou {$proofreaderName} para realizar a leitura de " -"provas da submissão {$submissionId}." +"Uma nova monografia foi submetida e necessita de ser designada a um editor." -msgid "log.editor.editorAssigned" -msgstr "{$editorName} foi designado como editor à submissão {$submissionId}." +msgid "notification.type.copyeditorRequest" +msgstr "Foi-lhe solicitado que realize a edição de texto de \"{$file}\"." -msgid "log.editor.restored" -msgstr "A submissão {$submissionId} foi restaurada para a fila." +msgid "notification.type.layouteditorRequest" +msgstr "Foi-lhe solicitado que reveja o design de \"{$title}\"." -msgid "log.editor.archived" -msgstr "A submissão {$submissionId} foi arquivada." +msgid "notification.type.indexRequest" +msgstr "Foi-lhe solicitado que criasse um índice de \"{$title}\"." -msgid "log.editor.recommendation" -msgstr "" -"A recomendação do editor ({$decision}) para a monografia {$submissionId} foi " -"registada por {$editorName}." +msgid "notification.type.editorDecisionInternalReview" +msgstr "Processo de revisão interna iniciado." -msgid "log.editor.decision" +msgid "notification.type.approveSubmission" msgstr "" -"A decisão editorial ({$decision}) para a monografia {$submissionId} foi " -"registada por {$editorName}." +"Esta submissão encontra-se de momento a aguardar aprovação na ferramenta de " +"entrada do Catálogo antes de aparecer no catálogo público." -msgid "log.review.reviewUnconsidered" -msgstr "" -"{$editorName} marcou a {$round} ronda de revisão da submissão {$submissionId}" -" como não considerada." +msgid "notification.type.approveSubmissionTitle" +msgstr "A aguardar aprovação." -msgid "log.review.reviewAccepted" +msgid "notification.type.formatNeedsApprovedSubmission" msgstr "" -"{$reviewerName} aceitou a {$round} ronda de revisão da submissão " -"{$submissionId}." +"A monografia não ficará listada no catálogo até ser publicada. Para " +"adicionar este livro ao catálogo, clique no separador da Publicação." -msgid "log.review.reviewDeclined" +msgid "notification.type.configurePaymentMethod.title" +msgstr "Não existem formas de pagamento configuradas." + +msgid "notification.type.configurePaymentMethod" msgstr "" -"{$reviewerName} rejeitou a {$round} de revisão da submissão {$submissionId}." +"Um método de pagamento configurado é necessário antes de definir as " +"configurações de e-commerce." -msgid "log.review.reviewDueDateSet" +msgid "notification.type.visitCatalogTitle" +msgstr "Gestão do Catálogo" + +msgid "notification.type.visitCatalog" msgstr "" -"A data prevista para a {$round} ronda de revisão da submissão {$submissionId}" -" atribuída a {$reviewerName} foi definida para {$dueDate}." +"A monografia foi aprovada. Visite o Catálogo para gerir os detalhes do " +"catálogo, utilizando o link de catálogo logo acima." -msgid "installer.upgradeComplete" +msgid "user.authorization.invalidReviewAssignment" msgstr "" -"

        Atualização do OMP para a versão {$version} concluída com sucesso.

        \n" -"

        Não se esqueça de configurar como \"instalado\" no seu ficheiro de " -"configuração config.inc.php de volta para Ativo.

        \n" -"

        Se ainda não se registou e deseja receber notícias e novidades, registe-se em http://pkp.sfu.ca/omp/register. Se tiver questões ou " -"comentários, visite o " -"fórum de suporte.

        " +"Foi-lhe negado acesso porque não parece ser um revisor válido para esta " +"monografia." -msgid "installer.installationComplete" +msgid "user.authorization.monographAuthor" msgstr "" -"

        Instalação do OMP concluída com sucesso.

        \n" -"

        Para começar a utilizar o sistema, aceda com " -"o nome de utilizador e senha inseridos na página anterior.

        \n" -"

        Se desejar receber notícias e novidades, registe-sehttp://pkp.sfu.ca/omp/" -"register. Se tiver questões ou comentários, visite o fórum de suporte.

        " +"Foi-lhe negado o acesso à submissão porque não é o autor da monografia." -msgid "installer.overwriteConfigFileInstructions" +msgid "user.authorization.monographReviewer" msgstr "" -"

        IMPORTANTE!

        \n" -"

        O instalador não pode alterar automaticamente o ficheiro de configuração. " -"Antes de tentar usar o sistema, abra config.inc.php num editor de " -"texto e substitua os seus conteúdos pelos do campo de texto abaixo. .

        " +"Foi-lhe negado o acesso porque não é um revisor designado para esta " +"monografia." -msgid "installer.upgradeApplication" -msgstr "Atualizar Open Monograph Press" +msgid "user.authorization.monographFile" +msgstr "Foi-lhe negado o acesso a este ficheiro específico da monografia." -msgid "installer.databaseSettingsInstructions" -msgstr "" -"O OMP necessita de acesso à base de dados SQL para armazenar os dados. Veja " -"os requisitos de sistema abaixo com a lista de bases de dados suportadas. " -"Nos campos abaixo, forneça as configurações a ser usadas para conectar à " -"base de dados." +msgid "user.authorization.invalidMonograph" +msgstr "Monografia inválida ou nenhum monografia solicitada!" -msgid "installer.filesDirInstructions" -msgstr "" -"Insira o caminho completo para uma pasta existente onde os ficheiros " -"transferidos serão guardados. Esta pasta não deve ser acessível diretamente " -"através da web. Assegure-se que esta pasta existe e é editável antes " -"da instalação. Caminhos Windows devem usar barra, ex. \"C:/mypress/" -"files\"." +msgid "user.authorization.noContext" +msgstr "Nenhuma editora neste contexto." -msgid "installer.additionalLocalesInstructions" -msgstr "" -"Selecione qualquer idioma adicional para utilizar neste sistema. Estes " -"idiomas estarão disponíveis para utilização das editoras alojadas neste " -"site. Idiomas adicionais podem ser instalados a qualquer momento através da " -"interface de administração. Idiomas marcados com * podem estar incompletos." +msgid "user.authorization.seriesAssignment" +msgstr "Está a tentar aceder a uma monografia que não faz parte da sua série." -msgid "installer.localeInstructions" -msgstr "" -"Idioma principal para uso neste sistema. Consulte a documentação do OMP se " -"estiver interessado em apoio em outros idiomas que não estejam nesta lista." +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Acesso negado! Não foi designado e esta etapa do fluxo de trabalho." -msgid "installer.maxFileUploadSize" +msgid "user.authorization.workflowStageSettingMissing" msgstr "" -"O seu servidor de momento permite-lhe a transferência de ficheiro com " -"tamanho máximo de: {$maxFileUploadSize}" +"Acesso negado! O grupo de utilizadores em que se encontra não foi designado " +"a esta etapa do fluxo de trabalho. Verifique as configurações da editora." -msgid "installer.allowFileUploads" -msgstr "" -"O seu servidor de momento permite transferências de ficheiros: " -"{$allowFileUploads}" +msgid "payment.directSales" +msgstr "Download através do Website da Editora" -msgid "installer.localeSettingsInstructions" +msgid "payment.directSales.price" +msgstr "Preço" + +msgid "payment.directSales.availability" +msgstr "Disponibilidade" + +msgid "payment.directSales.catalog" +msgstr "Catálogo" + +msgid "payment.directSales.approved" +msgstr "Aprovado" + +msgid "payment.directSales.priceCurrency" +msgstr "Preço ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Preços devem ser apenas numéricos. Não inclua símbolos monetários." + +msgid "payment.directSales.directSales" +msgstr "Venda Direta" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Indisponível" + +msgid "payment.directSales.notSet" +msgstr "Não definido" + +msgid "payment.directSales.openAccess" +msgstr "Acesso Aberto" + +msgid "payment.directSales.price.description" msgstr "" -"Para apoio completo Unicode (UTF-8), selecione UTF-8 para todos as " -"configurações de conjuntos de caracteres. Note que este apoio de momento " -"necessita de um servidor de base de dados MySQL >= 4.1.1 ou PostgreSQL >= " -"9.1.5. Note também que o apoio completo Unicode necessita de uma biblioteca <" -"a href=\"http://www.php.net/mbstring\" target=\"_blank\">mbstring (" -"ativada por padrão em na maioria das instalações recente de PHP). Pode " -"experienciar problemas ao usar conjuntos de caracteres extensos se o seu " -"servidor não cumprir os seguintes requisitos.\n" -"

        \n" -"O seu servidor de momento suporta mbstring: " -"{$supportsMBString}" +"Formatos de ficheiros podem estar disponíveis para download através do site " +"da editora em acesso aberto sem custos para os leitores ou vendas diretas " +"(utilizando um processador de pagamentos online, configurado em " +"Distribuição). Indique a forma de acesso a este ficheiro." -msgid "installer.upgradeInstructions" +msgid "payment.directSales.validPriceRequired" +msgstr "É obrigatório inserir um preço com valor numérico." + +msgid "payment.directSales.purchase" +msgstr "Comprar {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Transferir {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Comprar Monografia ou Capítulo" + +msgid "payment.directSales.monograph.description" msgstr "" -"

        Versão do OMP {$version}

        \n" -"\n" -"

        Obrigada por transferir o software do Public Knowledge Project " -"Open Monograph Press. Antes de continuar, por favor leia o README e UPGRADE os ficheiros incluídos neste software. Para mais informações " -"sobre o Public Knowledge Project e os seus projetos de software, visite o website do PKP. Se tiver " -"relatórios de erros ou questões de suporte técnicos sobre o Open Monograph " -"Press, visite o fórum " -"de suporte ou visite o sistema de comunicação de erros online do PKP. Apesar do fórum " -"de suporte ser o método de contacto preferencial, também pode enviar e-mail " -"para a equipa através do e-mail pkp.contact@gmail.com.

        \n" -"

        É altamente recomendado que faça backups da sua base de " -"dados, diretório de ficheiros, e do diretório da instalação do OMP antes de " -"proceder.

        \n" -"

        Se está a correr em Modo Seguro de PHP, assegure-se que a diretiva " -"max_execution_time no seu ficheiro de configuração php.ini está configurado " -"para um limite alto. Se este ou outro limite de tempo (ex. diretiva Apache's " -"\"Timeout\") for alcançado e o processo for interrompido, é necessária " -"intervenção manual.

        " +"Esta transação refere-se à compra do download direto de apenas uma " +"monografia ou um capítulo de monografia." -msgid "installer.preInstallationInstructions" +msgid "debug.notes.helpMappingLoad" msgstr "" -"

        1. Os seguintes ficheiros e diretórios (e os seus conteúdos) devem ser " -"editáveis:

        \n" -"
          \n" -"\t
        • config.inc.php é editável (opcional): {$writable_config}
        • " -"\n" -"\t
        • public/ é editável: {$writable_public}
        • \n" -"\t
        • cache/ é editável: {$writable_cache}
        • \n" -"\t
        • cache/t_cache/ é editável: {$writable_templates_cache}
        • \n" -"\t
        • cache/t_compile/ é editável: " -"{$writable_templates_compile}
        • \n" -"\t
        • cache/_db é editável: {$writable_db_cache}
        • \n" -"
        \n" -"\n" -"

        2. Um diretório para armazenar ficheiros deve ser criado e tornado " -"editável (ver \"Configurações Ficheiro\" abaixo).

        " +"Ficheiro XML de ajuda de mapeamento recarregado {$filename} na procura por " +"{$id}." -msgid "site.noPresses" -msgstr "Não existem editoras disponíveis." +msgid "rt.metadata.pkp.dctype" +msgstr "Livro" -msgid "user.register.form.privacyConsentThisContext" -msgstr "" -"Sim, concordo em ter os meus dados recolhidos e armazenados de acordo com a " -"política de privacidade da " -"editora." +msgid "submission.pdf.download" +msgstr "Transferir PDF" -msgid "about.aboutSoftware" -msgstr "Sobre o Open Monograph Press" +msgid "user.profile.form.showOtherContexts" +msgstr "Registar-se em outras editoras" -msgid "user.authorization.representationNotFound" -msgstr "O formato de publicação solicitado não pode ser encontrado." +msgid "user.profile.form.hideOtherContexts" +msgstr "Esconder outras editoras" -msgid "catalog.manage.findSubmissions" -msgstr "Pesquisar monografias para adicionar ao catálogo" +msgid "submission.round" +msgstr "Ronda {$round}" -msgid "catalog.manage.submissionsNotFound" -msgstr "Uma ou mais submissões não foram encontradas." +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Não foi especificada uma submissão publicada válida." -msgid "catalog.manage.noSubmissionsSelected" -msgstr "Não existem submissões selecionadas para serem adicionadas ao catálogo." +msgid "catalog.coverImageTitle" +msgstr "Capa" -msgid "common.payments" -msgstr "Pagamentos" +msgid "grid.catalogEntry.chapters" +msgstr "Capítulos" -msgid "installer.updatingInstructions" +msgid "search.results.orderBy.article" +msgstr "Título do Artigo" + +msgid "search.results.orderBy.author" +msgstr "Autor" + +msgid "search.results.orderBy.date" +msgstr "Data de Publicação" + +msgid "search.results.orderBy.monograph" +msgstr "Título da Monografia" + +msgid "search.results.orderBy.press" +msgstr "Título da Editora" + +msgid "search.results.orderBy.popularityAll" +msgstr "Popularidade (Sempre)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Popularidade (Último Mês)" + +msgid "search.results.orderBy.relevance" +msgstr "Relevância" + +msgid "search.results.orderDir.asc" +msgstr "Ascendente" + +msgid "search.results.orderDir.desc" +msgstr "Descendente" + +#~ msgid "grid.action.addAnnouncement" +#~ msgstr "Adicionar Notícia" + +msgid "section.section" +msgstr "Séries" + +msgid "search.cli.rebuildIndex.indexing" +msgstr "Indexação \"{$pressName}\"" + +msgid "search.cli.rebuildIndex.indexingByPressNotSupported" +msgstr "Esta implementação de pesquisa não permite a reindexação por editora." + +msgid "search.cli.rebuildIndex.unknownPress" msgstr "" -"Se está a atualizar uma instalação existente do OMP, clique aqui para continuar." +"O caminho da editora \"{$pressPath}\" fornecido não pode ser encontrado para " +"uma editora." diff --git a/locale/pt_PT/manager.po b/locale/pt_PT/manager.po new file mode 100644 index 00000000000..3a4d2f36f64 --- /dev/null +++ b/locale/pt_PT/manager.po @@ -0,0 +1,1710 @@ +# Carla Marques , 2023. +# José Carvalho , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-07-25 09:58+0000\n" +"Last-Translator: José Carvalho \n" +"Language-Team: Portuguese (Portugal) \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Este será o idioma padrão para o site da editora." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Certifique-se de que pelo menos uma caixa de texto está selecionada para " +"cada tarefa do Editor de Série." + +msgid "manager.series.form.reviewFormId" +msgstr "Certifique-se de que escolheu um formulário de revisão válido." + +msgid "manager.series.submissionIndexing" +msgstr "Não será incluído na indexação da editora" + +msgid "manager.series.editorRestriction" +msgstr "Exclusivo para Editores ou Editores de Série." + +msgid "manager.series.indexed" +msgstr "Indexado" + +msgid "manager.series.readingTools" +msgstr "Ferramentas de Leitura" + +msgid "manager.series.submissionsToThisSection" +msgstr "Submissões a esta série" + +msgid "manager.series.disableComments" +msgstr "Desativar comentários dos leitores para esta série." + +msgid "manager.series.policy" +msgstr "Descrição da Série" + +msgid "manager.series.unassigned" +msgstr "Editores de Série disponíveis" + +msgid "manager.series.form.titleRequired" +msgstr "É necessário inserir um título para a série." + +msgid "manager.series.noneCreated" +msgstr "Ainda não foram criadas Séries." + +msgid "manager.series.existingUsers" +msgstr "Utilizadores existentes" + +msgid "manager.series.seriesTitle" +msgstr "Título da Série" + +msgid "manager.series.restricted" +msgstr "Não permitir aos autores submeter diretamente a esta série." + +msgid "manager.settings" +msgstr "Configurações" + +msgid "manager.settings.pressSettings" +msgstr "Configurações da Editora" + +msgid "manager.settings.press" +msgstr "Editora" + +msgid "manager.settings.publisher.identity" +msgstr "Identidade da Editora" + +msgid "manager.settings.publisher" +msgstr "Nome da Editora" + +msgid "manager.settings.location" +msgstr "Localização Geográfica" + +msgid "manager.settings.publisherCode" +msgstr "Código da Editora" + +msgid "manager.settings.publisherCodeType" +msgstr "Tipo de código da Editora" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Este não é um Tipo de código de Editor válido." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Downloads do ficheiro do Livro" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Visualizações da página do resumo do Livro" + +msgid "manager.tools" +msgstr "Ferramentas" + +msgid "manager.users.currentRoles" +msgstr "Papéis Atuais" + +msgid "manager.people.allEnrolledUsers" +msgstr "Utilizadores registados nesta Editora" + +msgid "manager.people.enrollExistingUser" +msgstr "Registar um Utilizador Existente" + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Selecione um utilizador a quem atribuir as anteriores autorias do " +"utilizador, designações de edição, etc." + +msgid "manager.system" +msgstr "Configurações do Sistema" + +msgid "manager.system.archiving" +msgstr "Arquivos" + +msgid "manager.system.reviewForms" +msgstr "Formulários de Revisão" + +msgid "manager.system.readingTools" +msgstr "Ferramentas de leitura" + +msgid "manager.system.payments" +msgstr "Pagamentos" + +msgid "user.authorization.pluginLevel" +msgstr "Não tem privilégios suficientes para gerir este plugin." + +msgid "manager.setup" +msgstr "Configurações" + +msgid "manager.setup.announcements" +msgstr "Notícias" + +msgid "manager.setup.announcements.success" +msgstr "As configurações das notícias foram atualizadas." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Informação Adicional" + +msgid "manager.setup.appearInAboutPress" +msgstr "(Para aparecer no Sobre a Editora) " + +msgid "manager.setup.contextAbout" +msgstr "Sobre a Editora" + +msgid "manager.setup.contextSummary" +msgstr "Resumo da Editora" + +msgid "manager.setup.copyeditInstructions" +msgstr "Instruções para Edição de Texto" + +msgid "manager.setup.copyrightNotice" +msgstr "Aviso de Direitos de Autor" + +msgid "manager.setup.coverage" +msgstr "Cobertura" + +msgid "manager.setup.customizingTheLook" +msgstr "Passo 5. Personalizar o Aspeto & Experiência" + +msgid "manager.setup.customTags" +msgstr "Tags personalizadas" + +msgid "manager.setup.details" +msgstr "Detalhes" + +msgid "manager.setup.discipline" +msgstr "Disciplinas Académicas e Sub-Disciplinas" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Útil quando a editora é multidisciplinar e/ou os autores submitem itens " +"multidisciplinares." + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Adicione o sumário do livro atual (se disponível)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Conteúdo da Página de Início" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Disponibilizar livros em destaque na página de início" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Livros em Destaque" + +msgid "manager.setup.displayInSpotlight" +msgstr "Dispor livros destacados na página de início" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Novos Lançamentos" + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "Ao atingir a etapa da Edição de Texto" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Formato / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Decisão Editorial" + +msgid "manager.setup.emailBounceAddress" +msgstr "Endereço de retorno de e-mails" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Quaisquer e-mails não enviados resultarão numa mensagem de erro para este " +"endereço." + +msgid "manager.setup.emails" +msgstr "Identificação de E-mail" + +msgid "manager.setup.emailSignature" +msgstr "Assinatura" + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Ativar notícias" + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Exibir na Página de início" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Exibir quantas notícias na página de início. Deixe vazio para não exibir " +"notícias." + +msgid "manager.setup.enablePressInstructions" +msgstr "Ativar esta editora para que apareça publicamente no site" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Identificadores personalizados serão utilizados para identificar itens " +"publicados." + +msgid "manager.setup.enableUserRegistration" +msgstr "Visitantes podem registar-se como utilizadores da editora." + +msgid "manager.setup.focusScope" +msgstr "Âmbito da Editora" + +msgid "manager.setup.focusScopeDescription" +msgstr "DADOS HTML DE EXEMPLO " + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Para os Autores Indexarem o Seu Trabalho" + +msgid "manager.setup.form.contactEmailRequired" +msgstr "O contacto de e-mail principal é necessário." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "O e-mail de suporte é necessário." + +msgid "manager.setup.form.supportNameRequired" +msgstr "O nome de suporte é necessário." + +msgid "manager.setup.generalInformation" +msgstr "Informação Geral" + +msgid "manager.setup.guidelines" +msgstr "Instruções" + +msgid "manager.setup.identity" +msgstr "Identidade da Editora" + +msgid "manager.setup.information" +msgstr "Informação" + +msgid "manager.setup.information.forAuthors" +msgstr "Para Autores" + +msgid "manager.setup.information.forLibrarians" +msgstr "Para Bibliotecários" + +msgid "manager.setup.information.forReaders" +msgstr "Para Leitores" + +msgid "manager.setup.information.success" +msgstr "A informação para esta editora foi atualizada." + +msgid "manager.setup.institution" +msgstr "Instituição" + +msgid "manager.setup.itemsPerPage" +msgstr "Itens por página" + +msgid "manager.setup.keyInfo" +msgstr "Informação chave" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Forneça uma descição da sua editora e identifique os editores, diretores e " +"outros membros da equipa editorial." + +msgid "manager.setup.layoutAndGalleys" +msgstr "Editores de layout" + +msgid "manager.setup.layoutTemplates.file" +msgstr "Template" + +msgid "manager.setup.lists" +msgstr "Listas" + +msgid "manager.setup.lists.success" +msgstr "As configurações de lista foram atualizadas." + +msgid "manager.setup.look" +msgstr "Aspeto & Experiência" + +msgid "manager.setup.settings" +msgstr "Configurações" + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Gestão dos Passos editoriais básicos" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Configuração da Gestão e Publicação" + +msgid "manager.setup.noImageFileUploaded" +msgstr "Nenhuma imagem inserida." + +msgid "manager.setup.note" +msgstr "Nota" + +msgid "manager.setup.privacyStatement.success" +msgstr "A política de privacidade foi atualizada." + +msgid "manager.setup.homepageContent" +msgstr "Conteúdo da Página de Início da Editora" + +msgid "manager.setup.pressHomepageContent" +msgstr "Conteúdo da Página de Início da Editora" + +msgid "manager.setup.contextInitials" +msgstr "Sigla da Editora" + +msgid "manager.setup.pressPolicies" +msgstr "Passo 2. Políticas" + +msgid "manager.setup.styleSheetInvalid" +msgstr "Formato de folha de estilo inválido. O formato aceite é .css." + +msgid "manager.setup.pressTheme" +msgstr "Tema" + +msgid "manager.setup.pressThumbnail" +msgstr "Thumbnail" + +msgid "manager.setup.proofingInstructions" +msgstr "Instruções para leitura de provas" + +msgid "manager.setup.proofreading" +msgstr "Leitores de Provas" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Forneça Instruções aos Editores de Layout." + +msgid "manager.setup.publisher" +msgstr "Editora" + +msgid "manager.setup.referenceLinking" +msgstr "Ligar as referências" + +msgid "manager.setup.reviewGuidelines" +msgstr "Instruções de Revisão Externa" + +msgid "manager.setup.reviewOptions" +msgstr "Opções de Revisão" + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Os editores classificarão os revisores numa escala de 1 a 5 após cada " +"revisão." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Restringir o Acesso ao Ficheiro" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Os revisores terão acesso ao ficheiro de submissão apenas depois de aceitar " +"a revisão." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Acesso do Revisor" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Acesso do Revisor em um clique" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Os revisores podem receber um link seguro com o e-mail de convite, o que os " +"fará entrar diretamente na sua conta a clicar nesse link." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Incluir um link seguro no e-mail de convite aos revisores." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Classificação do Revisor" + +msgid "manager.setup.reviewPolicy" +msgstr "Política de Revisão" + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Secções e Editores de Secção" + +msgid "manager.setup.siteAccess.view" +msgstr "Acesso ao site" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Ver Conteúdo do Livro" + +msgid "manager.setup.stepsToPressSite" +msgstr "Cinco Passos para ter o Site da Editora" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(Ex.: Fotossíntese; Buracos Negros; Problema do mapa de quatro cores; Teoria " +"Bayesiana)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Palavras-chave" + +msgid "manager.setup.submissionGuidelines" +msgstr "Instruções de submissão" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Item de verificação obrigatório." + +msgid "manager.setup.workflow" +msgstr "Fluxo de trabalho" + +msgid "manager.setup.submissions.description" +msgstr "" +"Instruções aos Autores, direitos de autor, e indexação (incluindo registo)." + +msgid "manager.setup.typeMethodApproach" +msgstr "Tipo (Método/Abordagem)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Forneça exemplos de tipos de investigação relevante, métodos, e abordagens " +"relevantes para este campo" + +msgid "manager.setup.useCopyeditors" +msgstr "Um editor de texto será designado para cada submissão." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "A editora usará uma equipa editorial/de revisão." + +msgid "manager.setup.useImageTitle" +msgstr "Imagem de título" + +msgid "manager.setup.userRegistration" +msgstr "Registo de Utilizador" + +msgid "manager.setup.volumePerYear" +msgstr "Volume por ano" + +msgid "manager.setup.publicationFormat.code" +msgstr "Formato" + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "É necessário dar um nome ao formato." + +msgid "manager.setup.newPublicationFormat" +msgstr "Novo Formato de Publicação" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Para criar um novo formato de publicação, preencha o formulário a seguir e " +"clique em 'Criar'." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Esta editora não se encontra a receber submissões de momento. Visite as " +"configurações de fluxo de trabalho para permitir submissões." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Impedir que os utilizadores submetam novos artigos à editora. As submissões " +"podem ser desativadas para séries específicas da editora na página de " +"configurações de Séries da editora ." + +msgid "manager.setup.genres" +msgstr "Géneros" + +msgid "manager.setup.newGenre" +msgstr "Novo género de livro" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Para cria um novo género, preencha o formulário abaixo e clique em \"Criar\"." + +msgid "manager.setup.deleteSelected" +msgstr "Eliminar os selecionados" + +msgid "manager.setup.restoreDefaults" +msgstr "Restaurar Configurações padrão" + +msgid "manager.setup.prospectus" +msgstr "Guia de prospecto" + +msgid "manager.setup.submitToCategories" +msgstr "Permitir submissões por categoria" + +msgid "manager.setup.submitToSeries" +msgstr "Permitir submissões por série" + +msgid "manager.setup.currentFormats" +msgstr "Formatos atuais" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Categorias e Séries" + +msgid "manager.setup.reviewForms" +msgstr "Formulários de Revisão" + +msgid "manager.setup.roleType" +msgstr "Tipo de Papel" + +msgid "manager.setup.authorRoles" +msgstr "Papéis de Autor" + +msgid "manager.setup.managerialRoles" +msgstr "Papéis de gestão" + +msgid "manager.setup.availableRoles" +msgstr "Papéis Disponíveis" + +msgid "manager.setup.currentRoles" +msgstr "Papéis atuais" + +msgid "manager.setup.internalReviewRoles" +msgstr "Papéis de Revisor Interno" + +msgid "manager.setup.masthead" +msgstr "Página de Início" + +msgid "manager.setup.editorialTeam" +msgstr "Equipa editorial" + +msgid "manager.setup.editorialTeam.description" +msgstr "Lista de editores, diretores, e outras pessoas associadas à editora." + +msgid "manager.setup.files" +msgstr "Ficheiros" + +msgid "manager.setup.productionTemplates" +msgstr "Templates de Produção" + +msgid "manager.publication.library" +msgstr "Biblioteca da Editora" + +msgid "manager.setup.resetPermissions" +msgstr "Restaurar as Permissões do Livro" + +msgid "manager.setup.resetPermissions.success" +msgstr "Permissões do livro restauradas com sucesso." + +msgid "grid.genres.title.short" +msgstr "Componentes" + +msgid "grid.genres.title" +msgstr "Componentes do Livro" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Enviar uma cópia para o contacto principal, identificado nas Configurações " +"da Editora." + +msgid "grid.series.pathAlphaNumeric" +msgstr "O caminho da série deve conter apenas letras e números." + +msgid "grid.series.pathExists" +msgstr "O caminho da série já existe. Insira um caminho único." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Selecionar Série" + +msgid "grid.series.urlWillBe" +msgstr "O URL da série será: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "Estatísticas da Editora" + +msgid "stats.context.tooltip.label" +msgstr "Sobre as estatísticas da editora" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "Número de visualizações da página de início e do catálogo." + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Esta ação irá substituir qualquer configuração de idioma específico desta " +"editora para este idioma" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"As Instruções para Leitura de provas ficarão disponíveis para Leitores de " +"provas, Autores, Editores de Layout, e Editores de Secção na etapa de " +"Edição. Abaixo encontra-se um conjunto de instruções padrão em HTML, que " +"podem ser editadas ou substituídas pelo Editor-gestor a qualquer momento (em " +"HTML ou texto simples)." + +msgid "manager.setup.publisherDescription" +msgstr "O nome da organização editora do conteúdo aparecerá no Sobre a Editora." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Os utilizadores devem estar registados e entrar na sua conta para ver o site " +"da editora." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Instruções para Revisão Interna" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Não existem idiomas adicionais disponíveis. Contacte o administrador do site " +"caso deseje utilizar idiomas adicionais nesta editora." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Os itens da editora podem ser publicados de forma coletiva, como parte de um " +"livro com o seu próprio sumário. Em alternativa, itens individuais podem ser " +"publicados assim que estiverem prontos, adicionando-os ao sumário do volume " +"\"atual\". Forneça aos autores, no Sobre a Editora, uma declaração sobre o " +"sistema que esta editora irá usar e a frequência de publicação esperada." + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Instruções de Layout para Ligar as Referências" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Forneça aos revisores externos os critérios para avaliar a adequação para " +"publicação da submissão na editora, o que pode incluir instruções para " +"prepararem uma revisão efetiva e útil. Os revisores terão a oportunidade de " +"enviar comentários direcionados para o autor e editor, bem como comentários " +"apenas para o editor." + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Lembretes automáticos por E-mail" + +msgid "manager.series.confirmDelete" +msgstr "Deseja realmente eliminar esta série de forma permanente?" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Os utilizadores devem estar registados e entrar na sua conta para ver o " +"conteúdo em acesso aberto." + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Para ativar estas opções, o administrador do site deve ativar a opção " +"scheduled_tasks no ficheiro de configuração do OMP. Confiruações do " +"servidor adicionais podem ser necessárias para suportar esta funcionalidade (" +"que pode não ser possível em todos os servidores), tal como indicado na " +"documentação do OMP." + +msgid "manager.series.open" +msgstr "Submissões abertas" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Lembretes do Revisor" + +msgid "manager.series.submissionReview" +msgstr "Não será revisto por pares" + +msgid "manager.series.abstractsNotRequired" +msgstr "Não exigir resumos" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Forneça uma descrição breve (50-300 caracteres) da editora para que os " +"motores de pesquisa possam exibir a editora nos resultados de pesquisa." + +msgid "manager.series.book" +msgstr "Série de Livros" + +msgid "manager.setup.searchEngineIndexing" +msgstr "Indexação para pesquisa" + +msgid "manager.series.create" +msgstr "Criar Série" + +msgid "manager.series.assigned" +msgstr "Editores desta Série" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Ajude os motores de pesquisa como o Google a encontrar e exibir o seu site. " +"Encorajamos a submeter o mapa do " +"site." + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Adicionar um Editor de Série de um dos disponíveis. Uma vez adicionado, " +"decida se o Editor de Série irá supervisionar a REVISÃO (por pares) e/ou a " +"EDIÇÃO (edição de texto, de layout e leitura de provas) das submissões a " +"esta série. Os Editores de Série são criados ao clicar em Editores de Série indo a Papéis em Configurações " +"da Editora." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "A configuração da indexação para motores de pesquisa foi atualizada." + +msgid "manager.series.hideAbout" +msgstr "Omitir esta série do Sobre a Editora." + +msgid "manager.series.form.abbrevRequired" +msgstr "É necessário inserir a abreviatura do título para a série." + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Caso não tenha inserido Secções, os itens serão submetidos à Secção Livros " +"por defeito.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Para criar ou modificar as secções da editora (ex.: Livros, Recensões, etc.)" +", vá a Gestão de Secções.

        Os Autores ao submeter itens à editora " +"irão designar…" + +msgid "manager.payment.generalOptions" +msgstr "Opções Gerais" + +msgid "manager.setup.securitySettings" +msgstr "Configurações de Acesso e Segurança" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Os pagamentos serão ativados para esta editora. Note que os utilizadores " +"terão que entrar nas suas contas para realizar pagamentos." + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Outras opções relacionadas com segurança e acesso podem ser configuradas na " +"página de Acesso e Segurança." + +msgid "manager.payment.success" +msgstr "As configurações de pagamento foram atualizadas." + +msgid "manager.setup.selectEditorDescription" +msgstr "O Editor será o responsável por acompanhar o processo editorial." + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Estes campos são necessários para publicar metadados ONIX válidos." + +msgid "manager.setup.selectSectionDescription" +msgstr "A secção da editora para a qual o item será considerado." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Todas as configurações específicas do processo de distribuição (notificação, " +"indexação, arquivo, pagamento, ferramentas de leitura)." + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Resumo do Livro e downloads" + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Disponibilizar sempre os links das composições finais e indicar se são de " +"acesso restrito." + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Visualizações da página principal da Série" + +msgid "manager.setup.subjectProvideExamples" +msgstr "Forneça exemplos de palavras-chave ou assuntos para guiar os autores" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Visualizações da página principal da Editora" + +msgid "manager.tools.importExport" +msgstr "" +"Todas as ferramentas específicas para importar e exportar de dados (" +"editoras, livros, utilizadores)" + +msgid "manager.setup.typeExamples" +msgstr "" +"(Ex.: Investigação histórica; Quase-experimental; Análise literária; " +"Levantamento/Entrevista)" + +msgid "manager.setup.useStyleSheet" +msgstr "Folha de estilos da Editora" + +msgid "manager.tools.statistics" +msgstr "" +"Ferramentas para gerar relatórios relacionados com estatísticas de uso (" +"visualizações da página de índice do catálogo, visualizações da página de " +"resumo de livro, downloads dos ficheiros de livro)" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Um editor de layout será designado para preparar os ficheiros HTML, PDF, " +"etc., para publicação eletrónica." + +msgid "manager.users.availableRoles" +msgstr "Papéis Disponíveis" + +msgid "manager.setup.useProofreaders" +msgstr "" +"Um leitor de provas será designado para verificar (junto com os autores) as " +"composições finais antes da publicação." + +msgid "manager.users.selectRole" +msgstr "Selecionar Papel" + +msgid "manager.setup.useTextTitle" +msgstr "Título" + +msgid "manager.people.allPresses" +msgstr "Todas as Editoras" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "É necessário escolher um formato." + +msgid "manager.people.allSiteUsers" +msgstr "Registe um Utilizador deste Site nesta Editora" + +msgid "manager.people.allUsers" +msgstr "Todos os Utilizadores Registados" + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Este é um formato físico (não-digital)?" + +msgid "manager.people.confirmRemove" +msgstr "" +"Remover este utilizador desta editora? Esta ação irá remover todos os papéis " +"deste utilizador nesta editora." + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Este formato de publicação está em uso num livro desta editora, portanto não " +"pode ser eliminado." + +msgid "manager.people.enrollSyncPress" +msgstr "Com a editora" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Selecione um utilizador para fundir com outra conta de utilizador (ex., " +"quando alguém tem duas contas). A conta selecionada em primeiro será " +"eliminada e as suas submissões, tarefas, etc. serão atribuídas à segunda " +"conta." + +msgid "manager.setup.genresDescription" +msgstr "" +"Estes géneros são usados apenas para nomear ficheiros e são apresentados num " +"menu drop-down ao fazer upload de ficheiros. Os géneros designados com ## " +"permitem ao utilizador associar o ficheiro a um livro completo 99z ou um " +"capítulo específico por número (ex.: 02)." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Sincronização dos Registos irá registar todos os utilizadores com um " +"determinado papel em uma editora para o mesmo papel nesta editora. Esta " +"função permite que um determinado conjunto de utilizadores (ex.: Revisores) " +"sejam sincronizados entre editoras." + +msgid "manager.setup.prospectusDescription" +msgstr "" +"O guia de prospecto é um documento preparado pela editora para auxiliar o " +"autor a descrever o material submetido de forma a permitir à editora " +"determinar o valor da submissão. Prospectos podem incluir muitos itens - " +"como o potencial de marketing ou valor teórico; em qualquer caso, a editora " +"deve criar um guia de prospoecto que complemente a sua agenda editorial." + +msgid "manager.people.confirmDisable" +msgstr "" +"Desativar este utilizador? Esta ação irá impedir o utilizador de entrar no " +"sistema.\n" +"\n" +"Pode opcionalmente fornecer ao utilizador uma razão para a desativação da " +"sua conta." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Não tem permissões de administração sobre este utilizador. As razões podem " +"ser:\n" +"
          \n" +"\t
        • O utilizador é um administrador do site
        • \n" +"\t
        • O utilizador tem conta ativa noutras editoras para a qual não tem " +"permissões
        • \n" +"
        \n" +" Esta tarefa deverá ser realizada por um administrador do site.\n" +"\t" + +msgid "manager.setup.issnDescription" +msgstr "" +"O ISSN (International Standard Serial Number) é um código de oito dígitos " +"que identifica uma publicação periódica, incluindoséries monográficas. O " +"número pode ser obtido no Centro Internacional do ISSN." + +msgid "manager.pressManagement" +msgstr "Gestão da Editora" + +msgid "manager.setup.categories.description" +msgstr "" +"Crie uma lista de categorias para ajudar a organizar as suas publicações. " +"Categorias são grupos de livros de acordo com o assunto, por exemplo, " +"Economia; Literatura; Poesia. Categorias podem ser agrupadas dentro de " +"categorias \"pai\": por exemplo, um pai Economia pode incluir as categorias " +"Micro e Macroeconomia. Os leitores poderão então procurar e navegar no " +"conteúdo da editora por meio das categorias." + +msgid "manager.setup.aboutItemContent" +msgstr "Conteúdo" + +msgid "manager.setup.addAboutItem" +msgstr "Adicionar Item ao Sobre" + +msgid "manager.setup.addChecklistItem" +msgstr "Adicionar Item de verificação" + +msgid "manager.setup.addItem" +msgstr "Adicionar Item" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Adicionar Item para aparecer em \"Sobre a Editora\"" + +msgid "manager.setup.series.description" +msgstr "" +"Pode criar várias séries para ajudar a organizar as suas publicações. Uma " +"série representa um conjunto especial de livros dedicados a temas ou " +"assuntos propostos, normalmente sugeridos por membros da equipa editorial ou " +"por investigadores, que fazem o seu acompanhamento. Os leitores poderão " +"procurar e navegar no conteúdo da editora por série." + +msgid "manager.setup.addNavItem" +msgstr "Adicionar Item" + +msgid "manager.setup.addSponsor" +msgstr "Adicionar Instituição Financiadora" + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Notícias podem ser publicadas para informar os leitores da editora sobre " +"novidades e eventos. As notícias publicadas aparecerão na página das " +"Notícias." + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Insira qualquer informação adicional para ficar disponível aos leitores na " +"página de Notícias." + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Inclua qualquer informação sobre a sua editora que possa ser do interesse de " +"leitores, autores ou revisores. Pode incluir a política de acesso aberto, o " +"âmbito da editora, divulgação de patrocínios, e o histórico da editora." + +msgid "manager.setup.copyediting" +msgstr "Editores de texto" + +msgid "manager.files.note" +msgstr "" +"Nota: O navegador de ficheiros é uma ferramenta avançada que permite que os " +"ficheiros e diretórios associados à editora possem ser visualizados e " +"manipulados diretamente." + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"As Instruções de Edição de Texto ficarão disponíveis aos Editores de Texto, " +"Autores, e Editores de Secção na etapa de Edição. Abaixo está um conjunto de " +"instruções padrão em HTML, que podem ser modificados ou substituídos pelo " +"Editor-gestor da Editora em qualquer momento (em HTML ou texto simples)." + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Altura Máxima da Imagem da Capa" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Largura Máxima da Imagem da Capa" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"As imagens serão reduzidas quando forem maiores do que este tamanho mas não " +"serão ampliadas ou esticadas para ajusatar a estas dimensões." + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Passos: Fila de submissão > Revisão > Edição > Sumário.

        " +"\n" +"Selecione um modelo para lidar com os aspetos do processo editorial. (Para " +"designar um Editor-gestor ou um Editor de Série, vá a Editores em Gestão da " +"Editora.)" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Tags HTML personalizadas de cabeçalho para serem inseridas no cabeçalho de " +"cada página (ex.: META tags)." + +msgid "manager.setup.details.description" +msgstr "Nome da editora, contactos, patrocinadores, e ferramentas de pesquisa." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"O Editor-gestor da Editora registará todos os utilizadores. Editores ou " +"Editores de Secção poderão registar utilizadores como revisores." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(Ex.: História; Educação; Sociologia; Psicologia; Estudos Culturais; Direito)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "Forneça exemplos de disciplinas académicas relevantes para esta editora" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Destacados" + +msgid "manager.setup.displayNewReleases" +msgstr "Dispor novos lançamentos na página de início" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Permitir que os Digital Object Identifiers (DOI) sejam atribuídos a " +"trabalhos publicados pela editora." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Selecione os tipos de trabalhos publicados pela editora que devem ter DOI " +"atribuídos. A maioria das editoras atribui DOI a livros/capítulos, mas pode " +"querer atribuir DOI a todos os itens publicados." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Use padrões.
        %p.%m para livros
        %p.%m.c%c para capítulos
        %p.%m.%f para formatos de publicação
        %p.%m.%f.%s para ficheiros." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"De forma a enviar e-mails não enviados para um endereços de retorno, o " +"adminitrador do site deve ativar a opção allow_envelope_sender " +"no ficheiro de configuração do site. Será necessária configuração do " +"servidor, como indicado na documentação do OMP." + +msgid "manager.setup.emailSignature.description" +msgstr "" +"Os e-mails preparados que são enviados pelo sistema em nome da editora terão " +"a seguinte assinatura adicionada no final." + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Podem ser publicadas notícias para informar os leitores de novidades ou " +"eventos. Notícias publicadas irão aparecer na página das Notícias." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Identificadores personalizados serão utilizados para identificar composições " +"(ex.: ficheiros HTML ou PDF) para itens publicados." + +msgid "manager.setup.focusAndScope" +msgstr "Âmbito da Editora" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Descreva aos autores, leitores, e bibliotecários o âmbito e características " +"dos livros e outros itens que a editora irá publicar." + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"O OMP adota o Protocolo de recolha de metadados do Open Archives Initiative, que é um " +"padrão emergente para fornecer acesso a recursos eletrónicos de investigação " +"bem indexados, à escala global. Os autores usarão um template similar para " +"fornecer metadados da sua submissão. O Editor-gestor deve selecionar as " +"categorias para indexação e apresentar aos autores exemplos relevantes para " +"os ajudar a indexar o seu trabalho, separando os termos com ponto e vírugla (" +"ex., termo1; termo2). As entradas devem ser introduzidos como exemplos " +"usando \"Ex.:\" ou \"Por exemplo,\"." + +msgid "manager.setup.form.contactNameRequired" +msgstr "O nome do contacto principal é necessário." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "O número de revisores por submissão é necessário." + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Passo 1. Detalhes" + +msgid "manager.setup.preparingWorkflow" +msgstr "Passo 3. Preparar o Fluxo de Trabalho" + +msgid "manager.setup.information.description" +msgstr "" +"Breves descrições da editora para bibliotecários e futuros autores e " +"leitores. Estas ficarão disponíveis na barra lateral do site quando o bloco " +"da Informação for adicionado." + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

        Para permitir que os leitores localizem versões online do trabalho citado " +"pelo autor, estão disponíveis as seguintes opções.

        \n" +"\n" +"
          \n" +"
        1. Adicionar uma Ferramenta de Leitura

          O Editor-gestor " +"pode adicionar \"Procurar Referências\" às Ferramentas de Leitura que " +"acompanham os itens publicados, o que permite aos leitores colar um título " +"de uma referência e procurar em bases de dados pré-selecionados o trabalho " +"citado.

        2. \n" +"
        3. Embeber Links nas Referências

          O Editor de Layout " +"pode adicionar um link para as referências que podem ser encontradas online " +"utilizando as seguintes instruções (que podem ser editadas).

        4. \n" +"
        " + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Limitar o número de itens (por exemplo, submissões, utilizadores, ou tarefas " +"de edição) a serem exibidos numa lista antes de apresentar itens " +"subsequentes numa segunda página." + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Deseja realmente restaurar os dados de permissão já anexados aos livros?" + +msgid "manager.setup.labelName" +msgstr "Nome do rótulo" + +msgid "manager.setup.layoutInstructions" +msgstr "Instruções" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"A declaração de direitos de autor e a informação de licença serão anexados " +"permanentemente ao conteúdo publicado, assegurando que estes dados não " +"mudará no caso da editora alterar as suas políticas para novas submissões. " +"Para restaurar as permissões armazenadas já anexadas ao conteúdo publicado, " +"use o botão abaixo." + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"As Instruções de Layout podem ser preparadas para a formatação dos itens " +"publicados na editora e inseridas abaixo em HTML ou em texto sem formatação. " +"Ficarão disponíveis para o Editor de Layout e o Editor de Secção na página " +"de Edição de cada submissão. (Como cada editora pode adotar os seus próprios " +"formatos de publicação, padrões bibliográficos, folhas de estilo, etc., não " +"é apresentado um conjunto de instruções.)" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" +"Selecione a série à qual gostaria que este item de menu ficasse associado." + +msgid "manager.setup.layoutTemplates" +msgstr "Modelos de layout" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Modelos de layout podem ser inseridos para que apareçam em Layout para cada " +"um dos formatos de publicação padrão na editora (ex.: livro, recensão, etc.) " +"utilizando qualquer formato de ficheiro (ex.: pdf, doc, etc.) com anotações " +"adicionados especificando fonte, tamanho, margens, etc. para servir de guia " +"aos Editores de Layout e Leitores de Prova." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Selecionar Categoria" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Título" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" +"Selecione a cateogira à qual gostaria que este item de menu ficasse " +"associado." + +msgid "stats.context.tooltip.text" +msgstr "Número de visualizações da página de início da editora e do catálogo." + +msgid "manager.setup.look.description" +msgstr "" +"Cabeçalho da página de início, conteúdo, cabeçalho da editora, rodapé, barra " +"de navegação e folha de estilos." + +msgid "stats.context.downloadReport.description" +msgstr "" +"Download de um ficheiro XSV/Excel com as estatísticas e uso para esta " +"editora que correspondem aos seguintes parâmetros." + +msgid "manager.setup.management.description" +msgstr "" +"Acesso e segurança, calendarização, notícias, edição de texto, layout e " +"leitura de provas." + +msgid "manager.setup.managingThePress" +msgstr "Passo 4. Configurações" + +msgid "manager.setup.masthead.success" +msgstr "Os detalhes do cabeçalho da editora foram atualizados." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Download da Editora" + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Nenhuma folha de estilos inserida." + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Ao usar o e-mail Notificar autor, incluir o endereço de todos os coautores " +"para submissões com múltipla autoria, em vez de enviar apenas para quem " +"submeteu." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"A edição de texto será tarefa do Editor ou do Editor de Secção designado " +"para a submissão." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Um Editor ou Editor de Secção designado para a submissão irá preparar os " +"ficheiros HTML, PDF, etc." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Um Editor ou Editor de Secção designado para a submissão irá verificar as " +"composições finais." + +msgid "manager.setup.numPageLinks" +msgstr "Links de página" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Limitar o número de links a serem exibidos nas páginas seguintes numa lista." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Acesso ao Conteúdo da Editora" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN eletrónico" + +msgid "manager.setup.policies" +msgstr "Políticas" + +msgid "manager.setup.policies.description" +msgstr "" +"Âmbito, revisão por pares, secções, privacidade, segurança, e itens " +"adicionais do Sobre a Editora." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Vários componentes da aparência da Editora podem ser configurados a partir " +"desta página, incluindo elementos do cabeçalho e do rodapé, o estilo e tema, " +"e como as listas de informações são apresentadas aos utilizadores." + +msgid "manager.setup.pressDescription" +msgstr "Sumário da Editora" + +msgid "manager.setup.pressDescription.description" +msgstr "Uma breve descrição da editora." + +msgid "manager.setup.aboutPress" +msgstr "Sobre a Editora" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Inclua qualquer informação sobre a sua editora que possa interessar aos " +"leitores, autores ou revisores. Pode incluir a política de acesso aberto, o " +"âmbito da editora, declarção de direitos de ator, divulgação de patrocínios, " +"histórico da editora e política de privacidade." + +msgid "manager.setup.pressArchiving" +msgstr "Arquivo da Editora" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"A página de início da editora consiste em alguns links de navegação por " +"defeito. Conteúdo adicional pode ser inserido utilizando uma ou todas as " +"seguintes opções, e que irão aparecer pela ordem apresentada." + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"A página de início da editora consiste em links de navegação padrão. " +"Conteúdo adicional pode ser adicionado utilizando uma ou todas as seguintes " +"opções, que irão aparecer pela ordem apresentada." + +msgid "manager.setup.selectCountry" +msgstr "" +"Selecione o país onde a editora está localizada, ou o país do endereço da " +"editora." + +msgid "manager.setup.layout" +msgstr "Layout da Editora" + +msgid "manager.setup.pageHeader" +msgstr "Cabeçalho da Página da Editora" + +msgid "manager.setup.pageHeaderDescription" +msgstr "Descrição do Cabeçalho" + +msgid "manager.setup.pressSetup" +msgstr "Configuração" + +msgid "manager.setup.pressSetupUpdated" +msgstr "As configurações foram atualizadas." + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Um pequeno logo ou representação da editora que pode ser usado na lista de " +"editoras." + +msgid "manager.setup.contextTitle" +msgstr "Nome da Editora" + +msgid "manager.setup.printIssn" +msgstr "ISSN impresso" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Descarregar Livros" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" +"O número de visualizações do resumo e downloads do ficheiro para cada livro." + +msgid "stats.publicationStats" +msgstr "Estatísticas do Livro" + +msgid "stats.publications.details" +msgstr "Detalhes do Livro" + +msgid "stats.publications.none" +msgstr "" +"Não foram encontrados livros com estatísticas de uso correspondentes a estes " +"parâmetros." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Total de visualizações do catálogo por data" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Total de visualizações de ficheiro por data" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} de {$total} livros" + +msgid "stats.publications.abstracts" +msgstr "Entradas no Catálogo" + +msgid "plugins.importexport.common.error.validation" +msgstr "Não foi possível converter os objetos selecionados." + +msgid "plugins.importexport.common.invalidXML" +msgstr "XML inválido:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Exportar submissões" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "O processo falhou ao analisar os capítulos" + +msgid "emailTemplate.variable.context.contextName" +msgstr "O nome da editora" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "O URL da página de início da editora" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "O endereço de e-mail do contacto principal da editora" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "O nome do tipo de pagamento" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Nome do site quando existe mais do de uma editora alojada" + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

        Proposta de aviso de direito de autor Creative Commons

        \n" +"

        Proposta de política de acesso aberto

        \n" +"Autores que publicam nesta editora concordam com os seguintes termos:\n" +"
          \n" +"\t
        1. Autores mantém os direitos de autor e transferem para a editora o " +"direito de primeira publicação do trabalho, licenciada simultaneamente sob " +"uma licença de atribuição Creative Commons, que permite a outros " +"compartilhar o trabalho com o reconhecimento de autoria e publicação inicial " +"nesta editora.
        2. \n" +"\t
        3. Os autores podem assumir outros contratos adicionais em separado, para " +"a distribuição não exclusiva da versão publicada pela editora (ex.: " +"publicação em repositório institucional ou em um livro), com reconhecimento " +"de publicação inicial nesta editora.
        4. \n" +"\t
        5. Os autores podem e são incentivados a publicar o seu trabalho online " +"(ex.: em repositórios institucionais ou no seu próprio site) antes e durante " +"o processo de submissão, pois podem levar a trocas produtivas de informação, " +"bem como mais citação e mais rápida do trabalho publicado (veja O efeito do acesso aberto).
        6. \n" +"
        \n" +"\n" +"

        Proposta de política para acesso aberto embargado

        \n" +"Autores que publicam nesta editora concordam com os seguintes termos:\n" +"
          \n" +"\t
        1. Autores mantém os direitos de autor e transferem para a editora o " +"direito de primeira publicação do trabalho [ESPECIFICAR PERÍODO DE TEMPO] " +"após a publicação, licenciada simultaneamente sob uma licença de atribuição " +"Creative Commons, que permite a outros compartilhar o trabalho com o " +"reconhecimento de autoria e publicação inicial nesta editora.
        2. \n" +"\t
        3. Os autores podem assumir outros contratos adicionais em separado, para " +"a distribuição não exclusiva da versão publicada pela editora (ex.: " +"publicação em repositório institucional ou em um livro), com reconhecimento " +"de publicação inicial nesta editora.
        4. \n" +"\t
        5. >Os autores podem e são incentivados a publicar o seu trabalho online " +"(ex.: em repositórios institucionais ou no seu próprio site) antes e durante " +"o processo de submissão, pois podem levar a trocas produtivas de informação, " +"bem como mais citação e mais rápida do trabalho publicado (veja O efeito do acesso aberto)
        6. \n" +"
        " + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Nenhum objeto selecionado." + +msgid "stats.publications.downloadReport.description" +msgstr "" +"Download de um ficheiro CSV/Excel com estatísticas de uso para livros que " +"cumpram com os seguintes parâmetros." + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Envie uma cópia do e-mail de confirmação da submissão para o contacto " +"principal desta editora." + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.disabled.description" +msgstr "" +"Não foi definido qualquer contacto principal para esta editora. Pode inserir " +"o contacto principal nas configurações da editora." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Os objetos especificados não foram encontrados." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "O utilizador especificado, \"{$userName}\", não existe." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "O processo falhou ao analisar os formatos de publicação" + +msgid "emailTemplate.variable.context.contactName" +msgstr "O nome do contacto principal da editora" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "A assinatura de e-mail da editora para e-mails automáticos" + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "O endereço de correspondência da editora" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "O valor do pagamento" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "A moeda do valor do pagamento, como por exemplo EUR" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "O link para a página de estatísticas dos livros" + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Este e-mail é enviado automaticamente todos os meses para os editores e " +"editores-gestores para fornecer uma visão da integridade do sistema." + +msgid "mailable.validateEmailContext.name" +msgstr "Validar e-mail (registo de editora)" + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Ficheiros" + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Por exemplo, editora%ppub%r poderia criar um DOI como 10.1234/" +"editoraESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "para livros" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "para capítulos" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "para formatos de publicação" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "para ficheiros" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Insira um padrão de sufixo DOI para livros." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Insira um padrão de sufixo DOI para capítulos." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Insira um padrão de sufixo DOI para formatos de publicação." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Insira um padrão de sufixo DOI para ficheiros." + +msgid "doi.manager.settings.doiReassign" +msgstr "Reatribuir DOIs" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Se alterar a sua configuração do DOI, os DOIs já atribuídos não serão " +"afetados. Quando gravar as configurações, use este botão para eliminar todos " +"os DOIs já existentes e para que as novas configurações surtam efeitos em " +"todos os objetos existentes." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Deseja eliminar todos os DOIs existentes?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.assignDoi" +msgstr "Atribuir" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "monografia" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "capítulo" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "formato de publicação" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "ficheiro" + +msgid "doi.editor.missingParts" +msgstr "" +"Não foi possível gerar o DOI porque faltam dados a um ou mais partes do " +"padrão DOI." + +msgid "doi.editor.patternNotResolved" +msgstr "O DOI não pode ser atribuído porque contem um padrão não resolvido." + +msgid "doi.editor.assigned" +msgstr "O DOI é atribuído a este {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"O sufixo DOI já se encontra atribuído a outro item publicado. Insira um " +"sufixo DOI exclusivo para cada item." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Limpar" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Deseja realmente eliminar o DOI existente?" + +msgid "doi.editor.assignDoi" +msgstr "Atribua o DOI {$pubId} a este {$pubObjectType}" + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"O DOI {$pubId} não pode ser atribuído porque contem um padrão não resolvido." + +msgid "doi.editor.assignDoi.assigned" +msgstr "O DOI {$pubId} foi atribuído." + +msgid "doi.editor.missingPrefix" +msgstr "O DOI deve começar com {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "O DOI para esta publicação será {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "Não foi atribuído qualquer DOI a esta publicação." + +msgid "doi.editor.preview.chapters" +msgstr "Capítulo: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Formato de publicação: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Ficheiro: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Item" + +msgid "doi.manager.submissionDois" +msgstr "DOIs de Monografias" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Este e-mail notifica o autor de que a sua submissão vai ser enviada para a " +"etapa de revisão interna." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Este e-mail notifica o autor que a sua submissão foi rejeitada, antes de ser " +"enviada para revisão, porque a submissão não cumpre os critérios de " +"publicação da editora." + +msgid "manager.institutions.noContext" +msgstr "A instituição da editora não foi encontrada." + +msgid "manager.manageEmails.description" +msgstr "Edite as mensagens enviadas em e-mails desta editora." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Enviado para Revisão Interna" + +msgid "mailable.indexRequest.name" +msgstr "Índice Solicitado" + +msgid "mailable.indexComplete.name" +msgstr "Índice Concluído" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Nova Versão Criada" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" +"Este e-mail automaticamente notifica os editores designados quando uma nova " +"versão da submissão foi criada." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"Este e-mail é enviado para os editores-gestores quando uma nova submissão é " +"enviada e nenhum editor foi designado." + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Este e-mail é enviado automaticamente quando um novo utilizador se regista " +"na editora e as configurações exigem a validação do endereço de e-mail." + +msgid "doi.manager.displayName" +msgstr "DOIs" + +msgid "doi.description" +msgstr "" +"Este plugin permite a atribuição de Identificadores de Objetos Digitais " +"(DOIs) a livros, capítulos, formatos de publicação e ficheiros no OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "Configure o plugin DOI para poder gerir e usar DOIs no OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Selecione os objetos publicados que terão Digital Object Identifiers (DOI) " +"atribuídos:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monografias" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Capítulos" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Formatos de publicação" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Prefixo DOI" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "O prefixo DOI é obrigatório e deve estar no formato 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Insira um padrão de sufixo personalizado para cada tipo de publicação. O " +"padrão de sufixo personalizado pode usar os seguintes símbolos para gerar o " +"sufixo:

        %pIniciais da Editora
        %m ID da " +"monografia
        %c ID do capítulo
        %f ID do " +"formato de publicação
        %s ID do ficheiro
        %x " +"Identificador personalizado

        Cuidado que os padrões de sufixo " +"personalizados geralmente levam a problemas ao gerar e depositar os DOIs. Ao " +"usar um padrão de sufixo personalizado, teste cuidadosamente se os editores " +"podem gerar DOIs e depositá-los numa agência de registro como a Crossref. " + +msgid "doi.editor.doi.description" +msgstr "O DOI deve começar com {$prefix}." + +msgid "doi.editor.customSuffixMissing" +msgstr "" +"O DOI não pode ser atribuído porque um sufixo personalizado encontra-se em " +"falta." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"O que vê é uma pré-visualização do DOI. Selecionar a caixa de verificação e " +"guarde o formulário para atribuir o DOI." + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "O DOI não pode ser atribuído porque falta o sufixo personalizado." + +msgid "mailable.layoutComplete.name" +msgstr "Composições completas" + +msgid "manager.sections.alertDelete" +msgstr "" +"Antes de excluir esta série, deve mover as submissões associadas a esta " +"série para outra série." + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "" +"Um registo de direito de vendas foi ignorado porque não tem país ou região " +"atribuído." + +msgid "emailTemplate.variable.context.contextAcronym" +msgstr "As iniciais da editora" diff --git a/locale/pt_PT/submission.po b/locale/pt_PT/submission.po index 92892a629bb..3aa54df9495 100644 --- a/locale/pt_PT/submission.po +++ b/locale/pt_PT/submission.po @@ -1,10 +1,12 @@ +# Carla Marques , 2021, 2022. +# José Carvalho , 2022. msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-22 20:40+0000\n" -"PO-Revision-Date: 2020-12-24 13:52+0000\n" -"Last-Translator: Carla Marques \n" +"PO-Revision-Date: 2022-12-27 10:02+0000\n" +"Last-Translator: José Carvalho \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -12,505 +14,622 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.13.1\n" -msgid "submission.publication" -msgstr "Publicação" +msgid "submission.upload.selectComponent" +msgstr "Selecionar Componente" -msgid "publication.status.published" -msgstr "Publicado" +msgid "submission.title" +msgstr "Título do Livro" -msgid "submission.status.scheduled" -msgstr "Agendado" +msgid "submission.select" +msgstr "Selecionar Submissão" -msgid "publication.status.unscheduled" -msgstr "Não agendado" +msgid "submission.synopsis" +msgstr "Sinopse" -msgid "submission.publications" -msgstr "Publicações" +msgid "submission.workflowType" +msgstr "Tipo de Submissão" -msgid "publication.copyrightYearBasis.issueDescription" +msgid "submission.workflowType.description" msgstr "" -"O ano dos direitos de autor será configurado automaticamente quando for " -"publicado num volume." +"Uma monografia é um trabalho produzido por um ou mais autores. Um livro com " +"capítulos independentes tem autores diferentes para cada capítulo (os " +"detalhes de cada capítulo serão inseridos mais tarde.)" -msgid "publication.copyrightYearBasis.submissionDescription" +msgid "submission.workflowType.editedVolume.label" +msgstr "Livro com capítulos independentes" + +msgid "submission.workflowType.editedVolume" msgstr "" -"O ano de direitos de autor será configurado automaticamente com base na data " -"de publicação." +"Livro com capítulos independentes: Autores são associados ao seu próprio " +"capítulo." -msgid "publication.datePublished" -msgstr "Data de Publicação" +msgid "submission.workflowType.authoredWork" +msgstr "Monografia: Autores são associados ao livro como um todo." -msgid "publication.editDisabled" -msgstr "Esta versão já foi publicada e não pode ser editada." +msgid "submission.workflowType.change" +msgstr "Alterar" -msgid "publication.event.published" -msgstr "A submissão foi publicada." +msgid "submission.editorName" +msgstr "{$editorName} (coord.)" -msgid "publication.event.scheduled" -msgstr "A submissão foi agendada para publicação." +msgid "submission.monograph" +msgstr "Monografia" -msgid "publication.event.unpublished" -msgstr "A submissão foi despublicada." +msgid "submission.published" +msgstr "Pronto para Produção" -msgid "publication.event.versionPublished" -msgstr "Uma nova versão foi publicada." +msgid "submission.fairCopy" +msgstr "Manuscrito Final" -msgid "publication.event.versionScheduled" -msgstr "Uma nova versão foi agendada para publicação." +msgid "submission.authorListSeparator" +msgstr "; " -msgid "publication.event.versionUnpublished" -msgstr "Uma versão foi despublicada." +msgid "submission.artwork.permissions" +msgstr "Permissões" -msgid "publication.invalidSubmission" -msgstr "A submissão desta publicação não foi encontrada." +msgid "submission.chapter" +msgstr "Capítulo" -msgid "publication.publish" -msgstr "Publicar" +msgid "submission.chapters" +msgstr "Capítulos" -msgid "publication.publish.requirements" -msgstr "Os seguintes requisitos devem ser cumpridos antes de ser publicado." +msgid "submission.chapter.addChapter" +msgstr "Adicionar Capítulo" -msgid "publication.required.declined" -msgstr "Uma submissão rejeitada não pode ser publicada." +msgid "submission.chapter.editChapter" +msgstr "Editar Capítulo" -msgid "publication.required.reviewStage" -msgstr "" -"A submissão deve estar nas etapas de Edição de Texto ou Produção antes de " -"ser publicada." +msgid "submission.chapter.pages" +msgstr "Páginas" -msgid "submission.license.description" -msgstr "" -"A licença será configurada automaticamente para {$licenseName} quando for publicado." +msgid "submission.copyedit" +msgstr "Edição de Texto" -msgid "submission.copyrightHolder.description" -msgstr "" -"Os direitos de autor serão atribuídos automaticamente como {$copyright} " -"quando for publicado." +msgid "submission.publicationFormats" +msgstr "Formatos de Publicação" -msgid "submission.copyrightOther.description" -msgstr "Atribuir direitos de autor para submissões publicadas à parte seguinte." +msgid "submission.proofs" +msgstr "Provas" -msgid "publication.unpublish" -msgstr "Despublicar" +msgid "submission.download" +msgstr "Download" -msgid "publication.unpublish.confirm" -msgstr "Tem a certeza que não pretende que seja publicado?" +msgid "submission.sharing" +msgstr "Partilhar" -msgid "publication.unschedule.confirm" -msgstr "Tem a certeza de não querer agendar para publicação?" +msgid "manuscript.submission" +msgstr "Submissão de Manuscrito" -msgid "publication.version.details" -msgstr "Deatlhes de publicação da versão {$version}" +msgid "submission.round" +msgstr "Ronda {$round}" -msgid "submission.queries.production" -msgstr "Discussões da Produção" +msgid "submissions.queuedReview" +msgstr "Em Revisão" -msgid "submission.submit.nextSteps" -msgstr "Próximos Passos" +msgid "manuscript.submissions" +msgstr "Submissões de Manuscritos" -msgid "submission.submit.confirmation" -msgstr "Confirmação" +msgid "submission.metadata" +msgstr "Metadados" -msgid "submission.submit.finishingUp" -msgstr "A terminar" +msgid "submission.supportingAgencies" +msgstr "Agências de Financiamento" -msgid "submission.submit.metadata" -msgstr "Metadados" +msgid "grid.action.addChapter" +msgstr "Criar um novo Capítulo" -msgid "submission.submit.catalog" -msgstr "Catálogo" +msgid "grid.action.editChapter" +msgstr "Editar este capítulo" -msgid "submission.submit.prepare" -msgstr "Preparar" +msgid "grid.action.deleteChapter" +msgstr "Eliminar este capítulo" -msgid "submission.submit.submissionFile" -msgstr "Ficheiro de Submissão" +msgid "submission.submit" +msgstr "Iniciar uma Nova Submissão de Livro" -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Selecionar o papel do contribuidor." +msgid "submission.submit.newSubmissionMultiple" +msgstr "Iniciar Nova Submissão em" -msgid "submission.submit.form.abstractRequired" -msgstr "Insira um breve resumo da sua monografia." +msgid "submission.submit.newSubmissionSingle" +msgstr "Nova Submissão" -msgid "submission.submit.form.titleRequired" -msgstr "Insira o título da monografia." +msgid "submission.submit.upload" +msgstr "Upload Submissão" -msgid "submission.submit.form.authorRequiredFields" -msgstr "" -"É obrigatório inserir o nome, apelido, e endereço de e-mail de cada autor." +msgid "author.volumeEditor" +msgstr "Editor de Volume" -msgid "submission.submit.form.authorRequired" -msgstr "É obrigatório inserir pelo menos um autor." +msgid "author.isVolumeEditor" +msgstr "Identificar este autor como editor do livro." -msgid "submission.submit.contributorRole" -msgstr "Papel do contribuidor" +msgid "submission.submit.seriesPosition" +msgstr "Posição na Série" + +msgid "submission.submit.seriesPosition.description" +msgstr "Exemplos: Livro 2, Volume 2" msgid "submission.submit.privacyStatement" msgstr "Política de Privacidade" -msgid "submission.submit.form.localeRequired" -msgstr "Selecione o idioma da submissão." +msgid "submission.submit.contributorRole" +msgstr "Papel do contribuidor" -msgid "submission.submit.seriesPosition.description" -msgstr "Exemplos: Livro 2, Volume 2" +msgid "submission.submit.submissionFile" +msgstr "Ficheiro de Submissão" -msgid "submission.submit.seriesPosition" -msgstr "Posição na Série" +msgid "submission.submit.prepare" +msgstr "Preparar" + +msgid "submission.submit.catalog" +msgstr "Catálogo" -msgid "author.submit.seriesRequired" -msgstr "É obrigatório selecionar uma série válida." +msgid "submission.submit.metadata" +msgstr "Metadados" -msgid "author.isVolumeEditor" -msgstr "Identificar este autor como editor do livro." +msgid "submission.submit.finishingUp" +msgstr "A terminar" + +msgid "submission.submit.confirmation" +msgstr "Confirmação" + +msgid "submission.submit.nextSteps" +msgstr "Próximos Passos" -msgid "submission.submit.selectSeries" -msgstr "Selecionar séries (opcional)" +msgid "submission.submit.coverNote" +msgstr "Nota de Capa ao Editor" -msgid "submission.submit.cancelSubmission" +msgid "submission.submit.generalInformation" +msgstr "Informações gerais" + +msgid "submission.submit.whatNext.description" msgstr "" -"Pode concluir esta submissão mais tarde ao selecionar Submissões Ativas na " -"página de Autor." +"A editora foi notificada da sua submissão, e foi-lhe enviado um e-mail de " +"confirmação sobre os seus registos. Assim que um editor revir a submissão, " +"entrará em contacto." -msgid "submission.submit.upload" -msgstr "Upload Submissão" +msgid "submission.submit.checklistErrors" +msgstr "" +"Leia e verifique que cumpre todos os itens da lista de verificação de " +"submissão. Estão {$itemsRemaining} itens por selecionar." -msgid "submission.submit.newSubmissionSingle" -msgstr "Nova Submissão" +msgid "submission.submit.placement" +msgstr "Colocação da submissão" -msgid "submission.submit.newSubmissionMultiple" -msgstr "Iniciar Nova Submissão em" +msgid "submission.submit.userGroup" +msgstr "Submeter com o papel..." -msgid "submission.submit" -msgstr "Iniciar uma Nova Submissão de Livro" +msgid "submission.submit.noContext" +msgstr "A submissão à editora não foi encontrada." -msgid "grid.action.deleteChapter" -msgstr "Eliminar este capítulo" +msgid "grid.chapters.title" +msgstr "Capítulos" -msgid "grid.action.editChapter" -msgstr "Editar este capítulo" +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Eliminar ficheiro do Editor de texto" -msgid "grid.action.addChapter" -msgstr "Criar um novo Capítulo" +msgid "submission.complete" +msgstr "Aprovado" -msgid "submission.supportingAgencies" -msgstr "Agências de Financiamento" +msgid "submission.incomplete" +msgstr "A aguardar Aprovação" -msgid "submission.metadata" -msgstr "Metadados" +msgid "submission.editCatalogEntry" +msgstr "Entrada" -msgid "submission.confirmSubmit" -msgstr "Deseja realmente submeter este manuscrito a esta editora?" +msgid "submission.catalogEntry.new" +msgstr "Adicionar Entrada" -msgid "manuscript.submissions" -msgstr "Submissões de Manuscritos" +msgid "submission.catalogEntry.add" +msgstr "Adicionar a Seleção ao Catálogo" -msgid "submissions.queuedReview" -msgstr "Em Revisão" +msgid "submission.catalogEntry.select" +msgstr "Selecione monografias para adicionar ao catálogo" -msgid "submission.round" -msgstr "Ronda {$round}" +msgid "submission.catalogEntry.selectionMissing" +msgstr "Deve selecionar pelo menos uma monografia para adicionar ao catálogo." -msgid "manuscript.submission" -msgstr "Submissão de Manuscrito" +msgid "submission.catalogEntry.confirm" +msgstr "Adicionar este livro ao catálogo público" -msgid "submission.sharing" -msgstr "Partilhar" +msgid "submission.catalogEntry.confirm.required" +msgstr "Confirme que a submissão se encontra pronto para entrar no catálogo." -msgid "submission.download" -msgstr "Download" +msgid "submission.catalogEntry.isAvailable" +msgstr "Esta monografia está pronta para ser incluída no catálogo público." -msgid "submission.proofs" -msgstr "Provas" +msgid "submission.catalogEntry.viewSubmission" +msgstr "Ver Submissão" -msgid "submission.publicationFormats" -msgstr "Formatos de Publicação" +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Datas de Publicação" -msgid "submission.copyedit" -msgstr "Edição de Texto" +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Todos os capítulos terão a data de publicação da monografia." -msgid "submission.chapter.pages" -msgstr "Páginas" +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Cada capítulo pode ter a sua própria data de publicação." -msgid "submission.chapter.editChapter" -msgstr "Editar Capítulo" +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografia" -msgid "submission.chapter.addChapter" -msgstr "Adicionar Capítulo" +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Catálogo" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Formato de Publicação" + +msgid "submission.event.metadataPublished" +msgstr "Os metadados da monografia foram aprovados para publicação." -msgid "submission.chaptersDescription" +msgid "submission.event.metadataUnpublished" +msgstr "Os metadados da monografia já não se encontram publicados." + +msgid "submission.event.publicationFormatMadeAvailable" msgstr "" -"Pode inserir a lista de capítulos aqui, e atribuir contribuidores da lista " -"de contribuidores abaixo. Estes contribuidores terão acesso ao capítulo " -"durante as várias etapas do processo de publicação." +"O formato de publicação \"{$publicationFormatName}\" já se encontra " +"disponível." -msgid "submission.chapters" -msgstr "Capítulos" +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" +"O formato de publicação \"{$publicationFormatName}\" já não se encontra " +"disponível." -msgid "submission.chapter" -msgstr "Capítulo" +msgid "submission.event.publicationFormatPublished" +msgstr "" +"O formato de publicação \"{$publicationFormatName}\" foi aprovado para " +"publicação." -msgid "submission.artwork.permissions" -msgstr "Permissões" +msgid "submission.event.publicationFormatUnpublished" +msgstr "" +"O formato de publicação \"{$publicationFormatName}\" já não se encontra " +"publicado." -msgid "submission.authorListSeparator" -msgstr "; " +msgid "submission.event.catalogMetadataUpdated" +msgstr "Os metadados do catálogo foram atualizados." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"Os metadados do formato de publicação de \"{$formatName}\" foram atualizados." + +msgid "submission.event.publicationFormatCreated" +msgstr "O formato de publicação \"{$formatName}\" foi criado." + +msgid "submission.event.publicationFormatRemoved" +msgstr "O formato de publicação \"{$formatName}\" foi removido." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Enviar para Revisão Externa" + +msgid "workflow.review.externalReview" +msgstr "Revisão Externa" + +msgid "submission.upload.fileContents" +msgstr "Componente da Submissão" + +msgid "submission.dependentFiles" +msgstr "Ficheiros Dependentes" + +msgid "submission.metadataDescription" +msgstr "" +"Estas especificações são baseadas no conjunto de metadados Dublin Core, um " +"padrão internacional usado para descrever os conteúdos da editora." + +msgid "section.any" +msgstr "Qualquer Série" + +msgid "submission.list.monographs" +msgstr "Monografias" + +msgid "submission.list.countMonographs" +msgstr "{$count} monografias" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} de {$total} monografias" + +msgid "submission.list.orderFeatures" +msgstr "Ordenar Destaques" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Arraste e solte ou clique nos botões cima e baixo para alterar a ordem dos " +"destaques na página de início." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Arraste e solte ou clique nos botões cima e baixo para alterar a ordem dos " +"recursos em {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Guardar Ordem" + +msgid "submission.list.viewEntry" +msgstr "Ver Entrada" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Títulos" + +msgid "publication.catalogEntry" +msgstr "Entrada no Catálogo" + +msgid "publication.catalogEntry.success" +msgstr "Os detalhes da entrada do catálogo foram atualizados." + +msgid "publication.invalidSeries" +msgstr "A série desta publicação não foi encontrada." -msgid "submission.fairCopy" -msgstr "Manuscrito Final" +msgid "publication.inactiveSeries" +msgstr "{$series} (Inativa)" -msgid "submission.published" -msgstr "Pronto para Produção" +msgid "publication.required.issue" +msgstr "A publicação deve ser atribuída a um volume antes de ser publicada." -msgid "submission.monograph" -msgstr "Monografia" +msgid "publication.publishedIn" +msgstr "Publicado em {$issueName}." -msgid "submission.editorName" -msgstr "{$editorName} (coord.)" +msgid "publication.publish.confirmation" +msgstr "" +"Todos os requisitos de publicação foram cumprido. Deseja adicionar esta " +"entrada ao catálogo?" -msgid "submission.workflowType.change" -msgstr "Alterar" +msgid "publication.scheduledIn" +msgstr "Agendada para publicação em {$issueName}." -msgid "submission.workflowType.authoredWork" -msgstr "Monografia: Autores são associados ao livro como um todo." +msgid "submission.publication" +msgstr "Publicação" -msgid "submission.workflowType.editedVolume" -msgstr "" -"Livro com capítulos independentes: Autores são associados ao seu próprio " -"capítulo." +msgid "publication.status.published" +msgstr "Publicado" -msgid "submission.workflowType.editedVolume.label" -msgstr "Livro com capítulos independentes" +msgid "submission.status.scheduled" +msgstr "Agendado" -msgid "submission.workflowType.description" -msgstr "" -"Uma monografia é um trabalho produzido por um ou mais autores. Um livro com " -"capítulos independentes tem autores diferentes para cada capítulo (os " -"detalhes de cada capítulo serão inseridos mais tarde.)" +msgid "publication.status.unscheduled" +msgstr "Não agendado" -msgid "submission.workflowType" -msgstr "Tipo de Submissão" +msgid "submission.publications" +msgstr "Publicações" -msgid "submission.synopsis" -msgstr "Sinopse" +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"O ano dos direitos de autor será configurado automaticamente quando for " +"publicado num volume." -msgid "submission.select" -msgstr "Selecionar Submissão" +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"O ano de direitos de autor será configurado automaticamente com base na data " +"de publicação." -msgid "submission.title" -msgstr "Título do Livro" +msgid "publication.datePublished" +msgstr "Data de Publicação" -msgid "submission.upload.selectComponent" -msgstr "Selecionar Componente" +msgid "publication.editDisabled" +msgstr "Esta versão já foi publicada e não pode ser editada." -msgid "submission.submit.title" -msgstr "Submeter Monografia" +msgid "publication.event.published" +msgstr "A submissão foi publicada." -msgid "publication.scheduledIn" -msgstr "Agendada para publicação em {$issueName}." +msgid "publication.event.scheduled" +msgstr "A submissão foi agendada para publicação." -msgid "publication.publish.confirmation" -msgstr "" -"Todos os requisitos de publicação foram cumprido. Deseja adicionar esta " -"entrada ao catálogo?" +msgid "publication.event.unpublished" +msgstr "A submissão foi despublicada." -msgid "publication.publishedIn" -msgstr "Publicada em {$issueName}." +msgid "publication.event.versionPublished" +msgstr "Uma nova versão foi publicada." -msgid "publication.required.issue" -msgstr "A publicação deve ser atribuída a um volume antes de ser publicada." +msgid "publication.event.versionScheduled" +msgstr "Uma nova versão foi agendada para publicação." -msgid "publication.inactiveSeries" -msgstr "{$series} (Inativa)" +msgid "publication.event.versionUnpublished" +msgstr "Uma versão foi despublicada." -msgid "publication.invalidSeries" -msgstr "A série desta publicação não foi encontrada." +msgid "publication.invalidSubmission" +msgstr "A submissão desta publicação não foi encontrada." -msgid "publication.catalogEntry.success" -msgstr "Os detalhes da entrada do catálogo foram atualizados." +msgid "publication.publish" +msgstr "Publicar" -msgid "publication.catalogEntry" -msgstr "Entrada no Catálogo" +msgid "publication.publish.requirements" +msgstr "Os seguintes requisitos devem ser cumpridos antes de ser publicado." -msgid "catalog.browseTitles" -msgstr "{$numTitles} Títulos" +msgid "publication.required.declined" +msgstr "Uma submissão rejeitada não pode ser publicada." -msgid "submission.list.viewEntry" -msgstr "Ver Entrada" +msgid "publication.required.reviewStage" +msgstr "" +"A submissão deve estar nas etapas de Edição de Texto ou Produção antes de " +"ser publicada." -msgid "submission.list.saveFeatureOrder" -msgstr "Guardar Ordem" +msgid "submission.license.description" +msgstr "" +"A licença será configurada automaticamente para {$licenseName} quando for publicado." -msgid "submission.list.orderingFeaturesSection" +msgid "submission.copyrightHolder.description" msgstr "" -"Arraste e solte ou clique nos botões cima e baixo para alterar a ordem dos " -"recursos em {$title}." +"Os direitos de autor serão atribuídos automaticamente como {$copyright} " +"quando for publicado." -msgid "submission.list.orderingFeatures" +msgid "submission.copyrightOther.description" msgstr "" -"Arraste e solte ou clique nos botões cima e baixo para alterar a ordem dos " -"destaques na página de início." +"Atribuir direitos de autor para submissões publicadas à parte seguinte." -msgid "submission.list.orderFeatures" -msgstr "Ordenar Destaques" +msgid "publication.unpublish" +msgstr "Despublicar" -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} de {$total} monografias" +msgid "publication.unpublish.confirm" +msgstr "Tem a certeza que não pretende que seja publicado?" -msgid "submission.list.countMonographs" -msgstr "{$count} monografias" +msgid "publication.unschedule.confirm" +msgstr "Tem a certeza de não querer agendar para publicação?" -msgid "submission.list.monographs" -msgstr "Monografias" +msgid "publication.version.details" +msgstr "Deatlhes de publicação da versão {$version}" -msgid "section.any" -msgstr "Qualquer Série" +msgid "submission.queries.production" +msgstr "Discussões da Produção" -msgid "submission.metadataDescription" +msgid "publication.chapter.landingPage" +msgstr "Página do Capítulo" + +msgid "publication.chapter.hasLandingPage" msgstr "" -"Estas especificações são baseadas no conjunto de metadados Dublin Core, um " -"padrão internacional usado para descrever os conteúdos da editora." +"Disponibilizar este capítulo na sua própria página e inserir link para essa " +"página no Sumário do livro." -msgid "submission.dependentFiles" -msgstr "Ficheiros Dependentes" +msgid "publication.publish.success" +msgstr "Estado de publicação alterada com sucesso." -msgid "submission.upload.fileContents" -msgstr "Componente da Submissão" +msgid "chapter.volume" +msgstr "Volume" -msgid "workflow.review.externalReview" -msgstr "Revisão Externa" +msgid "submission.withoutChapter" +msgstr "{$name} — Sem este capítulo" -msgid "editor.submission.decision.sendExternalReview" -msgstr "Enviar para Revisão Externa" +msgid "submission.chapterCreated" +msgstr " — Capítulo criado" -msgid "submission.submit.titleAndSummary" -msgstr "Título e Resumo" +msgid "chapter.pages" +msgstr "Páginas" -msgid "submission.event.publicationFormatRemoved" -msgstr "O formato de publicação \"{$formatName}\" foi removido." +msgid "editor.submission.decision.sendInternalReview" +msgstr "Enviar para Revisão Interna" -msgid "submission.event.publicationFormatCreated" -msgstr "O formato de publicação \"{$formatName}\" foi criado." +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "Esta submissão está pronta para ser enviada para revisão interna." -msgid "submission.event.publicationMetadataUpdated" -msgstr "" -"Os metadados do formato de publicação de \"{$formatName}\" foram atualizados." +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "{$editorName} enviou esta submissão para a etapa de revisão interna." -msgid "submission.event.catalogMetadataUpdated" -msgstr "Os metadados do catálogo foram atualizados." +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Enviar para Revisão Interna" -msgid "submission.event.publicationFormatUnpublished" +msgid "editor.submission.decision.sendInternalReview.completed.description" msgstr "" -"O formato de publicação \"{$publicationFormatName}\" já não se encontra " -"publicado." +"A submissão, {$title}, foi enviada para a fase de avaliação interna. O autor " +"foi notificado, a menos que opte por ignorar esse e-mail." -msgid "submission.event.publicationFormatPublished" +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" msgstr "" -"O formato de publicação \"{$publicationFormatName}\" foi aprovado para " -"publicação." +"Envie um e-mail aos autores para informá-los que esta submissão seguirá para " +"revisão interna. Se possível, forneça aos autores algumas indicações sobre o " +"tempo que o processo de revisão interna irá demorar e quando poderão esperar " +"uma resposta dos editores." -msgid "submission.event.publicationFormatMadeUnavailable" +msgid "editor.submission.decision.promoteFiles.internalReview" msgstr "" -"O formato de publicação \"{$publicationFormatName}\" já não se encontra " -"disponível." +"Selecione os ficheiros que serão enviados para a etapa de revisão interna." -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "" -"O formato de publicação \"{$publicationFormatName}\" já se encontra " -"disponível." +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "{$editorName} enviou esta submissão para a etapa de revisão externa." -msgid "submission.event.metadataUnpublished" -msgstr "Os metadados da monografia já não se encontram publicados." +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Enviar para Revisão Externa" -msgid "submission.event.metadataPublished" -msgstr "Os metadados da monografia foram aprovados para publicação." +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "A submissão, {$title}, foi enviada para a etapa de revisão externa." -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Formato de Publicação" +msgid "editor.submission.decision.backToReview" +msgstr "Voltar à Revisão" -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Catálogo" +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Reverter a decisão de aceitar esta submissão e enviar de volta para a etapa " +"de revisão." -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monografia" +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} reverteu a decisão de aceitar esta submissão e enviou de volta " +"para a etapa de revisão." -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Cada capítulo pode ter a sua própria data de publicação." +msgid "editor.submission.decision.backToReview.completed" +msgstr "Enviar de volta para Revisão" -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Todos os capítulos terão a data de publicação da monografia." +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "A submissão, {$title}, foi enviada de volta para a etapa de revisão." -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Datas de Publicação" +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Enviar um e-mail aos autores para informá-los que a sua submissão será " +"enviada de volta para a etapa de revisão. Explique o porquê de ter sido " +"tomada esta decisão e informe o autor que revisão adicional será realizada." -msgid "submission.catalogEntry.viewSubmission" -msgstr "Ver Submissão" +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Envie um e-mail aos autores para informá-los que esta submissão será enviada " +"para revisão por pares. Se possível, forneça aos autores alguma indicação do " +"tempo que o processo de revisão por pares irá demorar e quando podem esperar " +"nova mensagem dos editores." -msgid "submission.catalogEntry.isAvailable" -msgstr "Esta monografia está pronta para ser incluída no catálogo público." +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Selecione os ficheiros que devem ser enviados para a etapa de revisão." -msgid "submission.catalogEntry.confirm.required" -msgstr "Confirme que a submissão se encontra pronto para entrar no catálogo." +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Recomendar Enviar para Revisão Externa" -msgid "submission.catalogEntry.confirm" -msgstr "Adicionar este livro ao catálogo público" +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" +"Recomendar que esta submissão seja enviada para a etapa de revisão externa." -msgid "submission.catalogEntry.selectionMissing" -msgstr "Deve selecionar pelo menos uma monografia para adicionar ao catálogo." +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} recomendou que esta submissão seja enviada para a etapa de " +"revisão externa." -msgid "submission.catalogEntry.select" -msgstr "Selecione monografias para adicionar ao catálogo" +msgid "doi.submission.incorrectContext" +msgstr "" +"Não foi possível criar um DOI para a seguinte submissão: {$pubObjectTitle}. " +"Não existe no contexto atual da editora." -msgid "submission.catalogEntry.add" -msgstr "Adicionar a Seleção ao Catálogo" +msgid "publication.chapter.licenseUrl" +msgstr "URL de licença" -msgid "submission.catalogEntry.new" -msgstr "Adicionar Entrada" +msgid "publication.chapterDefaultLicenseURL" +msgstr "URL da licença de capítulo padrão" -msgid "submission.editCatalogEntry" -msgstr "Entrada" +msgid "submission.copyright.description" +msgstr "" +"Por favor, leia e entenda os termos de direitos de autor para submissões a " +"esta editora." -msgid "submission.incomplete" -msgstr "A aguardar Aprovação" +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Sem permissão para submeter a esta editora porque os autores devem ser " +"registados pela equip editorial. Se acredita que isto é um erro, entre em " +"contato com {$name}." -msgid "submission.complete" -msgstr "Aprovado" +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} não está a aceitar envios para a série {$section}. Se " +"precisar de ajuda para recuperar a sua submissão, entre em contato com {$name}." -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Eliminar ficheiro do Editor de texto" +msgid "submission.sectionNotFound" +msgstr "Não foi possível encontrar a série para esta submissão." -msgid "grid.chapters.title" -msgstr "Capítulos" +msgid "submission.sectionRestrictedToEditors" +msgstr "" +"Apenas a equipa editorial está autorizada a enviar artigos para esta série." -msgid "submission.submit.noContext" -msgstr "A submissão à editora não foi encontrada." +msgid "submission.wizard.submitting.monograph" +msgstr "A submeter uma Monografia." -msgid "submission.submit.userGroupDescription" +msgid "submission.wizard.submitting.monographInLanguage" msgstr "" -"Se estiver a submeter um livro com capítulos independentes, deve selecionar " -"o papel de editor de volume." - -msgid "submission.submit.userGroup" -msgstr "Submeter com o papel..." +"A submeter uma Monografia em {$language}." -msgid "submission.submit.placement" -msgstr "Colocação da submissão" +msgid "submission.wizard.submitting.editedVolume" +msgstr "A submeter um Volume Editado." -msgid "submission.submit.checklistErrors" +msgid "submission.wizard.submitting.editedVolumeInLanguage" msgstr "" -"Leia e verifique que cumpre todos os itens da lista de verificação de " -"submissão. Estão {$itemsRemaining} itens por selecionar." +"A submeter um Volume Editado em {$language}." -msgid "submission.submit.whatNext.description" +msgid "submission.wizard.chapters.description" msgstr "" -"A editora foi notificada da sua submissão, e foi-lhe enviado um e-mail de " -"confirmação sobre os seus registos. Assim que um editor revir a submissão, " -"entrará em contacto." - -msgid "submission.submit.generalInformation" -msgstr "Informações gerais" - -msgid "submission.submit.coverNote" -msgstr "Nota de Capa ao Editor" +"Forneça todos os capítulos desta submissão. Se estiver a submete um volume " +"editado, certifique-se de que em cada capítulo indica os colaboradores desse " +"mesmo capítulo." diff --git a/locale/ro/admin.po b/locale/ro/admin.po new file mode 100644 index 00000000000..71027cbd15c --- /dev/null +++ b/locale/ro/admin.po @@ -0,0 +1,200 @@ +# Vasile Moraru , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-03-12 16:14+0000\n" +"Last-Translator: Vasile Moraru \n" +"Language-Team: Romanian " +"\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "admin.hostedContexts" +msgstr "Edituri găzduite" + +msgid "admin.settings.appearance.success" +msgstr "" +"Setările de aspectului de prezentare ale site-ului au fost actualizate cu " +"succes." + +msgid "admin.settings.config.success" +msgstr "Configurația site-ului a fost actualizată cu succes." + +msgid "admin.settings.info.success" +msgstr "Informațiile site-ului au fost actualizate cu succes." + +msgid "admin.settings.redirect" +msgstr "Apăsați pentru redirecționare" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Solicitările din site-ul principal vor fi transmise către editură. Poate fi " +"util atunci când, de exemplu, site-ul găzduiește o singură editură." + +msgid "admin.settings.noPressRedirect" +msgstr "Nu redirecționa" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Aceasta va fi limba oficială a site-ului și a oricărei edituri găzduită de " +"acesta." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Selectați ca toate locațiile să fie acceptate pe site. Locațiile selectate " +"vor fi la dispoziția tuturor editurilor găzduite în site și vor apărea în " +"meniul de selectare a limbii de pe fiecare pagină a site-ului. Opțiunea " +"poate fi suprimată de anumite pagini specifice ale editurii. Dacă locațiile " +"multiple nu sunt selectate, selectorul de schimbare a limbii nu va fi " +"vizibil, iar setările extinse de limbă nu vor fi disponibile pentru edituri." + +msgid "admin.locale.maybeIncomplete" +msgstr "* E posibil ca locațiile selectate să nu conțină toate datele." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Sunteți sigur că doriți să eliminați această setare locală? Această decizie " +"poate afecta oricare dintre editurile găzduite care utilizează această " +"setare locală." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Selectați orice locație suplimentară pentru a instala informațiile de suport " +"în sistem. Locațiile trebuie instalate înainte de a fi utilizate de " +"editurile găzduite. Vezi documentația OMP legată de adăugarea informațiilor " +"de suport pentru noile limbi." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Sunteți sigur că doriți să eliminați aceaste setări locale? Această decizie " +"poate afecta oricare dintre editurile găzduite care utilizează aceaste " +"setări locale." + +msgid "admin.systemVersion" +msgstr "Versiunea OMP" + +msgid "admin.systemConfiguration" +msgstr "Configurația OMP" + +msgid "admin.presses.pressSettings" +msgstr "Setările editurii" + +msgid "admin.presses.noneCreated" +msgstr "Nu s-a creat nici o editură." + +msgid "admin.contexts.create" +msgstr "Creează editură" + +msgid "admin.contexts.form.titleRequired" +msgstr "Este necesar să specificați un titlu." + +msgid "admin.contexts.form.pathRequired" +msgstr "Este necesară specificarea unei căi." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Calea poate include numai litere, cifre si caracterele _ sau -. Începutul și " +"finalul trebuie să fie o literă sau un număr." + +msgid "admin.contexts.form.pathExists" +msgstr "Calea specificată este deja folosită de o altă editură." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Setarea locală principală trebuie să fie una dintre setările locale " +"suportate de editură." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} a fost creată cu succes." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} a fost editată cu succes." + +msgid "admin.contexts.contextDescription" +msgstr "Descrierea editurii" + +msgid "admin.presses.addPress" +msgstr "Adaugă editură" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

        NOTĂ!\n" +"

        Sistemul nu poate rescrie automat fișierul de configurare. Configurările " +"pot fi modificate doar dacă se deschide fișierulconfig.inc.php în " +"cel mai potrivit editor și se înlocuiește conținutul cu cel din rubrica de " +"mai jos.

        " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Selectați editurile găzduite care ar putea deține permisiunea de a trimite e-" +"mailuri în masă. Când această funcție este activată, un manager de editură " +"va putea să trimită un e-mail tuturor utilizatorilor înregistrați la editura " +"sa.

        Abuzul acestei funcții de a trimite e-mailuri nesolicitate poate " +"încălca legile anti-spam în unele jurisdicții și poate duce la blocarea e-" +"mailurilor serverului dvs. ca spam. Căutați sfaturi tehnice înainte de a " +"activa această funcție și luați în considerare consultarea cu alți manageri " +"de edituri pentru a asigura utilizarea corespunzătoare a " +"acesteia.

        Restricții suplimentare asupra acestei funcții pot fi " +"activate pentru fiecare editură utilizând asistentul de setări din lista " +"deEdituri Găzduite." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Un manager al unei edituri nu va putea trimite emailuri în bloc la niciunul " +"dintre rolurile selectate de mai jos. Utilizați această setare pentru a " +"limita abuzul caracteristicii de notificare prin email. De exemplu, poate fi " +"mai sigur să dezactivați emailurile în bloc către cititori, autori sau alte " +"grupuri mari de utilizatori care nu și-au dat acordul să primească astfel de " +"e-mailuri.

        Funcția de email în bloc poate fi dezactivată complet " +"pentru această editurăAdministrator > Setări " +"site." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Funcția de email în bloc a fost dezactivată pentru acestă editură. Activați " +"această funcție în Admin > Setări site." + +msgid "admin.siteManagement.description" +msgstr "" +"Adăugați, editați sau eliminați edituri de pe acest site și gestionați " +"setările aplicabile la nivelul întregului site." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "ID-ul capitolului nu este un număr întreg" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "ID-ul seriei nu este un număr întreg" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Selectați tipul de statistici geografice de utilizare care pot fi colectate " +"de edituri pe acest site. Statisticile geografice mai detaliate pot mări " +"considerabil dimensiunea bazei de date și, în unele cazuri rare, pot submina " +"anonimatul vizitatorilor dvs. Fiecare editură poate configura această setare " +"diferit, dar o editură nu poate colecta înregistrări mai detaliate decât " +"cele configurate aici. De exemplu, dacă site-ul suportă doar țara și " +"regiunea, editura poate selecta țara și regiunea sau doar țara. Editura nu " +"va putea urmări țara, regiunea și orașul." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Activați statisticile instituționale dacă doriți ca editurile de pe acest " +"site să poată colecta statistici de utilizare pe instituții. Editurile vor " +"trebui să adauge instituția și intervalele sale de IP pentru a utiliza " +"această funcție. Activarea statisticilor instituționale poate mări " +"considerabil dimensiunea bazei de date." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Dacă să faceți sau nu endpoint-urile API SUSHI accesibile public pentru " +"toate editurile de pe acest site. Dacă activați API-ul public, fiecare " +"editură poate suprascrie această setare pentru a-și face statisticile " +"private. Cu toate acestea, dacă dezactivați API-ul public, tipografiile nu " +"își pot face propriul API public." + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Utilizați site-ul ca platformă pentru toate editurile." diff --git a/locale/ro/api.po b/locale/ro/api.po new file mode 100644 index 00000000000..381af5c13cd --- /dev/null +++ b/locale/ro/api.po @@ -0,0 +1,44 @@ +# Iusan Daria , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-03 19:18+0000\n" +"Last-Translator: Iusan Daria \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Pentru ca trimiterea să fie adăugată în catalog trebuie sa introduci unul " +"sau mai multe coduri de identificare ale acesteia." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "" +"Una sau mai multe trimiteri pe care le-ai specificat nu au fost găsite." + +msgid "api.submissions.400.wrongContext" +msgstr "Materialul solicitat de dumneavoastră nu se află în această editură." + +msgid "api.emails.403.disabled" +msgstr "" +"Nu a fost activată funcția de notificare prin email pentru această editură." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "Nu aveți permisiunea să mutați acest model de email la o altă editură." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "Lucrarea solicitată nu se regăsește la această editură." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "Lucrarea solicitată nu face parte din această transmisie." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Nu se poate schimba editura unei transmisii." + +msgid "api.submission.400.inactiveSection" +msgstr "Această secțiune nu mai acceptă cereri." diff --git a/locale/ro/author.po b/locale/ro/author.po new file mode 100644 index 00000000000..019a7646d85 --- /dev/null +++ b/locale/ro/author.po @@ -0,0 +1,20 @@ +# Iusan Daria , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-03 19:18+0000\n" +"Last-Translator: Iusan Daria \n" +"Language-Team: Romanian " +"\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "author.submit.notAccepting" +msgstr "Această editură nu acceptă momentan cereri." + +msgid "author.submit" +msgstr "Cerere nouă" diff --git a/locale/ro/default.po b/locale/ro/default.po new file mode 100644 index 00000000000..36dd2f2a940 --- /dev/null +++ b/locale/ro/default.po @@ -0,0 +1,170 @@ +# Iusan Daria , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-04 19:39+0000\n" +"Last-Translator: Iusan Daria \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "default.genres.appendix" +msgstr "Apendice" + +msgid "default.genres.bibliography" +msgstr "Bibliografie" + +msgid "default.genres.manuscript" +msgstr "carte manuscris" + +msgid "default.genres.glossary" +msgstr "Glosar" + +msgid "default.genres.index" +msgstr "Index" + +msgid "default.genres.preface" +msgstr "Prefață" + +msgid "default.genres.prospectus" +msgstr "Prospect" + +msgid "default.genres.figure" +msgstr "Figura" + +msgid "default.genres.illustration" +msgstr "Ilustrație" + +msgid "default.genres.other" +msgstr "Altele" + +msgid "default.groups.name.manager" +msgstr "manager de presă" + +msgid "default.groups.plural.manager" +msgstr "manageri de presă" + +msgid "default.groups.name.sectionEditor" +msgstr "editor de serie" + +msgid "default.groups.plural.sectionEditor" +msgstr "editori de serie" + +msgid "default.groups.name.chapterAuthor" +msgstr "Autorul capitolului" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Autorii capitolului" + +msgid "default.groups.plural.volumeEditor" +msgstr "editorii volumului" + +msgid "default.genres.photo" +msgstr "imagine" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

        Autorii sunt invitați să se înscrie în această publicație. Acele " +"înscrieri care sunt considerate potrivite, vor fi trimise la revizie înainte " +"de a stabili dacă sunt acceptate sau respinse.

        Înainte de a se " +"înscrie, autorii sunt responsabili de obținerea unei aprobări de publicare a " +"oricărui material inclus, precum fotografii, documente sau seturi de date. " +"Toți autorii înscriși trebuie să fie de acord să fie identificați ca autori. " +"Dacă este cazul, cercetarea ar trebui să fie aprobată de un comitet de etică " +"adecvat, în conformitate cu cerințele legale din țara în care se desfășoară " +"studiul.

        Un editor poate respinge o trimitere dacă aceasta nu " +"îndeplinește standardele minime de calitate. Înainte de a trimite cartea, vă " +"rugăm să vă asigurați că domeniul de aplicare și schița cărții sunt " +"structurate corespunzător. Titlul trebuie să fie concis și rezumatul trebuie " +"să însumeze firul narativ. Acest aspect va crește șansa ca recenzenții să " +"scrie o recenzie a cărții. După ce sunteți sigur că lucrarea dvs. " +"îndeplinește acest standard, vă rugăm să urmați lista de verificare de mai " +"jos pentru a vă pregăti lucrarea.

        " + +msgid "default.groups.name.volumeEditor" +msgstr "editorul volumului" + +msgid "default.contextSettings.checklist" +msgstr "" +"

        Toate înscrierile trebuie să îndeplinească următoarele cerințe.

        • Această lucrare îndeplinește toate cerințele din ghidul autorului.
        • Această lucrare " +"nu a mai fost publicată, nici nu a mai fost trimisă altei edituri pentru " +"evaluare.
        • Toate referințele au fost verificate pentru acuratețe și " +"completitudine.
        • Toate tabelele și figurile au fost numerotate și " +"etichetate.
        • A fost obținută permisiunea de a publica toate " +"fotografiile, seturile de date și alte materiale furnizate împreună cu " +"această lucrare.
        " + +msgid "default.genres.table" +msgstr "tabel" + +msgid "default.genres.chapter" +msgstr "Capitol manuscris" + +msgid "default.groups.name.editor" +msgstr "Editor" + +msgid "default.groups.plural.editor" +msgstr "Editori" + +msgid "default.groups.name.subscriptionManager" +msgstr "Manager de subscripție" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Manageri de subscripție" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

        Numele și adresele de email introduse în acest site de edită vor fi " +"utilizate exclusiv în scopurile declarate ale acestei edituriși nu vor fi " +"puse la dispoziție în niciun alt scop sau pentru nicio altă parte.

        " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Această editură oferă acces deschis către conținutul său, pe baza " +"principiului că punerea la dispoziția publicului a cercetărilor în mod " +"gratuit sprijină un schimb mai mare de cunoștințe la nivel global." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Încurajăm cititorii să se înscrie la serviciul de notificare a publicării " +"pentru această editură. Utilizați Linkul de înregistrare în partea de sus a paginii de pornire " +"a editurii. În urma acestei înregistrări, cititorul va primi prin email " +"cuprinsul fiecărei noi monografii a editurii. Vezi declarația de " +"confidențialitate a editurii care care asigură cititorii despre faptul " +"că numele și adresele lor de email nu vor fi utilizate în alte scopuri." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Sunteți interesat să trimiteți o lucrare pentru această presă? Vă recomandăm " +"să consultați pagina Despre " +"editură pentru a vedea politicile editurii și Ghidul " +"autorului. Autorii trebuie să se autentificeși să înceapă procesul în 5 pași." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Încurajăm bibliotecarii de cercetare să includă această editură în " +"colecțiile de presă electronică ale bibliotecii lor. De asemenea, acest " +"sistem deschis de publicare este potrivit pentru ca bibliotecile să-l " +"găzduiască cu scopul ca membrii facultăților lor să îl folosească împreună " +"cu editura în a cărei editare sunt implicați(vezi Presa Monografică Deschisă)." + +msgid "default.groups.name.externalReviewer" +msgstr "Critic extern" + +msgid "default.groups.plural.externalReviewer" +msgstr "Critici externi" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "ER" diff --git a/locale/ro/editor.po b/locale/ro/editor.po new file mode 100644 index 00000000000..ed623b3a36a --- /dev/null +++ b/locale/ro/editor.po @@ -0,0 +1,213 @@ +# Elena-Ionela Buhalo , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-10 16:39+0000\n" +"Last-Translator: Elena-Ionela Buhalo \n" +"Language-Team: Romanian " +"\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "editor.submissionArchive" +msgstr "Arhivă de înregistrare" + +msgid "editor.monograph.cancelReview" +msgstr "Anulare cerere" + +msgid "editor.monograph.enterRecommendation" +msgstr "Introduceți recomandare" + +msgid "editor.monograph.recommendation" +msgstr "Recomandare" + +msgid "editor.monograph.clearReview" +msgstr "Eliminare evaluator" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Introduceți recomandarea evaluatorului" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Selectați un evaluator de mai sus și apăsați butonul „Selectare evaluator” " +"pentru a continua." + +msgid "editor.monograph.replaceReviewer" +msgstr "Înlocuire evaluator" + +msgid "editor.monograph.editorToEnter" +msgstr "Recomandările/comentariile editorului pentru evaluator" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Încărcare recenzie" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Opțiuni de evaluare inter pares" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Corectare fișiere" + +msgid "editor.monograph.internalReview" +msgstr "Inițiere evaluare internă" + +msgid "editor.monograph.externalReview" +msgstr "Inițiere evaluare externă" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Selectare fișiere schiță finale" + +msgid "editor.monograph.final.currentFiles" +msgstr "Fișiere schiță finale actuale" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Fișiere actuale" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Mesaj pentru utilizator" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Acțiuni de înregistrare" + +msgid "editor.monograph.legend.sectionActions" +msgstr "Selectare acțiuni" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Opțiuni specifice unei secțiuni anume, ca de exemplu încărcare de fișiere " +"sau adăugare de utilizatori." + +msgid "editor.monograph.legend.itemActions" +msgstr "Acțiuni obiect" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Acțiuni și opțiuni specifice unui fișier individual." + +msgid "editor.monograph.legend.bookInfo" +msgstr "Vizualizați și gestionați metadatele, notele, notificările și istoricul" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Vizualizați și gestionați participanții acestei înregistrări: autori, " +"editori, proiectanți și mulți alții" + +msgid "editor.monograph.legend.add" +msgstr "Încărcați un fișier în secțiune" + +msgid "editor.monograph.legend.add_user" +msgstr "Adăugați un utilizator în secțiune" + +msgid "editor.monograph.legend.more_info" +msgstr "Mai multe informații: note de fișier, opțiuni de notificare și istoric" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Informații despre fișier: note, opțiuni de notificare și istoric (nicio notă " +"adugată încă)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Informații despre fișier: note, opțiuni de notificare și istoric (Note nou " +"adăugate de la ultima vizită)" + +msgid "editor.monograph.legend.edit" +msgstr "Editare obiect" + +msgid "editor.monograph.legend.delete" +msgstr "Ștergere obiect" + +msgid "editor.monograph.legend.in_progress" +msgstr "Acțiune în derulare sau încă incompletă" + +msgid "editor.monograph.legend.complete" +msgstr "Acțiune completă" + +msgid "editor.monograph.legend.uploaded" +msgstr "Fișier încărcat de rolul din titlul coloanei grilă" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Selectați fișierele de mai jos pentru a le trimite spre etapa de evaluare " +"internă." + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Acțiuni și optiuni generale de înregistrare." + +msgid "editor.monograph.legend.settings" +msgstr "" +"Vizualizați și accesați setări ale obiectelor, cum ar informații și opțiuni " +"de ștergere" + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Vizualizați și gestionați intrarea în catalogul de înregistrare, inclusiv " +"metadatele și formatele de publicație" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Informații despre fișier: note, opțiuni de notificare și istoric (Notele " +"sunt disponibile)" + +msgid "editor.submission.introduction" +msgstr "" +"În timpul înregistrării, editorul, după consultarea fișierelor transmise, " +"selectează acțiunea corespunzătoare (care include notificarea autorului): " +"Trimitere către evaluare internă (presupune selectarea fișierelor pentru " +"Evaluarea internă); Trimitere către Evaluare externă (presupune selectarea " +"fișierelor pentru Evaluarea externă); Acceptare înregistrare (presupune " +"selectarea fișierelor pentru etapa de Editare); sau Refuzare înregistrare (" +"înregistrare arhivă)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Copie corectă" + +msgid "editor.monograph.proofs" +msgstr "Probe" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Aprobare și publicare" + +msgid "editor.submissions.assignedTo" +msgstr "Atribuit editorului" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Diferite formate de publicație, cum ar fi copertă cartonată, copertă moale " +"și digitală, pot fi încărcate în secțiunea de Formate de publicație de mai " +"jos. Puteți folosi grila de formate de publicație de mai jos ca o listă de " +"verificare pentru ce rămâne de făcut pentru a publica un format de " +"publicație." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Adăugați formate de publicație (de ex. digitală, broșată) pentru care " +"editorul de aspect pregătește probe de pagină pentru corectare. Probele trebuie verificate pentru a fi aprobate și intrarea de Catalog " +"pentru format trebuie să fie verificată așa cum este publicată în intrarea " +"de catalog a cărții, înainte de a putea fi creat un format Disponibil (adică publicat)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Stabiliți condițiile de descărcare" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Stabilire condiții" + +msgid "editor.monograph.proof.addNote" +msgstr "Adăugare răspuns" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Oricare dintre fișierele care au fost deja încărcate în orice etapă de " +"înregistrare pot fi adăugate la lista de Fișiere probă, bifând căsuța de " +"„Include” de mai jos și clicând pe „Căutare”: toate fișierele disponibile " +"vor fi listate și pot fi alese pentru includere." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Identificatorul public '{$publicIdentifier}' există deja pentru un alt " +"obiect de același tip. Alegeți identificatori unici pentru obiectele de " +"același tip din presa dumneavoastră." diff --git a/locale/ro/emails.po b/locale/ro/emails.po new file mode 100644 index 00000000000..4d9e6703862 --- /dev/null +++ b/locale/ro/emails.po @@ -0,0 +1,479 @@ +# Iusan Daria , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-12 21:16+0000\n" +"Last-Translator: Iusan Daria \n" +"Language-Team: Romanian " +"\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Confirmare de resetare a parolei" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Am primit o solicitare de resetare a parolei dumneavoastră pentru " +"{$siteTitle} web site.
        \n" +"
        \n" +"Dacă nu ați emis dumneavoastră o solicitare , puteți ignora acest email, iar " +"contul dumneavoastră nu va fi afectat. Pentru a vă reseta parola, clicați pe " +"adresa URL de mai jos.
        \n" +"
        \n" +"Resetați-vă parola: {$passwordResetUrl}
        \n" +"
        \n" +"{$siteContactName}" + +msgid "emails.userValidateContext.subject" +msgstr "Validați-vă contul" + +msgid "emails.userValidateSite.subject" +msgstr "Validați-vă contul" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Solicitare de revizie a unei trimiteri revizate" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Cerere de revizie a manuscrisului" + +msgid "emails.reviewCancel.subject" +msgstr "Solicitare de revizie anulată" + +msgid "emails.reviewReinstate.subject" +msgstr "Puteți revizui textul pentru {$contextName}?" + +msgid "emails.reviewDecline.subject" +msgstr "Nu se poate realiza revizia" + +msgid "emails.reviewRemind.subject" +msgstr "Memento de completare a reviziei" + +msgid "emails.editorDecisionAccept.subject" +msgstr "Cererea dumneavoastră pentru {$contextName} a fost acceptată" + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Cererea dumneavoastră a fost trimisă către editare" + +msgid "emails.layoutRequest.subject" +msgstr "Cererea {$submissionld} este gata de producție la {$contextAcronym}" + +msgid "emails.layoutComplete.subject" +msgstr "Gale complete" + +msgid "emails.indexRequest.subject" +msgstr "Indice solicitat" + +msgid "emails.emailLink.subject" +msgstr "Manuscris de posibil interes" + +msgid "emails.notifySubmission.subject" +msgstr "Notificare de cerere" + +msgid "emails.notifyFile.subject" +msgstr "Notificare privind dosarul de cerere" + +msgid "emails.revisedVersionNotify.subject" +msgstr "Versiunea revizuită încărcată" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Activitate editorială pentru {$month}, {$year}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.reviewerRegister.subject" +msgstr "Înregistrai-vă ca revizor cu {$contextName}" + +msgid "emails.indexComplete.subject" +msgstr "Gale de indice complete" + +msgid "emails.reviewRequest.subject" +msgstr "Solicitare de revizie a manuscrisului" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Cererea dumneavoastră a fost trimisă către revizie internă" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}
        \n" +"
        \n" +"Ați fost înregistrat cu numele de utilizator {$contextName}. În acest email " +"al inclus numele de utilizator și parola dumneavoastră de care aveți nevoie " +"pentru a lucra cu această editură, prin intermediul website-ului. Puteți " +"solicita în orice moment să fiți eliminat din lista de utilizatori.
        \n" +"
        \n" +"Nume de utilizator: {$recipientUsername}
        \n" +"Parolă: {$password}
        \n" +"
        \n" +"Vă mulțumim,
        \n" +"{$signature}" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
        \n" +"
        \n" +"Ați creat un cont, folosind numele de utilizator {$contextName}, dar este " +"necesară activarea acestuia înainte de utilizare. Pentru a face acest lucru, " +"accesați linkul de mai jos:
        \n" +"
        \n" +"{$activateUrl}
        \n" +"
        \n" +"Vă mulțumim,
        \n" +"{$contextSignature}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Luând în considerare expertiza dumneavoastră, v-am înregistrat numele în " +"baza de date a revizorilor cu numele de utilizator {$contextName}. Acest " +"fapt nu presupune niciun fel de implicare din partea dumneavoastră, doar ne " +"permite să vă contactăm în cazul unei revizii a unei lucrări. Dacă veți fi " +"invitat să realizați o revizie, veți avea oportunitatea să vedeți titlul și " +"rezumatul lucrării în cauză și veți putea accepta sau refuza invitația. De " +"asemenea, puteți solicita în orice moment să fiți eliminat din lista de " +"revizori.
        \n" +"
        \n" +"Vă oferim un nume de utilizator și o parolă pentru a putea interacționa cu " +"editura prin intermediul website-ului. De exemplu, vă puteți actualiza " +"profilul, inclusiv interesele dumneavoastră de revizie.
        \n" +"
        \n" +"Nume de utilizator: {$recipientUsername}
        \n" +"Parolă: {$password}
        \n" +"
        \n" +"Vă mulțumim,
        \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Ați fost desemnat ca editor pentru o lucrare trimisă la {$contextName}" + +msgid "emails.editorAssign.body" +msgstr "" +"

        Stimate {$recipientName},

        V-a fost atribuită următoarea lucrare " +"pentru a o monitoriza pe durata procesului editorial.

        {$submissionTitle}
        {$authors}

        Abstract

        {$submissionAbstract}

        Dacă " +"considerați că lucrarea trimisă este relevantă pentru {$contextName}, vă " +"rugăm să înaintați lucrarea către stadiul de revizie prin selectarea " +"\"Trimiteți către revizie internă\" și, ulterior, desemnați revizori prin " +"clicarea \"Adaugă revizor\".

        Dacă lucrarea trimisă nu este adecvată " +"pentru această editură, vă rugăm să o refuzați.

        Vă mulțumim " +"anticipat.

        Cu stimă,

        {$contextSignature}" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Am decis să anulăm solicitarea către dumneavoastră de a revizui o lucrarea " +""{$submissionTitle}," pentru {$contextName}. Ne cerem scuze pentru " +"orice inconvenient creat și sperăm că va fi posibilă o viitoare colaborare " +"de revizie în viitor.
        \n" +"
        \n" +"ă rog să mă contactați dacă aveți întrebări." + +msgid "emails.reviewDecline.body" +msgstr "" +"Editor(i):
        \n" +"
        \n" +"Din păcate nu sunt disponibil în acest moment pentru a revizui lucrarea " +"trimisă, "{$submissionTitle}," pentru{$contextName}. Vă mulțumesc " +"pentru că v-ați gândit la mine și puteți să mă contactați pentru colaborări " +"viitoare.
        \n" +"
        \n" +"{$senderName}" + +msgid "emails.reviewRemind.body" +msgstr "" +"

        Stimate {$recipientName},

        Dorim să vă reamintim de solicitarea " +"noastră de a revizui lucrarea ,\"{$submissionTitle},\" pentru{$contextName}. " +"Dorim să primim lucrarea până la data de {$reviewDueDate} și ne-ar face " +"plăcere să o primim de îndată ce veți putea să o pregătiți.

        Putețisă vă logați pe site-ul editurii și să " +"urmați pașii de revizie pentru a putea accesa lucrarea, a încărca fișierele " +"de revizie și a trimite comentariile de revizie.

        Dacă aveți nevoie de " +"o prelungire a termenului limită, vă rog să mă contactați. Aștept să primesc " +"vești de la dumneavoastră.

        Vă mulțumesc anticipat ,

        {$signature}" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
        \n" +"
        \n" +"Ați creat un cont, folosind numele de utilizator {$contextName}, dar este " +"necesară activarea acestuia înainte de utilizare. Pentru a face acest lucru, " +"accesați linkul de mai jos:
        \n" +"
        \n" +"{$activateUrl}
        \n" +"
        \n" +"Vă mulțumim,
        \n" +"{$contextSignature}" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Stimate {$recipientName},
        \n" +"Dorim să vă reamintim de solicitarea noastră de a revizui lucrarea, " +""{$submissionTitle}," pentru{$contextName}. Sperăm că vom avea " +"răspunsul dumneavoastră până la data de {$responseDueDate}. Acest email a " +"fost generat automat și trimis odată cu trecerea acestei date.\n" +"
        \n" +"{$messageToReviewer}
        \n" +"
        \n" +"Vă rugăm să vă logați pe website-ul editurii pentru a confirma sau infirma " +"dacă veți realiza revizia și, de asemenea, pentru a accesa lucrarea trimisă " +"și pentru a înregistra revizia și recomandările.
        \n" +"
        \n" +"Revizia era termenul limită în data de {$reviewDueDate}.
        \n" +"
        \n" +"URL-ul lucrării trimise: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Nume de utilizator: {$recipientUsername}
        \n" +"
        \n" +"Vă mulțumim că ați luat în considerare această solicitare .
        \n" +"
        \n" +"
        \n" +"Cu sinceritate,
        \n" +"{$contextSignature}
        \n" + +msgid "emails.reviewReinstate.body" +msgstr "" +"

        Stimate {$recipientName},

        Recent am anulat solicitarea noastră " +"către dumneavoastră de a revizui o lucrare {$submissionTitle}, pentru " +"{$contextName}. Am revenit asupra aceste decizii și sperăm că sunteți " +"disponibil pentru a realiza revizia.

        Dacă sunteți disponibil să ne " +"ajutați cu revizia lucrării, puteți să " +"vă logați pe site-ul editurii pentru a accesa lucrarea, a încărca " +"fișierele de revizie și a trimite solicitarea de revizie.

        Vă rugăm " +"să mă contactați dacă aveți întrebări.

        Cu stimă,

        {$signature}" + +msgid "emails.reviewRemindAuto.body" +msgstr "" +"

        Stimate {$recipientName}:

        Acest email este un memento automat de " +"la {$contextName} cu privire la solicitarea noastră către dumneavoastră de a " +"revizui lucrarea, \"{$submissionTitle}.\"

        Dorim să primim lucrarea " +"revizuită până la data de {$reviewDueDate} și ne-ar face plăcere să o primim " +"de îndată ce veți putea să o pregătiți.

        Vă rugăm să vă logați pe site-ul editurii și să urmați " +"pașii de revizie pentru a accesa lucrarea trimisă, a încărca fișierele de " +"revizie și a trimite comentariile de revizie.

        Dacă aveți nevoie de o " +"prelungire a termenului limită, vă rog să mă contactați. Aștept să primesc " +"vești de la dumneavoastră.

        Vă mulțumesc anticipat, " +"

        {$contextSignature}" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

        Stimate {$recipientName},

        Am plăcerea de a vă informa despre " +"faptul că un editor a revizuit lucrarea dumneavoastră, {$submissionTitle}, " +"și a decis să fie trimisă pentru o revizie internă. Vă vom contacta în " +"legătură cu feedbackul primit de la revizori și cu informațiile despre " +"următoarele etape.

        Vă rugăm să rețineți că trimiterea lucrării spre " +"revizie internă nu garantează faptul că va fi publicată. Vom lua în " +"considerare recomandările revizorilor înainte de a decide dacă acceptăm " +"lucrarea pentru publicare. Este posibil să vi se ceară să faceți revizuiri " +"și să răspundeți comentariilor revizorilor înainte de a se lua o decizie " +"finală.

        Dacă aveți întrebări, vă rog să mă contactați prin " +"intermediul interfeței de trimiteri.

        {$signature}

        " + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

        Stimate {$recipientName},

        Am plăcerea de a vă informa că am decis " +"să vă acceptăm lucrarea trimisă, fără alte revizii viitoare. În urma unei " +"revizii minuțioase, am decis că lucrarea trimisă de dumneavoastră, " +"{$submissionTitle}, îndeplinește așteptările noastre. Suntem încântați să vă " +"publicăm lucrarea în {$contextName} și vă mulțumim pentru că ați ales " +"editura noastră drept loc de publicare a articolului dumneavoastră.

        " +"Lucrarea trimisă de dumneavoastră va fi publicată curând pe website-ul " +"editurii pentru {$contextName} și vă invităm să o includeți în lista " +"dumneavoastră de publicații. Recunoaștem munca asiduă depusă pentru " +"redactarea fiecărei lucrări și dorim să vă felicităm pentru că ați ajuns în " +"această etapă.

        Lucrarea va fi editată și formatată pentru a fi " +"publicată.

        În scurt timp veți primii alte instrucțiuni.

        Dacă " +"aveți întrebări, vă rog să mă contactați prin intermediul interfeței de trimiteri.

        Cu stimă, " +"

        {$signature}" + +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

        Stimate {$recipientName}, ,

        Mulțumim pentru revizuirea lucrării {$submissionTitle}. Autorii au luat în " +"considerare feedbackul revizorilor și au oferit o versiune revizuită a " +"lucrării lor. Vă scriu cu intenția de a vă întreba dacă ați dori să " +"coordonați a doua rundă colegială de revizie pentru această lucrare trimisă. " +"

        Dacă sunteți disponibil pentru revizie, termenul limită este " +"{$reviewDueDate}. Puteți urma etapele de " +"revizie pentru a vedea lucrarea trimisă, a încărca fișierele de revizie " +"și a trimite comentariile dumneavoastră de revizie.

        {$submissionTitle}

        Rezumat

        {$submissionAbstract}

        Vă " +"rugămsă acceptați sau să refuzați " +"revizia până la data de {$responseDueDate}.

        Pentru orice " +"întrebare legată de lucrarea trimisă sau de procesul de revizie, mă puteți " +"contacta.

        Vă mulțumim că ați luat în considerare această solicitare. " +"Ajutorul dumneavoastră este apreciat.

        Cu stimă,

        {$signature}" + +msgid "emails.reviewRequest.body" +msgstr "" +"

        Stimate{$recipientName},

        considerăm că ați fi un revizor potrivit " +"pentru această lucrare {$contextName}. Titlul și rezumatul acesteia se află " +"mai jos și sperăm că vă veți îndeplini această sarcină importantă pentru " +"noi.

        Dacă sunteți disponibil pentru revizie, termenul limită este " +"{$reviewDueDate}. Pentru a putea accesa lucrarea, a încărca paginile de " +"revizie și a trimite revizia, trebuie să vă logați pe site-ul editurii și să " +"urmați pașii din linkul de mai jos.

        {$submissionTitle}

        Rezumat

        {$submissionAbstract}

        Vă " +"rugăm să acceptați sau să refuzațirevizia până la$responseDueDate}.

        Pentru orice întrebare " +"legată de lucrarea trimisă sau de procesul de revizie, mă puteți contacta.

        Vă mulțumim că ați luat în considerare această solicitare. Ajutorul " +"dumneavoastră este apreciat.

        Cu stimă,

        {$signature}" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Indicele sunt pregătite pentru manuscris, "{$submissionTitle}," " +"pentru{$contextName} și sunt gata pentru corectură.
        \n" +"
        \n" +"Vă rog să mă contactați dacă aveți întrebări.
        \n" +"
        \n" +"{$senderName}" + +msgid "emails.emailLink.body" +msgstr "" +"S-ar putea să fiți interesat de "{$submissionTitle}" de {$authors}" +", publicat în volumul {$volume}, Nr. {$number} ({$year}) din {$contextName} " +"la "{$submissionUrl}"." + +msgid "emails.notifySubmission.body" +msgstr "" +"Ați primit un mesaj de la {$sender}, cu privire la " +""{$submissionTitle}" ({$monographDetailsUrl}):
        \n" +"
        \n" +"\t\t{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Notificare de la un utilizator, trimisă din cadrul unui centru de informații " +"despre trimieri." + +msgid "emails.notifyFile.body" +msgstr "" +"Ați primit un mesaj de la {$sender}, cu privire la fișierul " +""{$fileName}" în "{$submissionTitle}" " +"({$monographDetailsUrl}):
        \n" +"
        \n" +"\t\t{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"O notificare de la un utilizator, din cadrul unui centru de informații " +"despre arhive" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

        Stimate {$recipientName},

        Autorul a încărcat revizii pentru " +"lucrarea trimisă, {$authorsShort} — {$submissionTitle}.

        În " +"calitate de editor, vă rog să vă logați și să " +"accesați reviziile și să acceptași, să refuzați sau să trimiteți " +"lucrarea pentru revizii viitoare.




        Acesta este un mesaj " +"generat automat de la {$contextName}." + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
        \n" +"
        \n" +"Buletinul editorial pentru {$month}, {$year} este acum disponibil. " +"Statisticile fundamentale din această lună sunt următoarele:
        \n" +"
          \n" +"\t
        • Lucrări trimise noi în această lună: {$newSubmissions}
        • \n" +"\t
        • Lucrări trimise respinse în această lună: {$declinedSubmissions}
        • \n" +"\t
        • Lucrări trimise acceptate în această lună: {$acceptedSubmissions}
        • " +"\n" +"\t
        • Totalul lucrărilor trimise înregistrate în sistem: " +"{$totalSubmissions}
        • \n" +"
        \n" +"Logați-vă pe site-ul editurii pentru a mai multe detaliitrenduri editorialeșistatisticile cărților publicate.O copie a " +"trendurilor editoriale din această lună este atașată.
        \n" +"
        \n" +"Cu sinceritate,
        \n" +"{$contextSignature}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
        \n" +"
        \n" +"{$announcementSummary}
        \n" +"
        \n" +"Accesați website-ul nostru pentru a putea citi întregul anunț." + +msgid "emails.editorAssignReview.body" +msgstr "" +"

        Stimate {$recipientName},

        Următoarea lucrare v-a fost atribuită " +"pentru a o revizui.

        {$submissionTitle}
        {$authors}

        Rezumat

        {$submissionAbstract}

        Vă rog să " +"vă logați pentru a vedea lucrarea trimisăși " +"pentru a desemna revizori calificați. Puteți desemna un revizor prin " +"clicarea funcției \"Adaugă revizor\".

        Vă mulțumesc anticipat!

        Cu " +"stimă,

        {$signature}" + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

        Stimate {$recipientName},

        Următoarea lucrare v-a fost atribuită " +"pentru a o supraveghea în etapa de producție.

        {$submissionTitle}
        {$authors}

        Rezumat

        {$submissionAbstract}

        Vă rog să vă " +"logați pentru a vedea lucrarea. Odată ce " +"fișierele pregătite pentru producție sunt disponibile, încărcați-le în " +"secțiunea Publicații>Format de Publicații.

        Vă " +"mulțumesc anticipat.

        Cu stimă,

        {$signature}" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

        Stimate{$recipientName},

        \n" +"

        Am plăcerea de a vă informa că am decis să vă acceptăm lucrarea trimisă " +"fără revizie colegială. Lucrarea dumneavoastră, {$submissionTitle}, " +"îndeplinește așteptările noastre, iar acest tip de scriere nu necesită " +"revizie colegială. Suntem încântați să vă publicăm lucrarea în {$contextName}" +" și vă mulțumim pentru că ați ales editura noastră drept loc de publicare a " +"articolului dumneavoastră.

        \n" +"

        Lucrarea trimisă de dumneavoastră va fi publicată curând pe website-ul " +"editurii pentru {$contextName} și vă invităm să o includeți în lista " +"dumneavoastră de publicații. Recunoaștem munca asiduă depusă pentru " +"redactarea fiecărei lucrări și dorim să vă felicităm pentru efortul " +"depus.

        \n" +"

        Lucrarea va fi editată și formatată pentru a fi publicată.

        \n" +"

        În scurt timp veți primii alte instrucțiuni.

        \n" +"

        Dacă aveți întrebări, vă rog să mă contactați prin intermediul interfeței de trimiteri.

        \n" +"

        Cu bine,

        \n" +"

        {$signature}

        \n" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:
        \n" +"
        \n" +"Lucrarea trimisă, "{$submissionTitle}" către{$contextName}, " +"necesită indice create urmând următoarele etapei.
        \n" +"1. Clicați pe URL-ul de trimitere de mai jos.
        \n" +"2. Logați-vă pe site-ul editurii și utilizați fișierul Page Proofs pentru a " +"crea galele, în conformitate cu standardele editurii.
        \n" +"3. Trimiteți emailul COMPLET editorului.
        \n" +"
        \n" +"{$contextName} URL: {$contextUrl}
        \n" +"URL-ul de trimitere: {$submissionUrl}
        \n" +"Nume de utilizator: {$recipientUsername}
        \n" +"
        \n" +"Vă rog să mă contactați dacă nu sunteți disponibil pentru a prelua această " +"sarcină sau dacă aveți întrebări. Vă mulțumim pentru contribuțiile aduse " +"editurii.
        \n" +"
        \n" +"{$signature}" diff --git a/locale/ro/locale.po b/locale/ro/locale.po new file mode 100644 index 00000000000..f6f5885ff69 --- /dev/null +++ b/locale/ro/locale.po @@ -0,0 +1,1705 @@ +# Vasile Moraru , 2024. +# Ruxandra Berescu , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-12 21:16+0000\n" +"Last-Translator: Ruxandra Berescu \n" +"Language-Team: Romanian " +"\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "common.payments" +msgstr "Plăți" + +msgid "monograph.audience" +msgstr "Public" + +msgid "monograph.audience.success" +msgstr "Detaliile despre public au fost actualizate." + +msgid "monograph.coverImage" +msgstr "Imagine de copertă" + +msgid "monograph.audience.rangeQualifier" +msgstr "Calificator al varietății publicului" + +msgid "monograph.audience.rangeFrom" +msgstr "Varietatea publicului (de)" + +msgid "monograph.audience.rangeTo" +msgstr "Varietatea publicului (către)" + +msgid "monograph.languages" +msgstr "Limbi (engleză, franceză, spaniolă)" + +msgid "monograph.publicationFormats" +msgstr "Formatări de publicație" + +msgid "monograph.publicationFormat" +msgstr "Formatare" + +msgid "monograph.publicationFormatDetails" +msgstr "Detalii despre formatarea publicării valabile: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Detalii despre monografie" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formatări:" + +msgid "monograph.type" +msgstr "Tip de propunere" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Ultimele pagini" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Compoziția produsului" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Detalii despre produs (opțional)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identificarea produsului" + +msgid "monograph.publicationFormat.price" +msgstr "Preț" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Este necesar un preț." + +msgid "monograph.publicationFormat.priceType" +msgstr "Tipul prețului" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Valabilitatea produsului" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Indicator de retururi" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Informație digitală" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Dimensiuni fizice" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Mărimea fișierului în MB" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Înălțime" + +msgid "monograph.audience.rangeExact" +msgstr "Varietatea publicului (exact)" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Primele pagini" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Procentaj de reducere, dacă se aplică" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Doriți să introduceți valoarea mărimii fișierului personalizat?" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Grosime" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Greutate" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Lățime" + +msgid "submission.pageProofs" +msgstr "Pagini probă" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Redactorul încarcă fișierele gata produse care au fost pregătite pentru a fi " +"publicate aici. Folosește +Atribuie pentru a desemna autori și " +"alții pentru a face proofreading paginilor probă, cu fișierele corectate " +"încărcate pentru aprobarea destinată publicării." + +msgid "monograph.task.addNote" +msgstr "Adăugați o sarcină" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Acces deschis" + +msgid "monograph.publicationFormat.imprint" +msgstr "Imprimare (numele mărcii)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Număr de pagini" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Țara de producție" + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Trebuie să se aleagă un format de publicare." + +msgid "grid.catalogEntry.availability" +msgstr "Disponibilitate" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Disponibil" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Nedisponibil" + +msgid "grid.catalogEntry.proof" +msgstr "Probă" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Acceptarea formatării" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

        Acceptați metadata pentru această formatare. Metadata poate fi verificată " +"în panoul de editare pentru fiecare formatare.

        " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Disponibilitatea formatării" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

        Fă această formatare disponibilă pentru cititori. Fișierele care " +"pot fi descărcate, precum și alte distribuții vor apărea în intrarea " +"catalogului cărții.

        " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Intrarea catalogului nu a fost aprobată." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Această formatare nu se găsește în intrarea catalogului." + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Protecție tehnică digitală" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Regiune de distribuție a produsului" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Rată de impozitare" + +msgid "monograph.publicationFormat.taxType" +msgstr "Tip de impozitare" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Includeți metadata pentru formatarea acestei publicări în intrarea " +"catalogului pentru această carte." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Lipsesc piața și prețurile." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Lipsește un cod de identificare." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Lipsesc câmpuri de metadate." + +msgid "monograph.publicationFormat.openTab" +msgstr "Filă formatare pentru publicare deschisă." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Formatarea publicării" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Este necesar un nume." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Este necesar un preț valid." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Detalii despre formatare" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Formatare fizică" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL de conținut remote" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "Un cod ISBN format din 13 caractere, precum 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "Un cod ISBN format din 10 caractere, precum 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Este necesar un cod de identificare a monografiei." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Proba nu a fost aprobată." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Aprobat" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Este necesară dimensiunea unui fișier pentru formatări digitale." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Este necesar un cod de valabilitate a produsului." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Valoarea codului" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Tip de cod ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Este necesar un cod de identificare." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Este necesară o valoare." + +msgid "grid.catalogEntry.salesRights" +msgstr "Drepturi de vânzări" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Valoarea codului" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Tip de drepturi de vânzări" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Restul lumii?" + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Deja există un tip de vânzări ROW definit pentru formatarea acestei " +"publicări." + +msgid "grid.catalogEntry.countries" +msgstr "Țări" + +msgid "grid.catalogEntry.regions" +msgstr "Regiuni" + +msgid "grid.catalogEntry.included" +msgstr "Incluse" + +msgid "grid.catalogEntry.excluded" +msgstr "Excluse" + +msgid "grid.catalogEntry.markets" +msgstr "Teritoriile pieței" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Teritoriu" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Datele publicării" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Este necesar un rol reprezentativ." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Este necesară formatarea unei date." + +msgid "grid.catalogEntry.dateValue" +msgstr "Data" + +msgid "grid.catalogEntry.dateRole" +msgstr "Rol" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Formatarea datei" + +msgid "grid.catalogEntry.representatives" +msgstr "Reprezentanți" + +msgid "grid.catalogEntry.representativeType" +msgstr "Tip de reprezentanți" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agenți" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Furnizori" + +msgid "grid.catalogEntry.agent" +msgstr "Agent" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Puteți să alegeți un agent care să vă reprezinte în teritoriul definit. Nu " +"este necesar." + +msgid "grid.catalogEntry.supplier" +msgstr "Furnizor" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Alegeți un rol:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Rol" + +msgid "grid.catalogEntry.representativeName" +msgstr "Nume" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Număr de telefon" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Adresă de email" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Website" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Tip de act de identitate al reprezentantului (GLN recomandat)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Puteți păstra secțiunea următoare goală dacă vă oferiți propriile servicii " +"clienților dumneavoastră." + +msgid "grid.action.addRepresentative" +msgstr "Adăugați reprezentant" + +msgid "grid.action.editRepresentative" +msgstr "Modificați acest reprezentant" + +msgid "grid.action.deleteRepresentative" +msgstr "Ștergeți acest reprezentant" + +msgid "spotlight" +msgstr "Remarcat" + +msgid "spotlight.spotlights" +msgstr "Remarcați" + +msgid "spotlight.noneExist" +msgstr "Nu există nimeni remarcat în acest moment." + +msgid "spotlight.title.homePage" +msgstr "Cei mai remarcați" + +msgid "spotlight.author" +msgstr "Autor, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Element remarcat" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Pagina principală" + +msgid "grid.content.spotlights.form.location" +msgstr "Locația remarcată" + +msgid "grid.content.spotlights.form.title" +msgstr "Titlul remarcat" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Carte" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Este necesar un element." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Este necesar un titlu remarcat." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Vă rugăm alegeți o locație pentru acest obiect remarcat." + +msgid "grid.action.deleteSpotlight" +msgstr "Ștergeți acest obiect remarcat" + +msgid "grid.action.addSpotlight" +msgstr "Adăugați un obiect remarcat" + +msgid "manager.series.open" +msgstr "Propuneri deschise" + +msgid "manager.series.indexed" +msgstr "Indexat" + +msgid "grid.libraryFiles.column.files" +msgstr "Fișiere" + +msgid "grid.action.catalogEntry" +msgstr "Vezi forma de intrare a catalogului" + +msgid "grid.action.editFormat" +msgstr "Modificați această formatare" + +msgid "grid.action.deleteFormat" +msgstr "Ștergeți această formatare" + +msgid "grid.action.addFormat" +msgstr "Adăugați formatare de publicare" + +msgid "grid.action.pageProofApproved" +msgstr "Fișierul de pagini probă este gata pentru publicare" + +msgid "grid.action.newCatalogEntry" +msgstr "Intrare în catalog nouă" + +msgid "grid.action.publicCatalog" +msgstr "Vezi acest articol în catalog" + +msgid "grid.action.feature" +msgstr "Modificați vizualizarea caracteristicilor" + +msgid "grid.action.featureMonograph" +msgstr "Evidențiați în caruselul catalog" + +msgid "grid.action.releaseMonograph" +msgstr "Marcați această propunere ca „articol nou”" + +msgid "grid.action.manageCategories" +msgstr "Configurați categorii pentru această editură" + +msgid "grid.action.addCode" +msgstr "Adăugați codul" + +msgid "grid.action.editCode" +msgstr "Editați acest cod" + +msgid "grid.action.addRights" +msgstr "Adăugați drepturi de vânzări" + +msgid "grid.action.editRights" +msgstr "Editați aceste drepturi" + +msgid "grid.action.deleteRights" +msgstr "Ștergeți aceste drepturi" + +msgid "grid.action.addMarket" +msgstr "Adăugați magazin" + +msgid "grid.action.editMarket" +msgstr "Editați acest magazin" + +msgid "grid.action.addDate" +msgstr "Adăugați dată de publicare" + +msgid "grid.action.editDate" +msgstr "Editați această dată" + +msgid "grid.action.deleteDate" +msgstr "Ștergeți această dată" + +msgid "grid.action.createContext" +msgstr "Creați o nouă publicare" + +msgid "grid.action.publicationFormatTab" +msgstr "Arată fila formatării pentru publicare" + +msgid "grid.action.submissionEmail" +msgstr "Clicați pentru a citi acest email" + +msgid "grid.action.approveProofs" +msgstr "Vezi rama probelor" + +msgid "grid.action.proofApproved" +msgstr "Formatarea a fost verificată" + +msgid "grid.action.availableRepresentation" +msgstr "Aprobați/respingeți această formatare" + +msgid "grid.reviewAttachments.add" +msgstr "Adăugați un atașament acestei revizii" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Fișiere disponibile" + +msgid "series.series" +msgstr "Colecție" + +msgid "series.featured.description" +msgstr "Această colecție va apărea în navigarea principală" + +msgid "series.path" +msgstr "Rută" + +msgid "catalog.manage" +msgstr "Administrarea catalogului" + +msgid "catalog.manage.newReleases" +msgstr "Articole noi" + +msgid "catalog.manage.category" +msgstr "Categorie" + +msgid "catalog.manage.series" +msgstr "Colecție" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.categories" +msgstr "Categorii" + +msgid "catalog.category.subcategories" +msgstr "Subcategorii" + +msgid "catalog.aboutTheAuthor" +msgstr "Despre {$roleName}" + +msgid "catalog.sortBy" +msgstr "Ordinea monografiilor" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Alegeți felul în care să fie ordonate cărților din această serie." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Alegeți felul în care să fie ordonate cărțile din această categorie." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Alegeți felul în care să fie ordonat cărțile din acest catalog." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Poziția seriilor (de la cele mai inferioare)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Poziția seriilor (de la cele mai superioare)" + +msgid "submission.search" +msgstr "Căutare de cărți" + +msgid "common.publication" +msgstr "Monografie" + +msgid "common.publications" +msgstr "Monografii" + +msgid "common.prefix" +msgstr "Prefix" + +msgid "common.preview" +msgstr "Previzualizare" + +msgid "common.feature" +msgstr "Caracteristici" + +msgid "common.searchCatalog" +msgstr "Catalogul de căutări" + +msgid "common.moreInfo" +msgstr "Mai multe informații" + +msgid "common.listbuilder.completeForm" +msgstr "Vă rugăm completați întregul formular." + +msgid "common.listbuilder.itemExists" +msgstr "Nu puteți adăuga același articol de două ori." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Antetul paginii principale" + +msgid "navigation.catalog" +msgstr "Catalog" + +msgid "navigation.competingInterestPolicy" +msgstr "Politica privind conflicte de interes" + +msgid "navigation.catalog.allMonographs" +msgstr "Toate monografiile" + +msgid "navigation.catalog.manage" +msgstr "Administrează" + +msgid "navigation.catalog.administration.short" +msgstr "Administrație" + +msgid "navigation.catalog.administration" +msgstr "Catalog de administrație" + +msgid "navigation.catalog.administration.series" +msgstr "Colecții" + +msgid "navigation.infoForAuthors" +msgstr "Pentru autori" + +msgid "navigation.infoForLibrarians" +msgstr "Pentru bibliotecari" + +msgid "navigation.infoForAuthors.long" +msgstr "Informație pentru autori" + +msgid "navigation.infoForLibrarians.long" +msgstr "Informație pentru bibliotecari" + +msgid "navigation.newReleases" +msgstr "Articole noi" + +msgid "navigation.published" +msgstr "Publicate" + +msgid "navigation.wizard" +msgstr "Asistent" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Link către catalogul tău." + +msgid "navigation.skip.spotlights" +msgstr "Săriți peste articolele remarcate" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Serii" + +msgid "navigation.navigationMenus.series.description" +msgstr "Link către serii." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Categorie" + +msgid "navigation.navigationMenus.newRelease" +msgstr "Articole noi" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Link către articolele tale noi." + +msgid "context.contexts" +msgstr "Edituri" + +msgid "context.context" +msgstr "Editură" + +msgid "context.current" +msgstr "Editura actuală:" + +msgid "context.select" +msgstr "Schimbați cu o altă editură:" + +msgid "user.authorization.representationNotFound" +msgstr "Formatarea de publicare cerută nu a putut fi găsită." + +msgid "user.noRoles.submitMonograph" +msgstr "Trimiteți o propunere" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Trimiteți o monografie: înregistrarea autorului este momentan dezactivată." + +msgid "user.reviewerPrompt" +msgstr "Ați fi dispus să revizuiți propunerile pentru această editură?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Da, solicitați rolul {$userGroup}." + +msgid "user.register.contextsPrompt" +msgstr "Pentru care editură de pe acest website ați dori să vă înregistrați?" + +msgid "user.register.otherContextRoles" +msgstr "Solicitați următoarele roluri." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Dacă ați solicitat să fiți revizor pentru una dintre edituri, vă rugăm " +"introduceți-vă subiectele de interes." + +msgid "user.role.manager" +msgstr "Managerul editurii" + +msgid "user.role.pressEditor" +msgstr "Editor" + +msgid "user.role.subEditor" +msgstr "Editorul seriei" + +msgid "user.role.copyeditor" +msgstr "Redactor" + +msgid "user.role.proofreader" +msgstr "Proofreader" + +msgid "user.role.managers" +msgstr "Managerii editurii" + +msgid "user.role.subEditors" +msgstr "Editorii de serii" + +msgid "user.role.editors" +msgstr "Editori" + +msgid "user.role.copyeditors" +msgstr "Redactori" + +msgid "user.role.proofreaders" +msgstr "Proofreaderi" + +msgid "user.role.productionEditors" +msgstr "Editori de producție" + +msgid "user.register.noContexts" +msgstr "Nu există edituri cu care să vă înregistrați pe acest website." + +msgid "user.register.privacyStatement" +msgstr "Declarație de confidențialitate" + +msgid "user.register.registrationDisabled" +msgstr "Această editură nu acceptă momentan înregistrări ale utilizatorilor." + +msgid "user.register.readerDescription" +msgstr "Publicarea unei monografii notificate prin email." + +msgid "user.register.authorDescription" +msgstr "Se pot prezenta articole editurii." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "" +"Dispus să efectuez o evaluare în pereche a articolelor prezentate în editură." + +msgid "user.register.reviewerInterests" +msgstr "" +"Identificarea intereselor de revizuire (domenii substanțiale și metode de " +"cercetare):" + +msgid "user.register.form.userGroupRequired" +msgstr "Trebuie să selectați cel puțin un rol" + +msgid "site.noPresses" +msgstr "Nu există edituri disponibile." + +msgid "site.pressView" +msgstr "Vezi pagina web a editurii" + +msgid "about.pressContact" +msgstr "Contactul editurii" + +msgid "about.aboutContext" +msgstr "Despre editură" + +msgid "about.editorialTeam" +msgstr "Echipa editurii" + +msgid "about.editorialPolicies" +msgstr "Politicile editurii" + +msgid "about.focusAndScope" +msgstr "Orientare și domeniu de activitate" + +msgid "about.seriesPolicies" +msgstr "Serii și politici de categorii" + +msgid "about.submissions" +msgstr "Propuneri" + +msgid "about.onlineSubmissions" +msgstr "Propuneri online" + +msgid "about.onlineSubmissions.login" +msgstr "Autentificare" + +msgid "about.onlineSubmissions.register" +msgstr "Înregistrare" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "" +"Trebuie să vă autentificați {$login} sau să vă înregistrați {$register} " +"pentru a trimite o propunere." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} sau {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Trimiteți o nouă propunere" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "Vezi propunerile în așteptare" + +msgid "about.authorGuidelines" +msgstr "Ghid pentru autori" + +msgid "about.submissionPreparationChecklist" +msgstr "Lista de verificare a pregătirii pentru trimiterea propunerilor" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Ca parte a procesului de trimitere a propunerilor, autorii trebuie să " +"verifice conformitatea depunerii lor cu următoarele articole, iar " +"propunerile vor putea fi înapoiate autorilor care nu respectă aceste cerințe." + +msgid "about.copyrightNotice" +msgstr "Aviz pentru drepturi de autor" + +msgid "about.privacyStatement" +msgstr "Declarație de confidențialitate" + +msgid "about.reviewPolicy" +msgstr "Proces de revizie în pereche" + +msgid "about.publicationFrequency" +msgstr "Frecvența publicațiilor" + +msgid "about.openAccessPolicy" +msgstr "Politica de acces deschisă" + +msgid "about.pressSponsorship" +msgstr "Sponsorizarea editurii" + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Editura OMP și procesul de publicare" + +msgid "about.aboutSoftware" +msgstr "Despre Open Monograph Press" + +msgid "help.searchReturnResults" +msgstr "Înapoi la Rezultatele căutării" + +msgid "help.goToEditPage" +msgstr "Deschideți o pagină nouă pentru a edita această informație" + +msgid "installer.appInstallation" +msgstr "Instalare OMP" + +msgid "installer.ompUpgrade" +msgstr "Actualizare OMP" + +msgid "installer.installApplication" +msgstr "Instalare Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Dacă actualizați o instalare deja existentă a OMP, clicați aici pentru a continua." + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "" +"

        Indică faptul că metadata pentru această formatare nu a fost aprobată.

        " + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"O dată este necesară iar valoarea datei trebuie să coincidă cu formatarea " +"datei alese." + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

        Această formatare nu va fi valabilă cititorilor. Orice fișier " +"care poate fi descărcat sau alte distribuții nu vor mai apărea în intrarea " +"catalogului cărții.

        " + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Act de identitate al reprezentantului" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Aprobare în așteptare" + +msgid "grid.content.spotlights.form.item" +msgstr "Introduceți titlul remarcat (autocompletare)" + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Este necesar să se aleagă un cod de compoziție a produsului." + +msgid "grid.action.editSpotlight" +msgstr "Modificați acest obiect remarcat" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Marcați această căsuță pentru a utiliza această intrare de drept de vânzări " +"precum un filtru pentru formatarea dumneavoastră. În acest caz nu este " +"necesar să se aleagă nici țările, nici regiunile." + +msgid "grid.action.formatInCatalogEntry" +msgstr "Formatarea apare în intrarea catalogului" + +msgid "catalog.parentCategory" +msgstr "Categorie de părinți" + +msgid "about.aboutOMPPress" +msgstr "" +"Această editură folosește Open Monograph Press {$ompVersion}, care este un " +"software open source de gestionare și publicare a presei, fiind dezvoltat, " +"susținut și distribuit gratuit de Public Knowledge Project sub Licența " +"Publică Generală GNU. Vizitează websiteul PKP pentru a afla mai multe despre acest software. Vă rugăm contactați editura prin email dacă aveți întrebări " +"despre editură sau despre propunerile de publicare pentru aceasta." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

        Formatarea de publicare pe care ați ales-o nu mai există pentru această " +"monografie.

        " + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Vă rugăm să rețineți: Pentru a achiziționa articole, va trebui să vă " +"conectați pe platformă. Selectarea unui articol pentru achiziționare vă va " +"direcționa către pagina de conectare. Orice articol marcat cu Acess deschis " +"poate fi descărcat gratuit, fără conectare pe platformă." + +msgid "about.aboutOMPSite" +msgstr "" +"Această editură folosește Open Monograph Press {$ompVersion}, care este un " +"software open source de gestionare și publicare a presei, fiind dezvoltat, " +"susținut și distribuit gratuit de Public Knowledge Project sub Licența " +"Publică Generală GNU. Vizitați websiteul PKP pentru a afla mai multe despre acest software. Vă rugăm contactați " +"adresa websiteului dacă aveți întrebări referitoare la editurile acestuia " +"sau întrebări referitoare la propunerile de publicare pentru aceste edituri." + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Această formatare va fi valabilă pe un website separat" + +msgid "catalog.viewableFile.title" +msgstr "{$type} vezi acest fișier {$title}" + +msgid "installer.installationInstructions" +msgstr "" +"

        Vă mulțumim că ați descărcat Public Knowledge Project's Open " +"Monograph Press {$version}. Înainte de a continua, vă rugăm citiți " +"cu atenție fișierul README care " +"este inclus în acest software. Pentru mai multe informații despre Public " +"Knowledge Project și proiectele sale software, vă rugăm vizitați websiteul PKP . Dacă aveți un " +"raport de eroare sau aveți nevoie de asistență tehnică pentru Open Monograph " +"Press, vedeți " +"forumul de asistență sau vizitați PKP online pentru sistemul de raport de " +"eroare. Deși forumul de asistență este metoda preferată de contactare, " +"puteți de asemenea să trimiteți un email echipei la pkp.contact@gmail.com.

        " + +msgid "grid.action.approveProof" +msgstr "Aprobați proba pentru indexare și incluziune în catalog" + +msgid "catalog.viewableFile.return" +msgstr "Reveniți pentru a vedea detalii despre {$monographTitle}" + +msgid "grid.action.manageSeries" +msgstr "Configurați serii pentru această editură" + +msgid "common.listbuilder.selectValidOption" +msgstr "Vă rugăm selectați o opțiune validă din această listă." + +msgid "grid.action.deleteCode" +msgstr "Stergeți acest cod" + +msgid "navigation.catalog.administration.categories" +msgstr "Categorii" + +msgid "grid.action.deleteMarket" +msgstr "Ștergeți acest magazin" + +msgid "navigation.linksAndMedia" +msgstr "Linkuri și rețele sociale" + +msgid "grid.action.moreAnnouncements" +msgstr "Mergeți la pagina de comunicare de presă" + +msgid "navigation.navigationMenus.category.description" +msgstr "Link către categorie." + +msgid "grid.action.formatAvailable" +msgstr "Modificați disponibilitatea acestei formatări pornit/oprit" + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Includeți utilizatori fără roluri în această editură." + +msgid "catalog.manage.series.issn.validation" +msgstr "Vă rugăm introduceți un ISSN valid." + +msgid "user.noRoles.regReviewer" +msgstr "Înregistrează-te ca revizor" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Înregistrează-te ca revizor: Înregistrarea ca revizor este momentan " +"dezactivată." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Da, mi-ar plăcea să fiu contactat pentru a revizui propunerile pentru " +"această editură." + +msgid "user.role.productionEditor" +msgstr "Editor de producție" + +msgid "user.register.selectContext" +msgstr "Selectați o editură cu care să vă înregistrați:" + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Parola pe care ați introdus-o nu este suficient de lungă." + +msgid "user.register.reviewerDescription" +msgstr "" +"Dispus să efectuez o evaluare în pereche pentru propunerile pentru acest " +"website." + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Da, sunt de acord ca datele introduse să fie păstrate conform declarației de " +"confidențialitate a acestei edituri." + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Mai multe informații despre sistemul de publicare, despre platformă și " +"despre fluxul muncii sunt oferite de OMP/PKP." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "ISSN-ul online și cel printat nu trebuie să fie la fel." + +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN online" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN printat" + +msgid "catalog.selectSeries" +msgstr "Selectați colecția" + +msgid "catalog.selectCategory" +msgstr "Selectați categoria" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Imaginea de copertă a cărților selectate apar în partea de sus a paginii " +"principale ca un set derulabil. Clicați pe „Carateristici” apoi pe steluță " +"pentru a adăuga o carte în carusel. Clicați pe punctul de exclamație pentru " +"a evidenția articolul ca unul nou, apoi trageți și lăsați articolul pentru a-" +"l comanda." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Clicați pe „Caracteristici”, apoi pe steluță pentru a selecta o carte care " +"apare în această categorie. Trăgeți-o și lăsați-o pentru a o comanda." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Clicați pe „Caracteristici”, apoi pe steluță pentru a selecta o carte care " +"apare în această categorie. Trăgeți-o și lăsați-o pentru a o comanda. " +"Colecția este identificată cu ajutorul unui editor și al unui titlu de serii " +"dintr-o categorie sau în mod independent." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Carusel" + +msgid "catalog.manage.newRelease" +msgstr "Publicare" + +msgid "catalog.manage.manageSeries" +msgstr "Gestionați colecțiile" + +msgid "catalog.manage.manageCategories" +msgstr "Gestionați categoriile" + +msgid "catalog.manage.noMonographs" +msgstr "Nu există monografii atribuite." + +msgid "catalog.manage.featured" +msgstr "Evidențiat" + +msgid "catalog.manage.categoryFeatured" +msgstr "Evidențiat în categorie" + +msgid "catalog.manage.seriesFeatured" +msgstr "Evidențiat în serii" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monografia este evidențiată." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monografia nu este evidențiată." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Monografia este marcată ca articol nou." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Monografia nu este marcată ca articol nou." + +msgid "catalog.manage.feature.newRelease" +msgstr "Articol nou" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Articol nou în categorie" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Articol nou în serii" + +msgid "catalog.manage.nonOrderable" +msgstr "Această monografie nuse poate comanda până când nu va fi publicată." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Căutați după titlu sau autor" + +msgid "catalog.manage.isFeatured" +msgstr "" +"Această monografie este evidențiată. Faceți această monografie să nu fie " +"evidențiată." + +msgid "catalog.manage.isNotFeatured" +msgstr "" +"Această monografie nu este evidențiată. Faceți această monografie " +"evidențiată." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Această monografie este un articol nou. Faceți această monografie să nu fie " +"marcată ca articol nou." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Această monografie nu este un articol nou. Faceți această monografie să fie " +"marcată ca articol nou." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Nicio propunere nu a fost selectată pentru a fi adăugată în catalog." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Una sau mai multe dintre propuneri nu a putut fi găsită." + +msgid "catalog.manage.findSubmissions" +msgstr "Găsiți monografii pentru a adăuga în catalog" + +msgid "catalog.noTitles" +msgstr "Niciun titlu nu a fost încă publicat." + +msgid "catalog.noTitlesNew" +msgstr "Momentan niciun articol nou nu este valabil." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Niciun titlu nu a fost găsit care să se potrivească cu căutarea " +"„{$searchQuery}”." + +msgid "catalog.feature" +msgstr "Evidențiați" + +msgid "catalog.featured" +msgstr "Evidențiate" + +msgid "catalog.featuredBooks" +msgstr "Cărți evidențiate" + +msgid "catalog.foundTitleSearch" +msgstr "Un titlu a fost găsit care se potrivește cu căutarea „{$searchQuery}”." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"S-au găsit {$number} rezultate care să coincidă cu căutarea „{$searchQuery}”." + +msgid "catalog.category.heading" +msgstr "Toate cărțile" + +msgid "catalog.newReleases" +msgstr "Articole noi" + +msgid "catalog.dateAdded" +msgstr "Adăugate" + +msgid "catalog.publicationInfo" +msgstr "Informații despre publicare" + +msgid "catalog.published" +msgstr "Publicat" + +msgid "catalog.forthcoming" +msgstr "În curând" + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Pași de preinstalare" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

        1. Următoarele fișiere și directoare (și conținutul lor) trebuie să fie " +"inscriptibile:

        \n" +"
          \n" +"\t
        • config.inc.php este inscriptibil (opțional): " +"{$writable_config}
        • \n" +"\t
        • public/ este inscriptibil: {$writable_public}
        • \n" +"\t
        • cache/ este inscriptibil: {$writable_cache}
        • \n" +"\t
        • cache/t_cache/ este inscriptibil: " +"{$writable_templates_cache}
        • \n" +"\t
        • cache/t_compile/ este inscriptibil: " +"{$writable_templates_compile}
        • \n" +"\t
        • cache/_db este inscriptibil: {$writable_db_cache}
        • \n" +"
        \n" +"\n" +"

        2. Un director pentru a stoca fișierele încărcate trebuie să fie creat și " +"făcut inscriptibil (a se vedea \"Setări fișier\" de mai jos).

        " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Pentru asistență Unicode completă, PHP trebuie să fie compilat în " +"compatibilitate cu biblioteca
        mbstring (activată din fabrică în cele mai recente " +"instalări ale PHP). Este posibil să întâlniți probleme atunci când folosiți " +"grupuri mari de caractere dacă server-ul dumneavoastră nu respectă " +"următoarele cerințe.\n" +"

        \n" +"Server-ul dumneavoastră este momentan compatibil cu mbstring: " +"{$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Server-ul dumneavoastră acceptă momentan încărcări de fișiere: " +"{$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Server-ul dumneavoastră acceptă momentan o dimensiune maximă de încărcare de " +"fișiere de: {$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Limba principală de folosit pentru acest sistem. Vă rugăm consultați " +"documentarea OMP dacă doriți să oferiți asistență cu alte limbi care nu apar " +"în această listă." + +msgid "installer.filesDirInstructions" +msgstr "" +"Introduceți ruta completă către un director unde se vor salva fișierele " +"încărcate. Acest director nu ar trebui să fie accesibil în mod direct prin " +"web. Vă rugăm să vă asigurați că acest director există și este " +"inscriptibil conform instalării. Numele rutelor Windows ar trebui " +"să folosească bară oblică, de exemplu „C:/mypress/files”." + +msgid "installer.upgradeApplication" +msgstr "Actualizați Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

        IMPORTANT!

        \n" +"

        Instalatorul nu a putut suprascrie automat fișierul de configurare. " +"Înainte de a încerca să utilizați sistemul, vă rugăm să deschideți config" +".inc.php într-un editor de text adecvat și să înlocuiți conținutul " +"acestuia cu conținutul câmpului text de mai jos.

        " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Data scadentă pentru tura {$round} de revizii de propuneri {$submissionId} " +"de {$reviewerName} a fost setată la {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} a respins revizia pentru propunerea {$submissionId} din tura " +"{$round}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} a acceptat tura {$round} de revizii pentru propuneri " +"{$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} a marcat tura {$round} de revizii pentru propuneri " +"{$submissionId} ca neconsiderată." + +msgid "log.editor.decision" +msgstr "" +"Decizia unui editor ({$decision}) pentru monografia {$submissionId} a fost " +"înregistrată de {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"Recomandarea unui editor ({$decision}) pentru monografia {$submissionId} a " +"fost înregistrată de {$editorName}." + +msgid "log.editor.archived" +msgstr "Propunerea {$submissionId} a fost arhivată." + +msgid "log.editor.restored" +msgstr "Propunerea {$submissionId} a fost restaurată la listă." + +msgid "log.editor.editorAssigned" +msgstr "" +"{$submissionId} a fost atribuit ca editor pentru propunerea {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} a atribuit {$proofreaderName} pentru a face proofreading " +"propunerii {$submissionId}." + +msgid "log.imported" +msgstr "{$userName} a importat monografia {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Cod de identificare adăugat." + +msgid "notification.editedIdentificationCode" +msgstr "Cod de identificare editat." + +msgid "notification.addedPublicationDate" +msgstr "Dată pentru publicare adăugată." + +msgid "notification.editedPublicationDate" +msgstr "Dată pentru publicare editată." + +msgid "notification.removedPublicationDate" +msgstr "Dată pentru publicare eliminată." + +msgid "notification.addedPublicationFormat" +msgstr "Formatare de publicare adăugată." + +msgid "notification.editedPublicationFormat" +msgstr "Formatare de publicare editată." + +msgid "notification.addedSalesRights" +msgstr "Drepturi de vânzări adăugate." + +msgid "notification.editedSalesRights" +msgstr "Drepturi de vânzări editate." + +msgid "notification.removedSalesRights" +msgstr "Drepturi de vânzări eliminate." + +msgid "notification.addedRepresentative" +msgstr "Reprezentant adăugat." + +msgid "notification.editedRepresentative" +msgstr "Reprezentant editat." + +msgid "notification.removedRepresentative" +msgstr "Reprezentant eliminat." + +msgid "notification.addedMarket" +msgstr "Magazin adăugat." + +msgid "notification.removedMarket" +msgstr "Magazin eliminat." + +msgid "notification.addedSpotlight" +msgstr "Evidențiere adăugată." + +msgid "notification.editedSpotlight" +msgstr "Evidențiere editată." + +msgid "notification.removedSpotlight" +msgstr "Evidențiere eliminată." + +msgid "notification.savedCatalogMetadata" +msgstr "Catalog de metadate salvat." + +msgid "notification.proofsApproved" +msgstr "Revizii aprobate." + +msgid "notification.removedSubmission" +msgstr "Propunere eliminată." + +msgid "notification.type.submissionSubmitted" +msgstr "O nouă monografie „{$title}” a fost trimisă." + +msgid "notification.type.editing" +msgstr "Editare evenimente" + +msgid "notification.type.reviewing" +msgstr "Revizie evenimente" + +msgid "notification.type.site" +msgstr "Evenimente pe website" + +msgid "notification.type.submissions" +msgstr "Evenimente de propuneri" + +msgid "notification.type.public" +msgstr "Anunțuri publice" + +msgid "notification.type.editorAssignmentTask" +msgstr "" +"S-a realizat o propunere pentru o monografie pentru care este necesar să i " +"se atribuie un editor." + +msgid "notification.type.layouteditorRequest" +msgstr "Vă rugăm să revizuiți aspectul pentru „{$title}”." + +msgid "notification.type.indexRequest" +msgstr "Vă rugăm să creați un index pentru „{$title}”." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Procesul de revizie internă a început." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Aprobare în așteptare." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Monografia nu va apărea în catalog până când aceasta nu va fi publicată. " +"Pentru a adăuga această carte la catalog, clichează pe fila Publicații." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Nicio metodă de plată nu a fost configurată." + +msgid "notification.type.visitCatalogTitle" +msgstr "Gestionarea Catalogului" + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Accesul dumneavoastră a fost respins pentru că se pare că nu sunteți un " +"revizor valid pentru această monografie." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Accesul dumneavoastră a fost respins pentru că se pare că nu sunteți un " +"revizor atribuit acestei monografii." + +msgid "user.authorization.monographFile" +msgstr "Accesul dumneavoastră a fost respins pentru acest fișier monografic." + +msgid "user.authorization.invalidMonograph" +msgstr "Monografie invalidă sau nesolicitată!" + +msgid "user.authorization.noContext" +msgstr "" +"Nicio editură nu a fost găsită care să corespundă cerinței dumneavoastră." + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Încercați să accesați o monografie care nu face parte din seria " +"dumneavoastră." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Acces respins! Nu ați fost atribuit acestui stagiu de flux de muncă." + +msgid "payment.directSales" +msgstr "Descarcă din Website-ul Editurii" + +msgid "payment.directSales.price" +msgstr "Preț" + +msgid "payment.directSales.availability" +msgstr "Valabilitate" + +msgid "payment.directSales.catalog" +msgstr "Catalog" + +msgid "payment.directSales.approved" +msgstr "Aprobat" + +msgid "payment.directSales.priceCurrency" +msgstr "Preț ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "" +"Prețurile trebuie să conțină numai numere. Nu includeți simboluri valutare." + +msgid "payment.directSales.directSales" +msgstr "Vânzări directe" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Nu este disponibil" + +msgid "payment.directSales.notSet" +msgstr "Nesetat" + +msgid "payment.directSales.openAccess" +msgstr "Acces deschis" + +msgid "payment.directSales.validPriceRequired" +msgstr "Un preț numeric valid este necesar." + +msgid "payment.directSales.purchase" +msgstr "Achiziționați {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Descărcați {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Achiziționați monografia sau descărcați capitolul" + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Fișierul de atribuire a ajutorului XML {$filename} a fost reîncărcat pentru " +"{$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Carte" + +msgid "submission.pdf.download" +msgstr "Descărcați acest fișier PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Înregistrați-vă cu alte edituri" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Ascundeți alte edituri" + +msgid "submission.round" +msgstr "Tura {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "O propunere publicată invalidă a fost specificată." + +msgid "catalog.coverImageTitle" +msgstr "Imagine de copertă" + +msgid "grid.catalogEntry.chapters" +msgstr "Capitole" + +msgid "search.results.orderBy.article" +msgstr "Titlul articolului" + +msgid "search.results.orderDir.desc" +msgstr "Descendent" + +msgid "section.section" +msgstr "Colecție" + +msgid "search.cli.rebuildIndex.indexing" +msgstr "Se indexează „{$pressName}”" + +msgid "search.cli.rebuildIndex.indexingByPressNotSupported" +msgstr "Această implementare de căutări nu acceptă reindexare pe publicare." + +msgid "search.results.orderBy.author" +msgstr "Autor" + +msgid "search.results.orderBy.date" +msgstr "Data publicării" + +msgid "search.results.orderBy.monograph" +msgstr "Titlul monografiei" + +msgid "search.results.orderBy.press" +msgstr "Numele editurii" + +msgid "search.results.orderBy.popularityAll" +msgstr "Popularitate (All Time)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Popularitate (luna trecută)" + +msgid "search.results.orderBy.relevance" +msgstr "Relevanță" + +msgid "search.results.orderDir.asc" +msgstr "Ascendent" + +msgid "search.cli.rebuildIndex.unknownPress" +msgstr "" +"Noua rută de publicare „{$pressPath}” nu a putut fi rezolvată într-o " +"publicație." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Selectați orice limbă adițională pentru ca acest sistem să o poată " +"recunoaște. Aceste limbi vor fi disponibile pentru publicările website-ului. " +"De asemenea, în orice moment se pot instala alte limbi prin accesarea " +"interfeței administrării website-ului. Locațiile marcate cu * pot fi " +"incomplete." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP necesită acces la baza de date SQL pentru a-și stoca datele. Vezi " +"cerințele de sistem de mai sus pentru o listă de baze de date care sunt " +"suportate. Stabiliți setările care se vor utiliza pentru a vă conecta la " +"baza de date din următoarele câmpuri." + +msgid "installer.installationComplete" +msgstr "" +"

        Instalarea OMP a fost realizată cu succes.

        \n" +"

        Pentru a începe să folosiți sistemul, autentificați-vă cu numele de utilizator și parola introduse în pagina " +"anterioară.

        \n" +"

        Vizitați comunitatea " +"noastră de pe forum sau înscrieți-vă la newsletter-ul nostru de dezvoltare a " +"sistemului pentru a primi notificări despre securitate și noutăți despre " +"noi versiuni, plugin-uri sau noi caracteristici.

        " + +msgid "installer.upgradeComplete" +msgstr "" +"

        Actualizarea OMP la noua versiune {$version} a fost realizată cu " +"succes.

        \n" +"

        Nu uita să selectezi setarea „instalat” în fișierul de configurare " +"config.inc.php înapoi la On.

        \n" +"

        Vizitați comunitatea " +"noastră de pe forum sau înscrieți-vă la newsletter-ul nostru de dezvoltare a " +"sistemului pentru a primi notificări despre securitate și noutăți despre " +"noi versiuni, plugin-uri sau noi caracteristici.

        " + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} a trimis {$submissionId} pentru programarea sa." + +msgid "notification.removedPublicationFormat" +msgstr "Formatare de publicare eliminată." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Formatare de publicare a metadatelor salvat." + +msgid "notification.type.approveSubmission" +msgstr "" +"Această propunere este momentan în așteptare pentru a fi aprobată în " +"instrumentul de Intrare în catalog înainte să apară în catalogul public." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"O metodă de plată configurată este necesară înainte de definirea setărilor " +"de comerț electronic." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Acces respins! Grupul de lucru sub care activați nu a fost atribuit acestui " +"stagiu de flux de muncă. Vă rugăm să vă verificați setările publicării." + +msgid "notification.removedIdentificationCode" +msgstr "Cod de identificare eliminat." + +msgid "notification.editedMarket" +msgstr "Magazin editat." + +msgid "notification.type.userComment" +msgstr "Un cititor a comentat la „{$title}”." + +msgid "notification.type.visitCatalog" +msgstr "" +"Monografia a fost aprobată. Vă rugăm vizitați Marketing și Publicații pentru " +"a gestiona detaliile catalogului folosind linkul de mai jos." + +msgid "payment.directSales.price.description" +msgstr "" +"Formatele de fișiere pot fi puse disponibile pentru descărcare de pe website-" +"ul publiclației prin acces deschis, fără costuri pentru cititori sau vânzări " +"directe (folosind un procesor de plată online, configurat în Distribuție). " +"Pentru acest fișier indicați baza de acces." + +msgid "payment.directSales.monograph.description" +msgstr "" +"Această tranzacție este pentru achiziționarea unei descărcări directe a unei " +"singure monografii sau a capitolului unei monografii." + +msgid "notification.type.copyeditorRequest" +msgstr "Vă rugăm revizuiți corecturile pentru „{$file}”." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Accesul dumneavoastră a fost respins pentru că se pare că nu sunteți autorul " +"acestei monografii." + +msgid "installer.upgradeInstructions" +msgstr "" +"

        Versiunea OMP {$version}

        \n" +"\n" +"

        Vă mulțumim pentru că ați descărcat Open Monograph Press " +"de Public Knowledge Project. Înainte de a continua, vă rugăm citiți " +"fișierele README și UPGRADE care sunt incluse în software. " +"Pentru mai multe informații despre Public Knowledge Project și proiectele " +"sale software, vă rugăm vizitați website-ul PKP. Dacă aveți rapoarte de erori sau întrebări " +"referitoare la asistența tehnică a Open Monograph Press, vizitați forumul de asistență sau " +"sistemul de rapoarte de erori online PKP. Cu toate că forumul de asistență este " +"metoda preferată de contact, puteți de asemenea să contactați echipa printr-" +"un email la pkp.contact@gmail." +"com.\n" +"

        \n" +"

        Este foarterecomandat să faceți o copie de siguranță a " +"bazei de date, a directorului de fișiere și a directorului de instalare OMP " +"înainte de a continua.

        " diff --git a/locale/ro/manager.po b/locale/ro/manager.po new file mode 100644 index 00000000000..6eb70508b23 --- /dev/null +++ b/locale/ro/manager.po @@ -0,0 +1,1711 @@ +# Malina-Giorgiana Zaharia , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-15 01:23+0000\n" +"Last-Translator: Malina-Giorgiana Zaharia \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Aceasta va fi limba prestabilită pentru site-ul editurii." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Vă rog să vă asigurați că cel puțin una dintre căsuțe pentru fiecare sarcină " +"a editorului de serie este bifată." + +msgid "manager.series.indexed" +msgstr "Indexat" + +msgid "manager.series.open" +msgstr "Propuneri deschise" + +msgid "manager.series.readingTools" +msgstr "Instrumente de lectură" + +msgid "manager.series.submissionReview" +msgstr "Nu va fi revizat pe perechi" + +msgid "manager.series.submissionIndexing" +msgstr "Nu va fi inclus în indexarea editurii" + +msgid "manager.series.editorRestriction" +msgstr "Elemente care pot fi trimise doar de către editori sau editori serie." + +msgid "manager.series.confirmDelete" +msgstr "Sunteți sigur că vreți să ștergeți definitiv această serie?" + +msgid "manager.series.submissionsToThisSection" +msgstr "Propuneri făcute pentru această serie" + +msgid "manager.series.assigned" +msgstr "Editori pentru această serie" + +msgid "manager.series.hideAbout" +msgstr "Omiteți această serie din secțiunea Despre editură." + +msgid "manager.series.unassigned" +msgstr "Editori de serie disponibili" + +msgid "manager.series.form.abbrevRequired" +msgstr "Un titlu abreviat este necesar pentru această serie." + +msgid "manager.series.form.titleRequired" +msgstr "Un titlu este necesar pentru această serie." + +msgid "manager.series.noneCreated" +msgstr "Nu a fost creată nicio serie." + +msgid "manager.series.existingUsers" +msgstr "Utilizatori existenți" + +msgid "manager.series.seriesTitle" +msgstr "Titlul seriei" + +msgid "manager.series.restricted" +msgstr "Nu permite autorilor să se înscrie direct la această serie." + +msgid "manager.sections.alertDelete" +msgstr "" +"Înainte ca această serie să poată fi ștearsă, trebuie să muți cererile " +"asociate acestei serii spre altă serie." + +msgid "manager.payment.generalOptions" +msgstr "Opțiuni generale" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Plățile vor fi posibile pentru această publicație. Ține cont că ți se va " +"cere să te conectezi pentru a realiza plăți." + +msgid "manager.payment.success" +msgstr "Setările plății au fost actualizate." + +msgid "manager.settings" +msgstr "Setări" + +msgid "manager.settings.pressSettings" +msgstr "Setările editurii" + +msgid "manager.settings.press" +msgstr "Editură" + +msgid "manager.settings.publisher.identity" +msgstr "Identitatea editurii" + +msgid "manager.settings.publisher" +msgstr "Numele editurii" + +msgid "manager.settings.location" +msgstr "Locație geografică" + +msgid "manager.settings.publisherCode" +msgstr "Codul editurii" + +msgid "manager.settings.publisherCodeType" +msgstr "Tipul de cod al editurii" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Acesta nu este un tip de cod al editurii valid." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Toate setările specifice procesului de distribuire (notificare, indexare, " +"arhivare, plată, unelte de lectură)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Descărcări ale fișierelor monografe" + +msgid "manager.series.abstractsNotRequired" +msgstr "Nu sunt necesare rezumate" + +msgid "manager.series.disableComments" +msgstr "Dezactivați comentariile cititorilor pentru această serie." + +msgid "manager.series.book" +msgstr "Serie de cărți" + +msgid "manager.series.create" +msgstr "Crează serie" + +msgid "manager.series.policy" +msgstr "Descrierea seriei" + +msgid "user.authorization.pluginLevel" +msgstr "Nu aveți privilegii suficiente pentru a gestiona acest plugin." + +msgid "manager.pressManagement" +msgstr "Gestionarea editurii" + +msgid "manager.setup" +msgstr "Configurație" + +msgid "manager.setup.aboutItemContent" +msgstr "Cuprins" + +msgid "manager.users.selectRole" +msgstr "Selectează funcția" + +msgid "manager.people.allEnrolledUsers" +msgstr "Utilizatori înscriși la editură" + +msgid "manager.people.allPresses" +msgstr "Toate editurile" + +msgid "manager.people.allUsers" +msgstr "Toți utilizatorii înscriși" + +msgid "manager.people.enrollExistingUser" +msgstr "Înscrie un utilizator existent" + +msgid "manager.people.enrollSyncPress" +msgstr "Cu editura" + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Selectează un utilizator căruia să îi atribui drepturile de autor, sarcinile " +"de editare, etc." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Sincronizarea înscrierii va pune pe listă toți utilizatorii înscriși în " +"rolul editurii pentru același rol al editurii. Această funcție permite unui " +"grup comun de utilizatori ( ex., revizori) să fie sincronizați între edituri." + +msgid "manager.people.confirmDisable" +msgstr "" +"Blocați acest utilizator? Aceasta nu îi va permite utilizatorului să se " +"conecteze la sistem.\n" +"\n" +"Opțional, poți să îi oferi utilizatorului un motiv pentru această decizie." + +msgid "manager.system" +msgstr "Setări ale sistemului" + +msgid "manager.system.archiving" +msgstr "Arhivare" + +msgid "manager.system.reviewForms" +msgstr "Formate de revizie" + +msgid "manager.system.readingTools" +msgstr "Instrumente de lectură" + +msgid "manager.system.payments" +msgstr "Modalități de plată" + +msgid "manager.setup.addAboutItem" +msgstr "Adaugă Despre articol" + +msgid "manager.setup.addChecklistItem" +msgstr "Adaugă element de pe lista de verificare" + +msgid "manager.setup.addItem" +msgstr "Adaugă articol" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Adaugă un articol care să apară în secțiunea „Despre editură”" + +msgid "manager.setup.addNavItem" +msgstr "Adaugă articol" + +msgid "manager.setup.addSponsor" +msgstr "Adaugă organizația sponsor" + +msgid "manager.setup.announcements" +msgstr "Anunțuri" + +msgid "manager.setup.announcements.success" +msgstr "Setările anunțurilor au fost actualizate." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Anunțurile pot fi publicate pentru a informa cititorii cu privire la știri " +"sau evenimente legate de editură. Anunțurile publicate vor apărea pe pagina " +"de Anunțuri." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Informații suplimentare" + +msgid "manager.setup.appearInAboutPress" +msgstr "(Va apărea în secțiunea Despre editură) " + +msgid "manager.setup.contextAbout" +msgstr "Despre editură" + +msgid "manager.setup.contextSummary" +msgstr "Rezumatul publicației" + +msgid "manager.setup.copyediting" +msgstr "Editori ai textului original" + +msgid "manager.setup.copyeditInstructions" +msgstr "Instrucțiuni pentru editori ai textului original" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Acesta va înlocui oricare setare locală de publicare specifică configurației " +"locale" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Adăgați un editor pentru această serie din editorii disponibili. Odată " +"adăugat, stabiliți dacă editorul seriei va supraveghea revizia (revizie în " +"grup) și/sau EDITAREA (revizuirea formatării, aranjare în pagină și " +"corectare) cererilor pentru această serie. Editorii seriei sunt creați prin " +"a apăsa pe Editori serie sub opțiunea " +"Roluri în Managementul Publicației." + +msgid "manager.languages.noneAvailable" +msgstr "" +"Ne cerem iertare, dar nu sunt disponibile și alte limbi. Contactează " +"administratorul site-ului dacă dorești să utilizezi limbaje adiționale " +"pentru această publicație." + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Aceste câmpuri sunt obligatorii pentru a publica metadate ONIX." + +msgid "manager.series.form.reviewFormId" +msgstr "Vă rog să vă asigurați că ați ales o formă de revizie corectă." + +msgid "manager.people.allSiteUsers" +msgstr "Înscrie un utilizator de pe acest site la editură" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Selectează un utilizator pentru a-l asocia cu un alt cont ( de ex., atunci " +"când cineva are două conturi de utilizator). Contul selectat prima dată va " +"fi șters, iar depunerile de documente, sarcinile etc. vor fi atribuite celui " +"de-al doilea cont." + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Include orice informație despre editura ta care ar putea fi de interes " +"pentru cititori, autori sau revizori. Aceasta ar putea include politica ta " +"de acces deschis, obiectivul și scopul editurii, dezvăluirea sponsorilor sau " +"istoria editurii." + +msgid "manager.people.confirmRemove" +msgstr "" +"Doriți să eliminați acest utilizator din această editură? Această acțiune va " +"elimina utilizatorul din toate rolurile în această editură." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Ne pare rău, dar nu ai drepturi administrative asupra acestui utilizator. " +"Aceasta poate fi deoarece:\n" +"\t\t
          \n" +"\t\t\t
        • Utilizatorul este administrator al site-ului
        • \n" +"\t\t\t
        • Utilizatorul este activ la edituri pe care nu le gestionezi
        • \n" +"\t\t
        \n" +"\tAceastă sarcină trebuie dusă la îndeplinire de către administratorul site-" +"ului.\n" +"\t" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Introduceți informații suplimentare care ar trebui să le apară cititorilor " +"pe pagina de Anunțuri." + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Vizualizare pagină de rezumat a monografiei" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Rezumat al monografiei și descărcări" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Vizualizări ale paginiii principale ale seriei" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Vizualizări pagina principală a editurii" + +msgid "manager.tools" +msgstr "Instrumente" + +msgid "manager.tools.importExport" +msgstr "" +"Toate instrumentele specifice importării și exportării de date (edituri, " +"monografii, utilizatori)" + +msgid "manager.tools.statistics" +msgstr "" +"Instrumente pentru generarea rapoartelor legate de statistici de utilizare (" +"vizualizări pagină indexului catalogului, vizualizări pagină rezumat " +"monografie, descărcări fișiere monografie)" + +msgid "manager.users.availableRoles" +msgstr "Funcții disponibile" + +msgid "manager.users.currentRoles" +msgstr "Funcții curente" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Instrucțiuni de corectare a textului vor fi disponibile pentru revizori, " +"autori și editori de secțiuni în stagiul de editare al articolului. Mai jos " +"este un set automat de instrucțiuni în HTML, care pot fi modificate sau " +"înlocuite de managerul editurii în orice moment ( în HTML sau în text " +"simplu)." + +msgid "manager.setup.copyrightNotice" +msgstr "Notificare privind dreptul de autor" + +msgid "manager.setup.coverage" +msgstr "Raport" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Înălțimea maximă a imaginii de copertă" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Lățimea maximă a imaginii de copertă" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Imaginile vor fi reduse când sunt mai mari decât această mărime, dar nu vor " +"fi niciodată lățite sau îngustate pentru a se încadra în aceste dimensiuni." + +msgid "manager.setup.customizingTheLook" +msgstr "Pasul 5. Personalizarea aspectului și a stilului" + +msgid "manager.setup.customTags" +msgstr "Etichete personalizate" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Etichete HTML de antet personalizate pentru a fi inserate în antetul " +"fiecărei pagini ( de ex., etichete META)." + +msgid "manager.setup.details" +msgstr "Detalii" + +msgid "manager.setup.details.description" +msgstr "Numele editurii, contactelor, sponsorilor și al motoarelor de căutare." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Managerul editurii va înregistra toate conturile de utilizatori. Editorii " +"sau editorii secțiunii poate înregistra conturi de utilizatori pentru " +"revizori." + +msgid "manager.setup.discipline" +msgstr "Discipline și sub-disciplinei academice" + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(De ex., Istorie; educație; Sociologie; Psihologie; Studii culturale; Drept)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "Oferă exemple de discipline academice relevante pentru această editură" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Adaugă cuprinsul pentru monografia curentă (dacă e disponibil)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Cuprinsul paginii Acasă" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Cărți recomandate" + +msgid "manager.setup.displayInSpotlight" +msgstr "Arată cărți evidențiate pe pagina principală" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Centru al atenției" + +msgid "manager.setup.displayNewReleases" +msgstr "Arată lansări noi pe pagina principală" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Noi lansări" + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Utilizează modele implicite.
        %p.%m pentru monografii
        %p.%m.c%c " +"pentru capitole
        %p.%m.%f pentru formate de publicare
        %p.%m.%f.%s " +"pentru fișiere." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "La atingerea stadiului de revizie" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Formatul / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Decizia editorului" + +msgid "manager.setup.emailBounceAddress" +msgstr "Adresă de respingere" + +msgid "manager.setup.emails" +msgstr "Identificarea emailului" + +msgid "manager.setup.emailSignature" +msgstr "Semnătura" + +msgid "manager.setup.emailSignature.description" +msgstr "" +"Emailurile trimise automat din partea editurii vor avea următoarea semnătură " +"adăugată." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Permite anunțuri" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Anunțurile pot fi publicate pentru a informa cititorii cu privire la noutăți " +"sau evenimente, Anunțurile publicate vor apărea pe pagina de Anunțuri." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Arată pe pagina principală" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Numărul anunțurilor care apar pe pagina principală. Lasă acest spațiu liber " +"pentru a nu arăta niciunul." + +msgid "manager.setup.enablePressInstructions" +msgstr "Permite editurii să apară public pe site" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Numerele DOI personalizate vor fi folosite pentru a identifica elementele " +"publicate." + +msgid "manager.setup.enableUserRegistration" +msgstr "Vizitatorii pot să se înregistreze cu un cont de utilizator." + +msgid "manager.setup.focusAndScope" +msgstr "Punctul central și scopul editurii" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Informează autorii, cititorii și bibliotecarii cu privire la variabilitatea " +"de monografii și alte elemente pe care editura le va publica." + +msgid "manager.setup.focusScope" +msgstr "Punct central și scop" + +msgid "manager.setup.focusScopeDescription" +msgstr "EXEMPLU DE DATE HTML" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Pentru ca autorii să își indexeze scrierile" + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Adresa de email de contact principală este necesară." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Numele de contact principal este necesar." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Numărul de revizori per cerere este necesar." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Adresa de email alternativă este necesară." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Numele alternativ este necesar." + +msgid "manager.setup.generalInformation" +msgstr "Informație generală" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Pasul 1. Oferirea detaliilor" + +msgid "manager.setup.guidelines" +msgstr "Instrucțiuni" + +msgid "manager.setup.preparingWorkflow" +msgstr "Pasul 3. Pregătirea fluxului de lucru" + +msgid "manager.setup.identity" +msgstr "Identitate media" + +msgid "manager.setup.information" +msgstr "Informație" + +msgid "manager.setup.information.description" +msgstr "" +"Descrieri sumare ale editurii pentru bibliotecari și potențiali autori și " +"cititori. Acestea sunt disponibile în bara laterală a site-ului atunci când " +"secțiunea „Informații” a fost adăugată." + +msgid "manager.setup.information.forAuthors" +msgstr "Pentru autori" + +msgid "manager.setup.information.forLibrarians" +msgstr "Pentru biblotecari" + +msgid "manager.setup.information.forReaders" +msgstr "Pentru cititori" + +msgid "manager.setup.information.success" +msgstr "Informația cu privire la această editură a fost actualizată." + +msgid "manager.setup.institution" +msgstr "Instituția" + +msgid "manager.setup.itemsPerPage" +msgstr "Elemente per pagină" + +msgid "manager.setup.keyInfo" +msgstr "Informație cheie" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Oferă o descriere sumară a editurii tale și idenfică editorii, directorii " +"manageri și alți membri ai echipei tale editoriale." + +msgid "manager.setup.labelName" +msgstr "Denumirea mărcii" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Editori grafici" + +msgid "manager.setup.layoutInstructions" +msgstr "Instrucțiuni grafice" + +msgid "manager.setup.layoutTemplates" +msgstr "Șabloane grafice" + +msgid "manager.setup.layoutTemplates.file" +msgstr "Model de fișier" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Titlu" + +msgid "manager.setup.lists" +msgstr "Liste" + +msgid "manager.setup.lists.success" +msgstr "Setările din listă au fost actualizate." + +msgid "manager.setup.look" +msgstr "Aspect și stil" + +msgid "manager.setup.look.description" +msgstr "" +"Antet pagină principală, cuprins, antet editură, subsol, bară de navigare și " +"fișă de stil." + +msgid "manager.setup.settings" +msgstr "Setări" + +msgid "manager.setup.management.description" +msgstr "" +"Acces și securitate, planificare, anunțuri, corectare, grafică și corectori." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Managementul pașilor de bază ale editurii" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Managementul și configurația publicației" + +msgid "manager.setup.managingThePress" +msgstr "Pasul 4. Gestionarea setărilor" + +msgid "manager.setup.masthead.success" +msgstr "Detaliile redacționale ale editurii au fost actualizate." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Pentru a trimite emailuri care nu pot fi trimise la o adresă de respingere, " +"administratorului site-ului trebuie să permită opțiunea " +"allow_envelope_sender în fișierul de configurație al site-ului. " +"Configurația serverului poate fi solicitată, așa cum este indicat în " +"documentația OMP." + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP îndeplinește protocolul pentru colectarea metadatelor al inițiativei arhivelor deschise , care este standardul emergent pentru obținerea accesului bine indexat " +"la resurse de căutare electronică la o scală globală. Autorii vor folosi un " +"șablon similar pentru a oferi metadate pentru cererea lor. Managerul " +"editurii trebuie să selecteze categorii pentru indexare și prezintă autorii, " +"oferind exemple relevante pentru a-i susține în indexarea scrierilor lor, " +"separând termenii prin punc și virgulă (de ex., term1; term2). Intrările " +"trebuie să fie introduse ca exemple folosind „Ex.” sau „De ex.,”." + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Limitează numărul de elemente ( de exemplu, cereri, utilizatori sau sarcini " +"de editare) pentru a într-o listă înainte de arăta elementele car vor apărea " +"pe altă pagină." + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Util atunci când editura depășește bariere disciplinare și/sau autorii " +"prezintă elemente multidisciplinare." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Numerele DOI personalizate vor fi folosite pentru a identifica fișiere ( de " +"ex. fișiere HTML sau PDF) pentru articole publicate." + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Arată cărțile recomandate pe pagina principală" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Permite identificatorilor de obiect digital (DOI) care să fie asociate cu " +"lucrări publicate de această editură." + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Instrucțiunile grafice pot fi pregătite pentru formatarea sau publicarea " +"articolelor la editură și pot fi introduse în HTML sau text simplu. Ele vor " +"fi disponibile în secțiunea Editor grafic și Editor secție, pe pagina de " +"editare a fiecărei cereri. (deoarece fiecare editură poate utiliza propriile " +"formate de fișiere, standarde bibliografice, fișe de stil, etc., un set " +"standard de instrucțiuni nefiind oferit.)" + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Selectează tipurile de lucrări publicate de această editură cărora să li se " +"asocieze un număr DOI. Cele mai multe edituri asociază numărul DOI " +"monografiilor/capitolelor, dar ai putea să asociezi numere DOI tuturor " +"articolelor publicate." + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Orice email care nu poate fi trimis va deveni un mesaj de eroare pentru " +"această adresă." + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Șabloanele pot fi încărcate pentru a apărea în secțiunea Grafică pentru " +"fiecare dintre formatele standard publicate la editură ( de ex., monografie, " +"recenzie de carte, etc.) folosind orice format de fișier (de ex., pdf, doc, " +"etc.) cu adnotări adăugate pentru a specifica fontul, mărimea, margini, etc. " +"pentru a servi drept ghid pentru editorii grafici și corectori." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Este un format fizic (non-digital)?" + +msgid "manager.setup.newPublicationFormat" +msgstr "Format nou de publicare" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Pentru a crea o nouă platformă de publicare, completează formularul de mai " +"jos și apasă pe butonul „Crează”." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Această editură nu acceptă cereri la acest moment. Vezi setările fluxului de " +"lucru pentru a-ți fi acceptate cererile." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Previne utilizatorii din a trimite noi articole către editură. Elementele " +"trimise pot fi dezactivate pentru serii individuale ale editurii la serie editură , din pagina de setări." + +msgid "manager.setup.genres" +msgstr "Genuri" + +msgid "manager.setup.newGenre" +msgstr "Gen nou al monografiei" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Pentru a crea un nou gen, completează formularul de mai jos și apasă pe " +"butonul „Crează”." + +msgid "manager.setup.deleteSelected" +msgstr "Selectare ștergere" + +msgid "manager.setup.restoreDefaults" +msgstr "Recuperează setări prestabilite" + +msgid "manager.setup.prospectus" +msgstr "Ghidul prospectului" + +msgid "manager.setup.submitToCategories" +msgstr "Permite elemente trimise pe categorii" + +msgid "manager.setup.submitToSeries" +msgstr "Permite articole în serie" + +msgid "manager.setup.currentFormats" +msgstr "Formatări curente" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Categorii și serii" + +msgid "manager.setup.series.description" +msgstr "" +"Poți crea orice număr de serie pentru a te ajuta în organizare publicațiilor " +"tale. O serie reprezintă un set special de cărți aparținătoare unei teme sau " +"subiect pe care cineva le-a propus, de regulă un membru sau doi ai " +"facultății, iar apoi le supraveghează. Vizitatorii vor putea să caute pe " +"site-ul editurii pornind de la serie." + +msgid "manager.setup.reviewForms" +msgstr "Formulare de revizie" + +msgid "manager.setup.roleType" +msgstr "Tip de rol" + +msgid "manager.setup.authorRoles" +msgstr "Roluri ale autorului" + +msgid "manager.setup.managerialRoles" +msgstr "Roluri de gestionare" + +msgid "manager.setup.availableRoles" +msgstr "Funcții disponibile" + +msgid "manager.setup.currentRoles" +msgstr "Funcții curente" + +msgid "manager.setup.internalReviewRoles" +msgstr "Roluri ale reviziei interne" + +msgid "manager.setup.masthead" +msgstr "Titlu editură" + +msgid "manager.setup.editorialTeam" +msgstr "Echipă editorială" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Listă de editori, directori manageri și alte persoane asociate editurii." + +msgid "manager.setup.files" +msgstr "Fișiere" + +msgid "manager.setup.productionTemplates" +msgstr "Producție de șabloane" + +msgid "manager.files.note" +msgstr "" +"Notă: Navigatorul fișierelor este o funcție avansată care permite fișierelor " +"și cataloagelor asociate cu editura să fie vizualizate și manipulate direct." + +msgid "plugins.importexport.common.error.validation" +msgstr "Obiectele selectate nu au putut fi convertite." + +msgid "plugins.importexport.common.invalidXML" +msgstr "XML invalid:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Exportă articole" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.disabled.description" +msgstr "" +"Niciun contact principal nu a fost definit de această editură. Poți accesa " +"un contact primar la setările editurii." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Obiectele specificate nu au putut fi găsite." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "Utilizatorul specificat, „{$userName}”, nu există." + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Procesul a eșuat în analizarea capitolelor" + +msgid "emailTemplate.variable.context.contextName" +msgstr "Nume edituriă" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "URL-ul paginii principale a editurii" + +msgid "emailTemplate.variable.context.contactName" +msgstr "Numele contactului principal al editurii" + +msgid "emailTemplate.variable.context.contextAcronym" +msgstr "Inițialele editurii" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "Adresa de email pentru contactul principal al editurii" + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "Adresa poștală a editurii" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "Numele tipului de plată" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Suma de plată" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "Moneda sumei de plată, precum USD" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "Link-ul către pagina de statistici ale cărților" + +msgid "mailable.validateEmailContext.name" +msgstr "Validează emailul (înregistrarea pe site-ul editurii)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Acest email este trimis automat unui nou utilizator când se înregistrează pe " +"site-ul edituii și când setările cer ca adresa de email să fie validată." + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "Numere DOI" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Ghidul prospectului este un document pregătit de editură care ajută autorul " +"să descrie materialele trimise într-un mod care permite unei edituri să " +"determine valoarea elementelor trimise. Un prospect poate include o mulțime " +"de elemente - de la potențial de marketing până la valoare teoretică; în " +"orice caz, o editură trebuiă să creeze un ghid al prospectului care să " +"completeze agenda lor de publicare." + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN (Numărul internațional standard de serie) este un număr cu 8 cifre care " +"identifică publicații periodice incluzând foiletoane electronice. Un număr " +"paote fi obținut de la Centrul internațional ISSN." + +msgid "manager.setup.categories.description" +msgstr "" +"Poți crea o listă de categorii care să te ajute în organizarea publicațiilor " +"tale. Categoriile sunt grupări de cărți conform tematicii, de exemplu " +"Economie, Literatură, Poezie, și așa mai departe. Categoriile pot fi " +"încorporate în categorii „părinte”: de exemplu, categoria Economie poate fi " +"o categorie „părinte” pentru categoriile Microeconomie sau Macroeconomie. " +"Vizitatorii pot să caute pe site-ul editurii pe categorii." + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Niciun obiect selectat." + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Trimite o copie a emailului de recunoaștere al elementului trimis la adresa " +"de contact principală a editurii." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Procesul a eșuat în analizarea formatelor de publicare" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "Semnătura pentru emailurile automate ale editurii" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Numele wesite-ului unde sunt găzduite mai multe editurii" + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Acest email este trimis automat lunar către editorii și managerii editurii " +"pentru a oferi o perspectivă generală asupra sănătății sistemului." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Trebuie să oferi un nume acestui format." + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Acest format de publicare nu poate fi șters deoarece este utilizat la " +"momentul actual de către o monografie în editura ta." + +msgid "manager.setup.genresDescription" +msgstr "" +"Aceste genuri se utilizează pentru numirea de fișiere și sunt prezentate " +"într-un meniu vertical în momentul încărcării fișiereor. Aceste genuri " +"desemnate ## permit utilizatorului să asocieze fișierul cu întreaga carte " +"99Z sau unui capitol specific prin număr ( de ex., 02)." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Nu s-a încărcat niciun fișier imagine." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Nu s-a încărcat nicio fișă de stil." + +msgid "manager.setup.note" +msgstr "Notă" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Când utilizezi un email pentru notificarea autorului, include adresele de " +"email ale tuturor coautorilor pentru cereri de autori multipli, și nu doar " +"utilizatorul care trimite cererea." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Corectarea va fi realizată de un editor sau editor de secție responsabil cu " +"cererea." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Un editor sau editor de secție responsabil cu cererea va pregăti fișierele " +"HTML, PDF, etc." + +msgid "manager.setup.numPageLinks" +msgstr "Linkuri pagină" + +msgid "manager.setup.onlineAccessManagement" +msgstr "Accesează conținutul editurii" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN online" + +msgid "manager.setup.policies" +msgstr "Politici" + +msgid "manager.setup.policies.description" +msgstr "" +"Obiectivul revistei, revizie pe grup, secțiuni, confidențialitate, " +"securitate și altele." + +msgid "manager.setup.privacyStatement.success" +msgstr "Declarația de confidențialitate a fost actualizată." + +msgid "manager.setup.pressDescription" +msgstr "Descrierea pe scurt a editurii" + +msgid "manager.setup.pressDescription.description" +msgstr "O descriere pe scurt a editurii tale." + +msgid "manager.setup.aboutPress" +msgstr "Despre editură" + +msgid "manager.setup.pressArchiving" +msgstr "Arhive ale publicației" + +msgid "manager.setup.homepageContent" +msgstr "Conținut pagină principală" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Pagină principală a editurii conține linkuri de navigare prestabilite. " +"Conținut adițional al paginii principale poate fi adăugat folosind una sau " +"toate opțiunile următoare, care vor apărea în ordinea descrisă." + +msgid "manager.setup.pressHomepageContent" +msgstr "Conținut pagină principală publicație" + +msgid "manager.setup.contextInitials" +msgstr "Inițiale edituriă" + +msgid "manager.setup.selectCountry" +msgstr "" +"Selectează țara în care este localizată editura sau țara adresei poștale " +"pentru editură sau editor." + +msgid "manager.setup.layout" +msgstr "Grafică editură" + +msgid "manager.setup.pageHeader" +msgstr "Antet pagină publicație" + +msgid "manager.setup.pressPolicies" +msgstr "Pasul 2. Politicile publicației" + +msgid "manager.setup.pressSetup" +msgstr "Configurație publicație" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Configurația publicației tale a fost actualizată." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Formatul fișei de stil nu este valid. Formatul acceptat este .css." + +msgid "manager.setup.pressTheme" +msgstr "Tema publicației" + +msgid "manager.setup.pressThumbnail" +msgstr "Miniatură editură" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Un logo mic sau o reprezentare a editurii care poate fi folosită în liste de " +"edituri." + +msgid "manager.setup.contextTitle" +msgstr "Nume publicație" + +msgid "manager.setup.printIssn" +msgstr "Printează ISSN" + +msgid "manager.setup.proofingInstructions" +msgstr "Instrucțiuni de corectare" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "format de publicare" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "fișier" + +msgid "doi.editor.missingParts" +msgstr "" +"Nu poți genera un DOI deoarece uneia sau mai multor părți ale șablonului DOI " +"le lipsesc date." + +msgid "doi.editor.patternNotResolved" +msgstr "DOI nu poate fi atribuit deoarece conține un șablon nerezolvat." + +msgid "doi.editor.assigned" +msgstr "DOI este atribuit acestui {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Sufixul DOI dat este deja utilizat pentru un alt element. Te rog să " +"introduci un sufix DOI unic pentru fiecare element." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Șterge" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Ești sigur că vrei să ștergi numărul DOI existent?" + +msgid "doi.editor.assignDoi" +msgstr "Atribuie DOI {$pubId} acestui {$pubObjectType}" + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"DOI {$pubId} nu poate fi atribuit deoarece conține un șablon nerezolvat." + +msgid "doi.editor.assignDoi.assigned" +msgstr "DOI {$pubId} a fost atribuit." + +msgid "doi.editor.missingPrefix" +msgstr "DOI trebuie să înceapă cu {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "DOI pentru această publicație va fi {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "Nu a fost atribuit un DOI acestei publicații." + +msgid "doi.editor.preview.chapters" +msgstr "Capitol: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Fișier: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Element" + +msgid "doi.manager.submissionDois" +msgstr "Numere DOI monografie" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Acest email notifică autorul că cererea este respinsă înainte de a fi " +"trimisă spre revizie deoarece cererea nu respectă cerințele publicării ale " +"editurii." + +msgid "manager.institutions.noContext" +msgstr "Editura acestei instituției nu poate fi găsită." + +msgid "manager.manageEmails.description" +msgstr "Editează mesajele trimise în emailuri de la această editură." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Trimite spre revizie internă" + +msgid "mailable.indexRequest.name" +msgstr "Index solicitat" + +msgid "mailable.indexComplete.name" +msgstr "Index completat" + +msgid "mailable.layoutComplete.name" +msgstr "Schițe complete" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Versiune nouă creată" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" +"Acest email notifică automat editorii desemnați când o nouă versiune a " +"cererii a fost creată." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"Acest email este trimis către managerii editurii când o nouă cerere este " +"făcută și niciun editor nu este desemnat." + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "capitol" + +msgid "doi.editor.customSuffixMissing" +msgstr "DOI nu poate fi atribuit deoarece sufixul personalizat lipsește." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Ceea ce vezi este o previzualizare a DOI. Selectează căsuța și salvează " +"forma pentru a atribui DOI." + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI nu poate fi atribuit deoarece sufixul personalizat lipsește." + +msgid "doi.editor.preview.publicationFormats" +msgstr "Format publicație: {$title}" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Acest email notifică autorul că articolul este trimis către faza de revizie " +"internă." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Un editor sau editor de secție responsabil cu cererea va verifica fișierele." + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Limitează numărul de linkuri care apar în pagini succesive într-o listă." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Componente multiple ale aspectului editurii pot fi configurate din această " +"pagină, incluzând elemente de antet și subsol, stilul și tematica editurii, " +"dar și modul în care listele de informații sunt prezentate utilizatorilor." + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Include orice informație despre editura ta care poate fi de interes pentru " +"cititori, autori sau revizori. Această poate include politica ta de acces " +"deschis, punctul central și scopul editurii, înștiințare copyright, " +"descoperirea sponsorilor, istoricul editurii, dar și o declarație de " +"confidențialitate." + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Pagina principală a editurii conține linkuri de navigare prestabilite. " +"Conținutul adițional al paginii principale poate fi adăugat folosind una sau " +"toate dintre opțiunile următoare, care vor apărea în ordinea descrisă." + +msgid "manager.setup.proofreading" +msgstr "Corectori" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Oferă instrucțiuni editorilor grafici." + +msgid "manager.setup.referenceLinking" +msgstr "Link de referință" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Instrucțiuni grafice pentru linkul de referință" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Utilizatorii trebuie să fie înregistrați și conectați pentru a vedea " +"conținutul cu acces deschis." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Utilizatorii trebuie să fie înregistrați și conectați pentru a vedea site-ul " +"publicației." + +msgid "manager.setup.reviewGuidelines" +msgstr "Instrucțiuni pentru revizie externă" + +msgid "manager.setup.reviewOptions" +msgstr "Opțiuni de revizie" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Mementouri email automate" + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Editorii vor evalua revizorii pe o scară de la 1 la 5 după fiecare revizie." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Restricționează accesul la fișier" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Revizorii vor avea acces la documentul trimis doar după ce își vor da " +"acordul să îl revizeze." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Acces revizori" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Acces revizori cu un singur clic" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" +"Include un link de securitate în invitația oferită prin email revizorilor." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Evaluare revizori" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Mementouri revizori" + +msgid "manager.setup.reviewPolicy" +msgstr "Politica de evaluare" + +msgid "manager.setup.searchEngineIndexing" +msgstr "Indexare căutări" + +msgid "manager.setup.publisher" +msgstr "Editor" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Numele organizației care va oferi publicația va apărea în secțiunea Despre " +"publicație." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Instrucțiuni pentru revizie internă" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Pentru a activa aceste opțiuni, administratorul site-ului trebuie să " +"acctiveze scheduled_tasks opțiunea în fișierul de configurație OMP. " +"Configurații suplimentare ale serverului pot fi necesare pentru a susține " +"această funcționalitate ( care se poate să nu fie posibilă pe toate " +"serverele), după cum e indicat în documentația OMP." + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Oferă o descriere sumară (50-300 caractere) a acestei publicații pe care " +"motoarele de căutare o pot arăta atunci când editura apare ca rezultat pe " +"lista de căutare." + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Intrucțiunile de corectare vor fi disponibile pentru corectori, autori, " +"editori grafici și editori de secțiuni în faza de aprobare a editării. Mai " +"jos este un set prestabilit de instrucțiuni în HTML, care pot fi editate sau " +"înlocuite de managerul editurii în orice moment (în HTML sau text simplu)." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Articolele publicației se pot publica colectiv, ca parte a unei monografii " +"cu propriul cuprins. De altfel, articole individuale pot fi publicate odată " +"ce sunt gata, prin adăugarea lor cuprinsul „curent” al volumului. Oferă " +"cititorilor, în secțiunea Despre publicație, o afirmație despre sistemul pe " +"care editura îl va utiliza și frecvența estimată a publicării." + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Oferă revizorilor externi criteriile de evaluare a conformității articolului " +"pentru publicarea la editură, care poate include instrucțiuni pentru " +"pregătirea unei revizii utile și eficiente. Revizorii vor avea oportunitatea " +"de a oferi comentarii destinate autorului și editorului, precum și " +"comentarii separate, doar pentru editor." + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Ajută motoarele de căutare, precum Google să descopere și să arate site-ul. " +"Ești încurajat să trimițiharta " +"site-ului tău." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Setările de indexare ale motorului de căutare au fost actualizate." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Secțiuni și editori de secțiuni" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Dacă nu sunt adăugate secțiuni, atunci articolele sunt trimise către " +"secțiunea Monografii în mod prestabilit.)" + +msgid "manager.setup.securitySettings" +msgstr "Acces șe setări de securitate" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Alte opțiuni legate de securitate sau acces pot fi configurate pe pagina Acces și " +"Securitate." + +msgid "manager.setup.selectEditorDescription" +msgstr "Editorul care va supraveghea procesul editoria." + +msgid "manager.setup.selectSectionDescription" +msgstr "Seriile pentru care se va considera elementul publicat." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "Arată întotdeauna linkurile fișierelor și indică accesul restricționat." + +msgid "manager.setup.siteAccess.view" +msgstr "Accesare site" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Vezi conținutul monografiei" + +msgid "manager.setup.stepsToPressSite" +msgstr "Cinci pași în configurarea unui site web al unei publicații" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(De ex., Fotosinteză, Găuri negre, Teorema celor patru culori; Teorema lui " +"Bayes)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Cuvinte-cheie" + +msgid "manager.setup.subjectProvideExamples" +msgstr "Oferă exemple de cuvinte-cheie sau tematici drept ghid pentru autori" + +msgid "manager.setup.submissionGuidelines" +msgstr "Indicații ale articolului" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Lista de verificare este obligatorie." + +msgid "manager.setup.workflow" +msgstr "Flux de lucru" + +msgid "manager.setup.submissions.description" +msgstr "" +"Indicații pentru autori, drepturi de autor și indexare (include " +"înregistrarea)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(De ex., investigație istorică, cvasi-experimental, analiză literară, sondaj/" +"interviu)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Tip (metodă/abordare)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Oferă exemple relevante de tipuri de cercetare, metode și abordări pentru " +"acest domeniu" + +msgid "manager.setup.useCopyeditors" +msgstr "Un corector va fi desemnat să lucreze la fiecare articol." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Un consiliu editorial/de revizie va fi folosit de către editură." + +msgid "manager.setup.useImageTitle" +msgstr "Imagine titlu" + +msgid "manager.setup.useStyleSheet" +msgstr "Fișa de stil a publicației" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Un editor grafic va fi desemnat să pregătească fișiere HTML, PDF, etc. " +"pentru publicația electronică." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Un corector va fi desemnat să verifice (odată cu autorii) fișierele înainte " +"de publicare." + +msgid "manager.setup.userRegistration" +msgstr "Înregistrare utilizator" + +msgid "manager.setup.useTextTitle" +msgstr "Titlu în format text" + +msgid "manager.setup.volumePerYear" +msgstr "Volume per an" + +msgid "manager.setup.publicationFormat.code" +msgstr "Format" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Trebuie ales un format." + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

        Pentru a permite cititorilor să caute versiuni are lucrării citate de un " +"autor, următoarele opțiuni sunt valabile.

        \n" +"
          \n" +"\t
        1. Adaugă un instrument de lectură

          Managerul presei " +"poate să adauge „Găsește referințe” la opțiunea Instrumente de lectură care " +"să însoțească articolul publicat, care permite cititorului să copieze titlul " +"unei referințe, iar apoi să caute baze de date academică selectate anterior " +"pentru lucrarea citată.\n" +"

        2. \n" +"\t
        3. Link-uri încorporate în Referințe

          Editorul grafic " +"poate să adauge un link la referințe care pot fi găsite online folosind " +"următoarele instrucțiuni (care se pot edita).

        4. \n" +"
        " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Pași: Listă articole > Revizie articole > Editare articole > " +"Cuprins

        \n" +"Selectează un model pentru gestionarea acestor aspecte ale procesului " +"editorial (Pentru a desemna un editor de gestiune și un editor de serie, " +"mergi la Editori în managementul publicației.)" + +msgid "manager.publication.library" +msgstr "Biblioteca publicației" + +msgid "manager.setup.resetPermissions" +msgstr "Resetează permisiuni monografie" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Ești sigur că vrei să resetezi datele de permisiune deja atașate " +"monografiilor?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Declarația drepturilor de autor și informația cu privire la licență vor fi " +"în permanență atașate conținutului publicat, asigurând că aceste date nu se " +"vor schimba în cazul unei schimbări de politici a editurii pentru noile " +"articole. Pentru a reseta informația cu privire la permisiunile păstrare, " +"apasă butonul de mai jos." + +msgid "manager.setup.resetPermissions.success" +msgstr "Permisiunile monografiei au fost resetate cu succes." + +msgid "grid.genres.title.short" +msgstr "Componenete" + +msgid "grid.genres.title" +msgstr "Componente monografie" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Trimite o copie către contactul principal, identificat în Setările " +"publicației." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Ruta seriilor admite doar litere și numere." + +msgid "grid.series.pathExists" +msgstr "Ruta seriei deja există. Te rog să introduci o rută unică." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Selectează serie" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" +"Te rog să selectezi serie la care ai dori să atașezi acest element al " +"meniului." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Selectează categoria" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" +"Te rog să selectezi cateogira ai dori să atașezi acest element din meniu." + +msgid "grid.series.urlWillBe" +msgstr "URL-ul seriei va fi: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "Statisticile editurii" + +msgid "stats.context.tooltip.text" +msgstr "" +"Numărul de vizitatori care au vizualizat pagina de indecare a editurii și a " +"catalogului." + +msgid "stats.context.tooltip.label" +msgstr "Despre statisticile editurii" + +msgid "stats.context.downloadReport.description" +msgstr "" +"Descarcă o foaie de calcul CSV/Excel cu statistici de utilizare pentru " +"editură care să corespundă următorilor parametri." + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "Număr de vizualizări pagină de indexare a editurii și a catalogului." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Descarcă din editură" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Descărcări monografii" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" +"Număr de vizualizări ale sumarului și ale descărcării de fișiere pentru " +"fiecare monografie." + +msgid "stats.publicationStats" +msgstr "Statistici monografie" + +msgid "stats.publications.details" +msgstr "Detalii monografie" + +msgid "stats.publications.none" +msgstr "" +"Nicio monografie cu statistici de utilizare care să corespundă acestor " +"parametri nu a fost găsită." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Vizualizări totale ale catalogului per dată" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Vizualizări totale ale fișierului per dată" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} din {$total} monografii" + +msgid "stats.publications.abstracts" +msgstr "Intrări catalog" + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"De exemplu, press%ppub%r poate crea un număr DOI, precum 10.1234/" +"pressESPpub100" + +msgid "doi.description" +msgstr "" +"Acest modul permite alocarea unui număr DOI monografiilor, capitolelor, " +"formatelor de publicare și fișierelor în OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Te rog să configurezi modulul DOI pentru a putea gestiona și folosi numere " +"DOI în OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Te rog să selectezi obiectele publicate care vor avea un număr DOI alocat:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monografii" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Capitole" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Formate de publicare" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Fișiere" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Prefix DOI" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "Prefixul DOI este obligatoriu și trebuie să respecte forma 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "pentru monografii" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "pentru capitole" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "pentru formate de publicare" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "pentru fișiere" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Te rog să introduci modelul de sufix DOI pentru monografii." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Te rog să introduci modelul de sufix DOI pentru capitole." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Te rog să introduci modelul de sufix DOI pentru formate de publicare." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Te rog să introduci modelul de sufix DOI pentru fișiere." + +msgid "doi.manager.settings.doiReassign" +msgstr "Reasociază numerele DOI" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Dacă schimbi configurația numărului tău DOI, numerele DOI care au fost deja " +"alocate nu vor fi afectate. Odată ce configurația numărului DOI este " +"salvată, apasă acest buton pentru a șterge toate numerele DOI existene " +"astfel încât noile setări se vor aplica tuturor obiectelor existente." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Ești sigur că dorești să ștergi toate numerele DOI existente?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "Numărul DOI trebuie să înceapă cu {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Alocă" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "monografie" + +msgid "stats.publications.downloadReport.description" +msgstr "" +"Descarcă o foaie de calcul CSV/Excel cu statistici de utilizare pentru " +"monografii care să corespundă următorilor parametri." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

        Notificări Creative Commons propuse

        \n" +"

        Politici propuse pentru edituri care oferă acces deschis

        \n" +"Autori care publică la această editură sunt de acord cu următorii termeni:\n" +"
          \n" +"\t
        1. Autorii păstrează drepturile de autor și acordă dreptul de presă la " +"prima publicare cu lucrarea licențiată simultan sub o Licență Creative " +"Commons Attribution care permite altora să dea mai departe lucrarea cu o " +"recunoaștere a autorului și a publicării inițiale la editură.
        2. \n" +"\t
        3. Autorilor li se permite să intre în serii contractuale separate, " +"adiționale pentru distribuire non-exclusivă a versiunii lucrării publicate " +"de editură (de ex., să o publice în repozitorii instituțional sau să o " +"publice într-o carte), cu o recunoaștere publicării sale inițiale la " +"editură.
        4. \n" +"\t
        5. Autorilor li se permite și sunt încurajați să își publice lucrarea " +"online (de ex., în repozitorii instituționale sau pe site-ul lor) înainte " +"sau în timpul procesului de trimitare, astfel încât să ducă la schimburi " +"productive, precum și la citări mai numeroase și mai timpurii ale lucrării " +"publicate (Vezi Efectul accesului " +"deschis).
        6. \n" +"
        \n" +"\n" +"

        Politici propuse pentru editurile care oferă acces deschis amânat

        \n" +"Autorii care publică la această editură sunt de acord cu următorii termeni: " +"\n" +"
          \n" +"\t
        1. Autorii păstrează drepturile de autor și acordă dreptul de presă la " +"prima publicare, cu lucrarea [SPEFICIFĂ PERIOADA DE TIMP] după publicarea " +"simultan licențiată sub o Licență Creative Commons Attribution care " +"permite altora să dea mai departe lucrarea cu o recunoaștere a autorului și " +"a publicării inițiale la editură.
        2. \n" +"\t
        3. Autorilor li se permite să intre în serii contractuale separate, " +"adiționale pentru distribuire non-exclusivă a versiunii lucrării publicate " +"de editură (de ex., să o publice în repozitorii instituțional sau să o " +"publice într-o carte), cu o recunoaștere publicării sale inițiale la " +"editură.
        4. \n" +"\t
        5. Autorilor li se permite și sunt încurajați să își publice lucrarea " +"online (de ex., în repozitorii instituționale sau pe site-ul lor) înainte " +"sau în timpul procesului de trimitare, astfel încât să ducă la schimburi " +"productive, precum și la citări mai numeroase și mai timpurii ale lucrării " +"publicate (Vezi Efectul accesului " +"deschis).
        6. \n" +"
        " + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "" +"O înregistrare a dreptului de vânzare a fost omisă deoarece nu are alocate " +"nicio țară sau regiune." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Utilizează un model de sufix personalizat pentru fiecare tip de publicație. " +"Modelul de sufix personalizat poată să folosească următoarele simboluri " +"pentru a genera sufixul:

        %p Inițiale publicație
        " +"%m ID Monografie
        %c Capitol ID
        %f Format de publicare ID
        %s ID fișier
        %x Identificator personalizat

        Atenție la faptul că modelele de " +"sufix personalizat deseori duc la probleme în generarea și depozitarea " +"numerelor DOI. Când utilizați un model de sufix personalizat, tetați cu " +"atenție dacă editorii pot să genereze numere DOI și să le depoziteze la o " +"agenție de înregistrări, precum Crossref. " diff --git a/locale/ro/submission.po b/locale/ro/submission.po new file mode 100644 index 00000000000..770ca39b893 --- /dev/null +++ b/locale/ro/submission.po @@ -0,0 +1,640 @@ +# Elena-Ionela Buhalo , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-14 07:25+0000\n" +"Last-Translator: Elena-Ionela Buhalo \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "submission.upload.selectComponent" +msgstr "Selectați componenta" + +msgid "submission.title" +msgstr "Titlul cărții" + +msgid "submission.select" +msgstr "Selectați înregistrarea" + +msgid "submission.synopsis" +msgstr "Rezumat" + +msgid "submission.workflowType" +msgstr "Tipul înregistrării" + +msgid "submission.workflowType.description" +msgstr "" +"O monografie este o lucrare scrisă în întregime de unul sau mai mulți " +"autori. Un volum editat are autori diferiți pentru fiecare capitol ( " +"detaliile capitolului fiind introduse spre finalul acestui proces.)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Volum editat" + +msgid "submission.workflowType.editedVolume" +msgstr "Volum editat: Autorii sunt asociați propriului capitol." + +msgid "submission.workflowType.authoredWork" +msgstr "Monografie: Autorii sunt asociați cu cartea ca întreg." + +msgid "submission.workflowType.change" +msgstr "Schimbați" + +msgid "submission.editorName" +msgstr "{$editorName} (ed)" + +msgid "submission.monograph" +msgstr "Monografie" + +msgid "submission.published" +msgstr "Producție pregătită" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Autorizații" + +msgid "submission.chapter" +msgstr "Capitol" + +msgid "submission.chapters" +msgstr "Capitole" + +msgid "submission.chapter.addChapter" +msgstr "Adăugați capitole" + +msgid "submission.chapter.editChapter" +msgstr "Editare capitol" + +msgid "submission.chapter.pages" +msgstr "Pagini" + +msgid "submission.copyedit" +msgstr "Editare text" + +msgid "submission.proofs" +msgstr "Probe" + +msgid "submission.download" +msgstr "Descărcare" + +msgid "submission.sharing" +msgstr "Distribuiți aceasta" + +msgid "submission.round" +msgstr "Round {$round}" + +msgid "submissions.queuedReview" +msgstr "În verificare" + +msgid "manuscript.submissions" +msgstr "Înregistrări de manuscrise" + +msgid "manuscript.submission" +msgstr "Înregistrare manuscris" + +msgid "submission.metadata" +msgstr "Metadate" + +msgid "grid.action.addChapter" +msgstr "Creați un capitol nou" + +msgid "grid.action.editChapter" +msgstr "Editați acest capitol" + +msgid "grid.action.deleteChapter" +msgstr "Ștergeți acest capitol" + +msgid "submission.submit" +msgstr "Începeți înregistrarea unei noi cărți" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Înregistrare nouă" + +msgid "submission.submit.upload" +msgstr "Încărcați înregistrarea" + +msgid "author.volumeEditor" +msgstr "Editor de volum" + +msgid "author.isVolumeEditor" +msgstr "Identificați acest colaborator drept editor al acestui volum." + +msgid "submission.submit.seriesPosition" +msgstr "Poziția în serie" + +msgid "submission.submit.seriesPosition.description" +msgstr "Exemple: Cartea 2, Volum 2" + +msgid "submission.submit.privacyStatement" +msgstr "Declarație de confidențialitate" + +msgid "submission.submit.contributorRole" +msgstr "Rolul colaboratorului" + +msgid "submission.submit.submissionFile" +msgstr "Fișier de înregistrare" + +msgid "submission.submit.prepare" +msgstr "Pregătiți" + +msgid "submission.submit.catalog" +msgstr "Catalog" + +msgid "submission.submit.metadata" +msgstr "Metadate" + +msgid "submission.submit.finishingUp" +msgstr "Finalizare" + +msgid "submission.submit.confirmation" +msgstr "Confirmare" + +msgid "submission.submit.nextSteps" +msgstr "Pașii următori" + +msgid "submission.submit.coverNote" +msgstr "Notă de copertă pentru editor" + +msgid "submission.submit.generalInformation" +msgstr "Infromații generale" + +msgid "submission.fairCopy" +msgstr "Copie originală" + +msgid "submission.publicationFormats" +msgstr "Formate de publicație" + +msgid "submission.supportingAgencies" +msgstr "Agenții de sprijin" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Începeți o nouă înregistrare în" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Editura a fost notificată cu privire la înregistrarea dvs. și vi s-a trimis " +"pe adresa de e-mail o confirmare pentru înregistrările dvs. De îndată ce " +"editorul va analiza înregistrarea dvs., vă va contacta." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Citiți și bifați articolele din lista de verificare a înregistrării. Au " +"rămas {$itemsRemaining} articole nebifate." + +msgid "submission.submit.placement" +msgstr "Locația înregistrării" + +msgid "submission.submit.userGroup" +msgstr "Înregistrare în rolul meu ca..." + +msgid "submission.submit.noContext" +msgstr "Editura acestei înregistrării nu a putut fi găsită." + +msgid "grid.chapters.title" +msgstr "Capitole" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Ștergere încărcare editor" + +msgid "submission.complete" +msgstr "Aprobat" + +msgid "submission.incomplete" +msgstr "Aprobare în așteptare" + +msgid "submission.editCatalogEntry" +msgstr "Intrare" + +msgid "submission.catalogEntry.new" +msgstr "Adăugați intrare" + +msgid "submission.catalogEntry.add" +msgstr "Adăugați selecția în catalog" + +msgid "submission.catalogEntry.select" +msgstr "Selectați monografiile de adăugat în catalog" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" +"Trebuie să selectați cel puțin o monografie pentru a o adăuga în catalog." + +msgid "submission.catalogEntry.confirm" +msgstr "Adăugați această carte în catalogul public" + +msgid "submission.catalogEntry.confirm.required" +msgstr "" +"Confirmați faptul că înregistrarea este gata pentru a fi adăugată în catalog." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Această monografie este gata pentru a fi inclusă în catalogul public." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Vizualizați înregistrarea" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Date de publicare" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Toate capitolele vor folosi data de publicare a monografiei." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Fiecare capitol poate avea propria dată de publicare." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografie" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Catalog" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Format de publicație" + +msgid "submission.event.metadataPublished" +msgstr "Metadatele publicației sunt aprobate pentru publicare." + +msgid "submission.event.metadataUnpublished" +msgstr "Metadatele monografiei nu mai sunt publicate." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Formatul de publicație „{$publicationFormatName}” este valabil." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Formatul de publicație „{$publicationFormatName}” nu mai este valabil." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "Formatul de publicație „{$publicationFormatName}” nu mai este publicat." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Metadatele catalogului au fost actualizate." + +msgid "submission.event.publicationFormatCreated" +msgstr "Formatul de publicație „{$formatName}” a fost creat." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Formatul de publicație „{$formatName}” a fost înlăturat." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Trimitere către verificare externă" + +msgid "workflow.review.externalReview" +msgstr "Verificare externă" + +msgid "submission.upload.fileContents" +msgstr "Componentă înregistrare" + +msgid "submission.dependentFiles" +msgstr "Fișiere dependente" + +msgid "submission.metadataDescription" +msgstr "" +"Aceste specificații se bazează pe setul de metadate Dublin Core, un standard " +"internațional utilizat pentru a descrie conținutul editorial." + +msgid "section.any" +msgstr "Orice serie" + +msgid "submission.list.monographs" +msgstr "Monografii" + +msgid "submission.list.countMonographs" +msgstr "{$count} monografii" + +msgid "submission.list.orderFeatures" +msgstr "Caracteristici de ordine" + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Trageți și plasați sau clicați butoanele sus și jos pentru a schimba ordinea " +"caracteristicilor din {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Salvați ordinea" + +msgid "submission.list.viewEntry" +msgstr "Vizualizați intrarea" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Titluri" + +msgid "publication.catalogEntry" +msgstr "Intrare catalog" + +msgid "publication.catalogEntry.success" +msgstr "Detaliile intrarării catalogului au fost actualizate." + +msgid "publication.invalidSeries" +msgstr "Seria pentru această publicație nu a putut fi găsită." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Inactiv)" + +msgid "publication.publishedIn" +msgstr "Publicat în {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Toate cerințele de publicare au fost îndeplinite. Sigur doriți să faceți " +"publică această intrare în catalog?" + +msgid "publication.scheduledIn" +msgstr "" +"Programat pentru publicarea în {$issueName}." + +msgid "submission.publication" +msgstr "Publicare" + +msgid "publication.status.published" +msgstr "Publicat" + +msgid "submission.status.scheduled" +msgstr "Programat" + +msgid "publication.status.unscheduled" +msgstr "Neprogramat" + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Anul drepturilor de autor va fi setat automat în funcție de data publicării." + +msgid "publication.datePublished" +msgstr "Dată publicată" + +msgid "publication.editDisabled" +msgstr "Această versiune a fost publicată și nu poate fi editată." + +msgid "publication.event.published" +msgstr "Înregistrarea a fost publicată." + +msgid "publication.event.scheduled" +msgstr "Înregistrarea a fost programată pentru publicare." + +msgid "publication.event.unpublished" +msgstr "Înregistrarea nu a fost publicată." + +msgid "publication.event.versionPublished" +msgstr "O nouă versiune a fost publicată." + +msgid "publication.event.versionScheduled" +msgstr "O nouă versiune a fost programată pentru publicare." + +msgid "publication.event.versionUnpublished" +msgstr "O versiune a fost ștearsă de la publicare." + +msgid "publication.invalidSubmission" +msgstr "Înregistrarea pentru această publicație nu a putut fi găsită." + +msgid "publication.publish" +msgstr "Publicați" + +msgid "publication.publish.requirements" +msgstr "" +"Următoarele cerințe trebuie îndeplinite, înainte de a putea fi publicată." + +msgid "publication.required.declined" +msgstr "O înregistrare respinsă nu poate fi publicată." + +msgid "submission.license.description" +msgstr "" +"Licența va fi setată automat la {$licenseName} când aceasta va fi publicată." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Dreptul de autor va fi atribuit automat la {$copyright} când aceasta va fi " +"publicată." + +msgid "submission.copyrightOther.description" +msgstr "" +"Atribuiți drepturi de autor pentru înregistrările publicate următoarei părți." + +msgid "publication.unpublish" +msgstr "Anulați publicarea" + +msgid "publication.unschedule.confirm" +msgstr "Sunteți sigur că nu doriți să programați aceasta pentru publicare?" + +msgid "publication.version.details" +msgstr "Detalii de publicare pentru versiunea {$version}" + +msgid "submission.queries.production" +msgstr "Discuții de publicare" + +msgid "publication.chapter.landingPage" +msgstr "Pagină de capitol" + +msgid "publication.publish.success" +msgstr "Starea publicării a fost schimbată cu succes." + +msgid "chapter.volume" +msgstr "Volum" + +msgid "submission.withoutChapter" +msgstr "{$name} — Fără acest capitol" + +msgid "submission.chapterCreated" +msgstr " — Capitol creat" + +msgid "chapter.pages" +msgstr "Pagini" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Trimitere către verificare internă" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" +"{$editorName} a trimis această înregistrare către etapa de verificare " +"internă." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Trimis către verificare internă" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" +"Selectați fișierele care ar trebui trimise către etapa de verificare internă." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" +"{$editorName} a trimis această înregistrare către etapa de verificare " +"externă." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Trimis către verficare externă" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "Înregistrarea, {$title}, a fost trimisă în etapa de verificare externă." + +msgid "editor.submission.decision.backToReview" +msgstr "Înapoi la verificare" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Schimbați decizia de a accepta această înregistrare și trimiteți-o înapoi la " +"etapa de verificare." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Trimisă înapoi la verificare" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "Înregistrarea, {$title}, a fost trimisă înapoi la etapa de verificare." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Trimiteți un e-mail autorilor pentru a le anunța că această înregistrare va " +"fi trimisă pentru evaluare inter pares. Dacă este posibil, oferiți autorilor " +"câteva indicații despre cât de mult ar putea dura procesul de evaluare inter " +"pares și când ar trebui să se aștepte să audă din nou de la editori." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" +"Selectați fișierele care ar trebui să fie trimise către etapa de verificare." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Recomandați înregistrarea către verificare externă" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" +"Recomandați ca această înregistrare să fie trimisă către etapa de verificare " +"externă." + +msgid "doi.submission.incorrectContext" +msgstr "" +"Nu s-a putut crea un DOI pentru următoarea înregistrare: {$pubObjectTitle}. " +"Nu există în contextul actual de presă." + +msgid "publication.chapter.licenseUrl" +msgstr "Licență URL" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "Adresa URL implicită a licenței de capitol" + +msgid "submission.copyright.description" +msgstr "" +"Citiți și înțelegeți termenii drepturilor de autor pentru trimiterile către " +"această presă." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"{$contextName} nu acceptă înregistrări la seria {$section}. Dacă aveți " +"nevoie de ajutor pentru a vă recupera înregistrarea, vă rugăm să contactați " +"{$name}." + +msgid "submission.sectionNotFound" +msgstr "Seria pentru această înregistrare nu a putut fi găsită." + +msgid "submission.sectionRestrictedToEditors" +msgstr "" +"Doar personalul de redacție are dreptul de a înregistra la această serie." + +msgid "submission.wizard.submitting.monograph" +msgstr "Înregistrarea unei monografii." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" +"Înregistrarea unei monografii în " +"{$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Înregistrarea unui volum editat." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Înregistrarea unui volum editat în " +"{$language}." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Formatul de publicație „{$publicationFormatName}” este aprobat pentru " +"publicare." + +msgid "publication.unpublish.confirm" +msgstr "Sunteți sigur că nu doriți să publicați aceasta?" + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" +"Metadatele formatului de publicație „{$formatName}” au fost actualizate." + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Afișați acest capitol pe propria pagină și trimiteți la acea pagină din " +"cuprinsul cărții." + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} de {$total} monografii" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" +"Această înregistrare este gata pentru a fi trimisă către verificare internă." + +msgid "submission.list.orderingFeatures" +msgstr "" +"Trageți și plasați sau clicați butoanele sus și jos pentru a schimba ordinea " +"caracteristicilor de pe pagina de pornire." + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"Înregistrarea, {$title}, a fost trimisă în etapa de verificare internă. " +"Autorul a fost anunțat, cu excepția cazului în care ați ales să omiteți acel " +"e-mail." + +msgid "publication.required.issue" +msgstr "" +"Publicația trebuie să fie atribuită unui număr înainte de a putea fi " +"publicată." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Trimiteți un e-mail autorilor pentru a le informa că această înregistrare va " +"fi trimisă pentru verificare internă. Dacă este posibil, oferiți autorilor " +"câteva indicații cu privire la cât de mult ar putea dura procesul de " +"verificare internă și când ar trebui să se aștepte să primească din nou " +"informații de la editori." + +msgid "submission.publications" +msgstr "Publicații" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} a schimbat decizia de a accepta această înregistrare și a " +"trimis-o înapoi la etapa de verificare." + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Anul drepturilor de autor va fi setat automat atunci când acesta este " +"publicat într-un număr." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Trimiteți un e-mail autorilor pentru a le informa că înregistrarea lor este " +"trimisă înapoi la etapa de verificare. Explicați de ce a fost luată această " +"decizie și informați autorul despre ce revizuire ulterioară va fi " +"întreprinsă." + +msgid "publication.required.reviewStage" +msgstr "" +"Înregistrarea trebuie să fie în etapele de ”verificare” sau ”producere” " +"pentru a putea fi publicată." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} a recomandat ca această înregistrare să fie trimisă către " +"etapa de verificare externă." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Nu aveți voie să înregistrați la această presă deoarece autorii trebuie să " +"fie înregistrați de redacția. Dacă considerați că aceasta este o eroare, " +"contactați {$name}." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Furnizați toate capitolele acestei înregistrări. Dacă înregistrați un volum " +"editat, vă rugăm să vă asigurați că fiecare capitol indică colaboratorii " +"pentru acel capitol." diff --git a/locale/ro_RO/admin.po b/locale/ro_RO/admin.po deleted file mode 100644 index 657a67cbe3f..00000000000 --- a/locale/ro_RO/admin.po +++ /dev/null @@ -1,121 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-01 18:10+0000\n" -"Last-Translator: Vasile Moraru \n" -"Language-Team: Romanian \n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.settings.noPressRedirect" -msgstr "Nu redirecționa" - -msgid "admin.settings.redirect" -msgstr "Apăsați pentru redirecționare" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

        NOTĂ!\n" -"

        Sistemul nu poate rescrie automat fișierul de configurare. Configurările " -"pot fi modificate doar dacă se deschide fișierulconfig.inc.php în " -"cel mai potrivit editor și se înlocuiește conținutul cu cel din rubrica de " -"mai jos.

        " - -msgid "admin.presses.addPress" -msgstr "Adaugă editură" - -msgid "admin.contexts.contextDescription" -msgstr "Descrierea editurii" - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} a fost editată cu succes." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} a fost creată cu succes." - -msgid "admin.contexts.form.pathExists" -msgstr "Calea specificată este deja folosită de o altă editură." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "" -"Calea poate include numai litere, cifre si caracterele _ sau -. Începutul și " -"finalul trebuie să fie o literă sau un număr." - -msgid "admin.contexts.form.titleRequired" -msgstr "Este necesar să specificați un titlu." - -msgid "admin.contexts.form.pathRequired" -msgstr "Este necesară specificarea unei căi." - -msgid "admin.contexts.create" -msgstr "Creează editură" - -msgid "admin.presses.noneCreated" -msgstr "Nu s-a creat nici o editură." - -msgid "admin.presses.pressSettings" -msgstr "Setările editurii" - -msgid "admin.systemConfiguration" -msgstr "Configurația OMP" - -msgid "admin.systemVersion" -msgstr "Versiunea OMP" - -msgid "admin.languages.confirmDisable" -msgstr "" -"Sunteți sigur că doriți să eliminați această locație? Această decizie poate " -"afecta oricare dintre editurile găzduite care utilizează această locație." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "" -"Selectați orice locație suplimentară pentru a instala informațiile de suport " -"în sistem. Locațiile trebuie instalate înainte de a fi utilizate de " -"editurile găzduite. Vezi documentația OMP legată de adăugarea informațiilor " -"de suport pentru noile limbi." - -msgid "admin.languages.confirmUninstall" -msgstr "" -"Sunteți sigur că doriți să eliminați această locație? Această decizie poate " -"afecta oricare dintre editurile găzduite care utilizează această locație." - -msgid "admin.locale.maybeIncomplete" -msgstr "* E posibil ca locațiile selectate să nu conțină toate datele." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "" -"Selectați ca toate locațiile să fie acceptate pe site. Locațiile selectate " -"vor fi la dispoziția tuturor editurilor găzduite în site și vor apărea în " -"meniul de selectare a limbii de pe fiecare pagină a site-ului. Opțiunea " -"poate fi suprimată de anumite pagini specifice ale editurii. Dacă locațiile " -"multiple nu sunt selectate, selectorul de schimbare a limbii nu va fi " -"vizibil, iar setările extinse de limbă nu vor fi disponibile pentru edituri." - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "" -"Aceasta va fi limba oficială a site-ului și a oricărei edituri găzduită de " -"acesta." - -msgid "admin.settings.redirectInstructions" -msgstr "" -"Solicitările din site-ul principal vor fi transmise către editură. Poate fi " -"util atunci când, de exemplu, site-ul găzduiește o singură editură." - -msgid "admin.settings.info.success" -msgstr "Informațiile site-ului au fost actualizate cu succes." - -msgid "admin.settings.config.success" -msgstr "Configurația site-ului a fost actualizată cu succes." - -msgid "admin.settings.appearance.success" -msgstr "" -"Setările de aspectului de prezentare ale site-ului au fost actualizate cu " -"succes." - -msgid "admin.hostedContexts" -msgstr "Edituri găzduite" diff --git a/locale/ro_RO/api.po b/locale/ro_RO/api.po deleted file mode 100644 index ab11e520373..00000000000 --- a/locale/ro_RO/api.po +++ /dev/null @@ -1,38 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-01 18:10+0000\n" -"Last-Translator: Vasile Moraru \n" -"Language-Team: Romanian " -"\n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "api.submissions.403.contextRequired" -msgstr "" -"Pentru a realiza sau edita o transmisie trebuie făcută o solicitare către " -"terminalul API al editurii." - -msgid "api.submissions.403.cantChangeContext" -msgstr "Nu se poate schimba editura unei transmisii." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "Lucrarea solicitată nu face parte din această transmisie." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "Lucrarea solicitată nu se regăsește la această editură." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "Nu aveți permisiunea să mutați acest șablon de email la o altă editură." - -msgid "api.submissions.400.submissionsNotFound" -msgstr "Una sau mai multe trimiteri pe care le-ai specificat nu au fost găsite." - -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Pentru ca trimiterea să fie adăugată în catalog trebuie sa introduci unul " -"sau mai multe coduri de identificare ale acesteia." diff --git a/locale/ro_RO/author.po b/locale/ro_RO/author.po deleted file mode 100644 index 0d08d04fa92..00000000000 --- a/locale/ro_RO/author.po +++ /dev/null @@ -1,16 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-01 18:10+0000\n" -"Last-Translator: Vasile Moraru \n" -"Language-Team: Romanian \n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "author.submit.notAccepting" -msgstr "Editura nu acceptă momentan trimiteri." diff --git a/locale/ru/admin.po b/locale/ru/admin.po new file mode 100644 index 00000000000..e9d49b14839 --- /dev/null +++ b/locale/ru/admin.po @@ -0,0 +1,173 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Издательства на сайте" + +msgid "admin.settings.appearance.success" +msgstr "Настройки оформления сайта были успешно обновлены." + +msgid "admin.settings.config.success" +msgstr "Настройки конфигурации сайта были успешно обновлены." + +msgid "admin.settings.info.success" +msgstr "Информация на сайте была успешно обновлена." + +msgid "admin.settings.redirect" +msgstr "Перенаправление издательства" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Основной страницей сайта станет главная страница этого издательства. Это " +"полезно, например, если на сайте размещается только одно издательство." + +msgid "admin.settings.noPressRedirect" +msgstr "Не пeренаправлять" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Это будет язык по умолчанию для сайта и всех размещенных на нем издательств." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Выберите все языки для поддержки на сайте. Выбранные языки будут доступны " +"для всех издательств, расположенных на этом сайте, а также появятся в меню " +"выбора языков на каждой странице сайта (эта настройка может быть изменена на " +"страницах конкретного издательства). Если выбран только один язык, меню " +"переключения языков не будет показываться, дополнительные языковые настройки " +"для издательств также не будут доступны." + +msgid "admin.locale.maybeIncomplete" +msgstr "*Поддержка отмеченных языков может быть неполной." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Вы уверены, что хотите отключить этот язык? Это может повлиять на все " +"размещенные издательства, которые сейчас используют его." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Выберите дополнительные языки для установки их поддержки в этой системе. " +"Языки должны быть установлены до того, как их можно будет использовать в " +"размещенных издательствах. Смотрите в документации OMP информацию о том, как " +"добавить поддержку новых языков." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Вы уверены, что хотите отключить этот язык? Это может повлиять на все " +"размещенные издательства, которые сейчас используют его." + +msgid "admin.systemVersion" +msgstr "Версия OMP" + +msgid "admin.systemConfiguration" +msgstr "Конфигурация OMP" + +msgid "admin.presses.pressSettings" +msgstr "Настройки Издательства" + +msgid "admin.presses.noneCreated" +msgstr "Не создано ни одного Издательства." + +msgid "admin.contexts.create" +msgstr "Создать Издательство" + +msgid "admin.contexts.form.titleRequired" +msgstr "Требуется название." + +msgid "admin.contexts.form.pathRequired" +msgstr "Требуется путь." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Путь может содержать только буквы, цифры и символы _ и -. Путь должен " +"начинаться и заканчиваться буквой или цифрой." + +msgid "admin.contexts.form.pathExists" +msgstr "Указанный Вами путь уже используется другим издательством." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Основной язык должен быть одним из языков, поддерживаемых издательством." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} успешно создан." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} был успешно отредактирован." + +msgid "admin.contexts.contextDescription" +msgstr "Описание издательства" + +msgid "admin.presses.addPress" +msgstr "Добавить издательство" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

        NOTE!\n" +"

        Система не может автоматически перезаписать файл конфигурации. Для " +"применения изменений в конфигурации нужно открыть config.inc.php в " +"подходящем текстовом редакторе и заменить его содержимое текстом " +"представленным ниже.

        " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Выберите издательства, которым нужно разрешить массовую рассылку электронной " +"почты. Когда эта функция включена, менеджер журнала сможет отправлять " +"электронные письма всем пользователям, зарегистрированным в " +"журнале.

        Использование этой функции для рассылки нежелательной почты " +"в некоторых странах может попадать под нарушение законов о борьбе со спамом, " +"и письма вашего сервера могут быть заблокированы как спам. Перед включением " +"этой функции проконсультируйтесь с редакторами издательств, чтобы убедиться, " +"что она используется должным образом.

        Другие ограничения этой функции " +"могут быть включены для каждого издательства с помощью мастера настроек в " +"списке «Издательства на сайте»." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Менеджер журнала не сможет делать массовую рассылку по электронной почте " +"любой из ролей, выбранных ниже. Используйте эту настройку, чтобы ограничить " +"злоупотребление функцией уведомления по электронной почте. Например, может " +"быть безопаснее отключить массовую рассылку писем читателям, авторам или " +"другим большим группам пользователей, которые не давали согласия на " +"получение таких писем.

        Функция массовой рассылки писем может быть " +"полностью отключена для этого журнала в разделе Администрирование > Настройки сайта." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Для этого издательства функция массовой рассылки электронной почты " +"отключена. Включите эту возможность в разделе Администрирование > Настройки сайта." + +msgid "admin.siteManagement.description" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +#, fuzzy +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Использовать сайт как платформу для всех журналов." diff --git a/locale/ru/api.po b/locale/ru/api.po new file mode 100644 index 00000000000..6259fea64c0 --- /dev/null +++ b/locale/ru/api.po @@ -0,0 +1,46 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-12 18:53+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Вам необходимо представить один или несколько ID подач для добавления в " +"каталог." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "Одна или более подач, указанных Вами, не может быть найдена." + +msgid "api.submissions.400.wrongContext" +msgstr "" + +msgid "api.emails.403.disabled" +msgstr "" +"Функция уведомления по электронной почте не была включена для этого " +"издательства." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"У вас не хватает прав для переноса жатого шаблона письма в другое издание." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "Запрашиваемая вами публикация не принадлежит данному издательству." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "" +"Запрашиваемая вами публикация не принадлежит данной подаче (материалу)." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Вы не можете изменить издание подачи(материала)." + +msgid "api.submission.400.inactiveSection" +msgstr "" diff --git a/locale/ru/author.po b/locale/ru/author.po new file mode 100644 index 00000000000..5b982bd2b80 --- /dev/null +++ b/locale/ru/author.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-17 23:42+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "author.submit.notAccepting" +msgstr "Это издательство в настоящий момент не принимает материалы." + +msgid "author.submit" +msgstr "" diff --git a/locale/ru/default.po b/locale/ru/default.po new file mode 100644 index 00000000000..22b76958943 --- /dev/null +++ b/locale/ru/default.po @@ -0,0 +1,200 @@ +# Petro Bilous , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-16 18:38+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "default.genres.appendix" +msgstr "Приложение" + +msgid "default.genres.bibliography" +msgstr "Библиография" + +msgid "default.genres.manuscript" +msgstr "Рукопись книги" + +msgid "default.genres.chapter" +msgstr "Рукопись главы" + +msgid "default.genres.glossary" +msgstr "Глоссарий" + +msgid "default.genres.index" +msgstr "Индекс" + +msgid "default.genres.preface" +msgstr "Предисловие" + +msgid "default.genres.prospectus" +msgstr "Брошюра" + +msgid "default.genres.table" +msgstr "Таблица" + +msgid "default.genres.figure" +msgstr "Рисунок" + +msgid "default.genres.photo" +msgstr "Фото" + +msgid "default.genres.illustration" +msgstr "Иллюстрация" + +msgid "default.genres.other" +msgstr "Другое" + +msgid "default.groups.name.manager" +msgstr "Менеджер издательства" + +msgid "default.groups.plural.manager" +msgstr "Менеджеры издательства" + +msgid "default.groups.abbrev.manager" +msgstr "МнИ" + +msgid "default.groups.name.editor" +msgstr "Редактор издания" + +msgid "default.groups.plural.editor" +msgstr "Редакторы издания" + +msgid "default.groups.abbrev.editor" +msgstr "РдИ" + +msgid "default.groups.name.sectionEditor" +msgstr "Редактор серии" + +msgid "default.groups.plural.sectionEditor" +msgstr "Редакторы серий" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "РдС" + +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + +msgid "default.groups.name.chapterAuthor" +msgstr "Автор главы" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Авторы глав" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "АвГ" + +msgid "default.groups.name.volumeEditor" +msgstr "Редактор тома" + +msgid "default.groups.plural.volumeEditor" +msgstr "Редакторы томов" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "РдТ" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

        Имена и адреса электронной почты, введенные на сайте этого журнала, будут " +"использованы исключительно для целей, обозначенных этим журналом, и не будут " +"использованы для каких-либо других целей или предоставлены другим лицам и " +"организациям.

        " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Этот журнал предоставляет непосредственный открытый доступ к своему " +"контенту, исходя из следующего принципа: свободный открытый доступ к " +"результатам исследований способствует увеличению глобального обмена знаниями." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Мы прeдлагаем читателям зарегистрироваться на сайте, чтобы пользоваться " +"службой сообщений нашего издательства. Используйте ссылку РЕГИСТРАЦИЯ в верхней части " +"главной страницы Издательства. Эта регистрация позволит читателю получать на " +"электронную почту содержание новых опубликованных изданий. Этот список также " +"позволяет журналу говорить об определенном уровне поддержки или количестве " +"читателей. Посмотрите также страницу Заявление о конфиденциальности, " +"которая позволяет читателям убедиться в том, что их имя и адрес электронной " +"почты не будут использованы для других целей." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Вы хотите отправить материал для публикации в нашем Издательстве? " +"Рекомендуем вам посмотреть раздел «Об Издательстве», где вы сможете ознакомиться с нашей редакционной " +"политикой, а также с Руководством для автора. Авторам нужно зарегистрироваться в " +"журнале перед отправкой материалов, или, если вы уже зарегистрированы, можно " +"просто войти со своей учетной " +"записью и начать процесс отправки, состоящий из пяти шагов." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Мы надеемся, что сотрудники библиотек впишут это Издательство в свой список " +"электронных Издательств. Кроме того, данная издательская система создана для " +"того, чтобы дать возможность академическим и научным библиотекам " +"организовать архивное хранение электронных изданий в работу над которыми " +"вовлечены их научные работники. Больше об этих возможностях см. сайт " +"разработчиков (см. Open Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Внешний рецензент" + +msgid "default.groups.plural.externalReviewer" +msgstr "Внешние рецензенты" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "ВшРц" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Текст соответствует стилистическим и библиографическим требованиям, " +#~ "описанным в Руководстве для авторов, расположенном на странице «Об Издательстве»." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Текст набран с одинарным межстрочным интервалом; используется кегль " +#~ "шрифта в 12 пунктов; для выделения используется курсив, а не " +#~ "подчеркивание (за исключением URL-адресов); все иллюстрации, графики и " +#~ "таблицы расположены в соответствующих местах в тексте, а не в конце " +#~ "документа." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Приведены полные интернет-адреса (URL) для ссылок там, где это возможно." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Файл с материалом представлен в формате документа OpenOffice, Microsoft " +#~ "Word или RTF." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Этот материал ранее не был опубликован, а также не был представлен для " +#~ "рассмотрения и публикации в другом журнале (или дано объяснение этого в " +#~ "Комментариях для редактора)." diff --git a/locale/ru/editor.po b/locale/ru/editor.po new file mode 100644 index 00000000000..033bd2010a3 --- /dev/null +++ b/locale/ru/editor.po @@ -0,0 +1,214 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 09:32+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Архив материалов" + +msgid "editor.monograph.cancelReview" +msgstr "Отменить запрос" + +msgid "editor.monograph.clearReview" +msgstr "Очистить рецензента" + +msgid "editor.monograph.enterRecommendation" +msgstr "Ввести рекомендацию" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Ввести рекомендацию рецензента" + +msgid "editor.monograph.recommendation" +msgstr "Рекомендация" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Выберите рецензента и нажмите кнопку «Выбрать рецензента» чтобы продолжить." + +msgid "editor.monograph.replaceReviewer" +msgstr "Заменить рецензента" + +msgid "editor.monograph.editorToEnter" +msgstr "Редактор для ввода рекомендаций / комментариев для рецензента" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Загрузить рецензию" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Параметры рецензирования" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Файлы корректуры" + +msgid "editor.monograph.internalReview" +msgstr "Начать внутреннее рецензирование" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Выберите файлы ниже, чтобы отправить их на этап внутреннего рецензирования." + +msgid "editor.monograph.externalReview" +msgstr "Начать внешнее рецензирование" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Выберите файлы окончательных черновиков" + +msgid "editor.monograph.final.currentFiles" +msgstr "Файлы текущих окончательных черновиков" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Текущие файлы" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Сообщение пользователю" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Действия по представлению (подаче) материала" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Общие действия и опции подачи материала." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Действия в Разделе" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Параметры, специфичные для данного раздела, например, загрузка файлов или " +"добавление пользователей." + +msgid "editor.monograph.legend.itemActions" +msgstr "Действия для элемента" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Действия и параметры, относящиеся к отдельному файлу." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Просмотр и управление записями каталога отправлений, включая метаданные и " +"форматы публикации" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Просмотр и управление метаданными, заметками, уведомлениями и историей " +"отправки" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Просмотр и управление участниками этого представления: авторы, редакторы, " +"дизайнеры и многое другое" + +msgid "editor.monograph.legend.add" +msgstr "Загрузить файл в раздел" + +msgid "editor.monograph.legend.add_user" +msgstr "Добавить пользователя в раздел" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Просмотр и доступ к параметрам элемента, таким как информация и параметры " +"удаления" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"Дополнительная информация: примечания к файлам, параметры уведомлений и " +"история" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Информация о файле: заметки, параметры уведомлений и история (Заметки еще не " +"добавлены)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Информация о файле: заметки, параметры уведомлений и история (Заметки " +"доступны)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Информация о файле: заметки, параметры уведомлений и история (Новые заметки " +"добавлены с момента последнего входа)" + +msgid "editor.monograph.legend.edit" +msgstr "Править элемент" + +msgid "editor.monograph.legend.delete" +msgstr "Удалить элемент" + +msgid "editor.monograph.legend.in_progress" +msgstr "Действие в процессе или еще не завершено" + +msgid "editor.monograph.legend.complete" +msgstr "Действие завершено" + +msgid "editor.monograph.legend.uploaded" +msgstr "Файл загружен из роли в заголовке столбца сетки" + +msgid "editor.submission.introduction" +msgstr "" +"В разделе «Подача» редактор после просмотра представленных файлов выбирает " +"соответствующее действие (которое включает в себя уведомление автора): " +"«Отправить на внутреннее рецензирование» (влечет за собой выбор файлов для " +"внутренней рецензирования); Отправить на внешнее рецензирование (влечет за " +"собой выбор файлов для внешнего рецензирования); Принять материал (влечет за " +"собой выбор файлов для этапа редактирования); или Отклонить материал " +"(отправка в архив)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Чистовик" + +msgid "editor.monograph.proofs" +msgstr "Гранки (верстка)" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Утверждение и публикация" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Различные форматы публикации, такие как твердый переплет, мягкая и цифровая, " +"могут быть загружены в разделе «Форматы публикации» ниже. Вы можете " +"использовать приведенную ниже сетку форматов публикации в качестве " +"контрольного списка того, что еще нужно сделать для публикации формата " +"издания." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Добавьте форматы публикации (например, цифровые, в мягкой обложке), для " +"которых редактор макетов готовит верстку страниц для корректуры. <еm>Макеты должны быть проверены как утвержденные, а запись для формата в " +"Каталоге должна быть проверена как опубликованная в каталоге " +"книги, прежде чем формат можно будет сделать Доступным (то есть " +"опубликовано)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Установить условия для скачивания" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Установить условия" + +msgid "editor.monograph.proof.addNote" +msgstr "Добавить ответ" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Любые файлы, которые уже были загружены на любом этапе отправки материала, " +"могут быть добавлены в список «Корректура», для этого нужно поставить " +"галочку «Включить» ниже и щелкнуть на кнопке «Поиск»: все доступные файлы " +"будут показаны в списке и могут быть выбраны для включения." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Открытый идентификатор «{$publicIdentifier}» уже существует для другого " +"объекта этого же типа. Пожалуйста, выбирайте уникальные идентификаторы для " +"объектов одного типа в вашем Издательстве." + +msgid "editor.submissions.assignedTo" +msgstr "Назначено редактору" diff --git a/locale/ru/emails.po b/locale/ru/emails.po new file mode 100644 index 00000000000..6aec936bdb8 --- /dev/null +++ b/locale/ru/emails.po @@ -0,0 +1,474 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-22 17:15+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Подтверждение сброса пароля" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Мы получили запрос на сброс Вашего пароля на сайте «{$siteTitle}».
        \n" +"
        \n" +"Если Вы не отправляли этот запрос, пожалуйста, проигнорируйте это письмо и " +"Ваш пароль не будет изменен. Если Вы хотите сбросить свой пароль, то " +"щелкните по ссылке ниже.
        \n" +"
        \n" +"Сбросить мой пароль: {$passwordResetUrl}
        \n" +"
        \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Регистрация издательства" + +msgid "emails.userRegister.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"Теперь Вы зарегистрированы как пользователь в «{$contextName}». В этом " +"письме мы указали Ваши имя пользователя и пароль, которые потребуются для " +"работы на нашем сайте. Вы в любой момент можете попросить, чтобы Вас " +"удалили из списка пользователей Издательства, для этого просто свяжитесь со " +"мной.
        \n" +"
        \n" +"Имя пользователя: {$recipientUsername}
        \n" +"Пароль: {$password}
        \n" +"
        \n" +"С уважением,
        \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "" + +msgid "emails.userValidateContext.body" +msgstr "" + +msgid "emails.userValidateSite.subject" +msgstr "" + +msgid "emails.userValidateSite.body" +msgstr "" + +msgid "emails.reviewerRegister.subject" +msgstr "Регистрация в качестве рецензента в «{$contextName}»" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Принимая во внимание Ваш опыт, мы взяли на себя смелость зарегистрировать " +"Вас в базе данных потенциальных рецензентов для «{$contextName}». Это не " +"налагает на Вас никаких обязательств, а просто позволяет нам обращаться к " +"Вам при поступлении в наше Издательство материалов, рецензентом которых Вы " +"могли бы стать. Получив предложение дать рецензию, Вы сможете увидеть " +"название и аннотацию рукописи в запросе, и у Вас всегда будет возможность " +"принять или отклонить это предложение. Вы также, в любой момент, можете " +"попросить, чтобы мы удалили Ваше имя из этого списка рецензентов.
        \n" +"
        \n" +"Мы высылаем Вам имя пользователя и пароль, которые используются при любом " +"взаимодействии с сайтом нашего Издательства. Например, Вы можете " +"откорректировать свои данные в профиле пользователя, указав интересующую Вас " +"как рецензента тематику.
        \n" +"
        \n" +"Имя пользователя: {$recipientUsername}
        \n" +"Пароль: {$password}
        \n" +"
        \n" +"С уважением,
        \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Назначение редактором" + +msgid "emails.editorAssign.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"В соответствии с Вашей ролью редактора Вам поручен контроль прохождения по " +"стадиям редакционного процесса рукописи «{$submissionTitle}», поданной в " +"«{$contextName}».
        \n" +"
        \n" +"URL материала: {$submissionUrl}
        \n" +"Имя пользователя: {$recipientUsername}
        \n" +"
        \n" +"С уважением," + +msgid "emails.reviewRequest.subject" +msgstr "Запрос на рецензирование рукописи" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"{$messageToReviewer}
        \n" +"
        \n" +"Пожалуйста, войдите на сайт Издательства до {$responseDueDate}, чтобы " +"подтвердить Ваше согласие на рецензирование или отказаться от " +"рецензирования, а также получить доступ к материалу и оставить свою рецензию " +"и рекомендацию. Адрес сайта — {$contextUrl}
        \n" +"
        \n" +"Сама рецензия должна быть предоставлена до {$reviewDueDate}.
        \n" +"
        \n" +"URL рукописи: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Username: {$recipientUsername}
        \n" +"
        \n" +"Заранее благодарю Вас,
        \n" +"
        \n" +"
        \n" +"С уважением,
        \n" +"{$signature}
        \n" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Запрос на рецензирование рукописи" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"Это просто напоминание о нашем запросе к Вам стать рецензентом для рукописи " +"«{$submissionTitle}», которая была направлена в «{$contextName}». Мы " +"надеялись на Ваш ответ к {$responseDueDate}, и это напоминание было " +"автоматически сгенерирован и послано, т.к. эта дата прошла.
        \n" +"
        \n" +"{$messageToReviewer}5
        \n" +"
        \n" +"Пожалуйста, войдите на сайт Издательства до {$responseDueDate}, чтобы " +"подтвердить Ваше согласие на рецензирование или отказаться от " +"рецензирования, а также получить доступ к материалу и оставить свою рецензию " +"и рекомендацию.
        \n" +"
        \n" +"Сама рецензия должна быть предоставлена до {$reviewDueDate}.
        \n" +"
        \n" +"URL рукописи: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Username: {$recipientUsername}
        \n" +"
        \n" +"Заранее благодарю Вас,
        \n" +"
        \n" +"{$contextSignature}
        \n" + +msgid "emails.reviewCancel.subject" +msgstr "Запрос на рецензирование отменен" + +msgid "emails.reviewCancel.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"На данный момент мы решили отменить наш запрос на рецензирование Вами " +"рукописи «{$submissionTitle}» для «{$contextName}». Мы приносим свои " +"извинения за причиненное Вам беспокойство и надеемся, что в будущем мы " +"сможем к Вам обратиться за помощью в рецензировании материалов для нашего " +"Издательства.
        \n" +"
        \n" +"Если у Вас есть вопросы, пожалуйста, свяжитесь со мной." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Запрос на возобновление рецензирования" + +msgid "emails.reviewReinstate.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"Мы бы хотели возобновить наш запрос на рецензирование Вами рукописи " +"«{$submissionTitle}» для «{$contextName}». Мы надеемся, что Вы сможете " +"помочь нам в процессе рецензирования.
        \n" +"
        \n" +"Если у Вас есть вопросы, пожалуйста, свяжитесь со мной." + +msgid "emails.reviewDecline.subject" +msgstr "Не могу дать рецензию" + +msgid "emails.reviewDecline.body" +msgstr "" +"Уважаемые редакторы!
        \n" +"
        \n" +"Боюсь, что в данный момент я не могу дать рецензию на материал " +"«{$submissionTitle}» для «{$contextName}». Благодарю вас, что обратились ко " +"мне, в другой раз также не стесняйтесь, обращайтесь ко мне.
        \n" +"
        \n" +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Напоминание о рецензии на рукопись" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"Здравствуйте, {$recipientName}:
        \n" +"
        \n" +"Это напоминание о нашем запросе Вашей рецензии на материал " +"«{$submissionTitle}» для журнала «{$contextName}». Мы надеялись получить эту " +"рецензию до {$reviewDueDate} и будем рады, если Вы как можно скорее ее " +"подготовите.
        \n" +"
        \n" +"Если у Вас нет имени пользователя и пароля для доступа к сайту журнала, Вы " +"можете воспользоваться этой ссылкой для сброса Вашего пароля (он будет " +"направлен Вам вместе с Вашим именем пользователя на электронную почту). " +"{$passwordLostUrl}
        \n" +"
        \n" +"URL материала: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Username: {$recipientUsername}
        \n" +"
        \n" +"Пожалуйста, подтвердите, что Вы сможете сделать этот важный вклад в работу " +"нашего журнала. Жду вашего ответа.
        \n" +"
        \n" +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"Это напоминание о нашем запросе Вашей рецензии на материал "" +"{$submissionTitle}» для {$contextName}. Мы надеялись получить эту рецензию " +"до {$reviewDueDate}, и это письмо было автоматически сгенерировано и " +"отправлено, так как эта дата уже прошла. Мы будем рады, если Вы как можно " +"скорее ее подготовите.
        \n" +"
        \n" +"Если у Вас нет имени пользователя и пароля для доступа к сайту журнала, Вы " +"можете воспользоваться этой ссылкой для сброса Вашего пароля (он будет " +"направлен Вам вместе с Вашим именем пользователя на электронную почту). " +"{$passwordLostUrl}
        \n" +"
        \n" +"URL материала: {$reviewAssignmentUrl}
        \n" +"
        \n" +"Username: {$recipientUsername}
        \n" +"
        \n" +"Пожалуйста, подтвердите, что Вы сможете сделать этот важный вклад в работу " +"нашего журнала. Жду вашего ответа.
        \n" +"
        \n" +"{$contextSignature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "Решение редактора" + +#, fuzzy +msgid "emails.editorDecisionAccept.body" +msgstr "" +"Здравствуйте, {$authors}!
        \n" +"
        \n" +"Мы приняли решение относительно Вашего материала "{$submissionTitle}" +"", направленного в {$contextName}.
        \n" +"
        \n" +"Наше решение: Принять рукопись.
        \n" +"
        \n" +"Manuscript URL: {$submissionUrl}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" + +#, fuzzy +msgid "emails.layoutRequest.subject" +msgstr "Запрос на верстку" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"Необходимо сверстать гранки материала "{$submissionTitle}}" для " +"{$contextName}, выполнив следующие шаги.
        \n" +"1. Щелкните на URL материала ниже.
        \n" +"2. Войдите на сайт и используйте файлы из панели «Готовые для производства» " +"для подготовки гранок в в соответствии со стандартами Издательства.
        \n" +"3. Уведомите редактора с помощью письма ВЫПОЛНЕНО, что гранки загружены и " +"готовы.
        \n" +"
        \n" +"URL журнала «{$contextName}»: {$contextUrl}
        \n" +"URL материала: {$submissionUrl}
        \n" +"Имя пользователя: {$recipientUsername}
        \n" +"
        \n" +"Если Вы не можете выполнить эту работу сейчас или у Вас есть какие-либо " +"вопросы, пожалуйста, свяжитесь со мной. Спасибо за Ваш вклад в наш журнал." + +msgid "emails.layoutComplete.subject" +msgstr "Гранки сделаны" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"Гранки для материала }"{$submissionTitle}}" в {$contextName} уже " +"готовы, можно начинать корректуру.
        \n" +"
        \n" +"Если у Вас есть какие-либо вопросы, пожалуйста, свяжитесь со мной.
        \n" +"
        \n" +"{$senderName}" + +msgid "emails.indexRequest.subject" +msgstr "Запрос на индексирование" + +msgid "emails.indexRequest.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"Необходимо создать индекс для материала "{$submissionTitle}}" для " +"{$contextName}, выполнив следующие шаги.
        \n" +"1. Щелкните на URL материала ниже.
        \n" +"2. Войдите на сайт и используйте файлы из панели «Готовые для производства» " +"для подготовки гранок в в соответствии со стандартами Издательства.
        \n" +"3. Уведомите редактора с помощью письма ВЫПОЛНЕНО.
        \n" +"
        \n" +"URL журнала «{$contextName}»: {$contextUrl}
        \n" +"URL материала: {$submissionUrl}
        \n" +"Имя пользователя: {$recipientUsername}
        \n" +"
        \n" +"Если Вы не можете выполнить эту работу сейчас или у Вас есть какие-либо " +"вопросы, пожалуйста, свяжитесь со мной. Спасибо за Ваш вклад в наш журнал." +"
        \n" +"
        \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Индексы сделаны" + +msgid "emails.indexComplete.body" +msgstr "" +"Здравствуйте, {$recipientName}!
        \n" +"
        \n" +"Индексы для материала }"{$submissionTitle}}" в {$contextName} уже " +"готовы, можно начинать корректуру.
        \n" +"
        \n" +"Если у Вас есть какие-либо вопросы, пожалуйста, свяжитесь со мной.
        \n" +"
        \n" +"{$recipientName}" + +msgid "emails.emailLink.subject" +msgstr "Эта статья, возможно, будет Вам интересна" + +msgid "emails.emailLink.body" +msgstr "" +"Полагаем, что Вам будет интересно посмотреть материал " +"«{$submissionTitle}» (авторы: {$authors}), опубликованную в «{$contextName}» " +"по адресу "{$submissionUrl}"." + +msgid "emails.emailLink.description" +msgstr "" +"Этот шаблон письма позволяет зарегистрированному читателю возможность " +"отправить информацию об издании тому, кому оно может быть интересно. " +"Возможность доступна в меню «Инструменты читателя» и должна быть включена " +"управляющим журнала на странице «Инструменты читателя: Администрирование»." + +msgid "emails.notifySubmission.subject" +msgstr "Уведомление о подаче рукописи" + +msgid "emails.notifySubmission.body" +msgstr "" +"Вам сообщение от {$sender}, касающееся "{$submissionTitle}" " +"({$monographDetailsUrl}):
        \n" +"
        \n" +"\t\t{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Уведомление от пользователя, посланное из модуля отправки рукописей в " +"Редакцию." + +msgid "emails.notifyFile.subject" +msgstr "Уведомление о подаче файла" + +msgid "emails.notifyFile.body" +msgstr "" +"Вам сообщение от {$sender}, касающееся "{$fileName}" в "" +"{$submissionTitle}" ({$monographDetailsUrl}):
        \n" +"
        \n" +"\t\t{$message}
        \n" +"
        \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "Уведомление от пользователя, посланное из модуля отправки файлов" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Активность журнала за {$month} {$year} года" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
        \n" +"
        \n" +"Доступен отчет о состоянии Вашего Издательства за {$month}, {$year} . " +"Ключевые показатели за этот месяц следующие:
        \n" +"
          \n" +"\t
        • Новых рукописей прислано за месяц: {$newSubmissions}
        • \n" +"\t
        • Отклонено рукописей за месяц: {$declinedSubmissions}
        • \n" +"\t
        • Принято рукописей за месяц: {$acceptedSubmissions}
        • \n" +"\t
        • Всего рукописей подано в Издательстве: {$totalSubmissions}
        • \n" +"
        \n" +"Войдите в свой кабинет для просмотра более детальной информации:
        Редакторские тренды и Публикационная статистика. Полный отчет по " +"реедакторским трендам за этот месяц во вложении.
        \n" +"
        \n" +"С уважением,
        \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
        \n" +"
        \n" +"{$announcementSummary}
        \n" +"
        \n" +"Посетите наш веб-сайт, чтобы прочитать объявление полностью." + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Это письмо отправляется вновь зарегистрированному пользователю, " +#~ "приветствуя его в системе и сообщая ему имя пользователя и пароль для " +#~ "доступа к сайту." + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "Здравствуйте, {$recipientName}!
        \n" +#~ "
        \n" +#~ "Вы создали учетную запись на сайте «{$contextName}», но перед тем как " +#~ "начать ее использовать, Вам нужно подтвердить адрес электронной почты. " +#~ "Чтобы сделать это, просто пройдите по ссылке ниже:
        \n" +#~ "
        \n" +#~ "{$activateUrl}
        \n" +#~ "
        \n" +#~ "С уважением,
        \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Подтвердите свою учетную запись" diff --git a/locale/ru/locale.po b/locale/ru/locale.po new file mode 100644 index 00000000000..626dec503e7 --- /dev/null +++ b/locale/ru/locale.po @@ -0,0 +1,1683 @@ +# Petro Bilous , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-16 00:42+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "common.payments" +msgstr "Платежи" + +msgid "monograph.audience" +msgstr "Аудитория" + +msgid "monograph.audience.success" +msgstr "Детали аудитории сохранены." + +msgid "monograph.coverImage" +msgstr "Изображение Обложки" + +msgid "monograph.audience.rangeQualifier" +msgstr "Определитель Диапазона Аудитории" + +msgid "monograph.audience.rangeFrom" +msgstr "Диапазон Аудитории (от)" + +msgid "monograph.audience.rangeTo" +msgstr "Диапазон Аудитории (до)" + +msgid "monograph.audience.rangeExact" +msgstr "Диапазон Аудитории (от)" + +msgid "monograph.languages" +msgstr "Языки (Английский, Французский, Испанский)" + +msgid "monograph.publicationFormats" +msgstr "Форматы публикации" + +msgid "monograph.publicationFormat" +msgstr "Формат" + +msgid "monograph.publicationFormatDetails" +msgstr "Детали о доступных форматах изданий: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Детали об этой монографии" + +msgid "monograph.carousel.publicationFormats" +msgstr "Форматы:" + +msgid "monograph.type" +msgstr "Тип подачи" + +msgid "submission.pageProofs" +msgstr "Страница гранок" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Верстальщик загружает сюда полностью готовые файлы, которые подготовлены для " +"публикации. Используйте +Назначить, чтобы определить авторов и " +"других пользователей для корректуры гранок, с загрузкой откорректированных " +"файлов и их одобрением перед публикацией." + +msgid "monograph.task.addNote" +msgstr "Добавить к задаче" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Открытый доступ (Open Access)" + +msgid "monograph.publicationFormat.imprint" +msgstr "Выходные сведения (название бренда)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Число страниц" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Титульные элементы книги" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Сравочный аппарат книги" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Структура издания" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Детали издания (не обязательно)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Идентификация издания" + +msgid "monograph.publicationFormat.price" +msgstr "Цена" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Цена долюна быть указана." + +msgid "monograph.publicationFormat.priceType" +msgstr "Тип цены" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Процент скидки, если применимо" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Наличие издания" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Индикатор возможности возврата" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Цифровая информация" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Физические размеры" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " - x - " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Размер файла в Мб" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Ввести собственное значение размера файла?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Высота" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Толщина" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Вес" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Ширина" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Страна производства" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Цифровая техническая защита" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Район распространения продукции" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Процент налогообложения" + +msgid "monograph.publicationFormat.taxType" +msgstr "Тип налогообложения" + +msgid "monograph.publicationFormat.isApproved" +msgstr "Включить метаданные этого типа издания в каталоге для этой книги." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Пропущены рынки и цены." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Отсутствует идентификационный код." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Отсутствуют некоторые поля метаданных." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

        Выбранный вами формат публикации больше не существует для этой монографии." +"

        " + +msgid "monograph.publicationFormat.openTab" +msgstr "Откройте вкладку формата публикации." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Формат публикации" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Требуется имя." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Требуется действительная цена." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Детали формата" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Физический формат" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Этот формат будет доступен на отдельном сайте" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL удаленного контента" + +msgid "grid.catalogEntry.isbn" +msgstr "" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "" + +msgid "grid.catalogEntry.isbn10.description" +msgstr "" + +msgid "grid.catalogEntry.monographRequired" +msgstr "Требуется идентификатор монографии." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Формат публикации должен быть выбран." + +msgid "grid.catalogEntry.availability" +msgstr "Доступность" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Доступно" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Не доступно" + +msgid "grid.catalogEntry.proof" +msgstr "Корректура" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Утверждение формата" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

        Утвердите метаданные для этого формата. Метаданные можно проверить на " +"панели «Редактирование» для каждого формата.

        " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

        Указывает, что метаданные для этого формата не были утверждены.

        " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Доступность формата" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

        Сделайте этот формат доступным для читателей. Загружаемые файлы " +"и любые другие дистрибутивы появятся в записи каталога книги.

        " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

        Этот формат будет недоступен для читателей . Любые загружаемые " +"файлы или другие дистрибутивы больше не будут появляться в записи каталога " +"книги.

        " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Запись в каталоге не утверждена." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Формат не включен в каталог." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Корректура не утверждена." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Утверждено" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Ожидает утверждения" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Требуется размер файла для цифровых форматов." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Требуется код доступности продукта." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Необходимо выбрать код состава продукта." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Значение кода" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Тип кода ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Требуется идентификационный код." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Требуется значение." + +msgid "grid.catalogEntry.salesRights" +msgstr "Права на продажи" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Значение кода" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Тип прав на продажи" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Остальной мир?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Отметьте этот флажок, чтобы использовать эти \"Права продаж\" для вашего " +"формата в целом. В этом случае страны и регионы выбирать не нужно." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Для данного формата публикации уже определен тип продаж ROW (Остальной мир)." + +msgid "grid.catalogEntry.countries" +msgstr "Страны" + +msgid "grid.catalogEntry.regions" +msgstr "Регионы" + +msgid "grid.catalogEntry.included" +msgstr "Включая" + +msgid "grid.catalogEntry.excluded" +msgstr "Исключая" + +msgid "grid.catalogEntry.markets" +msgstr "Территории рынков" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Территория" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Даты публикации" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Требуется представительная роль." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Требуется формат даты." + +msgid "grid.catalogEntry.dateValue" +msgstr "Дата" + +msgid "grid.catalogEntry.dateRole" +msgstr "Роль" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Формат даты" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Требуется дата, и ее значение должно соответствовать выбранному формату даты." + +msgid "grid.catalogEntry.representatives" +msgstr "Представители" + +msgid "grid.catalogEntry.representativeType" +msgstr "Тип представителя" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Агенты" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Поставщики" + +msgid "grid.catalogEntry.agent" +msgstr "Агент" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Вы можете назначить агента, который будет представлять вас на этой " +"определенной территории. Это не обязательно." + +msgid "grid.catalogEntry.supplier" +msgstr "Поставщик" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Выберите роль:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Роль" + +msgid "grid.catalogEntry.representativeName" +msgstr "Имя" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Телефон" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Электронная почта" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Веб-сайт" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "ID Представителя" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Идентификационный номер (ID) представителя (рекомендуется GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Вы можете оставить следующий раздел пустым, если вы предоставляете " +"собственные услуги своим клиентам." + +msgid "grid.action.addRepresentative" +msgstr "Добавить представителя" + +msgid "grid.action.editRepresentative" +msgstr "Редактировать этого представителя" + +msgid "grid.action.deleteRepresentative" +msgstr "Удалить представителя" + +msgid "spotlight" +msgstr "Фокус внимания (Spotlight)" + +msgid "spotlight.spotlights" +msgstr "Фокусы внимания (Spotlights)" + +msgid "spotlight.noneExist" +msgstr "Нет текущих фокусов внимания." + +msgid "spotlight.title.homePage" +msgstr "В фокусе внимания" + +msgid "spotlight.author" +msgstr "Автор, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Пункт фокуса внимания" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Главная страница" + +msgid "grid.content.spotlights.form.location" +msgstr "Положение фокуса внимания" + +msgid "grid.content.spotlights.form.item" +msgstr "Введите название фокуса внимания (автозаполнение)" + +msgid "grid.content.spotlights.form.title" +msgstr "Название фокуса внимания" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Книга" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Требуется элемент." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Требуется название фокуса внимания." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Пожалуйста, выберите место для этого Фокуса внимания." + +msgid "grid.action.editSpotlight" +msgstr "Редактировать этот Фокус внимания" + +msgid "grid.action.deleteSpotlight" +msgstr "Удалить этот Фокус внимания" + +msgid "grid.action.addSpotlight" +msgstr "Добавить Фокус внимания" + +msgid "manager.series.open" +msgstr "Открыть подачу материала" + +msgid "manager.series.indexed" +msgstr "Индексировано" + +msgid "grid.libraryFiles.column.files" +msgstr "Файлы" + +msgid "grid.action.catalogEntry" +msgstr "Посмотреть форму элемента каталога" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Формат появился у элемента каталога" + +msgid "grid.action.editFormat" +msgstr "Редактировать этот формат" + +msgid "grid.action.deleteFormat" +msgstr "Удалить этот формат" + +msgid "grid.action.addFormat" +msgstr "Добавить формат публикации" + +msgid "grid.action.approveProof" +msgstr "Утвердить корректуру для индексирования и включения в каталог" + +msgid "grid.action.pageProofApproved" +msgstr "Файл страниц корректуры готов к публикации" + +msgid "grid.action.newCatalogEntry" +msgstr "Новый Пункт каталога" + +msgid "grid.action.publicCatalog" +msgstr "Посмотреть этот элемент в каталоге" + +msgid "grid.action.feature" +msgstr "Переключить отображение свойств" + +msgid "grid.action.featureMonograph" +msgstr "Покажите это в карусели каталога" + +msgid "grid.action.releaseMonograph" +msgstr "Отметьте этот материал как новое издание" + +msgid "grid.action.manageCategories" +msgstr "Настройте категории для этого издательства" + +msgid "grid.action.manageSeries" +msgstr "Настройте серии для этого издательства" + +msgid "grid.action.addCode" +msgstr "Добавить Код" + +msgid "grid.action.editCode" +msgstr "Редактировать этот Код" + +msgid "grid.action.deleteCode" +msgstr "Удалить этот Код" + +msgid "grid.action.addRights" +msgstr "Добавить Права на продажи" + +msgid "grid.action.editRights" +msgstr "Редактировать эти права" + +msgid "grid.action.deleteRights" +msgstr "Удалить эти права" + +msgid "grid.action.addMarket" +msgstr "Добавить Рынок сбыта" + +msgid "grid.action.editMarket" +msgstr "Редактировать этот Рынок" + +msgid "grid.action.deleteMarket" +msgstr "Удалить этот Рынок" + +msgid "grid.action.addDate" +msgstr "Добавить дату публикации" + +msgid "grid.action.editDate" +msgstr "Редактировать эту Дату" + +msgid "grid.action.deleteDate" +msgstr "Удалить эту Дату" + +msgid "grid.action.createContext" +msgstr "Создать новое Издательство" + +msgid "grid.action.publicationFormatTab" +msgstr "Показать вкладку Формат издания" + +msgid "grid.action.moreAnnouncements" +msgstr "Перейти на страницу объявлений издательства" + +msgid "grid.action.submissionEmail" +msgstr "Нажмите чтобы прочитать это письмо" + +msgid "grid.action.approveProofs" +msgstr "Просмотреть сетку корректуры" + +msgid "grid.action.proofApproved" +msgstr "Формат проверен" + +msgid "grid.action.availableRepresentation" +msgstr "Одобрить/отклонить этот формат" + +msgid "grid.action.formatAvailable" +msgstr "Включите или выключите доступность этого формата" + +msgid "grid.reviewAttachments.add" +msgstr "Добавить вложение к рецензии" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Доступные файлы" + +msgid "series.series" +msgstr "Серии" + +msgid "series.featured.description" +msgstr "Эти серии появится в основной навигации" + +msgid "series.path" +msgstr "Путь" + +msgid "catalog.manage" +msgstr "Управление Каталогом" + +msgid "catalog.manage.newReleases" +msgstr "Новые издания" + +msgid "catalog.manage.category" +msgstr "Категория" + +msgid "catalog.manage.series" +msgstr "Серии" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Пожалуйста, введите правильный ISSN." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Онлайн и печатный ISSN не должны быть одинаковыми." + +msgid "catalog.manage.series.onlineIssn" +msgstr "ISSN онлайн-версии" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN печатной версии" + +msgid "catalog.selectSeries" +msgstr "Выбрать серии" + +msgid "catalog.selectCategory" +msgstr "Выбрать Категорию" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Изображение обложки выбранных книг появляется в верхней части главной " +"страницы в виде набора с возможностью прокрутки. Нажмите кнопку \" " +"Особенности\", затем звезду, чтобы добавить книгу к карусели; щелкните " +"восклицательный знак, чтобы добавить книгу в качестве новой версии; " +"перетащите по порядку." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Нажмите кнопку \" Особенности\", а затем звезду, чтобы выбрать нужную книгу " +"для этой категории; перетащите ее в нужном порядке." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Нажмите кнопку \" Особенности\", а затем звезду, чтобы выбрать нужную книгу " +"для этой серии; перетащите ее по порядку. Серия обозначается редактором(ами) " +"и названием серии, в пределах категории или независимо друг от друга." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Карусель" + +msgid "catalog.manage.newRelease" +msgstr "Релиз (версия)" + +msgid "catalog.manage.manageSeries" +msgstr "Управлять Сериями" + +msgid "catalog.manage.manageCategories" +msgstr "Управлять Категориями" + +msgid "catalog.manage.noMonographs" +msgstr "Нет назначенных монографий." + +msgid "catalog.manage.featured" +msgstr "Популярный(е)" + +msgid "catalog.manage.categoryFeatured" +msgstr "Популярные в категории" + +msgid "catalog.manage.seriesFeatured" +msgstr "Популярные в серии" + +msgid "catalog.manage.featuredSuccess" +msgstr "Монография включена." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Монография не включена." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Монография отмечена как новое издание." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Монография не отмечена как новое издание." + +msgid "catalog.manage.feature.newRelease" +msgstr "Новое издание" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Новое издание в категории" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Новое издание в сериях" + +msgid "catalog.manage.nonOrderable" +msgstr "Эту монографию нельзя заказать, пока ее не опубликуют." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Поиск по названию или автору" + +msgid "catalog.manage.isFeatured" +msgstr "Монография опубликована. Сделать эту монографию не опубликованной." + +msgid "catalog.manage.isNotFeatured" +msgstr "Монография не опубликована. Сделать эту монографию опубликованной." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Эта монография - новый релиз. Сделайте эту монографию не новым релизом." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Эта монография - не новый релиз. Сделайте эту монографию новым релизом." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Для добавления в каталог не было выбрано ни одной заявки (подачи)." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Одна или несколько заявок (продаж) не были найдены." + +msgid "catalog.manage.findSubmissions" +msgstr "Поиск монографий для добавления в каталог" + +msgid "catalog.noTitles" +msgstr "Названия еще не опубликованы." + +msgid "catalog.noTitlesNew" +msgstr "На данный момент новых релизов нет." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Не найдено ни одного названия, которое соответствовало бы вашему запросу: " +"\"{$searchQuery}\"." + +msgid "catalog.feature" +msgstr "Популярное" + +msgid "catalog.featured" +msgstr "Популярные" + +msgid "catalog.featuredBooks" +msgstr "Популярные книги" + +msgid "catalog.foundTitleSearch" +msgstr "" +"Найдено одно наименование, которое соответствовало вашему поиску: " +"\"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"Найдено {$number} наименований, которые соответствовали вашему поиску " +"\"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Все книги" + +msgid "catalog.newReleases" +msgstr "Новые издания" + +msgid "catalog.dateAdded" +msgstr "Добавлено" + +msgid "catalog.publicationInfo" +msgstr "Информация о публикации" + +msgid "catalog.published" +msgstr "Опубликовано" + +msgid "catalog.forthcoming" +msgstr "Предстоящий(е)" + +msgid "catalog.categories" +msgstr "Категории" + +msgid "catalog.parentCategory" +msgstr "Родительская категория" + +msgid "catalog.category.subcategories" +msgstr "Подкатегории" + +msgid "catalog.aboutTheAuthor" +msgstr "Подробнее о {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Пожалуйста, обратите внимание: Для того, чтобы приобрести товары, вам " +"необходимо сначала войти в систему. Выбрав товар для покупки, вы перейдете " +"на страницу входа в систему. Любой товар, отмеченный значком открытого " +"доступа, может быть загружен бесплатно, без входа в систему." + +msgid "catalog.sortBy" +msgstr "Заказ монографий" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Выберите, как заказать книги из этой серии." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Выберите, как заказать книги в этой категории." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Выберите, как заказать книги в каталоге." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Положение Серий (сначала низшие)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Положение Серий (сначала высшие)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} просмотра файла {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Вернуться к просмотру деталей о {$monographTitle}" + +msgid "submission.search" +msgstr "Поиск книг" + +msgid "common.publication" +msgstr "Монография" + +msgid "common.publications" +msgstr "Монографии" + +msgid "common.prefix" +msgstr "Префикс" + +msgid "common.preview" +msgstr "Предпросмотр" + +msgid "common.feature" +msgstr "Популярное" + +msgid "common.searchCatalog" +msgstr "Поиск каталога" + +msgid "common.moreInfo" +msgstr "Дополнительная информация" + +msgid "common.listbuilder.completeForm" +msgstr "Пожалуйста, заполните форму полностью." + +msgid "common.listbuilder.selectValidOption" +msgstr "Пожалуйста, выберите правильный вариант из списка." + +msgid "common.listbuilder.itemExists" +msgstr "Вы не можете добавить один и тот же пункт дважды." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Заголовок главной страницы" + +msgid "navigation.catalog" +msgstr "Каталог" + +msgid "navigation.competingInterestPolicy" +msgstr "Политика в отношении конфликта интересов" + +msgid "navigation.catalog.allMonographs" +msgstr "Все монографии" + +msgid "navigation.catalog.manage" +msgstr "Управлять" + +msgid "navigation.catalog.administration.short" +msgstr "Администрирование" + +msgid "navigation.catalog.administration" +msgstr "Администрирование каталога" + +msgid "navigation.catalog.administration.categories" +msgstr "Категории" + +msgid "navigation.catalog.administration.series" +msgstr "Серии" + +msgid "navigation.infoForAuthors" +msgstr "Для авторов" + +msgid "navigation.infoForLibrarians" +msgstr "Для библиотекарей" + +msgid "navigation.infoForAuthors.long" +msgstr "Информация для авторов" + +msgid "navigation.infoForLibrarians.long" +msgstr "Информация для библиотек" + +msgid "navigation.newReleases" +msgstr "Новые издания" + +msgid "navigation.published" +msgstr "Опубликовано" + +msgid "navigation.wizard" +msgstr "Мастер настройки" + +msgid "navigation.linksAndMedia" +msgstr "Ссылки и Социальные сети" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Ссылка на ваш каталог." + +msgid "navigation.skip.spotlights" +msgstr "Перейти к фокусам внимания" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Серии" + +msgid "navigation.navigationMenus.series.description" +msgstr "Ссылки на серии." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Категория" + +msgid "navigation.navigationMenus.category.description" +msgstr "Ссылки на категорию." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Новые издания" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Ссылка на новые издания." + +msgid "context.contexts" +msgstr "Издательства на сайте" + +msgid "context.context" +msgstr "Издательство" + +msgid "context.current" +msgstr "Текущие Издательства:" + +msgid "context.select" +msgstr "Переключиться на другое Издательству:" + +msgid "user.authorization.representationNotFound" +msgstr "Запрошенный формат публикации найти не удалось." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Включить пользователей без назначенных ролей в этом Издательстве." + +msgid "user.noRoles.submitMonograph" +msgstr "Отправить предложение" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "Отправить рукопись: регистрация авторов сейчас закрыта." + +msgid "user.noRoles.regReviewer" +msgstr "Зарегистрироваться в качестве рецензента" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Зарегистрироваться в качестве рецензента: регистрация рецензентов сейчас " +"закрыта." + +msgid "user.reviewerPrompt" +msgstr "Хотите ли вы рецензировать материалы для этого издательства?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Да, запросить роль «{$userGroup}»." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Да, Я хочу, чтобы ко мне обращались с запросами на рецензирование материалов " +"для этого издательства." + +msgid "user.register.contextsPrompt" +msgstr "В каких издательствах на этом сайте вы хотите зарегистрироваться?" + +msgid "user.register.otherContextRoles" +msgstr "Запросить следующие роли." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Если вы запрашиваете роль рецензента в каком-то издательстве, пожалуйста, " +"введите темы, которые интересуют Вас как рецензента." + +msgid "user.role.manager" +msgstr "Менеджер издательства" + +msgid "user.role.pressEditor" +msgstr "Редактор издательства" + +msgid "user.role.subEditor" +msgstr "Редактор серий" + +msgid "user.role.copyeditor" +msgstr "Литературный редактор" + +msgid "user.role.proofreader" +msgstr "Корректор" + +msgid "user.role.productionEditor" +msgstr "Выпускающий редактор" + +msgid "user.role.managers" +msgstr "Менеджеры издания" + +msgid "user.role.subEditors" +msgstr "Редакторы серий" + +msgid "user.role.editors" +msgstr "Редакторы" + +msgid "user.role.copyeditors" +msgstr "Литературные редакторы" + +msgid "user.role.proofreaders" +msgstr "Корректоры" + +msgid "user.role.productionEditors" +msgstr "Выпускающие редакторы" + +msgid "user.register.selectContext" +msgstr "Выбрать издательство для регистрации:" + +msgid "user.register.noContexts" +msgstr "На сайте нет издательств, в которых Вы могли бы зарегистрироваться." + +msgid "user.register.privacyStatement" +msgstr "Заявление о конфиденциальности" + +msgid "user.register.registrationDisabled" +msgstr "" +"Это издательство в настоящий момент не регистрирует новых пользователей." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Введенный Вами пароль слишком короткий." + +msgid "user.register.readerDescription" +msgstr "Получает сообщения по электронной почте о публикации монографий." + +msgid "user.register.authorDescription" +msgstr "Может отправлять статьи в издательство." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Согласен участвовать в рецензировании материалов для этого сайта." + +msgid "user.register.reviewerDescription" +msgstr "Согласен участвовать в рецензировании материалов для этого сайта." + +msgid "user.register.reviewerInterests" +msgstr "" +"Укажите Ваши научные интересы как рецензента (основная тематика, методы " +"исследования):" + +msgid "user.register.form.userGroupRequired" +msgstr "Вы должны выбрать по крайней мере одну роль" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Да, я даю согласие на сбор и хранение моих данных в рамках политики конфиденциальности этого " +"издательства." + +msgid "site.noPresses" +msgstr "Нет доступных издательств." + +msgid "site.pressView" +msgstr "Смотреть сайт издательства" + +msgid "about.pressContact" +msgstr "Контакты издательства" + +msgid "about.aboutContext" +msgstr "О нас" + +msgid "about.editorialTeam" +msgstr "Редакция" + +msgid "about.editorialPolicies" +msgstr "Редакционная политика" + +msgid "about.focusAndScope" +msgstr "Концепция издательства" + +msgid "about.seriesPolicies" +msgstr "Политики в издании Серий и Категорий" + +msgid "about.submissions" +msgstr "Отправленные материалы" + +msgid "about.onlineSubmissions" +msgstr "Подача рукописей онлайн" + +msgid "about.onlineSubmissions.login" +msgstr "Вход" + +msgid "about.onlineSubmissions.register" +msgstr "Регистрация" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "Для отправки материала вам нужно {$login} или {$register}." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} или {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Отправить новый материал" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "просмотреть ранее отправленные материалы" + +msgid "about.authorGuidelines" +msgstr "Руководство для авторов" + +msgid "about.submissionPreparationChecklist" +msgstr "Контрольный список подготовки материала к отправке" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"В качестве одного из этапов процесса отправки авторы должны проверить " +"соответствие их материала всем следующим пунктам, материалы могут быть " +"возвращены авторам, если они не соответствуют этим требованиям." + +msgid "about.copyrightNotice" +msgstr "Условия передачи авторских прав" + +msgid "about.privacyStatement" +msgstr "Заявление о конфиденциальности" + +msgid "about.reviewPolicy" +msgstr "Процесс рецензирования" + +msgid "about.publicationFrequency" +msgstr "Периодичность издания" + +msgid "about.openAccessPolicy" +msgstr "Политика открытого доступа" + +msgid "about.pressSponsorship" +msgstr "Спонсорство издательства" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Больше информации об этой издательской системе, платформе и рабочем процессе " +"от OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Редакционный и издательский процесс OMP" + +msgid "about.aboutSoftware" +msgstr "Об Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"Это издательство использует Open Monograph Press {$ompVersion, которая " +"является программным обеспечением с открытым исходным кодом для управления " +"издательствами и их публикациями. Данное программное обеспечение " +"разработано, поддерживается и свободно распространяется Public Knowledge " +"Project по лицензии GNU General Public License. Посетите сайт PKP, чтобы узнать больше о данном ПО. Пожалуйста, свяжитесь с издательством напрямую, если у Вас " +"есть вопросы об издательстве и отправке материалов для опубликования." + +msgid "about.aboutOMPSite" +msgstr "" +"Это сайт использует Open Monograph Press {$ompVersion, которая является " +"программным обеспечением с открытым исходным кодом для управления " +"издательствами и их публикациями. Данное программное обеспечение " +"разработано, поддерживается и свободно распространяется Public Knowledge " +"Project по лицензии GNU General Public License. Посетите сайт PKP, чтобы узнать больше о данном ПО. Пожалуйста, " +"свяжитесь с издательством напрямую на сайте, если у Вас есть вопросы об " +"издательстве и отправке материалов для опубликования." + +msgid "help.searchReturnResults" +msgstr "Вернуться к результатам поиска" + +msgid "help.goToEditPage" +msgstr "Открыть новую страницу для редактирования этой информации" + +msgid "installer.appInstallation" +msgstr "Инсталляция OMP" + +msgid "installer.ompUpgrade" +msgstr "Обновить OMP" + +msgid "installer.installApplication" +msgstr "Установить Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Если вы обновляете существующую инсталляцию OMP, нажмите здесь для продолжения." + +msgid "installer.installationInstructions" +msgstr "" +"\n" +"

        Благодарим Вас за скачивание Open Monograph Press, " +"разработанной в рамках Public Knowledge Project. Перед продолжением, " +"пожалуйста, прочтите файлы README " +"идущие с этим программным обеспечением. Более подробную информацию о Public " +"Knowledge Project и их проектах в области программного обеспечения вы можете " +"узнать, посетив веб-сайт " +"PKP. Если вы обнаружили ошибки или у вас есть вопросы к технической " +"поддержке о Open Journal Systems, посмотрите форум поддержки или посетите онлайновую систему " +"регистрации ошибок PKP. Хотя обращение в форум поддержки является " +"предпочтительным способом связи, вы также можете отправить сообщение команде " +"проекта на адрес pkp.contact@gmail." +"com.

        \n" + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Шаги подготовки к установке" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

        1. Следующие файлы и каталоги (и их содержимое) должно быть сделано " +"доступным для записи:

        \n" +"\t\t
          \n" +"\t\t\t
        • config.inc.php доступен для записи (не обязательно): " +"{$writable_config}
        • \n" +"\t\t\t
        • public/ доступен для записи: {$writable_public}
        • \n" +"\t\t\t
        • cache/ доступен для записи: {$writable_cache}
        • \n" +"\t\t\t
        • cache/t_cache/ доступен для записи: " +"{$writable_templates_cache}
        • \n" +"\t\t\t
        • cache/t_compile/ доступен для записи: " +"{$writable_templates_compile}
        • \n" +"\t\t\t
        • cache/_db доступен для записи: {$writable_db_cache}
        • \n" +"\t\t
        \n" +"\n" +"\t\t

        2. Каталог для хранения загруженных на сервер файлов должен быть " +"создан и сделан доступным для записи(смотри «Настройки файлов» ниже).

        " + +msgid "installer.upgradeInstructions" +msgstr "" +"

        Версия OJS {$version}

        \n" +"\n" +"

        Благодарим Вас за скачивание Open Monograph Press, " +"разработанной в рамках Public Knowledge Project. Перед продолжением, " +"пожалуйста, прочтите файлы README " +"и UPGRADE, идущие с этим " +"программным обеспечением. Более подробную информацию о Public Knowledge " +"Project и их проектах в области программного обеспечения вы можете узнать, " +"посетив веб-сайт PKP. " +"Если вы обнаружили ошибки или у вас есть вопросы к технической поддержке о " +"Open Journal Systems, посмотрите форум поддержки или посетите онлайновую систему регистрации " +"ошибок PKP. Хотя обращение в форум поддержки является предпочтительным " +"способом связи, вы также можете отправить сообщение команде проекта на адрес " +"pkp.contact@gmail.com.

        \n" +"

        Перед продолжением настоятельно рекомендуется создать " +"резервную копию базы данных, каталога с файлами и каталога с установленной " +"системой OMP.

        \n" +"

        Если PHP запущен у вас в режиме PHP Safe Mode, пожалуйста, убедитесь, что " +"значение max_execution_time в файле конфигурации php.ini задано достаточно " +"большим. Если это или какое-либо другое ограничение по времени (например, " +"значение Timeout для Apache) будет достигнуто и процес обновления будет " +"прерван, потребуется ручное вмешательство в процесс обновления.

        " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Для полной поддержки Unicode (UTF-8), выберите UTF-8 для всех настроек " +"кодировки символов. Пожалуйста, обратите внимание, что полная поддержка " +"Unicode требует PHP, откомпилированного с поддержкой библиотеки mbstring (включена по " +"умолчанию в большинстве современных инсталляций PHP). У Вас могут возникнуть " +"проблемы с расширенными кодировками, если сервер не соответствует этим " +"требованиям.\n" +"

        \n" +"Ваш сервер сейчас поддерживает mbstring: {$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Ваш сервер сейчас разрешает загрузку файлов: {$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Ваш сервер сейчас разрешает максимальный размер загружаемого файла, равный: " +"{$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Основной язык, который будет использоваться для этой системы. Пожалуйста, " +"обратитесь к документации OMP, если вы заинтересованы в поддержке языков, " +"отсутствующих в этом списке." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Выберите дополнительные языки для поддержки в этой системе. Эти языки будут " +"доступны для использования прессой, размещенной на сайте. Дополнительные " +"языки также могут быть установлены в любое время из интерфейса " +"администрирования сайта. Локали, помеченные *, могут быть неполными." + +msgid "installer.filesDirInstructions" +msgstr "" +"Введите полный путь к существующему каталогу, в котором будут храниться " +"загруженные файлы. Этот каталог не должен быть напрямую доступен через сеть " +"Интернет. Пожалуйста, убедитесь, что каталог существует и доступен " +"для записи перед установкой. Пути к каталогам в Windows должны " +"использовать прямые слэши, например, «C:/mypress/files»." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP для хранения своих данных требует доступ к базе данных, поддерживающей " +"язык SQL. Выше, в требованиях к системе, указаны поддерживаемые базы данных. " +"В полях ниже укажите настройки, которые будут использованы для соединения с " +"базой данных." + +msgid "installer.upgradeApplication" +msgstr "Обновить Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

        ВАЖНО!

        \n" +"

        Установщик не смог автоматически перезаписать файл конфигурации. Прежде " +"чем попытаться воспользоваться системой, пожалуйста, откройте config.inc." +"php в подходящем текстовом редакторе и замените его содержимое " +"содержимым текстового поля ниже.

        " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

        Установка OMP успешно завершена.

        \n" +"

        Для начала пользования системой, войдите с " +"логином и паролем введёнными на предыдущей странице.

        \n" +"

        Если вы хотите получать новости и обновления, зарегистрируйтесь, " +"пожалуйста, на http://pkp.sfu.ca/omp/register. Если у вас есть вопросы или " +"комментарии, пожалуйста, посетите раздел Форум поддержки.

        " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

        Обновление OMP до версии {$version} было успешно завершено.

        \n" +"

        Не забудьте установить параметр installed в файле конфигурации config.inc." +"php обратно в значение On.

        \n" +"

        Если вы еще не зарегистрированы и хотите получать новости и обновления, " +"пожалуйста, зарегистрируйтесь на http://pkp.sfu.ca/ojs/register. Если " +"у Вас есть вопросы или предложения, пожалуйста, посетите форум поддержки.

        " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Крайний срок выполнения рецензии в рамках {$round}-го раунда рецензирования " +"материала {$submissionId} рецензентом {$reviewerName} был установлен равным " +"{$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"Рецензент {$reviewerName} отказался дать рецензию на {$round}-м раунде " +"рецензирования для материала {$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"Рецензент {$reviewerName} согласился дать рецензию на {$round}-м раунде " +"рецензирования для материала {$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} отметил раунд {$round} рецензирования для материала " +"{$submissionId} как нерассмотренный." + +msgid "log.editor.decision" +msgstr "" +"Решение редакции ({$decision}) по книге {$submissionId} было введено " +"редактором ({$editorName})." + +msgid "log.editor.recommendation" +msgstr "" +"Рекомендация редактора ({$decision}) по книге {$submissionId} была введена " +"редактором {$editorName}." + +msgid "log.editor.archived" +msgstr "Материал {$submissionId} был перемещен в архив." + +msgid "log.editor.restored" +msgstr "Материал {$submissionId} был восстановлен из архива в очередь." + +msgid "log.editor.editorAssigned" +msgstr "" +"Редактор {$editorName} был назначен редактором материала {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} назначил пользователя {$proofreaderName} корректором " +"материала {$submissionId}." + +msgid "log.proofread.complete" +msgstr "" +"Корректор {$proofreaderName} отправил материала {$submissionId} для " +"размещения в выпуске." + +msgid "log.imported" +msgstr "Пользователь {$userName} импортировал книгу {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Идентификационный код Добавлен." + +msgid "notification.editedIdentificationCode" +msgstr "Идентификационный код Изменен ." + +msgid "notification.removedIdentificationCode" +msgstr "Идентификационный код Удален ." + +msgid "notification.addedPublicationDate" +msgstr "Добавлена Дата публикации." + +msgid "notification.editedPublicationDate" +msgstr "Дата публикации Изменена." + +msgid "notification.removedPublicationDate" +msgstr "Дата публикации Удалена." + +msgid "notification.addedPublicationFormat" +msgstr "Добавлен Формат публикации." + +msgid "notification.editedPublicationFormat" +msgstr "Формат публикации Изменен." + +msgid "notification.removedPublicationFormat" +msgstr "Формат публикации Удален." + +msgid "notification.addedSalesRights" +msgstr "Добавлены Права на продажу." + +msgid "notification.editedSalesRights" +msgstr "Права на продажу Изменены." + +msgid "notification.removedSalesRights" +msgstr "Права на продажу Удалены." + +msgid "notification.addedRepresentative" +msgstr "Добавлен Представитель." + +msgid "notification.editedRepresentative" +msgstr "Представитель Изменен." + +msgid "notification.removedRepresentative" +msgstr "Представитель Удален." + +msgid "notification.addedMarket" +msgstr "Добавлен Рынок сбыта." + +msgid "notification.editedMarket" +msgstr "Рынок сбыта изменен." + +msgid "notification.removedMarket" +msgstr "Рынок сбыта удален." + +msgid "notification.addedSpotlight" +msgstr "Добавлен Фокус внимания." + +msgid "notification.editedSpotlight" +msgstr "Фокус внимания Изменен." + +msgid "notification.removedSpotlight" +msgstr "Фокус внимания Удален." + +msgid "notification.savedCatalogMetadata" +msgstr "Сохранены метаданные каталога." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Метаданные Формата публикации Сохранены." + +msgid "notification.proofsApproved" +msgstr "Корректура утверждена." + +msgid "notification.removedSubmission" +msgstr "Материалы подачи удалены." + +msgid "notification.type.submissionSubmitted" +msgstr "Новая книга «{$title}» была отправлена." + +msgid "notification.type.editing" +msgstr "События редактирования" + +msgid "notification.type.reviewing" +msgstr "События рецензирования" + +msgid "notification.type.site" +msgstr "События сайта" + +msgid "notification.type.submissions" +msgstr "События процесса отправки" + +msgid "notification.type.userComment" +msgstr "Читатель добавил комментарий к «{$title}»." + +msgid "notification.type.public" +msgstr "Публичные объявления" + +msgid "notification.type.editorAssignmentTask" +msgstr "Была отправлена новая книга, которой нужно назначить редактора." + +msgid "notification.type.copyeditorRequest" +msgstr "Вас попросили выполнить литературное редактирование для «{$file}»." + +msgid "notification.type.layouteditorRequest" +msgstr "Вас попросили выполнить верстку для «{$title}»." + +msgid "notification.type.indexRequest" +msgstr "Вас попросили сделать индекс для «{$title}»." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Начат процесс внутреннего рецензирования." + +msgid "notification.type.approveSubmission" +msgstr "" +"Сейчас этот материал ожидает одобрения в инструменте ввода каталогов, прежде " +"чем он появится в публичном каталоге." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Ожидает одобрения." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Монография не будет включена в каталог, пока не будет опубликована. Чтобы " +"добавить эту книгу в каталог, нажмите на вкладку \"Публикация\"." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Метод платежей не настроен." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Перед тем, как определить настройки электронной коммерции, необходимо " +"настроить способ оплаты." + +msgid "notification.type.visitCatalogTitle" +msgstr "Управление Каталогом" + +msgid "notification.type.visitCatalog" +msgstr "" +"Монография одобрена. Пожалуйста, посетите раздел \"Маркетинг и Публикации\", " +"чтобы ознакомиться с деталями каталога, используя вышеуказанные ссылки." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Вам было отказано в доступе, потому что вы, скорее всего, не являетесь " +"назначенным рецензентом на эту монографию." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Вам было отказано в доступе, потому что вы, скорее всего, не являетесь " +"автором этой книги." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Вам было отказано в доступе, потому что вы, скорее всего, не являетесь " +"назначенным рецензентом на эту монографию." + +msgid "user.authorization.monographFile" +msgstr "Вам было отказано в доступе к указанному файлу монографии." + +msgid "user.authorization.invalidMonograph" +msgstr "Недействительная монография или она не запрашивалась!" + +#, fuzzy +msgid "user.authorization.noContext" +msgstr "Нет издательства в контексте!" + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Вы пытаетесь получить доступ к книге, которая не относится к Вашей серии." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Доступ запрещен! Вы не были назначены на этот этап рабочего процесса." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Доступ запрещен! Группа пользователей, с которой вы в настоящее время " +"работаете, не была назначена на эту стадию рабочего процесса. Пожалуйста, " +"проверьте настройки Вашего издательства." + +msgid "payment.directSales" +msgstr "Скачать с сайта издательства" + +msgid "payment.directSales.price" +msgstr "Цена" + +msgid "payment.directSales.availability" +msgstr "Доступность" + +msgid "payment.directSales.catalog" +msgstr "Каталог" + +msgid "payment.directSales.approved" +msgstr "Утверждено" + +msgid "payment.directSales.priceCurrency" +msgstr "Цена ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Цены должны быть только числовыми. Не включайте символы валют." + +msgid "payment.directSales.directSales" +msgstr "Прямые продажи" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Не доступно" + +msgid "payment.directSales.notSet" +msgstr "Не установлено" + +msgid "payment.directSales.openAccess" +msgstr "Открытый доступ" + +msgid "payment.directSales.price.description" +msgstr "" +"Форматы файлов могут быть доступны для скачивания с сайта путем открытого " +"доступ для читателей без каких-либо затрат или прямых продаж (с " +"использованием онлайн-процессора оплаты, как настроено в Дистрибутиве). Для " +"этого файла укажите тип доступа." + +msgid "payment.directSales.validPriceRequired" +msgstr "Требуется действительная числовая цена." + +msgid "payment.directSales.purchase" +msgstr "Покупка {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Скачать {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Купить и загрузить Монографию или Главу" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Эта сделка заключается в приобретении отдельной главы, содержащей всю " +"монографию или ее главу, для непосредственного скачивания." + +msgid "debug.notes.helpMappingLoad" +msgstr "Перезагружен файл отображения XML-справки {$filename} в поиске {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Книга" + +msgid "submission.pdf.download" +msgstr "Скачать этот файл PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Зарегистрироваться в других издательствах" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Скрыть другие издательства" + +msgid "submission.round" +msgstr "Раунд {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Был указан недействительный опубликованный материал." + +msgid "catalog.coverImageTitle" +msgstr "Изображение обложки" + +msgid "grid.catalogEntry.chapters" +msgstr "" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +msgid "section.section" +msgstr "Серии" diff --git a/locale/ru/manager.po b/locale/ru/manager.po new file mode 100644 index 00000000000..a36014c19ee --- /dev/null +++ b/locale/ru/manager.po @@ -0,0 +1,1688 @@ +# Petro Bilous , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-19 16:56+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Это заменит любые специфические настройки печати, которые у вас были для " +"данной локали" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Извините, дополнительные языки не доступны. Свяжитесь с администратором " +"сайта, если вы хотите добавить дополнительные языки в это издательство." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Это будет язык по умолчанию для сайта этого издательства." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Пожалуйста, убедитесь, что поставлена хотя бы одна галочка для каждого " +"назначения редактора Серий." + +msgid "manager.series.form.reviewFormId" +msgstr "Пожалуйста, убедитесь, что вы выбрали правильную форму рецензии." + +msgid "manager.series.submissionIndexing" +msgstr "Не будет учитываться при индексировании издательства" + +msgid "manager.series.editorRestriction" +msgstr "Объекты могут отправляться только редакторами и редакторами серий." + +msgid "manager.series.confirmDelete" +msgstr "Вы уверены, что хотите навсегда удалить эти серии?" + +msgid "manager.series.indexed" +msgstr "Индексировано" + +msgid "manager.series.open" +msgstr "Открыть подачу материала" + +msgid "manager.series.readingTools" +msgstr "Инструменты читателя" + +msgid "manager.series.submissionReview" +msgstr "Не будет рецензироваться" + +msgid "manager.series.submissionsToThisSection" +msgstr "Рукописи, поданные в эту серию" + +msgid "manager.series.abstractsNotRequired" +msgstr "Не требовать аннотации" + +msgid "manager.series.disableComments" +msgstr "Отключить комментарии читателей для этой серии." + +msgid "manager.series.book" +msgstr "Серия книг" + +msgid "manager.series.create" +msgstr "Создать серии" + +msgid "manager.series.policy" +msgstr "Описание серии" + +msgid "manager.series.assigned" +msgstr "Редакторы для этих серий" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Добавьте редактора серий из доступных редакторов серии. После добавления " +"укажите, будет ли редактор серии осуществлять Рецензирование и/или " +"редактирование (литературное, научное, верстку и корректуру) материалов в " +"этой серии. Редакторы серии создаются нажатием кнопки Редакторы серий в разделе Роли в Управлении " +"Издательством." + +msgid "manager.series.hideAbout" +msgstr "Пропустите эту серию в \"О нас\"." + +msgid "manager.series.unassigned" +msgstr "Доступные редакторы серий" + +msgid "manager.series.form.abbrevRequired" +msgstr "Требуется аббревиатура названия для серии." + +msgid "manager.series.form.titleRequired" +msgstr "Требуется название для серии." + +msgid "manager.series.noneCreated" +msgstr "Не создано ни одной серии." + +msgid "manager.series.existingUsers" +msgstr "Существующие пользователи" + +msgid "manager.series.seriesTitle" +msgstr "Название серии" + +msgid "manager.series.restricted" +msgstr "Не разрешайте авторам посылать материалы непосредственно в эти серии." + +msgid "manager.payment.generalOptions" +msgstr "Общие параметры" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Платежи будут включены для этого издательства. Обратите внимание, что для " +"осуществления платежей пользователи должны будут войти на сайт под своей " +"учетной записью." + +msgid "manager.payment.success" +msgstr "Настройки платежей были обновлены." + +msgid "manager.settings" +msgstr "Настройки" + +msgid "manager.settings.pressSettings" +msgstr "Настройки Издательства" + +msgid "manager.settings.press" +msgstr "Издательство" + +msgid "manager.settings.publisher.identity" +msgstr "Идентификатор Издателя" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Эти поля необходимы для публикации действительных метаданных ONIX ." + +msgid "manager.settings.publisher" +msgstr "Название издателя" + +msgid "manager.settings.location" +msgstr "Географическое положение" + +msgid "manager.settings.publisherCode" +msgstr "Код Издателя" + +msgid "manager.settings.publisherCodeType" +msgstr "Тип кода издателя" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Это недействительный тип кода издателя." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Все настройки для процесса распространения (уведомления, индексирование, " +"архивирование, оплата, инструменты чтения)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Загрузки файлов монографии" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Просмотры страницы аннотации монографии" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Загрузки анотаций и файлов монографии" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Просмотры главной страницы серий" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Просмотры главной страницы издательства" + +msgid "manager.tools" +msgstr "Инструменты" + +msgid "manager.tools.importExport" +msgstr "" +"Все инструменты, предназначенные для импорта и экспорта данных " +"(издательства, монографии, пользователи)" + +msgid "manager.tools.statistics" +msgstr "" +"Инструменты для создания отчетов, связанных со статистикой использования " +"(просмотр страниц индекса каталога, просмотров абстрактных страниц " +"монографии, загрузка файлов монографии)" + +msgid "manager.users.availableRoles" +msgstr "Доступные роли" + +msgid "manager.users.currentRoles" +msgstr "Текущие роли" + +msgid "manager.users.selectRole" +msgstr "Выбрать роль" + +msgid "manager.people.allEnrolledUsers" +msgstr "Пользователи, записанные в этом издательстве" + +msgid "manager.people.allPresses" +msgstr "Все издательства" + +msgid "manager.people.allSiteUsers" +msgstr "Записать пользователя с этого сайта в это издательство" + +msgid "manager.people.allUsers" +msgstr "Все записанные пользователи" + +msgid "manager.people.confirmRemove" +msgstr "" +"Удалить этого пользователя из данного издательства? Это действие отменит все " +"роли, назначенные этому пользователю в данном издательстве." + +msgid "manager.people.enrollExistingUser" +msgstr "Записать существующего пользователя" + +msgid "manager.people.enrollSyncPress" +msgstr "С издательством" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Выберите пользователя (или нескольких) для слияния в другую учетную запись " +"пользователя (например, когда кто-то завел себе две учетные записи). Учетная " +"запись (записи), выбранная первой, будет удалена, а все связанные с ней " +"монографии, редакционные задания и т. д. будут присоединены к второй учетной " +"записи." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Выберите пользователя, которому будут переданы авторство предыдущего " +"пользователя, его редакционные задания и т. д." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Синхронизация назначений запишет всех пользователей, которым назначена " +"определенная роль в определенном издательстве, на ту же роль в этом " +"издательстве. Эта функция позволяет синхронизировать общий набор " +"пользователей (например, рецензентов) между издательствами." + +msgid "manager.people.confirmDisable" +msgstr "" +"Отключить этого пользователя? Это запретит пользователю входить в систему " +"под его учетной записью.\n" +"\n" +"Вы также (при необходимости) можете указать пользователю причину отключения " +"его учетной записи." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Извините, у вас нет достаточных административных прав для управления записью " +"этого пользователя. Возможные причины:\n" +"\t\t
          \n" +"\t\t\t
        • Этот пользователь является администратором сайта
        • \n" +"\t\t\t
        • Этот пользователь активен в журналах, которыми вы не можете " +"управлять
        • \n" +"\t\t
        \n" +"\tЭта задача должна быть выполнена администратором сайта.\n" +"\t" + +msgid "manager.system" +msgstr "Системные настройки" + +msgid "manager.system.archiving" +msgstr "Архивирование" + +msgid "manager.system.reviewForms" +msgstr "Формы рецензии" + +msgid "manager.system.readingTools" +msgstr "Инструменты читателя" + +msgid "manager.system.payments" +msgstr "Платежи" + +msgid "user.authorization.pluginLevel" +msgstr "Вы не имеете достаточных прав для управления этим плагином." + +msgid "manager.pressManagement" +msgstr "Управление издательством" + +msgid "manager.setup" +msgstr "Установка" + +msgid "manager.setup.aboutItemContent" +msgstr "Содержание" + +msgid "manager.setup.addAboutItem" +msgstr "Добавить информацию об издательстве" + +msgid "manager.setup.addChecklistItem" +msgstr "Добавить элемент в контрольный список" + +msgid "manager.setup.addItem" +msgstr "Добавить элемент" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Добавить элемент на страницу «Об издательстве»" + +msgid "manager.setup.addNavItem" +msgstr "Добавить элемент" + +msgid "manager.setup.addSponsor" +msgstr "Добавить организацию-спонсора" + +msgid "manager.setup.announcements" +msgstr "Объявления" + +msgid "manager.setup.announcements.success" +msgstr "Настройки объявлений были обновлены." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Объявления можно публиковать, чтобы информировать читателей о новостях и " +"событиях издательства. Опубликованные объявления будут появляться на " +"странице «Объявления»." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Дополнительная информация" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Введите любую дополнительную информацию, которая должна отображаться " +"читателям на странице Объявления." + +msgid "manager.setup.appearInAboutPress" +msgstr "(появится в разделе «Об издательстве») " + +msgid "manager.setup.contextAbout" +msgstr "О нас" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Включите любую информацию о вашем издательстве, которая может быть интересна " +"читателям, авторам или рецензентам. Сюда может входить ваша политика " +"открытого доступа, фокус и сфера деятельности издательства, раскрытие " +"информации о спонсорах, а также его история." + +msgid "manager.setup.contextSummary" +msgstr "Общая информация об издательстве" + +msgid "manager.setup.copyediting" +msgstr "Литературные редакторы" + +msgid "manager.setup.copyeditInstructions" +msgstr "Руководство по литературному редактированию" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Руководство по литературному и научному редактированию будет доступно " +"редакторам, авторам и редакторам глав на этапе редактирования поданного " +"материала. Ниже приведен набор инструкций по умолчанию в формате HTML, " +"который может быть в любой момент изменен или заменен управляющим журнала (в " +"формате HTML или простого текста)." + +msgid "manager.setup.copyrightNotice" +msgstr "Условия передачи авторских прав" + +msgid "manager.setup.coverage" +msgstr "Охват" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Максимальная высота изображения обложки" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Максимальная ширина изображения обложки" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Изображения будут уменьшены, если они превышают этот размер, но никогда не " +"будут увеличены или растянуты для подгонки в соответствии с этими размерами." + +msgid "manager.setup.customizingTheLook" +msgstr "Шаг 5. Настройка внешнего вида" + +msgid "manager.setup.customTags" +msgstr "Пользовательские теги" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Пользовательские HTML теги заголовков, которые вставляются в заголовок " +"каждой страницы (например, META теги)." + +msgid "manager.setup.details" +msgstr "Детали" + +msgid "manager.setup.details.description" +msgstr "Название издательства, ISSN, контакты, спонсоры и поисковые движки." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Управляющий издательством будет регистрировать всех пользователей. Редакторы " +"или редакторы разделов могут регистрировать учетные записи для рецензентов." + +msgid "manager.setup.discipline" +msgstr "Академические дисциплины и разделы дисциплин" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Полезно использовать, когда издательство выходит за рамки одной дисциплины и/" +"или авторы присылают междисциплинарные материалы." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(Например: История; Образование; Социология; Психология; Культурология; " +"Право)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Приведите примеры соответствующих академических дисциплин для этого " +"издательства" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Добавить содержание для текущей книги (если оно доступно)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Контент главной страницы журнала" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Отображаемые книги на главной странице" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Популярные книги" + +msgid "manager.setup.displayInSpotlight" +msgstr "Отображение книг в фокусе внимания на главной странице" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Фокус внимания (Spotlight)" + +msgid "manager.setup.displayNewReleases" +msgstr "Отображаемые новые книги на главной странице" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Новые издания" + +msgid "manager.setup.enableDois.description" +msgstr "" + +#, fuzzy +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "Пожалуйста выберите объекты, которым должны быть присвоены DOI." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "" + +msgid "manager.dois.formatIdentifier.file" +msgstr "" + +msgid "manager.setup.editorDecision" +msgstr "Решение редактора" + +msgid "manager.setup.emailBounceAddress" +msgstr "Адрес для ошибок" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"В случае возникновения проблем с доставкой письма электронной почты " +"сообщение об ошибке будет направлено на этот адрес." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Чтобы отправлять недоставленные письма на адрес для ошибок, администратор " +"сайта должен включить параметр allow_envelope_sender в " +"конфигурационном файле сайта. Также может потребоваться настройка сервера, " +"описание этой настройки приведено в документации OMP." + +msgid "manager.setup.emails" +msgstr "Идентификация в письме электронной почты" + +msgid "manager.setup.emailSignature" +msgstr "Подпись" + +#, fuzzy +msgid "manager.setup.emailSignature.description" +msgstr "" +"Подготовленные письма, отправляемые системой от имени редакции, будут " +"содержать следующую подпись, добавленную в конце письма." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Включить объявления" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Объявления можно публиковать, чтобы информировать читателей о новостях и " +"событиях издательства. Опубликованные объявления будут появляться на " +"странице «Объявления»." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Показывать на главной странице" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Сколько объявлений показывать на главной странице. Оставьте поле пустым, " +"если вы не хотите показывать объявления на главной странице." + +msgid "manager.setup.enablePressInstructions" +msgstr "Включить показ этого издательства для всех на сайте" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Пользовательские идентификаторы будут использоваться для идентификации " +"опубликованных элементов." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Пользовательские идентификаторы будут использоваться для идентификации " +"гранок (например, HTML или PDF файлы) для опубликованных элементов." + +msgid "manager.setup.enableUserRegistration" +msgstr "Посетители могут зарегистрировать учетную запись в издательстве." + +msgid "manager.setup.focusAndScope" +msgstr "Концепция издательства" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Опишите для авторов, читателей и библиотек диапазон тем и типы монографий и " +"других материалов, которые будет публиковать издательство." + +msgid "manager.setup.focusScope" +msgstr "Концепция" + +msgid "manager.setup.focusScopeDescription" +msgstr "ПРИМЕР HTML данных" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Для авторов, чтобы проиндексировать их работу" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP поддерживает протокол сбора метаданных Open Archives Initiative, который становится " +"стандартом для обеспечения хорошо индексированного доступа к электронным " +"исследовательским ресурсам в мировом масштабе. Авторы будут использовать " +"аналогичный шаблон для предоставления метаданных о своем материале. " +"Управляющий издательством должен выбрать категории для индексирования и " +"предоставить авторам соответствующие примеры, чтобы помочь в индексировании " +"их работ." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Адрес электронной почты контактного лица обязателен." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Имя контактного лица обязательно." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Количество рецензентов для одного материала обязательно." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "" +"Адрес электронной почты лица, обеспечивающего техническую поддержку, " +"обязателен." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Имя лица, обеспечивающего техническую поддержку, обязательно." + +msgid "manager.setup.generalInformation" +msgstr "Общая информация" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Шаг 1. Подробнее об издательстве" + +msgid "manager.setup.guidelines" +msgstr "Руководство" + +msgid "manager.setup.preparingWorkflow" +msgstr "Шаг 3. Подготовка рабочего процесса" + +msgid "manager.setup.identity" +msgstr "Идентификация издательства" + +msgid "manager.setup.information" +msgstr "Информация" + +msgid "manager.setup.information.description" +msgstr "" +"Краткие описания издательства для библиотек, потенциальных авторов и " +"читателей. Описания будут доступны в боковой панели сайта, когда будет " +"добавлен блок «Информация»." + +msgid "manager.setup.information.forAuthors" +msgstr "Для авторов" + +msgid "manager.setup.information.forLibrarians" +msgstr "Для библиотекарей" + +msgid "manager.setup.information.forReaders" +msgstr "Для читателей" + +msgid "manager.setup.information.success" +msgstr "Информация для этого издательства была обновлена." + +msgid "manager.setup.institution" +msgstr "Организация" + +msgid "manager.setup.itemsPerPage" +msgstr "Элементов на странице" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Ограничение количества элементов (например, материалов, пользователей или " +"заданий на редактирование), показываемых в списке. Идущие далее элементы " +"будут показаны на следующей странице." + +msgid "manager.setup.keyInfo" +msgstr "Ключевая информация" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Введите краткое описание журнала и укажите редакторов, управляющих и других " +"членов редколлегии." + +msgid "manager.setup.labelName" +msgstr "Название метки" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Верстальщики" + +msgid "manager.setup.layoutInstructions" +msgstr "Руководство по верстке" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Инструкции по верстке могут быть подготовлены для форматирования элементов " +"публикации в издательстве и введены ниже в HTML или обычным текстом. Они " +"будут доступны верстальщику и редактору разделов на странице редактирования " +"каждого представления. (Поскольку каждое издательство может использовать " +"собственные форматы файлов, библиографические стандарты, таблицы стилей и т." +"д., набор инструкций по умолчанию не предоставляется.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Шаблоны верстки" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Шаблоны могут быть загружены в Верстку для каждого из стандартных форматов, " +"опубликованных в издательстве (например, монография, книжный обзор и т.д.), " +"с использованием любого формата файла (например, pdf, doc и т.д.), с " +"добавлением примечаний с указанием шрифта, размера, полей и т.д., чтобы " +"служить руководством для верстальщиков и корректоров." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Файл шаблона" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Заголовок" + +msgid "manager.setup.lists" +msgstr "Списки" + +msgid "manager.setup.lists.success" +msgstr "Список настроек был обновлен." + +msgid "manager.setup.look" +msgstr "Внешний вид" + +msgid "manager.setup.look.description" +msgstr "" +"Верхний колонтитул главной страницы, контент, колонтитулы издательства, " +"панель навигации и таблица стилей." + +msgid "manager.setup.settings" +msgstr "Настройки" + +msgid "manager.setup.management.description" +msgstr "" +"Доступ и безопасность, планирование, объявления, литературное " +"редактирование, верстка и корректура." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Управление основными шагами редакционного процесса" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Управление и настройка процесса публикации" + +msgid "manager.setup.managingThePress" +msgstr "Шаг 4. Управление настройками" + +msgid "manager.setup.masthead.success" +msgstr "Выходные данные этого издательства были обновлены." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Файл изображения не загружен." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Таблица стилей не загружена." + +msgid "manager.setup.note" +msgstr "Заметка" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"При использовании Уведомления автора по электронной почте, укажите адреса " +"электронной почты всех соавторов для подачи несколькими авторами, а не " +"только пользователя, подавшего заявку." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Корректура будет осуществляться редактором или редактором раздела, " +"назначенным на поданную рукопись." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Редактор или редактор разделов, назначенный на рукопись, подготовит HTML, " +"PDF и т.д., файлы." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Редактор или редактор разделов, назначенный для заявки, проверит гранки." + +msgid "manager.setup.numPageLinks" +msgstr "Ссылки на страницы" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Ограничение числа ссылок, показываемых на последующих страницах в списке." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Доступ к контенту издательства" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN онлайн-версии" + +msgid "manager.setup.policies" +msgstr "Политики" + +msgid "manager.setup.policies.description" +msgstr "" +"Концепция издательства, тип рецензирования, разделы, конфиденциальность, " +"безопасность и дополнительная информация." + +msgid "manager.setup.privacyStatement.success" +msgstr "Положение о конфиденциальности было обновлено." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"С этой страницы можно настроить различные компоненты внешнего вида " +"издательства, в том числе элементы заголовка и нижнего колонтитула, стиль и " +"тему, а также то, как пользователям представляются списки информации." + +msgid "manager.setup.pressDescription" +msgstr "Общая информация об издательстве" + +msgid "manager.setup.pressDescription.description" +msgstr "Краткое описание вашего издательства." + +msgid "manager.setup.aboutPress" +msgstr "О нас" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Включите любую информацию о вашем издательстве, которая может быть интересна " +"читателям, авторам или рецензентам. Сюда может входить ваша политика " +"открытого доступа, фокус и сфера деятельности издательства, раскрытие " +"информации о спонсорах, а также его история." + +msgid "manager.setup.pressArchiving" +msgstr "Архивирование издательства" + +msgid "manager.setup.homepageContent" +msgstr "Контент главной страницы издательства" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Главная страница издательства по умолчанию состоит из навигационных ссылок. " +"Дополнительный контент на главной странице может быть добавлен с помощью " +"одного или нескольких следующих параметров, которые появятся на странице в " +"показанном порядке." + +msgid "manager.setup.pressHomepageContent" +msgstr "Контент главной страницы издательства" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Главная страница издательства по умолчанию состоит из навигационных ссылок. " +"Дополнительный контент на главной странице может быть добавлен с помощью " +"одного или нескольких следующих параметров, которые появятся на странице в " +"показанном порядке." + +msgid "manager.setup.contextInitials" +msgstr "Аббревиатура названия издательства" + +msgid "manager.setup.selectCountry" +msgstr "" + +msgid "manager.setup.layout" +msgstr "Макет издательства" + +msgid "manager.setup.pageHeader" +msgstr "Верхний колонтитул страницы издательства" + +msgid "manager.setup.pageHeaderDescription" +msgstr "Описание верхнего колонтитула страницы" + +msgid "manager.setup.pressPolicies" +msgstr "Шаг 2. Политики издательства" + +msgid "manager.setup.pressSetup" +msgstr "Настройки издательства" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Ваши настройки издательства был обновлены." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Неверный формат таблицы стилей сайта. Разрешенный формат — .css." + +msgid "manager.setup.pressTheme" +msgstr "Тема оформления издательства" + +msgid "manager.setup.pressThumbnail" +msgstr "Миниатюра издательства" + +msgid "manager.setup.pressThumbnail.description" +msgstr "Маленький логотип, который может использоваться в списке издательств." + +msgid "manager.setup.contextTitle" +msgstr "Название издательства" + +msgid "manager.setup.printIssn" +msgstr "Печатный ISSN" + +msgid "manager.setup.proofingInstructions" +msgstr "Руководство по корректуре" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Руководство по корректуре будет доступно корректорам, авторам, верстальщикам " +"и редакторам разделов на этапе редактирования материала. Ниже приведен набор " +"инструкций по умолчанию в формате HTML, который может быть в любой момент " +"изменен или заменен управляющим издательства (в формате HTML или простого " +"текста)." + +msgid "manager.setup.proofreading" +msgstr "Корректоры" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Представьте верстальщикам Руководство по верстке." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Материалы могут публиковаться вместе, как часть монографии со своим " +"собственным содержанием. В качестве альтернативы, отдельные материалы могут " +"публиковаться по мере готовности, добавляясь в содержание «текущего» тома. " +"Опишите читателям (на странице «О нас») систему публикации, которую " +"использует это издательство, и ожидаемую периодичность публикации." + +msgid "manager.setup.publisher" +msgstr "Издатель" + +msgid "manager.setup.publisherDescription" +msgstr "Название организации - издателя, оно появится в разделе \"О нас\"." + +msgid "manager.setup.referenceLinking" +msgstr "Вставка гиперссылок на источники" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Руководство по верстке для ссылок на источники литературы" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Пользователи должны быть зарегистрированы и войти в систему под своей " +"учетной записью, чтобы просмотреть находящийся в открытом доступе контент." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Пользователи должны быть зарегистрированы и войти в систему под своей " +"учетной записью, чтобы просматривать сайт издательства." + +msgid "manager.setup.reviewGuidelines" +msgstr "Руководство для рецензентов" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Предоставить внешним рецензентам критерии оценки пригодности материала для " +"публикации, которые могут включать инструкции по подготовке эффективного и " +"полезного рецензирования. Рецензенты будут иметь возможность предоставить " +"комментарии, предназначенные для автора и редактора, а также отдельные " +"комментарии только для редактора." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Руководство для внутренних рецензентов" + +msgid "manager.setup.reviewOptions" +msgstr "Параметры рецензирования" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Автоматические напоминания по электронной почте" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Чтобы активировать эти опции, администратор сайта должен включить в " +"конфигурационном файле OMP опцию scheduled_tasks. Для поддержки " +"этой функциональности может потребоваться дополнительная конфигурация " +"сервера (что может быть возможно не на всех серверах), как указано в " +"документации OMP." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Редакторы будут оценивать качество работы рецензентов по пятибалльной шкале " +"после каждой рецензии." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Ограничить доступ к файлам" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Рецензенты будут иметь доступ к файлу рукописи только после того, как они " +"дадут согласие на рецензирование." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Доступ рецензента" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Прямой доступ для рецензента" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Рецензентам может быть отправлена безопасная ссылка в письме-приглашении, по " +"которой можно получить доступ к рецензированию материала без входа в " +"систему. Для доступа к другим страницам необходимо будет войти в систему." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Добавить безопасную ссылку в письмо-приглашение для рецензентов." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Рейтинги рецензентов" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Напоминания рецензентам" + +msgid "manager.setup.reviewPolicy" +msgstr "Правила рецензирования" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Введите краткое описание (50-300 знаков) издательства, которое будут " +"отображать поисковые машины, при показе издательства в результатах выдачи." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Индексация для поиска" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Помогите поисковым машинам вроде Google находить и показывать ваш сайт. " +"Рекомендуется отправить карту " +"вашего сайта." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Настройки индексирования для поисковых машин были обновлены." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Разделы и редакторы разделов" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Если разделы не добавлены, то все отправляемые материалы направляются в " +"раздел «Монографии» по умолчанию.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Для создания или изменения разделов издательства (например, «Монографии», " +"«Обзоры книг» и т. д.), перейдите в «Управление разделами».

        Авторы при отправке материалов смогут выбрать..." + +msgid "manager.setup.securitySettings" +msgstr "Настройки доступа и безопасности" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Другие опции, связанные с безопасностью и доступом, могут быть настроены со " +"страницы .Доступ и безопасность." + +msgid "manager.setup.selectEditorDescription" +msgstr "" +"Редактор, который будет контролировать прохождение материала через " +"редакционный процесс." + +msgid "manager.setup.selectSectionDescription" +msgstr "Раздел издательства, в котором будет рассматриваться данный материал." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Всегда показывать ссылки на гранки и уведомлять об ограниченном доступе." + +msgid "manager.setup.siteAccess.view" +msgstr "Доступ к сайту" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Показывать содержимое монографий" + +msgid "manager.setup.stepsToPressSite" +msgstr "Пять шагов к веб-сайту издательства" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(Например, Фотосинтез; Черные дыры; Проблема четырех красок; Теория Байеса)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Ключевые слова" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Введите примеры ключевых слов или тем, на которые могут ориентироваться " +"авторы" + +msgid "manager.setup.submissionGuidelines" +msgstr "Руководство по отправке материала" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Требуется элемент контрольного списка." + +msgid "manager.setup.workflow" +msgstr "Рабочий поток" + +msgid "manager.setup.submissions.description" +msgstr "" +"Руководство для авторов, авторские права и индексирование (включая " +"регистрацию)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(Например, Историческая справка; Квазиэкспериментальный; Литературный " +"анализ; Исследование/Опрос)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Тип (метод/подход)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Введите примеры соответствующих типов исследования, методов и подходов для " +"данной области" + +msgid "manager.setup.useCopyeditors" +msgstr "Будет назначен литературный редактор для каждого материала." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "" +"Издательство будет использовать редакционную коллегию/коллегию рецензентов." + +msgid "manager.setup.useImageTitle" +msgstr "Изображение заголовка" + +msgid "manager.setup.useStyleSheet" +msgstr "Таблица стилей издательства" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Для подготовки HTML, PDF и т.д. файлов к электронной публикации будет " +"назначен верстальщик." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Для проверки (совместно с авторами) гранок перед публикацией будет назначен " +"корректор." + +msgid "manager.setup.userRegistration" +msgstr "Регистрация пользователей" + +msgid "manager.setup.useTextTitle" +msgstr "Текст заголовка" + +msgid "manager.setup.volumePerYear" +msgstr "Томов в год" + +msgid "manager.setup.publicationFormat.code" +msgstr "Формат" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Формат публикации должен быть выбран." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Вы должны присвоить имя этому формату." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Это печатный (нецифровой) формат?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Поскольку этот формат публикации в настоящее время используется монографией " +"в вашем издательстве, его нельзя удалить." + +msgid "manager.setup.newPublicationFormat" +msgstr "Новый формат публикации" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Чтобы создать новый формат публикации, заполните форму ниже и нажмите кнопку " +"\"Создать\"." + +msgid "manager.setup.genresDescription" +msgstr "" +"Эти жанры используются для именования файлов и представлены в выпадающем " +"меню при загрузке файлов. Жанры, обозначенные ##, позволяют пользователю " +"связать файл либо со всей книгой 99Z, либо с отдельной главой по номеру " +"(например, 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Этот журнал в данное время не принимает материалы. Зайдите в настройки " +"рабочего процесса, чтобы разрешить отправку материалов." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Запрещает пользователям отправлять новые статьи в журнал. Отправка " +"материалов может быть отключена для отдельных разделов журнала на странице " +"настроек серии издательства." + +msgid "manager.setup.genres" +msgstr "Жанры" + +msgid "manager.setup.newGenre" +msgstr "Новый жанр монографий" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Чтобы создать новый жанр публикации, заполните форму ниже и нажмите кнопку " +"\"Создать\"." + +msgid "manager.setup.deleteSelected" +msgstr "Удалить выбранное" + +msgid "manager.setup.restoreDefaults" +msgstr "Восстановить настройки по умолчанию" + +msgid "manager.setup.prospectus" +msgstr "Руководство по проспекту(брошюре)" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Руководство по составлению брошюры - это документ, подготовленный " +"издательством, который помогает автору описать представленные материалы " +"таким образом, чтобы редакция могла определить их ценность. Брошюра может " +"включать множество вопросов - от маркетинговых возможностей до теоретической " +"ценности; в любом случае, редакция должна создать руководство по составлению " +"брошюры, которое дополнит план их публикаций." + +msgid "manager.setup.submitToCategories" +msgstr "Разрешить подачу в категории" + +msgid "manager.setup.submitToSeries" +msgstr "Разрешить подачу в серии" + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN (международный стандартный серийный номер) - это восьмизначный номер, " +"который идентифицирует периодические публикации, включая электронные " +"серийные издания. Номер можно получить из ISSN International Centre." + +msgid "manager.setup.currentFormats" +msgstr "Текущие форматы" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Категории и серии" + +msgid "manager.setup.categories.description" +msgstr "" +"Вы можете создать список категорий, которые помогут организовать ваши " +"публикации. Категории представляют собой группировки книг по тематике, " +"например, \"Экономика\", \"Литература\", \"Поэзия\" и так далее. Категории " +"могут быть вложены в \"материнские\" категории: например, материнская " +"категория \"Экономика\" может включать отдельные категории \"Микроэкономика" +"\" и \"Макроэкономика\". Посетители смогут осуществлять поиск и " +"просматривать прессу по категориям." + +msgid "manager.setup.series.description" +msgstr "" +"Вы можете создать любое количество серий, чтобы помочь в организации ваших " +"публикаций. Серия представляет собой специальный набор книг, посвященных " +"теме или темам, которые кто-то предложил, обычно преподаватель или два, а " +"затем курирует. Посетители смогут искать и просматривать издания по сериям." + +msgid "manager.setup.reviewForms" +msgstr "Формы рецензии" + +msgid "manager.setup.roleType" +msgstr "Тип роли" + +msgid "manager.setup.authorRoles" +msgstr "Роли автора" + +msgid "manager.setup.managerialRoles" +msgstr "Роли управляющих" + +msgid "manager.setup.availableRoles" +msgstr "Доступные роли" + +msgid "manager.setup.currentRoles" +msgstr "Текущие роли" + +msgid "manager.setup.internalReviewRoles" +msgstr "Роли внутренних рецензентов" + +msgid "manager.setup.masthead" +msgstr "Выходные данные" + +msgid "manager.setup.editorialTeam" +msgstr "Редакция" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Список редакторов, управляющих директоров и других лиц, связанных с " +"издательством." + +msgid "manager.setup.files" +msgstr "Файлы" + +msgid "manager.setup.productionTemplates" +msgstr "Производственные шаблоны" + +msgid "manager.files.note" +msgstr "" +"Внимание: файловый менеджер — это дополнительная возможность, которая " +"позволяет напрямую просматривать и управлять файлами и каталогами, " +"связанными с этим издательством." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

        Предложенные \"Creative Commons Copyright Notices\" Уведомления об " +"авторских правах

        \n" +"

        Предложенная политика для издательств, предлагающих открытый доступ.\n" +"Авторы, публикующиеся в этой прессе, соглашаются со следующими условиями:\n" +"
          \n" +"\t
        1. Авторы сохраняют авторские права и предоставляют право первой " +"публикации произведения с одновременной лицензией на Лицензия на атрибуцию " +"Creative Commons, которая позволяет другим лицам делиться произведением " +"с подтверждением авторства произведения и его первоначальной публикации в " +"этом издании.
        2. .\n" +"\t
        3. Авторы имеют возможность заключать отдельные дополнительные договорные " +"серии для неэксклюзивного распространения версии произведения, " +"опубликованной в прессе (например, размещать ее в институциональном " +"хранилище или публиковать в книге), с подтверждением ее первоначальной " +"публикации в этой прессе.
        4. .\n" +"\t
        5. Авторам разрешается и рекомендуется размещать свои работы в Интернете " +"(например, в институциональных репозиториях или на своем веб-сайте) до и во " +"время процесса представления, поскольку это может привести к продуктивному " +"обмену, а также к более раннему и широкому цитированию опубликованных работ " +"(см. The Effect of Open Access).
        6. .\n" +"
        \n" +"\n" +"

        Предложенная политика для издательств, предлагающих отложенный открытый " +"доступ

        .\n" +"Авторы, публикующиеся в этом издательстве, соглашаются со следующими " +"условиями:\n" +"
          \n" +"\t
        1. Авторы сохраняют авторские права и предоставляют право первой " +"публикации в издательстве, при этом произведение [SPECIFY PERIOD OF TIME] " +"после публикации одновременно лицензируется под Лицензия на атрибуцию " +"Creative Commons, которая позволяет другим лицам делиться произведением " +"с подтверждением авторства произведения и его первоначальной публикации в " +"этом издательстве.
        2. .\n" +"\t
        3. Авторы имеют возможность заключать отдельные дополнительные " +"договорные серии для неэксклюзивного распространения версии произведения, " +"опубликованной в издательстве (например, размещать ее в институциональном " +"хранилище или публиковать в книге), с подтверждением ее первоначальной " +"публикации в здесь.
        4. .\n" +"\t
        5. Авторам разрешается и рекомендуется размещать свои работы в Интернете " +"(например, в институциональных репозиториях или на своем веб-сайте) до и во " +"время процесса представления, поскольку это может привести к продуктивному " +"обмену, а также к более раннему и широкому цитированию опубликованных работ " +"(см. Влияние открытого доступа).
        6. .\n" +"
        macos/deepLFree.translatedWithDeepL.text" + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Шаги: Очередь материалов > Реценизрование материала > Редактирование " +"материала > Содержание выпуска.

        \n" +"Выберите модель для управления этими аспектами редакционного процесса. " +"(Чтобы определить выпускающего редактора и редакторов разделов, перейдите в " +"«Редакторы» в разделе «Управление журналом».)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

        Чтобы дать возможность читателям найти онлайн-версии произведения, " +"цитируемого автором, доступны следующие опции.

        .\n" +"\n" +"
          \n" +"\t
        1. Добавить инструмент чтения

          Управляющий может " +"добавить \"Поиск ссылок\" к инструментам чтения, сопровождающим " +"опубликованные элементы, что позволяет читателям вставлять заголовок ссылки, " +"а затем осуществлять поиск в предварительно выбранных научных базах данных " +"для цитируемой работы.

        2. .\n" +"\t
        3. Внедрить ссылки в список литературы

          Верстальщик " +"может добавить ссылку на источники, которые можно найти в Интернете, " +"используя следующие инструкции (которые можно редактировать).

        4. .\n" +"
        " + +msgid "manager.publication.library" +msgstr "Библиотека издательства" + +msgid "manager.setup.resetPermissions" +msgstr "Сбросить разрешения для монографий" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Вы уверены, что хотите сбросить данные разрешений, уже назначенные " +"монографиям?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Заявление об авторском праве и лицензионная информация будут постоянно " +"прилагаться к публикуемому контенту, гарантируя, что эти данные не изменятся " +"в случае изменения политики прессы в отношении новых материалов. Чтобы " +"сбросить сохраненную информацию о разрешениях, уже прикрепленных к " +"опубликованному контенту, воспользуйтесь кнопкой, расположенной ниже." + +msgid "manager.setup.resetPermissions.success" +msgstr "Разрешения для монографий были успешно сброшены." + +msgid "grid.genres.title.short" +msgstr "Компоненты" + +msgid "grid.genres.title" +msgstr "Компоненты монографий" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Отправить копию основному контактному лицу, указанному в настройках " +"издательства." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Путь серии должен состоять только из букв и цифр." + +msgid "grid.series.pathExists" +msgstr "" +"Такой путь к серии уже существует. Пожалуйста, введите уникальный путь." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Выбрать серии" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" +"Пожалуйста, выберите серию, на которую вы хотите сослаться в этом пункте " +"меню." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Выбрать Категорию" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" +"Пожалуйста, выберите категорию, на которую вы хотите сослаться в этом пункте " +"меню." + +msgid "grid.series.urlWillBe" +msgstr "URL серии будет: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "Статистика монографии" + +msgid "stats.publications.details" +msgstr "Детали монографии" + +msgid "stats.publications.none" +msgstr "" +"Не найдено статей со статистикой использования, которая соответствует данным " +"параметрам." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Общее количество просмотров каталога по датам" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Общее число просмотров файлов по датам" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} из {$total} монографий(и/я)" + +msgid "stats.publications.abstracts" +msgstr "Записи каталога" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Нет выбранных объектов." + +msgid "plugins.importexport.common.error.validation" +msgstr "Невозможно конвертировать выбранные объекты." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Неправильный XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Экспортировать подачи материалов" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "" + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "" + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "" + +msgid "emailTemplate.variable.context.contextName" +msgstr "" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "" + +msgid "emailTemplate.variable.context.contactName" +msgstr "" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "" + +msgid "mailable.validateEmailContext.name" +msgstr "" + +msgid "mailable.validateEmailContext.description" +msgstr "" + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "" + +msgid "doi.description" +msgstr "" +"Включает присвоение идентификаторов цифровых объектов (Digital Object " +"Identifier) книгам, главам, видам изданий и файлам в OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"Пожалуйста, настройте модуль «DOI», чтобы иметь возможность использовать DOI " +"в OMP и управлять ими:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Пожалуйста выберите публикуемые объекты, которые будут иметь присвоенные " +"идентификаторы цифровых объектов (Digital Object Identifier, DOI):" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Монографии" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Главы" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Форматы публикации" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Файлы" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Префикс DOI" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "Префикс DOI обязателен и должен быть в форме 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Используйте шаблон, введенный ниже, для генерации суффиксов DOI. Используйте " +"%p для абревиатуры издательства, %m для идентификатора монографии, %c для " +"идентификатора главы, %f для идентификатора формата публикации, %s для " +"идентификатора файла и %x для \"Идентификатора пользователя\"." + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "Например, izd%ppub%r, чтобы создать DOI, например 10.1234/isdMURpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "для монографий" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "для глав" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "для форматов изданий" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "для файлов" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Пожалуйста, введите шаблон суффикса DOI для монографий." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Пожалуйста, введите шаблон суффикса DOI для глав." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Пожалуйста, введите шаблон суффикса DOI для форматов публикаций." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Пожалуйста, введите шаблон суффикса DOI для файлов." + +msgid "doi.manager.settings.doiReassign" +msgstr "Переприсвоить DOI" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Если вы измените вашу конфигурацию DOI, то она не затронет DOI, которые уже " +"были присвоены. После сохранения конфигурации DOI используйте эту кнопку, " +"чтобы удалить все существующие DOI для того, чтобы новые настройки повлияли " +"на существующие объекты." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Вы уверены, что хотите удалить все существующие DOI?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "DOI должен начинаться с {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Назначить" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "монография" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "глава" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "формат публикации" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "фаил" + +msgid "doi.editor.customSuffixMissing" +msgstr "" +"DOI не может быть присвоен, так как отсутствует пользовательский суффикс." + +msgid "doi.editor.missingParts" +msgstr "" +"Сгенерировать DOI нельзя, потому что данные для одной или нескольких частей " +"шаблона DOI отсутствуют." + +msgid "doi.editor.patternNotResolved" +msgstr "DOI не может быть назначен, потому что содержит неопределенный шаблон." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Вы видите как будет выглядеть DOI. Поставьте галочку и сохраните форму для " +"присвоения DOI." + +msgid "doi.editor.assigned" +msgstr "DOI присвоен {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Заданный суффикс DOI уже используется для другого опубликованного элемента. " +"Пожалуйста, введите уникальный суффикс DOI для каждого элемента." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Удалить" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Вы уверены, что хотите удалить существующий DOI?" + +msgid "doi.editor.assignDoi" +msgstr "Присвоить DOI {$pubId} {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "" +"DOI не может быть присвоен, так как отсутствует пользовательский суффикс." + +msgid "doi.editor.assignDoi.pattern" +msgstr "DOI не может быть назначен, потому что содержит неопределенный шаблон." + +msgid "doi.editor.assignDoi.assigned" +msgstr "DOI {$pubId} был присвоен." + +msgid "doi.editor.missingPrefix" +msgstr "DOI должен начинаться с {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "DOI для этой публикации будет {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "DOI не был присвоен этой публикации." + +msgid "doi.editor.preview.chapters" +msgstr "Глава: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Вид издания (формат публикации): {$title}" + +msgid "doi.editor.preview.files" +msgstr "Файл: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Элемент" + +msgid "doi.manager.submissionDois" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "Префикс DOI назначается регистрационными агентствами (например, Crossref) и " +#~ "представляется в формате 10.xxxx (например, 10.1234)." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Префикс DOI" diff --git a/locale/ru/submission.po b/locale/ru/submission.po new file mode 100644 index 00000000000..c2b4ab8a445 --- /dev/null +++ b/locale/ru/submission.po @@ -0,0 +1,578 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-17 23:42+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Выбрать компонент" + +msgid "submission.title" +msgstr "Название книги" + +msgid "submission.select" +msgstr "Выбрать Подачу" + +msgid "submission.synopsis" +msgstr "Краткое описание" + +msgid "submission.workflowType" +msgstr "Тип подачи" + +msgid "submission.workflowType.description" +msgstr "" +"Монография это издание под авторством одного или нескольких авторов в целом. " +"Редактируемое издание имеет различных авторов для каждой главы (с " +"последующим вводом деталей для каждой главы.)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Редактируемое издание (том)" + +msgid "submission.workflowType.editedVolume" +msgstr "Редактируемое издание: Авторы ассоциированы с их главами." + +msgid "submission.workflowType.authoredWork" +msgstr "Монография: Авторы ассоциированы с книгой в целом." + +msgid "submission.workflowType.change" +msgstr "Изменить" + +msgid "submission.editorName" +msgstr "{$editorName} (под ред.)" + +msgid "submission.monograph" +msgstr "Монография" + +msgid "submission.published" +msgstr "Готово к печати" + +msgid "submission.fairCopy" +msgstr "Чистовик" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Разрешения" + +msgid "submission.chapter" +msgstr "Глава" + +msgid "submission.chapters" +msgstr "Главы" + +msgid "submission.chapter.addChapter" +msgstr "Добавить главу" + +msgid "submission.chapter.editChapter" +msgstr "Редактировать главу" + +msgid "submission.chapter.pages" +msgstr "Страницы" + +msgid "submission.copyedit" +msgstr "Корректура" + +msgid "submission.publicationFormats" +msgstr "Форматы публикации" + +msgid "submission.proofs" +msgstr "Гранки" + +msgid "submission.download" +msgstr "Загрузить" + +msgid "submission.sharing" +msgstr "Поделиться этим" + +msgid "manuscript.submission" +msgstr "Подача рукописи" + +msgid "submission.round" +msgstr "Раунд {$round}" + +msgid "submissions.queuedReview" +msgstr "На рецензии" + +msgid "manuscript.submissions" +msgstr "Подачи рукописи" + +msgid "submission.metadata" +msgstr "Метаданные" + +msgid "submission.supportingAgencies" +msgstr "Поддерживающие агенства" + +msgid "grid.action.addChapter" +msgstr "Создать новую главу" + +msgid "grid.action.editChapter" +msgstr "Править эту главу" + +msgid "grid.action.deleteChapter" +msgstr "Удалить эту главу" + +msgid "submission.submit" +msgstr "Начать новую подачу книги" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Начать новую подачу в" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Новая подача" + +msgid "submission.submit.upload" +msgstr "Загрузить подачу" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "Обозначьте этого автора как редактора этого издания." + +msgid "submission.submit.seriesPosition" +msgstr "Место серии" + +msgid "submission.submit.seriesPosition.description" +msgstr "Примеры: Книга 2, Том 2" + +msgid "submission.submit.privacyStatement" +msgstr "Заявление о конфиденциальности" + +msgid "submission.submit.contributorRole" +msgstr "Роль участника" + +msgid "submission.submit.submissionFile" +msgstr "Файл подачи" + +msgid "submission.submit.prepare" +msgstr "Подготовка" + +msgid "submission.submit.catalog" +msgstr "Каталог" + +msgid "submission.submit.metadata" +msgstr "Метаданные" + +msgid "submission.submit.finishingUp" +msgstr "Завершить" + +msgid "submission.submit.confirmation" +msgstr "Подтверждение" + +msgid "submission.submit.nextSteps" +msgstr "Следующие шаги" + +msgid "submission.submit.coverNote" +msgstr "Сопроводительные заметки для Редактора" + +msgid "submission.submit.generalInformation" +msgstr "Общая информация" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Издательство проинформировано о Вашей подаче, и Вам отправлено email " +"сообщение об этом. С Вами свяжутся как только редактор проверит подачу." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Пожалуйста прочтите и отметьте пункты в списке подачи. Количество не " +"отмеченных позиций - {$itemsRemaining} ." + +msgid "submission.submit.placement" +msgstr "Размещение подачи" + +msgid "submission.submit.userGroup" +msgstr "Послать от меня в роли..." + +msgid "submission.submit.noContext" +msgstr "Издание этой подачи не может быть найдено." + +msgid "grid.chapters.title" +msgstr "Главы" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Удалить загрузку корректора" + +msgid "submission.complete" +msgstr "Утверждено" + +msgid "submission.incomplete" +msgstr "Ожидает утверждения" + +msgid "submission.editCatalogEntry" +msgstr "Запись в каталоге" + +msgid "submission.catalogEntry.new" +msgstr "Добавить запись в каталог" + +msgid "submission.catalogEntry.add" +msgstr "Добавить выделенное в каталог" + +msgid "submission.catalogEntry.select" +msgstr "Выбрать монографии для добавления в каталог" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Вы должны выбрать хотя бы одну монографию для добавления в каталог." + +msgid "submission.catalogEntry.confirm" +msgstr "Добавить эту книгу в публичный каталог" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Пожалуйста, подтвердите, что подача готова для размещения в каталоге." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Эта монография готова к размещению в публичном каталоге." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Просмотр подачи" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Даты публикации" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Все главы будут использовать дату публикации монографии." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Каждая глава может иметь свою дату публикации." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Монография" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Каталог" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Формат публикации" + +msgid "submission.event.metadataPublished" +msgstr "Метаданные монографии утверждены к публикации." + +msgid "submission.event.metadataUnpublished" +msgstr "Метаданные монографии больше не опубликованы." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Формат публикации \"{$publicationFormatName}\" сделан доступным." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Формат публикации \"{$publicationFormatName}\" более не доступен." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Формат публикации \"{$publicationFormatName}\" утвержден к опубликованию." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "Формат публикации \"{$publicationFormatName}\" больше не опубликован." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Метаданные каталога были обновлены." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "Метаданные формата публикации \"{$formatName}\" были обновлены." + +msgid "submission.event.publicationFormatCreated" +msgstr "Формат публикации \"{$formatName}\" был создан." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Формат публикации \"{$formatName}\" был удален." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Послать на внешнее рецензирование" + +msgid "workflow.review.externalReview" +msgstr "Внешнее рецензирование" + +msgid "submission.upload.fileContents" +msgstr "Компонент подачи" + +msgid "submission.dependentFiles" +msgstr "Зависимые файлы" + +msgid "submission.metadataDescription" +msgstr "" +"Эти спецификации основаны на наборе метаданных Dublin Core - международном " +"стандарте описания контента изданий." + +msgid "section.any" +msgstr "Любые Серии" + +msgid "submission.list.monographs" +msgstr "Монографии" + +msgid "submission.list.countMonographs" +msgstr "{$count} монографий(и/я)" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} из {$total} монографий(и/я)" + +msgid "submission.list.orderFeatures" +msgstr "Порядок признаков" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Перетащите или используйте стрелки вверх и вниз для смены порядка объектов " +"на домашней странице." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Перетащите или используйте стрелки вверх и вниз для смены порядка объектов в " +"{$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Сохранить порядок" + +msgid "submission.list.viewEntry" +msgstr "Просмотр пункта" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Названий(е/я)" + +msgid "publication.catalogEntry" +msgstr "Пункт каталога" + +msgid "publication.catalogEntry.success" +msgstr "Детали пункта каталога были обновлены." + +msgid "publication.invalidSeries" +msgstr "Серия данной публикации не найдена." + +msgid "publication.inactiveSeries" +msgstr "{$series} (неактивно)" + +msgid "publication.required.issue" +msgstr "Публикация должна входить в выпуск перед опубликованием." + +msgid "publication.publishedIn" +msgstr "Опубликовано в {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Требования к публикации выполнены. Вы уверены что хотите сделать этот пункт " +"каталог публичным?" + +msgid "publication.scheduledIn" +msgstr "" +"Запланировано к опубликованию в {$issueName}." + +msgid "submission.publication" +msgstr "Публикация" + +msgid "publication.status.published" +msgstr "Опубликовано" + +msgid "submission.status.scheduled" +msgstr "Запланирован" + +msgid "publication.status.unscheduled" +msgstr "Снято с плана" + +msgid "submission.publications" +msgstr "Публикации" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "Год копирайта будет задан автоматически при публикации выпуска." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Год копирайта будет проставлен автоматически, исходя из даты публикации." + +msgid "publication.datePublished" +msgstr "Дата публикации" + +msgid "publication.editDisabled" +msgstr "Эта версия была опубликована, её нельзя отредактировать." + +msgid "publication.event.published" +msgstr "Материал был опубликован." + +msgid "publication.event.scheduled" +msgstr "Материал запланирован к публикации." + +msgid "publication.event.unpublished" +msgstr "Материал был снят с публикации." + +msgid "publication.event.versionPublished" +msgstr "Опубликована новая версия." + +msgid "publication.event.versionScheduled" +msgstr "Новая версия запланирована к публикации." + +msgid "publication.event.versionUnpublished" +msgstr "Версия была убрана с публикации." + +msgid "publication.invalidSubmission" +msgstr "Материал для этой публикации не удаётся найти." + +msgid "publication.publish" +msgstr "Опубликовать" + +msgid "publication.publish.requirements" +msgstr "Перед публикацией необходимо выполнить следующие требования." + +msgid "publication.required.declined" +msgstr "Отклонённый материал нельзя опубликовать." + +msgid "publication.required.reviewStage" +msgstr "" +"Перед публикацией материал должен быть на этапе «Литературное " +"редактирование» или «Публикация»." + +msgid "submission.license.description" +msgstr "" +"Автоматически при публикации будет назначена лицензия {$licenseName}." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Автоматически при публикации будет проставлено авторское право {$copyright}." + +msgid "submission.copyrightOther.description" +msgstr "" +"Проставить авторское право на опубликованных материалах с указанием " +"следующей формулировки." + +msgid "publication.unpublish" +msgstr "Снять с публикации" + +msgid "publication.unpublish.confirm" +msgstr "Вы уверены, что не хотите публиковать этот материал?" + +msgid "publication.unschedule.confirm" +msgstr "Вы уверены, что не хотите запланировать этот материал к публикации?" + +msgid "publication.version.details" +msgstr "Информация о публикации для версии {$version}" + +msgid "submission.queries.production" +msgstr "Обсуждения публикации" + +msgid "publication.chapter.landingPage" +msgstr "" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/ru_RU/admin.po b/locale/ru_RU/admin.po deleted file mode 100644 index b70ab1b2a3f..00000000000 --- a/locale/ru_RU/admin.po +++ /dev/null @@ -1,117 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

        NOTE!\n" -"

        Система не может автоматически перезаписать файл конфигурации. Для " -"применения изменений в конфигурации нужно открыть config.inc.php в " -"подходящем текстовом редакторе и заменить его содержимое текстом " -"представленным ниже.

        " - -msgid "admin.presses.addPress" -msgstr "Добавить издательство" - -msgid "admin.contexts.contextDescription" -msgstr "Описание издательства" - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} был успешно отредактирован." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} успешно создан." - -msgid "admin.contexts.form.pathExists" -msgstr "Указанный Вами путь уже используется другим издательством." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "" -"Путь может содержать только буквы, цифры и символы _ и -. Путь должен " -"начинаться и заканчиваться буквой или цифрой." - -msgid "admin.contexts.form.pathRequired" -msgstr "Требуется путь." - -msgid "admin.contexts.form.titleRequired" -msgstr "Требуется название." - -msgid "admin.contexts.create" -msgstr "Создать Издательство" - -msgid "admin.presses.noneCreated" -msgstr "Не создано ни одного Издательства." - -msgid "admin.presses.pressSettings" -msgstr "Настройки Издательства" - -msgid "admin.systemConfiguration" -msgstr "Конфигурация OMP" - -msgid "admin.systemVersion" -msgstr "Версия OMP" - -msgid "admin.languages.confirmDisable" -msgstr "" -"Вы уверены, что хотите отключить этот язык? Это может повлиять на все " -"размещенные издательства, которые сейчас используют его." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "" -"Выберите дополнительные языки для установки их поддержки в этой системе. " -"Языки должны быть установлены до того, как их можно будет использовать в " -"размещенных издательствах. Смотрите в документации OMP информацию о том, как " -"добавить поддержку новых языков." - -msgid "admin.settings.redirectInstructions" -msgstr "" -"Основной страницей сайта станет главная страница этого издательства. Это " -"полезно, например, если на сайте размещается только одно издательство." - -msgid "admin.settings.appearance.success" -msgstr "Настройки оформления сайта были успешно обновлены." - -msgid "admin.languages.confirmUninstall" -msgstr "" -"Вы уверены, что хотите отключить этот язык? Это может повлиять на все " -"размещенные издательства, которые сейчас используют его." - -msgid "admin.locale.maybeIncomplete" -msgstr "*Поддержка отмеченных языков может быть неполной." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "" -"Выберите все языки для поддержки на сайте. Выбранные языки будут доступны " -"для всех издательств, расположенных на этом сайте, а также появятся в меню " -"выбора языков на каждой странице сайта (эта настройка может быть изменена на " -"страницах конкретного издательства). Если выбран только один язык, меню " -"переключения языков не будет показываться, дополнительные языковые настройки " -"для издательств также не будут доступны." - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "" -"Это будет язык по умолчанию для сайта и всех размещенных на нем издательств." - -msgid "admin.settings.noPressRedirect" -msgstr "Не преденаправлять" - -msgid "admin.settings.redirect" -msgstr "Перенаправление издательства" - -msgid "admin.settings.info.success" -msgstr "Информация на сайте была успешно обновлена." - -msgid "admin.settings.config.success" -msgstr "Настройки конфигурации сайта были успешно обновлены." - -msgid "admin.hostedContexts" -msgstr "Издательства на сайте" diff --git a/locale/ru_RU/api.po b/locale/ru_RU/api.po deleted file mode 100644 index 067ba713801..00000000000 --- a/locale/ru_RU/api.po +++ /dev/null @@ -1,37 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-10 11:30+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "api.submissions.403.contextRequired" -msgstr "" -"Чтобы создать или редактировать подачу вы должны запросить API издания." - -msgid "api.submissions.403.cantChangeContext" -msgstr "Вы не можете изменить издание подачи(материала)." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "Запрашиваемая вами публикация не принадлежит данной подаче (материалу)." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "Запрашиваемая вами публикация не принадлежит данному издательству." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "" -"У вас не хватает прав для переноса жатого шаблона письма в другое издание." - -msgid "api.submissions.400.submissionsNotFound" -msgstr "Одна или более подач, указанных Вами, не может быть найдена." - -msgid "api.submissions.400.submissionIdsRequired" -msgstr "" -"Вам необходимо представить один или несколько ID подач для добавления в " -"каталог." diff --git a/locale/ru_RU/author.po b/locale/ru_RU/author.po deleted file mode 100644 index e63dd9259f1..00000000000 --- a/locale/ru_RU/author.po +++ /dev/null @@ -1,16 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-04 09:36+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian " -"\n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "author.submit.notAccepting" -msgstr "Это издательство (издание) в настоящий момент не принимает материалы." diff --git a/locale/ru_RU/default.po b/locale/ru_RU/default.po deleted file mode 100644 index c3ef9fccc14..00000000000 --- a/locale/ru_RU/default.po +++ /dev/null @@ -1,190 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-09 15:18+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian " -"\n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "РдТ" - -msgid "default.groups.plural.volumeEditor" -msgstr "Редакторы томов" - -msgid "default.groups.name.volumeEditor" -msgstr "Редактор тома" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "АвГ" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Авторы глав" - -msgid "default.groups.name.chapterAuthor" -msgstr "Автор главы" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "РдС" - -msgid "default.groups.plural.sectionEditor" -msgstr "Редакторы серий" - -msgid "default.groups.name.sectionEditor" -msgstr "Редактор серии" - -msgid "default.groups.abbrev.editor" -msgstr "РдИ" - -msgid "default.groups.plural.editor" -msgstr "Редакторы издания" - -msgid "default.groups.name.editor" -msgstr "Редактор издания" - -msgid "default.groups.abbrev.manager" -msgstr "МнИ" - -msgid "default.groups.plural.manager" -msgstr "Менеджеры издания" - -msgid "default.groups.name.manager" -msgstr "Менеджер издания" - -msgid "default.genres.other" -msgstr "Другое" - -msgid "default.genres.illustration" -msgstr "Иллюстрация" - -msgid "default.genres.photo" -msgstr "Фото" - -msgid "default.genres.figure" -msgstr "Рисунок" - -msgid "default.genres.table" -msgstr "Таблица" - -msgid "default.genres.prospectus" -msgstr "Брошюра" - -msgid "default.genres.preface" -msgstr "Предисловие" - -msgid "default.genres.index" -msgstr "Индекс" - -msgid "default.genres.glossary" -msgstr "Глоссарий" - -msgid "default.genres.chapter" -msgstr "Рукопись главы" - -msgid "default.genres.manuscript" -msgstr "Рукопись книги" - -msgid "default.genres.bibliography" -msgstr "Библиография" - -msgid "default.genres.appendix" -msgstr "Приложение" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "ВшРц" - -msgid "default.groups.plural.externalReviewer" -msgstr "Внешние рецензенты" - -msgid "default.groups.name.externalReviewer" -msgstr "Внешний рецензент" - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Мы надеемся, что сотрудники библиотек впишут это Издательство в свой список " -"электронных Издательств. Кроме того, данная издательская система создана для " -"того, чтобы дать возможность академическим и научным библиотекам " -"организовать архивное хранение электронных изданий в работу над которыми " -"вовлечены их научные работники. Больше об этих возможностях см. сайт " -"разработчиков (см. Open Monograph " -"Press)." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"Вы хотите отправить материал для публикации в нашем Издательстве? " -"Рекомендуем вам посмотреть раздел «Об Издательстве», где вы сможете ознакомиться с нашей редакционной " -"политикой, а также с Руководством для автора. Авторам нужно зарегистрироваться в журнале " -"перед отправкой материалов, или, если вы уже зарегистрированы, можно просто <" -"a href=\"{$indexUrl}/index/login\">войти со своей учетной записью и " -"начать процесс отправки, состоящий из пяти шагов." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Мы прeдлагаем читателям зарегистрироваться на сайте, чтобы пользоваться " -"службой сообщений нашего издательства. Используйте ссылку РЕГИСТРАЦИЯ в верхней части " -"главной страницы Издательства. Эта регистрация позволит читателю получать на " -"электронную почту содержание новых опубликованных изданий. Этот список также " -"позволяет журналу говорить об определенном уровне поддержки или количестве " -"читателей. Посмотрите также страницу Заявление о конфиденциальности, " -"которая позволяет читателям убедиться в том, что их имя и адрес электронной " -"почты не будут использованы для других целей." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
        \n" -"________________________________________________________________________
        \n" -"{$contextName}" - -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Этот журнал предоставляет непосредственный открытый доступ к своему " -"контенту, исходя из следующего принципа: свободный открытый доступ к " -"результатам исследований способствует увеличению глобального обмена знаниями." - -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

        Имена и адреса электронной почты, введенные на сайте этого журнала, будут " -"использованы исключительно для целей, обозначенных этим журналом, и не будут " -"использованы для каких-либо других целей или предоставлены другим лицам и " -"организациям.

        " - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "" -"Текст соответствует стилистическим и библиографическим требованиям, " -"описанным в Руководстве для авторов, " -"расположенном на странице «Об Издательстве»." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"Текст набран с одинарным межстрочным интервалом; используется кегль шрифта в " -"12 пунктов; для выделения используется курсив, а не подчеркивание (за " -"исключением URL-адресов); все иллюстрации, графики и таблицы расположены в " -"соответствующих местах в тексте, а не в конце документа." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "" -"Приведены полные интернет-адреса (URL) для ссылок там, где это возможно." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "" -"Файл с материалом представлен в формате документа OpenOffice, Microsoft Word " -"или RTF." - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"Этот материал ранее не был опубликован, а также не был представлен для " -"рассмотрения и публикации в другом журнале (или дано объяснение этого в " -"Комментариях для редактора)." diff --git a/locale/ru_RU/editor.po b/locale/ru_RU/editor.po deleted file mode 100644 index e3aff230ca7..00000000000 --- a/locale/ru_RU/editor.po +++ /dev/null @@ -1,211 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-09 15:18+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian " -"\n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "" -"Добавьте форматы публикации (например, цифровые, в мягкой обложке), для " -"которых редактор макетов готовит верстку страниц для корректуры. " -"<еm>Макеты
        должны быть проверены как утвержденные, а запись для формата " -"в Каталоге должна быть проверена как опубликованная в каталоге " -"книги, прежде чем формат можно будет сделать Доступным (то есть " -"опубликовано)." - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "" -"Открытый идентификатор «{$publicIdentifier}» уже существует для другого " -"объекта этого же типа. Пожалуйста, выбирайте уникальные идентификаторы для " -"объектов одного типа в вашем Издательстве." - -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "" -"Любые файлы, которые уже были загружены на любом этапе отправки материала, " -"могут быть добавлены в список «Корректура», для этого нужно поставить " -"галочку «Включить» ниже и щелкнуть на кнопке «Поиск»: все доступные файлы " -"будут показаны в списке и могут быть выбраны для включения." - -msgid "editor.monograph.proof.addNote" -msgstr "Добавить ответ" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Установить условия" - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Установить условия для скачивания" - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "" -"Различные форматы публикации, такие как твердый переплет, мягкая и цифровая, " -"могут быть загружены в разделе «Форматы публикации» ниже. Вы можете " -"использовать приведенную ниже сетку форматов публикации в качестве " -"контрольного списка того, что еще нужно сделать для публикации формата " -"издания." - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Утверждение и публикация" - -msgid "editor.monograph.proofs" -msgstr "Гранки (верстка)" - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Чистовик" - -msgid "editor.submission.introduction" -msgstr "" -"В разделе «Подача» редактор после просмотра представленных файлов выбирает " -"соответствующее действие (которое включает в себя уведомление автора): «" -"Отправить на внутреннее рецензирование» (влечет за собой выбор файлов для " -"внутренней рецензирования); Отправить на внешнее рецензирование (влечет за " -"собой выбор файлов для внешнего рецензирования); Принять материал (влечет за " -"собой выбор файлов для этапа редактирования); или Отклонить материал (" -"отправка в архив)." - -msgid "editor.monograph.legend.uploaded" -msgstr "Файл загружен из роли в заголовке столбца сетки" - -msgid "editor.monograph.legend.complete" -msgstr "Действие завершено" - -msgid "editor.monograph.legend.in_progress" -msgstr "Действие в процессе или еще не завершено" - -msgid "editor.monograph.legend.delete" -msgstr "Удалить элемент" - -msgid "editor.monograph.legend.edit" -msgstr "Править элемент" - -msgid "editor.monograph.legend.notes_none" -msgstr "" -"Информация о файле: заметки, параметры уведомлений и история (Заметки еще не " -"добавлены)" - -msgid "editor.monograph.legend.notes_new" -msgstr "" -"Информация о файле: заметки, параметры уведомлений и история (Новые заметки " -"добавлены с момента последнего входа)" - -msgid "editor.monograph.legend.notes" -msgstr "" -"Информация о файле: заметки, параметры уведомлений и история (Заметки " -"доступны)" - -msgid "editor.monograph.legend.more_info" -msgstr "" -"Дополнительная информация: примечания к файлам, параметры уведомлений и " -"история" - -msgid "editor.monograph.legend.settings" -msgstr "" -"Просмотр и доступ к параметрам элемента, таким как информация и параметры " -"удаления" - -msgid "editor.monograph.legend.add_user" -msgstr "Добавить пользователя в раздел" - -msgid "editor.monograph.legend.add" -msgstr "Загрузить файл в раздел" - -msgid "editor.monograph.legend.participants" -msgstr "" -"Просмотр и управление участниками этого представления: авторы, редакторы, " -"дизайнеры и многое другое" - -msgid "editor.monograph.legend.bookInfo" -msgstr "" -"Просмотр и управление метаданными, заметками, уведомлениями и историей " -"отправки" - -msgid "editor.monograph.legend.catalogEntry" -msgstr "" -"Просмотр и управление записями каталога отправлений, включая метаданные и " -"форматы публикации" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Действия и параметры, относящиеся к отдельному файлу." - -msgid "editor.monograph.legend.itemActions" -msgstr "Действия для элемента" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "" -"Параметры, специфичные для данного раздела, например, загрузка файлов или " -"добавление пользователей." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Действия в Разделе" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Общие действия и опции подачи материала." - -msgid "editor.monograph.legend.submissionActions" -msgstr "Действия по представлению (подаче) материала" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Сообщение пользователю" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Текущие файлы" - -msgid "editor.monograph.final.currentFiles" -msgstr "Файлы текущих окончательных черновиков" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Выберите файлы окончательных черновиков" - -msgid "editor.monograph.externalReview" -msgstr "Начать внешнее рецензирование" - -msgid "editor.monograph.internalReviewDescription" -msgstr "" -"Выберите файлы ниже, чтобы отправить их на этап внутреннего рецензирования." - -msgid "editor.monograph.internalReview" -msgstr "Начать внутреннее рецензирование" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Файлы корректуры" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Параметры рецензирования" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Загрузить рецензию" - -msgid "editor.monograph.editorToEnter" -msgstr "Редактор для ввода рекомендаций / комментариев для рецензента" - -msgid "editor.monograph.replaceReviewer" -msgstr "Заменить рецензента" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "" -"Выберите рецензента и нажмите кнопку «Выбрать рецензента» чтобы продолжить." - -msgid "editor.monograph.recommendation" -msgstr "Рекомендация" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Ввести рекомендацию рецензента" - -msgid "editor.monograph.enterRecommendation" -msgstr "Ввести рекомендацию" - -msgid "editor.monograph.clearReview" -msgstr "Очистить рецензента" - -msgid "editor.monograph.cancelReview" -msgstr "Отменить запрос" - -msgid "editor.submissionArchive" -msgstr "Архив материалов" diff --git a/locale/ru_RU/emails.po b/locale/ru_RU/emails.po deleted file mode 100644 index 3c2c762d6c7..00000000000 --- a/locale/ru_RU/emails.po +++ /dev/null @@ -1,1024 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-09 19:48+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian " -"\n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "emails.notification.subject" -msgstr "Новое сообщение от {$siteTitle}" - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Запрос на рецензирование рукописи" - -msgid "emails.reviewRequestOneclick.description" -msgstr "" -"Это письмо редактора серии, отправляемое рецензенту, с запросом согласия или " -"отказа от выполнения рецензирования рукописи. В письме приводится информация " -"о материале, такая как название и аннотация, срок выполнения рецензии и как " -"получить доступ к самому материалу. Это сообщение используется, если выбран " -"стандартный процесс рецензирования и выбрана опция \"в одно нажатие\" в " -"настройках Управление > Настройки > Рабочий процесс > Рецензирование." - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"
        \n" -"Я полагаю, что Вы могли бы быть прекрасным рецензентом для рукописи " -""{$submissionTitle} ", которая был направлен в «{$contextName}». " -"Аннотация рукописи приведена ниже, и я надеюсь, что Вы возьметесь выполнить " -"эту важную задачу для нас.
        \n" -"
        \n" -"Пожалуйста, войдите на сайт Издательства до {$responseDueDate}, чтобы " -"подтвердить Ваше согласие на рецензирование или отказаться от " -"рецензирования, а также получить доступ к материалу и оставить свою рецензию " -"и рекомендацию.
        \n" -"
        \n" -"Сама рецензия должна быть предоставлена до {$reviewDueDate}.
        \n" -"
        \n" -"URL материала: {$submissionReviewUrl}
        \n" -"
        \n" -"Заранее благодарю Вас,
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -""{$submissionTitle}"
        \n" -"
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Запрос на рецензирование рукописи" - -msgid "emails.reviewRequest.description" -msgstr "" -"Этим письмом редактор серии, просит рецензента согласиться рецензировать или " -"отказаться от выполнения рецензирования рукописи. В письме приводится " -"информация о рукописи, такая как название и аннотация, срок выполнения " -"рецензии и как получить доступ к самому материалу. Это сообщение " -"используется, если выбран стандартный процесс рецензирования в Управление > " -"Настройки > Рабочий процесс > Рецензирование. (В ином случае, смотрите " -"REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequest.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"
        \n" -"{$messageToReviewer}
        \n" -"
        \n" -"Пожалуйста, войдите на сайт Издательства до {$responseDueDate}, чтобы " -"подтвердить Ваше согласие на рецензирование или отказаться от " -"рецензирования, а также получить доступ к материалу и оставить свою рецензию " -"и рекомендацию. Адрес сайта — {$contextUrl}
        \n" -"
        \n" -"Сама рецензия должна быть предоставлена до {$reviewDueDate}.
        \n" -"
        \n" -"URL рукописи: {$submissionReviewUrl}
        \n" -"
        \n" -"Username: {$reviewerUserName}
        \n" -"
        \n" -"Заранее благодарю Вас,
        \n" -"
        \n" -"
        \n" -"С уважением,
        \n" -"{$editorialContactSignature}
        \n" - -msgid "emails.reviewRequest.subject" -msgstr "Запрос на рецензирование рукописи" - -msgid "emails.editorAssign.description" -msgstr "" -"Это письмо уведомляет Редактора Серии изданий о том, что ему поручен " -"контроль прохождения материала по стадиям редакционного процесса. В письме " -"содержится информация о рукописи и о том, как войти на сайт журнала." - -msgid "emails.editorAssign.body" -msgstr "" -"Здравствуйте, {$editorialContactName}!
        \n" -"
        \n" -"В соответствии с Вашей ролью редактора Вам поручен контроль прохождения по " -"стадиям редакционного процесса рукописи «{$submissionTitle}», поданной в " -"«{$contextName}».
        \n" -"
        \n" -"URL материала: {$submissionUrl}
        \n" -"Имя пользователя: {$editorUsername}
        \n" -"
        \n" -"С уважением," - -msgid "emails.editorAssign.subject" -msgstr "Назначение редактором" - -msgid "emails.submissionAckNotUser.description" -msgstr "" -"Это письмо (если эта возможность включена) автоматически отправляется другим " -"авторам, которые не являются пользователями OMP, указанным в процессе " -"отправки материала." - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Здравствуйте!
        \n" -"
        \n" -"Пользователь {$submitterName} отправил рукопись «{$submissionTitle}» в " -"«{$contextName}».
        \n" -"
        \n" -"Если у Вас возникнут какие-то вопросы, пожалуйста, свяжитесь со мной. " -"Спасибо за выбор нашего Издательства для публикации Вашей работы.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.subject" -msgstr "Благодарность за подачу рукописи" - -msgid "emails.submissionAck.description" -msgstr "" -"Это письмо (если эта возможность включена) автоматически отправляется " -"автору, когда он завершает процесс отправки материала в журнал. В письме " -"содержится информация об отслеживании прохождения материала через " -"редакционный процесс и благодарность автору за присланный материал." - -msgid "emails.submissionAck.body" -msgstr "" -"Здравствуйте, {$authorName}!
        \n" -"
        \n" -"Благодарим Вас за отправку рукописи «{$submissionTitle}» в «{$contextName}»" -". С помощью онлайн-системы управления Издательством, которую мы используем, " -"Вы сможете отслеживать ее прохождение по стадиям редакционного процесса, " -"заходя на сайт журнала:
        \n" -"
        \n" -"URL материала: {$submissionUrl}
        \n" -"Имя пользователя: {$authorUsername}
        \n" -"
        \n" -"Если у Вас возникнут какие-то вопросы, пожалуйста, свяжитесь со мной. " -"Спасибо за выбор нашего Издательства для публикации Вашей работы.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.subject" -msgstr "Благодарность за подачу рукописи" - -msgid "emails.publishNotify.description" -msgstr "" -"Это письмо отправляется зарегистрированным читателям по ссылке «Уведомить " -"пользователей» на главной странице редактора. Оно сообшает читателям о " -"выходе новой книги и приглашает их посетить сайт журнала по указанному " -"адресу (URL)." - -msgid "emails.publishNotify.body" -msgstr "" -"Уважаемые читатели!
        \n" -"
        \n" -"Новое издание «{$contextName}» только что опубликовано на сайте " -"{$contextUrl}. Мы предлагаем вам просмотреть Содержание, а затем посетить " -"наш веб-сайт, чтобы ознакомиться с монографией и другими интересными " -"материалами.
        \n" -"
        \n" -"Благодарю вас за постоянный интерес к нашей работе,
        \n" -"{$editorialContactSignature}" - -msgid "emails.publishNotify.subject" -msgstr "Опубликована новая книга" - -msgid "emails.reviewerRegister.description" -msgstr "" -"Это письмо отправляется вновь зарегистрированному рецензенту, приветствуя " -"его в системе и сообщая ему имя пользователя и пароль для доступа к сайту." - -msgid "emails.reviewerRegister.body" -msgstr "" -"Принимая во внимание Ваш опыт, мы взяли на себя смелость зарегистрировать " -"Вас в базе данных потенциальных рецензентов для «{$contextName}». Это не " -"налагает на Вас никаких обязательств, а просто позволяет нам обращаться к " -"Вам при поступлении в наше Издательство материалов, рецензентом которых Вы " -"могли бы стать. Получив предложение дать рецензию, Вы сможете увидеть " -"название и аннотацию рукописи в запросе, и у Вас всегда будет возможность " -"принять или отклонить это предложение. Вы также, в любой момент, можете " -"попросить, чтобы мы удалили Ваше имя из этого списка рецензентов.
        \n" -"
        \n" -"Мы высылаем Вам имя пользователя и пароль, которые используются при любом " -"взаимодействии с сайтом нашего Издательства. Например, Вы можете " -"откорректировать свои данные в профиле пользователя, указав интересующую Вас " -"как рецензента тематику.
        \n" -"
        \n" -"Имя пользователя: {$username}
        \n" -"Пароль: {$password}
        \n" -"
        \n" -"С уважением,
        \n" -"{$principalContactSignature}" - -msgid "emails.reviewerRegister.subject" -msgstr "Регистрация в качестве рецензента в «{$contextName}»" - -msgid "emails.userValidate.description" -msgstr "" -"Это письмо отправляется вновь зарегистрированному пользователю, приветствуя " -"его в системе и сообщая ему имя пользователя и пароль для доступа к сайту." - -msgid "emails.userValidate.body" -msgstr "" -"Здравствуйте, {$userFullName}!
        \n" -"
        \n" -"Вы создали учетную запись на сайте «{$contextName}», но перед тем как начать " -"ее использовать, Вам нужно подтвердить адрес электронной почты. Чтобы " -"сделать это, просто пройдите по ссылке ниже:
        \n" -"
        \n" -"{$activateUrl}
        \n" -"
        \n" -"С уважением,
        \n" -"{$principalContactSignature}" - -msgid "emails.userValidate.subject" -msgstr "Подтвердите свою учетную запись" - -msgid "emails.userRegister.description" -msgstr "" -"Это письмо отправляется вновь зарегистрированному пользователю, приветствуя " -"его в системе и сообщая ему имя пользователя и пароль для доступа к сайту." - -msgid "emails.userRegister.body" -msgstr "" -"Здравствуйте, {$userFullName}!
        \n" -"
        \n" -"Теперь Вы зарегистрированы как пользователь в «{$contextName}». В этом " -"письме мы указали Ваши имя пользователя и пароль, которые потребуются для " -"работы на нашем сайте. Вы в любой момент можете попросить, чтобы Вас " -"удалили из списка пользователей Издательства, для этого просто свяжитесь со " -"мной.
        \n" -"
        \n" -"Имя пользователя: {$username}
        \n" -"Пароль: {$password}
        \n" -"
        \n" -"С уважением,
        \n" -"{$principalContactSignature}" - -msgid "emails.userRegister.subject" -msgstr "Регистрация издательства" - -msgid "emails.passwordReset.description" -msgstr "" -"Это письмо отправляется зарегистрированному пользователю, когда он успешно " -"сбросил свой пароль в соответствии с процедурой, описанной в письме " -"PASSWORD_RESET_CONFIRM." - -msgid "emails.passwordReset.body" -msgstr "" -"Ваш пароль на сайте «{$siteTitle}» был успешно сброшен.
        \n" -"
        \n" -"Имя пользователя: {$username}
        \n" -"Ваш Новый Пароль: {$password}
        \n" -"
        \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.subject" -msgstr "Сброс пароля" - -msgid "emails.passwordResetConfirm.description" -msgstr "" -"Это письмо отправляется зарегистрированному пользователю, когда он сообщает, " -"что забыл пароль или не может войти на сайт. В письме содержится ссылка (URL)" -", перейдя по которой пользователь сможет сбросить свой пароль." - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"Мы получили запрос на сброс Вашего пароля на сайте «{$siteTitle}».
        \n" -"
        \n" -"Если Вы не отправляли этот запрос, пожалуйста, проигнорируйте это письмо и " -"Ваш пароль не будет изменен. Если Вы хотите сбросить свой пароль, то " -"щелкните по ссылке ниже.
        \n" -"
        \n" -"Сбросить мой пароль: {$url}
        \n" -"
        \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.subject" -msgstr "Подтверждение сброса пароля" - -msgid "emails.notification.description" -msgstr "" -"Это письмо отправляется зарегистрированным пользователям, которые указали, " -"что данный тип уведомления отправляется им электронной почтой." - -msgid "emails.notification.body" -msgstr "" -"Вы получили новое уведомление с сайта «{$siteTitle}}»:
        \n" -"
        \n" -"{$notificationContents}
        \n" -"
        \n" -"Ссылка: {$url}
        \n" -"
        \n" -"Это письмо сгенерировано автоматически, пожалуйста, не отвечаыте на него.
        \n" -"{$principalContactSignature}" - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"Это просто напоминание о нашем запросе к Вам стать рецензентом рукописи " -""{$submissionTitle}", которая была направлена в «{$contextName}». " -"Мы надеялись на Ваш ответ к {$responseDueDate}, и это напоминание было " -"автоматически сгенерирован и послано, т.к. эта дата прошла.\n" -"
        \n" -"Я полагаю, что Вы могли бы быть прекрасным рецензентом для материала. " -"Аннотация статьи приведена ниже, и я надеюсь, что Вы возьметесь выполнить " -"эту важную задачу для нас.
        \n" -"
        \n" -"Пожалуйста, войдите на сайт Издательства до {$responseDueDate}, чтобы " -"подтвердить Ваше согласие на рецензирование или отказаться от " -"рецензирования, а также получить доступ к материалу и оставить свою рецензию " -"и рекомендацию.
        \n" -"
        \n" -"Сама рецензия должна быть предоставлена до {$reviewDueDate}.
        \n" -"
        \n" -"URL рукописи: {$submissionReviewUrl}
        \n" -"
        \n" -"Заранее благодарю Вас,
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"
        \n" -""{$submissionTitle}"
        \n" -"
        \n" -"{$abstractTermIfEnabled}
        \n" -"{$submissionAbstract" - -msgid "emails.announcement.subject" -msgstr "{$title}" - -msgid "emails.layoutRequest.body" -msgstr "" -"Здравствуйте, {$participantName}!
        \n" -"
        \n" -"Необходимо сверстать гранки материала "{$submissionTitle}}" для " -"{$contextName}, выполнив следующие шаги.
        \n" -"1. Щелкните на URL материала ниже.
        \n" -"2. Войдите на сайт и используйте файлы из панели «Готовые для производства» " -"для подготовки гранок в в соответствии со стандартами Издательства.
        \n" -"3. Уведомите редактора с помощью письма ВЫПОЛНЕНО, что гранки загружены и " -"готовы.
        \n" -"
        \n" -"URL журнала «{$contextName}»: {$contextUrl}
        \n" -"URL материала: {$submissionUrl}
        \n" -"Имя пользователя: {$participantUsername}
        \n" -"
        \n" -"Если Вы не можете выполнить эту работу сейчас или у Вас есть какие-либо " -"вопросы, пожалуйста, свяжитесь со мной. Спасибо за Ваш вклад в наш журнал." - -msgid "emails.editorDecisionAccept.body" -msgstr "" -"Здравствуйте, {$authorName}!
        \n" -"
        \n" -"Мы приняли решение относительно Вашего материала " -""{$submissionTitle}", направленного в {$contextName}.
        \n" -"
        \n" -"Наше решение: Принять рукопись.
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.reviewRemindAuto.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"
        \n" -"Это напоминание о нашем запросе Вашей рецензии на материал " -""{$submissionTitle}» для {$contextName}. Мы надеялись получить эту " -"рецензию до {$reviewDueDate}, и это письмо было автоматически сгенерировано " -"и отправлено, так как эта дата уже прошла. Мы будем рады, если Вы как можно " -"скорее ее подготовите.
        \n" -"
        \n" -"Если у Вас нет имени пользователя и пароля для доступа к сайту журнала, Вы " -"можете воспользоваться этой ссылкой для сброса Вашего пароля (он будет " -"направлен Вам вместе с Вашим именем пользователя на электронную почту). " -"{$passwordResetUrl}
        \n" -"
        \n" -"URL материала: {$submissionReviewUrl}
        \n" -"
        \n" -"Username: {$reviewerUserName}
        \n" -"
        \n" -"Пожалуйста, подтвердите, что Вы сможете сделать этот важный вклад в работу " -"нашего журнала. Жду вашего ответа.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.body" -msgstr "" -"Здравствуйте, {$reviewerName}:
        \n" -"
        \n" -"Это напоминание о нашем запросе Вашей рецензии на материал " -""{$submissionTitle}" для «{$contextName}». Мы надеялись получить " -"эту рецензию до {$reviewDueDate} и будем рады, если Вы как можно скорее ее " -"подготовите.
        \n" -"
        \n" -"URL материала: {$submissionReviewUrl}
        \n" -"
        \n" -"Пожалуйста, подтвердите, что Вы сможете сделать этот важный вклад в работу " -"нашего Издательства. Жду вашего ответа.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.announcement.body" -msgstr "" -"{$title}
        \n" -"
        \n" -"{$summary}
        \n" -"
        \n" -"Посетите наш веб-сайт, чтобы прочитать объявление " -"полностью." - -msgid "emails.statisticsReportNotification.subject" -msgstr "Активность журнала за {$month} {$year} года" - -msgid "emails.editorDecisionInitialDecline.description" -msgstr "" -"Это письмо отправляется автору, если редактор решает отклонить его материал " -"на начальной стадии, до этапа рецензирования" - -msgid "emails.editorDecisionResubmit.description" -msgstr "" -"Это письмо редактора или редактора раздела, отправляемое автору, чтобы " -"уведомить его об окончательном решении «Отправить на рецензирование повторно»" -" относительно присланного материала." - -msgid "emails.editorDecisionRevisions.description" -msgstr "" -"Это письмо редактора или редактора раздела, отправляемое автору, чтобы " -"уведомить его об окончательном решении «Требуется корректировка» " -"относительно присланного материала." - -msgid "emails.editorDecisionAccept.description" -msgstr "" -"Это письмо редактора или редактора раздела, отправляемое автору, чтобы " -"уведомить его об окончательном решении «Принять материал» относительно " -"присланного материала." - -msgid "emails.reviewReinstate.description" -msgstr "" -"Это письмо редактора раздела, отправляемое рецензенту, который начал " -"рецензировать материал, с уведомлением о том, что ранее отмененное " -"рецензирование было возобновлено." - -msgid "emails.announcement.description" -msgstr "Это письмо отправляется при создании нового объявления." - -msgid "emails.statisticsReportNotification.description" -msgstr "" -"Это письмо каждый месяц автоматически отправляется редакторам и управляющим " -"журнала, чтобы у них было представление о работе системы." - -msgid "emails.statisticsReportNotification.body" -msgstr "" -"\n" -"{$name},
        \n" -"
        \n" -"Доступен отчет о состоянии Вашего Издательства за {$month}, {$year} . " -"Ключевые показатели за этот месяц следующие:
        \n" -"
          \n" -"\t
        • Новых рукописей прислано за месяц: {$newSubmissions}
        • \n" -"\t
        • Отклонено рукописей за месяц: {$declinedSubmissions}
        • \n" -"\t
        • Принято рукописей за месяц: {$acceptedSubmissions}
        • \n" -"\t
        • Всего рукописей подано в Издательстве: {$totalSubmissions}
        • \n" -"
        \n" -"Войдите в свой кабинет для просмотра более детальной информации: Редакторские тренды и Публикационная статистика. Полный отчет по " -"реедакторским трендам за этот месяц во вложении.
        \n" -"
        \n" -"С уважением,
        \n" -"{$principalContactSignature}" - -msgid "emails.editorDecisionInitialDecline.body" -msgstr "" -"\n" -"\t\t\tЗдравствуйте, {$authorName}!
        \n" -"
        \n" -"Мы приняли решение относительно Вашего материала «{$submissionTitle}», " -"направленного в «{$contextName}».
        \n" -"
        \n" -"Наше решение: Отклонить материал
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}\n" -"\t\t" - -msgid "emails.editorDecisionInitialDecline.subject" -msgstr "Решение редактора" - -msgid "emails.notificationCenterDefault.description" -msgstr "" -"Сообщение по умолчанию (пустое) используется в редакторе списка сообщений " -"Центра уведомлений." - -msgid "emails.notificationCenterDefault.body" -msgstr "Пожалуйста, введите свое сообщение." - -msgid "emails.notificationCenterDefault.subject" -msgstr "Сообщение об «{$contextName}»" - -msgid "emails.notifyFile.description" -msgstr "Уведомление от пользователя, посланное из модуля отправки файлов" - -msgid "emails.notifyFile.body" -msgstr "" -"Вам сообщение от {$sender}, касающееся "{$fileName}" в " -""{$submissionTitle}" ({$monographDetailsUrl}):
        \n" -"
        \n" -"\t\t{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifyFile.subject" -msgstr "Уведомление о подаче файла" - -msgid "emails.notifySubmission.description" -msgstr "" -"Уведомление от пользователя, посланное из модуля отправки рукописей в " -"Редакцию." - -msgid "emails.notifySubmission.body" -msgstr "" -"Вам сообщение от {$sender}, касающееся "{$submissionTitle}" " -"({$monographDetailsUrl}):
        \n" -"
        \n" -"\t\t{$message}
        \n" -"
        \n" -"\t\t" - -msgid "emails.notifySubmission.subject" -msgstr "Уведомление о подаче рукописи" - -msgid "emails.emailLink.description" -msgstr "" -"Этот шаблон письма позволяет зарегистрированному читателю возможность " -"отправить информацию об издании тому, кому оно может быть интересно. " -"Возможность доступна в меню «Инструменты читателя» и должна быть включена " -"управляющим журнала на странице «Инструменты читателя: Администрирование»." - -msgid "emails.emailLink.body" -msgstr "" -"Полагаем, что Вам будет интересно посмотреть материал «{$submissionTitle}» " -"(авторы: {$authorName}), опубликованную в «{$contextName}» по адресу " -""{$articleUrl}"." - -msgid "emails.emailLink.subject" -msgstr "Эта статья, возможно, будет Вам интересна" - -msgid "emails.indexComplete.description" -msgstr "" -"Это письмо индексатора, отправляемое редактору раздела с уведомлением о том, " -"что индексирование завершено." - -msgid "emails.indexComplete.body" -msgstr "" -"Здравствуйте, {$editorialContactName}!
        \n" -"
        \n" -"Индексы для материала }"{$submissionTitle}}" в {$contextName} уже " -"готовы, можно начинать корректуру.
        \n" -"
        \n" -"Если у Вас есть какие-либо вопросы, пожалуйста, свяжитесь со мной.
        \n" -"
        \n" -"{$participantName}" - -msgid "emails.indexComplete.subject" -msgstr "Индексы сделаны" - -msgid "emails.indexRequest.description" -msgstr "" -"Это письмо редактора раздела, отправляемое индексатору с уведомлением о том, " -"что ему поручено выполнить индексирование материала. В письме содержится " -"информация о материале и о том, как получить к нему доступ." - -msgid "emails.indexRequest.body" -msgstr "" -"Здравствуйте, {$participantName}!
        \n" -"
        \n" -"Необходимо создать индекс для материала "{$submissionTitle}}" для " -"{$contextName}, выполнив следующие шаги.
        \n" -"1. Щелкните на URL материала ниже.
        \n" -"2. Войдите на сайт и используйте файлы из панели «Готовые для производства» " -"для подготовки гранок в в соответствии со стандартами Издательства.
        \n" -"3. Уведомите редактора с помощью письма ВЫПОЛНЕНО.
        \n" -"
        \n" -"URL журнала «{$contextName}»: {$contextUrl}
        \n" -"URL материала: {$submissionUrl}
        \n" -"Имя пользователя: {$participantUsername}
        \n" -"
        \n" -"Если Вы не можете выполнить эту работу сейчас или у Вас есть какие-либо " -"вопросы, пожалуйста, свяжитесь со мной. Спасибо за Ваш вклад в наш журнал.<" -"br />\n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.indexRequest.subject" -msgstr "Запрос на индексирование" - -msgid "emails.layoutComplete.description" -msgstr "" -"Это письмо верстальщика, отправляемое редактору раздела с уведомлением о " -"том, что верстка завершена." - -msgid "emails.layoutComplete.body" -msgstr "" -"Здравствуйте, {$editorialContactName}!
        \n" -"
        \n" -"Гранки для материала }"{$submissionTitle}}" в {$contextName} уже " -"готовы, можно начинать корректуру.
        \n" -"
        \n" -"Если у Вас есть какие-либо вопросы, пожалуйста, свяжитесь со мной.
        \n" -"
        \n" -"{$participantName}" - -msgid "emails.layoutComplete.subject" -msgstr "Гранки сделаны" - -msgid "emails.layoutRequest.description" -msgstr "" -"Это письмо редактора раздела, отправляемое верстальщику с уведомлением о " -"том, что ему поручено выполнить верстку материала. В письме содержится " -"информация о материале и о том, как получить к нему доступ." - -msgid "emails.layoutRequest.subject" -msgstr "Запрос на верстку" - -msgid "emails.copyeditRequest.description" -msgstr "" -"Это письмо редактора раздела, отправляемое литературному редактору материала " -"с запросом начала процесса литературного редактирования. В письме содержится " -"информация о материале и о том, как получить к нему доступ." - -msgid "emails.copyeditRequest.body" -msgstr "" -"Здравствуйте, {$participantName}!
        \n" -"
        \n" -"Я хотел бы попросить Вас выполнить литературное редактирование материала " -"«{$submissionTitle}» для «{$contextName}», выполнив следующие шаги.
        \n" -"1. Щелкните на URL материала ниже.
        \n" -"2. Воидите в свою учетную запись и кликните Файлы которые появились на шаге " -"1, (доступные в панели «Черновики»).
        \n" -"3. Ознакомтесь с инструкцией по Литературному редактированию на сайте.
        " -"\n" -"4. Откройте загруженные файлы и выполните литературное редактирование, " -"добавляя при необходимости Обсуждения литературного редактирования(если " -"нужно).
        \n" -"5. Сохраните отредактированные файлы и загрузите их в панель " -"«Отредактированные».
        \n" -"6. Уведомите редактора о том, что все файлы были подготовлены и можно их " -"запускать в производство.
        \n" -"
        \n" -" «{$contextName}»: {$contextUrl}
        \n" -"URL материала: {$submissionUrl}
        \n" -"Имя пользователя: {$participantUsername}" - -msgid "emails.copyeditRequest.subject" -msgstr "Запрос на литературное редактирование" - -msgid "emails.editorRecommendation.description" -msgstr "" -"Это письмо рекомендующего редактора или редактора раздела редакторам, " -"принимающим решение, чтобы уведомить их об итоговой рекомендации " -"относительного присланного материала." - -msgid "emails.editorRecommendation.body" -msgstr "" -"Здравствуйте, {$editors}!
        \n" -"
        \n" -"По рукописи «{$submissionTitle}», отправленной в «{$contextName}», могу " -"рекомендовать следующее: {$recommendation}" - -msgid "emails.editorRecommendation.subject" -msgstr "Рекомендация редактора" - -msgid "emails.editorDecisionDecline.description" -msgstr "" -"Это письмо редактора или редактора раздела, отправляемое автору, чтобы " -"уведомить его об окончательном решении «Отклонить материал» относительно " -"присланного материала." - -msgid "emails.editorDecisionDecline.body" -msgstr "" -"Здравствуйте, {$authorName}!
        \n" -"
        \n" -"Мы приняли решение относительно Вашего материала «{$submissionTitle}», " -"направленного в «{$contextName}».
        \n" -"
        \n" -"Наше решение: Отклонить материал
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.subject" -msgstr "Решение редактора" - -msgid "emails.editorDecisionResubmit.body" -msgstr "" -"Здравствуйте, {$authorName}!
        \n" -"
        \n" -"Мы приняли решение относительно Вашего материала «{$submissionTitle}», " -"направленного в «{$contextName}».
        \n" -"
        \n" -"Наше решение: Отправить на рецензирование повторно
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Решение редактора" - -msgid "emails.editorDecisionRevisions.body" -msgstr "" -"Здравствуйте, {$authorName}!
        \n" -"
        \n" -"Мы приняли решение относительно Вашего материала «{$submissionTitle}», " -"направленного в журнал «{$contextName}».
        \n" -"
        \n" -"Наше решение: Требуется корректировка.
        \n" -"
        \n" -"Manuscript URL: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Решение редактора" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "" -"Это письмо редактора или редактора раздела, отправляемое автору, чтобы " -"уведомить его о запуске материала в производство." - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "" -"Здравствуйте, {$authorName}!
        \n" -"
        \n" -"Редактирование Вашей рукописи "{$submissionTitle}" завершено. " -"Теперь мы запускаем его в производство.
        \n" -"
        \n" -"URL материала: {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Решение редактора" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "" -"Это письмо редактора или редактора раздела, отправляемое автору, чтобы " -"уведомить его об отправке материала на внешнее рецензирование." - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "" -"Здравствуйте, {$authorName}!
        \n" -"
        \n" -"Мы приняли решение относительно Вашего материала " -""{$submissionTitle}", направленного в «{$contextName}».
        \n" -"
        \n" -"Наше решение: Отправить на внешнее рецензирование
        \n" -"
        \n" -"URL материала: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Решение редактора" - -msgid "emails.editorDecisionAccept.subject" -msgstr "Решение редактора" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "" -"Это письмо отправляется автоматически, когда дата предоставления рецензии " -"рецензентом прошла (смотрите Параметры рецензирования в Настройки > Рабочий " -"процесс > Рецензирование) и прямой доступ рецензента по ссылке включен. " -"Запланированные задачи должны быть включены и настроены (смотрите файл " -"конфигурации сайта)." - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"
        \n" -"Это напоминание о нашем запросе Вашей рецензии на материал " -"«{$submissionTitle}» для «{$contextName}». Мы надеялись получить эту " -"рецензию до {$reviewDueDate}, и это письмо было автоматически сгенерировано " -"и отправлено, так как эта дата уже прошла. Мы будем рады, если Вы как можно " -"скорее ее подготовите.
        \n" -"
        \n" -"URL материала: {$submissionReviewUrl}
        \n" -"
        \n" -"Пожалуйста, подтвердите, что Вы сможете сделать этот важный вклад в работу " -"нашего журнала. Жду вашего ответа.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Автоматическое напоминание о рецензии на материал" - -msgid "emails.reviewRemindAuto.description" -msgstr "" -"Это письмо отправляется автоматически, когда дата предоставления рецензии " -"рецензентом прошла (смотрите Параметры рецензирования в Настройки > Рабочий " -"процесс > Рецензирование) и прямой доступ рецензента по ссылке отключен. " -"Запланированные задачи должны быть включены и настроены (смотрите файл " -"конфигурации сайта)." - -msgid "emails.reviewRemindAuto.subject" -msgstr "Автоматическое напоминание о рецензии на материал" - -msgid "emails.reviewRemindOneclick.description" -msgstr "" -"Это письмо отправляется редактором раздела, чтобы напомнить рецензенту о " -"том, что срок предоставления рецензии уже прошел." - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Напоминание о рецензии на рукопись" - -msgid "emails.reviewRemind.description" -msgstr "" -"Это письмо отправляется редактором раздела, чтобы напомнить рецензенту о " -"том, что срок предоставления рецензии уже прошел." - -msgid "emails.reviewRemind.body" -msgstr "" -"Здравствуйте, {$reviewerName}:
        \n" -"
        \n" -"Это напоминание о нашем запросе Вашей рецензии на материал " -"«{$submissionTitle}» для журнала «{$contextName}». Мы надеялись получить эту " -"рецензию до {$reviewDueDate} и будем рады, если Вы как можно скорее ее " -"подготовите.
        \n" -"
        \n" -"Если у Вас нет имени пользователя и пароля для доступа к сайту журнала, Вы " -"можете воспользоваться этой ссылкой для сброса Вашего пароля (он будет " -"направлен Вам вместе с Вашим именем пользователя на электронную почту). " -"{$passwordResetUrl}
        \n" -"
        \n" -"URL материала: {$submissionReviewUrl}
        \n" -"
        \n" -"Username: {$reviewerUserName}
        \n" -"
        \n" -"Пожалуйста, подтвердите, что Вы сможете сделать этот важный вклад в работу " -"нашего журнала. Жду вашего ответа.
        \n" -"
        \n" -"{$editorialContactSignature}" - -msgid "emails.reviewRemind.subject" -msgstr "Напоминание о рецензии на рукопись" - -msgid "emails.reviewAck.description" -msgstr "" -"Это письмо отправляется редактором раздела в качестве подтверждения " -"получения рецензии на статью и благодарности рецензенту за его вклад." - -msgid "emails.reviewAck.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"
        \n" -"Благодарю Вас за рецензию на материал «{$submissionTitle}» для " -"«{$contextName}». Мы ценим Ваш вклад в качество работы, которую мы публикуем." - -msgid "emails.reviewAck.subject" -msgstr "Подтверждение получения рецензии" - -msgid "emails.reviewDecline.description" -msgstr "" -"Это письмо рецензента, отправляемое редактору раздела, в ответ на запрос на " -"рецензирование рукописи, чтобы уведомить редактора раздела о том, что запрос " -"на рецензирование отклонен." - -msgid "emails.reviewDecline.body" -msgstr "" -"Уважаемые редакторы!
        \n" -"
        \n" -"Боюсь, что в данный момент я не могу дать рецензию на материал " -"«{$submissionTitle}» для «{$contextName}». Благодарю вас, что обратились ко " -"мне, в другой раз также не стесняйтесь, обращайтесь ко мне.
        \n" -"
        \n" -"{$reviewerName}" - -msgid "emails.reviewDecline.subject" -msgstr "Не могу дать рецензию" - -msgid "emails.reviewConfirm.description" -msgstr "" -"Это письмо рецензента, отправляемое редактору раздела, в ответ на запрос на " -"рецензирование статьи, чтобы уведомить редактора раздела о том, что запрос " -"на рецензирование принят и рецензия будет предоставлена к указанной дате." - -msgid "emails.reviewConfirm.body" -msgstr "" -"Уважаемые редакторы!
        \n" -"
        \n" -"Я готов дать рецензию на рукопись «{$submissionTitle}» для «{$contextName}»" -". Благодарю Вас, что обратились ко мне; я планирую завершить рецензирование " -"к указанному сроку, {$reviewDueDate}, а возможно и раньше.
        \n" -"
        \n" -"{$reviewerName}" - -msgid "emails.reviewConfirm.subject" -msgstr "Согласен дать рецензию" - -msgid "emails.reviewReinstate.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"
        \n" -"Мы бы хотели возобновить наш запрос на рецензирование Вами рукописи " -"«{$submissionTitle}» для «{$contextName}». Мы надеемся, что Вы сможете " -"помочь нам в процессе рецензирования.
        \n" -"
        \n" -"Если у Вас есть вопросы, пожалуйста, свяжитесь со мной." - -msgid "emails.reviewReinstate.subject" -msgstr "Запрос на возобновление рецензирования" - -msgid "emails.reviewCancel.description" -msgstr "" -"Это письмо редактора серии, отправляемое рецензенту, который начал " -"рецензировать материал, с уведомлением о том, что рецензирование отменено." - -msgid "emails.reviewCancel.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"
        \n" -"На данный момент мы решили отменить наш запрос на рецензирование Вами " -"рукописи «{$submissionTitle}» для «{$contextName}». Мы приносим свои " -"извинения за причиненное Вам беспокойство и надеемся, что в будущем мы " -"сможем к Вам обратиться за помощью в рецензировании материалов для нашего " -"Издательства.
        \n" -"
        \n" -"Если у Вас есть вопросы, пожалуйста, свяжитесь со мной." - -msgid "emails.reviewCancel.subject" -msgstr "Запрос на рецензирование отменен" - -msgid "emails.reviewRequestAttached.description" -msgstr "" -"Это письмо редактора серии, отправляемое рецензенту, с запросом согласия или " -"отказа от выполнения рецензирования материала. К письму приложен сам " -"материал для рецензирования. Это сообщение используется, если выбран процесс " -"рецензирования через электронную почту в Управление > Настройки > Рабочий " -"процесс > Рецензирование. (В ином случае, смотрите REVIEW_REQUEST.)" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"
        \n" -"Я полагаю, что Вы могли бы быть прекрасным рецензентом для материала " -"«{$submissionTitle}» и прошу Вас взяться выполнить эту важную задачу для " -"нас. Руководство для рецензентов этого журнала добавлено ниже, материал для " -"рецензирования приложен к этому письму. Ваша рецензия на материал, вместе с " -"рекомендацией, должны быть отправлены мне электронной почтой до " -"{$reviewDueDate}.
        \n" -"
        \n" -"Пожалуйста, сообщите в ответном письме до {$weekLaterDate} сможете ли Вы " -"взяться за рецензирование.
        \n" -"
        \n" -"Заранее благодарю Вас,
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" -"
        \n" -"
        \n" -"Руководство для рецензентов
        \n" -"
        \n" -"{$reviewGuidelines}
        \n" - -msgid "emails.reviewRequestAttached.subject" -msgstr "Запрос на рецензирование рукописи" - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "" -"Это письмо отправляется автоматически, когда дата подтверждения рецензентом " -"участия в рецензировании прошла (смотрите Параметры рецензирования в " -"Настройки > Рабочий процесс > Рецензирование) и прямой доступ рецензента по " -"ссылке включен. Запланированные задачи должны быть включены и настроены (" -"смотрите файл конфигурации сайта)." - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Запрос на рецензирование рукописи" - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "" -"Это письмо отправляется автоматически, когда дата подтверждения рецензентом " -"участия в рецензировании прошла (смотрите Параметры рецензирования в " -"Настройки > Рабочий процесс > Рецензирование) и прямой доступ рецензента по " -"ссылке отключен. Запланированные задачи должны быть включены и настроены (" -"смотрите файл конфигурации сайта)." - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Здравствуйте, {$reviewerName}!
        \n" -"
        \n" -"Это просто напоминание о нашем запросе к Вам стать рецензентом для рукописи " -"«{$submissionTitle}», которая была направлена в «{$contextName}». Мы " -"надеялись на Ваш ответ к {$responseDueDate}, и это напоминание было " -"автоматически сгенерирован и послано, т.к. эта дата прошла.
        \n" -"
        \n" -"{$messageToReviewer}5
        \n" -"
        \n" -"Пожалуйста, войдите на сайт Издательства до {$responseDueDate}, чтобы " -"подтвердить Ваше согласие на рецензирование или отказаться от " -"рецензирования, а также получить доступ к материалу и оставить свою рецензию " -"и рекомендацию.
        \n" -"
        \n" -"Сама рецензия должна быть предоставлена до {$reviewDueDate}.
        \n" -"
        \n" -"URL рукописи: {$submissionReviewUrl}
        \n" -"
        \n" -"Username: {$reviewerUserName}
        \n" -"
        \n" -"Заранее благодарю Вас,
        \n" -"
        \n" -"{$editorialContactSignature}
        \n" diff --git a/locale/ru_RU/locale.po b/locale/ru_RU/locale.po deleted file mode 100644 index 11610922588..00000000000 --- a/locale/ru_RU/locale.po +++ /dev/null @@ -1,239 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-09 19:48+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian " -"\n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.round" -msgstr "Раунд {$round}" - -msgid "monograph.audience" -msgstr "Аудитория" - -msgid "monograph.proofReadingDescription" -msgstr "" -"Верстальщик загружает сюда полностью готовые файлы, которые подготовлены для " -"публикации. Используйте +Назначить, чтобы определить авторов и " -"других пользователей для корректуры гранок, с загрузкой откорректированных " -"файлов и их одобрением перед публикацией." - -msgid "submission.pageProofs" -msgstr "Страница гранок" - -msgid "monograph.type" -msgstr "Тип подачи" - -msgid "monograph.carousel.publicationFormats" -msgstr "Форматы:" - -msgid "monograph.miscellaneousDetails" -msgstr "Детали об этой монографии" - -msgid "monograph.publicationFormatDetails" -msgstr "Детали о доступных форматах изданий: {$format}" - -msgid "monograph.publicationFormat" -msgstr "Формат" - -msgid "monograph.publicationFormats" -msgstr "Форматы публикации" - -msgid "monograph.languages" -msgstr "Языки (Английский, Французский, Испанский)" - -msgid "monograph.audience.rangeExact" -msgstr "Диапазон Аудитории (от)" - -msgid "monograph.audience.rangeTo" -msgstr "Диапазон Аудитории (до)" - -msgid "monograph.audience.rangeFrom" -msgstr "Диапазон Аудитории (от)" - -msgid "monograph.audience.rangeQualifier" -msgstr "Определитель Диапазона Аудитории" - -msgid "monograph.coverImage" -msgstr "Изображение Обложки" - -msgid "monograph.audience.success" -msgstr "Детали аудитории сохранены." - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

        Этот формат будет недоступен для читателей . Любые загружаемые " -"файлы или другие дистрибутивы больше не будут появляться в записи каталога " -"книги.

        " - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "" -"

        Сделайте этот формат доступным для читателей. Загружаемые файлы " -"и любые другие дистрибутивы появятся в записи каталога книги.

        " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Доступность формата" - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

        Указывает, что метаданные для этого формата не были утверждены.

        " - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" -"

        Утвердите метаданные для этого формата. Метаданные можно проверить на " -"панели «Редактирование» для каждого формата.

        " - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Утверждение формата" - -msgid "grid.catalogEntry.proof" -msgstr "Корректура" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Не доступно" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Доступно" - -msgid "grid.catalogEntry.availability" -msgstr "Доступность" - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Формат публикации должен быть выбран." - -msgid "grid.catalogEntry.monographRequired" -msgstr "Требуется идентификатор монографии." - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL удаленного контента" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Этот формат будет доступен на отдельном сайте" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Физический формат" - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Детали формата" - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Требуется действительная цена." - -msgid "grid.catalogEntry.nameRequired" -msgstr "Требуется имя." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Формат публикации" - -msgid "monograph.publicationFormat.openTab" -msgstr "Откройте вкладку формата публикации." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "" -"

        Выбранный вами формат публикации больше не существует для этой " -"монографии.

        " - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Отсутствуют некоторые поля метаданных." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Отсутствует идентификационный код." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Пропущены рынки и цены." - -msgid "monograph.publicationFormat.isApproved" -msgstr "Включить метаданные этого типа издания в каталоге для этой книги." - -msgid "monograph.publicationFormat.taxType" -msgstr "Тип налогообложения" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Процент налогообложения" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Район распространения продукции" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Цифровая техническая защита" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Страна производства" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Ширина" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Вес" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Толщина" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Высота" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Ввести собственное значение размера файла?" - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Размер файла в Мб" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " - x - " - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Физические размеры" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Цифровая информация" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Индикатор возможности возврата" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Наличие издания" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Процент скидки, если применимо" - -msgid "monograph.publicationFormat.priceType" -msgstr "Тип цены" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Цена долюна быть указана." - -msgid "monograph.publicationFormat.price" -msgstr "Цена" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Идентификация издания" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Детали издания (не обязательно)" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Структура издания" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Сравочный аппарат книги" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Титульные элементы книги" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Число страниц" - -msgid "monograph.publicationFormat.imprint" -msgstr "Выходные сведения (название бренда)" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Открытый доступ (Open Access)" - -msgid "monograph.task.addNote" -msgstr "Добавить к задаче" diff --git a/locale/ru_RU/manager.po b/locale/ru_RU/manager.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/ru_RU/manager.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/ru_RU/submission.po b/locale/ru_RU/submission.po deleted file mode 100644 index 129a636638b..00000000000 --- a/locale/ru_RU/submission.po +++ /dev/null @@ -1,488 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-05 10:36+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "Вы должны выбрать хотя бы одну монографию для добавления в каталог." - -msgid "submission.catalogEntry.select" -msgstr "Выбрать монографии для добавления в каталог" - -msgid "submission.catalogEntry.add" -msgstr "Добавить выделенное в каталог" - -msgid "submission.catalogEntry.new" -msgstr "Добавить запись в каталог" - -msgid "submission.editCatalogEntry" -msgstr "Запись в каталоге" - -msgid "submission.incomplete" -msgstr "Ожидает утверждения" - -msgid "submission.complete" -msgstr "Утверждено" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Удалить загрузку корректора" - -msgid "grid.chapters.title" -msgstr "Главы" - -msgid "submission.submit.noContext" -msgstr "Издание этой подачи не может быть найдено." - -msgid "submission.submit.userGroupDescription" -msgstr "" -"Если Вы посылаете Редактируемое издание, Вы должны выбрать роль редактора " -"издания." - -msgid "submission.submit.userGroup" -msgstr "Послать от меня в роли..." - -msgid "submission.submit.placement" -msgstr "Размещение подачи" - -msgid "submission.submit.checklistErrors" -msgstr "" -"Пожалуйста прочтите и отметьте пункты в списке подачи. Количество не " -"отмеченных позиций - {$itemsRemaining} ." - -msgid "submission.submit.whatNext.description" -msgstr "" -"Издательство проинформировано о Вашей подаче, и Вам отправлено email " -"сообщение об этом. С Вами свяжутся как только редактор проверит подачу." - -msgid "submission.submit.generalInformation" -msgstr "Общая информация" - -msgid "submission.submit.coverNote" -msgstr "Сопроводительные заметки для Редактора" - -msgid "submission.submit.nextSteps" -msgstr "Следующие шаги" - -msgid "submission.submit.confirmation" -msgstr "Подтверждение" - -msgid "submission.submit.finishingUp" -msgstr "Завершить" - -msgid "submission.submit.metadata" -msgstr "Метаданные" - -msgid "submission.submit.catalog" -msgstr "Каталог" - -msgid "submission.submit.prepare" -msgstr "Подготовка" - -msgid "submission.submit.submissionFile" -msgstr "Файл подачи" - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Выберите роль участника пожалуйста." - -msgid "submission.submit.form.abstractRequired" -msgstr "Введите краткое резюме вашей монографии." - -msgid "submission.submit.form.titleRequired" -msgstr "Введите название монографии, пожалуйста." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Требуются Имя, Фамилия и адрес email каждого автора." - -msgid "submission.submit.form.authorRequired" -msgstr "Требуется хотя бы один автор." - -msgid "submission.submit.contributorRole" -msgstr "Роль участника" - -msgid "submission.submit.privacyStatement" -msgstr "Заявление о конфиденциальности" - -msgid "submission.submit.form.localeRequired" -msgstr "Выберите язык подачи, пожалуйста." - -msgid "submission.submit.seriesPosition.description" -msgstr "Примеры: Книга 2, Том 2" - -msgid "submission.submit.seriesPosition" -msgstr "Место серии" - -msgid "author.submit.seriesRequired" -msgstr "Требуется серия." - -msgid "author.isVolumeEditor" -msgstr "Обозначьте этого автора как редактора этого издания." - -msgid "submission.submit.selectSeries" -msgstr "Выбор серии (не обязательно)" - -msgid "submission.submit.cancelSubmission" -msgstr "" -"Вы можете завершить эту подачу позже выбрав \"Активные подачи\" на домашней " -"странице автора." - -msgid "submission.submit.upload" -msgstr "Загрузить подачу" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Новая подача" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Начать новую подачу в" - -msgid "submission.submit" -msgstr "Начать новую подачу книги" - -msgid "grid.action.deleteChapter" -msgstr "Удалить эту главу" - -msgid "grid.action.editChapter" -msgstr "Править эту главу" - -msgid "grid.action.addChapter" -msgstr "Создать новую главу" - -msgid "submission.supportingAgencies" -msgstr "Поддерживающие агенства" - -msgid "submission.metadata" -msgstr "Метаданные" - -msgid "submission.confirmSubmit" -msgstr "Вы уверены что хотите отправить эту рукопись в издательство?" - -msgid "manuscript.submissions" -msgstr "Подачи рукописи" - -msgid "submissions.queuedReview" -msgstr "На рецензии" - -msgid "submission.round" -msgstr "Раунд {$round}" - -msgid "manuscript.submission" -msgstr "Подача рукописи" - -msgid "submission.sharing" -msgstr "Поделиться этим" - -msgid "submission.download" -msgstr "Загрузить" - -msgid "submission.proofs" -msgstr "Гранки" - -msgid "submission.publicationFormats" -msgstr "Форматы публикации" - -msgid "submission.copyedit" -msgstr "Корректура" - -msgid "submission.chapter.pages" -msgstr "Страницы" - -msgid "submission.chapter.editChapter" -msgstr "Редактировать главу" - -msgid "submission.chapter.addChapter" -msgstr "Добавить главу" - -msgid "submission.chaptersDescription" -msgstr "" -"Вы можете здесь перечислить главы и назначить авторов из списка авторов " -"выше. Эти авторы будут иметь доступ к главам во время различных стадий " -"издательского процесса." - -msgid "submission.chapters" -msgstr "Главы" - -msgid "submission.chapter" -msgstr "Глава" - -msgid "submission.artwork.permissions" -msgstr "Разрешения" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.fairCopy" -msgstr "Чистовик" - -msgid "submission.published" -msgstr "Готово к печати" - -msgid "submission.monograph" -msgstr "Монография" - -msgid "submission.editorName" -msgstr "{$editorName} (под ред.)" - -msgid "submission.workflowType.change" -msgstr "Изменить" - -msgid "submission.workflowType.authoredWork" -msgstr "Монография: Авторы ассоциированы с книгой в целом." - -msgid "submission.workflowType.editedVolume" -msgstr "Редактируемое издание: Авторы ассоциированы с их главами." - -msgid "submission.workflowType.editedVolume.label" -msgstr "Редактируемое издание" - -msgid "submission.workflowType.description" -msgstr "" -"Монография это издание под авторством одного или нескольких авторов в целом. " -"Редактируемое издание имеет различных авторов для каждой главы (с " -"последующим вводом деталей для каждой главы.)" - -msgid "submission.workflowType" -msgstr "Тип подачи" - -msgid "submission.synopsis" -msgstr "Краткое описание" - -msgid "submission.select" -msgstr "Выбрать Подачу" - -msgid "submission.title" -msgstr "Название книги" - -msgid "submission.upload.selectComponent" -msgstr "Выбрать компонент" - -msgid "submission.submit.title" -msgstr "Послать монографию" - -msgid "publication.scheduledIn" -msgstr "" -"Запланировано к опубликованию в {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "" -"Требования к публикации выполнены. Вы уверены что хотите сделать этот пункт " -"каталог публичным?" - -msgid "publication.publishedIn" -msgstr "Опубликовано в {$issueName}." - -msgid "publication.required.issue" -msgstr "Публикация должна входить в выпуск перед опубликованием." - -msgid "publication.invalidSeries" -msgstr "Серия данной публикации не найдена." - -msgid "publication.catalogEntry.success" -msgstr "Детали пункта каталога были обновлены." - -msgid "publication.catalogEntry" -msgstr "Пункт каталога" - -msgid "catalog.browseTitles" -msgstr "{$numTitles} Названий(е/я)" - -msgid "submission.list.saveFeatureOrder" -msgstr "Сохранить порядок" - -msgid "submission.list.orderingFeaturesSection" -msgstr "" -"Перетащите или используйте стрелки вверх и вниз для смены порядка объектов в " -"{$title}." - -msgid "submission.list.orderingFeatures" -msgstr "" -"Перетащите или используйте стрелки вверх и вниз для смены порядка объектов " -"на домашней странице." - -msgid "submission.list.orderFeatures" -msgstr "Порядок признаков" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} из {$total} монографий(и/я)" - -msgid "submission.list.countMonographs" -msgstr "{$count} монографий(и/я)" - -msgid "submission.list.monographs" -msgstr "Монографии" - -msgid "section.any" -msgstr "Любые Серии" - -msgid "submission.metadataDescription" -msgstr "" -"Эти спецификации основаны на наборе метаданных Dublin Core - международном " -"стандарте описания контента изданий." - -msgid "submission.dependentFiles" -msgstr "Зависимые файлы" - -msgid "submission.upload.fileContents" -msgstr "Компонент подачи" - -msgid "workflow.review.externalReview" -msgstr "Внешнее рецензирование" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Послать на внешнее рецензирование" - -msgid "submission.submit.titleAndSummary" -msgstr "Название и резюме" - -msgid "submission.event.publicationFormatRemoved" -msgstr "Формат публикации \"{$formatName}\" был удален." - -msgid "submission.event.publicationFormatCreated" -msgstr "Формат публикации \"{$formatName}\" был создан." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Метаданные формата публикации \"{$formatName}\" были обновлены." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Метаданные каталога были обновлены." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "Формат публикации \"{$publicationFormatName}\" больше не опубликован." - -msgid "submission.event.publicationFormatPublished" -msgstr "" -"Формат публикации \"{$publicationFormatName}\" утвержден к опубликованию." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Формат публикации \"{$publicationFormatName}\" более не доступен." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Формат публикации \"{$publicationFormatName}\" сделан доступным." - -msgid "submission.event.metadataUnpublished" -msgstr "Метаданные монографии больше не опубликованы." - -msgid "submission.event.metadataPublished" -msgstr "Метаданные монографии утверждены к публикации." - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Формат публикации" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Каталог" - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Монография" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Каждая глава может иметь свою дату публикации." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Все главы будут использовать дату публикации монографии." - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Даты публикации" - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Просмотр подачи" - -msgid "submission.catalogEntry.isAvailable" -msgstr "Эта монография готова к размещению в публичном каталоге." - -msgid "submission.catalogEntry.confirm.required" -msgstr "Пожалуйста, подтвердите, что подача готова для размещения в каталоге." - -msgid "submission.catalogEntry.confirm" -msgstr "Добавить эту книгу в публичный каталог" - -msgid "submission.publication" -msgstr "Публикация" - -msgid "publication.status.published" -msgstr "Опубликовано" - -msgid "submission.status.scheduled" -msgstr "Запланирован" - -msgid "publication.status.unscheduled" -msgstr "Снято с плана" - -msgid "submission.publications" -msgstr "Публикации" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "Год копирайта будет задан автоматически при публикации выпуска." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "Год копирайта будет проставлен автоматически, исходя из даты публикации." - -msgid "publication.datePublished" -msgstr "Дата публикации" - -msgid "publication.editDisabled" -msgstr "Эта версия была опубликована, её нельзя отредактировать." - -msgid "publication.event.published" -msgstr "Материал был опубликован." - -msgid "publication.event.scheduled" -msgstr "Материал запланирован к публикации." - -msgid "publication.event.unpublished" -msgstr "Материал был снят с публикации." - -msgid "publication.event.versionPublished" -msgstr "Опубликована новая версия." - -msgid "publication.event.versionScheduled" -msgstr "Новая версия запланирована к публикации." - -msgid "publication.event.versionUnpublished" -msgstr "Версия была убрана с публикации." - -msgid "publication.invalidSubmission" -msgstr "Материал для этой публикации не удаётся найти." - -msgid "publication.publish" -msgstr "Опубликовать" - -msgid "publication.publish.requirements" -msgstr "Перед публикацией необходимо выполнить следующие требования." - -msgid "publication.required.declined" -msgstr "Отклонённый материал нельзя опубликовать." - -msgid "publication.required.reviewStage" -msgstr "Перед публикацией материал должен быть на этапе «Литературное редактирование» или «Публикация»." - -msgid "submission.license.description" -msgstr "Автоматически при публикации будет назначена лицензия {$licenseName}." - -msgid "submission.copyrightHolder.description" -msgstr "Автоматически при публикации будет проставлено авторское право {$copyright}." - -msgid "submission.copyrightOther.description" -msgstr "Проставить авторское право на опубликованных материалах с указанием следующей формулировки." - -msgid "publication.unpublish" -msgstr "Снять с публикации" - -msgid "publication.unpublish.confirm" -msgstr "Вы уверены, что не хотите публиковать этот материал?" - -msgid "publication.unschedule.confirm" -msgstr "Вы уверены, что не хотите запланировать этот материал к публикации?" - -msgid "publication.version.details" -msgstr "Информация о публикации для версии {$version}" - -msgid "submission.queries.production" -msgstr "Обсуждения публикации" - diff --git a/locale/sl/admin.po b/locale/sl/admin.po new file mode 100644 index 00000000000..82937904642 --- /dev/null +++ b/locale/sl/admin.po @@ -0,0 +1,158 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:09-08:00\n" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Slovenian " +"\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Gostujoče založbe" + +msgid "admin.settings.appearance.success" +msgstr "Nastavitve izgleda spletne strani so bile uspešno posodobljene." + +msgid "admin.settings.config.success" +msgstr "Nastavitve konfiguracije spletne strani so bile uspešno posodobljene." + +msgid "admin.settings.info.success" +msgstr "Informacije o spletni strani so bile uspešno posodobljene." + +msgid "admin.settings.redirect" +msgstr "Preusmeritev založbe" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Vse prošnje na glavnem mestu bodo preusmerjene na to založbo. To je " +"uporabno, če na spletišču gostuje le ena založba." + +msgid "admin.settings.noPressRedirect" +msgstr "Ne preusmeri" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "Ta bo privzeti jezik za spletišče in vse gostujoče založbe." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Izberi vse območne jezike, ki bodo podprte na tem spletišču. Izbrani območni " +"jeziki bodo na voljo za vse gostujoče založbe in se bodo pojavljali na " +"meniju možnih jezikov na vsaki spletni strani (to lahko spremenite na " +"straneh založbe). Če ne bo izbranih več območnih jezikov, se na spletnih " +"straneh ne bo pojavil meni za spreminjanje jezika in razširjene jezikovne " +"nastavitve ne bodo na voljo za založbe." + +msgid "admin.locale.maybeIncomplete" +msgstr "*Označeni območni jeziki so lahko nepopolni." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Ali ste prepričani, da želite odstraniti ta območni jezik? To bo lahko " +"vplivalo na vse gostujoče založbe, ki trenutno uporabljajo območni jezik." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Izberite dodatne območne jezike, ki jih želite imeti na voljo na tem " +"spletišču. Območni jeziki morajo biti nameščeni, preden jih gostujoča " +"založba lahko uporablja. V dokumentaciji OMP lahko najdete več informacij o " +"podpori novim jezikov." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Ali ste prepričani, da želite odstraniti ta območni jezik? To bo lahko " +"vplivalo na vse gostujoče založbe, ki trenutno uporabljajo območni jezik." + +msgid "admin.systemVersion" +msgstr "Različica OMP" + +msgid "admin.systemConfiguration" +msgstr "Nastavitve OMP" + +msgid "admin.presses.pressSettings" +msgstr "Nastavitve založbe" + +msgid "admin.presses.noneCreated" +msgstr "Nobena založba ni bila ustvarjena." + +msgid "admin.contexts.create" +msgstr "Ustvari založbo" + +msgid "admin.contexts.form.titleRequired" +msgstr "Naslov je obvezen." + +msgid "admin.contexts.form.pathRequired" +msgstr "Pot je obvezna." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Pot lahko vsebuje le alfanumerične znake, podčrtaje in pomišljaje ter se " +"mora začeti in končati z alfanumeričnim znakom." + +msgid "admin.contexts.form.pathExists" +msgstr "Izbrano pot uporablja že druga založba." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" + +msgid "admin.contexts.form.create.success" +msgstr "{$name} je bil uspešno ustvarjen." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} je bil uspešno urejen." + +msgid "admin.contexts.contextDescription" +msgstr "Opis založbe" + +msgid "admin.presses.addPress" +msgstr "Dodaj založbo" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

        OPOZORILO!

        Sistem ne more samodejno prepisati nastavitvene " +"datoteke. Za ročni vpis sprememb v nastavitveno datoteko config.inc.php jo odprite v primernem urejevalniku besedil in zamenjajte vsebino " +"datoteke z besedilom spodaj.

        " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" + +msgid "admin.siteManagement.description" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +#~ msgid "admin.contexts.confirmDelete" +#~ msgstr "" +#~ "Ali ste prepričani, da želite dokončno zbrisati to založbo in vso njeno " +#~ "vsebino?" + +#, fuzzy +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Uporabi strežnik kot platformo za vse revije." diff --git a/locale/sl/default.po b/locale/sl/default.po new file mode 100644 index 00000000000..60201f3ebd5 --- /dev/null +++ b/locale/sl/default.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:09-08:00\n" +"PO-Revision-Date: 2019-11-28T15:10:09-08:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "default.genres.appendix" +msgstr "Dodatek" + +msgid "default.genres.bibliography" +msgstr "Bibliografija" + +msgid "default.genres.manuscript" +msgstr "Rokopis knjige" + +msgid "default.genres.chapter" +msgstr "Rokopis poglavja" + +msgid "default.genres.glossary" +msgstr "Glosar" + +msgid "default.genres.index" +msgstr "Kazalo" + +msgid "default.genres.preface" +msgstr "Predgovor" + +msgid "default.genres.prospectus" +msgstr "Prospekt" + +msgid "default.genres.table" +msgstr "Tabela" + +msgid "default.genres.figure" +msgstr "Slika" + +msgid "default.genres.photo" +msgstr "Fotografija" + +msgid "default.genres.illustration" +msgstr "Ilustracija" + +msgid "default.genres.other" +msgstr "Drugo" + +msgid "default.groups.name.manager" +msgstr "Upravljalec publikacije" + +msgid "default.groups.plural.manager" +msgstr "Upravljalci publikacije" + +msgid "default.groups.abbrev.manager" +msgstr "Upravljalec publikacije" + +msgid "default.groups.name.editor" +msgstr "Urednik publikacije" + +msgid "default.groups.plural.editor" +msgstr "Uredniki publikacije" + +msgid "default.groups.abbrev.editor" +msgstr "Urednik publikacije" + +msgid "default.groups.name.sectionEditor" +msgstr "Urednik zbirke" + +msgid "default.groups.plural.sectionEditor" +msgstr "Uredniki zbirke" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "Urednik zbirke" + +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + +msgid "default.groups.name.chapterAuthor" +msgstr "Avtor poglavja" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Avtorji poglavja" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "Avtor poglavja" + +msgid "default.groups.name.volumeEditor" +msgstr "Urednik zbornika" + +msgid "default.groups.plural.volumeEditor" +msgstr "Uredniki zbornika" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "Urednik zbornika" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

        Imena in e-poštni naslovi, vpisani v tem spletišču, se bodo uporabljali " +"striktno le za navedene namene te publikacije in ne bodo predane tretjim " +"osebam za kateri koli namen.

        " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Publikacija je takoj prosto dostopna vsem v prepričanju, da prosta " +"dostopnost do rezultatov raziskav spodbuja večjo izmenjavo znanja." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Bralce spodbujamo, da se prijavijo na obvestila o izdajah publikacije " +"založbe. Sledite povezavi Vpis na vrhu domače strani spletišča. Po registraciji boste po e-" +"pošti prejeli kazalo vsebine vsake nove monografske publikacije na " +"spletišču. Spisek registriranih bralcev pomeni za publikacijo tudi določeno " +"podporo s strani bralcev. Oglejte si Izjavo o zasebnosti podatkov " +"publikacije, ki bralcem zagotavlja, da imena in e-poštni naslovi bralcev ne " +"bodo zlorabljeni." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Vas zanima objavljanje na tem spletišču? Predlagamo, da si ogledate stran O publikaciji za ogled " +"uredniške politike publikacije in straniNavodila avtorjem. Avtorji se " +"morajo pred objavo vpisati pri založbi, če pa so že registrirani, se lahko vanjo " +"enostavno prijavijo in začnejo s " +"procesom oddaje prispevka, ki vsebuje 5 korakov." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Spodbujamo znanstvene knjižnice, da to publikacijo uvrstijo v svojo evidenco " +"elektronskih publikacij. Ta prosto dostopni sistem za objavljanje je prav " +"tako primeren za knjižnice, katerih uslužbenci jo lahko uporabljajo za " +"urejanje publikacij (glej Open Monograph " +"Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Zunanji recenzent" + +msgid "default.groups.plural.externalReviewer" +msgstr "Zunanji recenzenti" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "Zunanji recenzent" + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Prispevek še ni bil objavljen, niti ni v procesu objavljanja v kakšni " +#~ "drugi publikaciji (oziroma je razlaga podana v polju Komentarji uredniku)." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Datoteka s prispevkom je v formatu Microsoft Word, RTF ali OpenDocument." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "" +#~ "Kjer je to na voljo, so objavljene povezave URL do uporabljene literature." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Besedilo ima enojni razmak; uporabljena pisava je velikosti 12 točk; za " +#~ "poudarjene besede je uporabljen stil poševno, podčrtano le za URL " +#~ "povezave; in vse ilustracije, slike in tabele so na primernih mestih v " +#~ "besedilu, namesto na koncu besedila." + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Besedilo ustreza stilskim in bibliografskim zahtevam, navedenim v Navodila za avtorje, ki se nahajajo v rubriki \"O " +#~ "publikaciji\"." diff --git a/locale/sl/editor.po b/locale/sl/editor.po new file mode 100644 index 00000000000..5071b8cc570 --- /dev/null +++ b/locale/sl/editor.po @@ -0,0 +1,212 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:09-08:00\n" +"PO-Revision-Date: 2020-01-18 11:35+0000\n" +"Last-Translator: Primož Svetek \n" +"Language-Team: Slovenian \n" +"Language: sl_SI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Arhiv oddanih prispevkov" + +msgid "editor.monograph.cancelReview" +msgstr "Izbriši prošnjo" + +msgid "editor.monograph.clearReview" +msgstr "Izbriši recenzenta" + +msgid "editor.monograph.enterRecommendation" +msgstr "Vnesi priporočilo" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Vnesi priporočilo recenzenta" + +msgid "editor.monograph.recommendation" +msgstr "Priporočilo" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Za nadaljevanje zgoraj izberite recenzenta in pritisnite 'Izberi recenzenta‘." + +msgid "editor.monograph.replaceReviewer" +msgstr "Zamenjaj recenzenta" + +msgid "editor.monograph.editorToEnter" +msgstr "Urejevalnik za vnos priporočila/komentarjev za recenzenta" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Naloži recenzijo" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Nastavitve recenzije" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Korekturna datoteka" + +msgid "editor.monograph.internalReview" +msgstr "Prični notranjo recenzijo" + +msgid "editor.monograph.internalReviewDescription" +msgstr "Izberite datoteke spodaj in jih pošljite na fazo notranje recenzije." + +msgid "editor.monograph.externalReview" +msgstr "Prični zunanjo recenzijo" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Izberi datoteke s končno verzijo" + +msgid "editor.monograph.final.currentFiles" +msgstr "Trenutne datoteke s končno verzijo" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Trenutne datoteke" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Sporočilo za uporabnika" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Ukrepi za prispevke" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Splošne akcije in možnosti za prispevke." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Ukrepi za rubrike" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Možnosti za določene rubrike, kot sta nalaganje datotek ali dodajanje " +"uporabnikov." + +msgid "editor.monograph.legend.itemActions" +msgstr "Ukrepi za elemente" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Ukrepi in možnosti za individualno datoteko." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Poglej in upravljaj vnos iz kataloga prispevkov vključno z metapodatki in " +"formate publikacij" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Poglej in upravljaj metapodatke prispevkov, pripomb, obvestil in zgodovine" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Poglej in upravljaj sodelujoče pri pripravi tega prispevka: avtorje, " +"urednike, oblikovalce in druge" + +msgid "editor.monograph.legend.add" +msgstr "Naloži datoteko v rubriko" + +msgid "editor.monograph.legend.add_user" +msgstr "Dodaj uporabnika" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Poglej in dostopaj do nastavitev elementov, kot so možnosti za informacije " +"in brisanje" + +msgid "editor.monograph.legend.more_info" +msgstr "Več informacij: datotečne pripombe, nastavitve obvestil in zgodovina" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Datotečne informacije: opombe, nastavitve obvestil in zgodovina (Trenutno ni " +"opomb)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Datotečne informacije: opombe, nastavitve obvestil in zgodovina (Opombe so " +"na voljo)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Datotečne informacije: opombe, nastavitve obvestil in zgodovina (Nove opombe " +"od zadnjega obiska)" + +msgid "editor.monograph.legend.edit" +msgstr "Uredi element" + +msgid "editor.monograph.legend.delete" +msgstr "Izbriši element" + +msgid "editor.monograph.legend.in_progress" +msgstr "Ukaz v teku ali nezaključen" + +msgid "editor.monograph.legend.complete" +msgstr "Ukaz končan" + +msgid "editor.monograph.legend.uploaded" +msgstr "Datoteka, naložena glede na vlogo v mreži naslovnega stolpca" + +msgid "editor.submission.introduction" +msgstr "" +"Po preverjanju oddanih datotek mora urednik v prispevku izbrati primeren " +"ukrep (to vključuje obveščanje avtorja) Pošlji notranjemu recenzentu " +"(vključuje izbor datotek za notranjo recenzijo); pošlji zunanjemu recenzentu " +"(vključuje izbor datotek za zunanjo recenzijo); potrdi prispevek (vključuje " +"izbor datotek za uredniško fazo); ali zavrni prispevek (arhiviraj prispevek)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Končna verzija" + +msgid "editor.monograph.proofs" +msgstr "Vzorci" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Odobritev in objava" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Različne formate publikacij, kot so trda vezava, broširan in digitalni " +"formati lahko naložite v spodnji rubriki Formati za objavo. Mrežo formatov " +"publikacij lahko vidite spodaj v obliki seznama za vse tisto, kar je treba " +"še opraviti pred objavo formatov publikacij." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Dodajte formate publikacij (prim. digitalni, trda vezava), za katere bo " +"grafični urednik pripravil vzorce za korekturo. Preden je format pripravljen " +"Available (npr. za objavo), mora biti Proofs označen kot " +"odobren, medtem ko mora biti vnos za format Catalog označen kot " +"objavljen v knjižnem vnosu kataloga." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Določi pogoje za prenos" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Določi pogoje" + +msgid "editor.monograph.proof.addNote" +msgstr "Dodaj odgovor" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Obstoječe datoteke, ki ste jih že naložili na katerikoli stopnji oddaje " +"prispevka, lahko dodate na seznam vzorcev tako, da obkljukate Dodaj in " +"kliknete na Išči: navedene bodo vse razpoložljive datoteke, ki jih lahko " +"izberete in vključite." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Javni identifikator '{$publicIdentifier}' že obstaja za drug predmet istega " +"tipa. Izberite enolične identifikatorje za predmete istega tipa v vaši " +"založbi." + +msgid "editor.submissions.assignedTo" +msgstr "" + +#~ msgid "editor.submissions.lastAssigned" +#~ msgstr "Zadnji" diff --git a/locale/sl/emails.po b/locale/sl/emails.po new file mode 100644 index 00000000000..88b59b12467 --- /dev/null +++ b/locale/sl/emails.po @@ -0,0 +1,357 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-12-03T14:14:07-08:00\n" +"PO-Revision-Date: 2019-12-03T14:14:07-08:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Potrditev ponastavitve gesla" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Prejeli smo zahtevo za ponastavitev gesla za spletno mesto {$siteTitle}. " +"

        Če te zahteve niste podali vi, prezrite to e-poštno sporočilo " +"in vaše geslo ne bo spremenjeno. Če želite ponastaviti geslo, kliknite " +"spodnjo povezavo.

        Ponastavi geslo: {$passwordResetUrl}

        " +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Registracija založbe" + +msgid "emails.userRegister.body" +msgstr "" +"{$recipientName}

        Zdaj ste registrirani kot uporabnik " +"{$contextName}. Spodaj sta napisana vaše uporabniško ime in geslo, ki ju " +"potrebujete za dostop do založbe preko spleta. Kadar koli bi se želeli " +"odstraniti s seznama uporabnikov, se lahko obrnete name.

        " +"Uporabniško ime: {$recipientUsername}
        Geslo: {$password}

        " +"Hvala,
        {$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "" + +msgid "emails.userValidateContext.body" +msgstr "" + +msgid "emails.userValidateSite.subject" +msgstr "" + +msgid "emails.userValidateSite.body" +msgstr "" + +msgid "emails.reviewerRegister.subject" +msgstr "Registracija za recenzenta pri {$contextName}" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Glede na vaše področje delovanja, smo si dovolili registrirati vaše ime v " +"bazo recenzentov za publikacijo {$contextName}. To ne pomeni nobene obveze z " +"vaše strani in nam le omogoča, da vas lahko povabimo k recenziji prispevkov. " +"Ko boste povabljeni k recenziji, boste lahko videli naslov in povzetek " +"prispevka in se boste lahko odločili, ali boste pri recenziji sodelovali ali " +"ne. Kadar koli lahko zahtevate, da vas odstranimo iz seznama recenzentov." +"

        Pošiljamo vam uporabniško ime in geslo, ki ju potrebujete za " +"vso interakcijo z založbo preko spleta. Če želite lahko posodobite vaš " +"račun, vključno z recenzentskimi interesi.

        Uporabniško ime: " +"{$recipientUsername}
        Geslo: {$password}

        Hvala,
        " +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Uredniške zadolžitve" + +msgid "emails.editorAssign.body" +msgstr "" +"{$recipientName}:

        Prispevek "{$submissionTitle},", " +"oddan na {$contextName} vam je bil kot uredniku dodeljen v proces urejanja. " +"

        URL do prispevka: {$submissionUrl}" +"
        Uporabniško ime: {$recipientUsername}

        Hvala," + +msgid "emails.reviewRequest.subject" +msgstr "Prošnja za recenzijo rokopisa" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Spoštovani {$recipientName},

        {$messageToReviewer}

        " +"Prosimo, da se do {$responseDueDate} prijavite na spletni strani založbe in " +"navedete, ali boste opravljali recenzijo ali ne, ter ali boste dostopali do " +"prispevka in ali naj se vaša recenzija in priporočila zapišejo. Recenzija je " +"predvidena do {$reviewDueDate}.

        URL do prispevka: {$reviewAssignmentUrl}

        " +"Uporabniško ime: {$recipientUsername}

        Zahvaljujemo se vam za " +"zanimanje.


        Lep pozdrav,
        {$signature}
        \n" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Prošnja za recenzijo rokopisa" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Spoštovani, {$recipientName}, samo prijazen opomnik o naši prošnji za " +"recenzijo prispevka "{$submissionTitle}," za {$contextName}. " +"Upali smo, da bomo do {$responseDueDate} prejeli vaš odgovor. Ta e-pošta vam " +"je bila samodejno poslana po poteku tega datuma.
        {$messageToReviewer}" +"

        Prosimo, da se prijavite na spletni strani založbe in " +"navedete, ali boste opravljali recenzijo ali ne, ter ali boste dostopali do " +"prispevka in ali naj se vaša recenzija in priporočila zapišejo.

        Rok za oddajo recenzije je {$reviewDueDate}.

        URL do " +"prispevka: {$reviewAssignmentUrl}

        Uporabniško ime: {$recipientUsername}

        Zahvaljujemo se " +"vam za zanimanje.


        Lep pozdrav,
        {$contextSignature}" +"
        \n" + +msgid "emails.reviewCancel.subject" +msgstr "Prošnja za recenzijo preklicana" + +msgid "emails.reviewCancel.body" +msgstr "" +"{$recipientName}:

        Odločili smo se, da prekličemo našo prošnjo za " +"vašo recenzijo prispevka "{$submissionTitle}," za {$contextName}. " +"Opravičujemo se vam za vse nevšečnosti, ki vam jih to lahko povzroči, in " +"upamo, da se lahko obrnemo na vas pri uredniškem procesu tudi v prihodnje. " +"

        Če imaste kakršna koli vprašanja, se obrnite name." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "" + +msgid "emails.reviewReinstate.body" +msgstr "" + +msgid "emails.reviewDecline.subject" +msgstr "Ne morem opraviti recenzije" + +msgid "emails.reviewDecline.body" +msgstr "" +"Urednik(i):

        Žal mi je, vendar v tem trenutku ne morem napisati " +"recenzije prispevka "{$submissionTitle}," za {$contextName}. Hvala " +"za povabilo in upam, da me boste še povabili k sodelovanju.

        " +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Opomnik za recenzijo prispevka" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"{$recipientName}:

        , samo prijazen opomnik za našo prošnjo za " +"recenzijo prispevka , "{$submissionTitle}," za {$contextName}. " +"Upali smo, da bo recenzija končana do {$reviewDueDate}, veseli bomo, če jo " +"bomo prejeli takoj, ko bo mogoče.

        Če nimate uporabniškega imena " +"in gesla za dostop do spletne strani publikacije, lahko uporabite naslednjo " +"povezavo za ponastavitev gesla (ki vam bo posredovano po e-pošti skupaj z " +"vašim uporabniškim imenom): {$passwordLostUrl}

        URL povezava do " +"prispevka: {$reviewAssignmentUrl}

        Uporabniško ime: {$recipientUsername}
        Prosim, da potrdite " +"vašo pripravljenost za dokončanje vašega pomembnega prispevka za delo " +"založbe. Že vnaprej se vam zahvaljujemo za odgovor.

        " +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"{$recipientName}:

        , samo prijazen opomnik za našo prošnjo za " +"recenzijo prispevka, "{$submissionTitle}," za {$contextName}. " +"Upali smo, da boste recenzijo napisali do predvidenega datuma " +"{$reviewDueDate}. E-pošta je bila samodejno generirana in poslana po preteku " +"datuma. Veseli bomo, če jo bomo lahko prejeli takoj, ko bo mogoče.
        " +"
        Če nimate uporabniškega imena in gesla za dostop do spletne strani, " +"lahko uporabite naslednjo povezavo za ponastavitev gesla (ki vam bo " +"posredovano po e-pošti skupaj z vašim uporabniškim imenom): {$passwordLostUrl}

        URL do " +"prispevka: {$reviewAssignmentUrl}

        Uporabniško ime: {$recipientUsername}

        Prosim, " +"da potrdite vašo pripravljenost za dokončanje pomembnega prispevka za delo " +"založbe. Že vnaprej se vam zahvaljujemo za odgovor.

        " +"{$contextSignature}" + +#, fuzzy +msgid "emails.editorDecisionAccept.subject" +msgstr "Uredniška odločitev" + +#, fuzzy +msgid "emails.editorDecisionAccept.body" +msgstr "" +"{$authors}:

        Sprejeli smo odločitev glede vašega prispevka "" +"{$submissionTitle}" v {$contextName}. Odločili smo se:

        URL " +"do rokopisa:
        {$submissionUrl}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" + +#, fuzzy +msgid "emails.layoutRequest.subject" +msgstr "Zahteva za prelom" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" +"{$recipientName}:

        Prispevek "{$submissionTitle}" za " +"{$contextName} potrebuje prelom, ki se naredi po naslednjih korakih.
        " +"1. Kliknite na URL povezavo do prispevka spodaj.
        2. Prijavite se v " +"založbo in uporabite datoteko za pripravo preloma, da pripravite prelom " +"skladno s standardi založbe.
        3. Uredniku pošljite e-poštno sporočilo " +"Zaključeno.

        {$contextName} URL: {$contextUrl}
        Povezava URL do prispevka: {$submissionUrl}
        Uporabniško ime: " +"{$recipientUsername}

        Če v tem trenutku dela ne morete opraviti " +"ali imate kakšno vprašanje, se prosim obrnite name. Hvala za vaš prispevek " +"založbi." + +#, fuzzy +msgid "emails.layoutComplete.subject" +msgstr "Prelom končan" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" +"{$recipientName}:

        Prelomi za rokopis, "{$submissionTitle}," +"", za {$contextName} so pripravljeni in so na voljo za korekturo.
        " +"
        Če imate kakršno koli vprašanje, se prosim obrnite name.

        " +"{$senderName}" + +msgid "emails.indexRequest.subject" +msgstr "Zahteva za kazalo" + +msgid "emails.indexRequest.body" +msgstr "" +"{$recipientName}:

        Prispevek "{$submissionTitle}" za " +"{$contextName} potrebuje kazalo, ki se ga ustvari po naslednjih korakih.
        1. Kliknite na URL povezavo do prispevka spodaj.
        2. Prijavite se v " +"založbo in uporabite datoteko Page Proofs, da pripravite prelom skladno s " +"standardi založbe.
        3. Uredniku pošljite e-poštno sporočilo Zaključeno." +"

        {$contextName} URL: {$contextUrl}
        Povezava URL do prispevka:
        {$submissionUrl}
        Uporabniško ime: " +"{$recipientUsername}

        Če v tem trenutku dela ne morete opraviti " +"ali imate kakšno vprašanje, se prosim obrnite name. Hvala za vaš prispevek " +"založbi.

        {$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Prelomi kazala končani" + +msgid "emails.indexComplete.body" +msgstr "" +"{$recipientName}:

        Kazala za rokopis, "{$submissionTitle}," +"", za {$contextName} so pripravljena in so na voljo za korekturo.
        " +"
        Če imate kakršno koli vprašanje, se prosim obrnite name.

        " +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "Rokopis, ki bi vas morda zanimal" + +msgid "emails.emailLink.body" +msgstr "" +"Zdelo se nam je, da vas bo morda zanimal prispevek "{$submissionTitle}" +"" avtorja {$authors}, objavljen v zvezku {$volume}, številka {$number} " +"({$year}) v {$contextName} na voljo na "{$submissionUrl}"." + +msgid "emails.emailLink.description" +msgstr "" +"Ta e-poštna predloga omogoča registriranemu bralcu možnost pošiljanja " +"informacij o prispevku nekomu, ki bi ga morda zanimal. Na voljo je prek " +"Orodij za branje, omogočiti pa jo mora upravitelj založbe na strani " +"Upravitelj orodij za branje." + +msgid "emails.notifySubmission.subject" +msgstr "Obvestilo o prispevku" + +msgid "emails.notifySubmission.body" +msgstr "" +"Prejeli ste sporočilo od {$sender} o prispevku "{$submissionTitle}" +"" ({$monographDetailsUrl}):

        {$message}

        \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Obvestilo uporabnika, poslano iz modula informacijskega centra za prispevke. " + +msgid "emails.notifyFile.subject" +msgstr "Obvestilo o datoteki prispevka" + +msgid "emails.notifyFile.body" +msgstr "" +"Prejeli ste sporočilo od {$sender} o datoteki "{$fileName}" in " +""{$submissionTitle}" ({$monographDetailsUrl}):

        " +"{$message}

        \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"Obvestilo uporabnika, poslano iz modula informacijskega centra za datoteke." + +msgid "emails.statisticsReportNotification.subject" +msgstr "" + +msgid "emails.statisticsReportNotification.body" +msgstr "" + +msgid "emails.announcement.subject" +msgstr "" + +msgid "emails.announcement.body" +msgstr "" + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Potrditev vašega računa" + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "{$recipientName}}

        Ustvarili ste uporabniški račun " +#~ "{$contextName}. Preden ga lahko začnete uporabljati, morate potrditi " +#~ "svojo e-pošto. Za potrditev enostavno sledite spodnji povezavi:
        " +#~ "
        {$activateUrl}

        Hvala," +#~ "
        {$signature}" + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "To e-poštno sporočilo je poslano novim uporabnikom ob registraciji, da " +#~ "jih pozdravimo v sistemu in jim posredujemo informacijo o uporabniškem " +#~ "imenu in geslu." + +#~ msgid "emails.submissionUnsuitable.subject" +#~ msgstr "Neprimeren prispevek" + +#~ msgid "emails.submissionUnsuitable.body" +#~ msgstr "" +#~ "{$authors}:

        V začetni recenziji prispevka "" +#~ "{$submissionTitle}" je bilo ugotovljeno, da prispevek vsebinsko ne " +#~ "ustreza merilom založbe {$contextName}. Priporočamo vam, da se preberete " +#~ "več o naši založbi pod zavihkom O nas, kjer boste izvedeli več o " +#~ "vsebinah, ki jih objavljamo. Priporočamo vam, da razmislite o predložitvi " +#~ "tega rokopisa drugim založbam, ki objavljajo tovrstne vsebine.
        " +#~ "
        {$signature}" diff --git a/locale/sl/locale.po b/locale/sl/locale.po new file mode 100644 index 00000000000..29a7f1678b5 --- /dev/null +++ b/locale/sl/locale.po @@ -0,0 +1,1646 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:10-08:00\n" +"PO-Revision-Date: 2020-01-17 01:37+0000\n" +"Last-Translator: Mitja Podreka \n" +"Language-Team: Slovenian \n" +"Language: sl_SI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "common.payments" +msgstr "" + +msgid "monograph.audience" +msgstr "Ciljna skupina" + +msgid "monograph.audience.success" +msgstr "Podrobnosti ciljnega občinstva so bile posodobljene." + +msgid "monograph.coverImage" +msgstr "Naslovna slika" + +msgid "monograph.audience.rangeQualifier" +msgstr "Kvalifikator razpona ciljnega občinstva" + +msgid "monograph.audience.rangeFrom" +msgstr "Razpon ciljnega občinstva (od)" + +msgid "monograph.audience.rangeTo" +msgstr "Razpon ciljnega občinstva (do)" + +msgid "monograph.audience.rangeExact" +msgstr "Razpon ciljnega občinstva (točno)" + +msgid "monograph.languages" +msgstr "Jeziki (angleščina, francoščina, španščina)" + +msgid "monograph.publicationFormats" +msgstr "Formati publikacije" + +msgid "monograph.publicationFormat" +msgstr "Format" + +msgid "monograph.publicationFormatDetails" +msgstr "Podrobnosti o formatu publikacije na voljo: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Podrobnosti o monografski publikaciji" + +msgid "monograph.carousel.publicationFormats" +msgstr "Formati:" + +msgid "monograph.type" +msgstr "Tip prispevka" + +msgid "submission.pageProofs" +msgstr "Vzorci" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Grafični urednik naloži pripravljene datoteke, ki so bile tu pripravljene na " +"objavo. Uporabite +Assign, da avtorjem in ostalim dodelite " +"korekturo vzorcev, popravljene datoteke morajo biti naložene pred objavo." + +msgid "monograph.task.addNote" +msgstr "Dodaj v nalogo" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Odprt dostop" + +msgid "monograph.publicationFormat.imprint" +msgstr "Vtisk (Blagovna znamka)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Število strani" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Naslovna pola" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Zaključna pola" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Sestava" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Podrobnosti o izdelku (ni obvezno)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identifikacija izdelka" + +msgid "monograph.publicationFormat.price" +msgstr "Cena" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Cena je obvezna." + +msgid "monograph.publicationFormat.priceType" +msgstr "Tip cene" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Odstotek popusta, če obstaja" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Razpoložljivost izdelka" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Pokazatelj vračila" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Digitalne informacije" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Dimenzije" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Velikost datoteke v MB" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Vnesite velikost vaše datoteke?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Višina" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Debelina" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Teža" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Širina" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Država izdelave" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Digitalna tehnična zaščita" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Regija distribucije izdelka" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Stopnja obdavčitve" + +msgid "monograph.publicationFormat.taxType" +msgstr "Tip obdavčitve" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Vključi metapodatke tega formata publikacije v vnos te knjige v katalog." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Manjkajoča trg in cena." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Manjkajoča identifikacijska številka." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Manjkajoča polja metapodatkov." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

        Izbran format publikacije za to monografsko publikacijo ne obstaja več." + +msgid "monograph.publicationFormat.openTab" +msgstr "Odpri zavihek formata publikacije." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Format publikacije" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Ime je obvezno." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Veljavna cena je obvezna." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Podrobnosti formata" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Materialna oblika" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Ta oblika bo na voljo na ločenem spletišču" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL do vsebine na daljavo" + +msgid "grid.catalogEntry.isbn" +msgstr "" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "" + +msgid "grid.catalogEntry.isbn10.description" +msgstr "" + +msgid "grid.catalogEntry.monographRequired" +msgstr "ID monografske publikacije je obvezen." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Izbrati morate format publikacije." + +msgid "grid.catalogEntry.availability" +msgstr "Razpoložljivost" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Na voljo" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Ni na voljo" + +msgid "grid.catalogEntry.proof" +msgstr "Korektura" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Odobritev formata" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

        Označite, da metapodatki za ta format niso bili odobreni.

        " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Razpoložljivost formata" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

        Ta format omogoči za bralce. Prenosljive datoteke in vse ostale " +"oblike se bodo pojavile v vnosu knjige v katalog.

        " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

        Ta format bralcem ni na voljo . Prenosljive datoteke in vse " +"ostale oblike se ne bodo pojavile v vnosu knjige v katalog.

        " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Vnos v katalog ni odobren." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Formata ni v vnosu v katalog." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Vzorec ni odobren." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Odobreno" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Čaka na odobritev" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Velikost datoteke je za digitalne formate obvezna." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Oznaka razpoložljivosti izdelka je obvezna." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Izbrati morate oznako sestave izdelka." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Vrednost oznake" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Tip oznake ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Identifikacijska oznaka je obvezna." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Vrednost je obvezna." + +msgid "grid.catalogEntry.salesRights" +msgstr "Prodajne pravice" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Vrednost oznake" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Tip prodajnih pravic" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Tujina?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Obkljukajte to polje, da uporabite ta vnos Prodajne pravice kot privzet za " +"vaš format. V tem primeru vam ni treba izbrati držav in regij." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "VRSTICA tip prodajnih pravic je za ta format že opredeljena." + +msgid "grid.catalogEntry.countries" +msgstr "Države" + +msgid "grid.catalogEntry.regions" +msgstr "Regije" + +msgid "grid.catalogEntry.included" +msgstr "Vključeno" + +msgid "grid.catalogEntry.excluded" +msgstr "Izvzeto" + +msgid "grid.catalogEntry.markets" +msgstr "Trgi" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Prodajno področje" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Datum objave" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Vrsta zastopnika je obvezna." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Oblika datuma je obvezna." + +msgid "grid.catalogEntry.dateValue" +msgstr "Datum" + +msgid "grid.catalogEntry.dateRole" +msgstr "Vrsta" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Oblika datuma" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Datum je obvezen in vrednost datuma se mora ujemati z izbrano obliko datuma." + +msgid "grid.catalogEntry.representatives" +msgstr "Zastopniki" + +msgid "grid.catalogEntry.representativeType" +msgstr "Tip zastopnika" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agenti" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Dobavitelji" + +msgid "grid.catalogEntry.agent" +msgstr "Agent" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Na opredeljenem prodajnem področju lahko dodelite agenta, da vas zastopa. Ni " +"obvezno." + +msgid "grid.catalogEntry.supplier" +msgstr "Dobavitelj" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Izbor vrste:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Vrsta" + +msgid "grid.catalogEntry.representativeName" +msgstr "Ime" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Telefon" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "E-poštni naslov" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Spletna stran" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "ID zastopnika" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Tip ID zastopnika (priporočen je GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Ta razdelek lahko pustite prazen, če sami nudite storitve svojim strankam." + +msgid "grid.action.addRepresentative" +msgstr "Dodaj zastopnika" + +msgid "grid.action.editRepresentative" +msgstr "Uredi tega zastopnika" + +msgid "grid.action.deleteRepresentative" +msgstr "Izbriši tega zastopnika" + +msgid "spotlight" +msgstr "Izpostavljamo" + +msgid "spotlight.spotlights" +msgstr "Izpostavljamo" + +msgid "spotlight.noneExist" +msgstr "Trenutno ne izpostavljamo ničesar." + +msgid "spotlight.title.homePage" +msgstr "V ospredju" + +msgid "spotlight.author" +msgstr "Avtor, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Izpostavljen element" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Domača stran" + +msgid "grid.content.spotlights.form.location" +msgstr "Lokacija izpostavljenega elementa" + +msgid "grid.content.spotlights.form.item" +msgstr "Vnesi izpostavljen naslov (samodokončanje)" + +msgid "grid.content.spotlights.form.title" +msgstr "Naslov izpostavljenega elementa" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Knjiga" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Element je obvezen." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Naslov izpostavljenega elementa je obvezen." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Prosimo, da za ta izpostavljeni element izberete lokacijo." + +msgid "grid.action.editSpotlight" +msgstr "Uredi ta izpostavljeni element" + +msgid "grid.action.deleteSpotlight" +msgstr "Izbriši ta izpostavljeni element" + +msgid "grid.action.addSpotlight" +msgstr "Dodaj izpostavljeni element" + +msgid "manager.series.open" +msgstr "Odpri oddajo prispevkov" + +msgid "manager.series.indexed" +msgstr "Indeksirano" + +msgid "grid.libraryFiles.column.files" +msgstr "Datoteke" + +msgid "grid.action.catalogEntry" +msgstr "Poglej obrazec za vnos v katalog" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Format se pojavi v vnosu v katalog" + +msgid "grid.action.editFormat" +msgstr "Uredi ta format" + +msgid "grid.action.deleteFormat" +msgstr "Izbriši ta format" + +msgid "grid.action.addFormat" +msgstr "Dodaj format publikacije" + +msgid "grid.action.approveProof" +msgstr "Odobri vzorec za indeksiranje in vključitev v katalog" + +msgid "grid.action.pageProofApproved" +msgstr "Datoteka vzorca je pripravljena na objavo" + +msgid "grid.action.newCatalogEntry" +msgstr "Nov vnos v katalog" + +msgid "grid.action.publicCatalog" +msgstr "Poglej ta element v katalogu" + +msgid "grid.action.feature" +msgstr "Preklopi na prikaz funkcij" + +msgid "grid.action.featureMonograph" +msgstr "Prikaži v prikazovalniku kataloga" + +msgid "grid.action.releaseMonograph" +msgstr "Označi prispevek kot ‘novo izdajo'" + +msgid "grid.action.manageCategories" +msgstr "Nastavi kategorije za to založbo" + +msgid "grid.action.manageSeries" +msgstr "Nastavi zbirke za to založbo" + +msgid "grid.action.addCode" +msgstr "Dodaj oznako" + +msgid "grid.action.editCode" +msgstr "Uredi oznako" + +msgid "grid.action.deleteCode" +msgstr "Izbriši oznako" + +msgid "grid.action.addRights" +msgstr "Dodaj prodajne pravice" + +msgid "grid.action.editRights" +msgstr "Uredi pravice" + +msgid "grid.action.deleteRights" +msgstr "Izbriši pravice" + +msgid "grid.action.addMarket" +msgstr "Dodaj trg" + +msgid "grid.action.editMarket" +msgstr "Uredi trg" + +msgid "grid.action.deleteMarket" +msgstr "Izbriši trg" + +msgid "grid.action.addDate" +msgstr "Dodaj datum objave" + +msgid "grid.action.editDate" +msgstr "Uredi datum" + +msgid "grid.action.deleteDate" +msgstr "Izbriši datum" + +msgid "grid.action.createContext" +msgstr "Ustvari novo založbo" + +msgid "grid.action.publicationFormatTab" +msgstr "Prikaži zavihek formata publikacije" + +msgid "grid.action.moreAnnouncements" +msgstr "Pojdi na stran obvestil založbe" + +msgid "grid.action.submissionEmail" +msgstr "Klikni za ogled e-poštnega sporočila" + +msgid "grid.action.approveProofs" +msgstr "Oglej si mrežo vzorcev" + +msgid "grid.action.proofApproved" +msgstr "Format je popravljen" + +msgid "grid.action.availableRepresentation" +msgstr "Odobri/zavrni format" + +msgid "grid.action.formatAvailable" +msgstr "Preklopi med vključeno in izključeno razpoložljivostjo formata" + +msgid "grid.reviewAttachments.add" +msgstr "Dodaj priponko recenziji" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Razpoložljive datoteke" + +msgid "series.series" +msgstr "Zbirka" + +msgid "series.featured.description" +msgstr "Zbirka bo prikazana v glavni navigaciji" + +msgid "series.path" +msgstr "Pot publikacije" + +msgid "catalog.manage" +msgstr "Upravljanje kataloga" + +msgid "catalog.manage.newReleases" +msgstr "Nove izdaje" + +msgid "catalog.manage.category" +msgstr "Kategorija" + +msgid "catalog.manage.series" +msgstr "Zbirka" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Vnesite veljavno številko ISSN." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Številki ISSN tiskane in spletne izdaje ne smeta biti enaki." + +msgid "catalog.manage.series.onlineIssn" +msgstr "E-ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "Tiskane izdaje ISSN" + +msgid "catalog.selectSeries" +msgstr "Izberi zbirko" + +msgid "catalog.selectCategory" +msgstr "Izberi kategorijo" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Naslovnica izbranih knjig se pojavi na vrhu domače strani kot drsni meni. " +"Kliknite ‚Prikaži‘ in nato zvezdico, da dodate knjigo v vrtilni meni; " +"kliknite klicaj, da se prikaže v kategoriji nove izdaje; povlecite in " +"spustite za razvrščanje." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Kliknite ‚Prikaži‘ in nato zvezdico, da izberete knjigo za to kategorijo; " +"povlecite in spustite za razvrščanje." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Kliknite ‚Prikaži‘ in nato zvezdico, da izberete knjigo za to zbirko; " +"povlecite in spustite za razvrščanje. Zbirke so označene z imenom urednika " +"(urednikov) in naslovom zbirke znotraj kategorije ali samostojno." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Vrtilni meni" + +msgid "catalog.manage.newRelease" +msgstr "Izdaja" + +msgid "catalog.manage.manageSeries" +msgstr "Upravljanje zbirk" + +msgid "catalog.manage.manageCategories" +msgstr "Upravljanje kategorij" + +msgid "catalog.manage.noMonographs" +msgstr "Ni dodeljenih monografskih publikacij." + +msgid "catalog.manage.featured" +msgstr "Izbrano" + +msgid "catalog.manage.categoryFeatured" +msgstr "Izbrano v kategoriji" + +msgid "catalog.manage.seriesFeatured" +msgstr "Izbrano v zbirki" + +msgid "catalog.manage.featuredSuccess" +msgstr "Monografska publikacija je izpostavljena." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Monografska publikacija ni izpostavljena." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Monografska publikacija je označena kot nova izdaja." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Monografska publikacija ni več označena kot nova izdaja." + +msgid "catalog.manage.feature.newRelease" +msgstr "Nova izdaja" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Nova izdaja v kategoriji" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Nova izdaja v zbirki" + +msgid "catalog.manage.nonOrderable" +msgstr "" +"Te monografske publikacije ni mogoče naročiti, dokler ni izpostavljena." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Iskanje po naslovu ali avtorju" + +msgid "catalog.manage.isFeatured" +msgstr "" + +msgid "catalog.manage.isNotFeatured" +msgstr "" + +msgid "catalog.manage.isNewRelease" +msgstr "" + +msgid "catalog.manage.isNotNewRelease" +msgstr "" + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "" + +msgid "catalog.manage.submissionsNotFound" +msgstr "" + +msgid "catalog.manage.findSubmissions" +msgstr "" + +msgid "catalog.noTitles" +msgstr "Zaenkrat še ni objavljenih naslovov." + +msgid "catalog.noTitlesNew" +msgstr "Trenutno ni na voljo nobene nove izdaje." + +msgid "catalog.noTitlesSearch" +msgstr "Za vašo iskalno zahtevo \"{$searchQuery}\"ni bilo najdenih naslovov." + +msgid "catalog.feature" +msgstr "Lastnosti" + +msgid "catalog.featured" +msgstr "Izbrano" + +msgid "catalog.featuredBooks" +msgstr "Izbrane knjige" + +msgid "catalog.foundTitleSearch" +msgstr "Za vašo iskalno zahtevo \"{$searchQuery}\" je bil najden en naslov." + +msgid "catalog.foundTitlesSearch" +msgstr "" +"{$number} število najdenih naslovov se je ujemalo z vašo iskalno zahtevo " +"\"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Vse knjige" + +msgid "catalog.newReleases" +msgstr "Nove izdaje" + +msgid "catalog.dateAdded" +msgstr "Dodano" + +msgid "catalog.publicationInfo" +msgstr "Podrobnosti o publikaciji" + +msgid "catalog.published" +msgstr "Izdano" + +msgid "catalog.forthcoming" +msgstr "" + +msgid "catalog.categories" +msgstr "Kategorije" + +msgid "catalog.parentCategory" +msgstr "Nadrejena kategorija" + +msgid "catalog.category.subcategories" +msgstr "Podkategorije" + +msgid "catalog.aboutTheAuthor" +msgstr "O {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Pomembno: Za nakup se boste morali najprej prijaviti. Izbor predmeta za " +"nakup vas bo preusmeril na stran za prijavo. Katero koli knjigo, označena z " +"ikono Prost dostop, lahko prenesete brez plačila in brez prijave." + +msgid "catalog.sortBy" +msgstr "Razvrščanje monografskih publikacij" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Izberite, kako želite razvrstiti knjige v zbirki." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Izberite, kako želite razvrstiti knjige v kategoriji." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Izberite, kako želite razvrstiti knjige v katalogu." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Po položaju v zbirku (najprej najnižji)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Po položaju v zbirki (najprej najvišji)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} poglej datoteko {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Vrni se na pregled podrobnosti o {$monographTitle}" + +msgid "submission.search" +msgstr "" + +msgid "common.publication" +msgstr "" + +msgid "common.publications" +msgstr "" + +msgid "common.prefix" +msgstr "Predpona" + +msgid "common.preview" +msgstr "Predogled" + +msgid "common.feature" +msgstr "Lastnosti" + +msgid "common.searchCatalog" +msgstr "Poišči v katalogu" + +msgid "common.moreInfo" +msgstr "Več informacij" + +msgid "common.listbuilder.completeForm" +msgstr "Izpolnite celoten obrazec." + +msgid "common.listbuilder.selectValidOption" +msgstr "Iz seznama izberite veljavno možnost." + +msgid "common.listbuilder.itemExists" +msgstr "Istega elementa ne morete dvakrat dodati." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Glava domače strani" + +msgid "navigation.catalog" +msgstr "Katalog" + +msgid "navigation.competingInterestPolicy" +msgstr "Politika konflikta interesov" + +msgid "navigation.catalog.allMonographs" +msgstr "" + +msgid "navigation.catalog.manage" +msgstr "Upravljaj" + +msgid "navigation.catalog.administration.short" +msgstr "Administracija" + +msgid "navigation.catalog.administration" +msgstr "Administracija kataloga" + +msgid "navigation.catalog.administration.categories" +msgstr "Kategorije" + +msgid "navigation.catalog.administration.series" +msgstr "Zbirka" + +msgid "navigation.infoForAuthors" +msgstr "Za avtorje" + +msgid "navigation.infoForLibrarians" +msgstr "Za knjižničarje" + +msgid "navigation.infoForAuthors.long" +msgstr "Informacije za avtorje" + +msgid "navigation.infoForLibrarians.long" +msgstr "Informacije za knjižničarje" + +msgid "navigation.newReleases" +msgstr "Nove izdaje" + +msgid "navigation.published" +msgstr "Izdano" + +msgid "navigation.wizard" +msgstr "Pomočnik" + +msgid "navigation.linksAndMedia" +msgstr "Povezave in družabna omrežja" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "" + +msgid "navigation.skip.spotlights" +msgstr "" + +msgid "navigation.navigationMenus.series.generic" +msgstr "" + +msgid "navigation.navigationMenus.series.description" +msgstr "" + +msgid "navigation.navigationMenus.category.generic" +msgstr "" + +msgid "navigation.navigationMenus.category.description" +msgstr "" + +msgid "navigation.navigationMenus.newRelease" +msgstr "" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "" + +msgid "context.contexts" +msgstr "Založbe" + +msgid "context.context" +msgstr "Založba" + +msgid "context.current" +msgstr "Trenutna založba:" + +msgid "context.select" +msgstr "Preklopite na drugo založbo:" + +msgid "user.authorization.representationNotFound" +msgstr "" + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "V založbo vključi uporabnike brez vloge." + +msgid "user.noRoles.submitMonograph" +msgstr "Oddaj prispevek" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" +"Oddaj monografsko publikacijo: Registracija avtorja je trenutno onemogočena." + +msgid "user.noRoles.regReviewer" +msgstr "Registriraj se kot recenzent" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Registriraj se kot recenzent: Registracija recenzenta je trenutno " +"onemogočena." + +msgid "user.reviewerPrompt" +msgstr "Ali bi bili pripravljeni recenzirati prispevke za to založbo?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Da, zahtevaj vlogo {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" + +msgid "user.register.contextsPrompt" +msgstr "Pri katerih založbah na spletišču bi se radi registrirali?" + +msgid "user.register.otherContextRoles" +msgstr "Zahtevaj naslednje vloge." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Če ste zahtevali vlogo revizorja pri kateri koli založbi, vnesite predmetne " +"interese." + +msgid "user.role.manager" +msgstr "Upravitelj publikacije" + +msgid "user.role.pressEditor" +msgstr "Uredik publikacije" + +msgid "user.role.subEditor" +msgstr "Urednik zbirke" + +msgid "user.role.copyeditor" +msgstr "Lektor" + +msgid "user.role.proofreader" +msgstr "Korektor" + +msgid "user.role.productionEditor" +msgstr "Tehnični urednik" + +msgid "user.role.managers" +msgstr "Upravitelji publikacije" + +msgid "user.role.subEditors" +msgstr "Uredniki zbirke" + +msgid "user.role.editors" +msgstr "Uredniki" + +msgid "user.role.copyeditors" +msgstr "Lektorji" + +msgid "user.role.proofreaders" +msgstr "Korektorji" + +msgid "user.role.productionEditors" +msgstr "Tehnični uredniki" + +msgid "user.register.selectContext" +msgstr "Izberite založbo za registracijo:" + +msgid "user.register.noContexts" +msgstr "Na tem spletišču ni založb za registracijo." + +msgid "user.register.privacyStatement" +msgstr "Izjava o zasebnosti" + +msgid "user.register.registrationDisabled" +msgstr "Ta založba trenutno ne sprejema registracij uporabnikov." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Vnešeno geslo ni dovolj dolgo." + +msgid "user.register.readerDescription" +msgstr "Obveščeni preko e-pošte o izidu monografske publikacije." + +msgid "user.register.authorDescription" +msgstr "Omogočeno dodajanje elementov k publikaciji." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Pripravljeni za opravljanje recenzij prispevkov v tej publikaciji." + +msgid "user.register.reviewerDescription" +msgstr "Pripravljen za opravljanje recenzij prispevkov na tem spletišču." + +msgid "user.register.reviewerInterests" +msgstr "" +"Preverite zanimanje za recenzijo (vsebinska področja in raziskovalne metode):" + +msgid "user.register.form.userGroupRequired" +msgstr "Izbrati morate vsaj eno vlogo" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" + +msgid "site.noPresses" +msgstr "" + +msgid "site.pressView" +msgstr "Poglej spletišče založbe" + +msgid "about.pressContact" +msgstr "Kontakt založbe" + +msgid "about.aboutContext" +msgstr "O založbi" + +msgid "about.editorialTeam" +msgstr "Uredniška ekipa" + +msgid "about.editorialPolicies" +msgstr "Uredniška politika" + +msgid "about.focusAndScope" +msgstr "Fokus in obseg" + +msgid "about.seriesPolicies" +msgstr "Smernice o zbirkah in kategorijah" + +msgid "about.submissions" +msgstr "Prispevki" + +msgid "about.onlineSubmissions" +msgstr "Spletni prispevki" + +msgid "about.onlineSubmissions.login" +msgstr "Prijava" + +msgid "about.onlineSubmissions.register" +msgstr "Registracija" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} ali {$register} za oddajo prispevka." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} ali {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Začni oddajo novega prispevka" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "Poglej svoje čakajoče prispevke" + +msgid "about.authorGuidelines" +msgstr "Navodila avtorjem" + +msgid "about.submissionPreparationChecklist" +msgstr "Kontrolni seznam za oddajo prispevka" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Avtorji morajo med procesom oddaje preveriti, če njihovi prispevki ustrezajo " +"spodnjim zahtevam. V primeru, da ne ustrezajo, so prispevki lahko zavrnjeni." + +msgid "about.copyrightNotice" +msgstr "Obvestilo o avtorskih pravicah" + +msgid "about.privacyStatement" +msgstr "Izjava o zasebnosti" + +msgid "about.reviewPolicy" +msgstr "Recenzijski postopek" + +msgid "about.publicationFrequency" +msgstr "Pogostost publikacije" + +msgid "about.openAccessPolicy" +msgstr "Politika odprtega dostopa" + +msgid "about.pressSponsorship" +msgstr "Sponzorstvo založbe" + +msgid "about.aboutThisPublishingSystem" +msgstr "O postopku objave" + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Uredniški postopek in postopek objave OMP" + +msgid "about.aboutSoftware" +msgstr "" + +#, fuzzy +msgid "about.aboutOMPPress" +msgstr "" +"Ta založba uporablja sistem Open Monograph Press {$ompVersion}, ki je " +"odprtokodna programska oprema za založništvo in upravljanje založb, ki jo " +"podpira in distribuira Public Knowledge " +"Project z licenco GNU General Public License." + +#, fuzzy +msgid "about.aboutOMPSite" +msgstr "" +"To spletišče uporablja sistem Open Monograph Press {$ompVersion}, ki je " +"odprtokodna programska oprema za založništvo in upravljanje založb, ki jo " +"podpira in distribuira Public Knowledge " +"Project z licenco GNU General Public License." + +msgid "help.searchReturnResults" +msgstr "Nazaj na iskalne rezultate" + +msgid "help.goToEditPage" +msgstr "Odpri novo stran za urejanje informacij" + +msgid "installer.appInstallation" +msgstr "Namestitev OMP" + +msgid "installer.ompUpgrade" +msgstr "Nadgradnja OMP" + +msgid "installer.installApplication" +msgstr "Namestitev Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" + +#, fuzzy +msgid "installer.installationInstructions" +msgstr "" +"\n" +"

        Hvala za prenos Open Monograph Press {$version} v lasti " +"Public Knowledge Project. Preden nadaljujete, preberite datoteko README, ki je priložena tej programski " +"opremi. Za več informacij o platformi Public Knowledge Project in njihovi " +"programski opremi obiščite spletišče PKP. Če imate vprašanja o tehnični podpori ali poročila o " +"napakah v sistemu v zvezi s projektom Open Monograph Press, obiščite podporni forum ali spletni " +"sistem PKP za " +"poročila o napakah. Čeprav je zaželjeno, da nas kontaktirate preko " +"podpornega foruma, lahko ekipo kontaktirate na pkp.contact@gmail.com.

        Upgrade

        Če " +"nadgrajujete obstoječo nastavitev OMP, kliknite " +"tukaj za nadaljevanje.

        " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Koraki pred namestitvijo" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

        1. Naslednje datoteke in direktoriji (in njihova vsebina) morajo biti " +"zapisljivi:

        • config.inc.php je zapisljiv (neobvezno): " +"{$writable_config}
        • public/ je zapisljiv: {$writable_public}" +"
        • cache/ je zapisljiv: {$writable_cache}
        • cache/" +"t_cache/ je zapisljiv: {$writable_templates_cache}
        • cache/" +"t_compile/ je zapisljiv: {$writable_templates_compile}
        • " +"
        • cache/_db je zapisljiv: {$writable_db_cache}

        2. " +"Direktorij za shranjevanje naloženih datotek mora biti ustvarjen in " +"zapisljiv (glej \"Nastavitve datotek\" spodaj).

        " + +msgid "installer.upgradeInstructions" +msgstr "" +"

        OMP Version {$version}

        \n" +"\n" +"

        Hvala za prenos sistema platforme Public Knowledge Project Open " +"Monograph Press. Preden nadaljujete, preberite README in UPGRADE " +"datoteke, ki so v paketu s to programsko opremo. Za več informacij o " +"platformi Public Knowledge Project in njihovi programski opremi obiščite spletišče PKP. Če imate " +"vprašanja o tehnični podpori ali poročila o napakah v sistemu v zvezi s " +"projektom Open Monograph Press, obiščite podporni forum ali spletni sistem PKP za poročila o napakah. Čeprav " +"je zaželjeno, da nas kontaktirate preko podpornega foruma, lahko ekipo " +"kontaktirate na pkp.contact@gmail." +"com.

        \n" +"

        Močno priporočamo, da naredite varnostno kopijo " +"podatkovne baze, direktorija map in nastavitvenega direktorija OMP preden " +"nadaljujete.

        Če ste v varnem načinu PHP, prosimo zagotovite, da je " +"max_execution_time directive v vaši konfiguracijski datoteki php.ini " +"nastavljena na visoko vrednost. Če dosežete to ali katero drugo časovno " +"omejitev (npr. direktiva \"Timeout\" v Apache) in je postopek nadgradnje " +"prekinjen, bo potrebno ročno posredovanje.

        " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Za celotno podporo Unicode (UTF-8) izberite UTF-8 za vse nastavitve znakov. " +"Za to podporo potrebujete MySQL >= 4.1.1 ali strežnik podatkovne baze " +"PostgreSQL >= 9.1.5 . Ne pozabite, da za celotno podporo Unicode potrebujete " +"knjižnico mbstring (privzeto omogočena v najnovejših namestitvah PHP). Če vaš " +"strežnik ne ustreza tem zahtevam, bi lahko pri uporabi razširjenega izbora " +"znakov imeli težave.

        Vaš strežnik trenutno podpira mbstring: " +"{$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Vaš server trenutno podpira nalaganje datotek: {$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Vaš server trenutno podpira nalaganje datotek največ v velikosti: " +"{$allowFileUploads}" + +msgid "installer.localeInstructions" +msgstr "" +"Primarni jezik, ki se bo uporabljal na sistemu. Preverite dokumentacijo OMP, " +"če vas zanima podpora jezikov, ki tukaj niso našteti." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Izberite dodatne jezike, ki naj jih sistem podpira. Ti jeziki bodo na voljo " +"založbam na vašem spletišču. Dodatne jezike lahko kadarkoli namestite v " +"vmesniku administracije spletišča. Jeziki označeni z * so lahko nepopolni." + +msgid "installer.filesDirInstructions" +msgstr "" +"Vnesite celotno ime poti obstoječega direktorija, kjer naj se hranijo " +"naložene datoteke. Ta direktorij naj ne bo direktno dostopen s spleta. " +"Poskrbite, da direktorij obstaja in da je zapisljiv pred " +"namestitvijo. Imena poti v okolju Windows naj uporabljajo " +"poševnice, npr. \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"Sistem OMP za shranjevanje podatkov potrebuje dostop do podatkovne zbirke " +"SQL. Seznam podprtih podatkovnih zbirk lahko vidite zgoraj v zavihku " +"sistemske zahteve. V poljih spodaj napišite nastavitve za povezavo z " +"podatkovno zbirko." + +msgid "installer.upgradeApplication" +msgstr "Posodobitev Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

        OPOZORILO!

        Sistem ne more avtomatsko prepisati konfiguracijske " +"datoteke. Pred uporabo sistema odprite config.inc.php v primernem " +"urejevalniku besedil in njegovo vsebino zamenjajte z besedilom spodaj.

        " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

        Namestitev sistema OMP je uspešno dokončana.

        Za začetek uporabe " +"sistema se prijavite z uporabniškim imenom in " +"geslom, ki ste ga vpisali na prejšnji strani.

        Če želite prejemati " +"novice in posodobitve, se registrirajte na http://pkp.sfu.ca/omp/register. Če imate vprašanja ali komentarje, obiščite podporni forum.

        " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

        Nadgradnja sistema OMP na različico {$version} je uspešno dokončana.

        " +"

        Ne pozabite nastaviti nastavitve \"installed\" v vaši konfiguracijski " +"datoteki config.inc.php nazaj na On.

        Če se še niste " +"registrirali in želite prejemati novice in posodobitve, se " +"registrirajte na http://pkp.sfu.ca/omp/register. Če imate vprašanja ali " +"komentarje, prosimo obiščite podporni forum.

        " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Končni datum za {$round} krog recenzije prispevka {$submissionId} recenzenta " +"{$reviewerName} je bil postavljen na {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} je zavrnil {$round} recenzijo za prispevek {$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} je sprejel {$round}. krog recenzije za prispevek " +"{$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} je označil recenzijo {$round} kroga za prispevek " +"{$submissionId} kot neupoštevan." + +msgid "log.editor.decision" +msgstr "" +"Uredniško odločitev ({$decision}) za monografsko publikacijo {$submissionId} " +"je zabeležil {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" + +msgid "log.editor.archived" +msgstr "Prispevek {$articleId} je arhiviran." + +msgid "log.editor.restored" +msgstr "Prispevek {$articleId} je vrnjen v uredniški postopek." + +msgid "log.editor.editorAssigned" +msgstr "{$editorName} je dodeljen kot urednik prispevka {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} je določil {$proofreaderName} za korektorja prispevka " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "" +"{$proofreaderName} je poslal prispevek {$submissionId} v razpored za objavo." + +msgid "log.imported" +msgstr "{$userName} je vnesel monografsko publikacijo {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Identifikacijska oznaka dodana." + +msgid "notification.editedIdentificationCode" +msgstr "Identifikacijska oznaka urejena." + +msgid "notification.removedIdentificationCode" +msgstr "Identifikacijska oznaka odstranjena." + +msgid "notification.addedPublicationDate" +msgstr "Datum objave dodan." + +msgid "notification.editedPublicationDate" +msgstr "Datum objave urejen." + +msgid "notification.removedPublicationDate" +msgstr "Datum objave odstranjen." + +msgid "notification.addedPublicationFormat" +msgstr "Format publikacije dodan." + +msgid "notification.editedPublicationFormat" +msgstr "Format publikacije urejen." + +msgid "notification.removedPublicationFormat" +msgstr "Format publikacije odstranjen." + +msgid "notification.addedSalesRights" +msgstr "Tip prodajnih pravic dodan." + +msgid "notification.editedSalesRights" +msgstr "Tip prodajnih pravic urejen." + +msgid "notification.removedSalesRights" +msgstr "Tip prodajnih pravic odstranjen." + +msgid "notification.addedRepresentative" +msgstr "Zastopnik dodan." + +msgid "notification.editedRepresentative" +msgstr "Zastopnik urejen." + +msgid "notification.removedRepresentative" +msgstr "Zastopnik odstranjen." + +msgid "notification.addedMarket" +msgstr "Trg dodan." + +msgid "notification.editedMarket" +msgstr "Trg urejen." + +msgid "notification.removedMarket" +msgstr "Trg odstranjen." + +msgid "notification.addedSpotlight" +msgstr "Izpostavljeni element dodan." + +msgid "notification.editedSpotlight" +msgstr "Izpostavljeni element urejen." + +msgid "notification.removedSpotlight" +msgstr "Izpostavljeni element odstranjen." + +msgid "notification.savedCatalogMetadata" +msgstr "Metapodatki kataloga shranjeni." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Metapodatki formata publikacije shranjeni." + +msgid "notification.proofsApproved" +msgstr "Vzorci odobreni." + +msgid "notification.removedSubmission" +msgstr "Prispevek izbrisan." + +msgid "notification.type.submissionSubmitted" +msgstr "Nova monografska publikacija, \"{$title}\", je bila dodana." + +msgid "notification.type.editing" +msgstr "Uredniški dogodki" + +msgid "notification.type.reviewing" +msgstr "Recenzentski dogodki" + +msgid "notification.type.site" +msgstr "Dogodki spletišča" + +msgid "notification.type.submissions" +msgstr "Dogodki prispevkov" + +msgid "notification.type.userComment" +msgstr "Bralec je dodal komentar na prispevek \"{$title}\"" + +msgid "notification.type.public" +msgstr "" + +msgid "notification.type.editorAssignmentTask" +msgstr "" +"Nova monografska publikacija je bila dodana, ki ji je treba dodeliti " +"urednika." + +msgid "notification.type.copyeditorRequest" +msgstr "Prosili so vas za pregled korektur za \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "Prosili so vas za pregled postavitev za \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "Prosili so vas za ustvarjanje kazala za \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Postopek notranjega pregleda začet." + +msgid "notification.type.approveSubmission" +msgstr "" +"Ta prispevek trenutno čaka na odobritev v orodju Vnos v katalog, preden se " +"bo pojavil v javnem katalogu." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Čaka na odobritev." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Ni konfiguriranih načinov plačila." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Konfiguriran način plačila je obvezen, preden lahko opredelite nastavitve e-" +"poslovanja." + +msgid "notification.type.visitCatalogTitle" +msgstr "Upravljanje kataloga" + +msgid "notification.type.visitCatalog" +msgstr "" + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Dostop vam je bil preprečen, ker niste veljaven recenzent te monografske " +"publikacije." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Dostop vam je bil preprečen, ker niste avtor te monografske publikacije." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Dostop vam je bil preprečen, ker niste dodeljen recenzent te monografske " +"publikacije." + +msgid "user.authorization.monographFile" +msgstr "Dostop do določene datoteke monografa vam je bil preprečen." + +msgid "user.authorization.invalidMonograph" +msgstr "" +"Neveljavna monografska publikacija ali zahtevana monografska publikacija ne " +"obstaja!" + +#, fuzzy +msgid "user.authorization.noContext" +msgstr "Ni založbe v kontekstu!" + +msgid "user.authorization.seriesAssignment" +msgstr "Dostopati želite do monografske publikacije, ki ni del vaše zbirke." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Dostop zavrnjen! Niste bili dodani v to fazo dela." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Dostop zavrnjen! Uporabniška skupina, v kateri trenutno delujete, ni bila " +"dodeljena v to fazo dela. Preverite nastavitve vaše založbe." + +msgid "payment.directSales" +msgstr "Prenesi s spletišča založbe" + +msgid "payment.directSales.price" +msgstr "Cena" + +msgid "payment.directSales.availability" +msgstr "Razpoložljivost" + +msgid "payment.directSales.catalog" +msgstr "Katalog" + +msgid "payment.directSales.approved" +msgstr "Odobreno" + +msgid "payment.directSales.priceCurrency" +msgstr "Cena ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Cena mora biti obvezno numerična. Ne vključujte simbolov valut." + +msgid "payment.directSales.directSales" +msgstr "Neposredna prodaja" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Ni na voljo" + +msgid "payment.directSales.notSet" +msgstr "Ni nastavljeno" + +msgid "payment.directSales.openAccess" +msgstr "Odprt dostop" + +msgid "payment.directSales.price.description" +msgstr "" +"Datotečni format je na voljo za prenos na spletišču založbe na podlagi " +"odprtega dostopa in brez stroškov za bralce ali direktne prodaje (z uporabo " +"spletnega plačilnega servisa, kot nastavljeno v Distribuciji). Natavite " +"podlago dostopa za to datoteko." + +msgid "payment.directSales.validPriceRequired" +msgstr "Veljavna numerična cena je obvezna." + +msgid "payment.directSales.purchase" +msgstr "Nakup {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Prenesi {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Nakup monografske publikacije ali prenos poglavja" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Prenos sredstev je za nakup direktnega prenosa ene monografske publikacije " +"ali njenega poglavja." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"XML datoteka preslikav pomoči {$filename} za iskanje {$id} je bila ponovno " +"naložena." + +msgid "rt.metadata.pkp.dctype" +msgstr "Knjiga" + +msgid "submission.pdf.download" +msgstr "Prenesi to datoteko PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Registriraj se pri ostali založbah" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Skrij ostale založbe" + +msgid "submission.round" +msgstr "Krog  {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "" + +msgid "catalog.coverImageTitle" +msgstr "" + +msgid "grid.catalogEntry.chapters" +msgstr "" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +#~ msgid "user.role.assistant" +#~ msgstr "Asistent založbe" + +#~ msgid "plugins.categories.viewableFiles" +#~ msgstr "Objavljeni vtičniki datotek" + +#~ msgid "plugins.categories.viewableFiles.description" +#~ msgstr "" +#~ "Objavljeni vtičniki datotek podpirajo prikazovanje različnih vrst " +#~ "dokumentov, npr. z vdelavo PDF." + +msgid "section.section" +msgstr "Zbirka" diff --git a/locale/sl/manager.po b/locale/sl/manager.po new file mode 100644 index 00000000000..a36a6d1a338 --- /dev/null +++ b/locale/sl/manager.po @@ -0,0 +1,1612 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:10-08:00\n" +"PO-Revision-Date: 2020-01-17 01:37+0000\n" +"Last-Translator: Mitja Podreka \n" +"Language-Team: Slovenian \n" +"Language: sl_SI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"S tem boste nadomestili vse območno specifične nastavitve tiskovnega " +"portala, ki ste jih izbrali za to območje." + +msgid "manager.languages.noneAvailable" +msgstr "" +"Dodatni jeziki žal niso na voljo. Če želite uporabljati dodatne jezike, se " +"obrnite na administratorja spletišča." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Ta jezik bo privzet za celotno spletišče." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Preverite, ali je za vsako vlogo urednika zbirke izbrano vsaj eno " +"potrditveno polje." + +msgid "manager.series.form.reviewFormId" +msgstr "Preverite, ali ste izbrali veljaven recenzijski obrazec." + +msgid "manager.series.submissionIndexing" +msgstr "Ne bo vključeno v indeksiranje publikacije." + +msgid "manager.series.editorRestriction" +msgstr "Prispevke v to rubriko lahko oddajajo samo uredniki in uredniki zbirk." + +msgid "manager.series.confirmDelete" +msgstr "Ste prepričani, da želite trajno zbrisati to zbirko?" + +msgid "manager.series.indexed" +msgstr "Indeksirano" + +msgid "manager.series.open" +msgstr "Odprto za oddajanje prispevkov" + +msgid "manager.series.readingTools" +msgstr "Orodja za branje" + +msgid "manager.series.submissionReview" +msgstr "Ne bo recenzirano" + +msgid "manager.series.submissionsToThisSection" +msgstr "Prispevki za to zbirko" + +msgid "manager.series.abstractsNotRequired" +msgstr "Povzetek ni obvezen" + +msgid "manager.series.disableComments" +msgstr "Bralcem onemogoči komentiranje v tej rubriki." + +msgid "manager.series.book" +msgstr "Knjižne zbirke" + +msgid "manager.series.create" +msgstr "Ustvari zbirko" + +msgid "manager.series.policy" +msgstr "Opis zbirke" + +msgid "manager.series.assigned" +msgstr "Uredniki zbirke" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Izmed urednikov, ki so na voljo, izberite urednika za to zbirko Ko dodate " +"urednika zbirke, določite, ali bo nadzoroval proces recenzije in/ali " +"urejanja (lektoriranje, grafično oblikovanje in korektura) prispevkov za to " +"zbirko. Urednika zbirke ustvarite s klikom na Uredniki zbirke v meniju Vloge in Upravljanje " +"spletišča" + +msgid "manager.series.hideAbout" +msgstr "Izpusti to zbirko iz poglavja O portalu" + +msgid "manager.series.unassigned" +msgstr "Razpoložljivi uredniki zbirke" + +msgid "manager.series.form.abbrevRequired" +msgstr "Vpišite okrajšan naslov zbirke." + +msgid "manager.series.form.titleRequired" +msgstr "Vpišite naslov zbirke." + +msgid "manager.series.noneCreated" +msgstr "Ustvarjena ni bila nobena zbirka." + +msgid "manager.series.existingUsers" +msgstr "Obstoječi uporabniki" + +msgid "manager.series.seriesTitle" +msgstr "Naslov zbirke" + +msgid "manager.series.restricted" +msgstr "Avtorjem ne dovoli, da prispevke oddajajo neposredno v to zbirko." + +msgid "manager.payment.generalOptions" +msgstr "Splošne nastavitve" + +msgid "manager.payment.options.enablePayments" +msgstr "" + +msgid "manager.payment.success" +msgstr "" + +msgid "manager.settings" +msgstr "Nastavitve" + +msgid "manager.settings.pressSettings" +msgstr "Nastavitve založbe" + +msgid "manager.settings.press" +msgstr "Založba" + +msgid "manager.settings.publisher.identity" +msgstr "" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Ta polja so obvezna, če želite ustvariti veljavne metapodatke ONIX. Vključite jih, če " +"želite objaviti metapodatke ONIX." + +msgid "manager.settings.publisher" +msgstr "Ime založnika" + +msgid "manager.settings.location" +msgstr "Lokacija" + +msgid "manager.settings.publisherCode" +msgstr "Koda založnika" + +msgid "manager.settings.publisherCodeType" +msgstr "Vrsta kode založnika" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "" + +msgid "manager.settings.distributionDescription" +msgstr "" +"Vse nastavitve, specifične za distribucijski proces (obveščanje, " +"indeksiranje, arhiviranje, plačilo, orodja za branje)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Prenos monografskih publikacij" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Število ogledov strani z izvlečki monografskih publikacij" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Izvleček monografske publikacije in prenosi" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Število ogledov glavne strani zbirke" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Število ogledov glavne strani založbe" + +msgid "manager.tools" +msgstr "Orodja" + +msgid "manager.tools.importExport" +msgstr "" +"Orodja za uvoz in izvoz podatkov (založbe, monografske publikacije, " +"uporabniki)" + +msgid "manager.tools.statistics" +msgstr "" +"Orodja za ustvarjanje poročil, povezanih s statistikami uporabe (ogledi " +"domače strani kataloga, ogledi strani z izvlečki monografskih publikacije, " +"prenos monografskih publikacij)" + +msgid "manager.users.availableRoles" +msgstr "Razpoložljive vloge" + +msgid "manager.users.currentRoles" +msgstr "Trenutne vloge" + +msgid "manager.users.selectRole" +msgstr "Izberi vlogo" + +msgid "manager.people.allEnrolledUsers" +msgstr "Vsi registrirani uporabniki tega portala" + +msgid "manager.people.allPresses" +msgstr "Vse publikacije" + +msgid "manager.people.allSiteUsers" +msgstr "Registriraj obstoječega uporabnika za to publikacijo" + +msgid "manager.people.allUsers" +msgstr "Vsi registrirani uporabniki" + +msgid "manager.people.confirmRemove" +msgstr "" +"Odstrani uporabnika iz te publikacije S tem boste uporabniku zbrisali vse " +"vloge, ki jih ima." + +msgid "manager.people.enrollExistingUser" +msgstr "Registriraj obstoječega uporabnika" + +msgid "manager.people.enrollSyncPress" +msgstr "S tiskovnim portalom" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Izberite račun uporabnika, ki ga želite združiti v drug uporabniški račun " +"(npr. če kdo uporablja več uporabniških računov). Vsi oddani prispevki, " +"zadolžitve itd. prvoizbranega uporabniškega računa bodo zbrisani in " +"preneseni na drug uporabniški račun." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Izberite uporabnika, ki mu želite pripisati vsa avtorska dela, uredniške " +"zadolžitve, itd. prejšnjega uporabnika." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Sinhronizacija dodeljene vloge bo vsem uporabnikom, ki imajo dodeljeno vlogo " +"v izbrani publikaciji, dodelila enako vlogo v tej publikaciji. Ta možnost se " +"uporablja za sinhronizacijo skupin uporabnikov (npr. recenzentov) med " +"publikacijami, ki so na istem spletišču." + +msgid "manager.people.confirmDisable" +msgstr "" +"Onemogoči tega uporabnika? To bo uporabniku preprečilo, da bi se prijavil v " +"sistem. Uporabniku lahko sporočite, zakaj je bil njihov račun onemogočen." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Za tega uporabnika nimate skrbniških pravic. Razlog za to je najverjetneje " +"to, da je
        • uporabnik administrator tega spletišča
        • uporabnik " +"aktiven v publikacijah, ki jih vi ne upravljate
        To operacijo " +"lahko izvede le administrator spletišča.\n" +"\t" + +msgid "manager.system" +msgstr "Nastavitve sistema" + +msgid "manager.system.archiving" +msgstr "Arhiviranje" + +msgid "manager.system.reviewForms" +msgstr "Recenzijski obrazci" + +msgid "manager.system.readingTools" +msgstr "Orodja za branje" + +msgid "manager.system.payments" +msgstr "Plačila" + +msgid "user.authorization.pluginLevel" +msgstr "Nimate pravic za upravljanje tega vtičnika." + +msgid "manager.pressManagement" +msgstr "Upravljanje publikacije" + +msgid "manager.setup" +msgstr "Namestitev" + +msgid "manager.setup.aboutItemContent" +msgstr "Vsebina" + +msgid "manager.setup.addAboutItem" +msgstr "Dodaj element za kategorijo O publikaciji" + +msgid "manager.setup.addChecklistItem" +msgstr "Dodaj element za kontrolni seznem" + +msgid "manager.setup.addItem" +msgstr "Dodaj element" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Dodaj element v kategorijo \"O portalu\"" + +msgid "manager.setup.addNavItem" +msgstr "Dodaj element" + +msgid "manager.setup.addSponsor" +msgstr "Dodaj sponzorsko organizacijo" + +msgid "manager.setup.announcements" +msgstr "Obvestila" + +msgid "manager.setup.announcements.success" +msgstr "" + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Obvestila lahko uporabljate za obveščanje bralcev o novostih in dogodkih " +"glede publikacije. Obvestila bodo vidna na strani Obvestila." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Dodatne informacije" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Vpišite dodatne informacije, ki jih želite bralcem prikazati na strani z " +"obvestili." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Pojavlja se na strani O portalu) " + +msgid "manager.setup.contextAbout" +msgstr "" + +msgid "manager.setup.contextAbout.description" +msgstr "" + +msgid "manager.setup.contextSummary" +msgstr "" + +msgid "manager.setup.copyediting" +msgstr "Lektorji" + +msgid "manager.setup.copyeditInstructions" +msgstr "Navodila za lektoriranje" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Navodila za lektoriranje bodo na voljo lektorjem, avtorjem in urednikom " +"rubrik na ravni urejanja prispevka. Spodaj so privzeta navodila v formatu " +"HTML, ki jih lahko glavni urednik publikacije kadar koli spremeni (HTML ali " +"navadno besedilo)." + +msgid "manager.setup.copyrightNotice" +msgstr "Avtorske pravice" + +msgid "manager.setup.coverage" +msgstr "Pokritost" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" + +msgid "manager.setup.customizingTheLook" +msgstr "5. korak Prilagajanje izgleda" + +msgid "manager.setup.customTags" +msgstr "Posebne HTML oznake" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Posebne HTML oznake glave bodo vnesene v glavo vsake strani (npr. oznake " +"META)." + +msgid "manager.setup.details" +msgstr "Podrobnosti" + +msgid "manager.setup.details.description" +msgstr "Ime publikacije, kontakt, sponzorji in iskalniki." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Skrbnik portala bo registriral vse uporabniške račune. Uredniki ali uredniki " +"rubrik lahko registrirajo uporabniške račune za recenzente" + +msgid "manager.setup.discipline" +msgstr "Akademska veda in podvede" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Uporabno, kadar publikacija presega meje ene vede in/ali je avtorski " +"prispevek multidisciplinaren" + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(npr. zgodovina, izobraževanje, sociologija, psihologija, kulturne študije, " +"pravo, itd.)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "Navedite primere relevantnih akademskih ved za to publikacijo" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Za to monografsko publikacijo dodaj kazalo (če je na voljo)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Vsebina domače strani" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Na domači strani prikaži predstavljene knjige" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "" + +msgid "manager.setup.displayInSpotlight" +msgstr "Na domači strani prikaži aktualne knjige" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "" + +msgid "manager.setup.displayNewReleases" +msgstr "Prikaži novosti na domači strani" + +msgid "manager.setup.displayNewReleases.label" +msgstr "" + +msgid "manager.setup.enableDois.description" +msgstr "" + +#, fuzzy +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "Izberite objekte, ki jim boste dodelili DOI." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "" + +msgid "manager.dois.formatIdentifier.file" +msgstr "" + +msgid "manager.setup.editorDecision" +msgstr "Uredniška odločitev" + +msgid "manager.setup.emailBounceAddress" +msgstr "Naslov za obvestilo o neuspeli dostavi" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Za vsako nedostavljeno e-pošto bo na ta e-poštni naslov poslano sporočilo z " +"napako." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" + +msgid "manager.setup.emails" +msgstr "Identifikacija e-poštnega naslova" + +msgid "manager.setup.emailSignature" +msgstr "Podpis" + +msgid "manager.setup.emailSignature.description" +msgstr "" + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Omogoči obvestila" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" + +msgid "manager.setup.enablePressInstructions" +msgstr "Omogoči, da se publikacija pojavlja javno na spletišču" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Publikacija uporablja posebne identifikatorje za identifikacijo objavljenih " +"prispevkov." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Posebni identifikatorji bodo uporabljeni za idetifikacijo prelomov (npr. za " +"datoteke HTML ali PDF) objavljenih prispevkov." + +msgid "manager.setup.enableUserRegistration" +msgstr "Na spletišču se gosti lahko registrirajo z uporabniškim računom. " + +msgid "manager.setup.focusAndScope" +msgstr "Fokus in obseg publikacije" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Avtorjem, bralcem in knjižničarjem opiši obseg monografskih in ostalih " +"publikacij, ki jih bo založba objavila." + +msgid "manager.setup.focusScope" +msgstr "Fokus in obseg" + +msgid "manager.setup.focusScopeDescription" +msgstr "PRIMER PODATKOV HTML" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Avtorsko indeksiranje del" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP uporablja protokol Open Archives Initiative za zbiranje metapodatkov, ki je " +"standard v nastajanju za dobro indeksiran dostop do elektronskih " +"raziskovalnih virov na globalni ravni. Avtorji bodo uporabljali podobne " +"predloge za določanje metapodatkov svojih prispevkov. Urednik portala mora " +"izbrati kategorije za indeksiranje in avtorjem predstaviti relevantne " +"primere, ki jim bodo pomagali pri indeksiranju njihovih prispevkov, kjer " +"bodo posamezni pojmi ločeni s podpičjem (npr. področje1; področje2). Primeri " +"naj se začnejo z \"npr.\" ali \"na primer\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Vpišite e-pošto glavnega kontakta." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Vpišite ime glavnega kontakta." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Vpišite število recenzentov na oddan prispevek." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Vpišite naslov e-pošte pomožnega kontakta." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Vpišite ime pomožnega kontakta." + +msgid "manager.setup.generalInformation" +msgstr "Splošne informacije" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "1. korak Podrobnosti" + +msgid "manager.setup.guidelines" +msgstr "Navodila" + +msgid "manager.setup.preparingWorkflow" +msgstr "3. korak Priprava poteka dela" + +msgid "manager.setup.identity" +msgstr "" + +msgid "manager.setup.information" +msgstr "" + +msgid "manager.setup.information.description" +msgstr "" +"Kratek opis publikacije za knjižničarje in bodoče avtorje ter bralce, ki je " +"na voljo v stranski orodni vrstici, ko je blok informacij dodan." + +msgid "manager.setup.information.forAuthors" +msgstr "Za avtorje" + +msgid "manager.setup.information.forLibrarians" +msgstr "Za knjižničarje" + +msgid "manager.setup.information.forReaders" +msgstr "Za bralce" + +msgid "manager.setup.information.success" +msgstr "" + +msgid "manager.setup.institution" +msgstr "Institucija" + +msgid "manager.setup.itemsPerPage" +msgstr "" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" + +msgid "manager.setup.keyInfo" +msgstr "" + +msgid "manager.setup.keyInfo.description" +msgstr "" + +msgid "manager.setup.labelName" +msgstr "Ime oznake" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Grafični uredniki" + +msgid "manager.setup.layoutInstructions" +msgstr "Navodila za grafično oblikovanje in postavitev" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Tukaj lahko pripravite navodila za prelom prispevkov, objavljenih v " +"publikaciji. Pripravljena so lahko kot navadno besedilo ali HTML. Vidna bodo " +"grafičnim urednikom in urednikom rubrik na strani za urejanje prispevkov. " +"(Ker ima lahko vsaka publikacija svoj datotečni format, bibilografske " +"standarde, stilske tabele, itd., privzeta navodila niso na voljo)" + +msgid "manager.setup.layoutTemplates" +msgstr "Predloge za postavitev" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Za vsak standarden tip elementa v publikaciji (prispevek, prikaz knjige, " +"itd.) lahko naložite predloge za prelom za kateri koli format datotek (npr. " +"pdf, doc, itd.). Te predloge določajo pisavo, velikost črk, zamikov, itd. in " +"služijo grafičnim urednikom in korektorjem kot smernice za pripravo preloma." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Datoteka s predlogo" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Naslov" + +msgid "manager.setup.lists" +msgstr "Seznami" + +msgid "manager.setup.lists.success" +msgstr "" + +msgid "manager.setup.look" +msgstr "Izgled" + +msgid "manager.setup.look.description" +msgstr "" +"Glava domače strani, vsebina, glava publikacije, noga, navigacijski trak in " +"stilska tablica" + +msgid "manager.setup.settings" +msgstr "Nastavitve" + +msgid "manager.setup.management.description" +msgstr "" +"Dostopnost in varnost, urnik objavljanja publikacije, izdajanje obvestil, " +"postavke lekture, korekture in preloma." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Upravljanje z osnovnimi uredniškimi koraki" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Nastavitev upravljanja in objavljanja" + +msgid "manager.setup.managingThePress" +msgstr "4. korak Upravljanje z nastavitvami" + +msgid "manager.setup.masthead.success" +msgstr "" + +msgid "manager.setup.noImageFileUploaded" +msgstr "Naložena ni bila nobena slika." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Naložena ni bila nobena stilska tablica." + +msgid "manager.setup.note" +msgstr "Opomba" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"E-poštna obvestila pri publikacijah z več avtorji, namenjena avtorju, pošlji " +"tudi soavtorjem, ne le avtorju, ki je oddal prispevek." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Za lektoriranje bo poskrbel urednik ali urednik rubrike, v katero je " +"prispevek oddan." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Urednik ali urednik rubrike, ki je za prispevek zadolžen, bo pripravil HTML, " +"PDF in ostale datoteke." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Prelom bo urejal urednik ali urednik rubrike, ki je za prispevek zadolžen." + +msgid "manager.setup.numPageLinks" +msgstr "Število prikazanih strani" + +msgid "manager.setup.numPageLinks.description" +msgstr "" + +msgid "manager.setup.onlineAccessManagement" +msgstr "Dostop do vsebine publikacije" + +msgid "manager.setup.onlineIssn" +msgstr "e-ISSN" + +msgid "manager.setup.policies" +msgstr "Politike" + +msgid "manager.setup.policies.description" +msgstr "" +"Fokus, recenzija, rubrike, zasebnost, varnost in ostale informacije o " +"publikaciji." + +msgid "manager.setup.privacyStatement.success" +msgstr "" + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Različne komponente izgleda spletišča lahko spreminjate na tej strani, npr. " +"elemente glave in noge, oblika in tema strani ter kako so seznami z " +"informacijami predstavljeni uporabnikom." + +msgid "manager.setup.pressDescription" +msgstr "Opis založbe" + +msgid "manager.setup.pressDescription.description" +msgstr "Kratek opis vaše založbe." + +msgid "manager.setup.aboutPress" +msgstr "O založbi" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Vključite kakršne koli informacije o založbi, ki bi morda zanimale bralce, " +"avtorje ali recenzente. Med drugim lahko vključite informacije o politiki " +"odprtega dostopa, fokusu in obsegu založbe, avtorskih pravicah, sponzorstvu, " +"zgodovini založbe in izjavo o zasebnosti." + +msgid "manager.setup.pressArchiving" +msgstr "Arhiviranje portala" + +msgid "manager.setup.homepageContent" +msgstr "Vsebina domače strani spletišča" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Domačo stran privzeto sestavljajo navigacijske povezave Poleg tega lahko na " +"domačo stran dodate vsebine, tako da uporabite eno ali vse naštete možnosti, " +"ki se bodo pojavile v naslednjem vrstnem redu." + +msgid "manager.setup.pressHomepageContent" +msgstr "Vsebina domače strani spletišča" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Domačo stran privzeto sestavljajo navigacijske povezave Poleg tega lahko na " +"domačo stran dodate vsebine, tako da uporabite eno ali vse naštete možnosti, " +"ki se bodo pojavile v naslednjem vrstnem redu." + +msgid "manager.setup.contextInitials" +msgstr "Začetnice založbe" + +msgid "manager.setup.selectCountry" +msgstr "" + +msgid "manager.setup.layout" +msgstr "Postavitev spletišča" + +msgid "manager.setup.pageHeader" +msgstr "Glava strani spletišča" + +msgid "manager.setup.pageHeaderDescription" +msgstr "" + +msgid "manager.setup.pressPolicies" +msgstr "2. korak Politike portala" + +msgid "manager.setup.pressSetup" +msgstr "Nastavitev spletišča" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Namestitev vašega spletišča je bila posodobljena." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Napačen format slogovne datoteke. Dovoljeni format je .css." + +msgid "manager.setup.pressTheme" +msgstr "Tema publikacije" + +msgid "manager.setup.pressThumbnail" +msgstr "" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" + +msgid "manager.setup.contextTitle" +msgstr "Ime publikacije" + +msgid "manager.setup.printIssn" +msgstr "ISSN tiskane izdaje" + +msgid "manager.setup.proofingInstructions" +msgstr "Navodila za korekturo" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Navodila za korekturo bodo videli korektorji, avtorji, grafični uredniki in " +"uredniki rubrik v procesu urejanja prispevka. Spodaj so privzeta navodila v " +"HTML formatu, ki jih lahko glavni urednik publikacije kadar koli spremeni " +"(HTML ali navadno besedilo)." + +msgid "manager.setup.proofreading" +msgstr "Korektorji" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Podajte navodila za grafičnega urednika." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Prispevki se običajno izdajajo skupaj kot del monografske publikacije z " +"lastnim kazalom vsebine. Druga možnost je, da se lahko posamezni prispevki " +"objavijo takoj, ko so končani, tako da se dodajo v kazalo vsebine aktualne " +"izdaje. Na strani O portalu predstavite bralcem princip objavljanja, ki ga " +"bo portal uporabljal in pričakovano frekvenco izhajanja." + +msgid "manager.setup.publisher" +msgstr "Izdajatelj" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Ime organizacije, ki izdaja publikacijo, bo objavljeno na strani O portalu." + +msgid "manager.setup.referenceLinking" +msgstr "Poveži povezave do citirane literature" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Navodila za grafično oblikovanje povezav za citiranje" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Uporabniki morajo biti registrirani in prijavljeni, da lahko vidijo prosto " +"dostopno vsebino." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Uporabniki morajo biti registrirani in prijavljeni, da lahko vidijo spletno " +"stran publikacije." + +msgid "manager.setup.reviewGuidelines" +msgstr "Navodila zunanjim recenzentom" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Zunanjim recenzentom predstavite kriterije za ocenjevanje primernosti " +"prispevka za objavo v publikaciji, ki naj vključujejo tudi navodila za " +"pripravo učinkovite in uporabne ocene. Recenzenti bodo lahko predstavili " +"komentarje, namenjene avtorjem in urednitkom, kot pa tudi komentarje, " +"namenjene samo urednikom." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Navodila notranjim recenzentom" + +msgid "manager.setup.reviewOptions" +msgstr "Nastavitve recenzije" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Samodejni e-poštni opomniki" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Za aktivacijo teh možnosti mora administrator spletišča omogočiti nastavitev " +"scheduled_tasks v nastavitveni datoteki OMP. Za podporo te možnosti " +"so morda potrebne dodatne nastavitve strežnika (ki morda niso na voljo na " +"vseh strežnikih), kot je navedeno v dokumentaciji OMP." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Po opravljeni posamezni recenziji bodo uredniki ocenjevali delo recenzenta z " +"oceno od 1 do 5." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Recenzenti bodo imeli dostop do oddanega prispevka šele po tem, ko bodo " +"sprejeli recenzijo tega prispevka." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Dostop za recenzente" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Ocene recenzentov" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Opomniki recenzentom" + +msgid "manager.setup.reviewPolicy" +msgstr "Recenzijska politika" + +msgid "manager.setup.searchDescription.description" +msgstr "" + +msgid "manager.setup.searchEngineIndexing" +msgstr "Indeksiranje publikacije za iskalnike" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Napišite kratek opis publikacije, ki ga bodo iskalniki prikazali, ko bodo to " +"publikacijo pokazali med rezultati iskanja." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "" + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Rubrike in uredniki rubrik" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Če rubrike niso definirane, bodo vsi prispevki dodeljeni splošni rubriki " +"\"monografske publikacije\".)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Za ustvarjanje ali spreminjanje rubrik publikacije (npr. monografske " +"publikacije, knjižne recenzije, itd.) pojdite na Upravljanje rubrik.

        Avtorji bodo ob oddaji prispevkov za objavo določili ..." + +msgid "manager.setup.securitySettings" +msgstr "Nastavitve varnosti in dostopa" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Ostale nastavitve varnosti in dostopa lahko določite na straniAccess and " +"Security." + +msgid "manager.setup.selectEditorDescription" +msgstr "Urednik publikacije, ki bo poskrbel za opravljen uredniški postopek." + +msgid "manager.setup.selectSectionDescription" +msgstr "Rubrika publikacije, za katero bo prispevek obravnavan." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Vedno pokaži povezavo do celotnega prispevka in opozori na omejen dostop." + +msgid "manager.setup.siteAccess.view" +msgstr "" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "" + +msgid "manager.setup.stepsToPressSite" +msgstr "Pet korakov za postavitev spletne strani publikacije" + +msgid "manager.setup.subjectExamples" +msgstr "(npr. fotosinteza; črne luknje; izrek štirih barv; Bayesova teorija)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Ključne besede" + +msgid "manager.setup.subjectProvideExamples" +msgstr "V pomoč avtorjem podajte primere ključnih besed ali vsebin." + +msgid "manager.setup.submissionGuidelines" +msgstr "Navodila za oddajo prispevka" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Vpišite element seznama." + +msgid "manager.setup.workflow" +msgstr "Potek dela" + +msgid "manager.setup.submissions.description" +msgstr "" +"Navodila avtorjem, avtorske pravice in indeksiranje (vključno z " +"registracijo)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(npr. zgodovinsko raziskovanje; naravni eksperiment; književna analiza; " +"ankete/intervju)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Tip (metoda/pristop)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Podajte primere ustreznih raziskovalnih tipov, metod in pristopov za to " +"področje" + +msgid "manager.setup.useCopyeditors" +msgstr "Lektor bo dodeljen vsakemu posameznemu prispevku." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Publikacija bo imela uredniški/recenzijski odbor." + +msgid "manager.setup.useImageTitle" +msgstr "Naslovna slika" + +msgid "manager.setup.useStyleSheet" +msgstr "Slogovna datoteka publikacije" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Grafični urednik bo dodeljen, da pripravi datoteke HTML, PDF, itd. za " +"elektronsko izdajo publikacije." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Korektor bo dodeljen, da preveri prelom (skupaj z avtorji) pred objavo " +"publikacije." + +msgid "manager.setup.userRegistration" +msgstr "Registracija uporabnikov" + +msgid "manager.setup.useTextTitle" +msgstr "Naslov" + +msgid "manager.setup.volumePerYear" +msgstr "Število zvezkov na leto" + +msgid "manager.setup.publicationFormat.code" +msgstr "Format" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Format mora biti izbran." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Za ta format morate izbrati ime." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Ali je ta format v fizični (ne digitalni) obliki?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Tega formata publikacije ni mogoče zbrisati, saj ga trenutno uporablja " +"monografska publikacija vaše publikacije." + +msgid "manager.setup.newPublicationFormat" +msgstr "Nov format publikacije" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Če želite ustvariti nov format publikacije, izpolnite spodnji obrazec in " +"pritisnite na gumb \"Ustvari\"." + +msgid "manager.setup.genresDescription" +msgstr "" +"Ti žanri se uporabljajo za imenovanje datotek in so vidni v spustnem meniju, " +"ki se pojavi pri nalaganju datotek. Šifra, dodeljena žanru, uporabniku " +"omogoča, da datoteko poveže s celotno knjigo 99Z ali pa z določeno številko " +"poglavja (npr. 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" + +msgid "manager.setup.disableSubmissions.description" +msgstr "" + +msgid "manager.setup.genres" +msgstr "Žanri" + +msgid "manager.setup.newGenre" +msgstr "Novi žanr monografske publikacije" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Če želite ustvariti nov žanr, izpolnite spodnji obrazec in pritisnite na " +"gumb \"Ustvari\"." + +msgid "manager.setup.deleteSelected" +msgstr "Zbriši označeno" + +msgid "manager.setup.restoreDefaults" +msgstr "Obnovi privzete nastavitve" + +msgid "manager.setup.prospectus" +msgstr "Predstavitvena brošura" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Predstavitvena brošura je dokument, ki ga pripravi založba, da bi avtorjem " +"pomagala opisati njihove prispevke tako, da lahko založba oceni vrednost teh " +"prispevkov. V brošuri je lahko veliko stvari -- od potenciala na trgu do " +"teoretične vrednosti dela --, vendar pa mora založba oblikovati tako " +"brošuro, ki je v skladu z njihovim načrtom za objavljanje." + +msgid "manager.setup.submitToCategories" +msgstr "Dovoli prispevke v to kategorijo" + +msgid "manager.setup.submitToSeries" +msgstr "Dovoli prispevke v to zbirko" + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN je mednarodna standardna 8-mestna serijska številka publikacije, ki " +"omogoča identifikacijo periodičnih publikacij, tudi elektronskih. Številko " +"ISSN je mogoče pridobiti na uradna stran ISSN. " + +msgid "manager.setup.currentFormats" +msgstr "Trenutni formati" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Kategorije in zbirke" + +msgid "manager.setup.categories.description" +msgstr "" +"Ustvarite lahko seznam kategorij za boljšo organizacijo vaših publikacij. " +"Kategorije so skupine, v katere so knjige razvrščene glede na obravnavano " +"tematiko, npr. ekonomija, literatura, poezija, itd. Kategorije so lahko " +"vgnezdene znotraj večjih kategorij, npr. kategorija ekonomija lahko " +"vključuje kategoriji mikroekonomija in makroekonomija. Gostje bodo na " +"portalu lahko iskali in brskali po kategorijah." + +msgid "manager.setup.series.description" +msgstr "" +"Ustvarite lahko zbirke za boljšo organizacijo vaših publikacij. Zbirka je " +"izbor knjig, posvečen določeni temi, ki ga je nekdo (običajno član " +"fakultete) predlagal in sedaj z njim upravlja. Gostje bodo na portalu lahko " +"iskali in brskali po zbirkah." + +msgid "manager.setup.reviewForms" +msgstr "Recenzijski obrazci" + +msgid "manager.setup.roleType" +msgstr "Tip vloge" + +msgid "manager.setup.authorRoles" +msgstr "Vloge avtorjev" + +msgid "manager.setup.managerialRoles" +msgstr "Skrbniške vloge" + +msgid "manager.setup.availableRoles" +msgstr "Razpoložljive vloge" + +msgid "manager.setup.currentRoles" +msgstr "Trenutne vloge" + +msgid "manager.setup.internalReviewRoles" +msgstr "Vloge notranjih recenzentov" + +msgid "manager.setup.masthead" +msgstr "Kolofon" + +msgid "manager.setup.editorialTeam" +msgstr "" + +msgid "manager.setup.editorialTeam.description" +msgstr "" + +msgid "manager.setup.files" +msgstr "Datoteke" + +msgid "manager.setup.productionTemplates" +msgstr "Predloge produkcije" + +msgid "manager.files.note" +msgstr "" +"Opozorilo: Brskalnik datotek je napredna funkcija, ki omogoča, da se lahko " +"datoteke in mape, povezane s publikacijo, neposredno pregledujejo in urejajo." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

        predlagani podatki o avtorskih pravicah organizacije Creative Commons

        predlagana politika za spletišča, ki ponujajo odprt dostop

        " +"Avtorji, ki bodo izdajali pri tej založbi, se strinjajo z naslednjimi " +"pogoji:
        1. Avtorji obržijo avtorske pravice in založbi dajo " +"pravico za prvo objavo, delo pa ima hkrati tudi licenco Creative Commons " +"(priznanje avtorstva), ki drugim omogoča, da delo s citiranjem avtorja " +"in prvotne objave pri tej založbi delijo naprej.
        2. Avtorji lahko " +"vstopajo v dodatna ločena pogodbena razmerja za neekskluzivno distribucijo " +"dela, ki je bilo prvotno objavljeno pri tej založbi (npr. za hrambo v " +"repozitoriju institucije ali objavo v knjigi), kar mora biti ob objavi " +"izrecno zapisano.
        3. Avtorjem se dovoli in se jih pri tem podpira, " +"da svoje delo pred objavo in v procesu oddajanja objavijo na spletu (npr. v " +"institucionalnih repozitorijih ali na svoji spletni strani), saj to pripelje " +"do koristnih izmenjav in pa predčasnega in bolj pogostega citiranja dela " +"(Glej Učinek odprtega dostopa).

        Predlagana politika za " +"založbe, ki ponujajo zakasnjeni odprti dostop

        Authors who publish with " +"this press agree to the following terms:
        1. Avtorji, ki " +"bodo izdajali pri tej založbi, se strinjajo z naslednjimi pogoji:
          1. Avtorji obržijo avtorske pravice in založbi dajo pravico za prvo " +"objavo za dobo [določite časovno obdobje], potem ko delo dobi tudi licenco " +" " +"Creative Commons (priznanje avtorstva), ki drugim omogoča, da delo s " +"citiranjem avtorja in prvotne objave pri tej založbi delijo naprej.
          2. " +"
          3. Avtorji lahko vstopajo v dodatna ločena pogodbena razmerja za " +"neekskluzivno distribucijo dela, ki je bilo prvotno objavljeno pri tej " +"založbi (npr. za hrambo v repozitoriju institucije ali objavo v knjigi), kar " +"mora biti ob objavi izrecno zapisano.
          4. Avtorjem se dovoli in se " +"jih pri tem podpira, da svoje delo pred objavo in v procesu oddajanja " +"objavijo na spletu (npr. v institucionalnih repozitorijih ali na svoji " +"spletni strani), saj to pripelje do koristnih izmenjav in pa predčasnega in " +"bolj pogostega citiranja dela (Glej Učinek odprtega dostopa).
          " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Koraki: Oddaja prispevka > Recenzija prispevka > Urejanje prispevka " +"> Kazalo.

          Izberi model za obravnavanje uredniškega procesa. " +"(Za imenovanje odgovornega urednika in urednikov zbirke pojdite na Uredniki " +"v Upravljanju publikacije.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

          Če želite omogočiti bralcem, da najdejo dostop do spletnih različic " +"virov, ki jih je avtor uporabil, imate naslednje možnosti.

            " +"
          1. Dodaj orodje za branje

            Urednik publikacije lahko doda " +"\"Poišči referenco\" med orodja za branje, ki so na voljo poleg publikacije. " +"S tem omogoči bralcu, da skopira naslov citirane literature in nato išče po " +"predizbranih bazah za citirano delo.

          2. Spletne povezave " +"citirane literature

            Grafični urednik lahko doda povezavo do " +"literature, ki je na voljo na spletu , s pomčjo naslednjih navodil (ki jih " +"je možno urediti).

          " + +msgid "manager.publication.library" +msgstr "Arhiv založbe" + +msgid "manager.setup.resetPermissions" +msgstr "Ponastavi dovoljenja monografskih publikacij" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Ali ste prepričani, da želite ponastaviti dovoljenja, ki so že določena za " +"monografske publikacije?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Izjava o avtorskih pravicah in licenci bo trajno zapisana poleg objavljenih " +"vsebin, saj bo s tem zagotavljala, da se ti podatki ne bodo spreminjali v " +"primeru, da publikacija spremeni politiko novih prispevkov. Za ponastavitev " +"shranjenih dovoljenj, ki so že zapisane poleg objavljenih vsebin, uporabite " +"spodnji gumb." + +msgid "manager.setup.resetPermissions.success" +msgstr "" + +msgid "grid.genres.title.short" +msgstr "Komponente" + +msgid "grid.genres.title" +msgstr "Komponente monografskih publikacij" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Pošlji kopijo glavnega kontakta publikacije, kot je bil določen v " +"nastavitvah portala." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Naslov zbirke mora biti zapisan samo s črkami in številkami." + +msgid "grid.series.pathExists" +msgstr "Ta naslov zbirke že obstaja. Vnesite edinstveno pot." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" + +msgid "grid.series.urlWillBe" +msgstr "URL zbirke bo {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "" + +msgid "stats.publications.details" +msgstr "" + +msgid "stats.publications.none" +msgstr "" + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "" + +msgid "stats.publications.countOfTotal" +msgstr "" + +msgid "stats.publications.abstracts" +msgstr "" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "" + +msgid "plugins.importexport.common.error.validation" +msgstr "" + +msgid "plugins.importexport.common.invalidXML" +msgstr "" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "" + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "" + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "" + +msgid "emailTemplate.variable.context.contextName" +msgstr "" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "" + +msgid "emailTemplate.variable.context.contactName" +msgstr "" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "" + +msgid "mailable.validateEmailContext.name" +msgstr "" + +msgid "mailable.validateEmailContext.description" +msgstr "" + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "" + +msgid "doi.description" +msgstr "" +"Vtičnik omogoča dodeljevanje indentifikatorjev digitalnih objektov " +"monografijam, formatom publikacij in datotekam v OMP." + +msgid "doi.readerDisplayName" +msgstr "" + +msgid "doi.manager.settings.description" +msgstr "" +"Nastavite vtičnik DOI, da boste lahko upravljali in uporabljali DOI in OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Označite objavljene predmete, ki jim boste dodelili identifikatorje " +"digitalnih objektov (DOI):" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Monografije" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Formati publikacij" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Datoteke" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Predpona DOI" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "Predpona DOI je obvezna in mora biti v formatu 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Uporabljajte spodnje vzorce, da ustvarite pripone DOI. Uporabljajte %p za " +"začetnice publikacije, %m za id monografije, %f za id formata publikacije, " +"%s za id datoteke in %x za Spremeni identifikator." + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"press%ppub%r, na primer, lahko ustvari DOI, kot je 10.1234/pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "za monografije" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "za formate publikacij" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "za datoteke" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Vnesite vzorec za pripono DOI za monografije." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Vnesite vzorec za pripono DOI za formate publikacij." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Vnesite vzorec za pripono DOI za datoteke." + +msgid "doi.manager.settings.doiReassign" +msgstr "Prerazporedi DOI" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Če boste zamenjali vaše nastavitve DOI, to ne bo vplivalo na obstoječe DOI. " +"Ko boste shranili nastavitve DOI, uporabite ta ukaz, da izbrišete vse " +"obstoječe DOI, da bodo lahko nove nastavitve delovale za obstoječe objekte." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Ali ste prepričani, da želite izbrisati vse obstoječe DOI?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "" + +msgid "doi.editor.doi.assignDoi" +msgstr "" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "monografija" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "format publikacije" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "datoteka" + +msgid "doi.editor.customSuffixMissing" +msgstr "DOI ni mogoče dodeliti, ker spremenjena pripona ni na voljo." + +msgid "doi.editor.missingParts" +msgstr "" + +msgid "doi.editor.patternNotResolved" +msgstr "DOI ni mogoče dodeliti, ker vsebuje nerešen vzorec." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Pred vami je predogled DOI. Izberite seznam in shranite obliko, ki ji želite " +"dodeliti DOI." + +msgid "doi.editor.assigned" +msgstr "{$pubObjectType} ste dodelili DOI." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Pripona DOI je že v rabi za drug objavljen element. Za vsak element vnesite " +"drugačno pripono DOI." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Izbriši DOI" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Ali ste prepričani, da želite izbrisati obstoječ DOI?" + +msgid "doi.editor.assignDoi" +msgstr "{$pubObjectType} dodelite DOI {$pubId}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI ni mogoče dodeliti, ker spremenjena pripona ni na voljo." + +msgid "doi.editor.assignDoi.pattern" +msgstr "DOI ni mogoče dodeliti, ker vsebuje nerešen vzorec." + +msgid "doi.editor.assignDoi.assigned" +msgstr "Odobrili boste DOI {$pubId}. " + +msgid "doi.editor.missingPrefix" +msgstr "" + +msgid "doi.editor.preview.publication" +msgstr "" + +msgid "doi.editor.preview.publication.none" +msgstr "" + +msgid "doi.editor.preview.chapters" +msgstr "" + +msgid "doi.editor.preview.publicationFormats" +msgstr "" + +msgid "doi.editor.preview.files" +msgstr "" + +msgid "doi.editor.preview.objects" +msgstr "" + +msgid "doi.manager.submissionDois" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.people.existingUserRequired" +#~ msgstr "Vnesen mora biti obstoječi uporabnik" + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Predpona DOI" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "Predpono DOI (digitalni identifikator objekta) dodeli CrossRef in je v formatu 10.xxxx " +#~ "(npr. 10.1234)." + +#~ msgid "manager.setup.emailSignatureDescription" +#~ msgstr "" +#~ "Predpripravljena e-pošta, ki jo tiskovni portal pošlje avtomatsko, bo " +#~ "imela na dnu naslednji podpis." + +#~ msgid "manager.setup.internalReviewGuidelinesDescription" +#~ msgstr "" +#~ "Podobno kot pri navodilih zunanjim recenzentom bodo v teh navodilih " +#~ "informacije o ocenjevanju prispevkov za recenzente. Ta navodila so " +#~ "namenjena notranjim recenzentom. Notranjo recenzijo običajno opravijo " +#~ "recenzenti znotraj založbe." + +#~ msgid "manager.setup.category" +#~ msgstr "Kategorija" + +#~ msgid "manager.setup.masthead.description" +#~ msgstr "" +#~ "Seznam urednikov, skrbnikov in ostalih posameznikov, povezanih s " +#~ "publikacijo." diff --git a/locale/sl/submission.po b/locale/sl/submission.po new file mode 100644 index 00000000000..9bfe24f9d95 --- /dev/null +++ b/locale/sl/submission.po @@ -0,0 +1,584 @@ +# Matevž Rudolf , 2022. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-28T15:10:10-08:00\n" +"PO-Revision-Date: 2022-09-29 20:48+0000\n" +"Last-Translator: Matevž Rudolf \n" +"Language-Team: Slovenian \n" +"Language: sl_SI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Izberi komponento" + +msgid "submission.title" +msgstr "Naslov knjige" + +msgid "submission.select" +msgstr "Izberi prispevek" + +msgid "submission.synopsis" +msgstr "Kratka vsebina" + +msgid "submission.workflowType" +msgstr "Vrsta prispevka" + +msgid "submission.workflowType.description" +msgstr "" +"Monografska publikacija je delo, ki ga je v celoti napisal en ali več " +"avtorjev. Pri zborniku ima vsako poglavje drugega avtorja (v enem od " +"naslednjih korakov je treba navesti podrobnosti o posameznih poglavjih)." + +msgid "submission.workflowType.editedVolume.label" +msgstr "Zbornik" + +msgid "submission.workflowType.editedVolume" +msgstr "Zbornik: Vsako poglavje ima svojega avtorja." + +msgid "submission.workflowType.authoredWork" +msgstr "Monografska publikacija: Knjiga ima enega avtorja." + +msgid "submission.workflowType.change" +msgstr "" + +msgid "submission.editorName" +msgstr "" + +msgid "submission.monograph" +msgstr "Monografska publikacija" + +msgid "submission.published" +msgstr "Pripravljeno na tisk" + +msgid "submission.fairCopy" +msgstr "Čistopis" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Dovoljenja" + +msgid "submission.chapter" +msgstr "Poglavje" + +msgid "submission.chapters" +msgstr "Poglavja" + +msgid "submission.chapter.addChapter" +msgstr "Dodaj poglavje" + +msgid "submission.chapter.editChapter" +msgstr "Uredi poglavje" + +msgid "submission.chapter.pages" +msgstr "" + +msgid "submission.copyedit" +msgstr "Lektoriranje" + +msgid "submission.publicationFormats" +msgstr "Formati publikacije" + +msgid "submission.proofs" +msgstr "Korekture" + +msgid "submission.download" +msgstr "Prenesi" + +msgid "submission.sharing" +msgstr "Deli" + +msgid "manuscript.submission" +msgstr "Oddaja rokopisa" + +msgid "submission.round" +msgstr "Krog  {$round}" + +msgid "submissions.queuedReview" +msgstr "V recenziji" + +msgid "manuscript.submissions" +msgstr "Oddaje rokopisa" + +msgid "submission.metadata" +msgstr "Metapodatki" + +msgid "submission.supportingAgencies" +msgstr "Podporne ustanove" + +msgid "grid.action.addChapter" +msgstr "Ustvari novo poglavje" + +msgid "grid.action.editChapter" +msgstr "Uredi poglavje" + +msgid "grid.action.deleteChapter" +msgstr "Odstrani poglavje" + +msgid "submission.submit" +msgstr "Nov prispevek" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Nov prispevek v" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Nov prispevek" + +msgid "submission.submit.upload" +msgstr "Naloži prispevek" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "" + +msgid "submission.submit.seriesPosition" +msgstr "Mesto nove zbirke" + +msgid "submission.submit.seriesPosition.description" +msgstr "Primeri: Knjiga 2, letnik 2" + +msgid "submission.submit.privacyStatement" +msgstr "Izjava o zasebnosti" + +msgid "submission.submit.contributorRole" +msgstr "Vloga sodelavca" + +msgid "submission.submit.submissionFile" +msgstr "Datoteka s prispevkom" + +msgid "submission.submit.prepare" +msgstr "Pripravi" + +msgid "submission.submit.catalog" +msgstr "Katalog" + +msgid "submission.submit.metadata" +msgstr "Metapodatki" + +msgid "submission.submit.finishingUp" +msgstr "Končaj" + +msgid "submission.submit.confirmation" +msgstr "Potrdi" + +msgid "submission.submit.nextSteps" +msgstr "Naslednji koraki" + +msgid "submission.submit.coverNote" +msgstr "Spremni dopis za urednika" + +msgid "submission.submit.generalInformation" +msgstr "Splošne informacije" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Založba je bila obveščena o vašem prispevku. Poslali smo vam potrditveno e-" +"pošto za vašo evidenco. Ko urednik zaključi recenzijo vašega prispevka, " +"boste prejeli obvestilo." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Preberite in izberite elemente na seznamu pogojev za oddajo prispevka. " +"Nekateri elementi {$itemsRemaining} niso bili izbrani." + +msgid "submission.submit.placement" +msgstr "Oddaja prispevka" + +msgid "submission.submit.userGroup" +msgstr "Izberi vlogo ..." + +msgid "submission.submit.noContext" +msgstr "" + +msgid "grid.chapters.title" +msgstr "Poglavja" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Odstrani naloženo lektorsko datoteko" + +msgid "submission.complete" +msgstr "Odobreno" + +msgid "submission.incomplete" +msgstr "Čakanje na odobritev" + +msgid "submission.editCatalogEntry" +msgstr "Vnos" + +msgid "submission.catalogEntry.new" +msgstr "Nov vnos v katalog" + +msgid "submission.catalogEntry.add" +msgstr "" + +msgid "submission.catalogEntry.select" +msgstr "" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" + +msgid "submission.catalogEntry.confirm" +msgstr "Dodajte knjigo v javni katalog" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Potrdite, da je prispevek pripravljen za vnos v katalog." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Monografska publikacija je pripravljena za vnos v javni katalog." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografska publikacija" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Katalog" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Format publikacije" + +msgid "submission.event.metadataPublished" +msgstr "Metapodatki monografske publikacije so odobreni za objavo." + +msgid "submission.event.metadataUnpublished" +msgstr "Metapodatki monografske publikacije niso več obljavljeni." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Format publikacije \"{$publicationFormatName}\" je omogočen." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Format publikacije \"{$publicationFormatName}\" je onemogočen." + +msgid "submission.event.publicationFormatPublished" +msgstr "Format publikacije \"{$publicationFormatName}\" je odobren za objavo." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "Format publikacije \"{$publicationFormatName}\" ni več objavljen." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Metapodatki kataloga so posodobljeni." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "Metapodatki formata publikacije \"{$formatName}\" so posodobljeni." + +msgid "submission.event.publicationFormatCreated" +msgstr "Format publikacije \"{$formatName}\" je ustvarjen." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Format publikacije \"{$formatName}\" je odstranjen." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Pošlji na zunanjo recenzijo" + +msgid "workflow.review.externalReview" +msgstr "Zunanja recenzija" + +msgid "submission.upload.fileContents" +msgstr "Komponenta prispevka" + +msgid "submission.dependentFiles" +msgstr "Povezane datoteke" + +msgid "submission.metadataDescription" +msgstr "" +"Te specifikacije temeljijo na metapodatkih po mednarodnem standardu Dublin " +"Core, ki se uporablja za opis vsebine publikacij." + +msgid "section.any" +msgstr "Zbirke" + +msgid "submission.list.monographs" +msgstr "" + +msgid "submission.list.countMonographs" +msgstr "" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "" + +msgid "submission.list.orderFeatures" +msgstr "" + +msgid "submission.list.orderingFeatures" +msgstr "" + +msgid "submission.list.orderingFeaturesSection" +msgstr "" + +msgid "submission.list.saveFeatureOrder" +msgstr "" + +msgid "submission.list.viewEntry" +msgstr "" + +msgid "catalog.browseTitles" +msgstr "" + +msgid "publication.catalogEntry" +msgstr "Vnos v katalog" + +msgid "publication.catalogEntry.success" +msgstr "" + +msgid "publication.invalidSeries" +msgstr "" + +msgid "publication.inactiveSeries" +msgstr "" + +msgid "publication.required.issue" +msgstr "" + +msgid "publication.publishedIn" +msgstr "" + +msgid "publication.publish.confirmation" +msgstr "" + +msgid "publication.scheduledIn" +msgstr "" + +msgid "submission.publication" +msgstr "Objava" + +msgid "publication.status.published" +msgstr "Objavljeno" + +msgid "submission.status.scheduled" +msgstr "Načrtovano" + +msgid "publication.status.unscheduled" +msgstr "Ni načrtovano" + +msgid "submission.publications" +msgstr "Objave" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Leto avtorskih pravic bo določeno avtomatično, ko bo številka objavljena." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Leto avtorskih pravic bo ob objavi avtomatično nastavljeno na datum izdaje." + +msgid "publication.datePublished" +msgstr "Datum objave" + +msgid "publication.editDisabled" +msgstr "Ta verzija je bila objavljena in je ni mogoče spremeniti." + +msgid "publication.event.published" +msgstr "Prispevek je bil objavljen." + +msgid "publication.event.scheduled" +msgstr "Prispevek je bil načrtovan za objavo." + +msgid "publication.event.unpublished" +msgstr "Prispevek ni več objavljen." + +msgid "publication.event.versionPublished" +msgstr "Nova verzija je bila objavljena." + +msgid "publication.event.versionScheduled" +msgstr "Nova verzija je bila načrtovana za objavo." + +msgid "publication.event.versionUnpublished" +msgstr "Nova verzija ni več objavljena." + +msgid "publication.invalidSubmission" +msgstr "Prispevka za objavo ni bilo mogoče najti." + +msgid "publication.publish" +msgstr "Objavi" + +msgid "publication.publish.requirements" +msgstr "Spodnje zahteve morajo biti izpolnjene pred objavo." + +msgid "publication.required.declined" +msgstr "Zavrnjen prispevek ne more biti objavljen." + +msgid "publication.required.reviewStage" +msgstr "" +"Prispevek mora biti v fazi Lektoriranje ali Produkcija preden je lahko " +"objavljen." + +msgid "submission.license.description" +msgstr "" +"Licenca bo ob objavi avtomatično nastavljena na {$licenseName}." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Avtorske pravice bodo ob objavi avtomatično nastavljene na {$copyright}." + +msgid "submission.copyrightOther.description" +msgstr "Dodeli avtorske pravice za objavljene članke naslednji osebi." + +msgid "publication.unpublish" +msgstr "Umakni objavo" + +msgid "publication.unpublish.confirm" +msgstr "Ste prepričani, da želite umakniti to objavo?" + +msgid "publication.unschedule.confirm" +msgstr "Ste prepričani, da ne želite načrtovati te objave?" + +msgid "publication.version.details" +msgstr "Podrobnosti objave za verzijo {$version}" + +msgid "submission.queries.production" +msgstr "Produkcijska diskusija" + +msgid "publication.chapter.landingPage" +msgstr "" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" + +#~ msgid "submission.title.tip" +#~ msgstr "" +#~ "Vrsta oddaje je običajno \"slika\", \"besedilo\" ali druga vrsta " +#~ "večpredstavnostne datoteke, vključno s \"programsko opremo\" ali " +#~ "\"interaktivno vsebino\". Izberite vrsto, ki je najbližja naravi vašega " +#~ "prispevka. Primere lahko najdete na http://dublincore.org/documents/2001/04/12/usageguide/generic." +#~ "shtml#type" diff --git a/locale/sl_SI/admin.po b/locale/sl_SI/admin.po deleted file mode 100644 index b3438e9ee7c..00000000000 --- a/locale/sl_SI/admin.po +++ /dev/null @@ -1,100 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28T15:10:09-08:00\n" -"PO-Revision-Date: 2020-01-17 01:37+0000\n" -"Last-Translator: Mitja Podreka \n" -"Language-Team: Slovenian " -"\n" -"Language: sl_SI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.hostedContexts" -msgstr "Gostujoče založbe" - -msgid "admin.settings.redirect" -msgstr "Preusmeritev založbe" - -msgid "admin.settings.redirectInstructions" -msgstr "Vse prošnje na glavnem mestu bodo preusmerjene na to založbo. To je uporabno, če na spletišču gostuje le ena založba." - -msgid "admin.settings.noPressRedirect" -msgstr "Ne preusmeri" - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "Ta bo privzeti jezik za spletišče in vse gostujoče založbe." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "Izberi vse območne jezike, ki bodo podprte na tem spletišču. Izbrani območni jeziki bodo na voljo za vse gostujoče založbe in se bodo pojavljali na meniju možnih jezikov na vsaki spletni strani (to lahko spremenite na straneh založbe). Če ne bo izbranih več območnih jezikov, se na spletnih straneh ne bo pojavil meni za spreminjanje jezika in razširjene jezikovne nastavitve ne bodo na voljo za založbe." - -msgid "admin.locale.maybeIncomplete" -msgstr "*Označeni območni jeziki so lahko nepopolni." - -msgid "admin.languages.confirmUninstall" -msgstr "Ali ste prepričani, da želite odstraniti ta območni jezik? To bo lahko vplivalo na vse gostujoče založbe, ki trenutno uporabljajo območni jezik." - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "Izberite dodatne območne jezike, ki jih želite imeti na voljo na tem spletišču. Območni jeziki morajo biti nameščeni, preden jih gostujoča založba lahko uporablja. V dokumentaciji OMP lahko najdete več informacij o podpori novim jezikov." - -msgid "admin.languages.confirmDisable" -msgstr "Ali ste prepričani, da želite odstraniti ta območni jezik? To bo lahko vplivalo na vse gostujoče založbe, ki trenutno uporabljajo območni jezik." - -msgid "admin.systemVersion" -msgstr "Različica OMP" - -msgid "admin.systemConfiguration" -msgstr "Nastavitve OMP" - -msgid "admin.presses.pressSettings" -msgstr "Nastavitve založbe" - -msgid "admin.presses.noneCreated" -msgstr "Nobena založba ni bila ustvarjena." - -msgid "admin.contexts.confirmDelete" -msgstr "Ali ste prepričani, da želite dokončno zbrisati to založbo in vso njeno vsebino?" - -msgid "admin.contexts.create" -msgstr "Ustvari založbo" - -msgid "admin.contexts.form.titleRequired" -msgstr "Naslov je obvezen." - -msgid "admin.contexts.form.pathRequired" -msgstr "Pot je obvezna." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "Pot lahko vsebuje le alfanumerične znake, podčrtaje in pomišljaje ter se mora začeti in končati z alfanumeričnim znakom." - -msgid "admin.contexts.form.pathExists" -msgstr "Izbrano pot uporablja že druga založba." - -msgid "admin.contexts.contextDescription" -msgstr "Opis založbe" - -msgid "admin.presses.addPress" -msgstr "Dodaj založbo" - -msgid "admin.overwriteConfigFileInstructions" -msgstr "

          OPOZORILO!

          Sistem ne more samodejno prepisati nastavitvene datoteke. Za ročni vpis sprememb v nastavitveno datoteko config.inc.php jo odprite v primernem urejevalniku besedil in zamenjajte vsebino datoteke z besedilom spodaj.

          " - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} je bil uspešno urejen." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} je bil uspešno ustvarjen." - -msgid "admin.settings.info.success" -msgstr "Informacije o spletni strani so bile uspešno posodobljene." - -msgid "admin.settings.config.success" -msgstr "Nastavitve konfiguracije spletne strani so bile uspešno posodobljene." - -msgid "admin.settings.appearance.success" -msgstr "Nastavitve izgleda spletne strani so bile uspešno posodobljene." diff --git a/locale/sl_SI/default.po b/locale/sl_SI/default.po deleted file mode 100644 index 0852884b6d0..00000000000 --- a/locale/sl_SI/default.po +++ /dev/null @@ -1,138 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-11-28T15:10:09-08:00\n" -"PO-Revision-Date: 2019-11-28T15:10:09-08:00\n" -"Language: \n" - -msgid "default.genres.appendix" -msgstr "Dodatek" - -msgid "default.genres.bibliography" -msgstr "Bibliografija" - -msgid "default.genres.manuscript" -msgstr "Rokopis knjige" - -msgid "default.genres.chapter" -msgstr "Rokopis poglavja" - -msgid "default.genres.glossary" -msgstr "Glosar" - -msgid "default.genres.index" -msgstr "Kazalo" - -msgid "default.genres.preface" -msgstr "Predgovor" - -msgid "default.genres.prospectus" -msgstr "Prospekt" - -msgid "default.genres.table" -msgstr "Tabela" - -msgid "default.genres.figure" -msgstr "Slika" - -msgid "default.genres.photo" -msgstr "Fotografija" - -msgid "default.genres.illustration" -msgstr "Ilustracija" - -msgid "default.genres.other" -msgstr "Drugo" - -msgid "default.groups.name.manager" -msgstr "Upravljalec publikacije" - -msgid "default.groups.plural.manager" -msgstr "Upravljalci publikacije" - -msgid "default.groups.abbrev.manager" -msgstr "Upravljalec publikacije" - -msgid "default.groups.name.editor" -msgstr "Urednik publikacije" - -msgid "default.groups.plural.editor" -msgstr "Uredniki publikacije" - -msgid "default.groups.abbrev.editor" -msgstr "Urednik publikacije" - -msgid "default.groups.name.sectionEditor" -msgstr "Urednik zbirke" - -msgid "default.groups.plural.sectionEditor" -msgstr "Uredniki zbirke" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "Urednik zbirke" - -msgid "default.groups.name.chapterAuthor" -msgstr "Avtor poglavja" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Avtorji poglavja" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "Avtor poglavja" - -msgid "default.groups.name.volumeEditor" -msgstr "Urednik zbornika" - -msgid "default.groups.plural.volumeEditor" -msgstr "Uredniki zbornika" - -msgid "default.groups.abbrev.volumeEditor" -msgstr "Urednik zbornika" - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "Prispevek še ni bil objavljen, niti ni v procesu objavljanja v kakšni drugi publikaciji (oziroma je razlaga podana v polju Komentarji uredniku)." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "Datoteka s prispevkom je v formatu Microsoft Word, RTF ali OpenDocument." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Kjer je to na voljo, so objavljene povezave URL do uporabljene literature." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "Besedilo ima enojni razmak; uporabljena pisava je velikosti 12 točk; za poudarjene besede je uporabljen stil poševno, podčrtano le za URL povezave; in vse ilustracije, slike in tabele so na primernih mestih v besedilu, namesto na koncu besedila." - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "Besedilo ustreza stilskim in bibliografskim zahtevam, navedenim v Navodila za avtorje, ki se nahajajo v rubriki \"O publikaciji\"." - -msgid "default.contextSettings.privacyStatement" -msgstr "

          Imena in e-poštni naslovi, vpisani v tem spletišču, se bodo uporabljali striktno le za navedene namene te publikacije in ne bodo predane tretjim osebam za kateri koli namen.

          " - -msgid "default.contextSettings.openAccessPolicy" -msgstr "Publikacija je takoj prosto dostopna vsem v prepričanju, da prosta dostopnost do rezultatov raziskav spodbuja večjo izmenjavo znanja." - -msgid "default.contextSettings.emailSignature" -msgstr "
          ________________________________________________________________________
          {$ldelim}$contextName{$rdelim}" - -msgid "default.contextSettings.forReaders" -msgstr "Bralce spodbujamo, da se prijavijo na obvestila o izdajah publikacije založbe. Sledite povezavi Vpis na vrhu domače strani spletišča. Po registraciji boste po e-pošti prejeli kazalo vsebine vsake nove monografske publikacije na spletišču. Spisek registriranih bralcev pomeni za publikacijo tudi določeno podporo s strani bralcev. Oglejte si Izjavo o zasebnosti podatkov publikacije, ki bralcem zagotavlja, da imena in e-poštni naslovi bralcev ne bodo zlorabljeni." - -msgid "default.contextSettings.forAuthors" -msgstr "Vas zanima objavljanje na tem spletišču? Predlagamo, da si ogledate stran O publikaciji za ogled uredniške politike publikacije in straniNavodila avtorjem. Avtorji se morajo pred objavo vpisati pri založbi, če pa so že registrirani, se lahko vanjo enostavno prijavijo in začnejo s procesom oddaje prispevka, ki vsebuje 5 korakov." - -msgid "default.contextSettings.forLibrarians" -msgstr "Spodbujamo znanstvene knjižnice, da to publikacijo uvrstijo v svojo evidenco elektronskih publikacij. Ta prosto dostopni sistem za objavljanje je prav tako primeren za knjižnice, katerih uslužbenci jo lahko uporabljajo za urejanje publikacij (glej Open Monograph Press)." - -msgid "default.groups.name.externalReviewer" -msgstr "Zunanji recenzent" - -msgid "default.groups.plural.externalReviewer" -msgstr "Zunanji recenzenti" - -msgid "default.groups.abbrev.externalReviewer" -msgstr "Zunanji recenzent" diff --git a/locale/sl_SI/editor.po b/locale/sl_SI/editor.po deleted file mode 100644 index f7f988c6a2e..00000000000 --- a/locale/sl_SI/editor.po +++ /dev/null @@ -1,172 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28T15:10:09-08:00\n" -"PO-Revision-Date: 2020-01-18 11:35+0000\n" -"Last-Translator: Primož Svetek \n" -"Language-Team: Slovenian \n" -"Language: sl_SI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.submissionArchive" -msgstr "Arhiv oddanih prispevkov" - -msgid "editor.monograph.cancelReview" -msgstr "Izbriši prošnjo" - -msgid "editor.monograph.clearReview" -msgstr "Izbriši recenzenta" - -msgid "editor.monograph.enterRecommendation" -msgstr "Vnesi priporočilo" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Vnesi priporočilo recenzenta" - -msgid "editor.monograph.recommendation" -msgstr "Priporočilo" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "Za nadaljevanje zgoraj izberite recenzenta in pritisnite 'Izberi recenzenta‘." - -msgid "editor.monograph.replaceReviewer" -msgstr "Zamenjaj recenzenta" - -msgid "editor.monograph.editorToEnter" -msgstr "Urejevalnik za vnos priporočila/komentarjev za recenzenta" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Naloži recenzijo" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Nastavitve recenzije" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Korekturna datoteka" - -msgid "editor.monograph.internalReview" -msgstr "Prični notranjo recenzijo" - -msgid "editor.monograph.internalReviewDescription" -msgstr "Izberite datoteke spodaj in jih pošljite na fazo notranje recenzije." - -msgid "editor.monograph.externalReview" -msgstr "Prični zunanjo recenzijo" - -msgid "editor.submissions.lastAssigned" -msgstr "Zadnji" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Izberi datoteke s končno verzijo" - -msgid "editor.monograph.final.currentFiles" -msgstr "Trenutne datoteke s končno verzijo" - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Trenutne datoteke" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Sporočilo za uporabnika" - -msgid "editor.monograph.legend.submissionActions" -msgstr "Ukrepi za prispevke" - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Splošne akcije in možnosti za prispevke." - -msgid "editor.monograph.legend.sectionActions" -msgstr "Ukrepi za rubrike" - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "Možnosti za določene rubrike, kot sta nalaganje datotek ali dodajanje uporabnikov." - -msgid "editor.monograph.legend.itemActions" -msgstr "Ukrepi za elemente" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Ukrepi in možnosti za individualno datoteko." - -msgid "editor.monograph.legend.catalogEntry" -msgstr "Poglej in upravljaj vnos iz kataloga prispevkov vključno z metapodatki in formate publikacij" - -msgid "editor.monograph.legend.bookInfo" -msgstr "Poglej in upravljaj metapodatke prispevkov, pripomb, obvestil in zgodovine" - -msgid "editor.monograph.legend.participants" -msgstr "Poglej in upravljaj sodelujoče pri pripravi tega prispevka: avtorje, urednike, oblikovalce in druge" - -msgid "editor.monograph.legend.add" -msgstr "Naloži datoteko v rubriko" - -msgid "editor.monograph.legend.add_user" -msgstr "Dodaj uporabnika" - -msgid "editor.monograph.legend.settings" -msgstr "Poglej in dostopaj do nastavitev elementov, kot so možnosti za informacije in brisanje" - -msgid "editor.monograph.legend.more_info" -msgstr "Več informacij: datotečne pripombe, nastavitve obvestil in zgodovina" - -msgid "editor.monograph.legend.notes_none" -msgstr "Datotečne informacije: opombe, nastavitve obvestil in zgodovina (Trenutno ni opomb)" - -msgid "editor.monograph.legend.notes" -msgstr "Datotečne informacije: opombe, nastavitve obvestil in zgodovina (Opombe so na voljo)" - -msgid "editor.monograph.legend.notes_new" -msgstr "Datotečne informacije: opombe, nastavitve obvestil in zgodovina (Nove opombe od zadnjega obiska)" - -msgid "editor.monograph.legend.edit" -msgstr "Uredi element" - -msgid "editor.monograph.legend.delete" -msgstr "Izbriši element" - -msgid "editor.monograph.legend.in_progress" -msgstr "Ukaz v teku ali nezaključen" - -msgid "editor.monograph.legend.complete" -msgstr "Ukaz končan" - -msgid "editor.monograph.legend.uploaded" -msgstr "Datoteka, naložena glede na vlogo v mreži naslovnega stolpca" - -msgid "editor.submission.introduction" -msgstr "Po preverjanju oddanih datotek mora urednik v prispevku izbrati primeren ukrep (to vključuje obveščanje avtorja) Pošlji notranjemu recenzentu (vključuje izbor datotek za notranjo recenzijo); pošlji zunanjemu recenzentu (vključuje izbor datotek za zunanjo recenzijo); potrdi prispevek (vključuje izbor datotek za uredniško fazo); ali zavrni prispevek (arhiviraj prispevek)." - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Končna verzija" - -msgid "editor.monograph.proofs" -msgstr "Vzorci" - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Odobritev in objava" - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "Različne formate publikacij, kot so trda vezava, broširan in digitalni formati lahko naložite v spodnji rubriki Formati za objavo. Mrežo formatov publikacij lahko vidite spodaj v obliki seznama za vse tisto, kar je treba še opraviti pred objavo formatov publikacij." - -msgid "editor.monograph.production.publicationFormatDescription" -msgstr "Dodajte formate publikacij (prim. digitalni, trda vezava), za katere bo grafični urednik pripravil vzorce za korekturo. Preden je format pripravljen Available (npr. za objavo), mora biti Proofs označen kot odobren, medtem ko mora biti vnos za format Catalog označen kot objavljen v knjižnem vnosu kataloga." - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Določi pogoje za prenos" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Določi pogoje" - -msgid "editor.monograph.proof.addNote" -msgstr "Dodaj odgovor" - -msgid "editor.submission.proof.manageProofFilesDescription" -msgstr "Obstoječe datoteke, ki ste jih že naložili na katerikoli stopnji oddaje prispevka, lahko dodate na seznam vzorcev tako, da obkljukate Dodaj in kliknete na Išči: navedene bodo vse razpoložljive datoteke, ki jih lahko izberete in vključite." - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "Javni identifikator '{$publicIdentifier}' že obstaja za drug predmet istega tipa. Izberite enolične identifikatorje za predmete istega tipa v vaši založbi." diff --git a/locale/sl_SI/emails.po b/locale/sl_SI/emails.po deleted file mode 100644 index ab0840c4e76..00000000000 --- a/locale/sl_SI/emails.po +++ /dev/null @@ -1,373 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-12-03T14:14:07-08:00\n" -"PO-Revision-Date: 2019-12-03T14:14:07-08:00\n" -"Language: \n" - -msgid "emails.notification.subject" -msgstr "Novo obvestilo od {$siteTitle}" - -msgid "emails.notification.body" -msgstr "Imate novo obvestilo od {$siteTitle}:

          {$notificationContents}

          Povezava: {$url}

          Ne odgovarjajte na to sporočilo, ker gre za samodejno ustvarjeno sporočilo.
          {$principalContactSignature}" - -msgid "emails.notification.description" -msgstr "E-poštno obvestilo je bilo poslano vsem registriranim uporabnikom, ki so se naročili na prejemanje teh obvestil na elektronski naslov." - -msgid "emails.passwordResetConfirm.subject" -msgstr "Potrditev ponastavitve gesla" - -msgid "emails.passwordResetConfirm.body" -msgstr "Prejeli smo zahtevo za ponastavitev gesla za spletno mesto {$ siteTitle}.

          Če te zahteve niste podali vi, prezrite to e-poštno sporočilo in vaše geslo ne bo spremenjeno. Če želite ponastaviti geslo, kliknite spodnjo povezavo.

          Ponastavi geslo: {$url}

          {$principalContactSignature}" - -msgid "emails.passwordResetConfirm.description" -msgstr "To e-poštno sporočilo je poslano registriranemu uporabniku, če označijo, da so pozabili svoje geslo ali se ne morejo prijaviti. Sporočilo vsebuje URL, do katerega lahko dostopajo, če želijo ponastaviti geslo." - -msgid "emails.passwordReset.subject" -msgstr "Ponastavitev gesla" - -msgid "emails.passwordReset.body" -msgstr "Vaše geslo za dostop do spletišča {$siteTitle} je bilo ponastavljeno.

          Uporabniško ime: {$username}
          Vaše novo geslo: {$password}

          {$principalContactSignature}" - -msgid "emails.passwordReset.description" -msgstr "To e-poštno sporočilo je poslano registriranemu uporabniku, ko je uspešno ponastavil svoje geslo po postopku, opisanem v e-poštnem sporočilu PASSWORD_RESET_CONFIRM." - -msgid "emails.userRegister.subject" -msgstr "Registracija založbe" - -msgid "emails.userRegister.body" -msgstr "{$userFullName}

          Zdaj ste registrirani kot uporabnik {$contextName}. Spodaj sta napisana vaše uporabniško ime in geslo, ki ju potrebujete za dostop do založbe preko spleta. Kadar koli bi se želeli odstraniti s seznama uporabnikov, se lahko obrnete name.

          Uporabniško ime: {$username}
          Geslo: {$password}

          Hvala,
          {$principalContactSignature}" - -msgid "emails.userRegister.description" -msgstr "To e-poštno sporočilo je poslano novim uporabnikom ob registraciji, da jih pozdravimo v sistemu in jim posredujemo informacijo o uporabniškem imenu in geslu." - -msgid "emails.userValidate.subject" -msgstr "Potrditev vašega računa" - -msgid "emails.userValidate.body" -msgstr "{$userFullName}}

          Ustvarili ste uporabniški račun {$contextName}. Preden ga lahko začnete uporabljati, morate potrditi svojo e-pošto. Za potrditev enostavno sledite spodnji povezavi:

          {$activateUrl}

          Hvala,
          {$principalContactSignature}" - -msgid "emails.userValidate.description" -msgstr "To e-poštno sporočilo je poslano novim uporabnikom ob registraciji, da jih pozdravimo v sistemu in jim posredujemo informacijo o uporabniškem imenu in geslu." - -msgid "emails.reviewerRegister.subject" -msgstr "Registracija za recenzenta pri {$contextName}" - -msgid "emails.reviewerRegister.body" -msgstr "Glede na vaše področje delovanja, smo si dovolili registrirati vaše ime v bazo recenzentov za publikacijo {$contextName}. To ne pomeni nobene obveze z vaše strani in nam le omogoča, da vas lahko povabimo k recenziji prispevkov. Ko boste povabljeni k recenziji, boste lahko videli naslov in povzetek prispevka in se boste lahko odločili, ali boste pri recenziji sodelovali ali ne. Kadar koli lahko zahtevate, da vas odstranimo iz seznama recenzentov.

          Pošiljamo vam uporabniško ime in geslo, ki ju potrebujete za vso interakcijo z založbo preko spleta. Če želite lahko posodobite vaš račun, vključno z recenzentskimi interesi.

          Uporabniško ime: {$username}
          Geslo: {$password}

          Hvala,
          {$principalContactSignature}" - -msgid "emails.reviewerRegister.description" -msgstr "To e-poštno sporočilo je poslano recenzentom ob registraciji, da se jih pozdravi v sistemu in jim posreduje informacijo o uporabniškem imenu in geslu." - -msgid "emails.publishNotify.subject" -msgstr "Izid nove knjige" - -msgid "emails.publishNotify.body" -msgstr "Bralci:

          {$contextName} je pravkar objavil_a svojo zadnjo knjigo na {$contextUrl}. Vabimo vas, da si ogledate kazalo vsebine in obiščete spletno stran, da preberete monografske publikacije in ostale stvari, ki vas zanimajo.

          Hvala za zanimanje (za naše delo),
          {$editorialContactSignature}" - -msgid "emails.publishNotify.description" -msgstr "To e-poštno sporočilo je poslano registriranim bralcem prek povezave \"Obvesti uporabnike\" v uredniškem domu uporabnika. Sporočilo obvesti bralce o izidu nove knjige in jih povabi k ogledu založbe na priloženem URL-ju." - -msgid "emails.submissionAck.subject" -msgstr "Potrditev oddaje prispevka" - -msgid "emails.submissionAck.body" -msgstr "{$authorName}:

          Hvala za oddajo rokopisa "{$submissionTitle}" v {$contextName}. S sistemom za spletno upravljanje založbe, ki ga uporabljamo, lahko spremljate njegov napredek v procesu urejanja, če se prijavite na spletno stran založbe:

          Povezava URL do rokopisa: {$submissionUrl}
          Uporabniško ime: {$authorUsername}

          Če imate kakšno vprašanje, se, prosim, obrnite name. Hvala, da ste se odločili za našo založbo.

          {$editorialContactSignature}" - -msgid "emails.submissionAck.description" -msgstr "Če je omogočena funkcija, bo to e-poštno sporočilo samodejno poslano avtorju, ko dokonča postopek predložitve rokopisa založbi. V sporočilu so informacije o spremljanju prispevka in zahvala avtorju za predložitev." - -msgid "emails.submissionAckNotUser.subject" -msgstr "Potrditev oddaje prispevka" - -msgid "emails.submissionAckNotUser.body" -msgstr "Pozdravljeni,

          {$submitterName} je predložil_a rokopis "{$submissionTitle}" za {$contextName}. Če imate kakršno koli vprašanje, se, prosim, obrnite name. {$editorialContactSignature} Hvala, da ste se odločili za našo založbo.

          {$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.description" -msgstr "Če je omogočeno, se to e-poštno sporočilo samodejno pošlje drugim avtorjem, ki niso uporabniki znotraj OMP in ki so bili navedeni med postopkom oddaje prispevka." - -msgid "emails.submissionUnsuitable.subject" -msgstr "Neprimeren prispevek" - -msgid "emails.submissionUnsuitable.body" -msgstr "{$authorName}:

          V začetni recenziji prispevka "{$submissionTitle}" je bilo ugotovljeno, da prispevek vsebinsko ne ustreza merilom založbe {$contextName}. Priporočamo vam, da se preberete več o naši založbi pod zavihkom O nas, kjer boste izvedeli več o vsebinah, ki jih objavljamo. Priporočamo vam, da razmislite o predložitvi tega rokopisa drugim založbam, ki objavljajo tovrstne vsebine.

          {$editorialContactSignature}" - -msgid "emails.submissionUnsuitable.description" -msgstr "" - -msgid "emails.editorAssign.subject" -msgstr "Uredniške zadolžitve" - -msgid "emails.editorAssign.body" -msgstr "{$editorialContactName}:

          Prispevek "{$submissionTitle},", oddan na {$contextName} vam je bil kot uredniku dodeljen v proces urejanja.

          URL do prispevka: {$submissionUrl}
          Uporabniško ime: {$editorUsername}

          Hvala," - -msgid "emails.editorAssign.description" -msgstr "To e-poštno sporočilo obvesti urednika zbirke o tem, da jih je urednik določil za nadzor prispevka v postopku urejanja. Vsebuje informacije o oddaji prispevka in o tem, kako je možno dostopati do strani založbe." - -msgid "emails.reviewRequest.subject" -msgstr "Prošnja za recenzijo rokopisa" - -msgid "emails.reviewRequest.body" -msgstr "" -"Spoštovani {$reviewerName},

          {$messageToReviewer}

          Prosimo, da se do {$responseDueDate} prijavite na spletni strani založbe in navedete, ali boste opravljali recenzijo ali ne, ter ali boste dostopali do prispevka in ali naj se vaša recenzija in priporočila zapišejo. Recenzija je predvidena do {$reviewDueDate}.

          URL do prispevka: {$submissionReviewUrl}

          Uporabniško ime: {$reviewerUserName}

          Zahvaljujemo se vam za zanimanje.


          Lep pozdrav,
          {$editorialContactSignature}
          \n" -"" - -msgid "emails.reviewRequest.description" -msgstr "To e-poštno sporočilo urednika zbirke od recenzenta zahteva, da recenzent sprejme ali zavrne recenzijo prispevka. Vsebuje informacije o prispevku kot na primer naslov in povzetek, rok za oddajo recenzije ter navodila za dostop do prispevka. To sporočilo se uporabi, ko je izbran standardni recenzijski postopek v Upravljanje > Nastavitve > Potek dela > Recenzija. (V nasprotnem primeru glej REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Prošnja za recenzijo rokopisa" - -msgid "emails.reviewRequestOneclick.body" -msgstr "{$reviewerName}:

          Verjamemo, da bi lahko bili odličen recenzent rokopisa "{$submissionTitle},", ki je bil oddan v {$contextName}. Povzetek prispevka je priložen spodaj. Upam, da boste prevzeli to pomembno opravilo.

          Prosimo, da se do {$weekLaterDate} prijavite na spletni strani založbe in navedete, ali boste opravljali recenzijo ali ne, ter ali boste dostopali do prispevka in ali naj se vaša recenzija in priporočila zapišejo. Datum za oddajo recenzije je {$reviewDueDate}.

          Povezava do prispevka: {$submissionReviewUrl}

          Uporabniško ime: {$reviewerUserName}

          Zahvaljujemo se vam za zanimanje.

          {$editorialContactSignature}



          "{$submissionTitle}"

          {$abstractTermIfEnabled}
          {$submissionAbstract}" - -msgid "emails.reviewRequestOneclick.description" -msgstr "To e-poštno sporočilo urednika zbirke od recenzenta zahteva, da recenzent sprejme ali zavrne recenzijo prispevka. Vsebuje informacije o prispevku kot na primer naslov in povzetek, rok za oddajo recenzije ter navodila za dostop do prispevka. To sporočilo se uporabi, ko je izbran standardni recenzijski postopek v Upravljanje > Nastavitve > Potek dela > Recenzija, in omogočen je dostop recenzenta z enim klikom." - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Prošnja za recenzijo rokopisa" - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Spoštovani, {$reviewerName}, samo prijazen opomnik o naši prošnji za recenzijo prispevka "{$submissionTitle}," za {$contextName}. Upali smo, da bomo do {$responseDueDate} prejeli vaš odgovor. Ta e-pošta vam je bila samodejno poslana po poteku tega datuma.
          {$messageToReviewer}

          Prosimo, da se prijavite na spletni strani založbe in navedete, ali boste opravljali recenzijo ali ne, ter ali boste dostopali do prispevka in ali naj se vaša recenzija in priporočila zapišejo.

          Rok za oddajo recenzije je {$reviewDueDate}.

          URL do prispevka: {$submissionReviewUrl}

          Uporabniško ime: {$reviewerUserName}

          Zahvaljujemo se vam za zanimanje.


          Lep pozdrav,
          {$editorialContactSignature}
          \n" -"" - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "To e-poštno sporočilo bo samodejno poslano po preteku roka za potrditev opravljanja recenzije in ko je onemogočen dostop recenzenta z enim klikom. (Glejte Nastavitve recenzije, ki jih najdete pod Nastavitve > Potek dela > Recenzija) Načrtovane naloge morajo biti omogočene in konfigurirane (glejte konfiguracijsko datoteko)." - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Prošnja za recenzijo rokopisa" - -msgid "emails.reviewRequestRemindAutoOneclick.body" -msgstr "{$reviewerName}:
          , samo prijazen opomnik o naši prošnji za recenzijo prispevka, "{$submissionTitle}," za {$contextName}. Upali smo, da bomo dobili vaš odziv do predvidenega datuma {$responseDueDate}. To e-pošto sporočilo je bilo samodejno generirano in poslano po poteku datuma.
          Verjamem, da bi se odlično odrezali v vlogi recenzenta rokopisa. Povzetek prispevka je priložen spodaj. Upam, da boste razmislili in prevzeli to pomembno opravilo.

          Prosimo, da se do {$weekLaterDate} prijavite na spletni strani založbe in navedite, ali boste opravljali recenzijo ali ne, ter ali boste dostopali do prispevka in ali naj se vaša recenzija in priporočila zapišejo. Datum za oddajo recenzije je {$reviewDueDate}.

          Povezava do prispevka: {$submissionReviewUrl}

          Uporabniško ime: {$reviewerUserName}

          Zahvaljujemo se vam za zanimanje.

          {$editorialContactSignature}



          "{$submissionTitle}"

          {$abstractTermIfEnabled}
          {$submissionAbstract}" - -msgid "emails.reviewRequestRemindAutoOneclick.description" -msgstr "To e-poštno sporočilo bo samodejno poslano po preteku roka za potrditev opravljanja recenzije in ko je omogočen dostop recenzenta z enim klikom. (Glejte Nastavitve recenzije, ki jih najdete pod Nastavitve > Potek dela > Recenzija) Načrtovane naloge morajo biti omogočene in konfigurirane (glejte konfiguracijsko datoteko)." - -msgid "emails.reviewRequestAttached.subject" -msgstr "Prošnja za recenzijo rokopisa" - -msgid "emails.reviewRequestAttached.body" -msgstr "" -"{$reviewerName}:

          Verjamem, da bi se odlično odrezali v vlogi recenzenta rokopisa "{$submissionTitle}," zato vas prosim, da razmislite, ali bi prevzeli to pomembno nalogo. Spodaj so priložena navodila za recenzijo za našo založbo, v priponki pa je prispevek. Prosim, da mi po e-pošti do {$reviewDueDate} pošljete recenzijo prispevka skupaj z vašimi priporočili.

          V odgovoru na e-pošto, prosim, navedite, ali ste pripravljeni napisati recenzijo ali ne.

          Hvala lepa za zanimanje.

          {$editorialContactSignature}


          Navodila za recenzijo

          {$reviewGuidelines}
          \n" -"" - -msgid "emails.reviewRequestAttached.description" -msgstr "To e-poštno sporočilo urednika zbirke od recenzenta zahteva, da recenzent sprejme ali zavrne recenzijo prispevka. Vsebuje tudi prispevek, ki se je v priponki. To sporočilo se uporabi, ko je izbrana recenzija preko e-pošte v Upravljanje > Nastavitve > Potek dela > Recenzija. (V nasprotnem primeru glej REVIEW_REQUEST.)" - -msgid "emails.reviewCancel.subject" -msgstr "Prošnja za recenzijo preklicana" - -msgid "emails.reviewCancel.body" -msgstr "{$reviewerName}:

          Odločili smo se, da prekličemo našo prošnjo za vašo recenzijo prispevka "{$submissionTitle}," za {$contextName}. Opravičujemo se vam za vse nevšečnosti, ki vam jih to lahko povzroči, in upamo, da se lahko obrnemo na vas pri uredniškem procesu tudi v prihodnje.

          Če imaste kakršna koli vprašanja, se obrnite name." - -msgid "emails.reviewCancel.description" -msgstr "To e-poštno sporočilo od urednika zbirke obvešča recenzenta, ki piše recenzijo, da je bila prošnja za recenzijo preklicana." - -msgid "emails.reviewConfirm.subject" -msgstr "Potrditev recenzije" - -msgid "emails.reviewConfirm.body" -msgstr "Urednik(i):

          Pripravljen_a sem opraviti recenzijo prispevka "{$submissionTitle}," za {$contextName}. Hvala za povabilo. Sporočam vam, da nameravam recenzijo dokončati do predvidenega datuma {$reviewDueDate}, če ne prej.

          {$reviewerName}" - -msgid "emails.reviewConfirm.description" -msgstr "To e-poštno sporočilo je uredniku zbirke poslal recenzent kot odgovor na prošnjo za recenzijo, v katerem urednika obvešča, da je sprejel prošnjo za recenzijo in da jo bo dokončal do določenega datuma. " - -msgid "emails.reviewDecline.subject" -msgstr "Ne morem opraviti recenzije" - -msgid "emails.reviewDecline.body" -msgstr "Urednik(i):

          Žal mi je, vendar v tem trenutku ne morem napisati recenzije prispevka "{$submissionTitle}," za {$contextName}. Hvala za povabilo in upam, da me boste še povabili k sodelovanju.

          {$reviewerName}" - -msgid "emails.reviewDecline.description" -msgstr "To e-poštno sporočilo je uredniku zbirke poslal recenzent kot odgovor na prošnjo za recenzijo, v katerem obvešča urednika, da je zavrnil prošnjo za recenzijo." - -msgid "emails.reviewAck.subject" -msgstr "Zahvala za recenzijo rokopisa" - -msgid "emails.reviewAck.body" -msgstr "{$reviewerName}:

          Hvala za dokončanje recenzije prispevka "{$submissionTitle}," za {$contextName}. Zahvaljujemo se za vaš prispevek k kvaliteti del, ki jih objavljamo." - -msgid "emails.reviewAck.description" -msgstr "To e-poštno sporočilo je poslal urednik zbirke, ki potrjuje prejem dokončane recenzije in se zahvali recenzentu za njegov prispevek." - -msgid "emails.reviewRemind.subject" -msgstr "Opomnik za recenzijo prispevka" - -msgid "emails.reviewRemind.body" -msgstr "{$reviewerName}:

          , samo prijazen opomnik za našo prošnjo za recenzijo prispevka , "{$submissionTitle}," za {$contextName}. Upali smo, da bo recenzija končana do {$reviewDueDate}, veseli bomo, če jo bomo prejeli takoj, ko bo mogoče.

          Če nimate uporabniškega imena in gesla za dostop do spletne strani publikacije, lahko uporabite naslednjo povezavo za ponastavitev gesla (ki vam bo posredovano po e-pošti skupaj z vašim uporabniškim imenom): {$passwordResetUrl}

          URL povezava do prispevka: {$submissionReviewUrl}

          Uporabniško ime: {$reviewerUserName}
          Prosim, da potrdite vašo pripravljenost za dokončanje vašega pomembnega prispevka za delo založbe. Že vnaprej se vam zahvaljujemo za odgovor.

          {$editorialContactSignature}" - -msgid "emails.reviewRemind.description" -msgstr "To e-poštno sporočilo je poslal urednik zbirke, ki opozarja recenzenta, da je recenzijo treba oddati." - -msgid "emails.reviewRemindOneclick.subject" -msgstr "Opomnik za recenzijo prispevka" - -msgid "emails.reviewRemindOneclick.body" -msgstr "{{$reviewerName}:

          , samo prijazen opomnik za našo prošnjo za recenzijo prispevka, "{$submissionTitle}," za {$contextName}. Upali smo, da bo recenzija končana do {$reviewDueDate}, veseli pa bomo, če jo bomo prejeli takoj, ko bo mogoče.

          URL povezava do prispevka: {$submissionReviewUrl}

          Prosim, potrdite vašo pripravljenost za dokončanje pomembnega prispevka za delo založbe. Že vnaprej se vam zahvaljujemo za odgovor.

          {$editorialContactSignature}" - -msgid "emails.reviewRemindOneclick.description" -msgstr "To e-poštno sporočilo je poslal urednik zbirke, ki opozarja recenzenta, da je recenzijo treba oddati." - -msgid "emails.reviewRemindAuto.subject" -msgstr "Avtomatski opomnik za recenzijo prispevka" - -msgid "emails.reviewRemindAuto.body" -msgstr "{$reviewerName}:

          , samo prijazen opomnik za našo prošnjo za recenzijo prispevka, "{$submissionTitle}," za {$contextName}. Upali smo, da boste recenzijo napisali do predvidenega datuma {$reviewDueDate}. E-pošta je bila samodejno generirana in poslana po preteku datuma. Veseli bomo, če jo bomo lahko prejeli takoj, ko bo mogoče.

          Če nimate uporabniškega imena in gesla za dostop do spletne strani, lahko uporabite naslednjo povezavo za ponastavitev gesla (ki vam bo posredovano po e-pošti skupaj z vašim uporabniškim imenom): {$passwordResetUrl}

          URL do prispevka: {$submissionReviewUrl}

          Uporabniško ime: {$reviewerUserName}

          Prosim, da potrdite vašo pripravljenost za dokončanje pomembnega prispevka za delo založbe. Že vnaprej se vam zahvaljujemo za odgovor.

          {$editorialContactSignature}" - -msgid "emails.reviewRemindAuto.description" -msgstr "To e-poštno sporočilo bo samodejno poslano po preteku roka za recenzijo in ko je onemogočen dostop recenzenta z enim klikom. (Glejte Nastavitve recenzije, ki jih najdete pod Nastavitve > Potek dela > Recenzija) Načrtovane naloge morajo biti omogočene in konfigurirane (glejte konfiguracijsko datoteko)." - -msgid "emails.reviewRemindAutoOneclick.subject" -msgstr "Avtomatski opomnik za recenzijo prispevka" - -msgid "emails.reviewRemindAutoOneclick.body" -msgstr "{$reviewerName}:

          , samo prijazen opomnik za našo prošnjo za recenzijo prispevka, "{$submissionTitle}," za {$contextName}. Upali smo, da boste recenzijo napisali do predvidenega datuma {$reviewDueDate}. E-pošta je bila samodejno generirana in poslana po preteku datuma. Veseli bomo, če jo bomo lahko prejeli takoj, ko bo mogoče.

          URL povezava do prispevka: {$submissionReviewUrl}

          Prosim, potrdite vašo pripravljenost za dokončanje pomembnega prispevka za delo založbe. Že vnaprej se vam zahvaljujemo za odgovor.

          {$editorialContactSignature}" - -msgid "emails.reviewRemindAutoOneclick.description" -msgstr "To e-poštno sporočilo bo samodejno poslano po preteku roka za recenzijo in ko je omogočen dostop recenzenta z enim klikom. (glejte Nastavitve recenzije, ki jih najdete pod Nastavitve > Potek dela > Recenzija) Načrtovane naloge morajo biti omogočene in konfigurirane (glejte konfiguracijsko datoteko)." - -msgid "emails.editorDecisionAccept.subject" -msgstr "Uredniška odločitev" - -msgid "emails.editorDecisionAccept.body" -msgstr "{$authorName}:

          Sprejeli smo odločitev glede vašega prispevka "{$submissionTitle}" v {$contextName}. Odločili smo se:

          URL do rokopisa: {$submissionUrl}" - -msgid "emails.editorDecisionAccept.description" -msgstr "To e-poštno sporočilo od urednika ali urednika zbirke obvesti avtorja o končni odločitvi glede prispevka." - -msgid "emails.editorDecisionSendToExternal.subject" -msgstr "Uredniška odločitev" - -msgid "emails.editorDecisionSendToExternal.body" -msgstr "{$authorName}:

          Sprejeli smo odločitev glede vašega prispevka "{$submissionTitle}" v {$contextName}. Odločili smo se:

          URL do rokopisa: {$submissionUrl}" - -msgid "emails.editorDecisionSendToExternal.description" -msgstr "To e-poštno sporočilo od urednika ali urednika zbirke obvesti avtorja, da je bil prispevek poslan v zunanjo recenzijo." - -msgid "emails.editorDecisionSendToProduction.subject" -msgstr "Uredniška odločitev" - -msgid "emails.editorDecisionSendToProduction.body" -msgstr "{$authorName}:

          Urejanje vašega rokopisa "{$submissionTitle}," je končano. Publikacijo bomo poslali v produkcijo.

          Povezava URL do rokopisa {$submissionUrl}" - -msgid "emails.editorDecisionSendToProduction.description" -msgstr "To e-poštno sporočilo od urednika ali urednika zbirke obvesti avtorja, da je bil prispevek poslan v produkcijo." - -msgid "emails.editorDecisionRevisions.subject" -msgstr "Uredniška odločitev" - -msgid "emails.editorDecisionRevisions.body" -msgstr "{$authorName}:

          Sprejeli smo odločitev glede vašega prispevka "{$submissionTitle}" v {$contextName}. Odločili smo se:

          URL do rokopisa: {$submissionUrl}" - -msgid "emails.editorDecisionRevisions.description" -msgstr "To e-poštno sporočilo od urednika ali urednika zbirke obvesti avtorja o končni odločitvi glede prispevka." - -msgid "emails.editorDecisionResubmit.subject" -msgstr "Uredniška odločitev" - -msgid "emails.editorDecisionResubmit.body" -msgstr "{$authorName}:

          Sprejeli smo odločitev glede vašega prispevka "{$submissionTitle}" v {$contextName}. Odločili smo se:

          URL do rokopisa: {$submissionUrl}" - -msgid "emails.editorDecisionResubmit.description" -msgstr "To e-poštno sporočilo od urednika ali urednika zbirke obvesti avtorja o končni odločitvi glede prispevka." - -msgid "emails.editorDecisionDecline.subject" -msgstr "Uredniška odločitev" - -msgid "emails.editorDecisionDecline.body" -msgstr "{$authorName}:

          Sprejeli smo odločitev glede vašega prispevka "{$submissionTitle}" v {$contextName}. Odločili smo se:

          URL do rokopisa: {$submissionUrl}" - -msgid "emails.editorDecisionDecline.description" -msgstr "To e-poštno sporočilo od urednika ali urednika zbirke obvesti avtorja o končni odločitvi glede prispevka." - -msgid "emails.copyeditRequest.subject" -msgstr "Prošnja za lektoriranje" - -msgid "emails.copyeditRequest.body" -msgstr "{$participantName}:

          Prosimo vas za lektoriranje prispevka "{$submissionTitle}" za {$contextName} po naslednjih korakih:
          1. Kliknite na URL povezavo do prispevka spodaj.
          2. Prijavite se v založbo in kliknite na datoteko, ki se pokaže po 1. koraku
          3. Preverite navodila za lektoriranje, ki so na spletni strani.
          4. Prenesite datoteko, jo odprite in lektorirajte, hkrati pa po potrebi dodajajte vprašanja za avtorja.
          5. Shranite lektorirano datoteko in jo naložite kot 1. korak lektoriranja.
          6. Uredniku pošljite e-poštno sporočilo Zaključeno.

          {$contextName} Povezava URL: {$contextUrl}
          Povezava URL do prispevka: {$submissionUrl}
          Uporabniško ime: {$participantUsername}" - -msgid "emails.copyeditRequest.description" -msgstr "Urednik zbirke pošlje to e-poštno sporočilo lektorju prispevka in prosi za začetek lektoriranja. Vsebuje informacije o prispevku in o tem, kako je možno dostopati do prispevka." - -msgid "emails.layoutRequest.subject" -msgstr "Zahteva za prelom" - -msgid "emails.layoutRequest.body" -msgstr "{$participantName}:

          Prispevek "{$submissionTitle}" za {$contextName} potrebuje prelom, ki se naredi po naslednjih korakih.
          1. Kliknite na URL povezavo do prispevka spodaj.
          2. Prijavite se v založbo in uporabite datoteko za pripravo preloma, da pripravite prelom skladno s standardi založbe.
          3. Uredniku pošljite e-poštno sporočilo Zaključeno.

          {$contextName} URL: {$contextUrl}
          Povezava URL do prispevka: {$submissionUrl}
          Uporabniško ime: {$participantUsername}

          Če v tem trenutku dela ne morete opraviti ali imate kakšno vprašanje, se prosim obrnite name. Hvala za vaš prispevek založbi." - -msgid "emails.layoutRequest.description" -msgstr "To e-poštno sporočilo od urednika zbirke obvešča grafičnega urednika, da mu je bil dodeljen prispevek za grafično urejanje. Vsebuje informacije o prispevku in o tem, kako je možno dostopati do prispevka. " - -msgid "emails.layoutComplete.subject" -msgstr "Prelom končan" - -msgid "emails.layoutComplete.body" -msgstr "{$editorialContactName}:

          Prelomi za rokopis, "{$submissionTitle},", za {$contextName} so pripravljeni in so na voljo za korekturo.

          Če imate kakršno koli vprašanje, se prosim obrnite name.

          {$signatureFullName}" - -msgid "emails.layoutComplete.description" -msgstr "To e-poštno sporočilo od grafičnega urednika obvešča urednika zbirke, da je zaključil proces grafičnega oblikovanja. " - -msgid "emails.indexRequest.subject" -msgstr "Zahteva za kazalo" - -msgid "emails.indexRequest.body" -msgstr "{$participantName}:

          Prispevek "{$submissionTitle}" za {$contextName} potrebuje kazalo, ki se ga ustvari po naslednjih korakih.
          1. Kliknite na URL povezavo do prispevka spodaj.
          2. Prijavite se v založbo in uporabite datoteko Page Proofs, da pripravite prelom skladno s standardi založbe.
          3. Uredniku pošljite e-poštno sporočilo Zaključeno.

          {$contextName} URL: {$contextUrl}
          Povezava URL do prispevka: {$submissionUrl}
          Uporabniško ime: {$participantUsername}

          Če v tem trenutku dela ne morete opraviti ali imate kakšno vprašanje, se prosim obrnite name. Hvala za vaš prispevek založbi.

          {$editorialContactSignature}" - -msgid "emails.indexRequest.description" -msgstr "To e-poštno sporočilo od urednika zbirke obvešča klasifikatorja, da mu je bil dodeljen prispevek, ki potrebuje kazala. Vsebuje informacije o prispevku in o tem, kako je možno dostopati do prispevka. " - -msgid "emails.indexComplete.subject" -msgstr "Prelomi kazala končani" - -msgid "emails.indexComplete.body" -msgstr "{$editorialContactName}:

          Kazala za rokopis, "{$submissionTitle},", za {$contextName} so pripravljena in so na voljo za korekturo.

          Če imate kakršno koli vprašanje, se prosim obrnite name.

          {$signatureFullName}" - -msgid "emails.indexComplete.description" -msgstr "To e-poštno sporočilo od klasifikatorja obvešča urednika zbirke, da je zaključil proces ustvarjanja kazal." - -msgid "emails.emailLink.subject" -msgstr "Rokopis, ki bi vas morda zanimal" - -msgid "emails.emailLink.body" -msgstr "Zdelo se nam je, da vas bo morda zanimal prispevek "{$submissionTitle}" avtorja {$authorName}, objavljen v zvezku {$volume}, številka {$number} ({$year}) v {$contextName} na voljo na "{$monographUrl}"." - -msgid "emails.emailLink.description" -msgstr "Ta e-poštna predloga omogoča registriranemu bralcu možnost pošiljanja informacij o prispevku nekomu, ki bi ga morda zanimal. Na voljo je prek Orodij za branje, omogočiti pa jo mora upravitelj založbe na strani Upravitelj orodij za branje." - -msgid "emails.notifySubmission.subject" -msgstr "Obvestilo o prispevku" - -msgid "emails.notifySubmission.body" -msgstr "" -"Prejeli ste sporočilo od {$sender} o prispevku "{$submissionTitle}" ({$monographDetailsUrl}):

          {$message}

          \n" -"\t\t" - -msgid "emails.notifySubmission.description" -msgstr "Obvestilo uporabnika, poslano iz modula informacijskega centra za prispevke. " - -msgid "emails.notifyFile.subject" -msgstr "Obvestilo o datoteki prispevka" - -msgid "emails.notifyFile.body" -msgstr "" -"Prejeli ste sporočilo od {$sender} o datoteki "{$fileName}" in "{$submissionTitle}" ({$monographDetailsUrl}):

          {$message}

          \n" -"\t\t" - -msgid "emails.notifyFile.description" -msgstr "Obvestilo uporabnika, poslano iz modula informacijskega centra za datoteke." - -msgid "emails.notificationCenterDefault.subject" -msgstr "Sporočilo o {$contextName}" - -msgid "emails.notificationCenterDefault.body" -msgstr "Prosimo, vnesite vaše sporočilo." - -msgid "emails.notificationCenterDefault.description" -msgstr "Privzeto (prazno) sporočilo, uporabljeno v seznamu sporočilnega centra za obvestila." diff --git a/locale/sl_SI/locale.po b/locale/sl_SI/locale.po deleted file mode 100644 index b76f1815c57..00000000000 --- a/locale/sl_SI/locale.po +++ /dev/null @@ -1,1354 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28T15:10:10-08:00\n" -"PO-Revision-Date: 2020-01-17 01:37+0000\n" -"Last-Translator: Mitja Podreka \n" -"Language-Team: Slovenian \n" -"Language: sl_SI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "monograph.audience" -msgstr "Ciljna skupina" - -msgid "monograph.coverImage" -msgstr "Naslovna slika" - -msgid "monograph.audience.rangeQualifier" -msgstr "Kvalifikator razpona ciljnega občinstva" - -msgid "monograph.audience.rangeFrom" -msgstr "Razpon ciljnega občinstva (od)" - -msgid "monograph.audience.rangeTo" -msgstr "Razpon ciljnega občinstva (do)" - -msgid "monograph.audience.rangeExact" -msgstr "Razpon ciljnega občinstva (točno)" - -msgid "monograph.languages" -msgstr "Jeziki (angleščina, francoščina, španščina)" - -msgid "monograph.publicationFormats" -msgstr "Formati publikacije" - -msgid "monograph.publicationFormat" -msgstr "Format" - -msgid "monograph.publicationFormatDetails" -msgstr "Podrobnosti o formatu publikacije na voljo: {$format}" - -msgid "monograph.miscellaneousDetails" -msgstr "Podrobnosti o monografski publikaciji" - -msgid "monograph.carousel.publicationFormats" -msgstr "Formati:" - -msgid "monograph.type" -msgstr "Tip prispevka" - -msgid "submission.pageProofs" -msgstr "Vzorci" - -msgid "monograph.proofReadingDescription" -msgstr "Grafični urednik naloži pripravljene datoteke, ki so bile tu pripravljene na objavo. Uporabite +Assign, da avtorjem in ostalim dodelite korekturo vzorcev, popravljene datoteke morajo biti naložene pred objavo." - -msgid "monograph.task.addNote" -msgstr "Dodaj v nalogo" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Odprt dostop" - -msgid "monograph.publicationFormat.imprint" -msgstr "Vtisk (Blagovna znamka)" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Število strani" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "Naslovna pola" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "Zaključna pola" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Sestava" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Podrobnosti o izdelku (ni obvezno)" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Identifikacija izdelka" - -msgid "monograph.publicationFormat.price" -msgstr "Cena" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Cena je obvezna." - -msgid "monograph.publicationFormat.priceType" -msgstr "Tip cene" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Odstotek popusta, če obstaja" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Razpoložljivost izdelka" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Pokazatelj vračila" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Digitalne informacije" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Dimenzije" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Velikost datoteke v MB" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Vnesite velikost vaše datoteke?" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Višina" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Debelina" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Teža" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Širina" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Država izdelave" - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Digitalna tehnična zaščita" - -msgid "monograph.publicationFormat.productRegion" -msgstr "Regija distribucije izdelka" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Stopnja obdavčitve" - -msgid "monograph.publicationFormat.taxType" -msgstr "Tip obdavčitve" - -msgid "monograph.publicationFormat.isApproved" -msgstr "Vključi metapodatke tega formata publikacije v vnos te knjige v katalog." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Manjkajoča trg in cena." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Manjkajoča identifikacijska številka." - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Manjkajoča polja metapodatkov." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "" -"

          Izbran format publikacije za to monografsko publikacijo ne obstaja " -"več.

          " - -msgid "monograph.publicationFormat.openTab" -msgstr "Odpri zavihek formata publikacije." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Format publikacije" - -msgid "grid.catalogEntry.nameRequired" -msgstr "Ime je obvezno." - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Veljavna cena je obvezna." - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Podrobnosti formata" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Materialna oblika" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Ta oblika bo na voljo na ločenem spletišču" - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL do vsebine na daljavo" - -msgid "grid.catalogEntry.monographRequired" -msgstr "ID monografske publikacije je obvezen." - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Izbrati morate format publikacije." - -msgid "grid.catalogEntry.availability" -msgstr "Razpoložljivost" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Na voljo" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Ni na voljo" - -msgid "grid.catalogEntry.proof" -msgstr "Korektura" - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Odobritev formata" - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

          Označite, da metapodatki za ta format niso bili odobreni.

          " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Razpoložljivost formata" - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "

          Ta format omogoči za bralce. Prenosljive datoteke in vse ostale oblike se bodo pojavile v vnosu knjige v katalog.

          " - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "

          Ta format bralcem ni na voljo . Prenosljive datoteke in vse ostale oblike se ne bodo pojavile v vnosu knjige v katalog.

          " - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Vnos v katalog ni odobren." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Formata ni v vnosu v katalog." - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Vzorec ni odobren." - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Odobreno" - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Čaka na odobritev" - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Velikost datoteke je za digitalne formate obvezna." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Oznaka razpoložljivosti izdelka je obvezna." - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Izbrati morate oznako sestave izdelka." - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Vrednost oznake" - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "Tip oznake ONIX" - -msgid "grid.catalogEntry.codeRequired" -msgstr "Identifikacijska oznaka je obvezna." - -msgid "grid.catalogEntry.valueRequired" -msgstr "Vrednost je obvezna." - -msgid "grid.catalogEntry.salesRights" -msgstr "Prodajne pravice" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Vrednost oznake" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Tip prodajnih pravic" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Tujina?" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "Obkljukajte to polje, da uporabite ta vnos Prodajne pravice kot privzet za vaš format. V tem primeru vam ni treba izbrati držav in regij." - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "VRSTICA tip prodajnih pravic je za ta format že opredeljena." - -msgid "grid.catalogEntry.countries" -msgstr "Države" - -msgid "grid.catalogEntry.regions" -msgstr "Regije" - -msgid "grid.catalogEntry.included" -msgstr "Vključeno" - -msgid "grid.catalogEntry.excluded" -msgstr "Izvzeto" - -msgid "grid.catalogEntry.markets" -msgstr "Trgi" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Prodajno področje" - -msgid "grid.catalogEntry.publicationDates" -msgstr "Datum objave" - -msgid "grid.catalogEntry.roleRequired" -msgstr "Vrsta zastopnika je obvezna." - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Oblika datuma je obvezna." - -msgid "grid.catalogEntry.dateValue" -msgstr "Datum" - -msgid "grid.catalogEntry.dateRole" -msgstr "Vrsta" - -msgid "grid.catalogEntry.dateFormat" -msgstr "Oblika datuma" - -msgid "grid.catalogEntry.dateRequired" -msgstr "Datum je obvezen in vrednost datuma se mora ujemati z izbrano obliko datuma." - -msgid "grid.catalogEntry.representatives" -msgstr "Zastopniki" - -msgid "grid.catalogEntry.representativeType" -msgstr "Tip zastopnika" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agenti" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Dobavitelji" - -msgid "grid.catalogEntry.agent" -msgstr "Agent" - -msgid "grid.catalogEntry.agentTip" -msgstr "Na opredeljenem prodajnem področju lahko dodelite agenta, da vas zastopa. Ni obvezno." - -msgid "grid.catalogEntry.supplier" -msgstr "Dobavitelj" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Izbor vrste:" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Vrsta" - -msgid "grid.catalogEntry.representativeName" -msgstr "Ime" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Telefon" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "E-poštni naslov" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Spletna stran" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "ID zastopnika" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Tip ID zastopnika (priporočen je GLN)" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "Ta razdelek lahko pustite prazen, če sami nudite storitve svojim strankam." - -msgid "grid.action.addRepresentative" -msgstr "Dodaj zastopnika" - -msgid "grid.action.editRepresentative" -msgstr "Uredi tega zastopnika" - -msgid "grid.action.deleteRepresentative" -msgstr "Izbriši tega zastopnika" - -msgid "spotlight" -msgstr "Izpostavljamo" - -msgid "spotlight.spotlights" -msgstr "Izpostavljamo" - -msgid "spotlight.noneExist" -msgstr "Trenutno ne izpostavljamo ničesar." - -msgid "spotlight.title.homePage" -msgstr "V ospredju" - -msgid "spotlight.author" -msgstr "Avtor, " - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Izpostavljen element" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Domača stran" - -msgid "grid.content.spotlights.form.location" -msgstr "Lokacija izpostavljenega elementa" - -msgid "grid.content.spotlights.form.item" -msgstr "Vnesi izpostavljen naslov (samodokončanje)" - -msgid "grid.content.spotlights.form.title" -msgstr "Naslov izpostavljenega elementa" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Knjiga" - -msgid "grid.content.spotlights.itemRequired" -msgstr "Element je obvezen." - -msgid "grid.content.spotlights.titleRequired" -msgstr "Naslov izpostavljenega elementa je obvezen." - -msgid "grid.content.spotlights.locationRequired" -msgstr "Prosimo, da za ta izpostavljeni element izberete lokacijo." - -msgid "grid.action.editSpotlight" -msgstr "Uredi ta izpostavljeni element" - -msgid "grid.action.deleteSpotlight" -msgstr "Izbriši ta izpostavljeni element" - -msgid "grid.action.addSpotlight" -msgstr "Dodaj izpostavljeni element" - -msgid "manager.series.open" -msgstr "Odpri oddajo prispevkov" - -msgid "manager.series.indexed" -msgstr "Indeksirano" - -msgid "grid.libraryFiles.column.files" -msgstr "Datoteke" - -msgid "grid.action.catalogEntry" -msgstr "Poglej obrazec za vnos v katalog" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Format se pojavi v vnosu v katalog" - -msgid "grid.action.editFormat" -msgstr "Uredi ta format" - -msgid "grid.action.deleteFormat" -msgstr "Izbriši ta format" - -msgid "grid.action.addFormat" -msgstr "Dodaj format publikacije" - -msgid "grid.action.approveProof" -msgstr "Odobri vzorec za indeksiranje in vključitev v katalog" - -msgid "grid.action.pageProofApproved" -msgstr "Datoteka vzorca je pripravljena na objavo" - -msgid "grid.action.addAnnouncement" -msgstr "Dodaj obvestilo" - -msgid "grid.action.newCatalogEntry" -msgstr "Nov vnos v katalog" - -msgid "grid.action.publicCatalog" -msgstr "Poglej ta element v katalogu" - -msgid "grid.action.feature" -msgstr "Preklopi na prikaz funkcij" - -msgid "grid.action.featureMonograph" -msgstr "Prikaži v prikazovalniku kataloga" - -msgid "grid.action.releaseMonograph" -msgstr "Označi prispevek kot ‘novo izdajo'" - -msgid "grid.action.manageCategories" -msgstr "Nastavi kategorije za to založbo" - -msgid "grid.action.manageSeries" -msgstr "Nastavi zbirke za to založbo" - -msgid "grid.action.addCode" -msgstr "Dodaj oznako" - -msgid "grid.action.editCode" -msgstr "Uredi oznako" - -msgid "grid.action.deleteCode" -msgstr "Izbriši oznako" - -msgid "grid.action.addRights" -msgstr "Dodaj prodajne pravice" - -msgid "grid.action.editRights" -msgstr "Uredi pravice" - -msgid "grid.action.deleteRights" -msgstr "Izbriši pravice" - -msgid "grid.action.addMarket" -msgstr "Dodaj trg" - -msgid "grid.action.editMarket" -msgstr "Uredi trg" - -msgid "grid.action.deleteMarket" -msgstr "Izbriši trg" - -msgid "grid.action.addDate" -msgstr "Dodaj datum objave" - -msgid "grid.action.editDate" -msgstr "Uredi datum" - -msgid "grid.action.deleteDate" -msgstr "Izbriši datum" - -msgid "grid.action.createContext" -msgstr "Ustvari novo založbo" - -msgid "grid.action.publicationFormatTab" -msgstr "Prikaži zavihek formata publikacije" - -msgid "grid.action.moreAnnouncements" -msgstr "Pojdi na stran obvestil založbe" - -msgid "grid.action.submissionEmail" -msgstr "Klikni za ogled e-poštnega sporočila" - -msgid "grid.action.approveProofs" -msgstr "Oglej si mrežo vzorcev" - -msgid "grid.action.proofApproved" -msgstr "Format je popravljen" - -msgid "grid.action.availableRepresentation" -msgstr "Odobri/zavrni format" - -msgid "grid.action.formatAvailable" -msgstr "Preklopi med vključeno in izključeno razpoložljivostjo formata" - -msgid "grid.reviewAttachments.add" -msgstr "Dodaj priponko recenziji" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Razpoložljive datoteke" - -msgid "series.series" -msgstr "Zbirka" - -msgid "series.featured.description" -msgstr "Zbirka bo prikazana v glavni navigaciji" - -msgid "series.path" -msgstr "Pot publikacije" - -msgid "catalog.manage" -msgstr "Upravljanje kataloga" - -msgid "catalog.manage.newReleases" -msgstr "Nove izdaje" - -msgid "catalog.manage.category" -msgstr "Kategorija" - -msgid "catalog.manage.series" -msgstr "Zbirka" - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series.issn.validation" -msgstr "Vnesite veljavno številko ISSN." - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "Številki ISSN tiskane in spletne izdaje ne smeta biti enaki." - -msgid "catalog.manage.series.onlineIssn" -msgstr "E-ISSN" - -msgid "catalog.manage.series.printIssn" -msgstr "Tiskane izdaje ISSN" - -msgid "catalog.selectSeries" -msgstr "Izberi zbirko" - -msgid "catalog.selectCategory" -msgstr "Izberi kategorijo" - -msgid "catalog.manage.homepageDescription" -msgstr "Naslovnica izbranih knjig se pojavi na vrhu domače strani kot drsni meni. Kliknite ‚Prikaži‘ in nato zvezdico, da dodate knjigo v vrtilni meni; kliknite klicaj, da se prikaže v kategoriji nove izdaje; povlecite in spustite za razvrščanje." - -msgid "catalog.manage.categoryDescription" -msgstr "Kliknite ‚Prikaži‘ in nato zvezdico, da izberete knjigo za to kategorijo; povlecite in spustite za razvrščanje." - -msgid "catalog.manage.seriesDescription" -msgstr "Kliknite ‚Prikaži‘ in nato zvezdico, da izberete knjigo za to zbirko; povlecite in spustite za razvrščanje. Zbirke so označene z imenom urednika (urednikov) in naslovom zbirke znotraj kategorije ali samostojno." - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Vrtilni meni" - -msgid "catalog.manage.newRelease" -msgstr "Izdaja" - -msgid "catalog.manage.manageSeries" -msgstr "Upravljanje zbirk" - -msgid "catalog.manage.manageCategories" -msgstr "Upravljanje kategorij" - -msgid "catalog.manage.noMonographs" -msgstr "Ni dodeljenih monografskih publikacij." - -msgid "catalog.manage.featured" -msgstr "Izbrano" - -msgid "catalog.manage.categoryFeatured" -msgstr "Izbrano v kategoriji" - -msgid "catalog.manage.seriesFeatured" -msgstr "Izbrano v zbirki" - -msgid "catalog.manage.featuredSuccess" -msgstr "Monografska publikacija je izpostavljena." - -msgid "catalog.manage.notFeaturedSuccess" -msgstr "Monografska publikacija ni izpostavljena." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Monografska publikacija je označena kot nova izdaja." - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Monografska publikacija ni več označena kot nova izdaja." - -msgid "catalog.manage.feature.newRelease" -msgstr "Nova izdaja" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Nova izdaja v kategoriji" - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Nova izdaja v zbirki" - -msgid "catalog.manage.nonOrderable" -msgstr "Te monografske publikacije ni mogoče naročiti, dokler ni izpostavljena." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Iskanje po naslovu ali avtorju" - -msgid "catalog.noTitles" -msgstr "Zaenkrat še ni objavljenih naslovov." - -msgid "catalog.noTitlesNew" -msgstr "Trenutno ni na voljo nobene nove izdaje." - -msgid "catalog.noTitlesSearch" -msgstr "Za vašo iskalno zahtevo \"{$searchQuery}\"ni bilo najdenih naslovov." - -msgid "catalog.feature" -msgstr "Lastnosti" - -msgid "catalog.featured" -msgstr "Izbrano" - -msgid "catalog.featuredBooks" -msgstr "Izbrane knjige" - -msgid "catalog.foundTitleSearch" -msgstr "Za vašo iskalno zahtevo \"{$searchQuery}\" je bil najden en naslov." - -msgid "catalog.foundTitlesSearch" -msgstr "{$number} število najdenih naslovov se je ujemalo z vašo iskalno zahtevo \"{$searchQuery}\"." - -msgid "catalog.category.heading" -msgstr "Vse knjige" - -msgid "catalog.newReleases" -msgstr "Nove izdaje" - -msgid "catalog.dateAdded" -msgstr "Dodano" - -msgid "catalog.publicationInfo" -msgstr "Podrobnosti o publikaciji" - -msgid "catalog.published" -msgstr "Izdano" - -msgid "catalog.categories" -msgstr "Kategorije" - -msgid "catalog.parentCategory" -msgstr "Nadrejena kategorija" - -msgid "catalog.category.subcategories" -msgstr "Podkategorije" - -msgid "catalog.aboutTheAuthor" -msgstr "O {$roleName}" - -msgid "catalog.loginRequiredForPayment" -msgstr "" -"Pomembno: Za nakup se boste morali najprej prijaviti. Izbor predmeta za " -"nakup vas bo preusmeril na stran za prijavo. Katero koli knjigo, označena z " -"ikono Prost dostop, lahko prenesete brez plačila in brez prijave." - -msgid "catalog.sortBy" -msgstr "Razvrščanje monografskih publikacij" - -msgid "catalog.sortBy.seriesDescription" -msgstr "Izberite, kako želite razvrstiti knjige v zbirki." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Izberite, kako želite razvrstiti knjige v kategoriji." - -msgid "catalog.sortBy.catalogDescription" -msgstr "Izberite, kako želite razvrstiti knjige v katalogu." - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Po položaju v zbirku (najprej najnižji)" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Po položaju v zbirki (najprej najvišji)" - -msgid "catalog.viewableFile.title" -msgstr "{$type} poglej datoteko {$title}" - -msgid "catalog.viewableFile.return" -msgstr "Vrni se na pregled podrobnosti o {$monographTitle}" - -msgid "common.prefix" -msgstr "Predpona" - -msgid "common.preview" -msgstr "Predogled" - -msgid "common.feature" -msgstr "Lastnosti" - -msgid "common.searchCatalog" -msgstr "Poišči v katalogu" - -msgid "common.moreInfo" -msgstr "Več informacij" - -msgid "common.listbuilder.completeForm" -msgstr "Izpolnite celoten obrazec." - -msgid "common.listbuilder.selectValidOption" -msgstr "Iz seznama izberite veljavno možnost." - -msgid "common.listbuilder.itemExists" -msgstr "Istega elementa ne morete dvakrat dodati." - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.homePageHeader.altText" -msgstr "Glava domače strani" - -msgid "navigation.catalog" -msgstr "Katalog" - -msgid "navigation.competingInterestPolicy" -msgstr "Politika konflikta interesov" - -msgid "navigation.catalog.manage" -msgstr "Upravljaj" - -msgid "navigation.catalog.administration.short" -msgstr "Administracija" - -msgid "navigation.catalog.administration" -msgstr "Administracija kataloga" - -msgid "navigation.catalog.administration.categories" -msgstr "Kategorije" - -msgid "navigation.catalog.administration.series" -msgstr "Zbirka" - -msgid "navigation.infoForAuthors" -msgstr "Za avtorje" - -msgid "navigation.infoForLibrarians" -msgstr "Za knjižničarje" - -msgid "navigation.infoForAuthors.long" -msgstr "Informacije za avtorje" - -msgid "navigation.infoForLibrarians.long" -msgstr "Informacije za knjižničarje" - -msgid "navigation.newReleases" -msgstr "Nove izdaje" - -msgid "navigation.published" -msgstr "Izdano" - -msgid "navigation.wizard" -msgstr "Pomočnik" - -msgid "navigation.linksAndMedia" -msgstr "Povezave in družabna omrežja" - -msgid "context.contexts" -msgstr "Založbe" - -msgid "context.context" -msgstr "Založba" - -msgid "context.current" -msgstr "Trenutna založba:" - -msgid "context.select" -msgstr "Preklopite na drugo založbo:" - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "V založbo vključi uporabnike brez vloge." - -msgid "user.noRoles.submitMonograph" -msgstr "Oddaj prispevek" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Oddaj monografsko publikacijo: Registracija avtorja je trenutno onemogočena." - -msgid "user.noRoles.regReviewer" -msgstr "Registriraj se kot recenzent" - -msgid "user.noRoles.regReviewerClosed" -msgstr "Registriraj se kot recenzent: Registracija recenzenta je trenutno onemogočena." - -msgid "user.reviewerPrompt" -msgstr "Ali bi bili pripravljeni recenzirati prispevke za to založbo?" - -msgid "user.reviewerPrompt.userGroup" -msgstr "Da, zahtevaj vlogo {$userGroup}." - -msgid "user.register.contextsPrompt" -msgstr "Pri katerih založbah na spletišču bi se radi registrirali?" - -msgid "user.register.otherContextRoles" -msgstr "Zahtevaj naslednje vloge." - -msgid "user.register.noContextReviewerInterests" -msgstr "Če ste zahtevali vlogo revizorja pri kateri koli založbi, vnesite predmetne interese." - -msgid "user.role.manager" -msgstr "Upravitelj publikacije" - -msgid "user.role.pressEditor" -msgstr "Uredik publikacije" - -msgid "user.role.subEditor" -msgstr "Urednik zbirke" - -msgid "user.role.assistant" -msgstr "Asistent založbe" - -msgid "user.role.copyeditor" -msgstr "Lektor" - -msgid "user.role.proofreader" -msgstr "Korektor" - -msgid "user.role.productionEditor" -msgstr "Tehnični urednik" - -msgid "user.role.managers" -msgstr "Upravitelji publikacije" - -msgid "user.role.subEditors" -msgstr "Uredniki zbirke" - -msgid "user.role.editors" -msgstr "Uredniki" - -msgid "user.role.copyeditors" -msgstr "Lektorji" - -msgid "user.role.proofreaders" -msgstr "Korektorji" - -msgid "user.role.productionEditors" -msgstr "Tehnični uredniki" - -msgid "user.register.selectContext" -msgstr "Izberite založbo za registracijo:" - -msgid "user.register.noContexts" -msgstr "Na tem spletišču ni založb za registracijo." - -msgid "user.register.privacyStatement" -msgstr "Izjava o zasebnosti" - -msgid "user.register.registrationDisabled" -msgstr "Ta založba trenutno ne sprejema registracij uporabnikov." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Vnešeno geslo ni dovolj dolgo." - -msgid "user.register.readerDescription" -msgstr "Obveščeni preko e-pošte o izidu monografske publikacije." - -msgid "user.register.authorDescription" -msgstr "Omogočeno dodajanje elementov k publikaciji." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Pripravljeni za opravljanje recenzij prispevkov v tej publikaciji." - -msgid "user.register.reviewerDescription" -msgstr "Pripravljen za opravljanje recenzij prispevkov na tem spletišču." - -msgid "user.register.reviewerInterests" -msgstr "Preverite zanimanje za recenzijo (vsebinska področja in raziskovalne metode):" - -msgid "user.register.form.userGroupRequired" -msgstr "Izbrati morate vsaj eno vlogo" - -msgid "site.pressView" -msgstr "Poglej spletišče založbe" - -msgid "about.pressContact" -msgstr "Kontakt založbe" - -msgid "about.aboutContext" -msgstr "O založbi" - -msgid "about.editorialTeam" -msgstr "Uredniška ekipa" - -msgid "about.editorialPolicies" -msgstr "Uredniška politika" - -msgid "about.focusAndScope" -msgstr "Fokus in obseg" - -msgid "about.seriesPolicies" -msgstr "Smernice o zbirkah in kategorijah" - -msgid "about.submissions" -msgstr "Prispevki" - -msgid "about.onlineSubmissions" -msgstr "Spletni prispevki" - -msgid "about.onlineSubmissions.login" -msgstr "Prijava" - -msgid "about.onlineSubmissions.register" -msgstr "Registracija" - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} ali {$register} za oddajo prispevka." - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} ali {$viewSubmissions}." - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Začni oddajo novega prispevka" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "Poglej svoje čakajoče prispevke" - -msgid "about.authorGuidelines" -msgstr "Navodila avtorjem" - -msgid "about.submissionPreparationChecklist" -msgstr "Kontrolni seznam za oddajo prispevka" - -msgid "about.submissionPreparationChecklist.description" -msgstr "Avtorji morajo med procesom oddaje preveriti, če njihovi prispevki ustrezajo spodnjim zahtevam. V primeru, da ne ustrezajo, so prispevki lahko zavrnjeni." - -msgid "about.copyrightNotice" -msgstr "Obvestilo o avtorskih pravicah" - -msgid "about.privacyStatement" -msgstr "Izjava o zasebnosti" - -msgid "about.reviewPolicy" -msgstr "Recenzijski postopek" - -msgid "about.publicationFrequency" -msgstr "Pogostost publikacije" - -msgid "about.openAccessPolicy" -msgstr "Politika odprtega dostopa" - -msgid "about.pressSponsorship" -msgstr "Sponzorstvo založbe" - -msgid "about.aboutThisPublishingSystem" -msgstr "O postopku objave" - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "Uredniški postopek in postopek objave OMP" - -#, fuzzy -msgid "about.aboutOMPPress" -msgstr "Ta založba uporablja sistem Open Monograph Press {$ompVersion}, ki je odprtokodna programska oprema za založništvo in upravljanje založb, ki jo podpira in distribuira Public Knowledge Project z licenco GNU General Public License." - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "To spletišče uporablja sistem Open Monograph Press {$ompVersion}, ki je odprtokodna programska oprema za založništvo in upravljanje založb, ki jo podpira in distribuira Public Knowledge Project z licenco GNU General Public License." - -msgid "help.searchReturnResults" -msgstr "Nazaj na iskalne rezultate" - -msgid "help.goToEditPage" -msgstr "Odpri novo stran za urejanje informacij" - -msgid "installer.appInstallation" -msgstr "Namestitev OMP" - -msgid "installer.ompUpgrade" -msgstr "Nadgradnja OMP" - -msgid "installer.installApplication" -msgstr "Namestitev Open Monograph Press" - -#, fuzzy -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

          Hvala za prenos Open Monograph Press {$version} v lasti Public Knowledge Project. Preden nadaljujete, preberite datoteko README, ki je priložena tej programski opremi. Za več informacij o platformi Public Knowledge Project in njihovi programski opremi obiščite spletišče PKP. Če imate vprašanja o tehnični podpori ali poročila o napakah v sistemu v zvezi s projektom Open Monograph Press, obiščite podporni forum ali spletni sistem PKP za poročila o napakah. Čeprav je zaželjeno, da nas kontaktirate preko podpornega foruma, lahko ekipo kontaktirate na pkp.contact@gmail.com.

          Upgrade

          Če nadgrajujete obstoječo nastavitev OMP, kliknite tukaj za nadaljevanje.

          " - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Koraki pred namestitvijo" - -msgid "installer.preInstallationInstructions" -msgstr "

          1. Naslednje datoteke in direktoriji (in njihova vsebina) morajo biti zapisljivi:

          • config.inc.php je zapisljiv (neobvezno): {$writable_config}
          • public/ je zapisljiv: {$writable_public}
          • cache/ je zapisljiv: {$writable_cache}
          • cache/t_cache/ je zapisljiv: {$writable_templates_cache}
          • cache/t_compile/ je zapisljiv: {$writable_templates_compile}
          • cache/_db je zapisljiv: {$writable_db_cache}

          2. Direktorij za shranjevanje naloženih datotek mora biti ustvarjen in zapisljiv (glej \"Nastavitve datotek\" spodaj).

          " - -msgid "installer.upgradeInstructions" -msgstr "" -"

          OMP Version {$version}

          \n" -"\n" -"

          Hvala za prenos sistema platforme Public Knowledge Project Open " -"Monograph Press. Preden nadaljujete, preberite README in UPGRADE " -"datoteke, ki so v paketu s to programsko opremo. Za več informacij o " -"platformi Public Knowledge Project in njihovi programski opremi obiščite spletišče PKP. Če imate " -"vprašanja o tehnični podpori ali poročila o napakah v sistemu v zvezi s " -"projektom Open Monograph Press, obiščite podporni forum ali spletni sistem PKP za poročila o napakah. " -"Čeprav je zaželjeno, da nas kontaktirate preko podpornega foruma, lahko " -"ekipo kontaktirate na pkp.contact@gmail.com.

          \n" -"

          Močno priporočamo, da naredite varnostno kopijo " -"podatkovne baze, direktorija map in nastavitvenega direktorija OMP preden " -"nadaljujete.

          Če ste v varnem načinu PHP, prosimo zagotovite, da je " -"max_execution_time directive v vaši konfiguracijski datoteki php.ini " -"nastavljena na visoko vrednost. Če dosežete to ali katero drugo časovno " -"omejitev (npr. direktiva \"Timeout\" v Apache) in je postopek nadgradnje " -"prekinjen, bo potrebno ročno posredovanje.

          " - -msgid "installer.localeSettingsInstructions" -msgstr "Za celotno podporo Unicode (UTF-8) izberite UTF-8 za vse nastavitve znakov. Za to podporo potrebujete MySQL >= 4.1.1 ali strežnik podatkovne baze PostgreSQL >= 9.1.5 . Ne pozabite, da za celotno podporo Unicode potrebujete knjižnico mbstring (privzeto omogočena v najnovejših namestitvah PHP). Če vaš strežnik ne ustreza tem zahtevam, bi lahko pri uporabi razširjenega izbora znakov imeli težave.

          Vaš strežnik trenutno podpira mbstring: {$supportsMBString}" - -msgid "installer.allowFileUploads" -msgstr "Vaš server trenutno podpira nalaganje datotek: {$allowFileUploads}" - -msgid "installer.maxFileUploadSize" -msgstr "Vaš server trenutno podpira nalaganje datotek največ v velikosti: {$allowFileUploads}" - -msgid "installer.localeInstructions" -msgstr "Primarni jezik, ki se bo uporabljal na sistemu. Preverite dokumentacijo OMP, če vas zanima podpora jezikov, ki tukaj niso našteti." - -msgid "installer.additionalLocalesInstructions" -msgstr "Izberite dodatne jezike, ki naj jih sistem podpira. Ti jeziki bodo na voljo založbam na vašem spletišču. Dodatne jezike lahko kadarkoli namestite v vmesniku administracije spletišča. Jeziki označeni z * so lahko nepopolni." - -msgid "installer.filesDirInstructions" -msgstr "Vnesite celotno ime poti obstoječega direktorija, kjer naj se hranijo naložene datoteke. Ta direktorij naj ne bo direktno dostopen s spleta. Poskrbite, da direktorij obstaja in da je zapisljiv pred namestitvijo. Imena poti v okolju Windows naj uporabljajo poševnice, npr. \"C:/mypress/files\"." - -msgid "installer.databaseSettingsInstructions" -msgstr "Sistem OMP za shranjevanje podatkov potrebuje dostop do podatkovne zbirke SQL. Seznam podprtih podatkovnih zbirk lahko vidite zgoraj v zavihku sistemske zahteve. V poljih spodaj napišite nastavitve za povezavo z podatkovno zbirko." - -msgid "installer.upgradeApplication" -msgstr "Posodobitev Open Monograph Press" - -msgid "installer.overwriteConfigFileInstructions" -msgstr "

          OPOZORILO!

          Sistem ne more avtomatsko prepisati konfiguracijske datoteke. Pred uporabo sistema odprite config.inc.php v primernem urejevalniku besedil in njegovo vsebino zamenjajte z besedilom spodaj.

          " - -msgid "installer.installationComplete" -msgstr "

          Namestitev sistema OMP je uspešno dokončana.

          Za začetek uporabe sistema se prijavite z uporabniškim imenom in geslom, ki ste ga vpisali na prejšnji strani.

          Če želite prejemati novice in posodobitve, se registrirajte na http://pkp.sfu.ca/omp/register. Če imate vprašanja ali komentarje, obiščite podporni forum.

          " - -msgid "installer.upgradeComplete" -msgstr "

          Nadgradnja sistema OMP na različico {$version} je uspešno dokončana.

          Ne pozabite nastaviti nastavitve \"installed\" v vaši konfiguracijski datoteki config.inc.php nazaj na On.

          Če se še niste registrirali in želite prejemati novice in posodobitve, se registrirajte na http://pkp.sfu.ca/omp/register. Če imate vprašanja ali komentarje, prosimo obiščite podporni forum.

          " - -msgid "log.review.reviewDueDateSet" -msgstr "Končni datum za {$round} krog recenzije prispevka {$submissionId} recenzenta {$reviewerName} je bil postavljen na {$dueDate}." - -msgid "log.review.reviewDeclined" -msgstr "{$reviewerName} je zavrnil {$round} recenzijo za prispevek {$submissionId}." - -msgid "log.review.reviewAccepted" -msgstr "{$reviewerName} je sprejel {$round}. krog recenzije za prispevek {$submissionId}." - -msgid "log.review.reviewUnconsidered" -msgstr "{$editorName} je označil recenzijo {$round} kroga za prispevek {$submissionId} kot neupoštevan." - -msgid "log.editor.decision" -msgstr "Uredniško odločitev ({$decision}) za monografsko publikacijo {$submissionId} je zabeležil {$editorName}." - -msgid "log.editor.archived" -msgstr "Prispevek {$articleId} je arhiviran." - -msgid "log.editor.restored" -msgstr "Prispevek {$articleId} je vrnjen v uredniški postopek." - -msgid "log.editor.editorAssigned" -msgstr "{$editorName} je dodeljen kot urednik prispevka {$submissionId}." - -msgid "log.proofread.assign" -msgstr "{$assignerName} je določil {$proofreaderName} za korektorja prispevka {$submissionId}." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} je poslal prispevek {$submissionId} v razpored za objavo." - -msgid "log.imported" -msgstr "{$userName} je vnesel monografsko publikacijo {$submissionId}." - -msgid "notification.addedIdentificationCode" -msgstr "Identifikacijska oznaka dodana." - -msgid "notification.editedIdentificationCode" -msgstr "Identifikacijska oznaka urejena." - -msgid "notification.removedIdentificationCode" -msgstr "Identifikacijska oznaka odstranjena." - -msgid "notification.addedPublicationDate" -msgstr "Datum objave dodan." - -msgid "notification.editedPublicationDate" -msgstr "Datum objave urejen." - -msgid "notification.removedPublicationDate" -msgstr "Datum objave odstranjen." - -msgid "notification.addedPublicationFormat" -msgstr "Format publikacije dodan." - -msgid "notification.editedPublicationFormat" -msgstr "Format publikacije urejen." - -msgid "notification.removedPublicationFormat" -msgstr "Format publikacije odstranjen." - -msgid "notification.addedSalesRights" -msgstr "Tip prodajnih pravic dodan." - -msgid "notification.editedSalesRights" -msgstr "Tip prodajnih pravic urejen." - -msgid "notification.removedSalesRights" -msgstr "Tip prodajnih pravic odstranjen." - -msgid "notification.addedRepresentative" -msgstr "Zastopnik dodan." - -msgid "notification.editedRepresentative" -msgstr "Zastopnik urejen." - -msgid "notification.removedRepresentative" -msgstr "Zastopnik odstranjen." - -msgid "notification.addedMarket" -msgstr "Trg dodan." - -msgid "notification.editedMarket" -msgstr "Trg urejen." - -msgid "notification.removedMarket" -msgstr "Trg odstranjen." - -msgid "notification.addedSpotlight" -msgstr "Izpostavljeni element dodan." - -msgid "notification.editedSpotlight" -msgstr "Izpostavljeni element urejen." - -msgid "notification.removedSpotlight" -msgstr "Izpostavljeni element odstranjen." - -msgid "notification.savedCatalogMetadata" -msgstr "Metapodatki kataloga shranjeni." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Metapodatki formata publikacije shranjeni." - -msgid "notification.proofsApproved" -msgstr "Vzorci odobreni." - -msgid "notification.removedSubmission" -msgstr "Prispevek izbrisan." - -msgid "notification.type.submissionSubmitted" -msgstr "Nova monografska publikacija, \"{$title}\", je bila dodana." - -msgid "notification.type.editing" -msgstr "Uredniški dogodki" - -msgid "notification.type.reviewing" -msgstr "Recenzentski dogodki" - -msgid "notification.type.site" -msgstr "Dogodki spletišča" - -msgid "notification.type.submissions" -msgstr "Dogodki prispevkov" - -msgid "notification.type.userComment" -msgstr "Bralec je dodal komentar na prispevek \"{$title}\"" - -msgid "notification.type.editorAssignmentTask" -msgstr "Nova monografska publikacija je bila dodana, ki ji je treba dodeliti urednika." - -msgid "notification.type.copyeditorRequest" -msgstr "Prosili so vas za pregled korektur za \"{$file}\"." - -msgid "notification.type.layouteditorRequest" -msgstr "Prosili so vas za pregled postavitev za \"{$title}\"." - -msgid "notification.type.indexRequest" -msgstr "Prosili so vas za ustvarjanje kazala za \"{$title}\"." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Postopek notranjega pregleda začet." - -msgid "notification.type.approveSubmission" -msgstr "Ta prispevek trenutno čaka na odobritev v orodju Vnos v katalog, preden se bo pojavil v javnem katalogu." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Čaka na odobritev." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Ni konfiguriranih načinov plačila." - -msgid "notification.type.configurePaymentMethod" -msgstr "Konfiguriran način plačila je obvezen, preden lahko opredelite nastavitve e-poslovanja." - -msgid "notification.type.visitCatalogTitle" -msgstr "Upravljanje kataloga" - -msgid "user.authorization.invalidReviewAssignment" -msgstr "Dostop vam je bil preprečen, ker niste veljaven recenzent te monografske publikacije." - -msgid "user.authorization.monographAuthor" -msgstr "Dostop vam je bil preprečen, ker niste avtor te monografske publikacije." - -msgid "user.authorization.monographReviewer" -msgstr "Dostop vam je bil preprečen, ker niste dodeljen recenzent te monografske publikacije." - -msgid "user.authorization.monographFile" -msgstr "Dostop do določene datoteke monografa vam je bil preprečen." - -msgid "user.authorization.invalidMonograph" -msgstr "Neveljavna monografska publikacija ali zahtevana monografska publikacija ne obstaja!" - -msgid "user.authorization.noContext" -msgstr "Ni založbe v kontekstu!" - -msgid "user.authorization.seriesAssignment" -msgstr "Dostopati želite do monografske publikacije, ki ni del vaše zbirke." - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Dostop zavrnjen! Niste bili dodani v to fazo dela." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "Dostop zavrnjen! Uporabniška skupina, v kateri trenutno delujete, ni bila dodeljena v to fazo dela. Preverite nastavitve vaše založbe." - -msgid "payment.directSales" -msgstr "Prenesi s spletišča založbe" - -msgid "payment.directSales.price" -msgstr "Cena" - -msgid "payment.directSales.availability" -msgstr "Razpoložljivost" - -msgid "payment.directSales.catalog" -msgstr "Katalog" - -msgid "payment.directSales.approved" -msgstr "Odobreno" - -msgid "payment.directSales.priceCurrency" -msgstr "Cena ({$currency})" - -msgid "payment.directSales.numericOnly" -msgstr "Cena mora biti obvezno numerična. Ne vključujte simbolov valut." - -msgid "payment.directSales.directSales" -msgstr "Neposredna prodaja" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.notAvailable" -msgstr "Ni na voljo" - -msgid "payment.directSales.notSet" -msgstr "Ni nastavljeno" - -msgid "payment.directSales.openAccess" -msgstr "Odprt dostop" - -msgid "payment.directSales.price.description" -msgstr "Datotečni format je na voljo za prenos na spletišču založbe na podlagi odprtega dostopa in brez stroškov za bralce ali direktne prodaje (z uporabo spletnega plačilnega servisa, kot nastavljeno v Distribuciji). Natavite podlago dostopa za to datoteko." - -msgid "payment.directSales.validPriceRequired" -msgstr "Veljavna numerična cena je obvezna." - -msgid "payment.directSales.purchase" -msgstr "Nakup {$format} ({$amount} {$currency})" - -msgid "payment.directSales.download" -msgstr "Prenesi {$format}" - -msgid "payment.directSales.monograph.name" -msgstr "Nakup monografske publikacije ali prenos poglavja" - -msgid "payment.directSales.monograph.description" -msgstr "Prenos sredstev je za nakup direktnega prenosa ene monografske publikacije ali njenega poglavja." - -msgid "debug.notes.helpMappingLoad" -msgstr "XML datoteka preslikav pomoči {$filename} za iskanje {$id} je bila ponovno naložena." - -msgid "rt.metadata.pkp.dctype" -msgstr "Knjiga" - -msgid "plugins.categories.viewableFiles" -msgstr "Objavljeni vtičniki datotek" - -msgid "plugins.categories.viewableFiles.description" -msgstr "Objavljeni vtičniki datotek podpirajo prikazovanje različnih vrst dokumentov, npr. z vdelavo PDF." - -msgid "submission.pdf.download" -msgstr "Prenesi to datoteko PDF" - -msgid "user.profile.form.showOtherContexts" -msgstr "Registriraj se pri ostali založbah" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Skrij ostale založbe" - -msgid "submission.round" -msgstr "Krog  {$round}" - -msgid "monograph.audience.success" -msgstr "Podrobnosti ciljnega občinstva so bile posodobljene." diff --git a/locale/sl_SI/manager.po b/locale/sl_SI/manager.po deleted file mode 100644 index 0865b9fd4d5..00000000000 --- a/locale/sl_SI/manager.po +++ /dev/null @@ -1,903 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-28T15:10:10-08:00\n" -"PO-Revision-Date: 2020-01-17 01:37+0000\n" -"Last-Translator: Mitja Podreka \n" -"Language-Team: Slovenian \n" -"Language: sl_SI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "S tem boste nadomestili vse območno specifične nastavitve tiskovnega portala, ki ste jih izbrali za to območje." - -msgid "manager.languages.noneAvailable" -msgstr "Dodatni jeziki žal niso na voljo. Če želite uporabljati dodatne jezike, se obrnite na administratorja spletišča." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Ta jezik bo privzet za celotno spletišče." - -msgid "manager.series.form.mustAllowPermission" -msgstr "Preverite, ali je za vsako vlogo urednika zbirke izbrano vsaj eno potrditveno polje." - -msgid "manager.series.form.reviewFormId" -msgstr "Preverite, ali ste izbrali veljaven recenzijski obrazec." - -msgid "manager.series.submissionIndexing" -msgstr "Ne bo vključeno v indeksiranje publikacije." - -msgid "manager.series.editorRestriction" -msgstr "Prispevke v to rubriko lahko oddajajo samo uredniki in uredniki zbirk." - -msgid "manager.series.confirmDelete" -msgstr "Ste prepričani, da želite trajno zbrisati to zbirko?" - -msgid "manager.series.indexed" -msgstr "Indeksirano" - -msgid "manager.series.open" -msgstr "Odprto za oddajanje prispevkov" - -msgid "manager.series.readingTools" -msgstr "Orodja za branje" - -msgid "manager.series.submissionReview" -msgstr "Ne bo recenzirano" - -msgid "manager.series.submissionsToThisSection" -msgstr "Prispevki za to zbirko" - -msgid "manager.series.abstractsNotRequired" -msgstr "Povzetek ni obvezen" - -msgid "manager.series.disableComments" -msgstr "Bralcem onemogoči komentiranje v tej rubriki." - -msgid "manager.series.book" -msgstr "Knjižne zbirke" - -msgid "manager.series.create" -msgstr "Ustvari zbirko" - -msgid "manager.series.policy" -msgstr "Opis zbirke" - -msgid "manager.series.assigned" -msgstr "Uredniki zbirke" - -msgid "manager.series.seriesEditorInstructions" -msgstr "Izmed urednikov, ki so na voljo, izberite urednika za to zbirko Ko dodate urednika zbirke, določite, ali bo nadzoroval proces recenzije in/ali urejanja (lektoriranje, grafično oblikovanje in korektura) prispevkov za to zbirko. Urednika zbirke ustvarite s klikom na Uredniki zbirke v meniju Vloge in Upravljanje spletišča" - -msgid "manager.series.hideAbout" -msgstr "Izpusti to zbirko iz poglavja O portalu" - -msgid "manager.series.unassigned" -msgstr "Razpoložljivi uredniki zbirke" - -msgid "manager.series.form.abbrevRequired" -msgstr "Vpišite okrajšan naslov zbirke." - -msgid "manager.series.form.titleRequired" -msgstr "Vpišite naslov zbirke." - -msgid "manager.series.noneCreated" -msgstr "Ustvarjena ni bila nobena zbirka." - -msgid "manager.series.existingUsers" -msgstr "Obstoječi uporabniki" - -msgid "manager.series.seriesTitle" -msgstr "Naslov zbirke" - -msgid "manager.series.restricted" -msgstr "Avtorjem ne dovoli, da prispevke oddajajo neposredno v to zbirko." - -msgid "manager.settings" -msgstr "Nastavitve" - -msgid "manager.settings.pressSettings" -msgstr "Nastavitve založbe" - -msgid "manager.settings.press" -msgstr "Založba" - -msgid "manager.settings.publisher.identity.description" -msgstr "Ta polja so obvezna, če želite ustvariti veljavne metapodatke ONIX. Vključite jih, če želite objaviti metapodatke ONIX." - -msgid "manager.settings.publisher" -msgstr "Ime založnika" - -msgid "manager.settings.location" -msgstr "Lokacija" - -msgid "manager.settings.publisherCode" -msgstr "Koda založnika" - -msgid "manager.settings.publisherCodeType" -msgstr "Vrsta kode založnika" - -msgid "manager.settings.distributionDescription" -msgstr "Vse nastavitve, specifične za distribucijski proces (obveščanje, indeksiranje, arhiviranje, plačilo, orodja za branje)." - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Prenos monografskih publikacij" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Število ogledov strani z izvlečki monografskih publikacij" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Izvleček monografske publikacije in prenosi" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Število ogledov glavne strani zbirke" - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Število ogledov glavne strani založbe" - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Omeji rezultate glede na kontekst (zbirka in/ali monografska publikacija)." - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "Omeji rezultate glede na vrsto (založba, zbirka, monografska publikacija, vrsta datotek) in/ali glede na idetifikacijsko kodo enega ali več predmetov." - -msgid "manager.tools" -msgstr "Orodja" - -msgid "manager.tools.importExport" -msgstr "Orodja za uvoz in izvoz podatkov (založbe, monografske publikacije, uporabniki)" - -msgid "manager.tools.statistics" -msgstr "Orodja za ustvarjanje poročil, povezanih s statistikami uporabe (ogledi domače strani kataloga, ogledi strani z izvlečki monografskih publikacije, prenos monografskih publikacij)" - -msgid "manager.users.availableRoles" -msgstr "Razpoložljive vloge" - -msgid "manager.users.currentRoles" -msgstr "Trenutne vloge" - -msgid "manager.users.selectRole" -msgstr "Izberi vlogo" - -msgid "manager.people.allEnrolledUsers" -msgstr "Vsi registrirani uporabniki tega portala" - -msgid "manager.people.allPresses" -msgstr "Vse publikacije" - -msgid "manager.people.allSiteUsers" -msgstr "Registriraj obstoječega uporabnika za to publikacijo" - -msgid "manager.people.allUsers" -msgstr "Vsi registrirani uporabniki" - -msgid "manager.people.confirmRemove" -msgstr "Odstrani uporabnika iz te publikacije S tem boste uporabniku zbrisali vse vloge, ki jih ima." - -msgid "manager.people.enrollExistingUser" -msgstr "Registriraj obstoječega uporabnika" - -msgid "manager.people.existingUserRequired" -msgstr "Vnesen mora biti obstoječi uporabnik" - -msgid "manager.people.enrollSyncPress" -msgstr "S tiskovnim portalom" - -msgid "manager.people.mergeUsers.from.description" -msgstr "Izberite račun uporabnika, ki ga želite združiti v drug uporabniški račun (npr. če kdo uporablja več uporabniških računov). Vsi oddani prispevki, zadolžitve itd. prvoizbranega uporabniškega računa bodo zbrisani in preneseni na drug uporabniški račun." - -msgid "manager.people.mergeUsers.into.description" -msgstr "Izberite uporabnika, ki mu želite pripisati vsa avtorska dela, uredniške zadolžitve, itd. prejšnjega uporabnika." - -msgid "manager.people.syncUserDescription" -msgstr "Sinhronizacija dodeljene vloge bo vsem uporabnikom, ki imajo dodeljeno vlogo v izbrani publikaciji, dodelila enako vlogo v tej publikaciji. Ta možnost se uporablja za sinhronizacijo skupin uporabnikov (npr. recenzentov) med publikacijami, ki so na istem spletišču." - -msgid "manager.people.confirmDisable" -msgstr "Onemogoči tega uporabnika? To bo uporabniku preprečilo, da bi se prijavil v sistem. Uporabniku lahko sporočite, zakaj je bil njihov račun onemogočen." - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Za tega uporabnika nimate skrbniških pravic. Razlog za to je najverjetneje to, da je
          • uporabnik administrator tega spletišča
          • uporabnik aktiven v publikacijah, ki jih vi ne upravljate
          To operacijo lahko izvede le administrator spletišča.\n" -"\t" - -msgid "manager.system" -msgstr "Nastavitve sistema" - -msgid "manager.system.archiving" -msgstr "Arhiviranje" - -msgid "manager.system.reviewForms" -msgstr "Recenzijski obrazci" - -msgid "manager.system.readingTools" -msgstr "Orodja za branje" - -msgid "manager.system.payments" -msgstr "Plačila" - -msgid "user.authorization.pluginLevel" -msgstr "Nimate pravic za upravljanje tega vtičnika." - -msgid "manager.pressManagement" -msgstr "Upravljanje publikacije" - -msgid "manager.setup" -msgstr "Namestitev" - -msgid "manager.setup.aboutItemContent" -msgstr "Vsebina" - -msgid "manager.setup.addAboutItem" -msgstr "Dodaj element za kategorijo O publikaciji" - -msgid "manager.setup.addChecklistItem" -msgstr "Dodaj element za kontrolni seznem" - -msgid "manager.setup.addItem" -msgstr "Dodaj element" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Dodaj element v kategorijo \"O portalu\"" - -msgid "manager.setup.addNavItem" -msgstr "Dodaj element" - -msgid "manager.setup.addSponsor" -msgstr "Dodaj sponzorsko organizacijo" - -msgid "manager.setup.announcements" -msgstr "Obvestila" - -msgid "manager.setup.announcementsDescription" -msgstr "Obvestila lahko uporabljate za obveščanje bralcev o novostih in dogodkih glede publikacije. Obvestila bodo vidna na strani Obvestila." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Dodatne informacije" - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "Vpišite dodatne informacije, ki jih želite bralcem prikazati na strani z obvestili." - -msgid "manager.setup.appearInAboutPress" -msgstr "(Pojavlja se na strani O portalu) " - -msgid "manager.setup.copyediting" -msgstr "Lektorji" - -msgid "manager.setup.copyeditInstructions" -msgstr "Navodila za lektoriranje" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "Navodila za lektoriranje bodo na voljo lektorjem, avtorjem in urednikom rubrik na ravni urejanja prispevka. Spodaj so privzeta navodila v formatu HTML, ki jih lahko glavni urednik publikacije kadar koli spremeni (HTML ali navadno besedilo)." - -msgid "manager.setup.copyrightNotice" -msgstr "Avtorske pravice" - -msgid "manager.setup.coverage" -msgstr "Pokritost" - -msgid "manager.setup.customizingTheLook" -msgstr "5. korak Prilagajanje izgleda" - -msgid "manager.setup.customTags" -msgstr "Posebne HTML oznake" - -msgid "manager.setup.customTagsDescription" -msgstr "Posebne HTML oznake glave bodo vnesene v glavo vsake strani (npr. oznake META)." - -msgid "manager.setup.details" -msgstr "Podrobnosti" - -msgid "manager.setup.details.description" -msgstr "Ime publikacije, kontakt, sponzorji in iskalniki." - -msgid "manager.setup.disableUserRegistration" -msgstr "Skrbnik portala bo registriral vse uporabniške račune. Uredniki ali uredniki rubrik lahko registrirajo uporabniške račune za recenzente" - -msgid "manager.setup.discipline" -msgstr "Akademska veda in podvede" - -msgid "manager.setup.disciplineDescription" -msgstr "Uporabno, kadar publikacija presega meje ene vede in/ali je avtorski prispevek multidisciplinaren" - -msgid "manager.setup.disciplineExamples" -msgstr "(npr. zgodovina, izobraževanje, sociologija, psihologija, kulturne študije, pravo, itd.)" - -msgid "manager.setup.disciplineProvideExamples" -msgstr "Navedite primere relevantnih akademskih ved za to publikacijo" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "Za to monografsko publikacijo dodaj kazalo (če je na voljo)." - -msgid "manager.setup.displayOnHomepage" -msgstr "Vsebina domače strani" - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Na domači strani prikaži predstavljene knjige" - -msgid "manager.setup.displayInSpotlight" -msgstr "Na domači strani prikaži aktualne knjige" - -msgid "manager.setup.displayNewReleases" -msgstr "Prikaži novosti na domači strani" - -msgid "manager.setup.doiPrefix" -msgstr "Predpona DOI" - -msgid "manager.setup.doiPrefixDescription" -msgstr "Predpono DOI (digitalni identifikator objekta) dodeli CrossRef in je v formatu 10.xxxx (npr. 10.1234)." - -msgid "manager.setup.editorDecision" -msgstr "Uredniška odločitev" - -msgid "manager.setup.emailBounceAddress" -msgstr "Naslov za obvestilo o neuspeli dostavi" - -msgid "manager.setup.emailBounceAddress.description" -msgstr "Za vsako nedostavljeno e-pošto bo na ta e-poštni naslov poslano sporočilo z napako." - -msgid "manager.setup.emails" -msgstr "Identifikacija e-poštnega naslova" - -msgid "manager.setup.emailSignature" -msgstr "Podpis" - -msgid "manager.setup.emailSignatureDescription" -msgstr "Predpripravljena e-pošta, ki jo tiskovni portal pošlje avtomatsko, bo imela na dnu naslednji podpis." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Omogoči obvestila" - -msgid "manager.setup.enablePressInstructions" -msgstr "Omogoči, da se publikacija pojavlja javno na spletišču" - -msgid "manager.setup.enablePublicMonographId" -msgstr "Publikacija uporablja posebne identifikatorje za identifikacijo objavljenih prispevkov." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "Posebni identifikatorji bodo uporabljeni za idetifikacijo prelomov (npr. za datoteke HTML ali PDF) objavljenih prispevkov." - -msgid "manager.setup.enableUserRegistration" -msgstr "Na spletišču se gosti lahko registrirajo z uporabniškim računom. " - -msgid "manager.setup.focusAndScope" -msgstr "Fokus in obseg publikacije" - -msgid "manager.setup.focusAndScope.description" -msgstr "Avtorjem, bralcem in knjižničarjem opiši obseg monografskih in ostalih publikacij, ki jih bo založba objavila." - -msgid "manager.setup.focusScope" -msgstr "Fokus in obseg" - -msgid "manager.setup.focusScopeDescription" -msgstr "PRIMER PODATKOV HTML" - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "Avtorsko indeksiranje del" - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "OMP uporablja protokol Open Archives Initiative za zbiranje metapodatkov, ki je standard v nastajanju za dobro indeksiran dostop do elektronskih raziskovalnih virov na globalni ravni. Avtorji bodo uporabljali podobne predloge za določanje metapodatkov svojih prispevkov. Urednik portala mora izbrati kategorije za indeksiranje in avtorjem predstaviti relevantne primere, ki jim bodo pomagali pri indeksiranju njihovih prispevkov, kjer bodo posamezni pojmi ločeni s podpičjem (npr. področje1; področje2). Primeri naj se začnejo z \"npr.\" ali \"na primer\"." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Vpišite e-pošto glavnega kontakta." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Vpišite ime glavnega kontakta." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Vpišite število recenzentov na oddan prispevek." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Vpišite naslov e-pošte pomožnega kontakta." - -msgid "manager.setup.form.supportNameRequired" -msgstr "Vpišite ime pomožnega kontakta." - -msgid "manager.setup.generalInformation" -msgstr "Splošne informacije" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "1. korak Podrobnosti" - -msgid "manager.setup.guidelines" -msgstr "Navodila" - -msgid "manager.setup.preparingWorkflow" -msgstr "3. korak Priprava poteka dela" - -msgid "manager.setup.information.description" -msgstr "Kratek opis publikacije za knjižničarje in bodoče avtorje ter bralce, ki je na voljo v stranski orodni vrstici, ko je blok informacij dodan." - -msgid "manager.setup.information.forAuthors" -msgstr "Za avtorje" - -msgid "manager.setup.information.forLibrarians" -msgstr "Za knjižničarje" - -msgid "manager.setup.information.forReaders" -msgstr "Za bralce" - -msgid "manager.setup.institution" -msgstr "Institucija" - -msgid "manager.setup.labelName" -msgstr "Ime oznake" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Grafični uredniki" - -msgid "manager.setup.layoutInstructions" -msgstr "Navodila za grafično oblikovanje in postavitev" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "Tukaj lahko pripravite navodila za prelom prispevkov, objavljenih v publikaciji. Pripravljena so lahko kot navadno besedilo ali HTML. Vidna bodo grafičnim urednikom in urednikom rubrik na strani za urejanje prispevkov. (Ker ima lahko vsaka publikacija svoj datotečni format, bibilografske standarde, stilske tabele, itd., privzeta navodila niso na voljo)" - -msgid "manager.setup.layoutTemplates" -msgstr "Predloge za postavitev" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "Za vsak standarden tip elementa v publikaciji (prispevek, prikaz knjige, itd.) lahko naložite predloge za prelom za kateri koli format datotek (npr. pdf, doc, itd.). Te predloge določajo pisavo, velikost črk, zamikov, itd. in služijo grafičnim urednikom in korektorjem kot smernice za pripravo preloma." - -msgid "manager.setup.layoutTemplates.file" -msgstr "Datoteka s predlogo" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Naslov" - -msgid "manager.setup.lists" -msgstr "Seznami" - -msgid "manager.setup.look" -msgstr "Izgled" - -msgid "manager.setup.look.description" -msgstr "Glava domače strani, vsebina, glava publikacije, noga, navigacijski trak in stilska tablica" - -msgid "manager.setup.settings" -msgstr "Nastavitve" - -msgid "manager.setup.management.description" -msgstr "Dostopnost in varnost, urnik objavljanja publikacije, izdajanje obvestil, postavke lekture, korekture in preloma." - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Upravljanje z osnovnimi uredniškimi koraki" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Nastavitev upravljanja in objavljanja" - -msgid "manager.setup.managingThePress" -msgstr "4. korak Upravljanje z nastavitvami" - -msgid "manager.setup.noImageFileUploaded" -msgstr "Naložena ni bila nobena slika." - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "Naložena ni bila nobena stilska tablica." - -msgid "manager.setup.note" -msgstr "Opomba" - -msgid "manager.setup.notifyAllAuthorsOnDecision" -msgstr "E-poštna obvestila pri publikacijah z več avtorji, namenjena avtorju, pošlji tudi soavtorjem, ne le avtorju, ki je oddal prispevek." - -msgid "manager.setup.noUseCopyeditors" -msgstr "Za lektoriranje bo poskrbel urednik ali urednik rubrike, v katero je prispevek oddan." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "Urednik ali urednik rubrike, ki je za prispevek zadolžen, bo pripravil HTML, PDF in ostale datoteke." - -msgid "manager.setup.noUseProofreaders" -msgstr "Prelom bo urejal urednik ali urednik rubrike, ki je za prispevek zadolžen." - -msgid "manager.setup.numPageLinks" -msgstr "Število prikazanih strani" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Dostop do vsebine publikacije" - -msgid "manager.setup.onlineIssn" -msgstr "e-ISSN" - -msgid "manager.setup.policies" -msgstr "Politike" - -msgid "manager.setup.policies.description" -msgstr "Fokus, recenzija, rubrike, zasebnost, varnost in ostale informacije o publikaciji." - -msgid "manager.setup.appearanceDescription" -msgstr "Različne komponente izgleda spletišča lahko spreminjate na tej strani, npr. elemente glave in noge, oblika in tema strani ter kako so seznami z informacijami predstavljeni uporabnikom." - -msgid "manager.setup.pressDescription" -msgstr "Opis založbe" - -msgid "manager.setup.pressDescription.description" -msgstr "Kratek opis vaše založbe." - -msgid "manager.setup.aboutPress" -msgstr "O založbi" - -msgid "manager.setup.aboutPress.description" -msgstr "Vključite kakršne koli informacije o založbi, ki bi morda zanimale bralce, avtorje ali recenzente. Med drugim lahko vključite informacije o politiki odprtega dostopa, fokusu in obsegu založbe, avtorskih pravicah, sponzorstvu, zgodovini založbe in izjavo o zasebnosti." - -msgid "manager.setup.pressArchiving" -msgstr "Arhiviranje portala" - -msgid "manager.setup.homepageContent" -msgstr "Vsebina domače strani spletišča" - -msgid "manager.setup.homepageContentDescription" -msgstr "Domačo stran privzeto sestavljajo navigacijske povezave Poleg tega lahko na domačo stran dodate vsebine, tako da uporabite eno ali vse naštete možnosti, ki se bodo pojavile v naslednjem vrstnem redu." - -msgid "manager.setup.pressHomepageContent" -msgstr "Vsebina domače strani spletišča" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "Domačo stran privzeto sestavljajo navigacijske povezave Poleg tega lahko na domačo stran dodate vsebine, tako da uporabite eno ali vse naštete možnosti, ki se bodo pojavile v naslednjem vrstnem redu." - -msgid "manager.setup.contextInitials" -msgstr "Začetnice založbe" - -msgid "manager.setup.layout" -msgstr "Postavitev spletišča" - -msgid "manager.setup.pageHeader" -msgstr "Glava strani spletišča" - -msgid "manager.setup.pageHeaderDescription" -msgstr "" - -msgid "manager.setup.pressPolicies" -msgstr "2. korak Politike portala" - -msgid "manager.setup.pressSetup" -msgstr "Nastavitev spletišča" - -msgid "manager.setup.pressSetupUpdated" -msgstr "Namestitev vašega spletišča je bila posodobljena." - -msgid "manager.setup.styleSheetInvalid" -msgstr "Napačen format slogovne datoteke. Dovoljeni format je .css." - -msgid "manager.setup.pressTheme" -msgstr "Tema publikacije" - -msgid "manager.setup.contextTitle" -msgstr "Ime publikacije" - -msgid "manager.setup.printIssn" -msgstr "ISSN tiskane izdaje" - -msgid "manager.setup.proofingInstructions" -msgstr "Navodila za korekturo" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "Navodila za korekturo bodo videli korektorji, avtorji, grafični uredniki in uredniki rubrik v procesu urejanja prispevka. Spodaj so privzeta navodila v HTML formatu, ki jih lahko glavni urednik publikacije kadar koli spremeni (HTML ali navadno besedilo)." - -msgid "manager.setup.proofreading" -msgstr "Korektorji" - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Podajte navodila za grafičnega urednika." - -msgid "manager.setup.publicationScheduleDescription" -msgstr "Prispevki se običajno izdajajo skupaj kot del monografske publikacije z lastnim kazalom vsebine. Druga možnost je, da se lahko posamezni prispevki objavijo takoj, ko so končani, tako da se dodajo v kazalo vsebine aktualne izdaje. Na strani O portalu predstavite bralcem princip objavljanja, ki ga bo portal uporabljal in pričakovano frekvenco izhajanja." - -msgid "manager.setup.publisher" -msgstr "Izdajatelj" - -msgid "manager.setup.publisherDescription" -msgstr "Ime organizacije, ki izdaja publikacijo, bo objavljeno na strani O portalu." - -msgid "manager.setup.referenceLinking" -msgstr "Poveži povezave do citirane literature" - -msgid "manager.setup.refLinkInstructions.description" -msgstr "Navodila za grafično oblikovanje povezav za citiranje" - -msgid "manager.setup.restrictMonographAccess" -msgstr "Uporabniki morajo biti registrirani in prijavljeni, da lahko vidijo prosto dostopno vsebino." - -msgid "manager.setup.restrictSiteAccess" -msgstr "Uporabniki morajo biti registrirani in prijavljeni, da lahko vidijo spletno stran publikacije." - -msgid "manager.setup.reviewGuidelines" -msgstr "Navodila zunanjim recenzentom" - -msgid "manager.setup.reviewGuidelinesDescription" -msgstr "Zunanjim recenzentom predstavite kriterije za ocenjevanje primernosti prispevka za objavo v publikaciji, ki naj vključujejo tudi navodila za pripravo učinkovite in uporabne ocene. Recenzenti bodo lahko predstavili komentarje, namenjene avtorjem in urednitkom, kot pa tudi komentarje, namenjene samo urednikom." - -msgid "manager.setup.internalReviewGuidelines" -msgstr "Navodila notranjim recenzentom" - -msgid "manager.setup.internalReviewGuidelinesDescription" -msgstr "Podobno kot pri navodilih zunanjim recenzentom bodo v teh navodilih informacije o ocenjevanju prispevkov za recenzente. Ta navodila so namenjena notranjim recenzentom. Notranjo recenzijo običajno opravijo recenzenti znotraj založbe." - -msgid "manager.setup.reviewOptions" -msgstr "Nastavitve recenzije" - -msgid "manager.setup.reviewOptions.automatedReminders" -msgstr "Samodejni e-poštni opomniki" - -msgid "manager.setup.reviewOptions.automatedRemindersDisabled" -msgstr "Za aktivacijo teh možnosti mora administrator spletišča omogočiti nastavitev scheduled_tasks v nastavitveni datoteki OMP. Za podporo te možnosti so morda potrebne dodatne nastavitve strežnika (ki morda niso na voljo na vseh strežnikih), kot je navedeno v dokumentaciji OMP." - -msgid "manager.setup.reviewOptions.onQuality" -msgstr "Po opravljeni posamezni recenziji bodo uredniki ocenjevali delo recenzenta z oceno od 1 do 5." - -msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" -msgstr "Recenzenti bodo imeli dostop do oddanega prispevka šele po tem, ko bodo sprejeli recenzijo tega prispevka." - -msgid "manager.setup.reviewOptions.reviewerAccess" -msgstr "Dostop za recenzente" - -msgid "manager.setup.reviewOptions.reviewerRatings" -msgstr "Ocene recenzentov" - -msgid "manager.setup.reviewOptions.reviewerReminders" -msgstr "Opomniki recenzentom" - -msgid "manager.setup.reviewPolicy" -msgstr "Recenzijska politika" - -msgid "manager.setup.reviewProcess" -msgstr "Recenzijski proces" - -msgid "manager.setup.reviewProcessDescription" -msgstr "OMP podpira dva modela upravljanja recenzentskega procesa. Priporočen je standardni recenzijski postopek, ki recenzenta skozi postopek vodi korak za korakom in zagotavlja popoln pregled vseh opravljenih recenzij prispevka ter uporablja e-pošto za samodejne opomnike in standardna priporočila za recenzenta (sprejeto; sprejeto s popravki; oddaj v recenziranje; objaviti kje drugje; zavrnjeno; glej komentarje).

          Izberi eno od naslednjih možnosti:" - -msgid "manager.setup.reviewProcessEmail" -msgstr "Recenzija preko e-pošte" - -msgid "manager.setup.reviewProcessStandard" -msgstr "Standardni recenzijski postopek" - -msgid "manager.setup.reviewProcessStandardDescription" -msgstr "Uredniki bodo preko e-pošte izbranim recenzentom poslali naslov in povzetek prispevka skupaj s povabilom, da se prijavijo na spletišče in končajo recenzijo. Recenzenti se prijavijo na spletišče, da potrdijo opravljanje recenzije, prenesejo prispevek, oddajo svoje komentarje in izberejo priporočilo." - -msgid "manager.setup.searchEngineIndexing" -msgstr "Indeksiranje publikacije za iskalnike" - -msgid "manager.setup.searchEngineIndexing.description" -msgstr "Napišite kratek opis publikacije, ki ga bodo iskalniki prikazali, ko bodo to publikacijo pokazali med rezultati iskanja." - -msgid "manager.setup.sectionsAndSectionEditors" -msgstr "Rubrike in uredniki rubrik" - -msgid "manager.setup.sectionsDefaultSectionDescription" -msgstr "(Če rubrike niso definirane, bodo vsi prispevki dodeljeni splošni rubriki \"monografske publikacije\".)" - -msgid "manager.setup.sectionsDescription" -msgstr "Za ustvarjanje ali spreminjanje rubrik publikacije (npr. monografske publikacije, knjižne recenzije, itd.) pojdite na Upravljanje rubrik.

          Avtorji bodo ob oddaji prispevkov za objavo določili ..." - -msgid "manager.setup.securitySettings" -msgstr "Nastavitve varnosti in dostopa" - -msgid "manager.setup.securitySettings.note" -msgstr "Ostale nastavitve varnosti in dostopa lahko določite na straniAccess and Security." - -msgid "manager.setup.selectEditorDescription" -msgstr "Urednik publikacije, ki bo poskrbel za opravljen uredniški postopek." - -msgid "manager.setup.selectSectionDescription" -msgstr "Rubrika publikacije, za katero bo prispevek obravnavan." - -msgid "manager.setup.showGalleyLinksDescription" -msgstr "Vedno pokaži povezavo do celotnega prispevka in opozori na omejen dostop." - -msgid "manager.setup.stepsToPressSite" -msgstr "Pet korakov za postavitev spletne strani publikacije" - -msgid "manager.setup.subjectExamples" -msgstr "(npr. fotosinteza; črne luknje; izrek štirih barv; Bayesova teorija)" - -msgid "manager.setup.subjectKeywordTopic" -msgstr "Ključne besede" - -msgid "manager.setup.subjectProvideExamples" -msgstr "V pomoč avtorjem podajte primere ključnih besed ali vsebin." - -msgid "manager.setup.submissionGuidelines" -msgstr "Navodila za oddajo prispevka" - -msgid "manager.setup.submissionPreparationChecklist" -msgstr "Seznam pogojev za oddajo prispevka" - -msgid "maganer.setup.submissionChecklistItemRequired" -msgstr "Vpišite element seznama." - -msgid "manager.setup.workflow" -msgstr "Potek dela" - -msgid "manager.setup.submissions.description" -msgstr "Navodila avtorjem, avtorske pravice in indeksiranje (vključno z registracijo)." - -msgid "manager.setup.typeExamples" -msgstr "(npr. zgodovinsko raziskovanje; naravni eksperiment; književna analiza; ankete/intervju)" - -msgid "manager.setup.typeMethodApproach" -msgstr "Tip (metoda/pristop)" - -msgid "manager.setup.typeProvideExamples" -msgstr "Podajte primere ustreznih raziskovalnih tipov, metod in pristopov za to področje" - -msgid "manager.setup.useCopyeditors" -msgstr "Lektor bo dodeljen vsakemu posameznemu prispevku." - -msgid "manager.setup.useEditorialReviewBoard" -msgstr "Publikacija bo imela uredniški/recenzijski odbor." - -msgid "manager.setup.useImageTitle" -msgstr "Naslovna slika" - -msgid "manager.setup.useStyleSheet" -msgstr "Slogovna datoteka publikacije" - -msgid "manager.setup.useLayoutEditors" -msgstr "Grafični urednik bo dodeljen, da pripravi datoteke HTML, PDF, itd. za elektronsko izdajo publikacije." - -msgid "manager.setup.useProofreaders" -msgstr "Korektor bo dodeljen, da preveri prelom (skupaj z avtorji) pred objavo publikacije." - -msgid "manager.setup.userRegistration" -msgstr "Registracija uporabnikov" - -msgid "manager.setup.useTextTitle" -msgstr "Naslov" - -msgid "manager.setup.volumePerYear" -msgstr "Število zvezkov na leto" - -msgid "manager.setup.publicationFormat.code" -msgstr "Format" - -msgid "manager.setup.publicationFormat.codeRequired" -msgstr "Format mora biti izbran." - -msgid "manager.setup.publicationFormat.nameRequired" -msgstr "Za ta format morate izbrati ime." - -msgid "manager.setup.publicationFormat.physicalFormat" -msgstr "Ali je ta format v fizični (ne digitalni) obliki?" - -msgid "manager.setup.publicationFormat.inUse" -msgstr "Tega formata publikacije ni mogoče zbrisati, saj ga trenutno uporablja monografska publikacija vaše publikacije." - -msgid "manager.setup.newPublicationFormat" -msgstr "Nov format publikacije" - -msgid "manager.setup.newPublicationFormatDescription" -msgstr "Če želite ustvariti nov format publikacije, izpolnite spodnji obrazec in pritisnite na gumb \"Ustvari\"." - -msgid "manager.setup.genresDescription" -msgstr "Ti žanri se uporabljajo za imenovanje datotek in so vidni v spustnem meniju, ki se pojavi pri nalaganju datotek. Šifra, dodeljena žanru, uporabniku omogoča, da datoteko poveže s celotno knjigo 99Z ali pa z določeno številko poglavja (npr. 02)." - -msgid "manager.setup.reviewProcessEmailDescription" -msgstr "Uredniki pošiljajo recenzentom zahtevo za recenzijo preko e-pošte (s priponko). Recenzenti preko e-pošte odgovorijo urednikom, ali nalogo sprejmejo, preko e-pošte pa pošljejo tudi recenzijo in pripročila. Urednik zabeleži recenzentsko privolitev (ali odklonitev) skupaj s priporočili v prispevek pod zavihkom \"Recenzija\"." - -msgid "manager.setup.genres" -msgstr "Žanri" - -msgid "manager.setup.newGenre" -msgstr "Novi žanr monografske publikacije" - -msgid "manager.setup.newGenreDescription" -msgstr "Če želite ustvariti nov žanr, izpolnite spodnji obrazec in pritisnite na gumb \"Ustvari\"." - -msgid "manager.setup.deleteSelected" -msgstr "Zbriši označeno" - -msgid "manager.setup.restoreDefaults" -msgstr "Obnovi privzete nastavitve" - -msgid "manager.setup.prospectus" -msgstr "Predstavitvena brošura" - -msgid "manager.setup.prospectusDescription" -msgstr "Predstavitvena brošura je dokument, ki ga pripravi založba, da bi avtorjem pomagala opisati njihove prispevke tako, da lahko založba oceni vrednost teh prispevkov. V brošuri je lahko veliko stvari -- od potenciala na trgu do teoretične vrednosti dela --, vendar pa mora založba oblikovati tako brošuro, ki je v skladu z njihovim načrtom za objavljanje." - -msgid "manager.setup.submitToCategories" -msgstr "Dovoli prispevke v to kategorijo" - -msgid "manager.setup.submitToSeries" -msgstr "Dovoli prispevke v to zbirko" - -msgid "manager.setup.issnDescription" -msgstr "ISSN je mednarodna standardna 8-mestna serijska številka publikacije, ki omogoča identifikacijo periodičnih publikacij, tudi elektronskih. Številko ISSN je mogoče pridobiti na uradna stran ISSN. " - -msgid "manager.setup.currentFormats" -msgstr "Trenutni formati" - -msgid "manager.setup.category" -msgstr "Kategorija" - -msgid "manager.setup.categoriesAndSeries" -msgstr "Kategorije in zbirke" - -msgid "manager.setup.categories.description" -msgstr "Ustvarite lahko seznam kategorij za boljšo organizacijo vaših publikacij. Kategorije so skupine, v katere so knjige razvrščene glede na obravnavano tematiko, npr. ekonomija, literatura, poezija, itd. Kategorije so lahko vgnezdene znotraj večjih kategorij, npr. kategorija ekonomija lahko vključuje kategoriji mikroekonomija in makroekonomija. Gostje bodo na portalu lahko iskali in brskali po kategorijah." - -msgid "manager.setup.series.description" -msgstr "Ustvarite lahko zbirke za boljšo organizacijo vaših publikacij. Zbirka je izbor knjig, posvečen določeni temi, ki ga je nekdo (običajno član fakultete) predlagal in sedaj z njim upravlja. Gostje bodo na portalu lahko iskali in brskali po zbirkah." - -msgid "manager.setup.reviewForms" -msgstr "Recenzijski obrazci" - -msgid "manager.setup.roleType" -msgstr "Tip vloge" - -msgid "manager.setup.authorRoles" -msgstr "Vloge avtorjev" - -msgid "manager.setup.managerialRoles" -msgstr "Skrbniške vloge" - -msgid "manager.setup.availableRoles" -msgstr "Razpoložljive vloge" - -msgid "manager.setup.currentRoles" -msgstr "Trenutne vloge" - -msgid "manager.setup.internalReviewRoles" -msgstr "Vloge notranjih recenzentov" - -msgid "manager.setup.masthead" -msgstr "Kolofon" - -msgid "manager.setup.masthead.description" -msgstr "Seznam urednikov, skrbnikov in ostalih posameznikov, povezanih s publikacijo." - -msgid "manager.setup.files" -msgstr "Datoteke" - -msgid "manager.setup.productionTemplates" -msgstr "Predloge produkcije" - -msgid "manager.files.note" -msgstr "Opozorilo: Brskalnik datotek je napredna funkcija, ki omogoča, da se lahko datoteke in mape, povezane s publikacijo, neposredno pregledujejo in urejajo." - -msgid "manager.setup.copyrightNotice.sample" -msgstr "

          predlagani podatki o avtorskih pravicah organizacije Creative Commons

          predlagana politika za spletišča, ki ponujajo odprt dostop

          Avtorji, ki bodo izdajali pri tej založbi, se strinjajo z naslednjimi pogoji:
          1. Avtorji obržijo avtorske pravice in založbi dajo pravico za prvo objavo, delo pa ima hkrati tudi licenco Creative Commons (priznanje avtorstva), ki drugim omogoča, da delo s citiranjem avtorja in prvotne objave pri tej založbi delijo naprej.
          2. Avtorji lahko vstopajo v dodatna ločena pogodbena razmerja za neekskluzivno distribucijo dela, ki je bilo prvotno objavljeno pri tej založbi (npr. za hrambo v repozitoriju institucije ali objavo v knjigi), kar mora biti ob objavi izrecno zapisano.
          3. Avtorjem se dovoli in se jih pri tem podpira, da svoje delo pred objavo in v procesu oddajanja objavijo na spletu (npr. v institucionalnih repozitorijih ali na svoji spletni strani), saj to pripelje do koristnih izmenjav in pa predčasnega in bolj pogostega citiranja dela (Glej Učinek odprtega dostopa).

          Predlagana politika za založbe, ki ponujajo zakasnjeni odprti dostop

          Authors who publish with this press agree to the following terms:
          1. Avtorji, ki bodo izdajali pri tej založbi, se strinjajo z naslednjimi pogoji:
            1. Avtorji obržijo avtorske pravice in založbi dajo pravico za prvo objavo za dobo [določite časovno obdobje], potem ko delo dobi tudi licenco Creative Commons (priznanje avtorstva), ki drugim omogoča, da delo s citiranjem avtorja in prvotne objave pri tej založbi delijo naprej.
            2. Avtorji lahko vstopajo v dodatna ločena pogodbena razmerja za neekskluzivno distribucijo dela, ki je bilo prvotno objavljeno pri tej založbi (npr. za hrambo v repozitoriju institucije ali objavo v knjigi), kar mora biti ob objavi izrecno zapisano.
            3. Avtorjem se dovoli in se jih pri tem podpira, da svoje delo pred objavo in v procesu oddajanja objavijo na spletu (npr. v institucionalnih repozitorijih ali na svoji spletni strani), saj to pripelje do koristnih izmenjav in pa predčasnega in bolj pogostega citiranja dela (Glej Učinek odprtega dostopa).
            " - -msgid "manager.setup.basicEditorialStepsDescription" -msgstr "Koraki: Oddaja prispevka > Recenzija prispevka > Urejanje prispevka > Kazalo.

            Izberi model za obravnavanje uredniškega procesa. (Za imenovanje odgovornega urednika in urednikov zbirke pojdite na Uredniki v Upravljanju publikacije.)" - -msgid "manager.setup.referenceLinkingDescription" -msgstr "

            Če želite omogočiti bralcem, da najdejo dostop do spletnih različic virov, ki jih je avtor uporabil, imate naslednje možnosti.

            1. Dodaj orodje za branje

              Urednik publikacije lahko doda \"Poišči referenco\" med orodja za branje, ki so na voljo poleg publikacije. S tem omogoči bralcu, da skopira naslov citirane literature in nato išče po predizbranih bazah za citirano delo.

            2. Spletne povezave citirane literature

              Grafični urednik lahko doda povezavo do literature, ki je na voljo na spletu , s pomčjo naslednjih navodil (ki jih je možno urediti).

            " - -msgid "manager.publication.library" -msgstr "Arhiv založbe" - -msgid "manager.setup.resetPermissions" -msgstr "Ponastavi dovoljenja monografskih publikacij" - -msgid "manager.setup.resetPermissions.confirm" -msgstr "Ali ste prepričani, da želite ponastaviti dovoljenja, ki so že določena za monografske publikacije?" - -msgid "manager.setup.resetPermissions.description" -msgstr "Izjava o avtorskih pravicah in licenci bo trajno zapisana poleg objavljenih vsebin, saj bo s tem zagotavljala, da se ti podatki ne bodo spreminjali v primeru, da publikacija spremeni politiko novih prispevkov. Za ponastavitev shranjenih dovoljenj, ki so že zapisane poleg objavljenih vsebin, uporabite spodnji gumb." - -msgid "grid.genres.title.short" -msgstr "Komponente" - -msgid "grid.genres.title" -msgstr "Komponente monografskih publikacij" - -msgid "manager.setup.notifications.copyPrimaryContact" -msgstr "Pošlji kopijo glavnega kontakta publikacije, kot je bil določen v nastavitvah portala." - -msgid "grid.series.urlWillBe" -msgstr "URL zbirke bo {$sampleUrl}" - -msgid "grid.series.pathAlphaNumeric" -msgstr "Naslov zbirke mora biti zapisan samo s črkami in številkami." - -msgid "grid.series.pathExists" -msgstr "Ta naslov zbirke že obstaja. Vnesite edinstveno pot." - -msgid "manager.payment.generalOptions" -msgstr "Splošne nastavitve" diff --git a/locale/sl_SI/submission.po b/locale/sl_SI/submission.po deleted file mode 100644 index 3b070b528dd..00000000000 --- a/locale/sl_SI/submission.po +++ /dev/null @@ -1,392 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-11-28T15:10:10-08:00\n" -"PO-Revision-Date: 2019-11-28T15:10:10-08:00\n" -"Language: \n" - -msgid "submission.submit.title" -msgstr "Oddaj monografsko publikacijo" - -msgid "submission.upload.selectComponent" -msgstr "Izberi komponento" - -msgid "submission.title" -msgstr "Naslov knjige" - -msgid "submission.title.tip" -msgstr "Vrsta oddaje je običajno \"slika\", \"besedilo\" ali druga vrsta večpredstavnostne datoteke, vključno s \"programsko opremo\" ali \"interaktivno vsebino\". Izberite vrsto, ki je najbližja naravi vašega prispevka. Primere lahko najdete na http://dublincore.org/documents/2001/04/12/usageguide/generic.shtml#type" - -msgid "submission.select" -msgstr "Izberi prispevek" - -msgid "submission.synopsis" -msgstr "Kratka vsebina" - -msgid "submission.workflowType" -msgstr "Vrsta prispevka" - -msgid "submission.workflowType.description" -msgstr "Monografska publikacija je delo, ki ga je v celoti napisal en ali več avtorjev. Pri zborniku ima vsako poglavje drugega avtorja (v enem od naslednjih korakov je treba navesti podrobnosti o posameznih poglavjih)." - -msgid "submission.workflowType.editedVolume" -msgstr "Zbornik: Vsako poglavje ima svojega avtorja." - -msgid "submission.workflowType.authoredWork" -msgstr "Monografska publikacija: Knjiga ima enega avtorja." - -msgid "submission.monograph" -msgstr "Monografska publikacija" - -msgid "submission.published" -msgstr "Pripravljeno na tisk" - -msgid "submission.fairCopy" -msgstr "Čistopis" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.artwork.permissions" -msgstr "Dovoljenja" - -msgid "submission.chapter" -msgstr "Poglavje" - -msgid "submission.chapters" -msgstr "Poglavja" - -msgid "submission.chaptersDescription" -msgstr "Tu lahko navedete poglavja, zgoraj pa iz seznama sodelavcev izberete sodelavce. Sodelavci bodo do poglavja lahko dostopali med različnimi fazami procesa objave." - -msgid "submission.chapter.addChapter" -msgstr "Dodaj poglavje" - -msgid "submission.chapter.editChapter" -msgstr "Uredi poglavje" - -msgid "submission.copyedit" -msgstr "Lektoriranje" - -msgid "submission.publicationFormats" -msgstr "Formati publikacije" - -msgid "submission.proofs" -msgstr "Korekture" - -msgid "submission.download" -msgstr "Prenesi" - -msgid "submission.sharing" -msgstr "Deli" - -msgid "manuscript.submission" -msgstr "Oddaja rokopisa" - -msgid "submission.round" -msgstr "Krog  {$round}" - -msgid "submissions.queuedReview" -msgstr "V recenziji" - -msgid "manuscript.submissions" -msgstr "Oddaje rokopisa" - -msgid "submission.confirmSubmit" -msgstr "Ste prepričani, da želite založbi oddati rokopis?" - -msgid "submission.metadata" -msgstr "Metapodatki" - -msgid "submission.supportingAgencies" -msgstr "Podporne ustanove" - -msgid "grid.action.addChapter" -msgstr "Ustvari novo poglavje" - -msgid "grid.action.editChapter" -msgstr "Uredi poglavje" - -msgid "grid.action.deleteChapter" -msgstr "Odstrani poglavje" - -msgid "submission.submit" -msgstr "Nov prispevek" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Nov prispevek v" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Nov prispevek" - -msgid "submission.submit.upload" -msgstr "Naloži prispevek" - -msgid "submission.submit.cancelSubmission" -msgstr "Oddajo prispevka lahko dokončate tudi pozneje, in sicer s klikom na Aktivne oddaje na meniju avtorjeve domače strani." - -msgid "submission.submit.selectSeries" -msgstr "Izberi zbirko (izbirno)" - -msgid "author.submit.seriesRequired" -msgstr "Vnesite veljavno zbirko." - -msgid "submission.submit.seriesPosition" -msgstr "Mesto nove zbirke" - -msgid "submission.submit.seriesPosition.description" -msgstr "Primeri: Knjiga 2, letnik 2" - -msgid "submission.submit.form.localeRequired" -msgstr "Izberite jezik prispevka." - -msgid "submission.submit.privacyStatement" -msgstr "Izjava o zasebnosti" - -msgid "submission.submit.contributorRole" -msgstr "Vloga sodelavca" - -msgid "submission.submit.form.authorRequired" -msgstr "Potreben je vsaj en avtor." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "Ime, priimek in e-poštni naslov je obvezen za vsakega avtorja." - -msgid "submission.submit.form.titleRequired" -msgstr "Vnesite naslov svoje monografske publikacije." - -msgid "submission.submit.form.abstractRequired" -msgstr "Vnesite kratko vsebino svoje monografske publikacije." - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Izberite vlogo sodelavca." - -msgid "submission.submit.submissionFile" -msgstr "Datoteka s prispevkom" - -msgid "submission.submit.prepare" -msgstr "Pripravi" - -msgid "submission.submit.catalog" -msgstr "Katalog" - -msgid "submission.submit.metadata" -msgstr "Metapodatki" - -msgid "submission.submit.finishingUp" -msgstr "Končaj" - -msgid "submission.submit.confirmation" -msgstr "Potrdi" - -msgid "submission.submit.nextSteps" -msgstr "Naslednji koraki" - -msgid "submission.submit.coverNote" -msgstr "Spremni dopis za urednika" - -msgid "submission.submit.generalInformation" -msgstr "Splošne informacije" - -msgid "submission.submit.whatNext.description" -msgstr "Založba je bila obveščena o vašem prispevku. Poslali smo vam potrditveno e-pošto za vašo evidenco. Ko urednik zaključi recenzijo vašega prispevka, boste prejeli obvestilo." - -msgid "submission.submit.checklistErrors" -msgstr "Preberite in izberite elemente na seznamu pogojev za oddajo prispevka. Nekateri elementi {$itemsRemaining} niso bili izbrani." - -msgid "submission.submit.placement" -msgstr "Oddaja prispevka" - -msgid "submission.submit.userGroup" -msgstr "Izberi vlogo ..." - -msgid "submission.submit.userGroupDescription" -msgstr "Če želite oddati zbornik, izberite vlogo urednika zbornika." - -msgid "grid.chapters.title" -msgstr "Poglavja" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Odstrani naloženo lektorsko datoteko" - -msgid "publication.catalogEntry" -msgstr "Vnos v katalog" - -msgid "submission.complete" -msgstr "Odobreno" - -msgid "submission.incomplete" -msgstr "Čakanje na odobritev" - -msgid "submission.editCatalogEntry" -msgstr "Vnos" - -msgid "submission.catalogEntry.new" -msgstr "Nov vnos v katalog" - -msgid "submission.catalogEntry.confirm" -msgstr "Dodajte knjigo v javni katalog" - -msgid "submission.catalogEntry.confirm.required" -msgstr "Potrdite, da je prispevek pripravljen za vnos v katalog." - -msgid "submission.catalogEntry.isAvailable" -msgstr "Monografska publikacija je pripravljena za vnos v javni katalog." - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Monografska publikacija" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Katalog" - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Format publikacije" - -msgid "submission.event.metadataPublished" -msgstr "Metapodatki monografske publikacije so odobreni za objavo." - -msgid "submission.event.metadataUnpublished" -msgstr "Metapodatki monografske publikacije niso več obljavljeni." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Format publikacije \"{$publicationFormatName}\" je omogočen." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Format publikacije \"{$publicationFormatName}\" je onemogočen." - -msgid "submission.event.publicationFormatPublished" -msgstr "Format publikacije \"{$publicationFormatName}\" je odobren za objavo." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "Format publikacije \"{$publicationFormatName}\" ni več objavljen." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Metapodatki kataloga so posodobljeni." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Metapodatki formata publikacije \"{$formatName}\" so posodobljeni." - -msgid "submission.event.publicationFormatCreated" -msgstr "Format publikacije \"{$formatName}\" je ustvarjen." - -msgid "submission.event.publicationFormatRemoved" -msgstr "Format publikacije \"{$formatName}\" je odstranjen." - -msgid "submission.submit.titleAndSummary" -msgstr "Naslov in povzetek" - -msgid "workflow.review.externalReview" -msgstr "Zunanja recenzija" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Pošlji na zunanjo recenzijo" - -msgid "submission.upload.fileContents" -msgstr "Komponenta prispevka" - -msgid "submission.dependentFiles" -msgstr "Povezane datoteke" - -msgid "submission.metadataDescription" -msgstr "Te specifikacije temeljijo na metapodatkih po mednarodnem standardu Dublin Core, ki se uporablja za opis vsebine publikacij." - -msgid "section.any" -msgstr "Zbirke" - -msgid "submission.publication" -msgstr "Objava" - -msgid "publication.status.published" -msgstr "Objavljeno" - -msgid "submission.status.scheduled" -msgstr "Načrtovano" - -msgid "publication.status.unscheduled" -msgstr "Ni načrtovano" - -msgid "submission.publications" -msgstr "Objave" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Leto avtorskih pravic bo določeno avtomatično, ko bo številka objavljena." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "" -"Leto avtorskih pravic bo ob objavi avtomatično nastavljeno na datum izdaje." - -msgid "publication.datePublished" -msgstr "Datum objave" - -msgid "publication.editDisabled" -msgstr "Ta verzija je bila objavljena in je ni mogoče spremeniti." - -msgid "publication.event.published" -msgstr "Prispevek je bil objavljen." - -msgid "publication.event.scheduled" -msgstr "Prispevek je bil načrtovan za objavo." - -msgid "publication.event.unpublished" -msgstr "Prispevek ni več objavljen." - -msgid "publication.event.versionPublished" -msgstr "Nova verzija je bila objavljena." - -msgid "publication.event.versionScheduled" -msgstr "Nova verzija je bila načrtovana za objavo." - -msgid "publication.event.versionUnpublished" -msgstr "Nova verzija ni več objavljena." - -msgid "publication.invalidSubmission" -msgstr "Prispevka za objavo ni bilo mogoče najti." - -msgid "publication.publish" -msgstr "Objavi" - -msgid "publication.publish.requirements" -msgstr "Spodnje zahteve morajo biti izpolnjene pred objavo." - -msgid "publication.required.declined" -msgstr "Zavrnjen prispevek ne more biti objavljen." - -msgid "publication.required.reviewStage" -msgstr "" -"Prispevek mora biti v fazi Lektoriranje ali Produkcija preden je lahko " -"objavljen." - -msgid "submission.license.description" -msgstr "" -"Licenca bo ob objavi avtomatično nastavljena na {$licenseName}." - -msgid "submission.copyrightHolder.description" -msgstr "" -"Avtorske pravice bodo ob objavi avtomatično nastavljene na {$copyright}." - -msgid "submission.copyrightOther.description" -msgstr "Dodeli avtorske pravice za objavljene članke naslednji osebi." - -msgid "publication.unpublish" -msgstr "Umakni objavo" - -msgid "publication.unpublish.confirm" -msgstr "Ste prepričani, da želite umakniti to objavo?" - -msgid "publication.unschedule.confirm" -msgstr "Ste prepričani, da ne želite načrtovati te objave?" - -msgid "publication.version.details" -msgstr "Podrobnosti objave za verzijo {$version}" - -msgid "submission.queries.production" -msgstr "Produkcijska diskusija" - diff --git a/locale/sv/admin.po b/locale/sv/admin.po new file mode 100644 index 00000000000..5a0dde5acbd --- /dev/null +++ b/locale/sv/admin.po @@ -0,0 +1,169 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Pressar på den här webbplatsen" + +msgid "admin.settings.appearance.success" +msgstr "Webbplatsens utseende har uppdaterats." + +msgid "admin.settings.config.success" +msgstr "Webbplatsens inställningar har uppdaterats." + +msgid "admin.settings.info.success" +msgstr "Informationen om webbplatsen har uppdaterats." + +msgid "admin.settings.redirect" +msgstr "Omdirigering av press" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Anrop till huvudsidan kommer att dirigeras om till den valda pressen. Detta " +"kan till exempel vara lämpligt om webbplatsen endast hyser en press." + +msgid "admin.settings.noPressRedirect" +msgstr "Omdirigera ej" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Detta kommer vara det förinställda språket för installationen och för alla " +"hysta pressar." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Välj alla språk/regioner som ska finnas på sidan. De valda språken/" +"regionerna kommer kunna användas av sidans alla pressar, och kommer också " +"finnas i språkmenyn (som kan tas bort på sidor specifika för en viss press) " +"i den publika vyn. Om bara ett språk/region väljs kommer inte språkmenyn " +"vara synlig, och ytterligare språkinställningar kommer inte vara " +"tillgängliga för pressarna." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Markerade språk/regioner kan vara ofullständiga." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Är du säker på att du vill avinstallera detta språk/region? Detta kan " +"påverka pressar som för tillfället använder språket/regionen." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Välj ytterligare språk/regioner för installation i systemet. Språk/regioner " +"måste installeras innan de kan användas av pressar på sidan. För " +"instruktioner om hur ytterligare språk läggs till, se OMP-dokumentationen." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Är du säker på att du vill avaktivera detta språk? Det kan påverka pressar " +"som använder språket." + +msgid "admin.systemVersion" +msgstr "OMP-version" + +msgid "admin.systemConfiguration" +msgstr "OMP-konfiguration" + +msgid "admin.presses.pressSettings" +msgstr "Pressinställningar" + +msgid "admin.presses.noneCreated" +msgstr "Inga pressar har skapats." + +msgid "admin.contexts.create" +msgstr "Skapa press" + +msgid "admin.contexts.form.titleRequired" +msgstr "En titel krävs." + +msgid "admin.contexts.form.pathRequired" +msgstr "En sökväg krävs." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Sökvägen får bara innehålla bokstäver, nummer och tecknen _ och -. Den måste " +"börja och sluta med en bokstav eller ett nummer." + +msgid "admin.contexts.form.pathExists" +msgstr "Den valda sökvägen används redan av en annan press." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "Det primära språket måste vara ett av språken som stöds av pressen." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} har skapats." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} har redigerats." + +msgid "admin.contexts.contextDescription" +msgstr "Beskrivning av pressen" + +msgid "admin.presses.addPress" +msgstr "Lägg till press" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

            OBS\n" +"

            Systemet kunde inte skriva över konfigurationsfilen automatiskt. För att " +"göra ändringarna måste du öppna config.inc.php i en lämplig " +"texthanterare och byta ut dess innehåll med innehållet i textfältet " +"nedan.

            " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Välj vilka pressar som ska ges tillstånd att göra massutskick av e-post. " +"Funktionen gör pressansvarig möjlighet att skicka e-post till alla " +"registrerade användare vid respektive press.

            Missbruk av denna " +"funktion kan innebära brott mot anti-spam-lagstiftning i vissa " +"jurisdiktioner och kan resultera i att er servers e-post blir blockerad som " +"spam. Sök teknisk rådgivning och kontakta de pressansvariga för att se till " +"att funktionen används korrekt innan den aktiveras.

            Ytterligare " +"restriktioner för denna funktion kan aktiveras för varje press genom att gå " +"till dess inställningsguide i listan över Pressar på den här webbplatsen." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Pressansvarig kommer inte kunna göra massutskick till någon av rollerna " +"nedan. Använd denna inställning för att begränsa eventuellt missbruk av " +"massutskicksfunktionen. Det kan exempelvis vara säkrare att stänga av " +"massutskick till läsare, författare, eller andra stora grupper som inte har " +"medgivit samtycke att ta emot sådana utskick.

            Massutskicksfunktionen " +"kan avaktiveras helt för denna press under Admin >Webbplatsinställningar." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Massutskicksfunktionen har avaktiverats för denna press. Aktivera funktionen " +"under Admin >Webbplatsinställningar." + +msgid "admin.siteManagement.description" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +#, fuzzy +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Använd siten som plattform för alla tidskrifter." diff --git a/locale/sv/author.po b/locale/sv/author.po new file mode 100644 index 00000000000..52b42c61f66 --- /dev/null +++ b/locale/sv/author.po @@ -0,0 +1,19 @@ +# Magnus Annemark , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-02-10 13:26+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "author.submit.notAccepting" +msgstr "Pressen tar inte emot bidrag för tillfället." + +msgid "author.submit" +msgstr "Nytt bidrag" diff --git a/locale/sv/default.po b/locale/sv/default.po new file mode 100644 index 00000000000..bcd5d6f7b51 --- /dev/null +++ b/locale/sv/default.po @@ -0,0 +1,200 @@ +# Magnus Annemark , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-07 18:10+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish " +"\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "default.genres.appendix" +msgstr "Bilaga" + +msgid "default.genres.bibliography" +msgstr "Bibliografi" + +msgid "default.genres.manuscript" +msgstr "Bokmanuskript" + +msgid "default.genres.chapter" +msgstr "Kapitelmanuskript" + +msgid "default.genres.glossary" +msgstr "Ordlista" + +msgid "default.genres.index" +msgstr "Index" + +msgid "default.genres.preface" +msgstr "Förord" + +msgid "default.genres.prospectus" +msgstr "Prospekt" + +msgid "default.genres.table" +msgstr "Tabell" + +msgid "default.genres.figure" +msgstr "Figur" + +msgid "default.genres.photo" +msgstr "Fotografi" + +msgid "default.genres.illustration" +msgstr "Illustration" + +msgid "default.genres.other" +msgstr "Övrigt" + +msgid "default.groups.name.manager" +msgstr "Föreståndare" + +msgid "default.groups.plural.manager" +msgstr "Föreståndare" + +msgid "default.groups.abbrev.manager" +msgstr "PM" + +msgid "default.groups.name.editor" +msgstr "Redaktör" + +msgid "default.groups.plural.editor" +msgstr "Redaktörer" + +msgid "default.groups.abbrev.editor" +msgstr "Red" + +msgid "default.groups.name.sectionEditor" +msgstr "Redaktör för serie" + +msgid "default.groups.plural.sectionEditor" +msgstr "Redaktörer för serier" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "AcqE" + +msgid "default.groups.name.subscriptionManager" +msgstr "Prenumerationsansvarig" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Prenumerationsansvariga" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "SubM" + +msgid "default.groups.name.chapterAuthor" +msgstr "Kapitelförfattare" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Kapitelförfattare" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "KF" + +msgid "default.groups.name.volumeEditor" +msgstr "Redaktör" + +msgid "default.groups.plural.volumeEditor" +msgstr "Redaktörer" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "Red." + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" +"

            Bidrag måste leva upp till följande krav.

            • Detta bidrag " +"uppfyller kraven i Riktlinjer för " +"författare.
            • Detta bidrag har inte publicerats tidigare, och är " +"inte aktuellt för publicering hos en annan utgivare.
            • Alla referenser " +"har kontrollerats.
            • Alla tabeller och bilder har numrerats och märkts " +"upp.
            • Tillstånd för att publicera alla bilder, dataset och övrigt " +"material har inhämtats.
            " + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

            De namn och e-postadresser som används på den här pressens webbplats " +"kommer endast att användas för pressens arbete och inte göras tillgängliga " +"för något annat syfte eller till tredje part.

            " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Den här pressen gör sitt innehåll fritt tillgängligt omedelbart vid " +"publicering enligt open access-principen om att det främjar ett ökat " +"kunskapsutbyte världen över om forskning är fritt tillgänglig." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Vi uppmuntrar våra läsare att registrera sig för att få aviseringar från den " +"här pressen. Använd Registrera dig-länken överst på pressens webbsida. Genom att " +"registrera sig där kan du som läsare få ett e-postmeddelande med " +"innehållsförteckning för varje nytt bok som publiceras. Listan gör också att " +"pressen kan peka på ett visst läsarunderlag. Se pressens Integritetspolicy, som försäkrar dig som läsare att ditt namn eller e-" +"postadress inte kommer användas för andra syften." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Är du intresserad av att skicka in ett bidrag till den här pressen? Då " +"rekommenderar vi att du läser igenom Om pressen-sidan för att få en uppfattning om pressens " +"sektionspolicyer, samt Riktlinjer för författare. För att skicka " +"in ett bidrag måste du som författare registrera dig hos pressen. Om du redan har ett konto " +"kan du bara logga in och påbörja " +"processen, som består av fem steg." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Vi uppmuntrar bibliotekarier vid forskningsbibliotek att lista den här " +"pressen i sitt biblioteks bestånd av elektroniska böcker. Det kan också vara " +"värt att notera att den här pressens publiceringssystem, som utgör fri och " +"öppen programvara, är ett passande system för bibliotek att drifta för sina " +"forskare och de tidskrifter de arbetar med (se Open Journal Systems)." + +msgid "default.groups.name.externalReviewer" +msgstr "Extern granskare" + +msgid "default.groups.plural.externalReviewer" +msgstr "Externa granskare" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "EG" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Texten följer de stilistiska och bibliografiska kraven som specificeras i " +#~ "Riktlinjer för författare, som hittas under Om " +#~ "pressen." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Texten har enkelt radavstånd; fonten är 12 punkter; använder kursivering " +#~ "istället för understrykning (förutom vid URL-adresser); alla " +#~ "illustrationer, figurer och tabeller är placerade på lämpliga platser i " +#~ "texten, inte sist i dokumentet." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "I förekommande fall har URL för referenser bifogats." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Bidragsfilen är i Microsoft Word-, RTF-, eller OpenDocument-filformat." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Bidraget är inte publicerat sedan tidigare, det övervägs inte heller för " +#~ "publicering av annat förlag (eller så har en förklaring bifogats som en " +#~ "kommentar till redaktören)." diff --git a/locale/sv/editor.po b/locale/sv/editor.po new file mode 100644 index 00000000000..cfa9a2bdbe8 --- /dev/null +++ b/locale/sv/editor.po @@ -0,0 +1,200 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-11 11:28+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Bidragsarkiv" + +msgid "editor.monograph.cancelReview" +msgstr "Avbryt förfrågan" + +msgid "editor.monograph.clearReview" +msgstr "Rensa granskare" + +msgid "editor.monograph.enterRecommendation" +msgstr "Ange rekommendation" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Ange rekommendation för granskare" + +msgid "editor.monograph.recommendation" +msgstr "Rekommendation" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "Välj en granskare ovan och tryck 'Välj granskare' för att fortsätta." + +msgid "editor.monograph.replaceReviewer" +msgstr "Ersätt granskare" + +msgid "editor.monograph.editorToEnter" +msgstr "Redaktör anger rekommendation/kommentarer till granskaren" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Ladda upp granskning" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Granskningsalternativ" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Korrekturläsningsfiler" + +msgid "editor.monograph.internalReview" +msgstr "Påbörja intern granskning" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Välj filer nedan som ska skickas vidare till det interna granskningssteget." + +msgid "editor.monograph.externalReview" +msgstr "Påbörja extern granskning" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Välja slutgiltiga utkastfiler" + +msgid "editor.monograph.final.currentFiles" +msgstr "Aktuella slutgiltiga utkastfiler" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Aktuella filer" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Meddelande till användaren" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Åtgärder för bidrag" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Allmänna åtgärder och alternativ för bidrag." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Åtgärder för sektion" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Alternativ för en given sektion, exempelvis uppladdning av filer eller " +"användarhantering." + +msgid "editor.monograph.legend.itemActions" +msgstr "Åtgärder för objekt" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Åtgärder och alternativ för en enskild fil." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Visa och hantera bidragets katalogpost, inklusive metadata och " +"publikationsformat" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Visa och hantera bidragets metadata, anteckningar, meddelanden, och historik" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Visa och hantera detta bidrags deltagare: författare, redaktörer, " +"formgivare, etc." + +msgid "editor.monograph.legend.add" +msgstr "Ladda upp en fil till sektionen" + +msgid "editor.monograph.legend.add_user" +msgstr "Lägg till en användare till sektionen" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Visa objektets inställningar, t.ex. information och borttagningsmöjligheter" + +msgid "editor.monograph.legend.more_info" +msgstr "" +"Ytterligare information: anteckningar, meddelandealternativ, och historik" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Filinformation: anteckningar, meddelandealternativ, och historik (Inga " +"anteckningar tillagda ännu)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Filinformation: anteckningar, meddelandealternativ, och historik " +"(Anteckningar finns)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Filinformation: anteckningar, meddelandealternativ, och historik (Nya " +"anteckningar finns)" + +msgid "editor.monograph.legend.edit" +msgstr "Redigera objekt" + +msgid "editor.monograph.legend.delete" +msgstr "Ta bort objekt" + +msgid "editor.monograph.legend.in_progress" +msgstr "Åtgärd pågår eller ännu ej avslutad" + +msgid "editor.monograph.legend.complete" +msgstr "Åtgärd avslutad" + +msgid "editor.monograph.legend.uploaded" +msgstr "Fil uppladdad av rollen i tabellöversiktens titel" + +msgid "editor.submission.introduction" +msgstr "" +"Under bidrag ska redaktören, efter att ha granskat de inskickade filerna, " +"välja en åtgärd (vilket inkluderar besked till författaren): Skicka till " +"intern granskning; Skicka till extern granskning; Acceptera bidrag; eller " +"Avslå bidrag (bidraget arkiveras)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Renskrift" + +msgid "editor.monograph.proofs" +msgstr "Korrekturer" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Godkännande och publicering" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Olika publikationsformat, som t.ex. inbunden, limmad och digital, kan laddas " +"upp i sektionen Publikationsformat nedan. Du kan använda rutnätet för " +"publikationsformat nedan som en checklista för vad som fortfarande behöver " +"åtgärdas innan publikationsformation kan publiceras." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Lägg till publiceringsformat (t.ex. digital, paperback) som ska sättas av " +"layoutredaktören. Korrekturer och katalogpost för formatet måste kontrollers " +"innan det kan publiceras." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Ange villkor för nedladdning" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Ange villkor" + +msgid "editor.monograph.proof.addNote" +msgstr "Lägg till svar" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Filer som redan har laddats upp till de olika bidragsstegen kan läggas till " +"som korrekturfiler genom att kryssa i \"Inkludera\" nedan och därefter Sök. " +"Alla tillgängliga filer kommer listas och kan väljas som korrektur." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"ID:t {$publicIdentifier}' är redan angivet för ett annat objekt av samma " +"typ. Välj ett unikt ID för objekt av samma typ i din press." + +msgid "editor.submissions.assignedTo" +msgstr "Tilldelad redaktör" diff --git a/locale/sv/emails.po b/locale/sv/emails.po new file mode 100644 index 00000000000..3a44b3c9b37 --- /dev/null +++ b/locale/sv/emails.po @@ -0,0 +1,182 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "" + +msgid "emails.passwordResetConfirm.body" +msgstr "" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "" + +msgid "emails.userRegister.body" +msgstr "" + +msgid "emails.userValidateContext.subject" +msgstr "" + +msgid "emails.userValidateContext.body" +msgstr "" + +msgid "emails.userValidateSite.subject" +msgstr "" + +msgid "emails.userValidateSite.body" +msgstr "" + +msgid "emails.reviewerRegister.subject" +msgstr "" + +msgid "emails.reviewerRegister.body" +msgstr "" + +msgid "emails.editorAssign.subject" +msgstr "" + +msgid "emails.editorAssign.body" +msgstr "" + +msgid "emails.reviewRequest.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" + +msgid "emails.reviewCancel.subject" +msgstr "" + +msgid "emails.reviewCancel.body" +msgstr "" + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "" + +msgid "emails.reviewReinstate.body" +msgstr "" + +msgid "emails.reviewDecline.subject" +msgstr "" + +msgid "emails.reviewDecline.body" +msgstr "" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" + +msgid "emails.editorDecisionAccept.subject" +msgstr "" + +msgid "emails.editorDecisionAccept.body" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" + +msgid "emails.layoutRequest.subject" +msgstr "" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" + +msgid "emails.layoutComplete.subject" +msgstr "" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" + +msgid "emails.indexRequest.subject" +msgstr "" + +msgid "emails.indexRequest.body" +msgstr "" + +msgid "emails.indexComplete.subject" +msgstr "" + +msgid "emails.indexComplete.body" +msgstr "" + +msgid "emails.emailLink.subject" +msgstr "" + +msgid "emails.emailLink.body" +msgstr "" + +msgid "emails.emailLink.description" +msgstr "" + +msgid "emails.notifySubmission.subject" +msgstr "" + +msgid "emails.notifySubmission.body" +msgstr "" + +msgid "emails.notifySubmission.description" +msgstr "" + +msgid "emails.notifyFile.subject" +msgstr "" + +msgid "emails.notifyFile.body" +msgstr "" + +msgid "emails.notifyFile.description" +msgstr "" + +msgid "emails.statisticsReportNotification.subject" +msgstr "" + +msgid "emails.statisticsReportNotification.body" +msgstr "" + +msgid "emails.announcement.subject" +msgstr "" + +msgid "emails.announcement.body" +msgstr "" diff --git a/locale/sv/locale.po b/locale/sv/locale.po new file mode 100644 index 00000000000..b7670fe6e34 --- /dev/null +++ b/locale/sv/locale.po @@ -0,0 +1,1542 @@ +# Magnus Annemark , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-07 18:10+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish " +"\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "common.payments" +msgstr "Betalningar" + +msgid "monograph.audience" +msgstr "Publik" + +msgid "monograph.audience.success" +msgstr "Publikinställningarna har uppdaterats." + +msgid "monograph.coverImage" +msgstr "Omslag" + +msgid "monograph.audience.rangeQualifier" +msgstr "Kvalificering av publikintervallet" + +msgid "monograph.audience.rangeFrom" +msgstr "Publikintervall (från)" + +msgid "monograph.audience.rangeTo" +msgstr "Publikintervall (till)" + +msgid "monograph.audience.rangeExact" +msgstr "Publikintervall (exakt)" + +msgid "monograph.languages" +msgstr "Språk (engelska, franska, spanska)" + +msgid "monograph.publicationFormats" +msgstr "Publikationsformat" + +msgid "monograph.publicationFormat" +msgstr "Format" + +msgid "monograph.publicationFormatDetails" +msgstr "Detaljer om det tillgängliga publikationsformatet: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Detaljer om denna publikation" + +msgid "monograph.carousel.publicationFormats" +msgstr "Format:" + +msgid "monograph.type" +msgstr "Typ av bidrag" + +msgid "submission.pageProofs" +msgstr "Korrektur" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Layoutredaktören laddar upp filerna som är klara för publicering här. Använd " +"+Assign för att välja författare och andra för korrekturläsning." + +msgid "monograph.task.addNote" +msgstr "Lägg till i uppgift" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Open Access" + +msgid "monograph.publicationFormat.imprint" +msgstr "Imprint (förlagsetikett)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Sidantal" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Produktens sammansättning" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Detaljer (ej obligatoriskt)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Identifikatorer" + +msgid "monograph.publicationFormat.price" +msgstr "Pris" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Ange pris (obligatoriskt)." + +msgid "monograph.publicationFormat.priceType" +msgstr "Pristyp" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Rabattprocent, om tillämpligt" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Produktens tillgänglighet" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Returindikator" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Digital information" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Fysiska dimensioner" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Filstorlek i MB" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Mata in din egen filstorlek?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Höjd" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Tjocklek" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Vikt" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Bredd" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Tillverkningsland" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Digitalt tekniskt skydd" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Region för distribution" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Beskattningsprocent" + +msgid "monograph.publicationFormat.taxType" +msgstr "Typ av beskattning" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Inkludera metadatan för detta publikationsformat i katalogposten för denna " +"bok." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Marknader och priser saknas." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Identifikationskod saknas." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Vissa metadatafält saknas." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

            Det valda publikationsformatet existerar inte längre i denna monografi." + +msgid "monograph.publicationFormat.openTab" +msgstr "Öppna fliken för publikationsformat." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Publikationsformat" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Ett namn krävs." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Ett giltigt pris krävs." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Formatdetaljer" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Fysiskt format" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Detta format är tillgängligt på en separat webbsida" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL till externt material" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "Ett 13-siffrigt ISBN, exempelvis 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "Ett 10-siffrigt ISBN, exempelvis 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Ett monografi-id krävs." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Ett publikationsformat måste väljas." + +msgid "grid.catalogEntry.availability" +msgstr "Tillgänglighet" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Tillgänglig" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Ej tillgänglig" + +msgid "grid.catalogEntry.proof" +msgstr "Korrektur" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Godkänn format" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

            Godkänn metadatan för detta format. Metadata kan kontrolleras genom " +"katalogposten.

            " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

            Ange att formatets metadata inte har godkänts.

            " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Formatets tillgänglighet" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

            Gör detta format öppet tillgängligt för läsare. Nedladdningsbara " +"filer visas i bokens katalogpost.

            " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

            Gör detta format stängt för läsaren. Nedladdningsbara filer " +"kommer inte vara synliga i bokens katalogpost.

            " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Katalogpost ej godkänd." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Format finns ej i katalogpost." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Korrektur ej godkänd." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Godkänd" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Inväntar godkännande" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Angiven filstorlek krävs." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "En tillgänglighetskod för produkten krävs." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Sammansättningskod för produkten måste anges." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Kodvärde" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "ONIX-kodtyp" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Identifikationskod krävs." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Det krävs ett värde." + +msgid "grid.catalogEntry.salesRights" +msgstr "Försäljningsrättigheter" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Kodvärde" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Typ av försäljningsrättigheter" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Resten av världen?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Kryssa i för att använda försäljningsrättigheterna för hela ditt format. " +"Länder och regioner behöver inte anges i detta fall." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Det finns redan en ROW-försäljningstyp (resten av världen) definierad för " +"detta publikationsformat." + +msgid "grid.catalogEntry.countries" +msgstr "Länder" + +msgid "grid.catalogEntry.regions" +msgstr "Regioner" + +msgid "grid.catalogEntry.included" +msgstr "Inkluderad" + +msgid "grid.catalogEntry.excluded" +msgstr "Exkluderad" + +msgid "grid.catalogEntry.markets" +msgstr "Marknadsområde" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Område" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Publiceringsdatum" + +msgid "grid.catalogEntry.roleRequired" +msgstr "En representant-roll krävs." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Ett datumformat krävs." + +msgid "grid.catalogEntry.dateValue" +msgstr "Datum" + +msgid "grid.catalogEntry.dateRole" +msgstr "Roll" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Datumformat" + +msgid "grid.catalogEntry.dateRequired" +msgstr "Ett datum krävs och värdet måste matcha det valda datumformatet." + +msgid "grid.catalogEntry.representatives" +msgstr "Representanter" + +msgid "grid.catalogEntry.representativeType" +msgstr "Typ av representant" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Agenter" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Leverantörer" + +msgid "grid.catalogEntry.agent" +msgstr "Agent" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Du kan välja en agent som representerar dig i det definierade området. Det " +"är ej obligatoriskt." + +msgid "grid.catalogEntry.supplier" +msgstr "Leverantör" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Välj en roll:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Roll" + +msgid "grid.catalogEntry.representativeName" +msgstr "Namn" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Telefon" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "E-mail" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Webbsida" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Representant-ID" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Typ av representant-ID (GLN rekommenderas)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Lämna denna del tom om du levererar dina egna tjänster till dina kunder." + +msgid "grid.action.addRepresentative" +msgstr "Lägg till representant" + +msgid "grid.action.editRepresentative" +msgstr "Redigera representant" + +msgid "grid.action.deleteRepresentative" +msgstr "Ta bort representant" + +msgid "spotlight" +msgstr "Spotlight" + +msgid "spotlight.spotlights" +msgstr "Spotlights" + +msgid "spotlight.noneExist" +msgstr "Det finns inga aktuella spotlights." + +msgid "spotlight.title.homePage" +msgstr "I spotlight" + +msgid "spotlight.author" +msgstr "Författare, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Spotlight-element" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Hemsida" + +msgid "grid.content.spotlights.form.location" +msgstr "Plats för spotlight" + +msgid "grid.content.spotlights.form.item" +msgstr "Ange spotlight-titeln (autocomplete)" + +msgid "grid.content.spotlights.form.title" +msgstr "Spotlight-titel" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Bok" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Ett objekt krävs." + +msgid "grid.content.spotlights.titleRequired" +msgstr "En spotlight-titel krävs." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Välj plats för denna spotlight." + +msgid "grid.action.editSpotlight" +msgstr "Redigera spotlight" + +msgid "grid.action.deleteSpotlight" +msgstr "Ta bort spotlight" + +msgid "grid.action.addSpotlight" +msgstr "Lägg till spotlight" + +msgid "manager.series.open" +msgstr "Öppna bidrag" + +msgid "manager.series.indexed" +msgstr "Indexerad" + +msgid "grid.libraryFiles.column.files" +msgstr "Filer" + +msgid "grid.action.catalogEntry" +msgstr "Visa katalogpost" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Formatet visas i katalogposten" + +msgid "grid.action.editFormat" +msgstr "Redigera detta format" + +msgid "grid.action.deleteFormat" +msgstr "Ta bort detta format" + +msgid "grid.action.addFormat" +msgstr "Lägg till publikationsformat" + +msgid "grid.action.approveProof" +msgstr "Godkänn korrekturen för indexering och inkludering i katalogen" + +msgid "grid.action.pageProofApproved" +msgstr "Korrekturfilen är färdig för publicering" + +msgid "grid.action.newCatalogEntry" +msgstr "Ny katalogpost" + +msgid "grid.action.publicCatalog" +msgstr "Visa detta objekt i katalogen" + +msgid "grid.action.feature" +msgstr "Koppla på funktionsdisplayen" + +msgid "grid.action.featureMonograph" +msgstr "Visa i katalogkarusellen" + +msgid "grid.action.releaseMonograph" +msgstr "Markera detta bidrag som en 'ny utgivning'" + +msgid "grid.action.manageCategories" +msgstr "Konfigurera kategorier" + +msgid "grid.action.manageSeries" +msgstr "Konfigurera serier" + +msgid "grid.action.addCode" +msgstr "Lägg till kod" + +msgid "grid.action.editCode" +msgstr "Redigera kod" + +msgid "grid.action.deleteCode" +msgstr "Ta bort kod" + +msgid "grid.action.addRights" +msgstr "Ange försäljningsrättigheter" + +msgid "grid.action.editRights" +msgstr "Redigera dessa rättigheter" + +msgid "grid.action.deleteRights" +msgstr "Ta bort dessa rättigheter" + +msgid "grid.action.addMarket" +msgstr "Lägg till marknad" + +msgid "grid.action.editMarket" +msgstr "Redigera marknad" + +msgid "grid.action.deleteMarket" +msgstr "Ta bort marknad" + +msgid "grid.action.addDate" +msgstr "Lägg till publiceringsdatum" + +msgid "grid.action.editDate" +msgstr "Redigera datum" + +msgid "grid.action.deleteDate" +msgstr "Ta bort datum" + +msgid "grid.action.createContext" +msgstr "Skapa en ny press" + +msgid "grid.action.publicationFormatTab" +msgstr "Visa fliken med publikationsformat" + +msgid "grid.action.moreAnnouncements" +msgstr "Gå till meddelanden" + +msgid "grid.action.submissionEmail" +msgstr "Tryck för att läsa detta e-mail" + +msgid "grid.action.approveProofs" +msgstr "Visa korrekturer" + +msgid "grid.action.proofApproved" +msgstr "Formatet har gått igenom korrektur" + +msgid "grid.action.availableRepresentation" +msgstr "Godkänn/avslå detta format" + +msgid "grid.action.formatAvailable" +msgstr "Stäng eller öppna tillgängligheten för detta format" + +msgid "grid.reviewAttachments.add" +msgstr "Lägg till bilaga till granskning" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Tillgängliga filer" + +msgid "series.series" +msgstr "Serier" + +msgid "series.featured.description" +msgstr "Serien kommer visas i huvudmenyn" + +msgid "series.path" +msgstr "Sökväg" + +msgid "catalog.manage" +msgstr "Kataloghantering" + +msgid "catalog.manage.newReleases" +msgstr "Nya utgivningar" + +msgid "catalog.manage.category" +msgstr "Kategori" + +msgid "catalog.manage.series" +msgstr "Serier" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Ange ett giltigt ISSN." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Online- och print-ISSN får inte matcha." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Online-ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "Print-ISSN" + +msgid "catalog.selectSeries" +msgstr "Välj serie" + +msgid "catalog.selectCategory" +msgstr "Välj kategori" + +msgid "catalog.manage.homepageDescription" +msgstr "" + +msgid "catalog.manage.categoryDescription" +msgstr "" + +msgid "catalog.manage.seriesDescription" +msgstr "" + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Karusell" + +msgid "catalog.manage.newRelease" +msgstr "Utgivning" + +msgid "catalog.manage.manageSeries" +msgstr "Hantera serier" + +msgid "catalog.manage.manageCategories" +msgstr "Hantera kategorier" + +msgid "catalog.manage.noMonographs" +msgstr "Det finns inga böcker tilldelade." + +msgid "catalog.manage.featured" +msgstr "" + +msgid "catalog.manage.categoryFeatured" +msgstr "" + +msgid "catalog.manage.seriesFeatured" +msgstr "" + +msgid "catalog.manage.featuredSuccess" +msgstr "" + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "" + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Boken är markerad som en ny utgivning." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Boken är avmarkerad som ny release." + +msgid "catalog.manage.feature.newRelease" +msgstr "Ny utgivning" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Ny utgivning i kategori" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Ny utgivning i serie" + +msgid "catalog.manage.nonOrderable" +msgstr "" + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Sök efter titel och författare" + +msgid "catalog.manage.isFeatured" +msgstr "" + +msgid "catalog.manage.isNotFeatured" +msgstr "" + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Denna boken är markerad som ny utgivning. Avmarkera den som ny utgivning." + +msgid "catalog.manage.isNotNewRelease" +msgstr "Denna bok är inte en ny utgivning. Markera den som ny utgivning." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Inga bidrag som ska läggas till i katalogen har blivit valda." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Ett eller flera bidrag kunde ej hittas." + +msgid "catalog.manage.findSubmissions" +msgstr "Hitta böcker att lägga till i katalogen" + +msgid "catalog.noTitles" +msgstr "Inga titlar har publicerats ännu." + +msgid "catalog.noTitlesNew" +msgstr "Inga nya utgivningar är tillgängliga för tillfället." + +msgid "catalog.noTitlesSearch" +msgstr "Inga titlar matchar din sökfråga \"{$searchQuery}\"." + +msgid "catalog.feature" +msgstr "" + +msgid "catalog.featured" +msgstr "" + +msgid "catalog.featuredBooks" +msgstr "" + +msgid "catalog.foundTitleSearch" +msgstr "En titel matchade ditt sökord \"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "{$number} titlar hittades för sökfrågan \"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Alla böcker" + +msgid "catalog.newReleases" +msgstr "Nya utgivningar" + +msgid "catalog.dateAdded" +msgstr "Tillagd {$dateAdded}" + +msgid "catalog.publicationInfo" +msgstr "Information om publikationen" + +msgid "catalog.published" +msgstr "Publicerad" + +msgid "catalog.forthcoming" +msgstr "Kommande" + +msgid "catalog.categories" +msgstr "Kategorier" + +msgid "catalog.parentCategory" +msgstr "Huvudkategori" + +msgid "catalog.category.subcategories" +msgstr "Underkategorier" + +msgid "catalog.aboutTheAuthor" +msgstr "Om {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"N.B.: För att kunna göra ett köp måste du först logga in. Du kommer skickas " +"till inloggningssidan när du valt en vara att köpa. Alla böcker med en open " +"access-ikon kan laddas ned gratis, utan inloggning." + +msgid "catalog.sortBy" +msgstr "Ordna böcker" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Bestäm ordningen på böckerna i denna serie." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Bestäm ordningen på böckerna i denna kategori." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Bestäm ordningen på böckerna i katalogen." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Position i serien (lägst först)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Position i serien (högst först)" + +msgid "catalog.viewableFile.title" +msgstr "{$type}-visning av filen {$title}" + +msgid "catalog.viewableFile.return" +msgstr "Tillbaka till detaljer om {$monographTitle}" + +msgid "submission.search" +msgstr "Sök böcker" + +msgid "common.publication" +msgstr "Bok" + +msgid "common.publications" +msgstr "Böcker" + +msgid "common.prefix" +msgstr "Prefix" + +msgid "common.preview" +msgstr "Förhandsvisning" + +msgid "common.feature" +msgstr "" + +msgid "common.searchCatalog" +msgstr "Sök katalog" + +msgid "common.moreInfo" +msgstr "Mer information" + +msgid "common.listbuilder.completeForm" +msgstr "Fyll i alla fält i formuläret." + +msgid "common.listbuilder.selectValidOption" +msgstr "Välj ett giltigt alternativ i listan." + +msgid "common.listbuilder.itemExists" +msgstr "Du kan inte lägga till samma objekt samtidigt." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Hemsidans sidhuvud" + +msgid "navigation.catalog" +msgstr "Katalog" + +msgid "navigation.competingInterestPolicy" +msgstr "Policy för intressekonflikter" + +msgid "navigation.catalog.allMonographs" +msgstr "Alla böcker" + +msgid "navigation.catalog.manage" +msgstr "Administrera" + +msgid "navigation.catalog.administration.short" +msgstr "Administreration" + +msgid "navigation.catalog.administration" +msgstr "Katalogadministration" + +msgid "navigation.catalog.administration.categories" +msgstr "Kategorier" + +msgid "navigation.catalog.administration.series" +msgstr "Serier" + +msgid "navigation.infoForAuthors" +msgstr "För författare" + +msgid "navigation.infoForLibrarians" +msgstr "För bibliotekarier" + +msgid "navigation.infoForAuthors.long" +msgstr "Information för författare" + +msgid "navigation.infoForLibrarians.long" +msgstr "Information för bibliotekarier" + +msgid "navigation.newReleases" +msgstr "Nya utgivningar" + +msgid "navigation.published" +msgstr "Publicerad" + +msgid "navigation.wizard" +msgstr "Inställningsguide" + +msgid "navigation.linksAndMedia" +msgstr "Länkar och sociala medier" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Länk till din katalog." + +msgid "navigation.skip.spotlights" +msgstr "Gå till spotlight" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Serier" + +msgid "navigation.navigationMenus.series.description" +msgstr "Länk till en serie." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Kategori" + +msgid "navigation.navigationMenus.category.description" +msgstr "Länk till en kategori." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Nya utgivningar" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Länk till dina nya utgivningar." + +msgid "context.contexts" +msgstr "Pressar" + +msgid "context.context" +msgstr "Press" + +msgid "context.current" +msgstr "Aktuell press:" + +msgid "context.select" +msgstr "Byt press:" + +msgid "user.authorization.representationNotFound" +msgstr "Publiceringsformatet kunde ej hittas." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Inkludera användare utan roller i denna press." + +msgid "user.noRoles.submitMonograph" +msgstr "Skicka in ett förslag" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "Skicka in en bok: Författarregistrering är för tillfället avstängd." + +msgid "user.noRoles.regReviewer" +msgstr "Registrera dig som granskare" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" +"Registrera dig som granskare: Granskarregistrering är för tillfället " +"avstängd." + +msgid "user.reviewerPrompt" +msgstr "Vill du granska bidrag till denna press?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Ja, ansök om rollen {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Ja, kontakta mig med förfrågningar om att granska bidrag till denna press." + +msgid "user.register.contextsPrompt" +msgstr "Vilka pressar vill du registrera dig hos?" + +msgid "user.register.otherContextRoles" +msgstr "Begär följande roller." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Om du har anmält dig som granskare för en press, anmäl dina ämnesintressen." + +msgid "user.role.manager" +msgstr "Föreståndare" + +msgid "user.role.pressEditor" +msgstr "Redaktör" + +msgid "user.role.subEditor" +msgstr "Serieredaktör" + +msgid "user.role.copyeditor" +msgstr "Manusredaktör" + +msgid "user.role.proofreader" +msgstr "Korrekturläsare" + +msgid "user.role.productionEditor" +msgstr "Produktionsredaktör" + +msgid "user.role.managers" +msgstr "Föreståndare" + +msgid "user.role.subEditors" +msgstr "Serieredaktörer" + +msgid "user.role.editors" +msgstr "Redaktörer" + +msgid "user.role.copyeditors" +msgstr "Manusredaktörer" + +msgid "user.role.proofreaders" +msgstr "Korrekturläsare" + +msgid "user.role.productionEditors" +msgstr "Produktionsredaktörer" + +msgid "user.register.selectContext" +msgstr "Välj vilken press du vill registrera dig hos:" + +msgid "user.register.noContexts" +msgstr "Det finns inga pressar där du kan registrera dig." + +msgid "user.register.privacyStatement" +msgstr "Integritetspolicy" + +msgid "user.register.registrationDisabled" +msgstr "Pressen har stängt av användarregistrering." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Lösenordet är för kort." + +msgid "user.register.readerDescription" +msgstr "Meddelas genom e-mail när en bok publiceras." + +msgid "user.register.authorDescription" +msgstr "Kan skicka in böcker till pressen." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Villig att granska bidrag." + +msgid "user.register.reviewerDescription" +msgstr "Villig att granska bidrag för hela webbplatsen." + +msgid "user.register.reviewerInterests" +msgstr "Intressen (väsentliga områden och forskningsmetoder):" + +msgid "user.register.form.userGroupRequired" +msgstr "Du måste välja minst en roll" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Ja, jag samtycker till att min data samlas in och lagras i enlighet med " +"pressens integritetspolicy." + +msgid "site.noPresses" +msgstr "Det finns inga tillgängliga pressar." + +msgid "site.pressView" +msgstr "Visa pressens webbsida" + +msgid "about.pressContact" +msgstr "Kontakt" + +msgid "about.aboutContext" +msgstr "Om pressen" + +msgid "about.editorialTeam" +msgstr "Redaktionsmedlemmar" + +msgid "about.editorialPolicies" +msgstr "Redaktionella riktlinjer" + +msgid "about.focusAndScope" +msgstr "Inriktning och omfattning" + +msgid "about.seriesPolicies" +msgstr "Riktlinjer för serier och kategorier" + +msgid "about.submissions" +msgstr "Bidrag" + +msgid "about.onlineSubmissions" +msgstr "Online-bidrag" + +msgid "about.onlineSubmissions.login" +msgstr "Inloggning" + +msgid "about.onlineSubmissions.register" +msgstr "Registrera" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} eller {$register} för att skicka in ett bidrag." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} eller {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Skapa ett nytt bidrag" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "se dina pågående bidrag" + +msgid "about.authorGuidelines" +msgstr "Riktlinjer för författare" + +msgid "about.submissionPreparationChecklist" +msgstr "Checklista för bidrag" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Författare som skickar in bidrag måste kontrollera att bidraget uppfyller " +"följande riktlinjer. Bidrag som inte efterlever riktlinjerna kan komma att " +"skickas tillbaka till författaren." + +msgid "about.copyrightNotice" +msgstr "Upplysningar om upphovsrätt" + +msgid "about.privacyStatement" +msgstr "Integritetspolicy" + +msgid "about.reviewPolicy" +msgstr "Granskningsprocess" + +msgid "about.publicationFrequency" +msgstr "Publiceringsfrekvens" + +msgid "about.openAccessPolicy" +msgstr "Open access-policy" + +msgid "about.pressSponsorship" +msgstr "Sponsorer" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Mer information om detta publiceringssystem, plattform och arbetsflöde " +"utvecklat av OMP/PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Redaktions- och publiceringsprocess i OMP" + +msgid "about.aboutSoftware" +msgstr "Om Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"Denna press använder Open Monograph Press {$ompVersion}, som är en open " +"source-programvara för bokpublicering, utvecklat av Public Knowledge Project under GNU General Public License. För " +"frågor om pressen, kontakta dem direkt." + +#, fuzzy +msgid "about.aboutOMPSite" +msgstr "" +"Denna sidan använder Open Monograph Press {$ompVersion}, som är en open " +"source-programvara för bokpublicering, utvecklat av Public Knowledge Project under GNU General Public License." + +msgid "help.searchReturnResults" +msgstr "Tillbaka till sökresultat" + +msgid "help.goToEditPage" +msgstr "Öppna en ny sida för att redigera denna information" + +msgid "installer.appInstallation" +msgstr "OMP-installation" + +msgid "installer.ompUpgrade" +msgstr "OMP-uppgradering" + +msgid "installer.installApplication" +msgstr "Installera Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" + +msgid "installer.installationInstructions" +msgstr "" + +msgid "installer.preInstallationInstructionsTitle" +msgstr "" + +msgid "installer.preInstallationInstructions" +msgstr "" + +msgid "installer.upgradeInstructions" +msgstr "" + +msgid "installer.localeSettingsInstructions" +msgstr "" + +msgid "installer.allowFileUploads" +msgstr "" + +msgid "installer.maxFileUploadSize" +msgstr "" + +msgid "installer.localeInstructions" +msgstr "" + +msgid "installer.additionalLocalesInstructions" +msgstr "" + +msgid "installer.filesDirInstructions" +msgstr "" + +msgid "installer.databaseSettingsInstructions" +msgstr "" + +msgid "installer.upgradeApplication" +msgstr "" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" + +msgid "installer.installationComplete" +msgstr "" +"

            Installationen av OMP är slutförd.

            \n" +"

            För att börja använda systemet, logga in med " +"det användarnamn och lösenord du angav på den föregående sidan.

            \n" +"

            Besök forumet " +"eller anmäl er till utvecklarnas nyhetsbrev för att få uppdateringar om " +"systemet.

            " + +msgid "installer.upgradeComplete" +msgstr "" +"

            Uppgraderingen av OMP till {$version} är slutförd.

            \n" +"

            Kom ihåg att ställa tillbaka \"installed\"i config.inc.php-filen " +"till On.

            \n" +"

            Besök vårt forum " +"eller anmäl er till nyhetsbrevet för att få uppdateringar om systemet.

            " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Sista datumet för granskningsomgång {$round} för bidrag {$submissionId} av " +"{$reviewerName} är {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName} har nekat granskningsrunda {$round} för bidrag " +"{$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName} har accepterat granskningsrunda {$round} för bidrag " +"{$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} har markerat granskningsrunda {$round} för bidrag " +"{$submissionId} som ej läst." + +msgid "log.editor.decision" +msgstr "" +"Ett redaktionellt beslut ({$decision}) för boken {$submissionId} har tagits " +"av {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"En redaktionell rekommendation ({$decision}) för boken {$submissionId} har " +"givits av {$editorName}." + +msgid "log.editor.archived" +msgstr "Bidraget {$submissionId} har arkiverats." + +msgid "log.editor.restored" +msgstr "Bidraget {$submissionId} har återförts i kön." + +msgid "log.editor.editorAssigned" +msgstr "{$editorName} har valts som redaktör för bidraget {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} har valt {$proofreaderName} som korrekturläsare för " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} har skickat {$submissionId} till schemaläggning." + +msgid "log.imported" +msgstr "{$userName} har importerat boken {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Identifikationskod tillagd." + +msgid "notification.editedIdentificationCode" +msgstr "Edifikationskod redigerad." + +msgid "notification.removedIdentificationCode" +msgstr "Identifikationskod borttagen." + +msgid "notification.addedPublicationDate" +msgstr "Publiceringsdatum tillagt." + +msgid "notification.editedPublicationDate" +msgstr "Publiceringsdatum redigerat." + +msgid "notification.removedPublicationDate" +msgstr "Publiceringsdatum borttaget." + +msgid "notification.addedPublicationFormat" +msgstr "Publikationsformat tillagt." + +msgid "notification.editedPublicationFormat" +msgstr "Publikationsformat redigerat." + +msgid "notification.removedPublicationFormat" +msgstr "Publikationsformat borttaget." + +msgid "notification.addedSalesRights" +msgstr "Försäljningsrättigheter tillagda." + +msgid "notification.editedSalesRights" +msgstr "Försäljningsrättigheter redigerade." + +msgid "notification.removedSalesRights" +msgstr "Försäljningsrättigheter borttagna." + +msgid "notification.addedRepresentative" +msgstr "Representant tillagd." + +msgid "notification.editedRepresentative" +msgstr "Representant redigerad." + +msgid "notification.removedRepresentative" +msgstr "Representant borttagen." + +msgid "notification.addedMarket" +msgstr "Marknad tillagd." + +msgid "notification.editedMarket" +msgstr "Marknad redigerad." + +msgid "notification.removedMarket" +msgstr "Marknad borttagen." + +msgid "notification.addedSpotlight" +msgstr "" + +msgid "notification.editedSpotlight" +msgstr "" + +msgid "notification.removedSpotlight" +msgstr "" + +msgid "notification.savedCatalogMetadata" +msgstr "Metadata sparad." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Metadata om publikationsformatet sparad." + +msgid "notification.proofsApproved" +msgstr "Korrektur godkänd." + +msgid "notification.removedSubmission" +msgstr "Bidrag borttaget." + +msgid "notification.type.submissionSubmitted" +msgstr "En ny bok, \"{$title},\" har skickats in." + +msgid "notification.type.editing" +msgstr "Status för redigering" + +msgid "notification.type.reviewing" +msgstr "Status för granskning" + +msgid "notification.type.site" +msgstr "Webbplatshändelser" + +msgid "notification.type.submissions" +msgstr "Status för bidrag" + +msgid "notification.type.userComment" +msgstr "En läsare har skrivit en kommentar till \"{$title}\"." + +msgid "notification.type.public" +msgstr "Offentliga meddelanden" + +msgid "notification.type.editorAssignmentTask" +msgstr "En ny bok har skickats in och behöver tilldelas en redaktör." + +msgid "notification.type.copyeditorRequest" +msgstr "Du har ombetts att granska det redigerade manuset för \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "Du har ombetts att granska layouter för \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "Du har ombetts att indexera \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Den interna granskningsprocessen har inletts." + +msgid "notification.type.approveSubmission" +msgstr "" +"Detta bidrag väntar på godkännande i katalogposten innan det blir synligt i " +"den publika vyn." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Inväntar godkännande." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Boken kommer inte synas i katalogen förrän den är publicerad. Tryck på " +"publicera-fliken för att lägga till boken i katalogen." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Ingen betalningsmetod bestämd." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Välj en betalningsmetod för att kunna ställa in försäljningsalternativ." + +msgid "notification.type.visitCatalogTitle" +msgstr "Katalogadministration" + +msgid "notification.type.visitCatalog" +msgstr "" +"Boken har godkänts. Gå till Marknadsföring och Publikation via länkarna ovan " +"för att ställa in detaljer." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "Du har nekats tillgång eftersom du inte är granskare för denna bok." + +msgid "user.authorization.monographAuthor" +msgstr "Du har nekats tillgång eftersom du inte är författare till denna bok." + +msgid "user.authorization.monographReviewer" +msgstr "Du har nekats tillgång eftersom du inte är granskare för denna bok." + +msgid "user.authorization.monographFile" +msgstr "Du har nekats tillgång till den specifika filen." + +msgid "user.authorization.invalidMonograph" +msgstr "Fel bok, eller ingen bok, har begärts!" + +msgid "user.authorization.noContext" +msgstr "Ingen press hittades." + +msgid "user.authorization.seriesAssignment" +msgstr "Du försöker nå en bok som inte är en del av din serie." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Åtkomst nekad! Du har inte tillgång till detta steg i arbetsflödet." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Åtkomst nekad! Användartypen du är inloggad som har inte blivit tilldelad " +"åtkomst till detta steg i arbetsflödet. Kontrollera dina inställningar." + +msgid "payment.directSales" +msgstr "Ladda ned från webbsidan" + +msgid "payment.directSales.price" +msgstr "Pris" + +msgid "payment.directSales.availability" +msgstr "Tillgänglighet" + +msgid "payment.directSales.catalog" +msgstr "Katalog" + +msgid "payment.directSales.approved" +msgstr "Godkänd" + +msgid "payment.directSales.priceCurrency" +msgstr "Pris ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Priser ska endast anges i numeriska värden. Ange inte valutasymboler." + +msgid "payment.directSales.directSales" +msgstr "Direkt försäljning" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Ej tillgänglig" + +msgid "payment.directSales.notSet" +msgstr "Ej inställd" + +msgid "payment.directSales.openAccess" +msgstr "Open access" + +msgid "payment.directSales.price.description" +msgstr "" +"Filformat kan tillgängliggöras för nedladdning från pressens hemsida utan " +"kostnad för läsaren (open access), eller genom direktförsäljning (genom en " +"online-betalsystem, vilket ställs in under Distribution). Välj " +"tillgänglighetsinställning för filen." + +msgid "payment.directSales.validPriceRequired" +msgstr "Ett giltigt pris i numeriska värden krävs." + +msgid "payment.directSales.purchase" +msgstr "Köp {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Ladda ned{$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Köp bok- eller kapitel-nedladdning" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Denna transaktion gäller för köp av en direktnedladdning av en enskild bok " +"eller bokkapitel." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Laddade om XML-hjälp för att mappa filen {$filename} till sökning efter " +"{$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Bok" + +msgid "submission.pdf.download" +msgstr "Ladda ned denna PDF-fil" + +msgid "user.profile.form.showOtherContexts" +msgstr "Registrera dig vid andra pressar" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Dölj andra pressar" + +msgid "submission.round" +msgstr "Omgång {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Ett ogiltigt publicerat bidrag valdes." + +msgid "catalog.coverImageTitle" +msgstr "Omslag" + +msgid "grid.catalogEntry.chapters" +msgstr "Kapitel" + +msgid "search.results.orderBy.article" +msgstr "Artikeltitel" + +msgid "search.results.orderBy.author" +msgstr "Författare" + +msgid "search.results.orderBy.date" +msgstr "Publiceringsdatum" + +msgid "search.results.orderBy.monograph" +msgstr "Boktitel" + +msgid "search.results.orderBy.press" +msgstr "Presstitel" + +msgid "search.results.orderBy.popularityAll" +msgstr "Popularitet (alltid)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Popularitet (senaste månaden)" + +msgid "search.results.orderBy.relevance" +msgstr "Relevans" + +msgid "search.results.orderDir.asc" +msgstr "Stigande" + +msgid "search.results.orderDir.desc" +msgstr "Fallande" + +#~ msgid "grid.action.addAnnouncement" +#~ msgstr "Lägg till ett meddelande" + +msgid "section.section" +msgstr "Serier" diff --git a/locale/sv/manager.po b/locale/sv/manager.po new file mode 100644 index 00000000000..951bc215bf4 --- /dev/null +++ b/locale/sv/manager.po @@ -0,0 +1,1501 @@ +# Magnus Annemark , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-02-16 11:26+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Detta kommer ersätta alla språkspecifika inställningar du har för detta språk" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Det finns inga ytterligare språk. Kontakta din systemadministratör om du " +"vill använda andra språk." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Detta kommer vara pressens default-språk." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Minst en ruta i checklistan behöver kryssas i for varje serieredaktörs " +"uppdrag." + +msgid "manager.series.form.reviewFormId" +msgstr "Kontroller så du har valt ett giltigt formulär för granskning." + +msgid "manager.series.submissionIndexing" +msgstr "Kommer inte inkluderas i indexering av pressen" + +msgid "manager.series.editorRestriction" +msgstr "Objekt kan bara skickas in av redaktörer och serieredaktörer." + +msgid "manager.series.confirmDelete" +msgstr "Är du säker på att du vill permanent radera serien?" + +msgid "manager.series.indexed" +msgstr "Indexerad" + +msgid "manager.series.open" +msgstr "Öppna bidrag" + +msgid "manager.series.readingTools" +msgstr "Läsverktyg" + +msgid "manager.series.submissionReview" +msgstr "Kommer inte sakkunniggranskas" + +msgid "manager.series.submissionsToThisSection" +msgstr "Inskickade bidrag till serien" + +msgid "manager.series.abstractsNotRequired" +msgstr "Kräv inte abstract" + +msgid "manager.series.disableComments" +msgstr "Stäng av läsarkommentarer för serien." + +msgid "manager.series.book" +msgstr "Bokserier" + +msgid "manager.series.create" +msgstr "Skapa serie" + +msgid "manager.series.policy" +msgstr "Beskrivning av serie" + +msgid "manager.series.assigned" +msgstr "Redaktörer för serie" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Ange en redaktör för serien. Ange därefter om serieredaktören ska ha tillsyn " +"över granskning (peer review) och/eller redaktion (manusredigering, layout " +"och korrektur) för bidrag till serien. Serieredaktörer kan skapas genom att " +"klicka på Series Editors under Roller i " +"Pressinställningar." + +msgid "manager.series.hideAbout" +msgstr "Undanta den här serien från \"Om pressen\"." + +msgid "manager.series.unassigned" +msgstr "Tillgängliga serieredaktörer" + +msgid "manager.series.form.abbrevRequired" +msgstr "En förkortning av seriens titel krävs." + +msgid "manager.series.form.titleRequired" +msgstr "En titel för serien krävs." + +msgid "manager.series.noneCreated" +msgstr "Inga serier har skapats än." + +msgid "manager.series.existingUsers" +msgstr "Befintliga användare" + +msgid "manager.series.seriesTitle" +msgstr "Serietitel" + +msgid "manager.series.restricted" +msgstr "Tillåt inte författare att skicka in bidrag direkt till serien." + +msgid "manager.payment.generalOptions" +msgstr "Allmänna inställningar" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Betalningar kommer vara aktiverade för pressen. Användare måste logga in för " +"att betala." + +msgid "manager.payment.success" +msgstr "Betalningsinställningarna har uppdaterats." + +msgid "manager.settings" +msgstr "Inställningar" + +msgid "manager.settings.pressSettings" +msgstr "Pressinställningar" + +msgid "manager.settings.press" +msgstr "Press" + +msgid "manager.settings.publisher.identity" +msgstr "Förlagets identitet" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Dessa fält är obligatoriska för att publicera giltig ONIX-metadata." + +msgid "manager.settings.publisher" +msgstr "Förlagets namn" + +msgid "manager.settings.location" +msgstr "Geografisk plats" + +msgid "manager.settings.publisherCode" +msgstr "Förlagskod" + +msgid "manager.settings.publisherCodeType" +msgstr "Typ av förlagskod" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Detta är inte en giltig typ av förlagskod." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Inställningar för distributionsprocessen (avisering, indexering, arkivering, " +"betalning, läsverktyg)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Nedladdningar av filer" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Visningar av böckers abstractsidor" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Abstractsidor och nedladdningar" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Visningar av seriers landningssidor" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Visningar av pressens huvudsida" + +msgid "manager.tools" +msgstr "Verktyg" + +msgid "manager.tools.importExport" +msgstr "" +"Alla verktyg för att importera och exportera data (press, bok, användare)" + +msgid "manager.tools.statistics" +msgstr "" +"Verktyg för att generera rapporter för användningsstatistik (visningar av " +"katalogindex, visningar av abstractsidor, filnedladdningar)" + +msgid "manager.users.availableRoles" +msgstr "Tillgängliga roller" + +msgid "manager.users.currentRoles" +msgstr "Aktuella roller" + +msgid "manager.users.selectRole" +msgstr "Välj roll" + +msgid "manager.people.allEnrolledUsers" +msgstr "Användare anmälda till pressen" + +msgid "manager.people.allPresses" +msgstr "Alla pressar" + +msgid "manager.people.allSiteUsers" +msgstr "Anmäl användare från systemet till pressen" + +msgid "manager.people.allUsers" +msgstr "Alla anmälda användare" + +msgid "manager.people.confirmRemove" +msgstr "" +"Radera användaren från pressen? Detta kommer avanmäla användaren från alla " +"roller inom pressen." + +msgid "manager.people.enrollExistingUser" +msgstr "Anmäl en existerande användare" + +msgid "manager.people.enrollSyncPress" +msgstr "Med pressen" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Välj en användare att slå ihop med ett annat användarkonto (t.ex. om en " +"person har två användarkonton). Det först valda kontot kommer raderas och " +"dess bidrag, uppdrag, etc. kommer flyttas över till det andra kontot." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Välj en användare till vilken den föregående användares bidrag, uppdrag, " +"etc. flyttas." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Synkroniserad tilldelning innebär att samtliga användare inom en specifik " +"tidskrift kan tilldelas samma roll/funktion i den här pressen. Funktionen " +"gör det möjligt för en vald grupp av användare/funktioner (t.ex., granskare) " +"att synkroniseras mellan olika pressar." + +msgid "manager.people.confirmDisable" +msgstr "" +"Avaktivera användaren? Detta kommer förhindra användaren från att logga in i " +"systemet.\n" +"\n" +"Du kan även ge användaren ett skäl till avaktiveringen." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Du har inte administrativ behörighet till användaren. Detta kan bero på:\n" +"\t\t
              \n" +"\t\t\t
            • Användaren är en administratör
            • \n" +"\t\t\t
            • Användaren är aktiv i pressar du inte har rättigheter till
            • \n" +"\t\t
            \n" +"\tDetta måste utföras av en administratör.\n" +"\t" + +msgid "manager.system" +msgstr "Systeminställningar" + +msgid "manager.system.archiving" +msgstr "Arkivering" + +msgid "manager.system.reviewForms" +msgstr "Granskningsformulär" + +msgid "manager.system.readingTools" +msgstr "Läsverktyg" + +msgid "manager.system.payments" +msgstr "Betalningar" + +msgid "user.authorization.pluginLevel" +msgstr "Du har inte tillräckliga rättigheter för att hantera denna plugin." + +msgid "manager.pressManagement" +msgstr "Pressinställningar" + +msgid "manager.setup" +msgstr "Inställningar" + +msgid "manager.setup.aboutItemContent" +msgstr "Innehåll" + +msgid "manager.setup.addAboutItem" +msgstr "Lägg till \"Om\"-objekt" + +msgid "manager.setup.addChecklistItem" +msgstr "Lägg till objekt i checklistan" + +msgid "manager.setup.addItem" +msgstr "Lägg till objekt" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Lägg till objekt i \"Om pressen\"" + +msgid "manager.setup.addNavItem" +msgstr "Lägg till objekt" + +msgid "manager.setup.addSponsor" +msgstr "Lägg till sponsor" + +msgid "manager.setup.announcements" +msgstr "Meddelanden" + +msgid "manager.setup.announcements.success" +msgstr "Meddelandeinställningarna har uppdaterats." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Meddelanden kan publiceras för att informera pressens läsare om nyheter och " +"evenemang. Publicerade meddelanden är synliga på sidan \"Meddelanden\"." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Ytterligare information" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Lägg till ytterligare information som ska visas för läsare under Meddelanden." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Kommer att visas under Om pressen) " + +msgid "manager.setup.contextAbout" +msgstr "Om pressen" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Skriv in information som kan vara intressant för läsare, författare eller " +"granskare. Detta kan exempelvis vara pressens open access-policy, " +"ämnesinriktning, sponsorer, och pressens historik." + +msgid "manager.setup.contextSummary" +msgstr "Kort beskrivning av pressen" + +msgid "manager.setup.copyediting" +msgstr "Manusredaktörer" + +msgid "manager.setup.copyeditInstructions" +msgstr "Instruktioner för manusredaktörer" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Instruktionerna kommer vara tillgängliga för manusredaktörer, författare och " +"sektionsredaktörer i manusredigeringssteget. Nedan finns default-" +"instruktioner i HTML, dessa kan ändras och/eller ersättas av pressansvarig " +"(i HTML eller fritext)." + +msgid "manager.setup.copyrightNotice" +msgstr "Upphovsrättsvillkor" + +msgid "manager.setup.coverage" +msgstr "Täckning" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Maximal höjd för omslagsbild" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Maximal bredd för omslagsbild" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Bilder kommer förminskas om de överstiger denna storlek, men kommer aldrig " +"att bli uppskalade eller utsträckta för att passa." + +msgid "manager.setup.customizingTheLook" +msgstr "Steg 5. Anpassa utseendet" + +msgid "manager.setup.customTags" +msgstr "Egna taggar" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Anpassade header-taggar i HTML som kan placeras i varje sidas header (t.ex. " +"META-taggar)." + +msgid "manager.setup.details" +msgstr "Detaljer" + +msgid "manager.setup.details.description" +msgstr "Pressens namn, kontaktuppgifter, sponsorer och sökmotorer." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Pressansvarig registrerar alla användarkonton. Redaktörer och " +"sektionsredaktörer kan registrera användarkonton för granskare." + +msgid "manager.setup.discipline" +msgstr "Akademiskt ämnesområde" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Kan exempelvis användas om pressen täcker in flera olika ämnesområden och/" +"eller när författare skickar in tvärvetenskapliga bidrag." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(T.ex. historia, pedagogik, sociologi, psykologi, kulturvetenskaper, " +"juridik)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "Ge exempel på relevanta akademiska ämnesområden för pressen" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Lägg till innehållsförteckningen för denna bok (om tillgängligt)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Innehåll på förstasidan" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Visa utvalda böcker på förstasidan" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Utvalda böcker" + +msgid "manager.setup.displayInSpotlight" +msgstr "Visa böcker i spotlight på förstasidan" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Spotlight" + +msgid "manager.setup.displayNewReleases" +msgstr "Visa nya utgivningar på förstasidan" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Nya utgivningar" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Tilldela Digital Object Identifier (DOI) till böcker, kapitel, " +"publiceringsformat och filer." + +#, fuzzy +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "Välj vilka objekt som kan tilldelas DOI." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Använd standardmönster.
            %p.%m för böcker
            %p.%m.c%c för kapitel
            %p.%m.%f för publiceringsformat
            %p.%m.%f.%s för filer." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "Vid manusredigeringssteget" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Format / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Redaktörens beslut" + +msgid "manager.setup.emailBounceAddress" +msgstr "Bounce-adress" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"E-postmeddelanden som inte kan levereras producerar ett felmeddelande som " +"skickas till denna adress." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"För att skicka e-postmeddelanden som inte kan levereras till en bounce-" +"adress måste sidadministratören aktivera allow_envelope_sender " +"i konfigureringsfilen. Ytterligare serverkonfigurering kan komma att bli " +"nödvändig för att stödja den här funktionaliteten (något som inte alla " +"servrar tillåter, se OMP-dokumentationen för information)." + +msgid "manager.setup.emails" +msgstr "E-postidentifiering" + +msgid "manager.setup.emailSignature" +msgstr "Signatur" + +#, fuzzy +msgid "manager.setup.emailSignature.description" +msgstr "" +"E-postmeddelanden som skickas för pressens räkning av systemet kommer att ha " +"följande signatur i slutet." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Aktivera meddelanden" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Meddelanden kan innehålla information om nyheter och evenemang. Publicerade " +"meddelanden kommer att synas på sidan \"Meddelanden\"." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Visa på förstasidan" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Hur många meddelanden som är synliga på förstasidan. Lämna fältet tomt för " +"att inte visa meddelanden på förstasidan." + +msgid "manager.setup.enablePressInstructions" +msgstr "Gör pressen publik" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Anpassade identifierare kommer användas för att identifiera publicerade verk." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Anpassade identifierare kommer användas för att identifiera " +"publiceringsversioner (t.ex. HTML- eller PDF-filer) för publicerade verk." + +msgid "manager.setup.enableUserRegistration" +msgstr "Besökare kan registrera sig som användare av pressen." + +msgid "manager.setup.focusAndScope" +msgstr "Pressens ämnesinriktning" + +msgid "manager.setup.focusAndScope.description" +msgstr "Beskriv pressens inriktning för läsare, författare och bibliotekarier." + +msgid "manager.setup.focusScope" +msgstr "Ämnesinriktning" + +msgid "manager.setup.focusScopeDescription" +msgstr "EXEMPELDATA" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Indexering av innehåll" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP är anslutet till Open Archives Initiative Protokoll för Metadata Harvesting, som är en " +"väletablerad standard som stöder tillgängliggörandet av välindexerad data i " +"en global kontext. Författare använder ett generellt formulär för att " +"beskriva bidragets metadata. Den tidskriftsansvarige anger " +"indexeringskategorier och förse författare med relevanta exempel som kan " +"vara till hjälp vid indexeringen." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Den primära kontaktens e-postadress krävs." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Den primära kontaktens namn krävs." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Antal granskare per bidrag krävs." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Supportens e-postadress krävs." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Supportens namn krävs." + +msgid "manager.setup.generalInformation" +msgstr "Allmän information" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Steg 1. Detaljer" + +msgid "manager.setup.guidelines" +msgstr "Riktlinjer" + +msgid "manager.setup.preparingWorkflow" +msgstr "Steg 3. Ställ in arbetsflödet" + +msgid "manager.setup.identity" +msgstr "Pressens identitet" + +msgid "manager.setup.information" +msgstr "Information" + +msgid "manager.setup.information.description" +msgstr "" +"Korta beskrivningar av pressen för bibliotekarier och eventuella författare " +"eller läsare. Informationen blir synlig på webbsidans sidomeny när " +"informationsblocket är tillagt." + +msgid "manager.setup.information.forAuthors" +msgstr "För författare" + +msgid "manager.setup.information.forLibrarians" +msgstr "För bibliotekarier" + +msgid "manager.setup.information.forReaders" +msgstr "För läsare" + +msgid "manager.setup.information.success" +msgstr "Pressens information har uppdaterats." + +msgid "manager.setup.institution" +msgstr "Institution" + +msgid "manager.setup.itemsPerPage" +msgstr "Objekt per sida" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Begränsa antalet objekt (till exempel bidrag, användare, eller uppdrag) i en " +"lista innan sidbrytning." + +msgid "manager.setup.keyInfo" +msgstr "Översiktsinformation" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"En kort beskrivning av pressen, samt information om redaktörer, " +"tidskriftsansvariga och andra medlemmar av din redaktion." + +msgid "manager.setup.labelName" +msgstr "Etikettsnamn" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Layoutredaktörer" + +msgid "manager.setup.layoutInstructions" +msgstr "Layoutinstruktioner" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Layoutinstruktioner kan anges nedan i HTML eller fritext. De blir då " +"tillgängliga för layout- och sektionsredaktörer på varje bidrags " +"redigeringssida." + +msgid "manager.setup.layoutTemplates" +msgstr "Layoutmallar" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Layoutmallar i olika filformat (t.ex. pdf, doc, etc.) kan laddas upp, " +"tillsammans med anteckningar som specificerar typsnitt, textstorlek, " +"marginaler, etc." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Layoutmall" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Titel" + +msgid "manager.setup.lists" +msgstr "Listor" + +msgid "manager.setup.lists.success" +msgstr "Inställningar för listor har uppdaterats." + +msgid "manager.setup.look" +msgstr "Utseende" + +msgid "manager.setup.look.description" +msgstr "" +"Hemsidans rubrik, innehåll, sidhuvud och sidfot, navigationsmeny, och " +"stilmall." + +msgid "manager.setup.settings" +msgstr "Inställningar" + +msgid "manager.setup.management.description" +msgstr "" +"Tillgång och säkerhet, schemaläggning, meddelanden, manusredigering, layout " +"och korrektur." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Administration av redaktionellt arbetsflöde" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Inställningar" + +msgid "manager.setup.managingThePress" +msgstr "Steg 4. Hantera inställningar" + +msgid "manager.setup.masthead.success" +msgstr "Redaktionsrutan har uppdaterats." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Ingen bild har laddats upp." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Ingen stilmall har laddats upp." + +msgid "manager.setup.note" +msgstr "Anteckning" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Inkludera alla medförfattare och inte bara den som skickar in manuskriptet " +"när funktionen \"Meddela författare\" används." + +msgid "manager.setup.noUseCopyeditors" +msgstr "Manusredigering kommer utföras av en redaktör eller sektionsredaktör." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"En redaktör eller sektionsredaktör kommer iordningställa filen eller filerna " +"(HTML, PDF, etc.)." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"En redaktör eller sektionsredaktör kommer kontrollera publiceringsversionen." + +msgid "manager.setup.numPageLinks" +msgstr "Länkar" + +msgid "manager.setup.numPageLinks.description" +msgstr "Begränsa antalet länkar som visas till efterföljande sidor i en lista." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Tillgång till pressens innehåll" + +msgid "manager.setup.onlineIssn" +msgstr "Online-ISSN" + +msgid "manager.setup.policies" +msgstr "Riktlinjer" + +msgid "manager.setup.policies.description" +msgstr "" +"Inriktning, kvalitetsgranskning, avdelningar, integritet, säkerhet och " +"övrigt." + +msgid "manager.setup.privacyStatement.success" +msgstr "Integritetspolicyn har uppdaterats." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Olika delar av pressens utseende kan ändras från den här sidan, inklusive " +"sidhuvud och sidfot, stilmall och tema, och hur listor fungerar." + +msgid "manager.setup.pressDescription" +msgstr "Kort beskrivning av pressen" + +msgid "manager.setup.pressDescription.description" +msgstr "En kort beskrivning av pressen." + +msgid "manager.setup.aboutPress" +msgstr "Om pressen" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Information som kan vara av intresse för läsare, eventuella författare eller " +"granskare. Det kan t.ex. vara er open access-policy, pressens ämnesmässiga " +"inriktning, upphovsrättspolicy, pressens historik, integritetspolicy." + +msgid "manager.setup.pressArchiving" +msgstr "Arkivering" + +msgid "manager.setup.homepageContent" +msgstr "Hemsidans innehåll" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Hemsidan har ett antal förinställda navigationslänkar. Ytterligare innehåll " +"kan läggas till genom att använda något av alternativen nedan." + +msgid "manager.setup.pressHomepageContent" +msgstr "Hemsidans innehåll" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Hemsidan har ett antal förinställda navigationslänkar. Ytterligare innehåll " +"kan läggas till genom att använda något av alternativen nedan." + +msgid "manager.setup.contextInitials" +msgstr "Förkortning" + +msgid "manager.setup.selectCountry" +msgstr "Välj pressens land, eller landet för pressens kontaktadress." + +msgid "manager.setup.layout" +msgstr "Layout" + +msgid "manager.setup.pageHeader" +msgstr "Sidhuvud" + +msgid "manager.setup.pageHeaderDescription" +msgstr "" + +msgid "manager.setup.pressPolicies" +msgstr "Steg 2. Pressens riktlinjer" + +msgid "manager.setup.pressSetup" +msgstr "Konfiguration" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Konfigurationen har uppdaterats." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Ogiltigt format på stilmall. Formatet måste vara \".css\"." + +msgid "manager.setup.pressTheme" +msgstr "Tema" + +msgid "manager.setup.pressThumbnail" +msgstr "Miniatyrbild" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"En liten logotyp eller annan bild som kan användas för att representera " +"pressen i listor." + +msgid "manager.setup.contextTitle" +msgstr "Pressens namn" + +msgid "manager.setup.printIssn" +msgstr "ISSN för fysiskt format" + +msgid "manager.setup.proofingInstructions" +msgstr "Instruktioner för korrektur" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Korrekturinstruktionerna blir tillgängliga för korrekturläsare, författare, " +"layoutredaktörer och sektionsredaktörer in manusredigeringssteget. Nedan är " +"en uppsättning förinställda instruktioner i HTML-format. Dessa kan redigeras " +"eller bytas ut när som helst av pressansvarig (i HTML-format eller i " +"fritext)." + +msgid "manager.setup.proofreading" +msgstr "Korrekturläsare" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Ge instruktioner till layoutredaktörer." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" + +msgid "manager.setup.publisher" +msgstr "Utgivare" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Namnet på organisationen som ligger bakom pressen kommer synas under \"Om " +"pressen\"." + +msgid "manager.setup.referenceLinking" +msgstr "Länka referenser" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Layoutinstruktioner för att länka referenser" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Användare måste vara registrerade och inloggade för att se fritt " +"tillgängligt innehåll." + +msgid "manager.setup.restrictSiteAccess" +msgstr "Användare måste vara registrerade och inloggade för att se webbsidan." + +msgid "manager.setup.reviewGuidelines" +msgstr "Riktlinjer för extern granskning" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Ge externa granskare kriterier för bedömning av ett bidrags lämplighet, " +"vilket kan inkludera instruktioner för att göra en konstruktiv granskning. " +"Granskare kommer ha möjlighet att ge kommentarer till författare och " +"redaktör, samt även särskilda kommentarer riktade direkt till redaktören." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Riktlinjer för interna granskare" + +msgid "manager.setup.reviewOptions" +msgstr "Granskningsalternativ" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Automatiska e-postpåminnelser" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"För att aktivera dessa alternativ måste administratör aktivera " +"scheduled_tasks i OMP:s konfigurationsfil. Ytterligare server " +"inställningar kan krävas för att denna funktion ska fungera. Mer information " +"finns i OMP-dokumentationen." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Redaktörer kommer värdera granskare på en femgradig skala efter varje " +"granskning." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Begränsa åtkomst till filen" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Granskare kommer bara ha tillgång till bidraget efter att de har gått med på " +"att granska det." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Granskares åtkomst" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Åtkomst för granskare genom ett klick" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Granskare kan bli skickade en säker länk i e-postinbjudan, som ger dem " +"åtkomst till granskningen utan att logga in. Åtkomst till andra sidor kräver " +"att de loggar in." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Inkludera en säker länk i e-postinbjudan till granskare." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Granskarvärdering" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Påminnelser till granskare" + +msgid "manager.setup.reviewPolicy" +msgstr "Granskningspolicy" + +msgid "manager.setup.searchDescription.description" +msgstr "" + +msgid "manager.setup.searchEngineIndexing" +msgstr "" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "" + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" + +msgid "manager.setup.sectionsDescription" +msgstr "" + +msgid "manager.setup.securitySettings" +msgstr "" + +msgid "manager.setup.securitySettings.note" +msgstr "" + +msgid "manager.setup.selectEditorDescription" +msgstr "" + +msgid "manager.setup.selectSectionDescription" +msgstr "" + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" + +msgid "manager.setup.siteAccess.view" +msgstr "" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "" + +msgid "manager.setup.stepsToPressSite" +msgstr "" + +msgid "manager.setup.subjectExamples" +msgstr "" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" + +msgid "manager.setup.submissionGuidelines" +msgstr "" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "" + +msgid "manager.setup.workflow" +msgstr "" + +msgid "manager.setup.submissions.description" +msgstr "" + +msgid "manager.setup.typeExamples" +msgstr "" + +msgid "manager.setup.typeMethodApproach" +msgstr "" + +msgid "manager.setup.typeProvideExamples" +msgstr "" + +msgid "manager.setup.useCopyeditors" +msgstr "" + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "" + +msgid "manager.setup.useImageTitle" +msgstr "" + +msgid "manager.setup.useStyleSheet" +msgstr "" + +msgid "manager.setup.useLayoutEditors" +msgstr "" + +msgid "manager.setup.useProofreaders" +msgstr "" + +msgid "manager.setup.userRegistration" +msgstr "" + +msgid "manager.setup.useTextTitle" +msgstr "" + +msgid "manager.setup.volumePerYear" +msgstr "" + +msgid "manager.setup.publicationFormat.code" +msgstr "" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "" + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "" + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" + +msgid "manager.setup.newPublicationFormat" +msgstr "" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" + +msgid "manager.setup.genresDescription" +msgstr "" + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" + +msgid "manager.setup.disableSubmissions.description" +msgstr "" + +msgid "manager.setup.genres" +msgstr "" + +msgid "manager.setup.newGenre" +msgstr "" + +msgid "manager.setup.newGenreDescription" +msgstr "" + +msgid "manager.setup.deleteSelected" +msgstr "" + +msgid "manager.setup.restoreDefaults" +msgstr "" + +msgid "manager.setup.prospectus" +msgstr "" + +msgid "manager.setup.prospectusDescription" +msgstr "" + +msgid "manager.setup.submitToCategories" +msgstr "" + +msgid "manager.setup.submitToSeries" +msgstr "" + +msgid "manager.setup.issnDescription" +msgstr "" + +msgid "manager.setup.currentFormats" +msgstr "" + +msgid "manager.setup.categoriesAndSeries" +msgstr "" + +msgid "manager.setup.categories.description" +msgstr "" + +msgid "manager.setup.series.description" +msgstr "" + +msgid "manager.setup.reviewForms" +msgstr "" + +msgid "manager.setup.roleType" +msgstr "" + +msgid "manager.setup.authorRoles" +msgstr "" + +msgid "manager.setup.managerialRoles" +msgstr "" + +msgid "manager.setup.availableRoles" +msgstr "" + +msgid "manager.setup.currentRoles" +msgstr "" + +msgid "manager.setup.internalReviewRoles" +msgstr "" + +msgid "manager.setup.masthead" +msgstr "Allmänt" + +msgid "manager.setup.editorialTeam" +msgstr "Redaktion" + +msgid "manager.setup.editorialTeam.description" +msgstr "Lista över redaktörer och annan personal vid pressen." + +msgid "manager.setup.files" +msgstr "Filer" + +msgid "manager.setup.productionTemplates" +msgstr "Produktionsmallar" + +msgid "manager.files.note" +msgstr "" + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" + +msgid "manager.publication.library" +msgstr "" + +msgid "manager.setup.resetPermissions" +msgstr "" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" + +msgid "manager.setup.resetPermissions.description" +msgstr "" + +msgid "manager.setup.resetPermissions.success" +msgstr "" + +msgid "grid.genres.title.short" +msgstr "" + +msgid "grid.genres.title" +msgstr "" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" + +msgid "grid.series.pathAlphaNumeric" +msgstr "" + +msgid "grid.series.pathExists" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" + +msgid "grid.series.urlWillBe" +msgstr "" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "" + +msgid "stats.publications.details" +msgstr "" + +msgid "stats.publications.none" +msgstr "" + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "" + +msgid "stats.publications.countOfTotal" +msgstr "" + +msgid "stats.publications.abstracts" +msgstr "" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "" + +msgid "plugins.importexport.common.error.validation" +msgstr "" + +msgid "plugins.importexport.common.invalidXML" +msgstr "" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "" + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "" + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "" + +msgid "emailTemplate.variable.context.contextName" +msgstr "" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "" + +msgid "emailTemplate.variable.context.contactName" +msgstr "" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "" + +msgid "mailable.validateEmailContext.name" +msgstr "" + +msgid "mailable.validateEmailContext.description" +msgstr "" + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "" + +msgid "doi.description" +msgstr "" +"Denna plugin gör det möjligt att till dela Digital Object Identifier (DOI) " +"till böcker, kapitel och publiceringsformat i OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "Konfigurera DOI-pluginet för att kunna använda DOI i OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "Välj vilka objekt som ska tilldelas DOI:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Böcker" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Kapitel" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Publiceringsformat" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Filer" + +msgid "doi.manager.settings.doiPrefix" +msgstr "DOI-prefix" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "DOI-prefix är obligatoriskt och måste formateras som 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Använd mönstret nedan för att generera DOI-suffix. Använd %p för pressens " +"inititaler, %m för bokens ID, %c för kapitlets ID, %f för " +"publiceringsformatets id, %s för filens ID, och %x för en anpassad " +"identifikator." + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Exempelvis, press%ppub%r kan generera en DOI som exempelvis ser ut som " +"följer: 10.1234/pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "för böcker" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "för kapitel" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "för publiceringsformat" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "för filer" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Ange mönster för DOI-suffix för böcker." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Ange mönster för DOI-suffix för kapitel." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Ange mönster för DOI-suffix för publiceringsformat." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Ange mönster för DOI-suffix för filer." + +msgid "doi.manager.settings.doiReassign" +msgstr "Tilldela DOI:er på nytt" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Redan tilldelade DOI:er kommer inte påverkas om du ändrar i dina DOI-" +"inställningar. Använd denna knapp efter att DOI-inställningarna sparats för " +"att rensa alla nuvarande DOI:er och tilldela nya DOI:er enligt de nya " +"inställningarna." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Är du säker på att du vill radera alla nuvarande DOI:er?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "DOI måste börja med {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Tilldela" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "bok" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "kapitel" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "publiceringsformat" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "fil" + +msgid "doi.editor.customSuffixMissing" +msgstr "DOI kan inte tilldelas eftersom det anpassade suffixet saknas." + +msgid "doi.editor.missingParts" +msgstr "" +"DOI kan inte genereras eftersom en eller flera delar av DOI-mönstret saknar " +"data." + +msgid "doi.editor.patternNotResolved" +msgstr "DOI kan inte tilldelas eftersom den innehåller ett olösbart mönster." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Du ser nu en förhandsvisning av DOI:n. Kryssa i rutan och spara formuläret " +"för att tilldela DOI:n." + +msgid "doi.editor.assigned" +msgstr "DOI:n är tilldelad till denna {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Det givna DOI-suffixet används redan i ett annat objekt. Ange ett unikt DOI-" +"suffix för varje objekt." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Rensa" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Är du säker på att du vill radera den nuvarande DOI:n?" + +msgid "doi.editor.assignDoi" +msgstr "Tilldela DOI:n {$pubId} till denna {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI:n kan inte tilldelas eftersom det anpassade suffixet saknas." + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"DOI:n {$pubId} kan inte tilldelas eftersom den innehåller ett olösbart " +"mönster." + +msgid "doi.editor.assignDoi.assigned" +msgstr "DOI:n {$pubId} har tilldelats." + +msgid "doi.editor.missingPrefix" +msgstr "DOI:n måste börja med {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "DOI:n för denna publikationer kommer vara {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "En DOI har inte tilldelats denna publikation." + +msgid "doi.editor.preview.chapters" +msgstr "Kapitel: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Publiceringsformat: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Fil: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Objekt" + +msgid "doi.manager.submissionDois" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "DOI (Digital Object Identifier)-prefixet tilldelas av CrossRef och är i formatet 10." +#~ "xxxx (t.ex. 10.1234)." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "DOI-prefix" + +#~ msgid "manager.setup.reviewProcessStandard" +#~ msgstr "Standard granskningsprocess" + +#~ msgid "manager.setup.reviewProcessEmail" +#~ msgstr "Granskningsprocess med e-postbilaga" + +#~ msgid "manager.setup.reviewProcess" +#~ msgstr "Granskningsprocess" diff --git a/locale/sv/submission.po b/locale/sv/submission.po new file mode 100644 index 00000000000..4a81a86006f --- /dev/null +++ b/locale/sv/submission.po @@ -0,0 +1,582 @@ +# Magnus Annemark , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-05-25 08:59+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Välj komponent" + +msgid "submission.title" +msgstr "Boktitel" + +msgid "submission.select" +msgstr "Välj bidrag" + +msgid "submission.synopsis" +msgstr "Synopsis" + +msgid "submission.workflowType" +msgstr "Typ av bidrag" + +msgid "submission.workflowType.description" +msgstr "" +"En monografi är ett verk författat i sin helhet av en eller flera " +"författare. En antologi har flera olika författare för varje kapitel " +"(detaljer om varje kapitel läggs till senare i processen)." + +msgid "submission.workflowType.editedVolume.label" +msgstr "Antologi" + +msgid "submission.workflowType.editedVolume" +msgstr "Antologi: Författare är knutna till sina respektive kapitel." + +msgid "submission.workflowType.authoredWork" +msgstr "Monografi: Författare är knutna till boken som helhet." + +msgid "submission.workflowType.change" +msgstr "Ändra" + +msgid "submission.editorName" +msgstr "{$editorName} (red.)" + +msgid "submission.monograph" +msgstr "Monografi" + +msgid "submission.published" +msgstr "Klar för produktion" + +msgid "submission.fairCopy" +msgstr "Renskrift" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Tillstånd" + +msgid "submission.chapter" +msgstr "Kapitel" + +msgid "submission.chapters" +msgstr "Kapitel" + +msgid "submission.chapter.addChapter" +msgstr "Lägg till kapitel" + +msgid "submission.chapter.editChapter" +msgstr "Redigera kapitel" + +msgid "submission.chapter.pages" +msgstr "Sidor" + +msgid "submission.copyedit" +msgstr "Manusredigering" + +msgid "submission.publicationFormats" +msgstr "Publikationsformat" + +msgid "submission.proofs" +msgstr "Korrekturer" + +msgid "submission.download" +msgstr "Ladda ned" + +msgid "submission.sharing" +msgstr "Dela" + +msgid "manuscript.submission" +msgstr "Skicka in manuskript" + +msgid "submission.round" +msgstr "Omgång {$round}" + +msgid "submissions.queuedReview" +msgstr "Under ganskning" + +msgid "manuscript.submissions" +msgstr "Inskickade bidrag" + +msgid "submission.metadata" +msgstr "Metadata" + +msgid "submission.supportingAgencies" +msgstr "Finansierande organisation" + +msgid "grid.action.addChapter" +msgstr "Skapa ett nytt kapitel" + +msgid "grid.action.editChapter" +msgstr "Redigera detta kapitel" + +msgid "grid.action.deleteChapter" +msgstr "Ta bort detta kapitel" + +msgid "submission.submit" +msgstr "Påbörja ett nytt bidrag" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Påbörja ett nytt bidrag i" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Nytt bidrag" + +msgid "submission.submit.upload" +msgstr "Ladda upp bidrag" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "Markera denna person som redaktör för volymen." + +msgid "submission.submit.seriesPosition" +msgstr "Position i serien" + +msgid "submission.submit.seriesPosition.description" +msgstr "Exempel: Bok 2, Volym 2" + +msgid "submission.submit.privacyStatement" +msgstr "Integritetspolicy" + +msgid "submission.submit.contributorRole" +msgstr "Medarbetarens roll" + +msgid "submission.submit.submissionFile" +msgstr "Fil" + +msgid "submission.submit.prepare" +msgstr "Förbered" + +msgid "submission.submit.catalog" +msgstr "Katalog" + +msgid "submission.submit.metadata" +msgstr "Metadata" + +msgid "submission.submit.finishingUp" +msgstr "Färdigställande" + +msgid "submission.submit.confirmation" +msgstr "Bekräftelse" + +msgid "submission.submit.nextSteps" +msgstr "Nästa steg" + +msgid "submission.submit.coverNote" +msgstr "Ansökningsbrev till redaktören" + +msgid "submission.submit.generalInformation" +msgstr "Allmän information" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Pressen har meddelats om ditt bidrag, och du har fått en bekräftelse via e-" +"post. Du kommer kontaktas när redaktören har gått igenom ditt bidrag." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Läs och fyll i checklistan . Det finns {$itemsRemaining} rutor som inte " +"kryssats i än." + +msgid "submission.submit.placement" +msgstr "Bidragets placering" + +msgid "submission.submit.userGroup" +msgstr "Skicka in bidraget i min roll som..." + +msgid "submission.submit.noContext" +msgstr "Bidragets press kunde inte hittas." + +msgid "grid.chapters.title" +msgstr "Kapitel" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Radera manusredaktörens dokument" + +msgid "submission.complete" +msgstr "Godkänd" + +msgid "submission.incomplete" +msgstr "Inväntar godkännande" + +msgid "submission.editCatalogEntry" +msgstr "Metadata" + +msgid "submission.catalogEntry.new" +msgstr "Lägg till i katalogen" + +msgid "submission.catalogEntry.add" +msgstr "Lägg till valda bidrag i katalogen" + +msgid "submission.catalogEntry.select" +msgstr "Välj böcker att lägga till i katalogen" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Du måste välja minst en bok att lägga till i katalogen." + +msgid "submission.catalogEntry.confirm" +msgstr "Lägg till den här boken i den publika katalogen" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Bekräfta att bidraget är klart att läggas till i katalogen." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Denna bok är färdig att lägga till i den publika katalogen." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Visa bidrag" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Publiceringsdatum" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Alla kapitel kommer använda det färdiga verkets publiceringsdatum." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Varje kapitel kan ges egna publiceringsdatum." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Monografi" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Katalog" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Publiceringsformat" + +msgid "submission.event.metadataPublished" +msgstr "Bokens metadata är godkänd för publicering." + +msgid "submission.event.metadataUnpublished" +msgstr "Bokens metadata är inte längre publicerad." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "" +"Publiceringsformatet \"{$publicationFormatName}\" har tillgängliggjorts." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" +"Publiceringsformatet \"{$publicationFormatName}\" är inte längre " +"tillgängligt." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Publiceringsformatet \"{$publicationFormatName}\" är godkänt för publicering." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "Publiceringsformatet \"{$publicationFormatName}\" är avpublicerat." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Metadatan har uppdaterats." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "Metadatan om publiceringsformatet \"{$formatName}\" har uppdaterats." + +msgid "submission.event.publicationFormatCreated" +msgstr "Publiceringsformatet \"{$formatName}\" har skapats." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Publiceringsformatet \"{$formatName}\" har raderats." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Skicka till extern granskning" + +msgid "workflow.review.externalReview" +msgstr "Extern granskning" + +msgid "submission.upload.fileContents" +msgstr "Bidragets komponent" + +msgid "submission.dependentFiles" +msgstr "Filer" + +msgid "submission.metadataDescription" +msgstr "" +"Dessa specifikationer baseras på Dublin Core-metadata, en internationell " +"standard för att beskriva informationsresurser." + +msgid "section.any" +msgstr "Alla serier" + +msgid "submission.list.monographs" +msgstr "Böcker" + +msgid "submission.list.countMonographs" +msgstr "{$count} böcker" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} av {$total} böcker" + +msgid "submission.list.orderFeatures" +msgstr "Sortera funktioner" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Dra och släpp eller använd upp- och nedknapparna för att ändra funktionernas " +"ordning på hemsidan." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Dra och släpp eller använd upp- och nedknapparna för att ändra funktionernas " +"ordning i {$title}." + +msgid "submission.list.saveFeatureOrder" +msgstr "Spara sortering" + +msgid "submission.list.viewEntry" +msgstr "Visa post" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} titlar" + +msgid "publication.catalogEntry" +msgstr "Metadata" + +msgid "publication.catalogEntry.success" +msgstr "Metadatan har uppdaterats." + +msgid "publication.invalidSeries" +msgstr "Serien kunde inte hittas." + +msgid "publication.inactiveSeries" +msgstr "{$series} (inaktiv)" + +msgid "publication.required.issue" +msgstr "Publikationen måste ingå i ett nummer innan den kan publiceras." + +msgid "publication.publishedIn" +msgstr "Publicerad i {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Alla publiceringskrav är uppfyllda. Är du säker på att du vill offentliggöra " +"boken?" + +msgid "publication.scheduledIn" +msgstr "Ska publiceras i {$issueName}." + +msgid "submission.publication" +msgstr "Publikation" + +msgid "publication.status.published" +msgstr "Publicerad" + +msgid "submission.status.scheduled" +msgstr "Planerad" + +msgid "publication.status.unscheduled" +msgstr "Inte planerad" + +msgid "submission.publications" +msgstr "Publikationer" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Upphovsrättsåret genereras automatiskt när detta publiceras i ett nummer." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Upphovsrättsåret kommer att genereras automatiskt baserat på publicerings " +"datum." + +msgid "publication.datePublished" +msgstr "Publiceringsdatum" + +msgid "publication.editDisabled" +msgstr "Versionen har publicerats och kan inte redigeras." + +msgid "publication.event.published" +msgstr "Bidraget är publicerat." + +msgid "publication.event.scheduled" +msgstr "Bidraget ska publiceras." + +msgid "publication.event.unpublished" +msgstr "Bidraget är avpublicerat." + +msgid "publication.event.versionPublished" +msgstr "En ny version har publicerats." + +msgid "publication.event.versionScheduled" +msgstr "En ny version ska publiceras." + +msgid "publication.event.versionUnpublished" +msgstr "En version har tagits bort från publikationen." + +msgid "publication.invalidSubmission" +msgstr "Bidraget för publikationen kan inte hittas." + +msgid "publication.publish" +msgstr "Publicera" + +msgid "publication.publish.requirements" +msgstr "Följande krav måste uppfyllas innan den kan publiceras." + +msgid "publication.required.declined" +msgstr "Ett avslaget bidrag kan inte publiceras." + +msgid "publication.required.reviewStage" +msgstr "" +"Bidraget måste vara i Manusredigerings- eller Produktionssteget innan det " +"kan publiceras." + +msgid "submission.license.description" +msgstr "" +"Licensen {$licenseName} läggs " +"till automatiskt när den är publicerad." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Upphovsrätt tilldelas automatiskt till {$copyright} när den är publicerad." + +msgid "submission.copyrightOther.description" +msgstr "Tilldela upphovsrätt för publicerade verk till följande." + +msgid "publication.unpublish" +msgstr "Avpublicera" + +msgid "publication.unpublish.confirm" +msgstr "Är du säker på att du vill avpublicera?" + +msgid "publication.unschedule.confirm" +msgstr "Vill du ta bort denna från publiceringsplanen?" + +msgid "publication.version.details" +msgstr "Publiceringsdetaljer för version {$version}" + +msgid "submission.queries.production" +msgstr "Produktionsdiskussioner" + +msgid "publication.chapter.landingPage" +msgstr "Kapitelsida" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Visa kapitlet på en separat sida och länka till denna från bokens " +"innehållsförteckning." + +msgid "publication.publish.success" +msgstr "Publiceringsstatus har ändrats." + +msgid "chapter.volume" +msgstr "Volym" + +msgid "submission.withoutChapter" +msgstr "{$name} —Utan detta kapitel" + +msgid "submission.chapterCreated" +msgstr " — Kapitel skapat" + +msgid "chapter.pages" +msgstr "Sidor" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/sv_SE/admin.po b/locale/sv_SE/admin.po deleted file mode 100644 index 3e6bc1fa873..00000000000 --- a/locale/sv_SE/admin.po +++ /dev/null @@ -1,116 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-08 03:32+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.settings.noPressRedirect" -msgstr "Omdirigera ej" - -msgid "admin.settings.redirectInstructions" -msgstr "" -"Anrop till huvudsidan kommer att dirigeras om till den valda pressen. Detta " -"kan till exempel vara lämpligt om webbplatsen endast hyser en press." - -msgid "admin.settings.redirect" -msgstr "Omdirigering av press" - -msgid "admin.settings.info.success" -msgstr "Informationen om webbplatsen har uppdaterats." - -msgid "admin.settings.config.success" -msgstr "Webbplatsens inställningar har uppdaterats." - -msgid "admin.settings.appearance.success" -msgstr "Webbplatsens utseende har uppdaterats." - -msgid "admin.hostedContexts" -msgstr "Pressar på den här webbplatsen" - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "" -"Välj ytterligare språk/regioner för installation i systemet. Språk/regioner " -"måste installeras innan de kan användas av pressar på sidan. För " -"instruktioner om hur ytterligare språk läggs till, se OMP-dokumentationen." - -msgid "admin.languages.confirmUninstall" -msgstr "" -"Är du säker på att du vill avinstallera detta språk/region? Detta kan " -"påverka pressar som för tillfället använder språket/regionen." - -msgid "admin.locale.maybeIncomplete" -msgstr "* Markerade språk/regioner kan vara ofullständiga." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "" -"Välj alla språk/regioner som ska finnas på sidan. De valda språken/" -"regionerna kommer kunna användas av sidans alla pressar, och kommer också " -"finnas i språkmenyn (som kan tas bort på sidor specifika för en viss press) " -"i den publika vyn. Om bara ett språk/region väljs kommer inte språkmenyn " -"vara synlig, och ytterligare språkinställningar kommer inte vara " -"tillgängliga för pressarna." - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "" -"Detta kommer vara det förinställda språket för installationen och för alla " -"hysta pressar." - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

            OBS\n" -"

            Systemet kunde inte skriva över konfigurationsfilen automatiskt. För att " -"göra ändringarna måste du öppna config.inc.php i en lämplig " -"texthanterare och byta ut dess innehåll med innehållet i textfältet " -"nedan.

            " - -msgid "admin.presses.addPress" -msgstr "Lägg till press" - -msgid "admin.contexts.contextDescription" -msgstr "Beskrivning av pressen" - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} har redigerats." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} har skapats." - -msgid "admin.contexts.form.pathExists" -msgstr "Den valda sökvägen används redan av en annan press." - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "" -"Sökvägen får bara innehålla bokstäver, nummer och tecknen _ och -. Den måste " -"börja och sluta med en bokstav eller ett nummer." - -msgid "admin.contexts.form.pathRequired" -msgstr "En sökväg krävs." - -msgid "admin.contexts.form.titleRequired" -msgstr "En titel krävs." - -msgid "admin.contexts.create" -msgstr "Skapa press" - -msgid "admin.presses.noneCreated" -msgstr "Inga pressar har skapats." - -msgid "admin.presses.pressSettings" -msgstr "Pressinställningar" - -msgid "admin.systemConfiguration" -msgstr "OMP-konfiguration" - -msgid "admin.systemVersion" -msgstr "OMP-version" - -msgid "admin.languages.confirmDisable" -msgstr "" -"Är du säker på att du vill avaktivera detta språk? Det kan påverka pressar " -"som använder språket." diff --git a/locale/sv_SE/author.po b/locale/sv_SE/author.po deleted file mode 100644 index c19e2ef902f..00000000000 --- a/locale/sv_SE/author.po +++ /dev/null @@ -1,15 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-01-24 16:02+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish " -"\n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "author.submit.notAccepting" -msgstr "Pressen tar inte emot bidrag för tillfället." diff --git a/locale/sv_SE/default.po b/locale/sv_SE/default.po deleted file mode 100644 index e657f9ed9bb..00000000000 --- a/locale/sv_SE/default.po +++ /dev/null @@ -1,182 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-18 18:39+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.groups.abbrev.sectionEditor" -msgstr "AcqE" - -msgid "default.groups.plural.sectionEditor" -msgstr "Redaktörer för serier" - -msgid "default.groups.name.sectionEditor" -msgstr "Redaktör för serie" - -msgid "default.groups.abbrev.manager" -msgstr "PM" - -msgid "default.genres.other" -msgstr "Övrigt" - -msgid "default.genres.illustration" -msgstr "Illustration" - -msgid "default.genres.photo" -msgstr "Fotografi" - -msgid "default.genres.chapter" -msgstr "Kapitelmanuskript" - -msgid "default.genres.manuscript" -msgstr "Bokmanuskript" - -msgid "default.genres.prospectus" -msgstr "Prospekt" - -msgid "default.genres.preface" -msgstr "Förord" - -msgid "default.genres.index" -msgstr "Index" - -msgid "default.genres.glossary" -msgstr "Ordlista" - -msgid "default.genres.appendix" -msgstr "Bilaga" - -msgid "default.groups.plural.volumeEditor" -msgstr "Redaktörer" - -msgid "default.groups.name.volumeEditor" -msgstr "Redaktör" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Kapitelförfattare" - -msgid "default.groups.name.chapterAuthor" -msgstr "Kapitelförfattare" - -msgid "default.genres.figure" -msgstr "Figur" - -msgid "default.genres.bibliography" -msgstr "Bibliografi" - -msgid "default.groups.abbrev.chapterAuthor" -msgstr "KF" - -msgid "default.groups.abbrev.editor" -msgstr "Red" - -msgid "default.groups.plural.editor" -msgstr "Redaktörer" - -msgid "default.groups.name.editor" -msgstr "Redaktör" - -msgid "default.groups.plural.manager" -msgstr "Föreståndare" - -msgid "default.groups.name.manager" -msgstr "Föreståndare" - -msgid "default.genres.table" -msgstr "Tabell" - -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

            De namn och e-postadresser som används på den här pressens webbplats " -"kommer endast att användas för pressens arbete och inte göras tillgängliga " -"för något annat syfte eller till tredje part.

            " - -msgid "default.contextSettings.checklist.bibliographicRequirements" -msgstr "" -"Texten följer de stilistiska och bibliografiska kraven som specificeras i Riktlinjer för författare, som hittas under Om pressen." - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"Texten har enkelt radavstånd; fonten är 12 punkter; använder kursivering " -"istället för understrykning (förutom vid URL-adresser); alla illustrationer, " -"figurer och tabeller är placerade på lämpliga platser i texten, inte sist i " -"dokumentet." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "I förekommande fall har URL för referenser bifogats." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "Bidragsfilen är i Microsoft Word-, RTF-, eller OpenDocument-filformat." - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"Bidraget är inte publicerat sedan tidigare, det övervägs inte heller för " -"publicering av annat förlag (eller så har en förklaring bifogats som en " -"kommentar till redaktören)." - -msgid "default.groups.abbrev.volumeEditor" -msgstr "Red." - -msgid "default.groups.abbrev.externalReviewer" -msgstr "EG" - -msgid "default.groups.plural.externalReviewer" -msgstr "Externa granskare" - -msgid "default.groups.name.externalReviewer" -msgstr "Extern granskare" - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Vi uppmuntrar bibliotekarier vid forskningsbibliotek att lista den här " -"pressen i sitt biblioteks bestånd av elektroniska böcker. Det kan också vara " -"värt att notera att den här pressens publiceringssystem, som utgör fri och " -"öppen programvara, är ett passande system för bibliotek att drifta för sina " -"forskare och de tidskrifter de arbetar med (se Open Journal Systems)." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"Är du intresserad av att skicka in ett bidrag till den här pressen? Då " -"rekommenderar vi att du läser igenom Om pressen-sidan för att få en uppfattning om pressens " -"sektionspolicyer, samt Riktlinjer för författare. För att skicka in ett " -"bidrag måste du som författare registrera dig hos pressen. Om du redan har ett konto kan du " -"bara logga in och påbörja processen, " -"som består av fem steg." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Vi uppmuntrar våra läsare att registrera sig för att få aviseringar från den " -"här pressen. Använd " -"Registrera dig-länken överst på pressens webbsida. Genom att registrera " -"sig där kan du som läsare få ett e-postmeddelande med innehållsförteckning " -"för varje nytt bok som publiceras. Listan gör också att pressen kan peka på " -"ett visst läsarunderlag. Se pressens Integritetspolicy, som försäkrar " -"dig som läsare att ditt namn eller e-postadress inte kommer användas för " -"andra syften." - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
            \n" -"________________________________________________________________________
            " -"\n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Den här pressen gör sitt innehåll fritt tillgängligt omedelbart vid " -"publicering enligt open access-principen om att det främjar ett ökat " -"kunskapsutbyte världen över om forskning är fritt tillgänglig." diff --git a/locale/sv_SE/editor.po b/locale/sv_SE/editor.po deleted file mode 100644 index ec972c0ddca..00000000000 --- a/locale/sv_SE/editor.po +++ /dev/null @@ -1,166 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-04 11:35+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish " -"\n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Meddelande till användaren" - -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Välja slutgiltiga utkastfiler" - -msgid "editor.monograph.externalReview" -msgstr "Påbörja extern granskning" - -msgid "editor.monograph.internalReviewDescription" -msgstr "" -"Välj filer nedan som ska skickas vidare till det interna granskningssteget." - -msgid "editor.monograph.internalReview" -msgstr "Påbörja intern granskning" - -msgid "editor.monograph.selectProofreadingFiles" -msgstr "Korrekturläsningsfiler" - -msgid "editor.monograph.editorToEnter" -msgstr "Redaktör anger rekommendation/kommentarer till granskaren" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Granskningsalternativ" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Ladda upp granskning" - -msgid "editor.monograph.replaceReviewer" -msgstr "Ersätt granskare" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "Välj en granskare ovan och tryck 'Välj granskare' för att fortsätta." - -msgid "editor.monograph.recommendation" -msgstr "Rekommendation" - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Ange rekommendation för granskare" - -msgid "editor.monograph.enterRecommendation" -msgstr "Ange rekommendation" - -msgid "editor.monograph.clearReview" -msgstr "Rensa granskare" - -msgid "editor.monograph.cancelReview" -msgstr "Avbryt förfrågan" - -msgid "editor.submissionArchive" -msgstr "Bidragsarkiv" - -msgid "editor.publicIdentificationExistsForTheSameType" -msgstr "" -"ID:t {$publicIdentifier}' är redan angivet för ett annat objekt av samma " -"typ. Välj ett unikt ID för objekt av samma typ i din press." - -msgid "editor.monograph.proof.addNote" -msgstr "Lägg till svar" - -msgid "editor.monograph.approvedProofs.edit.linkTitle" -msgstr "Ange villkor" - -msgid "editor.monograph.approvedProofs.edit" -msgstr "Ange villkor för nedladdning" - -msgid "editor.monograph.production.approvalAndPublishingDescription" -msgstr "" -"Olika publikationsformat, som t.ex. inbunden, limmad och digital, kan laddas " -"upp i sektionen Publikationsformat nedan. Du kan använda rutnätet för " -"publikationsformat nedan som en checklista för vad som fortfarande behöver " -"åtgärdas innan publikationsformation kan publiceras." - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Godkännande och publicering" - -msgid "editor.monograph.proofs" -msgstr "Korrekturer" - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Renskrift" - -msgid "editor.monograph.legend.complete" -msgstr "Åtgärd avslutad" - -msgid "editor.monograph.legend.in_progress" -msgstr "Åtgärd pågår eller ännu ej avslutad" - -msgid "editor.monograph.legend.delete" -msgstr "Ta bort objekt" - -msgid "editor.monograph.legend.edit" -msgstr "Redigera objekt" - -msgid "editor.monograph.legend.notes_new" -msgstr "" -"Filinformation: anteckningar, meddelandealternativ, och historik (Nya " -"anteckningar finns)" - -msgid "editor.monograph.legend.notes" -msgstr "" -"Filinformation: anteckningar, meddelandealternativ, och historik (" -"Anteckningar finns)" - -msgid "editor.monograph.legend.notes_none" -msgstr "" -"Filinformation: anteckningar, meddelandealternativ, och historik (Inga " -"anteckningar tillagda ännu)" - -msgid "editor.monograph.legend.more_info" -msgstr "" -"Ytterligare information: anteckningar, meddelandealternativ, och historik" - -msgid "editor.monograph.legend.settings" -msgstr "" -"Visa objektets inställningar, t.ex. information och borttagningsmöjligheter" - -msgid "editor.monograph.legend.add_user" -msgstr "Lägg till en användare till sektionen" - -msgid "editor.monograph.legend.add" -msgstr "Ladda upp en fil till sektionen" - -msgid "editor.monograph.legend.participants" -msgstr "" -"Visa och hantera detta bidrags deltagare: författare, redaktörer, " -"formgivare, etc." - -msgid "editor.monograph.legend.bookInfo" -msgstr "" -"Visa och hantera bidragets metadata, anteckningar, meddelanden, och historik" - -msgid "editor.monograph.legend.catalogEntry" -msgstr "" -"Visa och hantera bidragets katalogpost, inklusive metadata och " -"publikationsformat" - -msgid "editor.monograph.legend.itemActionsDescription" -msgstr "Åtgärder och alternativ för en enskild fil." - -msgid "editor.monograph.legend.sectionActionsDescription" -msgstr "" -"Alternativ för en given sektion, exempelvis uppladdning av filer eller " -"användarhantering." - -msgid "editor.monograph.legend.submissionActionsDescription" -msgstr "Allmänna åtgärder och alternativ för bidrag." - -msgid "editor.monograph.copyediting.currentFiles" -msgstr "Aktuella filer" - -msgid "editor.monograph.final.currentFiles" -msgstr "Aktuella slutgiltiga utkastfiler" diff --git a/locale/sv_SE/emails.po b/locale/sv_SE/emails.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/sv_SE/emails.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/sv_SE/locale.po b/locale/sv_SE/locale.po deleted file mode 100644 index b07181a6003..00000000000 --- a/locale/sv_SE/locale.po +++ /dev/null @@ -1,1300 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-03 07:34+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish " -"\n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "monograph.coverImage" -msgstr "Omslag" - -msgid "monograph.audience.success" -msgstr "Publikinställningarna har uppdaterats." - -msgid "monograph.audience" -msgstr "Publik" - -msgid "catalog.foundTitleSearch" -msgstr "En titel matchade ditt sökord \"{$searchQuery}\"." - -msgid "catalog.noTitlesSearch" -msgstr "Inga titlar matchar din sökfråga \"{$searchQuery}\"." - -msgid "catalog.noTitlesNew" -msgstr "Inga nya utgivningar är tillgängliga för tillfället." - -msgid "catalog.noTitles" -msgstr "Inga titlar har publicerats ännu." - -msgid "catalog.manage.isNotNewRelease" -msgstr "Denna bok är inte en ny utgivning. Markera den som ny utgivning." - -msgid "catalog.manage.isNewRelease" -msgstr "" -"Denna boken är markerad som ny utgivning. Avmarkera den som ny utgivning." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Sök efter titel och författare" - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Ny utgivning i serie" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Ny utgivning i kategori" - -msgid "catalog.manage.feature.newRelease" -msgstr "Ny utgivning" - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Boken är avmarkerad som ny release." - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Boken är markerad som en ny utgivning." - -msgid "catalog.manage.noMonographs" -msgstr "Det finns inga böcker tilldelade." - -msgid "catalog.manage.manageCategories" -msgstr "Hantera kategorier" - -msgid "catalog.manage.manageSeries" -msgstr "Hantera serier" - -msgid "catalog.manage.newRelease" -msgstr "Utgivning" - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Karusell" - -msgid "catalog.selectCategory" -msgstr "Välj kategori" - -msgid "catalog.selectSeries" -msgstr "Välj serie" - -msgid "catalog.manage.series.printIssn" -msgstr "Print-ISSN" - -msgid "catalog.manage.series.onlineIssn" -msgstr "Online-ISSN" - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "Online- och print-ISSN får inte matcha." - -msgid "catalog.manage.series.issn.validation" -msgstr "Ange ett giltigt ISSN." - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series" -msgstr "Serier" - -msgid "catalog.manage.category" -msgstr "Kategori" - -msgid "catalog.manage.newReleases" -msgstr "Nya utgivningar" - -msgid "catalog.manage" -msgstr "Kataloghantering" - -msgid "series.featured.description" -msgstr "Serien kommer visas i huvudmenyn" - -msgid "series.series" -msgstr "Serier" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Tillgängliga filer" - -msgid "grid.reviewAttachments.add" -msgstr "Lägg till bilaga till granskning" - -msgid "grid.action.formatAvailable" -msgstr "Stäng eller öppna tillgängligheten för detta format" - -msgid "grid.action.availableRepresentation" -msgstr "Godkänn/avslå detta format" - -msgid "grid.action.approveProofs" -msgstr "Visa korrekturer" - -msgid "grid.action.submissionEmail" -msgstr "Tryck för att läsa detta e-mail" - -msgid "grid.action.moreAnnouncements" -msgstr "Gå till meddelanden" - -msgid "grid.action.publicationFormatTab" -msgstr "Visa fliken med publikationsformat" - -msgid "grid.action.createContext" -msgstr "Skapa en ny press" - -msgid "grid.action.deleteDate" -msgstr "Ta bort datum" - -msgid "grid.action.editDate" -msgstr "Redigera datum" - -msgid "grid.action.addDate" -msgstr "Lägg till publiceringsdatum" - -msgid "grid.action.deleteMarket" -msgstr "Ta bort marknad" - -msgid "grid.action.editMarket" -msgstr "Redigera marknad" - -msgid "grid.action.addMarket" -msgstr "Lägg till marknad" - -msgid "grid.action.deleteRights" -msgstr "Ta bort dessa rättigheter" - -msgid "grid.action.editRights" -msgstr "Redigera dessa rättigheter" - -msgid "grid.action.addRights" -msgstr "Ange försäljningsrättigheter" - -msgid "grid.action.deleteCode" -msgstr "Ta bort kod" - -msgid "grid.action.editCode" -msgstr "Redigera kod" - -msgid "grid.action.addCode" -msgstr "Lägg till kod" - -msgid "grid.action.manageSeries" -msgstr "Konfigurera serier" - -msgid "grid.action.manageCategories" -msgstr "Konfigurera kategorier" - -msgid "grid.action.feature" -msgstr "Koppla på funktionsdisplayen" - -msgid "grid.action.publicCatalog" -msgstr "Visa detta objekt i katalogen" - -msgid "grid.action.newCatalogEntry" -msgstr "Ny katalogpost" - -msgid "grid.action.addAnnouncement" -msgstr "Lägg till ett meddelande" - -msgid "grid.action.pageProofApproved" -msgstr "Korrekturfilen är färdig för publicering" - -msgid "grid.action.approveProof" -msgstr "Godkänn korrekturen för indexering och inkludering i katalogen" - -msgid "grid.action.addFormat" -msgstr "Lägg till publikationsformat" - -msgid "grid.action.deleteFormat" -msgstr "Ta bort detta format" - -msgid "grid.action.editFormat" -msgstr "Redigera detta format" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Formatet visas i katalogposten" - -msgid "grid.action.catalogEntry" -msgstr "Visa katalogpost" - -msgid "grid.libraryFiles.column.files" -msgstr "Filer" - -msgid "manager.series.indexed" -msgstr "Indexerad" - -msgid "manager.series.open" -msgstr "Öppna bidrag" - -msgid "grid.action.addSpotlight" -msgstr "Lägg till spotlight" - -msgid "grid.action.deleteSpotlight" -msgstr "Ta bort spotlight" - -msgid "grid.action.editSpotlight" -msgstr "Redigera spotlight" - -msgid "grid.content.spotlights.titleRequired" -msgstr "En spotlight-titel krävs." - -msgid "grid.content.spotlights.itemRequired" -msgstr "Ett objekt krävs." - -msgid "grid.content.spotlights.form.type.book" -msgstr "Bok" - -msgid "grid.content.spotlights.form.title" -msgstr "Spotlight-titel" - -msgid "grid.content.spotlights.form.item" -msgstr "Ange spotlight-titeln (autocomplete)" - -msgid "grid.content.spotlights.form.location" -msgstr "Plats för spotlight" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Hemsida" - -msgid "grid.content.spotlights.spotlightItemTitle" -msgstr "Spotlight-element" - -msgid "spotlight.author" -msgstr "Författare, " - -msgid "spotlight.noneExist" -msgstr "Det finns inga aktuella spotlights." - -msgid "spotlight.spotlights" -msgstr "Spotlights" - -msgid "spotlight" -msgstr "Spotlight" - -msgid "grid.action.deleteRepresentative" -msgstr "Ta bort representant" - -msgid "grid.action.editRepresentative" -msgstr "Redigera representant" - -msgid "grid.action.addRepresentative" -msgstr "Lägg till representant" - -msgid "grid.catalogEntry.representativesDescription" -msgstr "" -"Lämna denna del tom om du levererar dina egna tjänster till dina kunder." - -msgid "grid.catalogEntry.representativeIdType" -msgstr "Typ av representant-ID (GLN rekommenderas)" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "Representant-ID" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Webbsida" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "E-mail" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Telefon" - -msgid "grid.catalogEntry.representativeName" -msgstr "Namn" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Roll" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Välj en roll:" - -msgid "grid.catalogEntry.supplier" -msgstr "Leverantör" - -msgid "grid.catalogEntry.agentTip" -msgstr "" -"Du kan välja en agent som representerar dig i det definierade området. Det " -"är ej obligatoriskt." - -msgid "grid.catalogEntry.agent" -msgstr "Agent" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Leverantörer" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Agenter" - -msgid "grid.catalogEntry.representativeType" -msgstr "Typ av representant" - -msgid "grid.catalogEntry.representatives" -msgstr "Representanter" - -msgid "grid.catalogEntry.dateRequired" -msgstr "Ett datum krävs och värdet måste matcha det valda datumformatet." - -msgid "grid.catalogEntry.dateFormat" -msgstr "Datumformat" - -msgid "grid.catalogEntry.dateRole" -msgstr "Roll" - -msgid "grid.catalogEntry.dateValue" -msgstr "Datum" - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Ett datumformat krävs." - -msgid "grid.catalogEntry.roleRequired" -msgstr "En representant-roll krävs." - -msgid "grid.catalogEntry.publicationDates" -msgstr "Publiceringsdatum" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Område" - -msgid "grid.catalogEntry.markets" -msgstr "Marknadsområde" - -msgid "grid.catalogEntry.excluded" -msgstr "Exkluderad" - -msgid "grid.catalogEntry.included" -msgstr "Inkluderad" - -msgid "grid.catalogEntry.regions" -msgstr "Regioner" - -msgid "grid.catalogEntry.countries" -msgstr "Länder" - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "" -"Det finns redan en ROW-försäljningstyp (resten av världen) definierad för " -"detta publikationsformat." - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "" -"Kryssa i för att använda försäljningsrättigheterna för hela ditt format. " -"Länder och regioner behöver inte anges i detta fall." - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Digitalt tekniskt skydd" - -msgid "monograph.task.addNote" -msgstr "Lägg till i uppgift" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Resten av världen?" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Typ av försäljningsrättigheter" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Kodvärde" - -msgid "grid.catalogEntry.salesRights" -msgstr "Försäljningsrättigheter" - -msgid "grid.catalogEntry.valueRequired" -msgstr "Det krävs ett värde." - -msgid "grid.catalogEntry.codeRequired" -msgstr "Identifikationskod krävs." - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "ONIX-kodtyp" - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Kodvärde" - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "Sammansättningskod för produkten måste anges." - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "En tillgänglighetskod för produkten krävs." - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Angiven filstorlek krävs." - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Inväntar godkännande" - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Godkänd" - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Korrektur ej godkänd." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Format finns ej i katalogpost." - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Katalogpost ej godkänd." - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

            Gör detta format stängt för läsaren. Nedladdningsbara filer " -"kommer inte vara synliga i bokens katalogpost.

            " - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "" -"

            Gör detta format öppet tillgängligt för läsare. Nedladdningsbara " -"filer visas i bokens katalogpost.

            " - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Formatets tillgänglighet" - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "

            Ange att formatets metadata inte har godkänts.

            " - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" -"

            Godkänn metadatan för detta format. Metadata kan kontrolleras genom " -"katalogposten.

            " - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Godkänn format" - -msgid "grid.catalogEntry.proof" -msgstr "Korrektur" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Ej tillgänglig" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Tillgänglig" - -msgid "grid.catalogEntry.availability" -msgstr "Tillgänglighet" - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Ett publikationsformat måste väljas." - -msgid "grid.catalogEntry.monographRequired" -msgstr "Ett monografi-id krävs." - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL till externt material" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Detta format är tillgängligt på en separat webbsida" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Fysiskt format" - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Formatdetaljer" - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Ett giltigt pris krävs." - -msgid "grid.catalogEntry.nameRequired" -msgstr "Ett namn krävs." - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Publikationsformat" - -msgid "monograph.publicationFormat.openTab" -msgstr "Öppna fliken för publikationsformat." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "" -"

            Det valda publikationsformatet existerar inte längre i denna " -"monografi.

            " - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Vissa metadatafält saknas." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Identifikationskod saknas." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Marknader och priser saknas." - -msgid "monograph.publicationFormat.isApproved" -msgstr "" -"Inkludera metadatan för detta publikationsformat i katalogposten för denna " -"bok." - -msgid "monograph.publicationFormat.taxType" -msgstr "Typ av beskattning" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Beskattningsprocent" - -#, fuzzy -msgid "monograph.publicationFormat.productRegion" -msgstr "Region för distribution" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Tillverkningsland" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Bredd" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Vikt" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Tjocklek" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Höjd" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Mata in din egen filstorlek?" - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Filstorlek i MB" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Fysiska dimensioner" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Digital information" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Returindikator" - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Produktens tillgänglighet" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Rabattprocent, om tillämpligt" - -msgid "monograph.publicationFormat.priceType" -msgstr "Pristyp" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Ange pris (obligatoriskt)." - -msgid "monograph.publicationFormat.price" -msgstr "Pris" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Identifikatorer" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Detaljer (ej obligatoriskt)" - -msgid "monograph.publicationFormat.productComposition" -msgstr "Produktens sammansättning" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Sidantal" - -msgid "monograph.publicationFormat.imprint" -msgstr "Imprint (förlagsetikett)" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Open Access" - -msgid "submission.pageProofs" -msgstr "Korrektur" - -msgid "monograph.type" -msgstr "Typ av bidrag" - -msgid "monograph.carousel.publicationFormats" -msgstr "Format:" - -msgid "monograph.miscellaneousDetails" -msgstr "Detaljer om denna publikation" - -msgid "monograph.publicationFormatDetails" -msgstr "Detaljer om det tillgängliga publikationsformatet: {$format}" - -msgid "monograph.publicationFormat" -msgstr "Format" - -msgid "monograph.publicationFormats" -msgstr "Publikationsformat" - -msgid "monograph.languages" -msgstr "Språk (engelska, franska, spanska)" - -msgid "monograph.audience.rangeExact" -msgstr "Publikintervall (exakt)" - -msgid "monograph.audience.rangeTo" -msgstr "Publikintervall (till)" - -msgid "monograph.audience.rangeFrom" -msgstr "Publikintervall (från)" - -msgid "notification.type.public" -msgstr "Offentliga meddelanden" - -msgid "notification.type.userComment" -msgstr "En läsare har skrivit en kommentar till \"{$title}\"." - -msgid "notification.removedSubmission" -msgstr "Bidrag borttaget." - -msgid "notification.proofsApproved" -msgstr "Korrektur godkänd." - -msgid "notification.savedPublicationFormatMetadata" -msgstr "Metadata om publikationsformatet sparad." - -msgid "notification.savedCatalogMetadata" -msgstr "Metadata sparad." - -msgid "notification.removedMarket" -msgstr "Marknad borttagen." - -msgid "notification.editedMarket" -msgstr "Marknad redigerad." - -msgid "notification.addedMarket" -msgstr "Marknad tillagd." - -msgid "notification.removedRepresentative" -msgstr "Representant borttagen." - -msgid "notification.editedRepresentative" -msgstr "Representant redigerad." - -msgid "notification.addedRepresentative" -msgstr "Representant tillagd." - -msgid "notification.removedSalesRights" -msgstr "Försäljningsrättigheter borttagna." - -msgid "notification.editedSalesRights" -msgstr "Försäljningsrättigheter redigerade." - -msgid "notification.addedSalesRights" -msgstr "Försäljningsrättigheter tillagda." - -msgid "notification.removedPublicationFormat" -msgstr "Publikationsformat borttaget." - -msgid "notification.editedPublicationFormat" -msgstr "Publikationsformat redigerat." - -msgid "notification.addedPublicationFormat" -msgstr "Publikationsformat tillagt." - -msgid "notification.removedPublicationDate" -msgstr "Publiceringsdatum borttaget." - -msgid "notification.editedPublicationDate" -msgstr "Publiceringsdatum redigerat." - -msgid "notification.addedPublicationDate" -msgstr "Publiceringsdatum tillagt." - -msgid "notification.removedIdentificationCode" -msgstr "Identifikationskod borttagen." - -msgid "notification.editedIdentificationCode" -msgstr "Edifikationskod redigerad." - -msgid "notification.addedIdentificationCode" -msgstr "Identifikationskod tillagd." - -msgid "log.imported" -msgstr "{$userName} har importerat boken {$submissionId}." - -msgid "log.proofread.complete" -msgstr "{$proofreaderName} har skickat {$submissionId} till schemaläggning." - -msgid "log.proofread.assign" -msgstr "" -"{$assignerName} har valt {$proofreaderName} som korrekturläsare för " -"{$submissionId}." - -msgid "log.editor.editorAssigned" -msgstr "{$editorName} har valts som redaktör för bidraget {$submissionId}." - -msgid "log.editor.restored" -msgstr "Bidraget {$submissionId} har återförts i kön." - -msgid "log.editor.archived" -msgstr "Bidraget {$submissionId} har arkiverats." - -msgid "installer.installApplication" -msgstr "Installera Open Monograph Press" - -msgid "installer.ompUpgrade" -msgstr "OMP-uppgradering" - -msgid "installer.appInstallation" -msgstr "OMP-installation" - -msgid "help.goToEditPage" -msgstr "Öppna en ny sida för att redigera denna information" - -msgid "help.searchReturnResults" -msgstr "Tillbaka till sökresultat" - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "Redaktions- och publiceringsprocess i OMP" - -msgid "about.aboutThisPublishingSystem" -msgstr "Om detta publiceringssystem" - -msgid "about.pressSponsorship" -msgstr "Sponsorer" - -msgid "about.openAccessPolicy" -msgstr "Open access-policy" - -msgid "about.publicationFrequency" -msgstr "Publiceringsfrekvens" - -msgid "about.reviewPolicy" -msgstr "Granskningsprocess" - -msgid "about.privacyStatement" -msgstr "Integritetspolicy" - -msgid "about.copyrightNotice" -msgstr "Upplysningar om upphovsrätt" - -msgid "about.submissionPreparationChecklist" -msgstr "Checklista för bidrag" - -msgid "about.authorGuidelines" -msgstr "Riktlinjer för författare" - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Skapa ett nytt bidrag" - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} eller {$viewSubmissions}." - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} eller {$register} för att skicka in ett bidrag." - -msgid "about.onlineSubmissions.register" -msgstr "Registrera" - -msgid "about.onlineSubmissions.login" -msgstr "Inloggning" - -msgid "about.onlineSubmissions" -msgstr "Online-bidrag" - -msgid "about.submissions" -msgstr "Bidrag" - -msgid "about.seriesPolicies" -msgstr "Riktlinjer för serier och kategorier" - -msgid "about.editorialPolicies" -msgstr "Redaktionella riktlinjer" - -msgid "about.editorialTeam" -msgstr "Redaktionsmedlemmar" - -msgid "about.aboutContext" -msgstr "Om pressen" - -msgid "about.pressContact" -msgstr "Kontakt" - -msgid "site.pressView" -msgstr "Visa pressens webbsida" - -msgid "user.register.form.userGroupRequired" -msgstr "Du måste välja minst en roll" - -msgid "user.register.reviewerInterests" -msgstr "Intressen (väsentliga områden och forskningsmetoder):" - -msgid "user.register.reviewerDescription" -msgstr "Villig att granska bidrag för hela webbplatsen." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Villig att granska bidrag." - -msgid "user.register.authorDescription" -msgstr "Kan skicka in böcker till pressen." - -msgid "user.register.readerDescription" -msgstr "Meddelas genom e-mail när en bok publiceras." - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Lösenordet är för kort." - -msgid "user.register.privacyStatement" -msgstr "Integritetspolicy" - -msgid "user.register.noContexts" -msgstr "Det finns inga pressar där du kan registrera dig." - -msgid "user.register.selectContext" -msgstr "Välj vilken press du vill registrera dig hos:" - -msgid "user.role.productionEditors" -msgstr "Produktionsredaktörer" - -msgid "user.role.proofreaders" -msgstr "Korrekturläsare" - -msgid "user.role.editors" -msgstr "Redaktörer" - -msgid "user.role.subEditors" -msgstr "Serieredaktörer" - -msgid "user.role.managers" -msgstr "Föreståndare" - -msgid "user.role.proofreader" -msgstr "Korrekturläsare" - -msgid "user.role.subEditor" -msgstr "Serieredaktör" - -msgid "user.register.otherContextRoles" -msgstr "Begär följande roller." - -msgid "user.register.contextsPrompt" -msgstr "Vilka pressar vill du registrera dig hos?" - -msgid "user.reviewerPrompt.optin" -msgstr "" -"Ja, kontakta mig med förfrågningar om att granska bidrag till denna press." - -msgid "user.reviewerPrompt.userGroup" -msgstr "Ja, ansök om rollen {$userGroup}." - -msgid "user.reviewerPrompt" -msgstr "Vill du granska bidrag till denna press?" - -msgid "user.noRoles.regReviewerClosed" -msgstr "" -"Registrera dig som granskare: Granskarregistrering är för tillfället " -"avstängd." - -msgid "user.noRoles.regReviewer" -msgstr "Registrera dig som granskare" - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Skicka in en bok: Författarregistrering är för tillfället avstängd." - -msgid "user.noRoles.submitMonograph" -msgstr "Skicka in ett förslag" - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Inkludera användare utan roller i denna press." - -msgid "context.select" -msgstr "Byt press:" - -msgid "context.current" -msgstr "Aktuell press:" - -msgid "context.contexts" -msgstr "Pressar" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Länk till dina nya utgivningar." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Nya utgivningar" - -msgid "navigation.navigationMenus.category.description" -msgstr "Länk till en kategori." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Kategori" - -msgid "navigation.navigationMenus.series.description" -msgstr "Länk till en serie." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Serier" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Länk till din katalog." - -msgid "context.context" -msgstr "Press" - -msgid "user.role.pressEditor" -msgstr "Redaktör" - -msgid "user.role.manager" -msgstr "Föreståndare" - -msgid "notification.type.editorAssignmentTask" -msgstr "En ny bok har skickats in och behöver tilldelas en redaktör." - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "se dina pågående bidrag" - -msgid "submission.round" -msgstr "Omgång {$round}" - -msgid "user.profile.form.hideOtherContexts" -msgstr "Dölj andra pressar" - -msgid "user.profile.form.showOtherContexts" -msgstr "Registrera dig vid andra pressar" - -msgid "submission.pdf.download" -msgstr "Ladda ned denna PDF-fil" - -msgid "payment.directSales.monograph.description" -msgstr "" -"Denna transaktion gäller för köp av en direktnedladdning av en enskild bok " -"eller bokkapitel." - -msgid "payment.directSales.monograph.name" -msgstr "Köp bok- eller kapitel-nedladdning" - -msgid "payment.directSales.download" -msgstr "Ladda ned{$format}" - -msgid "payment.directSales.purchase" -msgstr "Köp {$format} ({$amount} {$currency})" - -msgid "payment.directSales.validPriceRequired" -msgstr "Ett giltigt pris i numeriska värden krävs." - -msgid "payment.directSales.openAccess" -msgstr "Open access" - -msgid "payment.directSales.notSet" -msgstr "Ej inställd" - -msgid "payment.directSales.notAvailable" -msgstr "Ej tillgänglig" - -msgid "payment.directSales.amount" -msgstr "{$amount} ({$currency})" - -msgid "payment.directSales.directSales" -msgstr "Direkt försäljning" - -msgid "payment.directSales.numericOnly" -msgstr "Priser ska endast anges i numeriska värden. Ange inte valutasymboler." - -msgid "payment.directSales.priceCurrency" -msgstr "Pris ({$currency})" - -msgid "payment.directSales.approved" -msgstr "Godkänd" - -msgid "payment.directSales.catalog" -msgstr "Katalog" - -msgid "payment.directSales.availability" -msgstr "Tillgänglighet" - -msgid "payment.directSales.price" -msgstr "Pris" - -msgid "payment.directSales" -msgstr "Ladda ned från webbsidan" - -msgid "user.authorization.workflowStageAssignmentMissing" -msgstr "Åtkomst nekad! Du har inte tillgång till detta steg i arbetsflödet." - -msgid "user.authorization.seriesAssignment" -msgstr "Du försöker nå en bok som inte är en del av din serie." - -msgid "user.authorization.invalidMonograph" -msgstr "Fel bok, eller ingen bok, har begärts!" - -msgid "user.authorization.noContext" -msgstr "Ingen press i kontexten!" - -msgid "user.authorization.monographFile" -msgstr "Du har nekats tillgång till den specifika filen." - -msgid "user.authorization.monographReviewer" -msgstr "Du har nekats tillgång eftersom du inte är granskare för denna bok." - -msgid "user.authorization.monographAuthor" -msgstr "Du har nekats tillgång eftersom du inte är författare till denna bok." - -msgid "user.authorization.invalidReviewAssignment" -msgstr "Du har nekats tillgång eftersom du inte är granskare för denna bok." - -msgid "notification.type.visitCatalogTitle" -msgstr "Katalogadministration" - -msgid "notification.type.configurePaymentMethod" -msgstr "Välj en betalningsmetod för att kunna ställa in försäljningsalternativ." - -msgid "notification.type.configurePaymentMethod.title" -msgstr "Ingen betalningsmetod bestämd." - -msgid "notification.type.formatNeedsApprovedSubmission" -msgstr "" -"Boken kommer inte synas i katalogen förrän den är publicerad. Tryck på " -"publicera-fliken för att lägga till boken i katalogen." - -msgid "notification.type.approveSubmissionTitle" -msgstr "Inväntar godkännande." - -msgid "notification.type.approveSubmission" -msgstr "" -"Detta bidrag väntar på godkännande i katalogposten innan det blir synligt i " -"den publika vyn." - -msgid "notification.type.editorDecisionInternalReview" -msgstr "Den interna granskningsprocessen har inletts." - -msgid "notification.type.indexRequest" -msgstr "Du har ombetts att indexera \"{$title}\"." - -msgid "notification.type.layouteditorRequest" -msgstr "Du har ombetts att granska layouter för \"{$title}\"." - -msgid "notification.type.copyeditorRequest" -msgstr "Du har ombetts att granska det redigerade manuset för \"{$file}\"." - -msgid "notification.type.submissions" -msgstr "Status för bidrag" - -msgid "notification.type.site" -msgstr "Webbplatshändelser" - -msgid "notification.type.reviewing" -msgstr "Status för granskning" - -msgid "notification.type.editing" -msgstr "Status för redigering" - -msgid "user.register.registrationDisabled" -msgstr "Pressen har stängt av användarregistrering." - -msgid "user.role.copyeditors" -msgstr "Manusredaktörer" - -msgid "user.role.productionEditor" -msgstr "Produktionsredaktör" - -msgid "user.role.copyeditor" -msgstr "Manusredaktör" - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Om du har anmält dig som granskare för en press, anmäl dina ämnesintressen." - -msgid "navigation.linksAndMedia" -msgstr "Länkar och sociala medier" - -msgid "navigation.wizard" -msgstr "Inställningsguide" - -msgid "navigation.published" -msgstr "Publicerad" - -msgid "navigation.newReleases" -msgstr "Nya utgivningar" - -msgid "navigation.catalog.administration" -msgstr "Katalogadministration" - -msgid "navigation.catalog.administration.short" -msgstr "Administreration" - -msgid "navigation.catalog.manage" -msgstr "Administrera" - -msgid "navigation.infoForLibrarians.long" -msgstr "Information för bibliotekarier" - -msgid "navigation.infoForAuthors.long" -msgstr "Information för författare" - -msgid "navigation.infoForLibrarians" -msgstr "För bibliotekarier" - -msgid "navigation.infoForAuthors" -msgstr "För författare" - -msgid "navigation.catalog.administration.series" -msgstr "Serier" - -msgid "navigation.catalog.administration.categories" -msgstr "Kategorier" - -msgid "navigation.catalog.allMonographs" -msgstr "Alla böcker" - -msgid "navigation.competingInterestPolicy" -msgstr "Policy för intressekonflikter" - -msgid "navigation.catalog" -msgstr "Katalog" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.listbuilder.itemExists" -msgstr "Du kan inte lägga till samma objekt samtidigt." - -msgid "common.listbuilder.selectValidOption" -msgstr "Välj ett giltigt alternativ i listan." - -msgid "common.listbuilder.completeForm" -msgstr "Fyll i alla fält i formuläret." - -msgid "common.moreInfo" -msgstr "Mer information" - -msgid "common.searchCatalog" -msgstr "Sök katalog" - -msgid "common.preview" -msgstr "Förhandsvisning" - -msgid "common.prefix" -msgstr "Prefix" - -msgid "common.publications" -msgstr "Böcker" - -msgid "common.publication" -msgstr "Bok" - -msgid "submission.search" -msgstr "Sök böcker" - -msgid "catalog.viewableFile.title" -msgstr "{$type}-visning av filen {$title}" - -msgid "catalog.viewableFile.return" -msgstr "Tillbaka till detaljer om {$monographTitle}" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Position i serien (högst först)" - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Position i serien (lägst först)" - -msgid "catalog.sortBy.catalogDescription" -msgstr "Bestäm ordningen på böckerna i katalogen." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Bestäm ordningen på böckerna i denna kategori." - -msgid "catalog.sortBy.seriesDescription" -msgstr "Bestäm ordningen på böckerna i denna serie." - -msgid "catalog.sortBy" -msgstr "Ordna böcker" - -msgid "catalog.aboutTheAuthor" -msgstr "Om {$roleName}" - -msgid "catalog.category.subcategories" -msgstr "Underkategorier" - -msgid "catalog.parentCategory" -msgstr "Huvudkategori" - -msgid "catalog.categories" -msgstr "Kategorier" - -msgid "catalog.forthcoming" -msgstr "Kommande" - -msgid "catalog.published" -msgstr "Publicerad" - -msgid "catalog.publicationInfo" -msgstr "Information om publikationen" - -msgid "catalog.newReleases" -msgstr "Nya utgivningar" - -msgid "catalog.category.heading" -msgstr "Alla böcker" - -msgid "catalog.foundTitlesSearch" -msgstr "{$number} titlar hittades för sökfrågan \"{$searchQuery}\"." - -msgid "grid.action.proofApproved" -msgstr "Formatet har gått igenom korrektur" - -msgid "notification.type.submissionSubmitted" -msgstr "En ny bok, \"{$title},\" har skickats in." - -msgid "rt.metadata.pkp.dctype" -msgstr "Bok" - -msgid "debug.notes.helpMappingLoad" -msgstr "" -"Laddade om XML-hjälp för att mappa filen {$filename} till sökning efter " -"{$id}." - -msgid "payment.directSales.price.description" -msgstr "" -"Filformat kan tillgängliggöras för nedladdning från pressens hemsida utan " -"kostnad för läsaren (open access), eller genom direktförsäljning (genom en " -"online-betalsystem, vilket ställs in under Distribution). Välj " -"tillgänglighetsinställning för filen." - -msgid "user.authorization.workflowStageSettingMissing" -msgstr "" -"Åtkomst nekad! Användartypen du är inloggad som har inte blivit tilldelad " -"åtkomst till detta steg i arbetsflödet. Kontrollera dina inställningar." - -msgid "spotlight.title.homePage" -msgstr "I spotlight" - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "" -"Denna sidan använder Open Monograph Press {$ompVersion}, som är en open " -"source-programvara för bokpublicering, utvecklat av Public Knowledge Project under GNU General Public License." - -#, fuzzy -msgid "about.aboutOMPPress" -msgstr "" -"Denna press använder Open Monograph Press {$ompVersion}, som är en open " -"source-programvara för bokpublicering, utvecklat av Public Knowledge Project under GNU General Public License." - -msgid "about.submissionPreparationChecklist.description" -msgstr "" -"Författare som skickar in bidrag måste kontrollera att bidraget uppfyller " -"följande riktlinjer. Bidrag som inte efterlever riktlinjerna kan komma att " -"skickas tillbaka till författaren." - -msgid "navigation.skip.spotlights" -msgstr "Gå till spotlight" - -msgid "common.homePageHeader.altText" -msgstr "Hemsidans sidhuvud" - -msgid "catalog.loginRequiredForPayment" -msgstr "" -"N.B.: För att kunna göra ett köp måste du först logga in. Du kommer skickas " -"till inloggningssidan när du valt en vara att köpa. Alla böcker med en open " -"access-ikon kan laddas ned gratis, utan inloggning." - -msgid "catalog.dateAdded" -msgstr "Tillagd {$dateAdded}" - -msgid "series.path" -msgstr "Sökväg" - -msgid "grid.action.releaseMonograph" -msgstr "Markera detta bidrag som en 'ny utgivning'" - -msgid "grid.content.spotlights.locationRequired" -msgstr "Välj plats för denna spotlight." - -msgid "monograph.proofReadingDescription" -msgstr "" -"Layoutredaktören laddar upp filerna som är klara för publicering här. Använd " -"+Assign för att välja författare och andra för korrekturläsning." - -msgid "monograph.audience.rangeQualifier" -msgstr "Kvalificering av publikintervallet" diff --git a/locale/sv_SE/manager.po b/locale/sv_SE/manager.po deleted file mode 100644 index ce0554719a1..00000000000 --- a/locale/sv_SE/manager.po +++ /dev/null @@ -1,793 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-23 16:11+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.series.form.mustAllowPermission" -msgstr "" -"Minst en ruta i checklistan behöver kryssas i for varje serieredaktörs " -"uppdrag." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Detta kommer vara pressens default-språk." - -msgid "manager.languages.noneAvailable" -msgstr "" -"Det finns inga ytterligare språk. Kontakta din systemadministratör om du " -"vill använda andra språk." - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "" -"Detta kommer ersätta alla språkspecifika inställningar du har för detta språk" - -msgid "manager.series.open" -msgstr "Öppna bidrag" - -msgid "manager.series.indexed" -msgstr "Indexerad" - -msgid "manager.settings.press" -msgstr "Press" - -msgid "manager.settings.publisherCodeType.invalid" -msgstr "Detta är inte en giltig typ av förlagskod." - -msgid "manager.setup.announcementsIntroduction" -msgstr "Ytterligare information" - -msgid "manager.setup.announcementsDescription" -msgstr "" -"Meddelanden kan publiceras för att informera pressens läsare om nyheter och " -"evenemang. Publicerade meddelanden är synliga på sidan \"Meddelanden\"." - -msgid "manager.setup.announcements.success" -msgstr "Meddelandeinställningarna har uppdaterats." - -msgid "manager.setup.announcements" -msgstr "Meddelanden" - -msgid "manager.setup.addSponsor" -msgstr "Lägg till sponsor" - -msgid "manager.setup.addNavItem" -msgstr "Lägg till objekt" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Lägg till objekt i \"Om pressen\"" - -msgid "manager.setup.addItem" -msgstr "Lägg till objekt" - -msgid "manager.setup.addChecklistItem" -msgstr "Lägg till objekt i checklistan" - -msgid "manager.setup.aboutItemContent" -msgstr "Innehåll" - -msgid "manager.setup" -msgstr "Inställningar" - -msgid "manager.pressManagement" -msgstr "Pressinställningar" - -msgid "user.authorization.pluginLevel" -msgstr "Du har inte tillräckliga rättigheter för att hantera denna plugin." - -msgid "manager.system.payments" -msgstr "Betalningar" - -msgid "manager.system.readingTools" -msgstr "Läsverktyg" - -msgid "manager.system.reviewForms" -msgstr "Granskningsformulär" - -msgid "manager.system.archiving" -msgstr "Arkivering" - -msgid "manager.system" -msgstr "Systeminställningar" - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Du har inte administrativ behörighet till användaren. Detta kan bero på:\n" -"\t\t
              \n" -"\t\t\t
            • Användaren är en administratör
            • \n" -"\t\t\t
            • Användaren är aktiv i pressar du inte har rättigheter till
            • \n" -"\t\t
            \n" -"\tDetta måste utföras av en administratör.\n" -"\t" - -msgid "manager.people.confirmDisable" -msgstr "" -"Avaktivera användaren? Detta kommer förhindra användaren från att logga in i " -"systemet.\n" -"\n" -"Du kan även ge användaren ett skäl till avaktiveringen." - -msgid "manager.people.syncUserDescription" -msgstr "" -"Synkroniserad tilldelning innebär att samtliga användare inom en specifik " -"tidskrift kan tilldelas samma roll/funktion i den här pressen. Funktionen " -"gör det möjligt för en vald grupp av användare/funktioner (t.ex., granskare) " -"att synkroniseras mellan olika pressar." - -msgid "manager.people.mergeUsers.into.description" -msgstr "" -"Välj en användare till vilken den föregående användares bidrag, uppdrag, " -"etc. flyttas." - -msgid "manager.people.mergeUsers.from.description" -msgstr "" -"Välj en användare att slå ihop med ett annat användarkonto (t.ex. om en " -"person har två användarkonton). Det först valda kontot kommer raderas och " -"dess bidrag, uppdrag, etc. kommer flyttas över till det andra kontot." - -msgid "manager.people.enrollSyncPress" -msgstr "Med pressen" - -msgid "manager.people.enrollExistingUser" -msgstr "Anmäl en existerande användare" - -msgid "manager.people.confirmRemove" -msgstr "" -"Radera användaren från pressen? Detta kommer avanmäla användaren från alla " -"roller inom pressen." - -msgid "manager.people.allUsers" -msgstr "Alla anmälda användare" - -msgid "manager.people.allSiteUsers" -msgstr "Anmäl användare från systemet till pressen" - -msgid "manager.people.allPresses" -msgstr "Alla pressar" - -msgid "manager.people.allEnrolledUsers" -msgstr "Användare anmälda till pressen" - -msgid "manager.users.selectRole" -msgstr "Välj roll" - -msgid "manager.users.currentRoles" -msgstr "Aktuella roller" - -msgid "manager.users.availableRoles" -msgstr "Tillgängliga roller" - -msgid "manager.tools.statistics" -msgstr "" -"Verktyg för att generera rapporter för användningsstatistik (visningar av " -"katalogindex, visningar av abstractsidor, filnedladdningar)" - -msgid "manager.tools.importExport" -msgstr "" -"Alla verktyg för att importera och exportera data (press, bok, användare)" - -msgid "manager.tools" -msgstr "Verktyg" - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "" -"Begränsa resultat efter typ av objekt (press, serie, bok, filtyp) och/eller " -"efter ett eller flera objekt-id." - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Begränsa resultat efter kontext (serie och/eller bok)." - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Visningar av pressens huvudsida" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Visningar av seriers landningssidor" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Abstractsidor och nedladdningar" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Visningar av böckers abstractsidor" - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Nedladdningar av filer" - -msgid "manager.settings.distributionDescription" -msgstr "" -"Inställningar för distributionsprocessen (avisering, indexering, arkivering, " -"betalning, läsverktyg)." - -msgid "manager.settings.publisherCodeType" -msgstr "Typ av förlagskod" - -msgid "manager.settings.publisherCode" -msgstr "Förlagskod" - -msgid "manager.settings.location" -msgstr "Geografisk plats" - -msgid "manager.settings.publisher" -msgstr "Förlagets namn" - -msgid "manager.settings.publisher.identity.description" -msgstr "" -"Dessa fält är obligatoriska för att publicera giltig ONIX-metadata." - -msgid "manager.settings.publisher.identity" -msgstr "Förlagets identitet" - -msgid "manager.settings.pressSettings" -msgstr "Pressinställningar" - -msgid "manager.settings" -msgstr "Inställningar" - -msgid "manager.payment.success" -msgstr "Betalningsinställningarna har uppdaterats." - -msgid "manager.payment.options.enablePayments" -msgstr "" -"Betalningar kommer vara aktiverade för pressen. Användare måste logga in för " -"att betala." - -msgid "manager.payment.generalOptions" -msgstr "Allmänna inställningar" - -msgid "manager.series.restricted" -msgstr "Tillåt inte författare att skicka in bidrag direkt till serien." - -msgid "manager.series.seriesTitle" -msgstr "Serietitel" - -msgid "manager.series.existingUsers" -msgstr "Befintliga användare" - -msgid "manager.series.noneCreated" -msgstr "Inga serier har skapats än." - -msgid "manager.series.form.titleRequired" -msgstr "En titel för serien krävs." - -msgid "manager.series.form.abbrevRequired" -msgstr "En förkortning av seriens titel krävs." - -msgid "manager.series.unassigned" -msgstr "Tillgängliga serieredaktörer" - -msgid "manager.series.hideAbout" -msgstr "Undanta den här serien från \"Om pressen\"." - -msgid "manager.series.seriesEditorInstructions" -msgstr "" -"Ange en redaktör för serien. Ange därefter om serieredaktören ska ha tillsyn " -"över granskning (peer review) och/eller redaktion (manusredigering, layout " -"och korrektur) för bidrag till serien. Serieredaktörer kan skapas genom att " -"klicka på Series Editors under Roller i " -"Pressinställningar." - -msgid "manager.series.assigned" -msgstr "Redaktörer för serie" - -msgid "manager.series.policy" -msgstr "Beskrivning av serie" - -msgid "manager.series.create" -msgstr "Skapa serie" - -msgid "manager.series.book" -msgstr "Bokserier" - -msgid "manager.series.disableComments" -msgstr "Stäng av läsarkommentarer för serien." - -msgid "manager.series.abstractsNotRequired" -msgstr "Kräv inte abstract" - -msgid "manager.series.submissionsToThisSection" -msgstr "Inskickade bidrag till serien" - -msgid "manager.series.submissionReview" -msgstr "Kommer inte sakkunniggranskas" - -msgid "manager.series.readingTools" -msgstr "Läsverktyg" - -msgid "manager.series.confirmDelete" -msgstr "Är du säker på att du vill permanent radera serien?" - -msgid "manager.series.editorRestriction" -msgstr "Objekt kan bara skickas in av redaktörer och serieredaktörer." - -msgid "manager.series.submissionIndexing" -msgstr "Kommer inte inkluderas i indexering av pressen" - -msgid "manager.series.form.reviewFormId" -msgstr "Kontroller så du har valt ett giltigt formulär för granskning." - -msgid "manager.setup.aboutPress" -msgstr "Om pressen" - -msgid "manager.setup.focusScopeDescription" -msgstr "EXEMPELDATA" - -msgid "manager.setup.focusScope" -msgstr "Ämnesinriktning" - -msgid "manager.setup.focusAndScope.description" -msgstr "Beskriv pressens inriktning för läsare, författare och bibliotekarier." - -msgid "manager.setup.focusAndScope" -msgstr "Pressens ämnesinriktning" - -msgid "manager.setup.enableUserRegistration" -msgstr "Besökare kan registrera sig som användare av pressen." - -msgid "manager.setup.enablePublicGalleyId" -msgstr "" -"Anpassade identifierare kommer användas för att identifiera " -"publiceringsversioner (t.ex. HTML- eller PDF-filer) för publicerade verk." - -msgid "manager.setup.enablePublicMonographId" -msgstr "" -"Anpassade identifierare kommer användas för att identifiera publicerade verk." - -msgid "manager.setup.enablePressInstructions" -msgstr "Gör pressen publik" - -msgid "manager.setup.numAnnouncementsHomepage.description" -msgstr "" -"Hur många meddelanden som är synliga på förstasidan. Lämna fältet tomt för " -"att inte visa meddelanden på förstasidan." - -msgid "manager.setup.numAnnouncementsHomepage" -msgstr "Visa på förstasidan" - -msgid "manager.setup.enableAnnouncements.description" -msgstr "" -"Meddelanden kan innehålla information om nyheter och evenemang. Publicerade " -"meddelanden kommer att synas på sidan \"Meddelanden\"." - -msgid "manager.setup.enableAnnouncements.enable" -msgstr "Aktivera meddelanden" - -msgid "manager.setup.emailSignature.description" -msgstr "" -"E-postmeddelanden som skickas för pressens räkning av systemet kommer att ha " -"följande signatur i slutet." - -msgid "manager.setup.emailSignature" -msgstr "Signatur" - -msgid "manager.setup.emails" -msgstr "E-postidentifiering" - -msgid "manager.setup.emailBounceAddress.disabled" -msgstr "" -"För att skicka e-postmeddelanden som inte kan levereras till en bounce-" -"adress måste sidadministratören aktivera allow_envelope_sender " -"i konfigureringsfilen. Ytterligare serverkonfigurering kan komma att bli " -"nödvändig för att stödja den här funktionaliteten (något som inte alla " -"servrar tillåter, se OMP-dokumentationen för information)." - -msgid "manager.setup.emailBounceAddress.description" -msgstr "" -"E-postmeddelanden som inte kan levereras producerar ett felmeddelande som " -"skickas till denna adress." - -msgid "manager.setup.emailBounceAddress" -msgstr "Bounce-adress" - -msgid "manager.setup.editorDecision" -msgstr "Redaktörens beslut" - -msgid "manager.setup.doiPrefixDescription" -msgstr "" -"DOI (Digital Object Identifier)-prefixet tilldelas av CrossRef och är i formatet " -"10.xxxx (t.ex. 10.1234)." - -msgid "manager.setup.doiPrefix" -msgstr "DOI-prefix" - -msgid "manager.setup.displayNewReleases.label" -msgstr "Nya utgivningar" - -msgid "manager.setup.displayNewReleases" -msgstr "Visa nya utgivningar på förstasidan" - -msgid "manager.setup.displayOnHomepage" -msgstr "Innehåll på förstasidan" - -msgid "manager.setup.displayCurrentMonograph" -msgstr "Lägg till innehållsförteckningen för denna bok (om tillgängligt)." - -msgid "manager.setup.disciplineProvideExamples" -msgstr "Ge exempel på relevanta akademiska ämnesområden för pressen" - -msgid "manager.setup.disciplineExamples" -msgstr "" -"(T.ex. historia, pedagogik, sociologi, psykologi, kulturvetenskaper, " -"juridik)" - -msgid "manager.setup.disciplineDescription" -msgstr "" -"Kan exempelvis användas om pressen täcker in flera olika ämnesområden och/" -"eller när författare skickar in tvärvetenskapliga bidrag." - -msgid "manager.setup.discipline" -msgstr "Akademiskt ämnesområde" - -msgid "manager.setup.disableUserRegistration" -msgstr "" -"Pressansvarig registrerar alla användarkonton. Redaktörer och " -"sektionsredaktörer kan registrera användarkonton för granskare." - -msgid "manager.setup.details.description" -msgstr "Pressens namn, kontaktuppgifter, sponsorer och sökmotorer." - -msgid "manager.setup.details" -msgstr "Detaljer" - -msgid "manager.setup.customTagsDescription" -msgstr "" -"Anpassade header-taggar i HTML som kan placeras i varje sidas header (t.ex. " -"META-taggar)." - -msgid "manager.setup.customTags" -msgstr "Egna taggar" - -msgid "manager.setup.customizingTheLook" -msgstr "Steg 5. Anpassa utseendet" - -msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" -msgstr "" -"Bilder kommer förminskas om de överstiger denna storlek, men kommer aldrig " -"att bli uppskalade eller utsträckta för att passa." - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Maximal bredd för omslagsbild" - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Maximal höjd för omslagsbild" - -msgid "manager.setup.coverage" -msgstr "Täckning" - -msgid "manager.setup.copyrightNotice" -msgstr "Upphovsrättsvillkor" - -msgid "manager.setup.copyeditInstructionsDescription" -msgstr "" -"Instruktionerna kommer vara tillgängliga för manusredaktörer, författare och " -"sektionsredaktörer i manusredigeringssteget. Nedan finns default-" -"instruktioner i HTML, dessa kan ändras och/eller ersättas av pressansvarig (" -"i HTML eller fritext)." - -msgid "manager.setup.copyeditInstructions" -msgstr "Instruktioner för manusredaktörer" - -msgid "manager.setup.copyediting" -msgstr "Manusredaktörer" - -msgid "manager.setup.contextSummary" -msgstr "Kort beskrivning av pressen" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Skriv in information som kan vara intressant för läsare, författare eller " -"granskare. Detta kan exempelvis vara pressens open access-policy, " -"ämnesinriktning, sponsorer, och pressens historik." - -msgid "manager.setup.contextAbout" -msgstr "Om pressen" - -msgid "manager.setup.appearInAboutPress" -msgstr "(Kommer att visas under Om pressen) " - -msgid "manager.setup.announcementsIntroduction.description" -msgstr "" -"Lägg till ytterligare information som ska visas för läsare under Meddelanden." - -msgid "manager.setup.addAboutItem" -msgstr "Lägg till \"Om\"-objekt" - -msgid "manager.setup.provideRefLinkInstructions" -msgstr "Ge instruktioner till layoutredaktörer." - -msgid "manager.setup.proofreading" -msgstr "Korrekturläsare" - -msgid "manager.setup.proofingInstructionsDescription" -msgstr "" -"Korrekturinstruktionerna blir tillgängliga för korrekturläsare, författare, " -"layoutredaktörer och sektionsredaktörer in manusredigeringssteget. Nedan är " -"en uppsättning förinställda instruktioner i HTML-format. Dessa kan redigeras " -"eller bytas ut när som helst av pressansvarig (i HTML-format eller i " -"fritext)." - -msgid "manager.setup.proofingInstructions" -msgstr "Instruktioner för korrektur" - -msgid "manager.setup.printIssn" -msgstr "ISSN för fysiskt format" - -msgid "manager.setup.contextTitle" -msgstr "Pressens namn" - -msgid "manager.setup.pressThumbnail.description" -msgstr "" -"En liten logotyp eller annan bild som kan användas för att representera " -"pressen i listor." - -msgid "manager.setup.pressThumbnail" -msgstr "Miniatyrbild" - -msgid "manager.setup.pressTheme" -msgstr "Tema" - -msgid "manager.setup.styleSheetInvalid" -msgstr "Ogiltigt format på stilmall. Formatet måste vara \".css\"." - -msgid "manager.setup.pressSetupUpdated" -msgstr "Konfigurationen har uppdaterats." - -msgid "manager.setup.pressSetup" -msgstr "Konfiguration" - -msgid "manager.setup.pressPolicies" -msgstr "Steg 2. Pressens riktlinjer" - -msgid "manager.setup.pageHeader" -msgstr "Sidhuvud" - -msgid "manager.setup.layout" -msgstr "Layout" - -msgid "manager.setup.contextInitials" -msgstr "Förkortning" - -msgid "manager.setup.pressHomepageContentDescription" -msgstr "" -"Hemsidan har ett antal förinställda navigationslänkar. Ytterligare innehåll " -"kan läggas till genom att använda något av alternativen nedan." - -msgid "manager.setup.pressHomepageContent" -msgstr "Hemsidans innehåll" - -msgid "manager.setup.homepageContentDescription" -msgstr "" -"Hemsidan har ett antal förinställda navigationslänkar. Ytterligare innehåll " -"kan läggas till genom att använda något av alternativen nedan." - -msgid "manager.setup.homepageContent" -msgstr "Hemsidans innehåll" - -msgid "manager.setup.pressArchiving" -msgstr "Arkivering" - -msgid "manager.setup.aboutPress.description" -msgstr "" -"Information som kan vara av intresse för läsare, eventuella författare eller " -"granskare. Det kan t.ex. vara er open access-policy, pressens ämnesmässiga " -"inriktning, upphovsrättspolicy, pressens historik, integritetspolicy." - -msgid "manager.setup.pressDescription.description" -msgstr "En kort beskrivning av pressen." - -msgid "manager.setup.pressDescription" -msgstr "Kort beskrivning av pressen" - -msgid "manager.setup.appearanceDescription" -msgstr "" -"Olika delar av pressens utseende kan ändras från den här sidan, inklusive " -"sidhuvud och sidfot, stilmall och tema, och hur listor fungerar." - -msgid "manager.setup.privacyStatement.success" -msgstr "Integritetspolicyn har uppdaterats." - -msgid "manager.setup.policies.description" -msgstr "" -"Inriktning, kvalitetsgranskning, avdelningar, integritet, säkerhet och " -"övrigt." - -msgid "manager.setup.policies" -msgstr "Riktlinjer" - -msgid "manager.setup.onlineIssn" -msgstr "Online-ISSN" - -msgid "manager.setup.onlineAccessManagement" -msgstr "Tillgång till pressens innehåll" - -msgid "manager.setup.numPageLinks.description" -msgstr "Begränsa antalet länkar som visas till efterföljande sidor i en lista." - -msgid "manager.setup.numPageLinks" -msgstr "Länkar" - -msgid "manager.setup.noUseProofreaders" -msgstr "" -"En redaktör eller sektionsredaktör kommer kontrollera publiceringsversionen." - -msgid "manager.setup.noUseLayoutEditors" -msgstr "" -"En redaktör eller sektionsredaktör kommer iordningställa filen eller filerna " -"(HTML, PDF, etc.)." - -msgid "manager.setup.noUseCopyeditors" -msgstr "Manusredigering kommer utföras av en redaktör eller sektionsredaktör." - -msgid "manager.setup.note" -msgstr "Anteckning" - -msgid "manager.setup.noStyleSheetUploaded" -msgstr "Ingen stilmall har laddats upp." - -msgid "manager.setup.noImageFileUploaded" -msgstr "Ingen bild har laddats upp." - -msgid "manager.setup.masthead.success" -msgstr "Redaktionsrutan har uppdaterats." - -msgid "manager.setup.managingThePress" -msgstr "Steg 4. Hantera inställningar" - -msgid "manager.setup.managingPublishingSetup" -msgstr "Inställningar" - -msgid "manager.setup.managementOfBasicEditorialSteps" -msgstr "Administration av redaktionellt arbetsflöde" - -msgid "manager.setup.management.description" -msgstr "" -"Tillgång och säkerhet, schemaläggning, meddelanden, manusredigering, layout " -"och korrektur." - -msgid "manager.setup.settings" -msgstr "Inställningar" - -msgid "manager.setup.look.description" -msgstr "" -"Hemsidans rubrik, innehåll, sidhuvud och sidfot, navigationsmeny, och " -"stilmall." - -msgid "manager.setup.look" -msgstr "Utseende" - -msgid "manager.setup.lists" -msgstr "Listor" - -msgid "manager.setup.layoutTemplates.title" -msgstr "Titel" - -msgid "manager.setup.layoutTemplates.file" -msgstr "Layoutmall" - -msgid "manager.setup.layoutTemplatesDescription" -msgstr "" -"Layoutmallar i olika filformat (t.ex. pdf, doc, etc.) kan laddas upp, " -"tillsammans med anteckningar som specificerar typsnitt, textstorlek, " -"marginaler, etc." - -msgid "manager.setup.layoutTemplates" -msgstr "Layoutmallar" - -msgid "manager.setup.layoutInstructionsDescription" -msgstr "" -"Layoutinstruktioner kan anges nedan i HTML eller fritext. De blir då " -"tillgängliga för layout- och sektionsredaktörer på varje bidrags " -"redigeringssida." - -msgid "manager.setup.layoutInstructions" -msgstr "Layoutinstruktioner" - -msgid "manager.setup.layoutAndGalleys" -msgstr "Layoutredaktörer" - -msgid "manager.setup.labelName" -msgstr "Etikettsnamn" - -msgid "manager.setup.keyInfo.description" -msgstr "" -"En kort beskrivning av pressen, samt information om redaktörer, " -"tidskriftsansvariga och andra medlemmar av din redaktion." - -msgid "manager.setup.keyInfo" -msgstr "Översiktsinformation" - -msgid "manager.setup.itemsPerPage.description" -msgstr "" -"Begränsa antalet objekt (till exempel bidrag, användare, eller uppdrag) i en " -"lista innan sidbrytning." - -msgid "manager.setup.itemsPerPage" -msgstr "Objekt per sida" - -msgid "manager.setup.institution" -msgstr "Institution" - -msgid "manager.setup.information.success" -msgstr "Pressens information har uppdaterats." - -msgid "manager.setup.information.forReaders" -msgstr "För läsare" - -msgid "manager.setup.information.forLibrarians" -msgstr "För bibliotekarier" - -msgid "manager.setup.information.forAuthors" -msgstr "För författare" - -msgid "manager.setup.information.description" -msgstr "" -"Korta beskrivningar av pressen för bibliotekarier och eventuella författare " -"eller läsare. Informationen blir synlig på webbsidans sidomeny när " -"informationsblocket är tillagt." - -msgid "manager.setup.information" -msgstr "Information" - -msgid "manager.setup.identity" -msgstr "Pressens identitet" - -msgid "manager.setup.preparingWorkflow" -msgstr "Steg 3. Ställ in arbetsflödet" - -msgid "manager.setup.guidelines" -msgstr "Riktlinjer" - -msgid "manager.setup.gettingDownTheDetails" -msgstr "Steg 1. Detaljer" - -msgid "manager.setup.generalInformation" -msgstr "Allmän information" - -msgid "manager.setup.form.supportNameRequired" -msgstr "Supportens namn krävs." - -msgid "manager.setup.form.supportEmailRequired" -msgstr "Supportens e-postadress krävs." - -msgid "manager.setup.form.numReviewersPerSubmission" -msgstr "Antal granskare per bidrag krävs." - -msgid "manager.setup.form.contactNameRequired" -msgstr "Den primära kontaktens namn krävs." - -msgid "manager.setup.form.contactEmailRequired" -msgstr "Den primära kontaktens e-postadress krävs." - -msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" -msgstr "" -"OMP är anslutet till Open Archives Initiative Protokoll för Metadata Harvesting, som " -"är en väletablerad standard som stöder tillgängliggörandet av välindexerad " -"data i en global kontext. Författare använder ett generellt formulär för att " -"beskriva bidragets metadata. Den tidskriftsansvarige anger " -"indexeringskategorier och förse författare med relevanta exempel som kan " -"vara till hjälp vid indexeringen." - -msgid "manager.setup.forAuthorsToIndexTheirWork" -msgstr "Indexering av innehåll" - -msgid "manager.setup.displayInSpotlight.label" -msgstr "Spotlight" - -msgid "manager.setup.displayInSpotlight" -msgstr "Visa böcker i spotlight på förstasidan" - -msgid "manager.setup.displayFeaturedBooks.label" -msgstr "Utvalda böcker" - -msgid "manager.setup.displayFeaturedBooks" -msgstr "Visa utvalda böcker på förstasidan" - -msgid "manager.setup.lists.success" -msgstr "Pressens inställningar för listor har uppdaterats." diff --git a/locale/sv_SE/submission.po b/locale/sv_SE/submission.po deleted file mode 100644 index fc903d271ec..00000000000 --- a/locale/sv_SE/submission.po +++ /dev/null @@ -1,492 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-08-27 10:48+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.submit.privacyStatement" -msgstr "Integritetspolicy" - -msgid "submission.submit.form.localeRequired" -msgstr "Välj språk för ditt bidrag." - -msgid "submission.submit.seriesPosition.description" -msgstr "Exempel: Bok 2, Volym 2" - -msgid "submission.submit.seriesPosition" -msgstr "Position i serien" - -msgid "author.submit.seriesRequired" -msgstr "En giltig serie måste anges." - -msgid "author.isVolumeEditor" -msgstr "Markera denna person som redaktör för volymen." - -msgid "submission.submit.selectSeries" -msgstr "Välj serie (valfritt)" - -msgid "submission.submit.cancelSubmission" -msgstr "" -"Du kan färdigställa detta bidrag senare genom att välja aktiva bidrag från " -"författarens sida." - -msgid "submission.submit.upload" -msgstr "Ladda upp bidrag" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Nytt bidrag" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Påbörja ett nytt bidrag i" - -msgid "submission.submit" -msgstr "Påbörja ett nytt bidrag" - -msgid "grid.action.deleteChapter" -msgstr "Ta bort detta kapitel" - -msgid "grid.action.editChapter" -msgstr "Redigera detta kapitel" - -msgid "grid.action.addChapter" -msgstr "Skapa ett nytt kapitel" - -msgid "submission.metadata" -msgstr "Metadata" - -msgid "submission.confirmSubmit" -msgstr "Är du säker på att du vill skicka in detta manuskript?" - -msgid "manuscript.submissions" -msgstr "Inskickade bidrag" - -msgid "submissions.queuedReview" -msgstr "Under ganskning" - -msgid "submission.round" -msgstr "Omgång {$round}" - -msgid "manuscript.submission" -msgstr "Skicka in manuskript" - -msgid "submission.sharing" -msgstr "Dela" - -msgid "submission.download" -msgstr "Ladda ned" - -msgid "submission.proofs" -msgstr "Korrekturer" - -msgid "submission.publicationFormats" -msgstr "Publikationsformat" - -msgid "submission.chapter.pages" -msgstr "Sidor" - -msgid "submission.chapter.editChapter" -msgstr "Redigera kapitel" - -msgid "submission.chapter.addChapter" -msgstr "Lägg till kapitel" - -msgid "submission.chaptersDescription" -msgstr "" -"Du kan lista kapitlen här, och tilldela författare från listan ovan. Dessa " -"författare kommer ha tillgång till kapitlet under de olika stegen i " -"publiceringsprocessen." - -msgid "submission.chapters" -msgstr "Kapitel" - -msgid "submission.chapter" -msgstr "Kapitel" - -msgid "submission.artwork.permissions" -msgstr "Tillstånd" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.fairCopy" -msgstr "Renskrift" - -msgid "submission.published" -msgstr "Klar för produktion" - -msgid "submission.monograph" -msgstr "Monografi" - -msgid "submission.editorName" -msgstr "{$editorName} (red.)" - -msgid "submission.workflowType.change" -msgstr "Ändra" - -msgid "submission.workflowType.authoredWork" -msgstr "Monografi: Författare är knutna till boken som helhet." - -msgid "submission.workflowType.editedVolume" -msgstr "Antologi: Författare är knutna till sina respektive kapitel." - -msgid "submission.workflowType.editedVolume.label" -msgstr "Antologi" - -msgid "submission.workflowType.description" -msgstr "" -"En monografi är ett verk författat i sin helhet av en eller flera " -"författare. En antologi har flera olika författare för varje kapitel (" -"detaljer om varje kapitel läggs till senare i processen)." - -msgid "submission.workflowType" -msgstr "Typ av bidrag" - -msgid "submission.synopsis" -msgstr "Synopsis" - -msgid "submission.select" -msgstr "Välj bidrag" - -msgid "submission.title" -msgstr "Boktitel" - -msgid "submission.upload.selectComponent" -msgstr "Välj komponent" - -msgid "submission.submit.title" -msgstr "Skicka in en bok" - -msgid "submission.incomplete" -msgstr "Inväntar godkännande" - -msgid "submission.complete" -msgstr "Godkänd" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Radera manusredaktörens dokument" - -msgid "grid.chapters.title" -msgstr "Kapitel" - -msgid "submission.submit.noContext" -msgstr "Bidragets press kunde inte hittas." - -msgid "submission.submit.userGroupDescription" -msgstr "Välj redaktörsrollen om bidraget som skickas in är en antologi." - -msgid "submission.submit.userGroup" -msgstr "Skicka in bidraget i min roll som..." - -msgid "submission.submit.placement" -msgstr "Bidragets placering" - -msgid "submission.submit.checklistErrors" -msgstr "" -"Läs och fyll i checklistan . Det finns {$itemsRemaining} rutor som inte " -"kryssats i än." - -msgid "submission.submit.whatNext.description" -msgstr "" -"Pressen har meddelats om ditt bidrag, och du har fått en bekräftelse via e-" -"post. Du kommer kontaktas när redaktören har gått igenom ditt bidrag." - -msgid "submission.submit.generalInformation" -msgstr "Allmän information" - -msgid "submission.submit.coverNote" -msgstr "Ansökningsbrev till redaktören" - -msgid "submission.submit.nextSteps" -msgstr "Nästa steg" - -msgid "submission.submit.confirmation" -msgstr "Bekräftelse" - -msgid "submission.submit.finishingUp" -msgstr "Färdigställande" - -msgid "submission.submit.metadata" -msgstr "Metadata" - -msgid "submission.submit.catalog" -msgstr "Katalog" - -msgid "submission.submit.prepare" -msgstr "Förbered" - -msgid "submission.submit.submissionFile" -msgstr "Fil" - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Välj medarbetarens roll." - -msgid "submission.submit.form.abstractRequired" -msgstr "Ange en kort sammanfattning av din bok." - -msgid "submission.submit.form.titleRequired" -msgstr "Ange bokens titel." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "För- och efternamn samt e-postadress för varje författare krävs." - -msgid "submission.submit.form.authorRequired" -msgstr "Det krävs minst en författare." - -msgid "submission.submit.contributorRole" -msgstr "Medarbetarens roll" - -msgid "submission.supportingAgencies" -msgstr "Finansierande organisation" - -msgid "submission.copyedit" -msgstr "Manusredigering" - -msgid "publication.scheduledIn" -msgstr "Ska publiceras i {$issueName}." - -msgid "publication.publish.confirmation" -msgstr "" -"Alla publiceringskrav är uppfyllda. Är du säker på att du vill offentliggöra " -"boken?" - -msgid "publication.publishedIn" -msgstr "Publicerad i {$issueName}." - -msgid "publication.required.issue" -msgstr "Publikationen måste ingå i ett nummer innan den kan publiceras." - -msgid "publication.invalidSeries" -msgstr "Serien kunde inte hittas." - -msgid "publication.catalogEntry.success" -msgstr "Metadatan har uppdaterats." - -msgid "publication.catalogEntry" -msgstr "Metadata" - -msgid "catalog.browseTitles" -msgstr "{$numTitles} titlar" - -msgid "submission.list.saveFeatureOrder" -msgstr "Spara sortering" - -msgid "submission.list.orderingFeaturesSection" -msgstr "" -"Dra och släpp eller använd upp- och nedknapparna för att ändra funktionernas " -"ordning i {$title}." - -msgid "submission.list.orderingFeatures" -msgstr "" -"Dra och släpp eller använd upp- och nedknapparna för att ändra funktionernas " -"ordning på hemsidan." - -msgid "submission.list.orderFeatures" -msgstr "Sortera funktioner" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} av {$total} böcker" - -msgid "submission.list.countMonographs" -msgstr "{$count} böcker" - -msgid "submission.list.monographs" -msgstr "Böcker" - -msgid "section.any" -msgstr "Alla serier" - -msgid "submission.metadataDescription" -msgstr "" -"Dessa specifikationer baseras på Dublin Core-metadata, en internationell " -"standard för att beskriva informationsresurser." - -msgid "submission.dependentFiles" -msgstr "Filer" - -msgid "submission.upload.fileContents" -msgstr "Bidragets komponent" - -msgid "workflow.review.externalReview" -msgstr "Extern granskning" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Skicka till extern granskning" - -msgid "submission.submit.titleAndSummary" -msgstr "Titel och sammanfattning" - -msgid "submission.event.publicationFormatRemoved" -msgstr "Publiceringsformatet \"{$formatName}\" har raderats." - -msgid "submission.event.publicationFormatCreated" -msgstr "Publiceringsformatet \"{$formatName}\" har skapats." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Metadatan om publiceringsformatet \"{$formatName}\" har uppdaterats." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Metadatan har uppdaterats." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "Publiceringsformatet \"{$publicationFormatName}\" är avpublicerat." - -msgid "submission.event.publicationFormatPublished" -msgstr "" -"Publiceringsformatet \"{$publicationFormatName}\" är godkänt för publicering." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "" -"Publiceringsformatet \"{$publicationFormatName}\" är inte längre " -"tillgängligt." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "" -"Publiceringsformatet \"{$publicationFormatName}\" har tillgängliggjorts." - -msgid "submission.event.metadataUnpublished" -msgstr "Bokens metadata är inte längre publicerad." - -msgid "submission.event.metadataPublished" -msgstr "Bokens metadata är godkänd för publicering." - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Publiceringsformat" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Katalog" - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Bok" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Varje kapitel kan ges egna publiceringsdatum." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Alla kapitel kommer använda det färdiga verkets publiceringsdatum." - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Publiceringsdatum" - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Visa bidrag" - -msgid "submission.catalogEntry.isAvailable" -msgstr "Denna bok är färdig att lägga till i den publika katalogen." - -msgid "submission.catalogEntry.confirm.required" -msgstr "Bekräfta att bidraget är klart att läggas till i katalogen." - -msgid "submission.catalogEntry.confirm" -msgstr "Lägg till den här boken i den publika katalogen" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "Du måste välja minst en bok att lägga till i katalogen." - -msgid "submission.catalogEntry.select" -msgstr "Välj böcker att lägga till i katalogen" - -msgid "submission.catalogEntry.add" -msgstr "Lägg till valda bidrag i katalogen" - -msgid "submission.catalogEntry.new" -msgstr "Lägg till i katalogen" - -msgid "submission.editCatalogEntry" -msgstr "Metadata" - -msgid "submission.publication" -msgstr "Publikation" - -msgid "publication.status.published" -msgstr "Publicerad" - -msgid "submission.status.scheduled" -msgstr "Planerad" - -msgid "publication.status.unscheduled" -msgstr "Inte planerad" - -msgid "submission.publications" -msgstr "Publikationer" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Upphovsrättsåret genereras automatiskt när detta publiceras i ett nummer." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "" -"Upphovsrättsåret kommer att genereras automatiskt baserat på publicerings " -"datum." - -msgid "publication.datePublished" -msgstr "Publiceringsdatum" - -msgid "publication.editDisabled" -msgstr "Versionen har publicerats och kan inte redigeras." - -msgid "publication.event.published" -msgstr "Bidraget är publicerat." - -msgid "publication.event.scheduled" -msgstr "Bidraget ska publiceras." - -msgid "publication.event.unpublished" -msgstr "Bidraget är avpublicerat." - -msgid "publication.event.versionPublished" -msgstr "En ny version har publicerats." - -msgid "publication.event.versionScheduled" -msgstr "En ny version ska publiceras." - -msgid "publication.event.versionUnpublished" -msgstr "En version har tagits bort från publikationen." - -msgid "publication.invalidSubmission" -msgstr "Bidraget för publikationen kan inte hittas." - -msgid "publication.publish" -msgstr "Publicera" - -msgid "publication.publish.requirements" -msgstr "Följande krav måste uppfyllas innan den kan publiceras." - -msgid "publication.required.declined" -msgstr "Ett avslaget bidrag kan inte publiceras." - -msgid "publication.required.reviewStage" -msgstr "" -"Bidraget måste vara i Manusredigerings- eller Produktionssteget innan det " -"kan publiceras." - -msgid "submission.license.description" -msgstr "" -"Licensen {$licenseName} läggs " -"till automatiskt när den är publicerad." - -msgid "submission.copyrightHolder.description" -msgstr "" -"Upphovsrätt tilldelas automatiskt till {$copyright} när den är publicerad." - -msgid "publication.unpublish" -msgstr "Avpublicera" - -msgid "publication.unpublish.confirm" -msgstr "Är du säker på att du vill avpublicera?" - -msgid "publication.unschedule.confirm" -msgstr "Vill du ta bort denna från publiceringsplanen?" - -msgid "publication.version.details" -msgstr "Publiceringsdetaljer för version {$version}" - -msgid "submission.queries.production" -msgstr "Produktionsdiskussioner" - diff --git a/locale/tr/admin.po b/locale/tr/admin.po new file mode 100644 index 00000000000..c4af085b3e4 --- /dev/null +++ b/locale/tr/admin.po @@ -0,0 +1,171 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Turkish \n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Yayınevleri" + +msgid "admin.settings.appearance.success" +msgstr "Site görünüm ayarları başarıyla güncellendi." + +msgid "admin.settings.config.success" +msgstr "Site yapılandırma ayarları başarıyla güncellendi." + +msgid "admin.settings.info.success" +msgstr "Site bilgileri başarıyla güncellendi." + +msgid "admin.settings.redirect" +msgstr "Yönlendirilecek yayınevi" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Ana siteye yapılan istekler bu yayınevine yönlendirilecektir. Bu, örneğin, " +"site yalnızca tek bir yayınevine ev sahipliği yapıyorsa faydalı olabilir." + +msgid "admin.settings.noPressRedirect" +msgstr "Yönlendirme" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "Bu, site ve barındırılan tüm yayınevleri için varsayılan dil olacaktır." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Sitede desteklenecek tüm yerel ayarları seçin. Seçilen yerel ayarlar, sitede " +"barındırılan tüm yayınevleri tarafından kullanılabilecek ve ayrıca sitenin " +"her sayfasında görünmek için bir dil seçme menüsünde görünecektir (bu, " +"yayınevine özel sayfalarda geçersiz kılınabilir). Birden fazla yerel ayar " +"seçilmediyse, dil geçiş menüsü görünmeyecek ve genişletilmiş dil ayarları " +"yayınevlerince kullanılamayacaktır." + +msgid "admin.locale.maybeIncomplete" +msgstr "* İşaretli yerel ayarlar eksik olabilir." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Bu yerel ayarı kaldırmak istediğinizden emin misiniz? Bu, şu anda yerel " +"ayarı kullanan herhangi bir barındırılan yayınevini etkileyebilir." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Bu sistemde desteğini yüklemek istediğiniz ek yerel ayarları seçin. Yerel " +"ayarlar, barındırılan yayınevleri tarafından kullanılmadan önce " +"kurulmalıdır. Yeni diller için destek ekleme hakkında bilgi için OMP " +"belgelerine bakın." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Bu yerel ayarı devre dışı bırakmak istediğinizden emin misiniz? Bu, şu anda " +"yerel ayarı kullanan herhangi bir barındırılan yayınevini etkileyebilir." + +msgid "admin.systemVersion" +msgstr "OMP Sürümü" + +msgid "admin.systemConfiguration" +msgstr "OMP Yapılandırması" + +msgid "admin.presses.pressSettings" +msgstr "Yayınevi Ayarları" + +msgid "admin.presses.noneCreated" +msgstr "Hiçbir yayınevi oluşturulmadı." + +msgid "admin.contexts.create" +msgstr "Yayınevi Oluştur" + +msgid "admin.contexts.form.titleRequired" +msgstr "Bir başlık gerekli." + +msgid "admin.contexts.form.pathRequired" +msgstr "Bir yol gerekli." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Yol yalnızca harfleri, sayıları ve _ ve - karakterlerini içerebilir. Bir " +"harf veya rakamla başlamalı ve bitmelidir." + +msgid "admin.contexts.form.pathExists" +msgstr "Seçilen yol başka yayınevi tarafından zaten kullanılıyor." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Birincil yerel ayar, yayınevinin desteklediği yerel ayarlardan biri " +"olmalıdır." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} başarıyla oluşturuldu." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} başarılı bir şekilde düzenlendi." + +msgid "admin.contexts.contextDescription" +msgstr "Yayınevinin tanımı" + +msgid "admin.presses.addPress" +msgstr "Yayınevi Ekleyin" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

            NOT! \n" +"

            Sistem, yapılandırma dosyasındaki değişiklikleri otomatik olarak " +"kaydedemedi. Yapılandırma değişikliklerinizi uygulamak için " +"config.inc.php dosyasını uygun bir metin düzenleyicide açmalı ve " +"içeriğini aşağıdaki metin alanının içeriğiyle değiştirmelisiniz.

            " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Toplu e-posta göndermesine izin verilmesi gereken yayınevlerini seçin. Bu " +"özellik etkinleştirildiğinde, bir yayınevi yöneticisi, yayınevine kayıtlı " +"tüm kullanıcılara e-posta gönderebilecektir.

            Bu özelliğin " +"istenmeyen e-posta göndermek için kötüye kullanılması, bazı hükümetlerin " +"istenmeyen posta önleme yasalarını ihlal edebilir ve sunucunuza ait e-" +"postalarının spam olarak engellenmesi ile sonuçlanabilir. Bu özelliği " +"etkinleştirmeden önce teknik tavsiye alın ve uygun şekilde kullanıldığından " +"emin olmak için yayınevi yöneticilerine danışmayı göz önünde bulundurun. " +"

            Bu özellikle ilgili diğer kısıtlamalar, Yayınevleri listesindeki ayarlar sihirbazını " +"ziyaret ederek her bir yayınevi için etkinleştirilebilir." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Bir yayınevi yöneticisi, aşağıda seçilen rollerden hiçbirine toplu e-posta " +"gönderemez. E-posta bildirim özelliğinin kötüye kullanımını sınırlamak için " +"bu ayarı kullanın. Örneğin, okuyuculara, yazarlara veya bu tür e-postaları " +"almaya onay vermeyen diğer büyük kullanıcı gruplarına toplu e-postaları " +"devre dışı bırakmak daha güvenli olabilir.

            Bu yayınevi için toplu " +"e-posta özelliği Yönetici > Site Ayarları " +"bölümünden tamamen devre dışı bırakılabilir." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Bu yayınevi için toplu e-posta özelliği devre dışı bırakıldı. Bu özelliği Yönetici > Site Ayarları içinde " +"etkinleştirin." + +msgid "admin.siteManagement.description" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "" diff --git a/locale/tr/api.po b/locale/tr/api.po new file mode 100644 index 00000000000..43a97f5b0f0 --- /dev/null +++ b/locale/tr/api.po @@ -0,0 +1,40 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-15 22:07+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Fihriste eklenmek üzere bir veya daha fazla gönderi kimliği sağlamalısınız." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "Belirttiğiniz gönderilerden bir veya daha fazlası bulunamadı." + +msgid "api.submissions.400.wrongContext" +msgstr "" + +msgid "api.emails.403.disabled" +msgstr "E-posta bildirim özelliği bu yayınevi için etkinleştirilmemiştir." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "Bu e-posta şablonunu başka bir yayınevine taşıma izniniz yok." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "İstediğiniz yayın bu yayınevinin bir parçası değil." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "Talep ettiğiniz yayın, bu gönderinin parçası değildir." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Bir gönderinin yayınevini değiştiremezsiniz." + +msgid "api.submission.400.inactiveSection" +msgstr "" diff --git a/locale/tr/author.po b/locale/tr/author.po new file mode 100644 index 00000000000..2dfa6feda00 --- /dev/null +++ b/locale/tr/author.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 09:32+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "author.submit.notAccepting" +msgstr "Bu yayınevi şu anda gönderi kabul etmiyor." + +msgid "author.submit" +msgstr "" diff --git a/locale/tr/default.po b/locale/tr/default.po new file mode 100644 index 00000000000..f1ed9a37eb4 --- /dev/null +++ b/locale/tr/default.po @@ -0,0 +1,197 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:22+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "default.genres.appendix" +msgstr "Ek" + +msgid "default.genres.bibliography" +msgstr "Kaynakça" + +msgid "default.genres.manuscript" +msgstr "Kitap Taslağı" + +msgid "default.genres.chapter" +msgstr "Bölüm Taslağı" + +msgid "default.genres.glossary" +msgstr "Sözlük" + +msgid "default.genres.index" +msgstr "Dizin" + +msgid "default.genres.preface" +msgstr "Önsöz" + +msgid "default.genres.prospectus" +msgstr "İzahat" + +msgid "default.genres.table" +msgstr "Tablo" + +msgid "default.genres.figure" +msgstr "Şekil" + +msgid "default.genres.photo" +msgstr "Resim" + +msgid "default.genres.illustration" +msgstr "Çizim" + +msgid "default.genres.other" +msgstr "Diğer" + +msgid "default.groups.name.manager" +msgstr "Yayınevi müdürü" + +msgid "default.groups.plural.manager" +msgstr "Yayınevi müdürleri" + +msgid "default.groups.abbrev.manager" +msgstr "PM" + +msgid "default.groups.name.editor" +msgstr "Yayınevi editörü" + +msgid "default.groups.plural.editor" +msgstr "Yayınevi editörleri" + +msgid "default.groups.abbrev.editor" +msgstr "YE" + +msgid "default.groups.name.sectionEditor" +msgstr "Dizi editörü" + +msgid "default.groups.plural.sectionEditor" +msgstr "Dizi editörleri" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "BE" + +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + +msgid "default.groups.name.chapterAuthor" +msgstr "Bölüm Yazarı" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Bölüm Yazarları" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "BY" + +msgid "default.groups.name.volumeEditor" +msgstr "Cilt editörü" + +msgid "default.groups.plural.volumeEditor" +msgstr "Cilt editörleri" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "CE" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

            Bu yayınevi sitesine girilen adlar ve e-posta adresleri, yalnızca bu " +"yayınevinin belirtilen amaçları için kullanılacak ve başka herhangi bir " +"amaçla kullanılmayacak veya başka bir tarafa sunulmayacaktır.

            " + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Bu yayınevi, araştırmayı halka ücretsiz olarak sunmanın daha büyük bir " +"küresel bilgi alışverişini desteklediği ilkesiyle içeriğine anında açık " +"erişim sağlar." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Okuyucuların yayın bildirimi servisine kayıt olmaları önerilir. Yayınevi ana " +"sayfasının üst kısmında yer alan Kayıt bağlantısı aracılığı ile bu işlem gerçekleştirilebilir. " +"Bu kayıtla her yeni eser yayınlandığında İçindekiler sayfası e-posta " +"aracılığı ile okuyucuya iletilir. Bu liste aynı zamanda yayınevinin belirli " +"bir düzeyde destek sunduğu veya okuyucusu olduğunu öne sürmesine izin verir. " +"Yayınevinin Gizlilik kurallarına bakınız yazarların " +"kimlik bilgileri ve e-posta adresleri hiç bir şekilde başka amaçlar için " +"kullanılmayacaktır." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Bu yayınevine gönderimde bulunmayı düşünüyorsanız Yayınevi Hakkında bağlantısı araılığıyla " +"yayınevinin yayın politikası ve Yazar Rehberi'ne ulaşabilirsiniz. " +"Yazarlar yayınevine gönderi yapmadan önce register üye olmalı, zaten üye ise giriş " +"yapmalıdır. Gönderi işlemi Üye " +"Giriş bağlantısı aracılığıyla 5 basamakta yapılır." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Araştırmacı kütüphanecilere, bu yayınevini elektronik yayınevleri listesine " +"almaları önerilir. Ayrıca, bu açık kaynaklı yayın sistemi öğretim üyelerinin " +"düzenlemesinde yer aldıkları eserlerin barındırması için uygundur (bkz. Open Monograph Press )." + +msgid "default.groups.name.externalReviewer" +msgstr "Harici Danışman" + +msgid "default.groups.plural.externalReviewer" +msgstr "Harici Danışmanlar" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "HD" + +#~ msgid "default.contextSettings.emailSignature" +#~ msgstr "" +#~ "
            \n" +#~ "________________________________________________________________________
            \n" +#~ "{$ldelim}$contextName{$rdelim}" + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Metin, Yayınevi Hakkında sayfasında mevcut Yazar Rehberi'nde belirtilen biçimsel ve kaynakça " +#~ "gereksinimlerine uygundur." + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Metin tek satırlı, 10 punto, altı çizilme yerine italik olarak " +#~ "vurgulanmış (URL adresleri hariç) ve tüm şekil, resim ve tablolar sayfa " +#~ "sonu yerine metin içinde uygun noktalara yerleştirilmiştir." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "Mümkün olduğunda, kaynaklar için URL'ler sağlanmıştır." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Gönderi dosyası Microsoft Word, RTF veya OpenDocument dosya biçimindedir." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Gönderi daha önce yayımlanmamış, yahut değerlendirilmek üzere başka bir " +#~ "yayınevine gönderilmemiştir (ya da Editöre Yorumlar bölümünde bir " +#~ "açıklamada bulunulmuştur)." diff --git a/locale/tr/editor.po b/locale/tr/editor.po new file mode 100644 index 00000000000..804274368d8 --- /dev/null +++ b/locale/tr/editor.po @@ -0,0 +1,207 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:22+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "editor.submissionArchive" +msgstr "Gönderi Arşivi" + +msgid "editor.monograph.cancelReview" +msgstr "İsteği İptal Et" + +msgid "editor.monograph.clearReview" +msgstr "Danışmanı Temizle" + +msgid "editor.monograph.enterRecommendation" +msgstr "Öneriyi Girin" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Danışman Önerisini Girin" + +msgid "editor.monograph.recommendation" +msgstr "Tavsiye" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Yukarıdan bir danışman seçin ve devam etmek için ‘Danışmanı Seç' düğmesine " +"basın." + +msgid "editor.monograph.replaceReviewer" +msgstr "Danışmanı Değiştir" + +msgid "editor.monograph.editorToEnter" +msgstr "Danışmanın öneri/yorum girmesi için metin düzenleyici" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Değerlendirme yükle" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Danışman Değerlendirmesi Seçenekleri" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Prova Düzeltme Dosyaları" + +msgid "editor.monograph.internalReview" +msgstr "Dahili Değerlendirme Başlatın" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Dahili değerlendirme aşamasına göndermek için aşağıdan dosyaları seçin." + +msgid "editor.monograph.externalReview" +msgstr "Dış Değerlendirmeyi Başlatın" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Son Taslak Dosyaları Seçin" + +msgid "editor.monograph.final.currentFiles" +msgstr "Mevcut Nihai Taslak Dosyaları" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Mevcut Dosyalar" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Kullanıcıya mesaj" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Gönderim İşlemleri" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Genel gönderim eylemleri ve seçenekleri." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Bölüm İşlemleri" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Belirli bir bölüme özgü seçenekler, örneğin dosya yükleme veya kullanıcı " +"ekleme." + +msgid "editor.monograph.legend.itemActions" +msgstr "Öğe İşlemleri" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Tek bir dosyaya özgü eylemler ve seçenekler." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Üst veriler ve yayınlama biçimleri dahil olmak üzere gönderi fihrist kaydını " +"görüntüleyin ve yönetin" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Gönderi üst verilerini, notları, bildirimleri ve geçmişi görüntüleyin ve " +"yönetin" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Bu gönderinin katılımcılarını görüntüleyin ve yönetin: yazarlar, editörler, " +"tasarımcılar ve daha fazlası" + +msgid "editor.monograph.legend.add" +msgstr "Bölüme bir dosya yükleyin" + +msgid "editor.monograph.legend.add_user" +msgstr "Bölüme bir kullanıcı ekleyin" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Bilgi ve silme seçenekleri gibi öğe ayarlarını görüntüleyin ve bunlara erişin" + +msgid "editor.monograph.legend.more_info" +msgstr "Daha Fazla Bilgi: dosya notları, bildirim seçenekleri ve geçmiş" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Dosya bilgileri: notlar, bildirim seçenekleri ve geçmiş (Henüz not eklenmedi)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Dosya bilgileri: notlar, bildirim seçenekleri ve geçmiş (Notlar mevcuttur)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Dosya bilgileri: notlar, bildirim seçenekleri ve geçmiş (Son ziyaretten bu " +"yana eklenen yeni notlar)" + +msgid "editor.monograph.legend.edit" +msgstr "Öğeyi düzenle" + +msgid "editor.monograph.legend.delete" +msgstr "Bu öğeyi sil" + +msgid "editor.monograph.legend.in_progress" +msgstr "İşlem devam ediyor veya henüz tamamlanmadı" + +msgid "editor.monograph.legend.complete" +msgstr "İşlem tamamlandı" + +msgid "editor.monograph.legend.uploaded" +msgstr "Izgara sütun başlığındaki rol tarafından yüklenen dosya" + +msgid "editor.submission.introduction" +msgstr "" +"Gönderi aşamasında, editör, gönderilen dosyaları değerlendirdikten sonra " +"uygun eylemi seçer (yazara bildirmeyi içerir): Dahili Değerlendirmeye Gönder " +"(Dahili Değerlendirme için dosya seçmeyi gerektirir); Dış Değerlendirmeye " +"Gönder (Dış Değerlendirme için dosya seçmeyi gerektirir); Gönderiyi Kabul Et " +"(Düzenleme aşaması için dosya seçmeyi gerektirir); veya Gönderiyi Reddet " +"(gönderiyi arşivle)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Temiz Nüsha" + +msgid "editor.monograph.proofs" +msgstr "Provalar" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Onay ve Yayınlama" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Ciltli, ciltsiz ve dijital gibi farklı yayın biçimleri aşağıdaki Yayın " +"Biçimleri bölümünden yüklenebilir. Aşağıdaki yayın biçimleri tablosunu, bir " +"yayın biçimini yayınlamak için yapılması gerekenlere dair kontrol listesi " +"olarak kullanabilirsiniz." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Mizanpaj editörünün prova okuması için sayfa provaları hazırladığı yayın " +"biçimlerini (örneğin, dijital, ciltsiz kitap) ekleyin. Bir format " +"kullanılabilir hale getirilmeden (yani, yayınlanmadan) önce, " +"Provaların onaylanmış olarak işaretlenmesi ve biçime ilişkin " +"Fihrist girişinin kitabın fihrist kaydına iletildi olarak " +"işaretlenmesi gerekir." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "İndirme Şartlarını Belirleyin" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Şartları Belirleyin" + +msgid "editor.monograph.proof.addNote" +msgstr "Cevap ekleyin" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Herhangi bir gönderim aşamasına önceden yüklenmiş olan dosyalar, aşağıdaki " +"dahil et onay kutusu işaretlenerek ve Ara düğmesine tıklanarak Prova " +"Dosyaları listesine eklenebilir: tüm mevcut dosyalar listelenecek ve dahil " +"edilmek üzere seçilebilecektir." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Genel tanımlayıcı ‘{$publicIdentifier}’ aynı türden başka bir nesne için " +"zaten mevcut. Lütfen yayınevinizdeki aynı türdeki nesneler için benzersiz " +"tanımlayıcılar seçin." + +msgid "editor.submissions.assignedTo" +msgstr "Editöre Atandı" diff --git a/locale/tr/emails.po b/locale/tr/emails.po new file mode 100644 index 00000000000..e4378e66d8f --- /dev/null +++ b/locale/tr/emails.po @@ -0,0 +1,473 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-05 15:09+0000\n" +"Last-Translator: Hüseyin Körpeoğlu \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Parola Sıfırlama Onayı" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"{$siteTitle} web sitesi için parolanızı sıfırlama isteği aldık.
            \n" +"
            \n" +"Bu isteği siz yapmadıysanız, lütfen bu e-postayı dikkate almayın, parolanız " +"değiştirilmeyecektir. Parolanızı sıfırlamak istiyorsanız, aşağıdaki URL'ye " +"tıklayın.
            \n" +"
            \n" +"Parolamı sıfırla: {$passwordResetUrl}
            \n" +"
            \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Yayınevi Kaydı" + +msgid "emails.userRegister.body" +msgstr "" +"Sayın {$recipientName}
            \n" +"
            Artık {$contextName} ile bir kullanıcı olarak kaydoldunuz. Web sitesi " +"aracılığıyla bu yayıneviyle ilgili tüm çalışmalar için gerekli olan " +"kullanıcı adınızı ve parolanızı bu e-postaya ekledik. Dilediğiniz zaman, " +"bizimle iletişime geçerek kullanıcı listesinden çıkarılmayı isteyebilirsiniz." +"
            \n" +"
            \n" +"Kullanıcı adı: {$recipientUsername}
            \n" +"Parola: {$password}
            \n" +"
            \n" +"Teşekkür ederim,
            \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "" + +msgid "emails.userValidateContext.body" +msgstr "" + +msgid "emails.userValidateSite.subject" +msgstr "" + +msgid "emails.userValidateSite.body" +msgstr "" + +msgid "emails.reviewerRegister.subject" +msgstr "{$contextName} ile Danışman olarak kayıt" + +msgid "emails.reviewerRegister.body" +msgstr "" +"Uzmanlığınızın ışığında, adınızı {$contextName} için danışman veritabanına " +"kaydetme müsaadesini aldık. Bu, sizin açınızdan herhangi bir taahhüt " +"gerektirmez, ancak size muhtemelen değerlendirme isteği göndererek " +"ulaşmamızı sağlayacaktır. Değerlendirmeye davet edildiğinizde, söz konusu " +"yazı taslağının başlığını ve özetini görme fırsatınız olacak ve her zaman " +"daveti kabul etme veya reddetme konumunda olacaksınız. Ayrıca istediğiniz " +"zaman adınızın bu danışman listesinden kaldırılmasını isteyebilirsiniz.
            \n" +"
            \n" +"Web sitesi aracılığıyla yayınevi ile tüm etkileşimlerde kullanılan bir " +"kullanıcı adı ve parola sağlıyoruz. Örneğin, ilgi alanlarınızı gözden " +"geçirme dahil olmak üzere profilinizi güncellemek isteyebilirsiniz.
            \n" +"
            \n" +"Kullanıcı adı: {$recipientUsername}
            \n" +"Parola: {$password}
            \n" +"
            Teşekkür ederim,
            \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Editoryal Atama" + +msgid "emails.editorAssign.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            {$contextName} için "{$submissionTitle}," başlıklı gönderi " +"içerik sürecini yönetebilmeniz için Editör rolünüze atandı.
            \n" +"
            \n" +"Gönderi URL: {$submissionUrl}
            \n" +"Kullanıcı adı: {$recipientUsername}
            \n" +"
            \n" +"Teşekkür ederim," + +msgid "emails.reviewRequest.subject" +msgstr "Yazı Taslağı Değerlendirme Talebi" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            \n" +"{$messageToReviewer}
            \n" +"
            \n" +"Değerlendirmeyi yapıp yapmayacağınızı belirtmek, gönderiye erişmek ve " +"değerlendirme ve önerinizi kaydetmek için lütfen yayınevi web sitesine giriş " +"yapın.
            \n" +"
            \n" +"Değerlendirme için son tarih: {$reviewDueDate}
            \n" +"
            \n" +"Gönderi URL: {$reviewAssignmentUrl}
            \n" +"
            \n" +"Username: {$recipientUsername}
            \n" +"
            \n" +"Bu isteği değerlendirdiğiniz için teşekkür ederiz.
            \n" +"
            \n" +"
            \n" +"Saygılarımızla,
            \n" +"{$signature}
            \n" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Yazı Taslağı Değerlendirme Talebi" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Sayın {$recipientName},
            \n" +"{$contextName} için "{$submissionTitle}" başlıklı gönderiyi gözden " +"geçirmenizi rica ediyoruz. Cevabınızı {$responseDueDate} tarihine kadar " +"almayı umuyorduk ve bu e-posta o tarihin geçmesiyle birlikte otomatik olarak " +"oluşturuldu ve size gönderildi. \n" +"
            \n" +"{$messageToReviewer}
            \n" +"
            \n" +"Değerlendirmeyi yapıp yapmayacağınızı belirtmek, gönderiye erişmek ve " +"değerlendirme ve önerinizi kaydetmek için lütfen yayınevi web sitesine giriş " +"yapın.
            \n" +"
            \n" +"Değerlendirme için son tarih: {$reviewDueDate}.
            \n" +"
            \n" +"Gönderi URL: {$reviewAssignmentUrl}
            \n" +"
            \n" +"Kullanıcı adı: {$recipientUsername}
            \n" +"
            \n" +"Bu isteği değerlendirdiğiniz için teşekkür ederiz.
            \n" +"
            \n" +"
            \n" +"Saygılarımızla,
            \n" +"{$contextSignature}
            \n" + +msgid "emails.reviewCancel.subject" +msgstr "Değerlendirme Talebi İptal Edildi" + +msgid "emails.reviewCancel.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            \n" +"Bu noktada, {$contextName} için "{$submissionTitle}" başlıklı " +"gönderiyi değerlendirmenize dair isteğimizi iptal etmeye karar verdik. Bu " +"durumun neden olabileceği rahatsızlıktan dolayı özür dileriz ve gelecekte bu " +"değerlendirme sürecine yardımcı olmak için sizi yeniden arayabileceğimizi " +"umuyoruz.
            \n" +"
            \n" +"Herhangi bir sorunuz olursa, lütfen bizimle iletişime geçin.\n" +"Saygılarımızla." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Değerlendirme Talebi Yeniden Etkinleştirildi" + +msgid "emails.reviewReinstate.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            \n" +"{$contextName} için \"{$submissionTitle}\" başlıklı gönderiyi gözden " +"geçirmeniz için talebimizi yeniden etkin hale getirmek istiyoruz. Bu " +"yayınevinin değerlendirme sürecine yardımcı olabileceğinizi umuyoruz.
            \n" +"
            \n" +"Herhangi bir sorunuz olursa, lütfen bizimle iletişime geçin.\n" +"Saygılarımızla." + +msgid "emails.reviewDecline.subject" +msgstr "Değerlendirmeyi Yapamıyor" + +msgid "emails.reviewDecline.body" +msgstr "" +"Sayın Editör(ler):
            \n" +"
            \n" +"Korkarım ki bu kez {$contextName} için "{$submissionTitle}," " +"başlıklı gönderiyi değerlendiremeyeceğim. Beni düşündüğün için teşekkür " +"ederim. Lütfen başka zaman beni tekrar aramaktan çekinmeyiniz.
            \n" +"
            \n" +"{$senderName}" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "Gönderi Değerlendirme Hatırlatıcısı" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            \n" +"{$contextName} için "{$submissionTitle}" başlıklı gönderiyi gözden " +"geçirmenizi rica ediyoruz. Bu değerlendirmenin {$reviewDueDate} tarihine " +"kadar elimizde olmasını umuyoruz ve hazırlanır hazırlanmaz değerlendirmenin " +"elimizde olmasından memnuniyet duyacağız.
            \n" +"
            \n" +"Web sitesi için kullanıcı adınız ve şifreniz yoksa, parolanızı sıfırlamak " +"için bu bağlantıyı kullanabilirsiniz (ki kullanıcı adınız ile birlikte size " +"e-posta ile gönderilecektir). {$passwordLostUrl}
            \n" +"
            \n" +"Gönderi URL: {$reviewAssignmentUrl}
            \n" +"
            \n" +"Kullanıcı adı: {$recipientUsername}
            \n" +"
            \n" +"Lütfen yayınevinin çalışmalarına hayati katkısı olacak bu işlemi " +"tamamlayabileceğinizi teyit ediniz. Cevabınızı sabırsızlıkla bekliyoruz.
            \n" +"
            \n" +"{$signature}" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            \n" +"{$contextName} için "{$submissionTitle}" başlıklı gönderiyi gözden " +"geçirmenizi rica ediyoruz. Bu değerlendirmenin {$reviewDueDate} tarihine " +"kadar elimizde olmasını umuyorduk ve bu e-posta o tarihin geçmesiyle " +"birlikte otomatik olarak oluşturuldu ve size gönderildi. Değerlendirmenizi " +"hazırlayabildiğiniz anda elimize geçmesinden yine de memnun olacağız.
            \n" +"
            \n" +"Web sitesi için kullanıcı adınız ve şifreniz yoksa, parolanızı sıfırlamak " +"için bu bağlantıyı kullanabilirsiniz (ki kullanıcı adınız ile birlikte size " +"e-posta ile gönderilecektir). {$passwordLostUrl}
            \n" +"
            \n" +"Gönderi URL: {$reviewAssignmentUrl}
            \n" +"
            \n" +"Kullanıcı adı: {$recipientUsername}
            \n" +"
            \n" +"Lütfen yayınevinin çalışmalarına hayati katkısı olacak bu işlemi " +"tamamlayabileceğinizi teyit ediniz. Cevabınızı sabırsızlıkla bekliyoruz.
            \n" +"
            \n" +"{$contextSignature}" + +#, fuzzy +msgid "emails.editorDecisionAccept.subject" +msgstr "Editör Kararı" + +#, fuzzy +msgid "emails.editorDecisionAccept.body" +msgstr "" +"Sayın {$authors}:
            \n" +"
            \n" +"{$contextName} için gönderilen "{$submissionTitle}" başlıklı " +"eseriniz konusunda bir karara varıldı.
            \n" +"
            \n" +"Kararımız:
            \n" +"
            \n" +"Yazı Taslağı URL: {$submissionUrl}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" + +#, fuzzy +msgid "emails.layoutRequest.subject" +msgstr "Prova Dizgileri İste" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            \n" +"{$contextName}’e gönderilen "{$submissionTitle}" başlıklı gönderi " +"için şimdi bu adımları izleyerek prova dizgilerin oluşturulması gereklidir." +"
            \n" +"1. Aşağıdaki Gönderi URL’sine tıklayın.
            \n" +"2. Yayınevine giriş yapın ve yayınevi standartlarına göre prova dizgileri " +"oluşturmak için Mizanpaj Sürümü dosyasını kullanın.
            \n" +"3. TAMAMLANDI e-postasını editöre gönderin.
            \n" +"
            \n" +"{$contextName} URL: {$contextUrl}
            \n" +"Gönderi URL: {$submissionUrl}
            \n" +"Kullanıcı adı: {$recipientUsername}
            \n" +"
            \n" +"Şu anda bu işi üstlenemiyorsanız veya herhangi bir sorunuz olursa, lütfen " +"bizimle iletişime geçin. Bu yayınevine katkılarınız için teşekkür ederiz." + +#, fuzzy +msgid "emails.layoutComplete.subject" +msgstr "Prova Dizgileri Hazırlandı" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            \n" +"{$contextName}’e gönderilen "{$submissionTitle}" başlıklı taslak " +"eserin prova dizgileri hazırlanmış olup prova için hazırdır.
            \n" +"
            \n" +"Herhangi bir sorunuz olursa, lütfen bizimle iletişime geçin.
            \n" +"
            \n" +"{$senderName}" + +msgid "emails.indexRequest.subject" +msgstr "İstek Dizini" + +msgid "emails.indexRequest.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            \n" +"{$contextName}'e gönderilen "{$submissionTitle}" başlıklı gönderi " +"için şimdi bu adımları izleyerek dizin oluşturulması gereklidir.
            \n" +"1. Aşağıdaki Gönderi URL'sine tıklayın.
            \n" +"2. Yayınevine giriş yapın ve yayınevi standartlarına göre prova dizgileri " +"oluşturmak için Sayfa Provaları dosyasını kullanın.
            \n" +"3. TAMAMLANDİ e-postasını editöre gönderin.
            \n" +"
            \n" +"{$contextName} URL: {$contextUrl}
            \n" +"Gönderim URL'si: {$submissionUrl}
            \n" +"Kullanıcı adı: {$recipientUsername}
            \n" +"
            \n" +"Şu anda bu işi üstlenemiyorsanız veya herhangi bir sorunuz olursa, lütfen " +"bizimle iletişime geçin. Bu yayınevine katkılarınız için teşekkür ederiz." +"
            \n" +"
            \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Dizin provaları Hazır" + +msgid "emails.indexComplete.body" +msgstr "" +"Sayın {$recipientName}:
            \n" +"
            \n" +"Dizinler artık {$contextName} için gönderilen \"{$submissionTitle}\" için " +"hazırlanmıştır ve prova için hazırdır.
            \n" +"
            \n" +"Herhangi bir sorunuz olursa, lütfen bizimle iletişime geçin.
            \n" +"
            \n" +"{$signatureFullName}" + +msgid "emails.emailLink.subject" +msgstr "İlginizi Çekebilecek Bir Kitap" + +msgid "emails.emailLink.body" +msgstr "" +""{$submissionUrl}" adresinde yayınlanan {$contextName}’in Vol " +"{$volume}, No {$number} ({$year}) sayısında mevcut {$authors}’e ait "" +"{$submissionTitle}" başlıklı eseri görmek ilginizi çekebilir diye " +"düşündüm." + +msgid "emails.emailLink.description" +msgstr "" +"Bu e-posta şablonu, kayıtlı bir okuyucuya, ilgilenebilecek birine bir kitap " +"hakkında bilgi gönderme fırsatı sağlar. Okuma Araçları üzerinden " +"kullanılabilir ve Yayınevi Yöneticisi tarafından Okuma Araçları Yönetimi " +"sayfasından etkinleştirilmelidir." + +msgid "emails.notifySubmission.subject" +msgstr "Gönderim Bildirimi" + +msgid "emails.notifySubmission.body" +msgstr "" +"{$sender} kullanıcısından "{$submissionTitle}" " +"({$monographDetailsUrl}) ile ilgili bir mesajınız var:
            \n" +"
            \n" +"{$message}
            \n" +"
            \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Gönderi bilgi merkezi penceresi aracılığıyla kullanıcıdan gönderilen bir " +"bildirim." + +msgid "emails.notifyFile.subject" +msgstr "Gönderi Dosyası Bildirimi" + +msgid "emails.notifyFile.body" +msgstr "" +"({$monographDetailsUrl}) " {$submissionTitle} içindeki {$fileName} " +"dosyasıyla ilgili olarak {$sender}\" kullanıcısından bir mesajınız var:
            \n" +"
            \n" +"\t\t{$message}
            \n" +"
            \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"Dosya bilgi merkezi penceresi aracılığıyla kullanıcıdan gönderilen bir " +"bildirim" + +msgid "emails.statisticsReportNotification.subject" +msgstr "{$month}, {$year} için editoryal etkinlik" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
            \n" +"
            {$month}, {$year} için yayınevi sağlık raporunuz artık hazır. Bu ay " +"için önemli istatistikler aşağıdadır.
            \n" +"
              \n" +"\t
            • Bu ayki yeni gönderiler: {$newSubmissions}
            • \n" +"\t
            • Bu ay reddedilen gönderiler: {$declinedSubmissions}
            • \n" +"\t
            • Bu ay kabul edilen gönderiler: {$acceptedSubmissions}
            • \n" +"\t
            • Sistemdeki toplam gönderi sayısı: {$totalSubmissions}
            • \n" +"
            \n" +"Daha ayrıntılı editoryal eğilimleri ve " +"yayınlanan makale istatistiklerinigörüntülemek için yayınevine giriş yapın. Bu ayki editoryal eğilimlerin " +"tam bir kopyası ektedir.
            \n" +"
            \n" +"Içtenlikle
            \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
            \n" +"
            \n" +"{$announcementSummary}
            \n" +"
            \n" +"
            Duyurunun tamamını okumak için web " +"sitemizi ziyaret edin." + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Hesabınızı Doğrulayın" + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "Sayın {$recipientName}
            \n" +#~ "
            \n" +#~ "{$contextName} ile bir hesap oluşturdunuz, ancak kullanmaya başlamadan " +#~ "önce e-posta hesabınızı doğrulamanız gerekiyor. Bunu yapmak için " +#~ "aşağıdaki bağlantıyı takip etmeniz yeterlidir:
            \n" +#~ "
            \n" +#~ "{$activUrl}
            \n" +#~ "
            \n" +#~ "Teşekkür ederiz,
            \n" +#~ "{$signature}" + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Bu e-posta, yeni kayıtlı bir kullanıcıya sisteme hoş geldiniz demek ve " +#~ "kaydedilen kullanıcı adı ve parolayı sunmak için gönderilir." diff --git a/locale/tr/locale.po b/locale/tr/locale.po new file mode 100644 index 00000000000..cfe6d5aea5f --- /dev/null +++ b/locale/tr/locale.po @@ -0,0 +1,1654 @@ +# Hüseyin Körpeoğlu , 2021. +msgid "" +msgstr "" +"PO-Revision-Date: 2021-11-21 22:23+0000\n" +"Last-Translator: Hüseyin Körpeoğlu \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "common.payments" +msgstr "Ödemeler" + +msgid "monograph.audience" +msgstr "Okuyucu Kitlesi" + +msgid "monograph.audience.success" +msgstr "Okuyucu Kitlesi ayrıntıları güncellendi." + +msgid "monograph.coverImage" +msgstr "Kapak Resmi" + +msgid "monograph.audience.rangeQualifier" +msgstr "Okuyucu Kitle Aralığı Niteleyicisi" + +msgid "monograph.audience.rangeFrom" +msgstr "Okuyucu Kitlesi Aralığı (kimden)" + +msgid "monograph.audience.rangeTo" +msgstr "Okuyucu Kitlesi Aralığı (kime)" + +msgid "monograph.audience.rangeExact" +msgstr "Hedef Okuyucu Kitlesi Aralığı (tam)" + +msgid "monograph.languages" +msgstr "Diller (İngilizce, Fransızca, İspanyolca)" + +msgid "monograph.publicationFormats" +msgstr "Yayın Biçimleri" + +msgid "monograph.publicationFormat" +msgstr "Biçim" + +msgid "monograph.publicationFormatDetails" +msgstr "Mevcut yayın biçimiyle ilgili ayrıntılar: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Bu yazıyla ilgili ayrıntılar" + +msgid "monograph.carousel.publicationFormats" +msgstr "Biçimler:" + +msgid "monograph.type" +msgstr "Gönderi Türü" + +msgid "submission.pageProofs" +msgstr "Sayfa Prova Dizgileri" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Mizanpaj editörü, burada yayınlanmak üzere hazırlanmış üretime hazır " +"dosyaları yükler. Yayınlanmadan önce onay için yüklenmiş düzeltilmiş " +"dosyalar ile sayfa provalarının yeniden okunması için yazarları ve " +"diğerlerini atamak için + Ata'yı kullanın." + +msgid "monograph.task.addNote" +msgstr "Göreve ekle" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Açık Erişim" + +msgid "monograph.publicationFormat.imprint" +msgstr "Künye (Marka Adı)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Sayfa Sayıları" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Ön Bölüm" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Arka Bölüm" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Ürün bileşimi" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Ürün Detayı (zorunlu değil)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Ürün Tanımlama" + +msgid "monograph.publicationFormat.price" +msgstr "Fiyat" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Bir fiyat gerekli." + +msgid "monograph.publicationFormat.priceType" +msgstr "Ödeme Şekli" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Varsa indirim yüzdesi" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Ürün Bulunabilirliği" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "İade Edilebileceğine Dair Gösterge" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Dijital Bilgi" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Fiziksel Boyutlar" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Mbyte cinsinden Dosya Boyutu" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Kendi dosya boyutu değerinizi girin?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Yükseklik" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Kalınlık" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Ağırlık" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Genişlik" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Üretim Ülkesi" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Dijital Teknik Koruma" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Ürün Dağıtım Bölgesi" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Vergilendirme Oranı" + +msgid "monograph.publicationFormat.taxType" +msgstr "Vergilendirme Türü" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Bu kitap için fihrist girişine bu yayın biçiminin üst verilerini ekleyin." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Pazarlar ve fiyatlar eksik." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Bir tanımlama kodu eksik." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Bazı üst veri alanları eksik." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "

            Seçtiğiniz yayın biçimi artık bu yazı için mevcut değil.

            " + +msgid "monograph.publicationFormat.openTab" +msgstr "Yayın biçimi sekmesini açın." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Yayın Biçimi" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Bir isim gereklidir." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Geçerli bir fiyat gereklidir." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Ayrıntıları Biçimlendir" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Fiziksel biçim" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Bu biçim ayrı bir web sitesinde mevcut olacak" + +msgid "grid.catalogEntry.remoteURL" +msgstr "Uzakta barındırılan içeriğin URL'si" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "13 haneli ISBN kodu, örn; 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "10 haneli ISBN kodu, örn; 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Bir yazı kimliği gerekli." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Bir yayın biçimi seçilmelidir." + +msgid "grid.catalogEntry.availability" +msgstr "Kullanılabilirlik" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Mevcut" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Mevcut Değil" + +msgid "grid.catalogEntry.proof" +msgstr "Prova Dizgi" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Biçim Onayı" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

            Bu biçim için üst verileri onaylayın. Üst veriler, her biçim için Düzenle " +"panelinden kontrol edilebilir.

            " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

            Bu format için üst verilerin onaylanmadığını belirtin.

            " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Biçim Kullanılabilirliği" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

            Bu biçimi okuyucuların kullanımına sunun . İndirilebilir " +"dosyalar ve diğer tüm dağıtımlar kitabın fihrist girişinde görünecektir.

            " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

            Bu biçim okuyucular tarafından kullanılamayacak . İndirilebilir " +"dosyalar veya diğer dağıtımlar artık kitabın fihrist girişinde görünmeyecek." +"

            " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Fihrist girişi onaylanmadı." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Biçim fihrist girişinde yok." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Prova dizgi onaylanmadı." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Onaylandı" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Onay Bekliyor" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Dijital biçimler için bir dosya boyutu gereklidir." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Bir ürün kullanılabilirlik kodu gereklidir." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Bir ürün kompozisyon kodu seçilmelidir." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Kod Değeri" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "ONIX Kodu Türü" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Bir kimlik kodu gereklidir." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Bir değer gerekli." + +msgid "grid.catalogEntry.salesRights" +msgstr "Satış Hakları" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Kod Değeri" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Satış Hakları Türü" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Dünyanın geri kalanı?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Bu Satış Hakları girişini biçiminiz için bir bütün olarak kullanmak için bu " +"kutuyu işaretleyin. Bu durumda ülke ve bölgelerin seçilmesine gerek yoktur." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "Bu yayın biçimi için tanımlanmış bir SATIR satış türü zaten var." + +msgid "grid.catalogEntry.countries" +msgstr "Ülkeler" + +msgid "grid.catalogEntry.regions" +msgstr "Bölgeler" + +msgid "grid.catalogEntry.included" +msgstr "Dahil" + +msgid "grid.catalogEntry.excluded" +msgstr "Dışlanan" + +msgid "grid.catalogEntry.markets" +msgstr "Pazar Bölgeleri" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Bölge" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Yayın Tarihleri" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Temsilci bir rol gereklidir." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Bir tarih biçimi gerekli." + +msgid "grid.catalogEntry.dateValue" +msgstr "Tarih" + +msgid "grid.catalogEntry.dateRole" +msgstr "Rol" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Tarih Biçimi" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Bir tarih gereklidir ve tarih değeri, seçilen tarih biçimiyle eşleşmelidir." + +msgid "grid.catalogEntry.representatives" +msgstr "Temsilciler" + +msgid "grid.catalogEntry.representativeType" +msgstr "Temsilci Türü" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Danışmanlar" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Tedarikçiler" + +msgid "grid.catalogEntry.agent" +msgstr "Danışman" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Bu tanımlanmış bölgede sizi temsil etmesi için bir temsilci atayabilirsiniz. " +"Zorunlu değildir." + +msgid "grid.catalogEntry.supplier" +msgstr "Tedarikçi" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Bir görev seçin:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Rol" + +msgid "grid.catalogEntry.representativeName" +msgstr "İsim" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Telefon" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "E-posta Adresi" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Website" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "Temsilci kimliği" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "Temsilci Kimlik Türü (GLN önerilir)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Müşterilerinize hizmetlerinizi kendiniz sağlıyorsanız aşağıdaki bölümü boş " +"bırakabilirsiniz." + +msgid "grid.action.addRepresentative" +msgstr "Temsilci Ekle" + +msgid "grid.action.editRepresentative" +msgstr "Bu Temsilciyi Düzenle" + +msgid "grid.action.deleteRepresentative" +msgstr "Bu Temsilciyi Sil" + +msgid "spotlight" +msgstr "Gündem" + +msgid "spotlight.spotlights" +msgstr "İlgi çekenler" + +msgid "spotlight.noneExist" +msgstr "Mevcut gündem yok." + +msgid "spotlight.title.homePage" +msgstr "Gündemde" + +msgid "spotlight.author" +msgstr "Yazar, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Gündem Öğesi" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Anasayfa" + +msgid "grid.content.spotlights.form.location" +msgstr "Gündem Konumu" + +msgid "grid.content.spotlights.form.item" +msgstr "Gündem başlığını girin (otomatik tamamlama)" + +msgid "grid.content.spotlights.form.title" +msgstr "Gündem başlığı" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Kitap" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Bir öğe gerekli." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Bir gündem başlığı gerekli." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Lütfen bu gündem için bir yer seçin." + +msgid "grid.action.editSpotlight" +msgstr "Bu gündemi düzenleyin" + +msgid "grid.action.deleteSpotlight" +msgstr "Bu gündemi sil" + +msgid "grid.action.addSpotlight" +msgstr "Gündem ekle" + +msgid "manager.series.open" +msgstr "Açık Gönderimler" + +msgid "manager.series.indexed" +msgstr "Dizinlenmiş" + +msgid "grid.libraryFiles.column.files" +msgstr "Dosyalar" + +msgid "grid.action.catalogEntry" +msgstr "Fihrist giriş formunu görüntüleyin" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Fihrist girişinde biçim görünür" + +msgid "grid.action.editFormat" +msgstr "Bu biçimi düzenleyin" + +msgid "grid.action.deleteFormat" +msgstr "Bu biçimi sil" + +msgid "grid.action.addFormat" +msgstr "Yayın biçimi ekle" + +msgid "grid.action.approveProof" +msgstr "Prova dizgilerin dizinleme ve fihriste dahil edilme işlemini onaylayın" + +msgid "grid.action.pageProofApproved" +msgstr "Sayfa prova dosyası yayına hazır" + +msgid "grid.action.newCatalogEntry" +msgstr "Yeni Fihrist Girişi" + +msgid "grid.action.publicCatalog" +msgstr "Bu öğeyi fihristte görüntüleyin" + +msgid "grid.action.feature" +msgstr "Özellik görünümünü değiştir" + +msgid "grid.action.featureMonograph" +msgstr "Bunu fihrist gösteriminde öne çıkarın" + +msgid "grid.action.releaseMonograph" +msgstr "Bu gönderiyi 'yeni yayın’ olarak işaretle" + +msgid "grid.action.manageCategories" +msgstr "Bu yayınevi için kategorileri yapılandırın" + +msgid "grid.action.manageSeries" +msgstr "Bu yayınevi için diziyi yapılandırın" + +msgid "grid.action.addCode" +msgstr "Kodu Ekle" + +msgid "grid.action.editCode" +msgstr "Bu Kodu Düzenleyin" + +msgid "grid.action.deleteCode" +msgstr "Bu Kodu Sil" + +msgid "grid.action.addRights" +msgstr "Satış Hakları Ekle" + +msgid "grid.action.editRights" +msgstr "Bu hakları düzenleyin" + +msgid "grid.action.deleteRights" +msgstr "Bu hakları silin" + +msgid "grid.action.addMarket" +msgstr "Pazar Ekle" + +msgid "grid.action.editMarket" +msgstr "Bu Pazarı Düzenleyin" + +msgid "grid.action.deleteMarket" +msgstr "Bu Pazarı Sil" + +msgid "grid.action.addDate" +msgstr "Yayın tarihi ekleyin" + +msgid "grid.action.editDate" +msgstr "Bu Tarihi Düzenle" + +msgid "grid.action.deleteDate" +msgstr "Bu Tarihi Sil" + +msgid "grid.action.createContext" +msgstr "Yeni bir Yayınevi oluştur" + +msgid "grid.action.publicationFormatTab" +msgstr "Yayın biçimi sekmesini göster" + +msgid "grid.action.moreAnnouncements" +msgstr "Yayınevi duyuruları sayfasına gidin" + +msgid "grid.action.submissionEmail" +msgstr "Bu e-postayı okumak için tıklayın" + +msgid "grid.action.approveProofs" +msgstr "Prova ızgarasını görüntüleyin" + +msgid "grid.action.proofApproved" +msgstr "Biçim onaylandı" + +msgid "grid.action.availableRepresentation" +msgstr "Bu biçimi onaylayın/reddedin" + +msgid "grid.action.formatAvailable" +msgstr "Bu biçimin kullanılabilirliğini açın ve kapatın" + +msgid "grid.reviewAttachments.add" +msgstr "Değerlendirmeye Ek Dosya İlave Et" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Kullanılabilir Dosyalar" + +msgid "series.series" +msgstr "Dizi" + +msgid "series.featured.description" +msgstr "Bu dizi ana gezinti bölümünde görünecek" + +msgid "series.path" +msgstr "Yol" + +msgid "catalog.manage" +msgstr "Fihrist Yönetimi" + +msgid "catalog.manage.newReleases" +msgstr "Yeni Yayınlar" + +msgid "catalog.manage.category" +msgstr "Kategori" + +msgid "catalog.manage.series" +msgstr "Dizi" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Lütfen geçerli bir ISSN girin." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Çevrimiçi ve basılı ISSN aynı olmamalıdır." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Çevrimiçi ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "ISSN'yi yazdır" + +msgid "catalog.selectSeries" +msgstr "Dizi Seçin" + +msgid "catalog.selectCategory" +msgstr "Bölüm seç" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Seçilen kitapların kapak resmi, kaydırılabilir bir takım olarak ana sayfanın " +"üst kısmında görünür. Atlı karıncaya kitap eklemek için 'Özellik'i ve " +"ardından yıldızı tıklayın; yeni bir yayın olarak öne çıkarmak için ünlem " +"işaretini tıklayın; sıralamak için sürükleyin ve bırakın." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Bu bölüm için öne çıkan bir kitap seçmek için 'Özellik'i ve ardından yıldızı " +"tıklayın; sıralamak için sürükleyin ve bırakın." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Bu dizi için öne çıkan bir kitap seçmek için 'Özellik'i ve ardından yıldızı " +"tıklayın; sıralamak için sürükleyin ve bırakın. Diziler, bir bölüm içinde " +"veya bağımsız olarak bir editör (ler) ve bir dizi başlığı ile tanımlanır." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Dönme Dolap" + +msgid "catalog.manage.newRelease" +msgstr "Serbest bırak" + +msgid "catalog.manage.manageSeries" +msgstr "Diziyi Yönet" + +msgid "catalog.manage.manageCategories" +msgstr "Kategorileri Yönetin" + +msgid "catalog.manage.noMonographs" +msgstr "Atanmış yazı yok." + +msgid "catalog.manage.featured" +msgstr "Öne Çıkan" + +msgid "catalog.manage.categoryFeatured" +msgstr "Bölümde öne çıkan" + +msgid "catalog.manage.seriesFeatured" +msgstr "Dizide öne çıkanlar" + +msgid "catalog.manage.featuredSuccess" +msgstr "Yazı öne çıkarıldı." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Yazı öne çıkarılmadı." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Yazı yeni yayın olarak işaretlenmiştir." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Yazı, yeni bir yayın olarak işaretlenmemiş." + +msgid "catalog.manage.feature.newRelease" +msgstr "Yeni yayın" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Bölümdeki yeni yayın" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Dizideki yeni yayın" + +msgid "catalog.manage.nonOrderable" +msgstr "Bu yazı, sergilenene kadar sipariş edilemez." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Başlığa veya yazara göre ara" + +msgid "catalog.manage.isFeatured" +msgstr "Bu yazı öne çıkarılmıştır. Bu yazı öne çıkarılmasın." + +msgid "catalog.manage.isNotFeatured" +msgstr "Bu yazı öne çıkarılmadı. Bu yazıyı öne çıkar." + +msgid "catalog.manage.isNewRelease" +msgstr "Bu yazı yeni bir yayındır. Bu yazıyı eski bir yayın yapmayın." + +msgid "catalog.manage.isNotNewRelease" +msgstr "Bu yazı yeni bir yayın değil. Bu yazıyı yeni bir yayın yapın." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Fihriste eklenmek üzere hiçbir gönderi seçilmedi." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Gönderilerden bir veya daha fazlası bulunamadı." + +msgid "catalog.manage.findSubmissions" +msgstr "Fihriste eklenecek kitapları bulun" + +msgid "catalog.noTitles" +msgstr "Henüz hiçbir eser yayınlanmadı." + +msgid "catalog.noTitlesNew" +msgstr "Şu anda yeni yayın mevcut değil." + +msgid "catalog.noTitlesSearch" +msgstr "\"{$searchQuery}\" aramanızla eşleşen başlık bulunamadı." + +msgid "catalog.feature" +msgstr "Özellik" + +msgid "catalog.featured" +msgstr "Öne Çıkan" + +msgid "catalog.featuredBooks" +msgstr "Öne Çıkan Kitaplar" + +msgid "catalog.foundTitleSearch" +msgstr "\"{$searchQuery}\" aramanızla eşleşen bir başlık bulundu." + +msgid "catalog.foundTitlesSearch" +msgstr "\"{$searchQuery}\" aramanızla eşleşen {$number} başlık bulundu." + +msgid "catalog.category.heading" +msgstr "Tüm Kitaplar" + +msgid "catalog.newReleases" +msgstr "Yeni Eklenenler" + +msgid "catalog.dateAdded" +msgstr "Eklendi" + +msgid "catalog.publicationInfo" +msgstr "Yayın Bilgisi" + +msgid "catalog.published" +msgstr "Yayınlanan" + +msgid "catalog.forthcoming" +msgstr "Gelecek" + +msgid "catalog.categories" +msgstr "Bölümler" + +msgid "catalog.parentCategory" +msgstr "Ana Kategori" + +msgid "catalog.category.subcategories" +msgstr "Alt Kategoriler" + +msgid "catalog.aboutTheAuthor" +msgstr "{$roleName} hakkında" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Lütfen dikkat: Öğeleri satın almak için önce oturum açmanız gereklidir. " +"Satın almak için bir öğe seçmeniz, sizi giriş sayfasına yönlendirecektir. " +"Açık Erişim simgesiyle işaretlenmiş herhangi bir öğe, oturum açmadan " +"ücretsiz olarak indirilebilir." + +msgid "catalog.sortBy" +msgstr "Kitapların sırası" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Bu dizideki kitapların nasıl sipariş edeceğinizi seçin." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Bu bölümdeki kitapların nasıl sipariş edeceğinizi seçin." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Fihristteki kitapların nasıl sipariş edileceğini seçin." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Dizi konumu (önce en düşük)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Dizi konumu (önce en yüksek)" + +msgid "catalog.viewableFile.title" +msgstr "{$title} dosyasının {$type} görünümü" + +msgid "catalog.viewableFile.return" +msgstr "{$monographTitle} ile ilgili ayrıntıları görüntülemek için geri dönün" + +msgid "submission.search" +msgstr "Kitap Arama" + +msgid "common.publication" +msgstr "Yazı" + +msgid "common.publications" +msgstr "Yazılar" + +msgid "common.prefix" +msgstr "Önek" + +msgid "common.preview" +msgstr "Önizleme" + +msgid "common.feature" +msgstr "Özellik" + +msgid "common.searchCatalog" +msgstr "Fihristte Ara" + +msgid "common.moreInfo" +msgstr "Daha fazla bilgi" + +msgid "common.listbuilder.completeForm" +msgstr "Lütfen formu eksiksiz doldurunuz." + +msgid "common.listbuilder.selectValidOption" +msgstr "Lütfen listeden geçerli bir seçenek seçin." + +msgid "common.listbuilder.itemExists" +msgstr "Aynı öğeyi iki kez ekleyemezsiniz." + +msgid "common.software" +msgstr "Açık Kitap Sistemleri" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Ana Sayfa Başlığı" + +msgid "navigation.catalog" +msgstr "Fihrist" + +msgid "navigation.competingInterestPolicy" +msgstr "Çıkar Çatışması Politikası" + +msgid "navigation.catalog.allMonographs" +msgstr "Tüm Yazılar" + +msgid "navigation.catalog.manage" +msgstr "Yönet" + +msgid "navigation.catalog.administration.short" +msgstr "Yönetim" + +msgid "navigation.catalog.administration" +msgstr "Fihrist Yönetimi" + +msgid "navigation.catalog.administration.categories" +msgstr "Bölümler" + +msgid "navigation.catalog.administration.series" +msgstr "Dizi" + +msgid "navigation.infoForAuthors" +msgstr "Yazarlar İçin" + +msgid "navigation.infoForLibrarians" +msgstr "Kütüphaneciler İçin" + +msgid "navigation.infoForAuthors.long" +msgstr "Yazarlar İçin Bilgi" + +msgid "navigation.infoForLibrarians.long" +msgstr "Kütüphaneciler için Bilgi" + +msgid "navigation.newReleases" +msgstr "Yeni Eklenenler" + +msgid "navigation.published" +msgstr "Yayınlanan" + +msgid "navigation.wizard" +msgstr "Sihirbaz" + +msgid "navigation.linksAndMedia" +msgstr "Bağlantılar ve Sosyal Medya" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Fihristinize bağlantı verin." + +msgid "navigation.skip.spotlights" +msgstr "Gündem maddelerine geçin" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Dizi" + +msgid "navigation.navigationMenus.series.description" +msgstr "Bir diziye bağlantı verin." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Kategori" + +msgid "navigation.navigationMenus.category.description" +msgstr "Bir kategoriye bağlantı verin." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Yeni Eklenenler" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Yeni Yayınlarınıza bağlantı verin." + +msgid "context.contexts" +msgstr "Yayınevleri" + +msgid "context.context" +msgstr "Yayınevi" + +msgid "context.current" +msgstr "Mevcut Yayınevi:" + +msgid "context.select" +msgstr "Başka bir yayınevine geçin:" + +msgid "user.authorization.representationNotFound" +msgstr "İstenen yayın biçimi bulunamadı." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Bu yayınevinde hiçbir rolü olmayan kullanıcıları dahil edin." + +msgid "user.noRoles.submitMonograph" +msgstr "Bir Teklif Gönderin" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "Bir Yazı Gönderin: Yazar kaydı şu anda devre dışı." + +msgid "user.noRoles.regReviewer" +msgstr "Danışman olarak kaydolun" + +msgid "user.noRoles.regReviewerClosed" +msgstr "Danışman olarak Kaydolun: Danışman kaydı şu anda devre dışıdır." + +msgid "user.reviewerPrompt" +msgstr "Bu yayınevine yapılan gönderileri değerlendirmek ister misiniz?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Evet, {$userGroup} görevini isteyin." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Evet, bu yayınevine yapılan gönderileri gözden geçirme talepleri için " +"benimle iletişime geçilmesini istiyorum." + +msgid "user.register.contextsPrompt" +msgstr "Bu sitedeki hangi yayınevlerine kaydolmak istersiniz?" + +msgid "user.register.otherContextRoles" +msgstr "Aşağıdaki görevleri talep edin." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Herhangi bir yayınevi için eleştirmen olmayı talep ettiyseniz, lütfen ilgi " +"alanlarınızı girin." + +msgid "user.role.manager" +msgstr "Yayınevi Müdürü" + +msgid "user.role.pressEditor" +msgstr "Yayınevi Editörü" + +msgid "user.role.subEditor" +msgstr "Dizi Editörü" + +msgid "user.role.copyeditor" +msgstr "Sayfa Düzeni Editörü" + +msgid "user.role.proofreader" +msgstr "Prova Dizgi Okuyucusu" + +msgid "user.role.productionEditor" +msgstr "Üretim Editörü" + +msgid "user.role.managers" +msgstr "Yayınevi Yöneticileri" + +msgid "user.role.subEditors" +msgstr "Dizi Editörleri" + +msgid "user.role.editors" +msgstr "Editörler" + +msgid "user.role.copyeditors" +msgstr "Sayfa Düzeni Editörleri" + +msgid "user.role.proofreaders" +msgstr "Prova Dizgi Okuyucuları" + +msgid "user.role.productionEditors" +msgstr "Üretim Editörleri" + +msgid "user.register.selectContext" +msgstr "Kaydolmak için bir yayınevi seçin:" + +msgid "user.register.noContexts" +msgstr "Bu sitede kayıt olabileceğiniz hiçbir yayınevi yok." + +msgid "user.register.privacyStatement" +msgstr "Gizlilik Bildirimi" + +msgid "user.register.registrationDisabled" +msgstr "Bu yayınevi şu anda kullanıcı kayıtlarını kabul etmiyor." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Girdiğiniz parola yeterince uzun değil." + +msgid "user.register.readerDescription" +msgstr "Bir yazının yayınlanması üzerine e-posta ile bilgilendirilir." + +msgid "user.register.authorDescription" +msgstr "Yayınevine yazı gönderebilir." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "" +"Basına yapılan başvurular için danışman değerlendirmesi yapmaya istekli." + +msgid "user.register.reviewerDescription" +msgstr "" +"Siteye yapılan gönderimler için danışman değerlendirmesi yapmaya istekli." + +msgid "user.register.reviewerInterests" +msgstr "" +"Danışmanlık ilgi alanlarını belirleyin (asli alanlar ve araştırma " +"yöntemleri):" + +msgid "user.register.form.userGroupRequired" +msgstr "En az bir görev seçmelisiniz" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Evet, verilerimin bu yayınevinin gizlilik beyanına göre toplanıp saklanmasını kabul ediyorum." + +msgid "site.noPresses" +msgstr "Hiçbir yayınevi mevcut değil." + +msgid "site.pressView" +msgstr "Yayınevi Web Sitesini Görüntüleyin" + +msgid "about.pressContact" +msgstr "Yayınevi İletişim" + +msgid "about.aboutContext" +msgstr "Yayınevi Hakkında" + +msgid "about.editorialTeam" +msgstr "Yayın Kurulu" + +msgid "about.editorialPolicies" +msgstr "İçerik Politikaları" + +msgid "about.focusAndScope" +msgstr "Odak ve Kapsam" + +msgid "about.seriesPolicies" +msgstr "Dizi ve Kategori Politikaları" + +msgid "about.submissions" +msgstr "Gönderimler" + +msgid "about.onlineSubmissions" +msgstr "Çevrimiçi Gönderiler" + +msgid "about.onlineSubmissions.login" +msgstr "Giriş" + +msgid "about.onlineSubmissions.register" +msgstr "Kayıt Ol" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "Bir gönderim yapmak için {$login} veya {$register}." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} veya {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Yeni bir gönderim yapın" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "bekleyen gönderimlerinizi görüntüleyin" + +msgid "about.authorGuidelines" +msgstr "Yazar Rehberi" + +msgid "about.submissionPreparationChecklist" +msgstr "Gönderi Hazırlık Kontrol Listesi" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Gönderi sürecinin bir parçası olarak, yazarların gönderilerinin aşağıdaki " +"maddelere uygunluğunu kontrol etmeleri gerekir ve bu yönergelere uymayan " +"yazarlara gönderileri iade edilebilir." + +msgid "about.copyrightNotice" +msgstr "Telif Hakkı Yazısını Göster" + +msgid "about.privacyStatement" +msgstr "Gizlilik Bildirimi" + +msgid "about.reviewPolicy" +msgstr "Danışman Değerlendirme Süreci" + +msgid "about.publicationFrequency" +msgstr "Yayın Sıklığı" + +msgid "about.openAccessPolicy" +msgstr "Açık Erişim Politikası" + +msgid "about.pressSponsorship" +msgstr "Yayınevi Sponsorluğu" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"OMP / PKP tarafından yayıncılık sistemi, Platform ve İş Akışı hakkında daha " +"fazla bilgi." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "OMP Editoryal ve Yayıncılık Süreci" + +msgid "about.aboutSoftware" +msgstr "Açık Kitap Sistemleri Hakkında" + +msgid "about.aboutOMPPress" +msgstr "" +"Bu yayınevi, GNU Genel Kamu Lisansı altında Kamu Bilgisi Projesi tarafından " +"geliştirilen, desteklenen ve serbestçe dağıtılan açık kaynaklı yayınevi " +"yönetimi ve yayınlama yazılımı olan Açık Kitap Sistemleri {$ompVersion} 'ı " +"kullanır. Yazılım hakkında daha fazla bilgi " +"edinmek için PKP'nin web sitesini ziyaret edin. Yayınevi ilgili " +"sorularınız ve yayınevine yapılan öneriler için lütfen doğrudan yayınevi ile iletişime geçin." + +msgid "about.aboutOMPSite" +msgstr "" +"Bu site, GNU Genel Kamu Lisansı altında Kamu Bilgisi Projesi tarafından " +"geliştirilen, desteklenen ve ücretsiz olarak dağıtılan açık kaynak yayınevi " +"yönetimi ve yayıncılık yazılımı olan Açık Kitap Sistemleri {$ompVersion} 'ı " +"kullanır. Yazılım hakkında daha fazla bilgi " +"edinmek için PKP'nin web sitesini ziyaret edin. Lütfen, yayınevleri " +"hakkında sorularınız ve yayınevlerine gönderimleriniz için doğrudan site ile " +"iletişime geçin." + +msgid "help.searchReturnResults" +msgstr "Arama Sonuçlarına Dön" + +msgid "help.goToEditPage" +msgstr "Bu bilgileri düzenlemek için yeni bir sayfa açın" + +msgid "installer.appInstallation" +msgstr "OMP Kurulumu" + +msgid "installer.ompUpgrade" +msgstr "OMP Yükseltmesi" + +msgid "installer.installApplication" +msgstr "Açık Kitap Sistemlerini kurun" + +msgid "installer.updatingInstructions" +msgstr "" +"Mevcut bir OMP kurulumunu yükseltiyorsanız, devam etmek için buraya tıklayın ." + +msgid "installer.installationInstructions" +msgstr "" +"\n" +"

            Kamu Bilgisi Projesi’nin Açık Kitap Sistemleri {$version} " +"programını indirdiğiniz için teşekkür ederiz. Devam etmeden önce, " +"lütfen bu yazılımla birlikte gelen README dosyasını okuyun. Kamu Bilgisi Projesi ve yazılım projeleri " +"hakkında daha fazla bilgi için lütfen PKP web sitesini ziyaret edin. Açık Kitap Sistemleri ile " +"ilgili hata raporlarınız veya teknik destek sorularınız varsa, destek forumuna bakın veya " +"PKP'nin çevrimiçi hata raporlama sistemini ziyaret edin. Destek forumu tercih edilen " +"iletişim yöntemi olsa da ekibe pkp." +"contact@gmail.com adresinden de e-posta gönderebilirsiniz.

            \n" + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Kurulum Öncesi Adımlar" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

            1. Aşağıdaki dosyalar ve dizinler (ve içerikleri) yazılabilir hale " +"getirilmelidir:

            \n" +"
              \n" +"\t
            • config.inc.php yazılabilir mi (isteğe bağlı): " +"{$writeable_config}
            • \n" +"\t
            • public / yazılabilir mi : {$writeable_public}
            • \n" +"\t
            • önbellek / yazılabilir mi : {$writeable_cache}
            • \n" +"\t
            • önbellek / t_cache / yazılabilir mi : " +"{$writeable_templates_cache}
            • \n" +"\t
            • cache / t_compile / yazılabilir mi : " +"{$writeable_templates_compile}
            • \n" +"\t
            • önbellek / _db yazılabilir mi : {$writeable_db_cache}
            • \n" +"
            \n" +"\n" +"

            2. Yüklenen dosyaların saklanacağı bir dizin oluşturulmalı ve " +"yazılabilir hale getirilmelidir (aşağıdaki \"Dosya Ayarları\" bölümüne " +"bakın).

            " + +msgid "installer.upgradeInstructions" +msgstr "" +"

            OMP Sürümü {$version}

            \n" +"\n" +"

            Kamu Bilgisi Projesi’nin Açık Kitap Sistemlerini " +"indirdiğiniz için teşekkür ederiz. Devam etmeden önce, lütfen bu yazılımla " +"birlikte gelen BENİOKU ve YÜKSELTME dosyalarını okuyun. Kamu Bilgisi " +"Projesi ve yazılım projeleri hakkında daha fazla bilgi için lütfen PKP web sitesini ziyaret edin. " +"Open Monograph Press ile ilgili hata raporlarınız veya teknik destek " +"sorularınız varsa, destek forumuna bakın veya PKP'nin çevrimiçi hata raporlama sistemini ziyaret edin. " +"Destek forumu tercih edilen iletişim yöntemi olsa da ekibe pkp.contact@gmail.com adresinden de e-posta " +"gönderebilirsiniz.

            \n" +"

            Devam etmeden önce veritabanınızı, dosyalar dizininizi ve OMP kurulum " +"dizininizi yedeklemeniz şiddetle tavsiye edilir.

            \n" +"

            PHP " +"Güvenli Mod'da çalışıyorsa, lütfen php.ini yapılandırma dosyanızdaki " +"max_execution_time yönergesinin yüksek bir değere ayarlandığından emin olun. " +"Bu veya başka bir zaman sınırına (örneğin Apache'nin \"Zaman Aşımı\" " +"yönergesi) ulaşılırsa ve yükseltme işlemi kesintiye uğrarsa, elle müdahale " +"gerekecektir.

            " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Tam Unicode (UTF-8) desteği için, tüm karakter kümesi ayarlarında UTF-8'i " +"seçin. Bu desteğin şu anda bir MySQL> = 4.1.1 veya PostgreSQL> = 9.1.5 " +"veritabanı sunucusu gerektirdiğini unutmayın. Lütfen tam Unicode desteğinin " +"mbstring " +"kitaplığını gerektirdiğini unutmayın (en son PHP kurulumlarında varsayılan " +"olarak etkindir). Sunucunuz bu gereksinimleri karşılamıyorsa, genişletilmiş " +"karakter kümelerini kullanırken sorunlarla karşılaşabilirsiniz.\n" +"
            \\
            \n" +"Sunucunuz şu anda mbstring'i destekliyor: {$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Sunucunuz şu anda dosya yükleye izin veriyor: {$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Sunucunuzun şu anda izin verdiği en fazla dosya yükleme boyutu: " +"{$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Bu sistem için kullanılacak birincil dil. Burada listelenmeyen dilleri " +"destekleme konusuyla ilgileniyorsanız lütfen OMP belgelerine başvurun." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Bu sistemde desteklenecek ek dilleri seçin. Bu diller, sitede barındırılan " +"yayınevleri tarafından kullanılabilecektir. Site yönetimi arayüzünden " +"herhangi bir zamanda ek diller de yüklenebilir. * İşaretli yerel ayarlar " +"tamamlanmamış olabilir." + +msgid "installer.filesDirInstructions" +msgstr "" +"Yüklenen dosyaların saklanacağı mevcut bir dizinin tam yolunu girin. Bu " +"dizine doğrudan web'den erişilebilir olmamalıdır. Lütfen bu dizinin " +"kurulumdan önce mevcut ve yazılabilir olduğundan emin olun. Windows " +"yol adları öne eğik çizgi kullanmalıdır, örneğin \"C:/mypress / files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP, verilerini depolamak için bir SQL veritabanına erişim gerektirir. " +"Desteklenen veritabanlarının listesi için yukarıdaki sistem gereksinimlerine " +"bakın. Aşağıdaki alanlarda veri tabanına bağlanmak için kullanılacak " +"ayarları sağlayın." + +msgid "installer.upgradeApplication" +msgstr "Open Monograph Press Sürümünü Yükseltin" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

            ÖNEMLİ!

            \n" +"

            Kurulum, yapılandırma dosyasının üzerine otomatik olarak yazamadı. " +"Sistemi kullanmaya başlamadan önce lütfen config.inc.php dosyasını " +"uygun bir metin düzenleyicide açın ve içeriğini aşağıdaki metin alanının " +"içeriğiyle değiştirin.

            " + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" +"

            OMP'nin kurulumu başarıyla tamamlandı.

            \n" +"

            Sistemi kullanmaya başlamak için önceki sayfada girilen kullanıcı adı ve " +"parola ile giriş yapın .

            \n" +"

            Haberleri ve güncellemeleri almak isterseniz, lütfen http://pkp.sfu.ca/omp/" +"register adresinden kaydolun. Sorularınız veya yorumlarınız " +"varsa, lütfen destek " +"forumunu ziyaret edin.

            " + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" +"

            OMP'nin {$version} sürümüne yükseltilmesi başarıyla tamamlandı.

            \n" +"

            Config.inc.php yapılandırma dosyanızdaki \"kurulu\" ayarını tekrar " +"Açık olarak ayarlamayı unutmayın.

            \n" +"

            Henüz kaydolmadıysanız ve haberleri ve güncellemeleri almak " +"istiyorsanız, lütfen http://pkp.sfu.ca/omp/register adresinden kaydolun. Sorularınız veya yorumlarınız varsa, lütfen destek forumunu ziyaret edin.

            " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"{$reviewerName} tarafından yapılan {$submissionId} gönderinin {$round}. tur " +"değerlendirmesi için son tarih {$dueDate} olarak belirlendi." + +msgid "log.review.reviewDeclined" +msgstr "" +"{$reviewerName}, {$submissionId} gönderisi için {$round} tur " +"değerlendirmesini reddetti." + +msgid "log.review.reviewAccepted" +msgstr "" +"{$reviewerName}, {$submissionId} gönderisi için {$round} tur " +"değerlendirmesini kabul etti." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName}, {$submissionId} gönderisi için {$round} tur değerlendirmesini " +"dikkate alınmayacak şeklinde işaretledi." + +msgid "log.editor.decision" +msgstr "" +"Yazı {$submissionId} için bir editör kararı ({$decision}) {$editorName} " +"tarafından kaydedildi." + +msgid "log.editor.recommendation" +msgstr "" +"Yazı {$submissionId} için bir editör önerisi ({$decision}) {$editorName} " +"tarafından kaydedildi." + +msgid "log.editor.archived" +msgstr "{$SubmissionId} gönderisi arşivlendi." + +msgid "log.editor.restored" +msgstr "{$SubmissionId} gönderisi işlem kuyruğuna geri yüklendi." + +msgid "log.editor.editorAssigned" +msgstr "{$editorName}, {$submissionId} gönderisine editör olarak atandı." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName}, {$proofreaderName} 'nı {$submissionId} prova düzeltmesi " +"için atadı." + +msgid "log.proofread.complete" +msgstr "{$proofreaderName} planlanması için {$submissionId} gönderdi." + +msgid "log.imported" +msgstr "{$userName}, {$submissionId} yazısını içe aktardı." + +msgid "notification.addedIdentificationCode" +msgstr "Kimlik Kodu eklendi." + +msgid "notification.editedIdentificationCode" +msgstr "Kimlik Kodu düzenlendi." + +msgid "notification.removedIdentificationCode" +msgstr "Kimlik Kodu kaldırıldı." + +msgid "notification.addedPublicationDate" +msgstr "Yayın Tarihi eklendi." + +msgid "notification.editedPublicationDate" +msgstr "Yayın Tarihi Düzenlendi." + +msgid "notification.removedPublicationDate" +msgstr "Yayın Tarihi kaldırıldı." + +msgid "notification.addedPublicationFormat" +msgstr "Yayın Biçimi eklendi." + +msgid "notification.editedPublicationFormat" +msgstr "Yayın Biçimi düzenlendi." + +msgid "notification.removedPublicationFormat" +msgstr "Yayın Biçimi kaldırıldı." + +msgid "notification.addedSalesRights" +msgstr "Satış Hakları eklendi." + +msgid "notification.editedSalesRights" +msgstr "Satış Hakları düzenlendi." + +msgid "notification.removedSalesRights" +msgstr "Satış Hakları kaldırıldı." + +msgid "notification.addedRepresentative" +msgstr "Temsilci eklendi." + +msgid "notification.editedRepresentative" +msgstr "Temsilci düzenlendi." + +msgid "notification.removedRepresentative" +msgstr "Temsilci kaldırıldı." + +msgid "notification.addedMarket" +msgstr "Pazar eklendi." + +msgid "notification.editedMarket" +msgstr "Pazar düzenlendi." + +msgid "notification.removedMarket" +msgstr "Pazar kaldırıldı." + +msgid "notification.addedSpotlight" +msgstr "Gündem eklendi." + +msgid "notification.editedSpotlight" +msgstr "Gündem düzenlendi." + +msgid "notification.removedSpotlight" +msgstr "Gündem kaldırıldı." + +msgid "notification.savedCatalogMetadata" +msgstr "Fihrist üst verileri kaydedildi." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Yayın biçimi üst verileri kaydedildi." + +msgid "notification.proofsApproved" +msgstr "Prova dizgi onaylandı." + +msgid "notification.removedSubmission" +msgstr "Gönderi silindi." + +msgid "notification.type.submissionSubmitted" +msgstr "Yeni bir yazı, \"{$title}\" gönderildi." + +msgid "notification.type.editing" +msgstr "Düzenleme Etkinlikleri" + +msgid "notification.type.reviewing" +msgstr "Değerlendirme Etkinlikleri" + +msgid "notification.type.site" +msgstr "Site Etkinlikleri" + +msgid "notification.type.submissions" +msgstr "Gönderi Etkinlikleri" + +msgid "notification.type.userComment" +msgstr "Bir okuyucu \"{$title}\" hakkında bir yorum yaptı." + +msgid "notification.type.public" +msgstr "Genel Duyurular" + +msgid "notification.type.editorAssignmentTask" +msgstr "Bir editörün atanması gereken yeni bir yazı gönderildi." + +msgid "notification.type.copyeditorRequest" +msgstr "\"{$file}\" için sayfa düzenini gözden geçirmeniz istendi." + +msgid "notification.type.layouteditorRequest" +msgstr "“{$title}” için mizanpaj düzenini gözden geçirmeniz istendi." + +msgid "notification.type.indexRequest" +msgstr "“{$title}” için bir dizin oluşturmanız istendi." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Dahili değerlendirme süreci başladı." + +msgid "notification.type.approveSubmission" +msgstr "" +"Bu gönderi şu anda genel fihristte görünmeden önce Fihrist Giriş aracında " +"onay bekliyor." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Onay bekliyor." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Yazı, yayınlanana kadar fihristte listelenmeyecektir. Bu kitabı fihriste " +"eklemek için Yayın sekmesine tıklayın." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Hiçbir ödeme yöntemi yapılandırılmadı." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"E-ticaret ayarlarını tanımlamadan önce, yapılandırılmış bir ödeme yöntemi " +"gereklidir." + +msgid "notification.type.visitCatalogTitle" +msgstr "Fihrist Yönetimi" + +msgid "notification.type.visitCatalog" +msgstr "" +"Yazı onaylandı. Hemen yukarıdaki bağlantıları kullanarak fihrist " +"ayrıntılarını yönetmek için lütfen Pazarlama ve Yayın sayfasını ziyaret edin." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Bu yazı için geçerli bir danışman olmadığınız için erişiminiz reddedildi." + +msgid "user.authorization.monographAuthor" +msgstr "Bu yazının yazarı olarak görünmediğiniz için erişiminiz reddedildi." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Bu yazının atanmış bir danışmanı olmadığınız için erişiminiz reddedildi." + +msgid "user.authorization.monographFile" +msgstr "Belirtilen yazı dosyasına erişiminiz reddedildi." + +msgid "user.authorization.invalidMonograph" +msgstr "Geçersiz yazı veya hiçbir yazı isteği yapılmadı!" + +#, fuzzy +msgid "user.authorization.noContext" +msgstr "Kurulu yayınevi yok!" + +msgid "user.authorization.seriesAssignment" +msgstr "Size ait dizinin parçası olmayan bir yazıya erişmeye çalışıyorsunuz." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "Erişim reddedildi! Bu iş akışı aşamasına atanmadınız." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"Erişim reddedildi! Şu anda içinde hareket ettiğiniz kullanıcı grubu bu iş " +"akışı aşamasına atanmamış. Lütfen yayınevi ayarlarınızı kontrol edin." + +msgid "payment.directSales" +msgstr "Yayınevi Web Sitesinden İndirin" + +msgid "payment.directSales.price" +msgstr "Fiyat" + +msgid "payment.directSales.availability" +msgstr "Kullanılabilirlik" + +msgid "payment.directSales.catalog" +msgstr "Fihrist" + +msgid "payment.directSales.approved" +msgstr "Onaylandı" + +msgid "payment.directSales.priceCurrency" +msgstr "Fiyat ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "" +"Fiyatlar yalnızca sayısal olmalıdır. Para birimi simgelerini eklemeyin." + +msgid "payment.directSales.directSales" +msgstr "Doğrudan satış" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Mevcut Değil" + +msgid "payment.directSales.notSet" +msgstr "Ayarlanmadı" + +msgid "payment.directSales.openAccess" +msgstr "Açık Erişim" + +msgid "payment.directSales.price.description" +msgstr "" +"Dosya biçimleri, okuyuculara ücretsiz olarak açık erişim veya doğrudan satış " +"yoluyla (Dağıtım'da yapılandırılan bir çevrimiçi ödeme işlemcisi " +"kullanılarak) yayınevi web sitesinden indirilmek üzere sunulabilir. Bu dosya " +"için erişim temelini belirtin." + +msgid "payment.directSales.validPriceRequired" +msgstr "Geçerli bir sayısal fiyat gereklidir." + +msgid "payment.directSales.purchase" +msgstr "{$format} ({$amount} {$currency}) satın alın" + +msgid "payment.directSales.download" +msgstr "{$format} dosyasını indirin" + +msgid "payment.directSales.monograph.name" +msgstr "Yazı veya Bölüm İndirmeyi Satın Alın" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Bu işlem, tek bir kitap veya kitap bölümünün doğrudan indirilmesine yönelik " +"satın alma içindir." + +msgid "debug.notes.helpMappingLoad" +msgstr "{$id} aramasında {$filename} XML eşleme dosyası yeniden yüklendi." + +msgid "rt.metadata.pkp.dctype" +msgstr "Kitap" + +msgid "submission.pdf.download" +msgstr "Bu PDF dosyasını indirin" + +msgid "user.profile.form.showOtherContexts" +msgstr "Diğer yayınevlerine kaydolun" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Diğer yayınevlerini gizle" + +msgid "submission.round" +msgstr "{$round}. Tur" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Geçersiz bir yayınlanmış gönderi belirtildi." + +msgid "catalog.coverImageTitle" +msgstr "Kapak Resmi" + +msgid "grid.catalogEntry.chapters" +msgstr "Kısımlar" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +msgid "section.section" +msgstr "Dizi" diff --git a/locale/tr/manager.po b/locale/tr/manager.po new file mode 100644 index 00000000000..580ea79ac59 --- /dev/null +++ b/locale/tr/manager.po @@ -0,0 +1,1668 @@ +# Hüseyin Körpeoğlu , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-01-10 09:39+0000\n" +"Last-Translator: Hüseyin Körpeoğlu \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Bu işlem, bu bölgesel ayar için yaptığınız bölgesel ayara özgü tüm yayınevi " +"ayarlarını yenisiyle değiştirecektir" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Üzgünüz, başka ilave dil mevcut değil. Bu yayınevi ile ek diller kullanmak " +"istiyorsanız site yöneticinizle iletişime geçin." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Bu, yayınevi sitesi için varsayılan dil olacaktır." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Lütfen her Dizi Editörü ataması için en az bir onay kutusunun " +"işaretlendiğinden emin olun." + +msgid "manager.series.form.reviewFormId" +msgstr "Lütfen geçerli bir değerlendirme formu seçtiğinizden emin olun." + +msgid "manager.series.submissionIndexing" +msgstr "Yayınevinin dizinlenmesinde dahil edilmeyecek" + +msgid "manager.series.editorRestriction" +msgstr "" +"Öğeler yalnızca Editörler ve Dizi Editörleri tarafından gönderilebilir." + +msgid "manager.series.confirmDelete" +msgstr "Bu diziyi kalıcı olarak silmek istediğinizden emin misiniz?" + +msgid "manager.series.indexed" +msgstr "Dizinlenmiş" + +msgid "manager.series.open" +msgstr "Açık Gönderimler" + +msgid "manager.series.readingTools" +msgstr "Okuma Araçları" + +msgid "manager.series.submissionReview" +msgstr "Danışman değerlendirmesinden geçmeyecek" + +msgid "manager.series.submissionsToThisSection" +msgstr "Bu diziye yapılan gönderimler" + +msgid "manager.series.abstractsNotRequired" +msgstr "Özet gerektirmez" + +msgid "manager.series.disableComments" +msgstr "Bu dizi için okuyucu yorumlarını devre dışı bırakın." + +msgid "manager.series.book" +msgstr "Kitap Dizisi" + +msgid "manager.series.create" +msgstr "Dizi Oluştur" + +msgid "manager.series.policy" +msgstr "Dizi açıklaması" + +msgid "manager.series.assigned" +msgstr "Bu Dizinin Editörleri" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Mevcut Dizi Editörlerinden bu diziye bir Dizi Editörü ekleyin. Eklendikten " +"sonra, Dizi Editörü'nün bu diziye yapılan gönderimlerin DEĞERLEDİRMESİNİ " +"(danışman değerlendirmesi) ve/veya DÜZENLENMESİNİ (sayfa düzenleme, mizanpaj " +"ve prova dizgi okuma) denetleyip denetlemeyeceğini belirleyin. Dizi " +"Editörleri, Yayınevi Yönetimindeki Görevler altındaki Dizi Editörleri tıklanarak oluşturulur." + +msgid "manager.series.hideAbout" +msgstr "Bu diziyi Yayınevi Hakkında bölümünden çıkarın." + +msgid "manager.series.unassigned" +msgstr "Mevcut Dizi Editörleri" + +msgid "manager.series.form.abbrevRequired" +msgstr "Dizi için kısaltılmış bir başlık gereklidir." + +msgid "manager.series.form.titleRequired" +msgstr "Dizi için bir başlık gereklidir." + +msgid "manager.series.noneCreated" +msgstr "Hiçbir dizi oluşturulmadı." + +msgid "manager.series.existingUsers" +msgstr "Var olan kullanıcılar" + +msgid "manager.series.seriesTitle" +msgstr "Dizi Başlığı" + +msgid "manager.series.restricted" +msgstr "Yazarların doğrudan bu diziye göndermesine izin vermeyin." + +msgid "manager.payment.generalOptions" +msgstr "Genel Ayarlar" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Bu yayınevi için ödemeler etkinleştirilecektir. Kullanıcıların ödeme yapmak " +"için giriş yapması gerekeceğini unutmayın." + +msgid "manager.payment.success" +msgstr "Ödeme ayarları güncellendi." + +msgid "manager.settings" +msgstr "Ayarlar" + +msgid "manager.settings.pressSettings" +msgstr "Yayınevi Ayarları" + +msgid "manager.settings.press" +msgstr "Yayınevi" + +msgid "manager.settings.publisher.identity" +msgstr "Yayıncı Kimliği" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Bu alanlar, geçerli ONIX üst verilerini yayınlamak için gereklidir." + +msgid "manager.settings.publisher" +msgstr "Basın Yayın Kuruluşu Adı" + +msgid "manager.settings.location" +msgstr "Coğrafi konum" + +msgid "manager.settings.publisherCode" +msgstr "Yayıncı Kodu" + +msgid "manager.settings.publisherCodeType" +msgstr "Yayıncı Kodu Türü" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Bu geçerli bir Yayıncı Kodu Türü değil." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Dağıtım sürecine özgü tüm ayarlar (bildirim, dizinleme, arşivleme, ödeme, " +"okuma araçları)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Yazı dosyası indirmeleri" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Yazı özet sayfa görünümleri" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Yazı özeti ve indirmeler" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Dizi ana sayfa görünümleri" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Yayınevi Ana sayfa görünümleri" + +msgid "manager.tools" +msgstr "Araçlar" + +msgid "manager.tools.importExport" +msgstr "" +"Verilerin içe ve dışa aktarılmasına özel tüm araçlar (yayınlar, yazılar, " +"kullanıcılar)" + +msgid "manager.tools.statistics" +msgstr "" +"Kullanım istatistikleriyle ilgili raporlar oluşturmaya yönelik araçlar " +"(fihrist dizini sayfa görünümü, yazı özet sayfa görünümleri, yazı dosyası " +"indirmeleri)" + +msgid "manager.users.availableRoles" +msgstr "Mevcut Görevler" + +msgid "manager.users.currentRoles" +msgstr "Geçerli Görevler" + +msgid "manager.users.selectRole" +msgstr "Rolü Seç" + +msgid "manager.people.allEnrolledUsers" +msgstr "Bu Yayınevine Kayıtlı Kullanıcılar" + +msgid "manager.people.allPresses" +msgstr "Tüm Yayınevleri" + +msgid "manager.people.allSiteUsers" +msgstr "Bu Siteden bir Kullanıcıyı bu Yayınevine kaydedin" + +msgid "manager.people.allUsers" +msgstr "Tüm Kayıtlı Kullanıcılar" + +msgid "manager.people.confirmRemove" +msgstr "" +"Bu kullanıcı bu yayınevinden çıkarılsın mı? Bu işlem, kullanıcının bu " +"yayınevindeki tüm görevlerinden kaydını silecektir." + +msgid "manager.people.enrollExistingUser" +msgstr "Mevcut Bir Kullanıcıyı Yetkilendir" + +msgid "manager.people.enrollSyncPress" +msgstr "Yayınevi ile" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Başka bir kullanıcı hesabıyla birleştirmek için bir kullanıcı seçin " +"(örneğin, birinin iki kullanıcı hesabı olduğunda). İlk seçilen hesap " +"silinecek ve gönderimleri, atamaları vb. ikinci hesaba aktarılacaktır." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Önceki kullanıcının yazarlıklarının, düzenleme atamalarının vb. aktarılacağı " +"bir kullanıcı seçin." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Kayıt eşleştirme, belirtilen yayınevinde belirtilen göreve kayıtlı tüm " +"kullanıcıları bu yayınevinde aynı göreve kaydeder. Bu işlev, ortak bir " +"kullanıcı grubunun (örneğin, Danışmanlar) yayınevleri arasında " +"eşleştirilmesini sağlar." + +msgid "manager.people.confirmDisable" +msgstr "" +"Bu kullanıcı devre dışı bırakılsın mı? Bu, kullanıcının sisteme giriş " +"yapmasını engelleyecektir.\n" +"\n" +"Kullanıcıya isteğe bağlı olarak, hesabının neden devre dışı bırakıldığını " +"belirtebilirsiniz." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Üzgünüz, bu kullanıcı üzerinde yönetici haklarınız yok. Bunun nedeni şunlar " +"olabilir. Bunun nedeni şunlar olabilir:\n" +"\t\t
              \n" +"\t\t\t
            • Kullanıcı bir site yöneticisidir
            • \n" +"\t\t\t
            • Kullanıcı, sizin yönetmediğiniz yayınevlerinde etkindir
            • \n" +"\t\t
            \n" +"\tBu görev bir site yöneticisi tarafından gerçekleştirilmelidir.\n" +"\t" + +msgid "manager.system" +msgstr "Sistem Ayarları" + +msgid "manager.system.archiving" +msgstr "Arşivleniyor" + +msgid "manager.system.reviewForms" +msgstr "Değerlendirme Formları" + +msgid "manager.system.readingTools" +msgstr "Okuma Araçları" + +msgid "manager.system.payments" +msgstr "Ödemeler" + +msgid "user.authorization.pluginLevel" +msgstr "Bu eklentiyi yönetmek için yeterli ayrıcalığa sahip değilsiniz." + +msgid "manager.pressManagement" +msgstr "Yayınevi Yönetimi" + +msgid "manager.setup" +msgstr "Kurulum" + +msgid "manager.setup.aboutItemContent" +msgstr "İçerik" + +msgid "manager.setup.addAboutItem" +msgstr "Hakkında Öğesi Ekle" + +msgid "manager.setup.addChecklistItem" +msgstr "Kontrol Listesi Öğesi Ekle" + +msgid "manager.setup.addItem" +msgstr "Öğe Ekle" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "\"Yayınevi Hakkında\" sayfasında Görünecek Öğeyi Ekle" + +msgid "manager.setup.addNavItem" +msgstr "Öğe Ekle" + +msgid "manager.setup.addSponsor" +msgstr "Maddi Destekte Bulunan Kuruluş Ekle" + +msgid "manager.setup.announcements" +msgstr "Duyurular" + +msgid "manager.setup.announcements.success" +msgstr "Duyuru ayarları güncellendi." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Okuyucuları yayınevi haberleri ve olaylardan haberdar etmek için duyurular " +"yayınlanabilir. Yayınlanan duyurular Duyurular sayfasında görünecektir." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Ek Bilgi" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Duyurular sayfasında okuyuculara gösterilmesi gereken ek bilgileri girin." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Yayınevi Hakkında sayfasında görünmesi için) " + +msgid "manager.setup.contextAbout" +msgstr "Yayınevi Hakkında" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Okuyucuların, yazarların veya danışmanların ilgisini çekebilecek yayınevi " +"hakkındaki her türlü bilgiyi dahil edin. Bu, açık erişim politikanızı, " +"yayınevinin odağını ve kapsamını, maddi destekte bulunanların beyan " +"edilmesini ve yayınevinin tarihçesini içerebilir." + +msgid "manager.setup.contextSummary" +msgstr "Yayınevi Özeti" + +msgid "manager.setup.copyediting" +msgstr "Sayfa Düzeni Editörleri" + +msgid "manager.setup.copyeditInstructions" +msgstr "Sayfa Düzenleme Talimatları" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Sayfa Düzenleme Talimatları, Gönderi Düzenleme aşamasında Sayfa Düzeni " +"Editörlerine, Yazarlara ve Bölüm Editörlerine sunulacaktır. Aşağıda, " +"Yayınevi Yöneticisi tarafından herhangi bir noktada (HTML veya düz metin " +"olarak) düzenlenebilen veya değiştirilebilen, HTML biçiminde varsayılan bir " +"talimatlar dizisi bulunmaktadır." + +msgid "manager.setup.copyrightNotice" +msgstr "Telif Hakkı Bildirimi" + +msgid "manager.setup.coverage" +msgstr "Kapsama" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Kapak Resmi için En Fazla Yükseklik" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Kapak Resmi için En Fazla Genişlik" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Görüntüler bu boyuttan daha büyük olduğunda küçültülecek, ancak bu boyutlara " +"uyması için asla şişmeyecek veya gerilmeyecek." + +msgid "manager.setup.customizingTheLook" +msgstr "Adım 5. Görünümü ve Hissi Özelleştirme" + +msgid "manager.setup.customTags" +msgstr "Özel etiketler" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Her sayfanın başlığına eklenecek özel HTML başlık etiketleri (ör. META " +"etiketleri)." + +msgid "manager.setup.details" +msgstr "Detaylar" + +msgid "manager.setup.details.description" +msgstr "" +"Yayınevinin, ilgili kişilerin, maddi destekte bulunanların ve arama " +"motorlarının adı." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Basın Yöneticisi tüm kullanıcı hesaplarını kaydedecektir. Editörler veya " +"Bölüm Editörleri, danışmanlar için kullanıcı hesaplarını kaydedebilir." + +msgid "manager.setup.discipline" +msgstr "Bilim Dalı ve Alt Bilim Dalları" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Yayınevi disiplin sınırları dışına çıktığında ve/veya yazarlar çok " +"disiplinli öğeler sunduğunda kullanışlıdır." + +msgid "manager.setup.disciplineExamples" +msgstr "(Ör. Tarih; Eğitim; Sosyoloji; Psikoloji; Kültürel Çalışmalar; Hukuk)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "Bu yayınevi için ilgili akademik bilim dalları örneklerini sağlayın" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Mevcut kitabın içindekiler tablosunu ekleyin (varsa)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Ana Sayfa İçeriği" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Öne çıkan kitapları ana sayfada görüntüleyin" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Öne Çıkan Kitaplar" + +msgid "manager.setup.displayInSpotlight" +msgstr "Gündemdeki kitapları ana sayfada görüntüleyin" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Gündem" + +msgid "manager.setup.displayNewReleases" +msgstr "Ana sayfada yeni yayınları görüntüleyin" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Yeni Eklenenler" + +msgid "manager.setup.enableDois.description" +msgstr "" + +#, fuzzy +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "Lütfen DOI'lerin atanacağı nesneleri seçin." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "" + +msgid "manager.dois.formatIdentifier.file" +msgstr "" + +msgid "manager.setup.editorDecision" +msgstr "Editör Kararı" + +msgid "manager.setup.emailBounceAddress" +msgstr "İade Adresi" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"Teslim edilemeyen tüm e-postalar, bu adrese bir hata mesajı gönderilmesine " +"neden olacaktır." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Teslim edilemeyen e-postaları bir iade adresine göndermek için, site " +"yöneticisinin site yapılandırma dosyasında allow_envelope_sender seçeneğini etkinleştirmesi gerekir. OMP belgelerinde belirtildiği gibi " +"sunucu yapılandırması gerekebilir." + +msgid "manager.setup.emails" +msgstr "E-posta Kimliği" + +msgid "manager.setup.emailSignature" +msgstr "İmza" + +#, fuzzy +msgid "manager.setup.emailSignature.description" +msgstr "" +"Sistem tarafından yayınevi adına gönderilen hazır e-postaların sonuna " +"aşağıdaki imza eklenecektir." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Duyuruları etkinleştirin" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Okuyucuları haber ve etkinliklerden haberdar etmek için duyurular " +"yayınlanabilir. Yayınlanan duyurular Duyurular sayfasında görünecektir." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Ana Sayfada Görüntüle" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Ana sayfada kaç duyuru görüntülenecek. Hiçbirini görüntülemek istemiyorsanız " +"bunu boş bırakın." + +msgid "manager.setup.enablePressInstructions" +msgstr "Bu yayınevinin sitede herkese açık olarak görünmesini etkinleştirin" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Yayınlanan öğeleri tanımlamak için özel tanımlayıcılar kullanılacaktır." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Yayınlanan öğeler için dizgi dosyalarını (örneğin HTML veya PDF dosyaları) " +"tanımlamak için özel tanımlayıcılar kullanılacaktır." + +msgid "manager.setup.enableUserRegistration" +msgstr "" +"Ziyaretçiler yayınevi aracılığıyla bir kullanıcı hesabı kaydedebilirler." + +msgid "manager.setup.focusAndScope" +msgstr "Yayınevinin Odak Noktası ve Kapsamı" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Yazarlara, okuyuculara ve kütüphanecilere, yayınevinin yayınlayacağı " +"yazıların yelpazesi ve diğer öğeleri anlatın." + +msgid "manager.setup.focusScope" +msgstr "Odak ve Kapsam" + +msgid "manager.setup.focusScopeDescription" +msgstr "ÖRNEK HTML VERİLERİ" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Yazarların Çalışmalarını Dizinleyebilmeleri İçin" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP, küresel ölçekte elektronik araştırma kaynaklarına iyi dizinlenmiş " +"erişim sağlamak için ortaya çıkan standart olan Üst Veri Toplama için Açık Arşiv Girişimi Protokolüne bağlıdır. Yazarlar, gönderilerine üst veriler sağlamak için " +"benzer bir şablon kullanacaklardır. Yayınevi Müdürü, indeksleme için " +"bölümleri seçmeli ve yazarlara, terimleri noktalı virgülle ayırmak (örneğin, " +"terim1; terim2) ve çalışmalarını indekslemelerine yardımcı olmak için ilgili " +"örnekler sunmalıdır. Girişler örnek olarak \"Örn.\" veya \"Örneğin\" " +"kullanılarak tanıtılmalıdır." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Temel iletişim e-postası gereklidir." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Temel iletişimden sorumlu kişi adı gerekli." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Gönderi başına danışman sayısı gereklidir." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Destek e-postası gereklidir." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Destek sorumlusunun adı gerekli." + +msgid "manager.setup.generalInformation" +msgstr "Genel bilgi" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "1. Adım Ayrıntıları Öğrenmek" + +msgid "manager.setup.guidelines" +msgstr "Kurallar" + +msgid "manager.setup.preparingWorkflow" +msgstr "Adım 3. İş akışını hazırlama" + +msgid "manager.setup.identity" +msgstr "Yayınevi Kimliği" + +msgid "manager.setup.information" +msgstr "Bilgi" + +msgid "manager.setup.information.description" +msgstr "" +"Kütüphaneciler ve gelecekteki muhtemel yazarlar ve okuyucular için " +"yayınevinin kısa açıklamaları. Bilgi bloğu eklendiğinde bunlar sitenin kenar " +"çubuğunda kullanıma sunulur." + +msgid "manager.setup.information.forAuthors" +msgstr "Yazarlar İçin" + +msgid "manager.setup.information.forLibrarians" +msgstr "Kütüphaneciler İçin" + +msgid "manager.setup.information.forReaders" +msgstr "Okuyucular İçin" + +msgid "manager.setup.information.success" +msgstr "Bu yayınevi için bilgiler güncellendi." + +msgid "manager.setup.institution" +msgstr "Enstitü" + +msgid "manager.setup.itemsPerPage" +msgstr "Sayfa başına öğe" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Sonraki öğeleri başka bir sayfada göstermeden önce bir listede gösterilecek " +"öğe sayısını (örneğin, gönderiler, kullanıcılar veya düzenleme atamaları) " +"sınırlayın." + +msgid "manager.setup.keyInfo" +msgstr "Anahtar Bilgi" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Yayınevinizin kısa bir tanımını verin ve editörleri, yazı işleri müdürleri " +"ve yayın kurulunuzun diğer üyelerini belirleyin." + +msgid "manager.setup.labelName" +msgstr "Eiket Adı" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Mizanpaj Editörleri" + +msgid "manager.setup.layoutInstructions" +msgstr "Mizanpaj Talimatları" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Yayınevinde yayınlanan yazıların biçimlendirilmesi için Mizanpaj Talimatları " +"hazırlanabilir ve aşağıya HTML veya düz metin olarak girilebilir. Her " +"gönderinin Düzenleme sayfasında Mizanpaj Editörü ve Bölüm Editörüne " +"sunulacaktır. (Her yayınevi kendi dosya biçimlerini, kaynakça " +"standartlarını, stil sayfalarını vb. kullanabileceğinden, varsayılan bir " +"talimat dizisi sağlanmamıştır.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Mizanpaj Şablonları" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"Şablonlar, Mizanpaj Editörleri ve Prova Dizgi okuyucuları için bir kılavuz " +"görevi görmesi için herhangi bir dosya biçimi (örn., pdf, doc, vb.) " +"kullanılarak yayınevinde yayınlanan standart biçimlerin her biri için (örn. " +"monografi, kitap incelemesi, vb.) yazı tipi, boyut, kenar boşluklarını vb. " +"belirten ek açıklamalarla birlikte Mizanpajda görünecek şekilde yüklenebilir." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Şablon Dosyası" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Başlık" + +msgid "manager.setup.lists" +msgstr "Listeler" + +msgid "manager.setup.lists.success" +msgstr "Liste ayarları güncellendi." + +msgid "manager.setup.look" +msgstr "Bak & Hisset" + +msgid "manager.setup.look.description" +msgstr "" +"Ana sayfa başlığı, içerik, yayınevi başlığı, alt bilgi, gezinme çubuğu ve " +"stil sayfası." + +msgid "manager.setup.settings" +msgstr "Ayarlar" + +msgid "manager.setup.management.description" +msgstr "" +"Erişim ve güvenlik, planlama, duyurular, sayfa düzenleme, mizanpaj ve prova " +"dizgi kontrolü." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Temel Editörlük Adımlarının Yönetimi" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Kurulumun Yönetim ve Yayınlanması" + +msgid "manager.setup.managingThePress" +msgstr "Adım 4. Ayarları Yönetme" + +msgid "manager.setup.masthead.success" +msgstr "Bu yayınevi için künye ayrıntıları güncellendi." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Hiçbir resim dosyası yüklenmedi." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Hiçbir stil sayfası yüklenmedi." + +msgid "manager.setup.note" +msgstr "Not" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Yazara Bildirim e-postasını kullanırken, yalnızca gönderen kullanıcının " +"değil, birden çok yazarlı gönderimler için tüm ortak yazarların e-posta " +"adreslerini dahil edin." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Sayfa düzenlemesi, gönderiye atanan bir Editör veya Bölüm Editörü tarafından " +"yapılacaktır." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Gönderiye atanan Editör veya Bölüm Editörü HTML, PDF vb. dosyaları " +"hazırlayacaktır." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Gönderiye atanan bir Editör veya Bölüm Editörü baskı dizgilerini kontrol " +"edecektir." + +msgid "manager.setup.numPageLinks" +msgstr "Sayfa bağlantıları" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Listedeki sonraki sayfalarda görüntülenecek bağlantıların sayısını " +"sınırlayın." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Yayınevi İçeriğine Erişim" + +msgid "manager.setup.onlineIssn" +msgstr "Çevrimiçi ISSN" + +msgid "manager.setup.policies" +msgstr "Politikalar" + +msgid "manager.setup.policies.description" +msgstr "" +"Odaklanma, danışman değerlendirmesi, bölümler, gizlilik, güvenlik ve öğeler " +"hakkında ek bilgiler." + +msgid "manager.setup.privacyStatement.success" +msgstr "Gizlilik bildirimi güncellendi." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Bu sayfadan, başlık ve alt bilgi öğeleri, yayınevi stili ve teması ve bilgi " +"listelerinin kullanıcılara nasıl sunulduğu dahil olmak üzere yayınevi " +"görünümünün çeşitli bileşenleri yapılandırılabilir." + +msgid "manager.setup.pressDescription" +msgstr "Yayınevi Özeti" + +msgid "manager.setup.pressDescription.description" +msgstr "Yayınevinizin kısa bir açıklaması." + +msgid "manager.setup.aboutPress" +msgstr "Yayınevi Hakkında" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Okuyucuların, yazarların veya danışmanların ilgisini çekebilecek yayınevi " +"hakkındaki her türlü bilgiyi dahil edin. Bu, açık erişim politikanızı, " +"yayınevinin odağını ve kapsamını, telif hakkı bildirimini, maddi destekte " +"bulunanların açıklanmasını, basın tarihçesini ve bir gizlilik bildirimini " +"içerebilir." + +msgid "manager.setup.pressArchiving" +msgstr "Yayın Arşivleme" + +msgid "manager.setup.homepageContent" +msgstr "Yayınevi Ana Sayfa İçeriği" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Yayınevi ana sayfası varsayılan olarak gezinme bağlantılarından oluşur. Ek " +"ana sayfa içeriği, aşağıdaki seçeneklerden belirtilen sırayla görünecek olan " +"biri veya tümü kullanılarak eklenebilir." + +msgid "manager.setup.pressHomepageContent" +msgstr "Yayınevi Ana Sayfa İçeriği" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Yayınevi ana sayfası varsayılan olarak gezinme bağlantılarından oluşur. Ek " +"ana sayfa içeriği, aşağıdaki seçeneklerden belirtilen sırayla görünecek olan " +"biri veya tümü kullanılarak eklenebilir." + +msgid "manager.setup.contextInitials" +msgstr "Yayınevinin Baş Harfleri" + +msgid "manager.setup.selectCountry" +msgstr "" +"Bu yayıncının bulunduğu ülkeyi veya yayıncının posta adresinin bulunduğu " +"ülkeyi seçin." + +msgid "manager.setup.layout" +msgstr "Yayınevi Sayfa Düzeni" + +msgid "manager.setup.pageHeader" +msgstr "Yayınevi Sayfa Başlığı" + +msgid "manager.setup.pageHeaderDescription" +msgstr "Sayfa Başlığı Tanımı" + +msgid "manager.setup.pressPolicies" +msgstr "Adım 2. Yayınevi Politikaları" + +msgid "manager.setup.pressSetup" +msgstr "Yayınevi Kurulumu" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Yayınevi kurulumunuz güncellendi." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Geçersiz stil sayfası biçimi. Kabul edilen biçim .css şeklindedir." + +msgid "manager.setup.pressTheme" +msgstr "Yayınevi Teması" + +msgid "manager.setup.pressThumbnail" +msgstr "Yayınevinin Minik Resmi" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Yayınevi listelerinde kullanılabilecek yayınevinin küçük bir logosu veya " +"temsili resmi." + +msgid "manager.setup.contextTitle" +msgstr "Yayınevi Adı" + +msgid "manager.setup.printIssn" +msgstr "ISSN'yi yazdır" + +msgid "manager.setup.proofingInstructions" +msgstr "Prova Baskı Talimatları" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Prova dizgi okuma talimatları, Gönderi Düzenleme aşamasında Prova dizgi " +"okuyucuları, Yazarlar, Mizanpaj Editörleri ve Bölüm Editörlerinin " +"kullanımına sunulacaktır. Aşağıda, Yayınevi Yöneticisi tarafından herhangi " +"bir noktada (HTML veya düz metin olarak) düzenlenebilen veya " +"değiştirilebilen, HTML biçiminde varsayılan bir dizi talimat bulunmaktadır." + +msgid "manager.setup.proofreading" +msgstr "Prova Dizgi Okuyucuları" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Mizanpaj Editörlerine talimatları sağlayın." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Yayın öğeleri, kendi İçindekiler Tablosu ile birlikte bir kitabın parçası " +"olarak toplu olarak yayınlanabilir. Bunun yerine, tek tek öğeler \"mevcut\" " +"cildin İçindekiler Tablosuna eklenerek hazır olur olmaz yayınlanabilir. " +"Okurlara Yayınevi Hakkında sayfasında bu yayınevinin kullanacağı sistem ve " +"beklenen yayın sıklığı hakkında bir açıklama sağlayın." + +msgid "manager.setup.publisher" +msgstr "Yayımcı" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Eseri yayınlayan kuruluşun adı Yayınevi Hakkında bölümünde yer alacaktır." + +msgid "manager.setup.referenceLinking" +msgstr "Kaynak İlişkilendirme" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Kaynak İlişkilendirme için Mizanpaj Talimatları" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Açık erişim içeriğini görüntülemek için kullanıcıların kayıt olması ve " +"oturum açması gerekir." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Yayınevi sitesini görüntülemek için kullanıcıların kayıt olması ve oturum " +"açması gerekir." + +msgid "manager.setup.reviewGuidelines" +msgstr "Dış Değerlendirme Yönergeleri" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Dışarıdan danışmanlara, bir gönderinin yayınevinde yayınlanmaya uygun olup " +"olmadığına karar vermek için, etkili ve yararlı bir inceleme hazırlamak için " +"talimatlar içerebilecek kriterler sağlayın. Danışmanlar, yazar ve editöre " +"yönelik yorumların yanı sıra yalnızca editöre yönelik ayrı yorumlar sağlama " +"fırsatına sahip olacaklar." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Dahili Değerlendirme Yönergeleri" + +msgid "manager.setup.reviewOptions" +msgstr "Değerlendirme Seçenekleri" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Otomatik E-posta Hatırlatıcıları" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Bu seçenekleri etkinleştirmek için, site yöneticisinin OMP yapılandırma " +"dosyasında zamanlanmış görevler seçeneğini etkinleştirmesi gerekir. " +"OMP belgelerinde belirtildiği gibi, bu işlevi desteklemek için ek sunucu " +"yapılandırması gerekebilir (bu tüm sunucularda mümkün olmayabilir)." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Editörler, her incelemeden sonra danışmanları beş puanlık bir kalite " +"ölçeğine göre derecelendirecektir." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Dosya Erişimini Kısıtla" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Danışmanlar, gönderi dosyasına ancak değerlendirmeyi kabul ettikten sonra " +"erişebilirler." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Danışman Erişimi" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Tek Tıkla Danışman Erişimi" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Danışmanlara, e-posta davetinde oturum açmadan incelemeye erişmelerine " +"olanak tanıyan güvenli bir bağlantı gönderilebilir. Diğer sayfalara erişim, " +"oturum açmalarını gerektirir." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" +"E-posta davetiyesine danışmanlara yönelik güvenli bir bağlantı ekleyin." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Danışman Puanları" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Danışman Hatırlatıcıları" + +msgid "manager.setup.reviewPolicy" +msgstr "Değerlendirme Politikası" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Arama sonuçlarında yayınevini listelerken arama motorlarının " +"görüntüleyebileceği yayınevine ait kısa bir açıklama (50-300 karakter) " +"sağlayın." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Fihristte Ara" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Google gibi arama motorlarının sitenizi keşfetmesine ve görüntülemesine " +"yardımcı olun. Site haritanızı göndermeniz tavsiye edilir." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Arama motoru dizin ayarları güncellendi." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Bölümler ve Bölüm Editörleri" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Bölümler eklenmemişse öğeler varsayılan olarak Yazılar bölümüne gönderilir.)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Yayınevi için bölümler (örn. Yazılar, Kitap İncelemeleri, vb.) oluşturmak " +"veya değiştirmek için Bölüm Yönetimi'ne gidin.

            Öğeleri " +"yayınevine gönderen yazarlar belirleyecek…" + +msgid "manager.setup.securitySettings" +msgstr "Erişim ve Güvenlik Ayarları" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Güvenlikle ve erişimle ilgili diğer seçenekler
            Erişim ve " +"Güvenlik sayfasından yapılandırılabilir." + +msgid "manager.setup.selectEditorDescription" +msgstr "Editöryal süreç boyunca görecek yayınevi editörü." + +msgid "manager.setup.selectSectionDescription" +msgstr "Öğenin değerlendirileceği yayınevi bölümü." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "Her zaman dizgi bağlantılarını gösterin ve sınırlı erişimi belirtin." + +msgid "manager.setup.siteAccess.view" +msgstr "Site Erişimi" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Yazı İçeriğini Görüntüle" + +msgid "manager.setup.stepsToPressSite" +msgstr "Bir Yayınevi Web Sitesine Giden Beş Adım" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(Örneğin, Fotosentez; Kara Delikler; Dört Renkli Harita Problemi; Bayes " +"Teorisi)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Anahtar Kelimeler" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Yazarlar için bir kılavuz olarak anahtar kelime veya konu örnekleri sağlayın" + +msgid "manager.setup.submissionGuidelines" +msgstr "Gönderim yönergeleri" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Kontrol listesi öğesi gerekli." + +msgid "manager.setup.workflow" +msgstr "İş Akışı" + +msgid "manager.setup.submissions.description" +msgstr "Yazar yönergeleri, telif hakkı ve dizinleme (kayıt dahil)." + +msgid "manager.setup.typeExamples" +msgstr "(Örn., Tarihsel Araştırma; Yarı Deneysel; Edebi Tahlil; Anket/Görüşme)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Tür (Yöntem/Yaklaşım)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Bu alan için ilgili araştırma türleri, yöntemleri ve yaklaşımlarına yönelik " +"örnekler sağlayın" + +msgid "manager.setup.useCopyeditors" +msgstr "Her gönderi ile çalışmak üzere bir Sayfa Düzeni Editörü atanacaktır." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "Yayınevi tarafından bir yayın/danışma kurulu kullanılacaktır." + +msgid "manager.setup.useImageTitle" +msgstr "Başlık Resmi" + +msgid "manager.setup.useStyleSheet" +msgstr "Yayınevi stil sayfası" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"HTML, PDF vb. dosyaları elektronik yayına hazırlamak için bir Mizanpaj " +"Editörü atanacaktır." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Yayınlanmadan önce dizgileri (yazarlar ile birlikte) kontrol etmesi için bir " +"Prova Dizgi Okuyucusu görevlendirilecektir." + +msgid "manager.setup.userRegistration" +msgstr "Kullanıcı Kaydı" + +msgid "manager.setup.useTextTitle" +msgstr "Başlık Metni" + +msgid "manager.setup.volumePerYear" +msgstr "Yıllık Cilt Sayısı" + +msgid "manager.setup.publicationFormat.code" +msgstr "Biçim" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Bir yayın biçimi seçilmelidir." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Bu biçime bir ad vermelisiniz." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Bu fiziksel (dijital olmayan) bir biçim mi?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Bu yayın biçimi şu anda yayınevinizdeki bir risale tarafından " +"kullanıldığından silinemez." + +msgid "manager.setup.newPublicationFormat" +msgstr "Yeni Yayın Biçimi" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Yeni bir yayın biçimi oluşturmak için aşağıdaki formu doldurun ve 'Oluştur' " +"butonuna tıklayın." + +msgid "manager.setup.genresDescription" +msgstr "" +"Bu türler, dosya adlandırma amacıyla kullanılır ve dosyaların yüklenmesiyle " +"ilgili bir açılır menüde sunulur. ## olarak belirtilen türler, kullanıcının " +"dosyayı 99Z kitabının tamamıyla veya numarasına göre belirli bir bölümle " +"(ör. 02) ilişkilendirmesine izin verir." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Bu yayınevi şu anda başvuruları kabul etmiyor. Gönderimlere izin vermek için " +"iş akışı ayarlarını ziyaret edin." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Kullanıcıların yayınevine yeni makaleler göndermesini önleyin. Münferit " +"yayın dizileri için gönderimler, yayın dizisi " +"ayarları sayfasından devre dışı bırakılabilir." + +msgid "manager.setup.genres" +msgstr "Türler" + +msgid "manager.setup.newGenre" +msgstr "Yeni Risale Türü" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Yeni bir tür oluşturmak için aşağıdaki formu doldurun ve 'Oluştur' düğmesini " +"tıklayın." + +msgid "manager.setup.deleteSelected" +msgstr "Seçilenleri Sil" + +msgid "manager.setup.restoreDefaults" +msgstr "Ayarları varsayılan duruma getir" + +msgid "manager.setup.prospectus" +msgstr "Tanıtım Rehberi" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Tanıtım kılavuzu, yazarın gönderilen materyalleri, bir yayınevinin " +"gönderinin değerini belirlemesine izin verecek şekilde açıklamasına yardımcı " +"olan, yayınevince hazırlanmış bir belgedir. Bir tanıtım kitapçığı, pazarlama " +"potansiyelinden teorik değere kadar pek çok öğe içerebilir; her halükarda, " +"bir yayınevi yayın gündemini tamamlayan bir tanıtım kılavuzu oluşturmalıdır." + +msgid "manager.setup.submitToCategories" +msgstr "Bölüm gönderimlerine izin ver" + +msgid "manager.setup.submitToSeries" +msgstr "Dizi gönderimlerine izin ver" + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN (Uluslararası Standart Sıra Numarası), elektronik diziler de dahil " +"olmak üzere süreli yayınları tanımlayan sekiz basamaklı bir sayıdır. Uluslararası ISSN Merkezinden " +"bir numara alınabilir." + +msgid "manager.setup.currentFormats" +msgstr "Mevcut Biçimler" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Bölümler ve Diziler" + +msgid "manager.setup.categories.description" +msgstr "" +"Yayınlarınızı düzenlemenize yardımcı olması için bir bölüm listesi " +"oluşturabilirsiniz. Bölümler, konularına göre kitapların " +"kümelendirilmesidir, örneğin Ekonomi; Edebiyat; Şiir; ve bunun gibi. " +"Bölümler, \"ana\" bölümler içinde yuvalanabilir: örneğin, bir Ekonomi ana " +"bölümü, ayrı ayrı Mikroekonomi ve Makroekonomi bölümlerini içerebilir. " +"Ziyaretçiler, yayınevini bölümlere göre arayabilecek ve göz atabilecektir." + +msgid "manager.setup.series.description" +msgstr "" +"Yayınlarınızı düzenlemenize yardımcı olması için istediğiniz sayıda dizi " +"oluşturabilirsiniz. Bir dizi, genellikle bir veya iki öğretim üyesi olmak " +"üzere birinin önerdiği ve ardından denetlediği bir konuya veya başlıklara " +"ayrılmış özel bir kitap kümesini temsil eder. Ziyaretçiler, yayınevini " +"dizilere göre arayabilecek ve göz atabilecektir." + +msgid "manager.setup.reviewForms" +msgstr "Değerlendirme Formları" + +msgid "manager.setup.roleType" +msgstr "Rol Türü" + +msgid "manager.setup.authorRoles" +msgstr "Yazar Görevleri" + +msgid "manager.setup.managerialRoles" +msgstr "Yönetim Görevleri" + +msgid "manager.setup.availableRoles" +msgstr "Geçerli Görevler" + +msgid "manager.setup.currentRoles" +msgstr "Mevcut Görevler" + +msgid "manager.setup.internalReviewRoles" +msgstr "Dahili Değerlendirme Görevleri" + +msgid "manager.setup.masthead" +msgstr "Künyesi" + +msgid "manager.setup.editorialTeam" +msgstr "Yayın Kurulu" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Editörlerin, yazı işleri müdürleri ve basınla ilişkili diğer kişilerin " +"listesi." + +msgid "manager.setup.files" +msgstr "Dosyalar" + +msgid "manager.setup.productionTemplates" +msgstr "Üretim Şablonları" + +msgid "manager.files.note" +msgstr "" +"Not: Dosya Tarayıcısı, bir yayıneviyle ilişkili dosya ve dizinlerin doğrudan " +"görüntülenmesine ve değiştirilmesine olanak tanıyan gelişmiş bir özelliktir." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

            Önerilen Creative Commons Telif Hakkı Bildirimleri

            \n" +"

            Açık Erişim Sağlayan Yayınevleri İçin Önerilen Politika

            \n" +"Bu yayınevi ile yayın yapan yazarlar aşağıdaki şartları kabul eder:\n" +"
              \n" +"\t
            1. Yazarlar telif haklarını korurlar ve aynı anda yazara atıfta " +"bulunulmak ve ilk kez yayınevimizde yayınlandığı belirtilmek kaydı ile " +"çalışmanın özgürce paylaşılmasına imkan tanıyan Creative Commons Atıf " +"Ruhsatı ile ruhsatlandırılması ve çalışmayı ilk kez yayınlama hakkını " +"verirler.
            2. \n" +"\t
            3. Yazarlar, çalışmanın ilk kez yayınevimizde yayınlandığı belirtilmek " +"kaydı ile, yayınevimizde yayınlanan sürümünün münhasır olmayan şekilde " +"dağıtılması (Ör., kurumsal bir bilgi havuzuna eklenmesi veya bir kitapta " +"yayınlanması) için ayrı, ek sözleşmeler yapabilirler.
            4. \n" +"\t
            5. Yazarlar, üretken değişimlere yol açabileceğinden ve yayınlanmış " +"çalışmaların daha erken ve daha fazla alıntılanmasına yol açabileceğinden, " +"çalışmalarını çevrimiçi olarak (örneğin, kurumsal arşivlerde veya web " +"sitelerinde) gönderme süreci öncesinde ve sırasında yayınlamalarına izin " +"verilir ve teşvik edilirler (Bkz Açık Erişimin Etkisi).
            6. \n" +"
            \n" +"\n" +"

            Gecikmeli Açık Erişim Sunan Yayınevleri için Önerilen Politika

            \n" +"Bu yayınevi ile yayın yapan yazarlar aşağıdaki şartları kabul eder:\n" +"
              \n" +"\t
            1. Yazarlar telif haklarını korurlar ve eserin ilk olarak yayınevi " +"tarafından yayınlanmasına, ve yayınlandıktan [BEKLEME SÜRESİNİ BELİRTİN, Ör. " +"2 yıl] sonra eşzamanlı olarak aynı anda yazara atıfta bulunulmak ve ilk kez " +"yayınevimizde yayınlandığı belirtilmek kaydı ile çalışmanın özgürce " +"paylaşılmasına imkan tanıyan Creative Commons Atıf Ruhsatı ile " +"ruhsatlandırılmasına izin verirler.
            2. \n" +"\t
            3. Yazarlar, çalışmanın ilk kez yayınevimizde yayınlandığı belirtilmek " +"kaydı ile, yayınevimizde yayınlanan sürümünün münhasır olmayan şekilde " +"dağıtılması (Ör., kurumsal bir bilgi havuzuna eklenmesi veya bir kitapta " +"yayınlanması) için ayrı, ek sözleşmeler yapabilirler.
            4. \n" +"\t
            5. Yazarlar, üretken değişimlere yol açabileceğinden ve yayınlanmış " +"çalışmaların daha erken ve daha fazla alıntılanmasına yol açabileceğinden, " +"çalışmalarını çevrimiçi olarak (örneğin, kurumsal arşivlerde veya web " +"sitelerinde) gönderme süreci öncesinde ve sırasında yayınlamalarına izin " +"verilir ve teşvik edilirler (Bkz Açık Erişimin Etkisi).
            6. \n" +"
            " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Adımlar: Gönderi Kuyruğu> Gönderi Değerlendirmesi> Gönderi " +"Düzenleme> İçindekiler.

            \n" +"Editoryal sürecin bu yönlerini ele almak için bir model seçin. (Bir Yazı " +"İşleri Müdürü ve Dizi Editörleri belirlemek için, Yayınevi Yönetiminde " +"Editörlere gidin.)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

            Okuyucuların bir yazar tarafından alıntılanan çalışmanın çevrimiçi " +"sürümlerini bulmasını sağlamak için aşağıdaki seçenekler mevcuttur.

            \n" +"\n" +"
              \n" +"\t
            1. Okuma Aracı Ekleme

              Yayınevi Yöneticisi, yayınlanan " +"öğelere eşlik eden Okuma Araçlarına \"Kaynak Bul\" ekleyebilir ki bu, " +"okuyucuların bir kaynağın başlığını yapıştırmasına ve ardından alıntı " +"yapılan çalışma için önceden seçilmiş bilimsel veritabanlarında arama " +"yapmasına imkan tanır.

            2. \n" +"\t
            3. Kaynaklara Bağlantıları Göm

              Mizanpaj Editörü, " +"aşağıdaki talimatlar (düzenlenebilir) kullanılarak çevrimiçi bulunabilen " +"referanslara bir bağlantı ekleyebilir.

            4. \n" +"
            " + +msgid "manager.publication.library" +msgstr "Yayınevi Kitaplığı" + +msgid "manager.setup.resetPermissions" +msgstr "Risale İzinlerini Sıfırla" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Risalelere önceden eklenmiş olan izin verilerini sıfırlamak istediğinizden " +"emin misiniz?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Telif hakkı beyanı ve ruhsat bilgileri, yayınlanan içeriğe kalıcı olarak " +"eklenecek ve yeni gönderimler için politikalarını değiştiren bir yayınevi " +"olması durumunda bu verilerin değişmemesini sağlayacak. Yayınlanmış içeriğe " +"önceden eklenmiş olan saklı izin bilgilerini sıfırlamak için aşağıdaki " +"düğmeyi kullanın." + +msgid "manager.setup.resetPermissions.success" +msgstr "Risale izinleri başarıyla sıfırlandı." + +msgid "grid.genres.title.short" +msgstr "Bileşenler" + +msgid "grid.genres.title" +msgstr "Risale Bileşenleri" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Yayınevi Ayarları'nda belirtilen temel iletişim yetkilisine bir kopya " +"gönderin." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Dizi yolu yalnızca harflerden ve sayılardan oluşmalıdır." + +msgid "grid.series.pathExists" +msgstr "Dizi yolu zaten kullanımda. Lütfen benzersiz bir yol girin." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Dizi Seçin" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "Lütfen bu menü öğesinin bağlanmasını istediğiniz diziyi seçin." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Bölüm seç" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "Lütfen bu menü öğesinin bağlanmasını istediğiniz bölümü seçin." + +msgid "grid.series.urlWillBe" +msgstr "Dizinin URL'si şu şekilde olacaktır: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "Yazı İstatistikleri" + +msgid "stats.publications.details" +msgstr "Yazı Ayrıntıları" + +msgid "stats.publications.none" +msgstr "" +"Bu parametrelerle eşleşen kullanım istatistiklerine sahip yazı bulunamadı." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Tarihe göre toplam fihrist görüntüleme sayısı" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Tarihe göre toplam dosya görüntüleme sayısı" + +msgid "stats.publications.countOfTotal" +msgstr "{$total} yazıdan {$count} adedi" + +msgid "stats.publications.abstracts" +msgstr "Fihrist Kayıtları" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Hiçbir nesne seçilmedi." + +msgid "plugins.importexport.common.error.validation" +msgstr "Seçili nesneler dönüştürülemedi." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Geçersiz XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Başvuruları Gönder" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Birincil irtibat kişisine gönderim teşekkür e-postasının bir kopyasını " +"gönderin." + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"Birincil kişi tanımlanmadı. Yayın ayarlarında bir " +"birincil kişi girebilirsiniz." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Belirtilen nesneler bulunamadı." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "Belirtilen kullanıcı \"{$userName}\" mevcut değil." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Yayın biçimleri çözümlenemedi" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Bölümler çözümlenemedi" + +msgid "emailTemplate.variable.context.contextName" +msgstr "Yayının adı" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "Yayının ana sayfasının URL'si" + +msgid "emailTemplate.variable.context.contactName" +msgstr "Yayının birincil irtibat kişisinin adı" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "Otomatik e-postalar için yayının e-posta imzası" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "Yayının birincil irtibat kişisinin e-posta adresi" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "Ödeme türünün adı" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Ödeme tutarı" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "Ödeme tutarının para birimi, örn; USD gibi" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Birden fazla yayının barındırıldığı web sitesinin adı" + +msgid "mailable.validateEmailContext.name" +msgstr "E-postayı Doğrula (Basın Kaydı)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Bu e-posta, yeni kullanıcı kaydında e-posta adresinin doğrulanmasını için " +"otomatik olarak gönderilir." + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "" + +msgid "doi.description" +msgstr "" +"Bu eklenti, Sayısal Nesne Tanımlayıcılarının OMP'deki yazılara, bölümlere, " +"yayın biçimlerine ve dosyalara atanmasını sağlar." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "" +"OMP'de DOI'leri yönetebilmek ve kullanabilmek için lütfen DOI eklentisini " +"yapılandırın:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Lütfen Sayısal Nesne Tanımlayıcılarının (DOI) atanacağı yayınlama " +"nesnelerini seçin:" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Yazılar" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Bölümler" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Yayın Biçimleri" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Dosyalar" + +msgid "doi.manager.settings.doiPrefix" +msgstr "DOI Ön eki" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "DOI ön eki zorunludur ve 10.xxxx biçiminde olmalıdır." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"DOI son eklerini oluşturmak için aşağıda girilen modeli kullanın. Yayınevi " +"baş harfleri için %p, yazı kimliği için% m, bölüm kimliği için %c, yayın " +"biçimi kimliği için %f, dosya kimliği için %s ve \"Özel Tanımlayıcı\" için " +"%x kullanın." + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Örneğin, %ppub%r tuşuna basmak 10.1234/pressESPpub100 gibi bir DOI " +"oluşturabilir" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "yazılar için" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "bölümler için" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "yayın biçimleri için" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "dosyalar için" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Lütfen yazılar için DOI son ek kalıbını girin." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Lütfen bölümler için DOI son ek kalıbını girin." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Yayın biçimleri için lütfen DOI son ek modelini girin." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Lütfen dosyalar için DOI son ek modelini girin." + +msgid "doi.manager.settings.doiReassign" +msgstr "DOI'leri yeniden atayın" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"DOI yapılandırmasını değiştirirseniz, zaten atanmış olan DOI'ler " +"etkilenmeyecektir. DOI yapılandırması kaydedildikten sonra, mevcut tüm " +"DOI'leri temizlemek için bu düğmeyi kullanın, böylece yeni ayarlar mevcut " +"tüm nesnelerde etkili olur." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Mevcut tüm DOI'leri silmek istediğinizden emin misiniz?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "DOI, {$prefix} ile başlamalıdır." + +msgid "doi.editor.doi.assignDoi" +msgstr "Atama" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "yazı" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "bölüm" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "yayın biçimi" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "dosya" + +msgid "doi.editor.customSuffixMissing" +msgstr "DOI, özel son ek eksik olduğu için atanamıyor." + +msgid "doi.editor.missingParts" +msgstr "" +"DOI modelinin bir veya daha fazla bölümünde veri eksik olduğundan bir DOI " +"oluşturamazsınız." + +msgid "doi.editor.patternNotResolved" +msgstr "DOI, çözümlenemeyen bir model içerdiğinden atanamaz." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Gördüğünüz şey DOI'nin bir ön izlemesidir. DOI'yi atamak için onay kutusunu " +"seçin ve formu kaydedin." + +msgid "doi.editor.assigned" +msgstr "DOI bu {$pubObjectType}'a atanır." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Verilen DOI son eki, yayınlanan başka bir öğe için zaten kullanılıyor. " +"Lütfen her öğe için benzersiz bir DOI son eki girin." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Temizle" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Mevcut DOI'yi silmek istediğinizden emin misiniz?" + +msgid "doi.editor.assignDoi" +msgstr "DOI'yi {$pubId} bu {$pubObjectType} 'a atayın" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI, özel son ek eksik olduğu için atanamıyor." + +msgid "doi.editor.assignDoi.pattern" +msgstr "DOI {$pubId} çözümlenemeyen bir model içerdiğinden atanamaz." + +msgid "doi.editor.assignDoi.assigned" +msgstr "DOI {$pubId} atandı." + +msgid "doi.editor.missingPrefix" +msgstr "DOI, {$doiPrefix} ile başlamalıdır." + +msgid "doi.editor.preview.publication" +msgstr "Bu yayının DOI'si {$doi} olacaktır." + +msgid "doi.editor.preview.publication.none" +msgstr "Bu yayına bir DOI atanmamış." + +msgid "doi.editor.preview.chapters" +msgstr "Bölüm: {$title}" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Yayın Biçimi: {$title}" + +msgid "doi.editor.preview.files" +msgstr "Dosya: {$title}" + +msgid "doi.editor.preview.objects" +msgstr "Öğe" + +msgid "doi.manager.submissionDois" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "DOI Ön eki" + +#~ msgid "manager.setup.doiPrefixDescription" +#~ msgstr "" +#~ "DOI (Dijital Nesne Tanımlayıcı) Öneki CrossRef tarafından atanır ve 10.xxxx biçimindedir " +#~ "(örn. 10.1234)." diff --git a/locale/tr/submission.po b/locale/tr/submission.po new file mode 100644 index 00000000000..6573f30b92b --- /dev/null +++ b/locale/tr/submission.po @@ -0,0 +1,577 @@ +# Hüseyin Körpeoğlu , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-01-10 09:39+0000\n" +"Last-Translator: Hüseyin Körpeoğlu \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Bileşeni Seçin" + +msgid "submission.title" +msgstr "Kitap Başlığı" + +msgid "submission.select" +msgstr "Gönderi Seçin" + +msgid "submission.synopsis" +msgstr "Özet" + +msgid "submission.workflowType" +msgstr "Gönderi Türü" + +msgid "submission.workflowType.description" +msgstr "" +"Bir kitap, tamamen bir veya daha fazla yazar tarafından yazılmış bir " +"eserdir. Düzenlenmiş bir cildin (ayrıntıları bu süreçte daha sonra girilen) " +"her bölüm için farklı yazarları vardır" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Düzenlenmiş Cilt" + +msgid "submission.workflowType.editedVolume" +msgstr "Düzenlenmiş Cilt: Yazarlar kendi bölümleri ile ilişkilendirilir." + +msgid "submission.workflowType.authoredWork" +msgstr "Kitap: Yazarlar bir bütün olarak kitapla ilişkilendirilir." + +msgid "submission.workflowType.change" +msgstr "Değiştir" + +msgid "submission.editorName" +msgstr "{$editorName} (ed)" + +msgid "submission.monograph" +msgstr "Yazı" + +msgid "submission.published" +msgstr "Üretime Hazır" + +msgid "submission.fairCopy" +msgstr "Temiz Nüsha" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "İzinler" + +msgid "submission.chapter" +msgstr "Bölüm" + +msgid "submission.chapters" +msgstr "Bölümler" + +msgid "submission.chapter.addChapter" +msgstr "Bölüm Ekle" + +msgid "submission.chapter.editChapter" +msgstr "Bölümü Düzenle" + +msgid "submission.chapter.pages" +msgstr "Sayfa" + +msgid "submission.copyedit" +msgstr "Sayfa Düzeni" + +msgid "submission.publicationFormats" +msgstr "Yayın Biçimleri" + +msgid "submission.proofs" +msgstr "Provalar" + +msgid "submission.download" +msgstr "İndir" + +msgid "submission.sharing" +msgstr "Paylaş" + +msgid "manuscript.submission" +msgstr "Yazı Taslağı Gönderimi" + +msgid "submission.round" +msgstr "{$round}. Tur" + +msgid "submissions.queuedReview" +msgstr "Değerlendirmede" + +msgid "manuscript.submissions" +msgstr "Yazı Taslağı Gönderimleri" + +msgid "submission.metadata" +msgstr "Üst Veri" + +msgid "submission.supportingAgencies" +msgstr "Destekleyen Kurumlar" + +msgid "grid.action.addChapter" +msgstr "Yeni bir bölüm oluştur" + +msgid "grid.action.editChapter" +msgstr "Bu bölümü düzenleyin" + +msgid "grid.action.deleteChapter" +msgstr "Bu bölümü sil" + +msgid "submission.submit" +msgstr "Yeni Kitap Gönderimine Başlayın" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Yeni Bir Gönderim Başlatın" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Yeni Gönderi" + +msgid "submission.submit.upload" +msgstr "Gönderi yükle" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "Bu katılımcıyı bu cildin editörü olarak tanımlayın." + +msgid "submission.submit.seriesPosition" +msgstr "Dizi Konumu" + +msgid "submission.submit.seriesPosition.description" +msgstr "Örnekler: Kitap 2, Cilt 2" + +msgid "submission.submit.privacyStatement" +msgstr "Gizlilik Bildirimi" + +msgid "submission.submit.contributorRole" +msgstr "Katkıda bulunan kişinin görevi" + +msgid "submission.submit.submissionFile" +msgstr "Gönderi Dosyası" + +msgid "submission.submit.prepare" +msgstr "Hazırlayın" + +msgid "submission.submit.catalog" +msgstr "Fihrist" + +msgid "submission.submit.metadata" +msgstr "Üst Veri" + +msgid "submission.submit.finishingUp" +msgstr "Tamamlanıyor" + +msgid "submission.submit.confirmation" +msgstr "Onay" + +msgid "submission.submit.nextSteps" +msgstr "Sonraki Adımlar" + +msgid "submission.submit.coverNote" +msgstr "Editöre Kapak Notu" + +msgid "submission.submit.generalInformation" +msgstr "Genel bilgi" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Yayınevi gönderiniz konusunda bilgilendirildi ve kayıtlarınız için size bir " +"onay e-postası gönderildi. Editör gönderiyi inceledikten sonra sizinle " +"iletişime geçecektir." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Lütfen gönderim kontrol listesindeki maddeleri okuyun ve işaretleyin. " +"İşaretlenmemiş {$itemsRemaining} öğe var." + +msgid "submission.submit.placement" +msgstr "Gönderi Yerleştirme" + +msgid "submission.submit.userGroup" +msgstr "Benim görevimde şu olarak gönder..." + +msgid "submission.submit.noContext" +msgstr "Bu gönderinin yayınevi bulunamadı." + +msgid "grid.chapters.title" +msgstr "Bölümler" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Sayfa Düzeni Editörünün Yüklemesini Sil" + +msgid "submission.complete" +msgstr "Onaylandı" + +msgid "submission.incomplete" +msgstr "Onay Bekliyor" + +msgid "submission.editCatalogEntry" +msgstr "Kayıt" + +msgid "submission.catalogEntry.new" +msgstr "Kayıt Ekle" + +msgid "submission.catalogEntry.add" +msgstr "Seçilenleri Fihriste Ekle" + +msgid "submission.catalogEntry.select" +msgstr "Fihriste eklenecek kitapları bulun" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Fihriste eklemek için en az bir kitap seçmelisiniz." + +msgid "submission.catalogEntry.confirm" +msgstr "Bu kitabı genel fihriste ekleyin" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Lütfen gönderinin fihriste yerleştirilmeye hazır olduğunu onaylayın." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Bu kitap, genel fihriste eklenmeye hazır." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Gönderiyi Görüntüle" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Yayın Tarihleri" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Tüm bölümlerde kitabın yayın tarihi kullanılacaktır." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Her bölümün kendi yayın tarihi olabilir." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Kitap" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Fihrist" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Yayın Biçimi" + +msgid "submission.event.metadataPublished" +msgstr "Yazının üst verileri yayınlanmak üzere onaylanmıştır." + +msgid "submission.event.metadataUnpublished" +msgstr "Yazının üst verileri artık yayınlanmamaktadır." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "\"{$publishFormatName}\" yayın biçimi kullanıma sunulmuştur." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "\"{$publishFormatName}\" yayın biçimi artık mevcut değil." + +msgid "submission.event.publicationFormatPublished" +msgstr "\"{$publishFormatName}\" yayın biçimi yayınlanmak üzere onaylandı." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "\"{$publishFormatName}\" yayın biçimi artık yayınlanmıyor." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Fihrist üst verileri güncellendi." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "\"{$formatName}\" için yayın biçimi üst verileri güncellendi." + +msgid "submission.event.publicationFormatCreated" +msgstr "\"{$formatName}\" yayın biçimi oluşturuldu." + +msgid "submission.event.publicationFormatRemoved" +msgstr "\"{$formatName}\" yayın biçimi kaldırıldı." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Dış Değerlendirmeye Gönder" + +msgid "workflow.review.externalReview" +msgstr "Dış Değerlendirme" + +msgid "submission.upload.fileContents" +msgstr "Gönderi Bileşeni" + +msgid "submission.dependentFiles" +msgstr "Bağımlı Dosyalar" + +msgid "submission.metadataDescription" +msgstr "" +"Bu özellikler, yayın içeriğini tanımlamak için kullanılan uluslararası bir " +"standart olan Dublin Core üst veri setine dayanmaktadır." + +msgid "section.any" +msgstr "Herhangi bir Dizi" + +msgid "submission.list.monographs" +msgstr "Yazılar" + +msgid "submission.list.countMonographs" +msgstr "{$count} yazı" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$total} yazıdan {$count} adedi" + +msgid "submission.list.orderFeatures" +msgstr "Özellikleri Sırala" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Ana sayfadaki özelliklerin sırasını değiştirmek için sürükleyip bırakın veya " +"yukarı ve aşağı düğmelerine dokunun." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"{$title} içindeki özelliklerin sırasını değiştirmek için sürükleyip bırakın " +"veya yukarı ve aşağı düğmelerine dokunun." + +msgid "submission.list.saveFeatureOrder" +msgstr "Sıralamayı Order" + +msgid "submission.list.viewEntry" +msgstr "Girişi Görüntüle" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} Başlık" + +msgid "publication.catalogEntry" +msgstr "Fihrist Girişi" + +msgid "publication.catalogEntry.success" +msgstr "Fihrist girişi ayrıntıları güncellendi." + +msgid "publication.invalidSeries" +msgstr "Bu yayına ait dizi bulunamadı." + +msgid "publication.inactiveSeries" +msgstr "{$series} (Inactive)" + +msgid "publication.required.issue" +msgstr "Yayın, yayınlanmadan önce bir sayıya atanmalıdır." + +msgid "publication.publishedIn" +msgstr "{$issueName} içinde yayınlandı." + +msgid "publication.publish.confirmation" +msgstr "" +"Tüm yayın gereksinimleri karşılanmıştır. Bu fihrist girişini herkese açık " +"hale getirmek istediğinizden emin misiniz?" + +msgid "publication.scheduledIn" +msgstr "" +"{$issueName} içinde yayınlanmak üzere planlandı." + +msgid "submission.publication" +msgstr "Yayın" + +msgid "publication.status.published" +msgstr "Yayınlanan" + +msgid "submission.status.scheduled" +msgstr "Planlanmış" + +msgid "publication.status.unscheduled" +msgstr "Planlanmamış" + +msgid "submission.publications" +msgstr "Yayınlar" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Bir sayıda yayınlandığında telif hakkı yılı otomatik olarak belirlenecektir." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "Telif hakkı yılı, yayın tarihine göre otomatik olarak belirlenecektir." + +msgid "publication.datePublished" +msgstr "Yayın Tarihi" + +msgid "publication.editDisabled" +msgstr "Bu sürüm yayınlandı ve düzenlenemez." + +msgid "publication.event.published" +msgstr "Gönderi yayınlandı." + +msgid "publication.event.scheduled" +msgstr "Gönderinin yayınlanması planlandı." + +msgid "publication.event.unpublished" +msgstr "Gönderi yayınlanmadı." + +msgid "publication.event.versionPublished" +msgstr "Yeni bir sürüm yayınlandı." + +msgid "publication.event.versionScheduled" +msgstr "Yeni bir sürüm yayınlanmak üzere planlandı." + +msgid "publication.event.versionUnpublished" +msgstr "Yayından bir sürüm kaldırıldı." + +msgid "publication.invalidSubmission" +msgstr "Bu yayına ilişkin gönderi bulunamadı." + +msgid "publication.publish" +msgstr "Yayınla" + +msgid "publication.publish.requirements" +msgstr "" +"Bunun yayınlanabilmesi için aşağıdaki gereksinimlerin karşılanması gerekir." + +msgid "publication.required.declined" +msgstr "Reddedilen bir gönderi yayınlanamaz." + +msgid "publication.required.reviewStage" +msgstr "" +"Gönderinin yayınlanabilmesi için Sayfa Düzenleme veya Üretim aşamalarında " +"olması gerekir." + +msgid "submission.license.description" +msgstr "" +"Bu yayınlandığında, ruhsat otomatik olarak {$licenseName} şeklinde ayarlanacaktır." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Telif hakkı, yayınlandığında otomatik olarak {$copyright} adına atanacaktır." + +msgid "submission.copyrightOther.description" +msgstr "Aşağıdaki tarafa yayınlanan gönderimler için telif hakkı atayın." + +msgid "publication.unpublish" +msgstr "Yayından kaldır" + +msgid "publication.unpublish.confirm" +msgstr "Bunun yayınlanmasını istemediğinizden emin misiniz?" + +msgid "publication.unschedule.confirm" +msgstr "Bunun yayınlanmak üzere planlanmasını istemediğinizden emin misiniz?" + +msgid "publication.version.details" +msgstr "{$version} sürümü için yayın ayrıntıları" + +msgid "submission.queries.production" +msgstr "Üretim Tartışmaları" + +msgid "publication.chapter.landingPage" +msgstr "Kısım Sayfası" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "Cilt" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "Sayfalar" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/uk/admin.po b/locale/uk/admin.po new file mode 100644 index 00000000000..87cef6b335c --- /dev/null +++ b/locale/uk/admin.po @@ -0,0 +1,199 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-09-28 23:06+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian " +"\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "Е-видавництва на сервері" + +msgid "admin.settings.appearance.success" +msgstr "Налаштування оформлення вебсайту було успішно збережено." + +msgid "admin.settings.config.success" +msgstr "Налаштування конфігурації вебсайту було успішно оновлено." + +msgid "admin.settings.info.success" +msgstr "Інформацію вебсайту було успішно оновлено." + +msgid "admin.settings.redirect" +msgstr "Перенаправлення е-видавництва" + +msgid "admin.settings.redirectInstructions" +msgstr "" +"Запити до головного вебсайту будуть перенаправлятися до цього е-видавництва. " +"Це може бути корисним, наприклад, якщо на вебсайті представлено лише одне " +"е-видавництво." + +msgid "admin.settings.noPressRedirect" +msgstr "Не перенаправляти" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" +"Цю мову буде встановлено за замовчуванням для вебсайту й розміщених на ньому " +"е-видавництв." + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" +"Виберіть усі локалізації для підтримки на вебсайті. Вибрані локалізації " +"будуть доступні для всіх е-видавництв, розміщених на цьому вебсайті, а також " +"з'являться в меню вибору мови на кожній сторінці сайту (це налаштування може " +"бути змінено на сторінках окремих е-видавництв). Якщо не вибрано кілька " +"локалізацій, меню перемикання мов не з'явиться і розширені мовні " +"налаштування для е-видавництв будуть недоступні." + +msgid "admin.locale.maybeIncomplete" +msgstr "* Позначені локалізації можуть бути неповними." + +msgid "admin.languages.confirmUninstall" +msgstr "" +"Ви впевнені, що хочете видалити встановлення цієї локалізації? Це може " +"вплинути на всі е-видавництва на сервері, які наразі використовують цю " +"локалізацію." + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" +"Виберіть будь-які додаткові локалізації для встановлення підтримки в цій " +"системі. Локалізації повинні бути проінстальовані до того, як ними почнуть " +"користуватися розміщені на сервері е-видавництва. Дивіться документацію OMP " +"щодо інформації стосовно додавання підтримки нових мов." + +msgid "admin.languages.confirmDisable" +msgstr "" +"Ви впевнені, що хочете вимкнути цю локалізацію? Це може вплинути на всі е-" +"видавництва, які наразі використовують цю локалізацію." + +msgid "admin.systemVersion" +msgstr "Версія OMP" + +msgid "admin.systemConfiguration" +msgstr "Конфігурація OMP" + +msgid "admin.presses.pressSettings" +msgstr "Налаштування е-видавництва" + +msgid "admin.presses.noneCreated" +msgstr "Не створено жодного е-видавництва." + +msgid "admin.contexts.create" +msgstr "Створити е-видавництво" + +msgid "admin.contexts.form.titleRequired" +msgstr "Необхідно ввести назву." + +msgid "admin.contexts.form.pathRequired" +msgstr "Необхідно вказати шлях." + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" +"Шлях може складатися тільки букви, цифри і символи \"_\", \"-\". Шлях має " +"починатися та завершуватися буквою чи цифрою." + +msgid "admin.contexts.form.pathExists" +msgstr "Указаний Вами шлях уже використовується іншим е-видавництвом." + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" +"Головною локалізацією має бути одна з локалізацій, що підтримуються " +"е-видавництвом." + +msgid "admin.contexts.form.create.success" +msgstr "{$name} успішно створено." + +msgid "admin.contexts.form.edit.success" +msgstr "{$name} успішно відредаговано." + +msgid "admin.contexts.contextDescription" +msgstr "Опис е-видавництва" + +msgid "admin.presses.addPress" +msgstr "Додати е-видавництво" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" +"

            ПРИМІТКА!\n" +"

            Система не може перезаписати файл налаштувань. Для застосування ваших " +"змін у налаштуваннях вам необхідно відкрити config.inc.php в " +"текстовому редакторі і замінити його вміст текстом, наведеним нижче.

            " + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" +"Виберіть е-видавництва на сервері, яким слід дозволити масове розсилання " +"електронної пошти. Коли цю функцію включено, менеджер е-видавництва зможе " +"відправляти електронні листи всім користувачам, зареєстрованим в е-" +"видавництві.

            Використання цієї функції для розсилання небажаної пошти " +"в деяких країнах може підпадати під порушення законів про боротьбу зі " +"спамом, і листи Вашого сервера можуть бути заблоковані як спам. Перед " +"включенням цієї функції проконсультуйтесь із редакторами е-видавництв, аби " +"впевнитися, що вона використовується належним чином.

            Інші обмеження " +"цієї функції можуть бути включені для кожного е-видавництва за допомогою " +"майстра налаштувань у списку \"Е-" +"видавництва на сайті\"." + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" +"Менеджер е-видавництва не зможе робити масове розсилання електронною поштою " +"ніякій із ролей, вибраних нижче. Використовуйте це налаштування, щоб " +"обмежити зловживання функцією повідомлення електронною поштою. Наприклад, " +"може бути безпечніше відключити масове розсилання листів читачам, авторам " +"або іншим великим групам користувачів, які не давали згоди на отримання " +"таких листів.

            Функція масового розсилання листів може бути повністю " +"відключена для цього е-видавництва в розділі " +"\"Адміністратор\" > \"Налаштування вебсайту\"." + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" +"Для цього е-видавництва функцію масового розсилання електронної пошти " +"відключено. Включіть цю можливість у розділі " +"\"Адміністратор\" > \"Налаштування вебсайту\"." + +msgid "admin.siteManagement.description" +msgstr "" +"Додати, редагувати або видалити е-видавництва із цього вебсайту й керувати " +"налаштуваннями всього сайту." + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "ID глави не є цілим числом" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "ID серії не є цілим числом" + +msgid "admin.settings.statistics.geo.description" +msgstr "" +"Виберіть тип географічної статистики використання, яку можна збирати е-" +"видавництвами на цьому вебсайті. Більш детальна географічна статистика може " +"значно збільшити розмір вашої бази даних і, у деяких рідкісних випадках, " +"може підірвати анонімність ваших відвідувачів. Кожне е-видавництво може " +"налаштувати цей параметр по-різному, але е-видавництво ніколи не може " +"збирати докладніші записи, ніж ті, що налаштовані тут. Наприклад, якщо " +"вебсайт підтримує лише країну й регіон, е-видавництво може вибрати країну й " +"регіон або лише країну. Е-видавництво не зможе відстежити країну, регіон і " +"місто." + +msgid "admin.settings.statistics.institutions.description" +msgstr "" +"Увімкніть інституційну статистику, якщо ви хочете, щоб е-видавництво на " +"цьому вебсайті могло збирати статистику використання за установою. Щоб " +"скористатися цією функцією, е-видавництвам потрібно буде додати установу та " +"діапазони її IP-адрес. Увімкнення інституційної статистики може значно " +"збільшити розмір бази даних." + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" +"Чи робити кінцеві точки API SUSHI загальнодоступними для всіх е-видавництв " +"на цьому вебсайті. Якщо ви ввімкнете загальнодоступний API, кожне натискання " +"може замінити це налаштування, щоб статистику зробити конфіденційною. Однак, " +"якщо ви вимкнете загальнодоступний API, е-видавництва не зможуть зробити " +"свій API загальнодоступним." + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "Використовувати вебсайт як платформу для всіх е-видавництв." diff --git a/locale/uk/api.po b/locale/uk/api.po new file mode 100644 index 00000000000..952205cb8cc --- /dev/null +++ b/locale/uk/api.po @@ -0,0 +1,44 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-18 09:48+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" +"Вам необхідно ввести одне або декілька ID подань для додавання в каталог." + +msgid "api.submissions.400.submissionsNotFound" +msgstr "Одне або більше подань, які Ви вказали, не вдалося знайти." + +msgid "api.submissions.400.wrongContext" +msgstr "Подання, яке Ви запросили, у цьому е-видавництві нема." + +msgid "api.emails.403.disabled" +msgstr "" +"Фунцію сповіщення електронною поштою для цього е-видавництва не включено." + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" +"У Вас недостатньо прав для переносу цього шаблону електронного листа в інше " +"е-видавництво." + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "Публікація, яку Ви шукаєте, не є частиною цього е-видавництва." + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "Публікація, яку Ви шукаєте, не є частиною цього подання." + +msgid "api.submissions.403.cantChangeContext" +msgstr "Ви не можете змінити е-видавництво для подання." + +msgid "api.submission.400.inactiveSection" +msgstr "Цей розділ більше не приймає подання." diff --git a/locale/uk/author.po b/locale/uk/author.po new file mode 100644 index 00000000000..717c46f1844 --- /dev/null +++ b/locale/uk/author.po @@ -0,0 +1,20 @@ +# Petro Bilous , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-23 00:29+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk_UA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "author.submit.notAccepting" +msgstr "На цей момент е-видавництво не приймає подань." + +msgid "author.submit" +msgstr "Нове подання" diff --git a/locale/uk/default.po b/locale/uk/default.po new file mode 100644 index 00000000000..9ba1036be0a --- /dev/null +++ b/locale/uk/default.po @@ -0,0 +1,220 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-02 22:44+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "default.genres.appendix" +msgstr "Додаток" + +msgid "default.genres.bibliography" +msgstr "Бібліографія" + +msgid "default.genres.manuscript" +msgstr "Рукопис книги" + +msgid "default.genres.chapter" +msgstr "Рукопис глави" + +msgid "default.genres.glossary" +msgstr "Глосарій" + +msgid "default.genres.index" +msgstr "Індекс" + +msgid "default.genres.preface" +msgstr "Передмова" + +msgid "default.genres.prospectus" +msgstr "Проспект" + +msgid "default.genres.table" +msgstr "Таблиця" + +msgid "default.genres.figure" +msgstr "Рисунок" + +msgid "default.genres.photo" +msgstr "Фото" + +msgid "default.genres.illustration" +msgstr "Ілюстрація" + +msgid "default.genres.other" +msgstr "Інше" + +msgid "default.groups.name.manager" +msgstr "Менеджер е-видавництва" + +msgid "default.groups.plural.manager" +msgstr "Менеджери е-видавництва" + +msgid "default.groups.abbrev.manager" +msgstr "МВ" + +msgid "default.groups.name.editor" +msgstr "Редактор видавництва" + +msgid "default.groups.plural.editor" +msgstr "Редактори е-видавництва" + +msgid "default.groups.abbrev.editor" +msgstr "РВ" + +msgid "default.groups.name.sectionEditor" +msgstr "Редактор серії" + +msgid "default.groups.plural.sectionEditor" +msgstr "Редактори серії" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "РС" + +msgid "default.groups.name.subscriptionManager" +msgstr "Менеджер подання" + +msgid "default.groups.plural.subscriptionManager" +msgstr "Менеджери подання" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "МП" + +msgid "default.groups.name.chapterAuthor" +msgstr "Автор глави" + +msgid "default.groups.plural.chapterAuthor" +msgstr "Автори глави" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "АГ" + +msgid "default.groups.name.volumeEditor" +msgstr "Редактор тому" + +msgid "default.groups.plural.volumeEditor" +msgstr "Редактори тому" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "РТ" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" +"

            Автори запрошуються зробити подання до цього е-видавництва. Ті матеріали, " +"які вважаються відповідними, буде надіслано на рецензування, перш ніж " +"визначити, будуть вони прийняті чи відхилені.

            Перед тим, як зробити " +"подання, автори відповідають за отримання дозволу на публікацію будь-якого " +"матеріалу, включеного до подання, як-от фотографії, документи та набори " +"даних. Усі автори, зазначені в поданні, повинні дати згоду на ідентифікацію " +"як автора. За необхідності дослідження має бути схвалене відповідним " +"комітетом з етики відповідно до юридичних вимог країни дослідження.

            Редактор може відхилити подання, якщо воно не відповідає мінімальним " +"стандартам якості. Перш ніж подаватися, будь ласка, переконайтеся, що обсяг " +"і схема книги правильно структуровані та сформульовані. Заголовок має бути " +"лаконічним, а анотація має бути самостійною. Це збільшить імовірність того, " +"що рецензенти погодяться рецензувати книгу. Якщо ви переконаєтеся, що ваше " +"подання відповідає цьому стандарту, дотримуйтеся контрольного списку нижче, " +"щоб підготувати своє зробити подання.

            " + +msgid "default.contextSettings.checklist" +msgstr "" +"

            Усі подання мають відповідати наведеним нижче вимогам.

            • Це " +"подання відповідає вимогам, викладеним у Настановах для авторів.
            • Це " +"подання не було опубліковано раніше, і воно не передано для розгляду в " +"іншому видавництві.
            • Усі посилання були перевірені на точність і " +"повноту.
            • Усі таблиці та малюнки було пронумеровано та позначено.
            • Було отримано дозвіл на публікацію всіх фотографій, наборів даних та " +"інших матеріалів, наданих разом із цим поданням.
            " + +msgid "default.contextSettings.privacyStatement" +msgstr "" +"

            Імена й електронні адреси, указані користувачами на вебсайті цього е-" +"видавництва, будуть використані виключно для заявлених цілей цього е-" +"видавництва; вони не будуть поширюватися та передаватися стороннім особам." + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" +"Це е-видавництво підтримує політику миттєвого відкритого доступу до " +"опублікованого контенту, слідуючи принципам вільного поширення наукової " +"інформації та глобального обміну знаннями задля загального суспільного " +"прогресу." + +msgid "default.contextSettings.forReaders" +msgstr "" +"Ми закликаємо читачів підписатися на службу повідомлень цього е-видавництва. " +"Для реєстрації використайте покликання Зареєструватися у верхньому меню головної сторінки е-" +"видавництва. У результаті цієї реєстрації читач отримуватиме електронною " +"поштою сторінки змісту нових монографій е-видавництва. Також це дає змогу " +"редакції е-видавництва претендувати на певний рівень підтримки або читацької " +"аудиторії. Перегляньте Заяву про конфіденційність, яка запевняє " +"читачів, що їхні ім'я та адреса електронної пошти не будуть " +"використовуватися для інших цілей." + +msgid "default.contextSettings.forAuthors" +msgstr "" +"Бажаєте опублікувати свою роботу в цьому е-видавництві? Рекомендуємо " +"ознайомитися з редакційною політикою на сторінці Про е-видавництво й переглянути Настанови " +"для авторів. Для того, щоб мати можливість подавати рукописи до е-" +"видавництва, автори повинні зареєструватися в е-видавництві. Якщо Ви вже зареєстровані, " +"просто увійдіть і почніть 5-кроковий " +"процес подання рукопису на розгляд." + +msgid "default.contextSettings.forLibrarians" +msgstr "" +"Ми пропонуємо науковим бібліотекам включити це е-видавництво до списків " +"своїх електронних колекцій. Додатково в цій видавничій системі передбачено " +"засоби інтеграції з бібліотечним програмним забезпеченням, що дозволяє " +"бібліотекам забезпечувати архівне збереження електронного контенту " +"видавництв та/або безпосередньо брати участь у видавничому процесі (більш " +"детально про ці можливості див. на сайті Open Monograph Press)." + +msgid "default.groups.name.externalReviewer" +msgstr "Зовнішній рецензент" + +msgid "default.groups.plural.externalReviewer" +msgstr "Зовнішні рецензенти" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "ЗР" + +#~ msgid "default.contextSettings.checklist.submissionAppearance" +#~ msgstr "" +#~ "Текст набраний 12-м розміром кеглю з одинарним міжрядковим інтервалом; " +#~ "авторські акценти виділені курсивом, а не підкресленням (всюди, крім " +#~ "адрес URL); всі ілюстрації, графіки та таблиці розміщені безпосередньо у " +#~ "тексті, там, де вони повинні бути за змістом (а не у кінці документу)." + +#~ msgid "default.contextSettings.checklist.addressesLinked" +#~ msgstr "Де це можливо, посилання супроводжуються URL-адресами." + +#~ msgid "default.contextSettings.checklist.fileFormat" +#~ msgstr "" +#~ "Файл подання є документом у форматі Microsoft Word, RTF або OpenDocument." + +#~ msgid "default.contextSettings.checklist.notPreviouslyPublished" +#~ msgstr "" +#~ "Це подання раніше не було опубліковане і не надсилалося на розгляд до " +#~ "інших е-видавництв (або вкажіть пояснення у коментарях для редактора)." + +#~ msgid "default.contextSettings.checklist.bibliographicRequirements" +#~ msgstr "" +#~ "Текст відповідає стилістичним і бібліографічним вимогам, описаним у Настановах для авторів, що містяться на сторінці " +#~ "\"Про е-видавництво\"." diff --git a/locale/uk/editor.po b/locale/uk/editor.po new file mode 100644 index 00000000000..c1de0bbf8c4 --- /dev/null +++ b/locale/uk/editor.po @@ -0,0 +1,212 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-01 06:49+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "editor.submissionArchive" +msgstr "Архів подань" + +msgid "editor.monograph.cancelReview" +msgstr "Скасувати запит" + +msgid "editor.monograph.clearReview" +msgstr "Очистити рецензента" + +msgid "editor.monograph.enterRecommendation" +msgstr "Ввести рекомендацію" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "Ввести рекомендацію рецензента" + +msgid "editor.monograph.recommendation" +msgstr "Рекомендація" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" +"Оберіть рецензента зі списку й натисніть на кнопку \"Обрати рецензента\", " +"щоб продовжити." + +msgid "editor.monograph.replaceReviewer" +msgstr "Замінити рецензента" + +msgid "editor.monograph.editorToEnter" +msgstr "Редактор, який має дати рекомендації / коментарі для рецензента" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "Вивантажити рецензію" + +msgid "editor.monograph.peerReviewOptions" +msgstr "Параметри експертного оцінювання" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "Файли коректури" + +msgid "editor.monograph.internalReview" +msgstr "Розпочати процес внутрішнього рецензування" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" +"Оберіть файли зі списку, щоб надіслати на етап внутрішнього рецензування." + +msgid "editor.monograph.externalReview" +msgstr "Розпочати зовнішнє рецензування" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "Оберіть фінальні версії чорнеток" + +msgid "editor.monograph.final.currentFiles" +msgstr "Поточні фінальні версії чорнеток" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "Поточні файли" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "Повідомлення для користувача" + +msgid "editor.monograph.legend.submissionActions" +msgstr "Дії з поданням" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "Загальні дії та опції подання матеріалу." + +msgid "editor.monograph.legend.sectionActions" +msgstr "Дії з розділами" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" +"Параметри, специфічні для даного розділу, наприклад, вивантаження файлів або " +"додавання користувачів." + +msgid "editor.monograph.legend.itemActions" +msgstr "Дії з елементами" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "Дії та параметри, що стосуються окремого файлу." + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" +"Переглянути і керувати поданням в каталозі, включно з метаданими і видами " +"видання" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" +"Переглянути та керувати метаданими, нотатками, сповіщеннями та історією " +"подання" + +msgid "editor.monograph.legend.participants" +msgstr "" +"Переглянути та керувати учасниками цього подання: авторами, редакторами, " +"дизайнерами тощо" + +msgid "editor.monograph.legend.add" +msgstr "Вивантажити файл до розділу" + +msgid "editor.monograph.legend.add_user" +msgstr "Додати користувача до розділу" + +msgid "editor.monograph.legend.settings" +msgstr "" +"Перегляд і доступ до параметрів елемента, таким як інформація та параметри " +"видалення" + +msgid "editor.monograph.legend.more_info" +msgstr "Більше інформації: нотатки, налаштування та історія файлу" + +msgid "editor.monograph.legend.notes_none" +msgstr "" +"Інформація про файл: примітки, параметри повідомлень та історія (Примітки " +"еще не додано)" + +msgid "editor.monograph.legend.notes" +msgstr "" +"Інформація про файл: примітки, параметри повідомлень та історія (Примітки " +"вже додано)" + +msgid "editor.monograph.legend.notes_new" +msgstr "" +"Інформація про файл: примітки, параметри повідомлень та історія (Після " +"останнього відвідування додано нові примітки)" + +msgid "editor.monograph.legend.edit" +msgstr "Редагувати елемент" + +msgid "editor.monograph.legend.delete" +msgstr "Видалити елемент" + +msgid "editor.monograph.legend.in_progress" +msgstr "Дія в процесі виконання або ще не виконана" + +msgid "editor.monograph.legend.complete" +msgstr "Дію виконано" + +msgid "editor.monograph.legend.uploaded" +msgstr "Файл вивантажено роллю в заголовку стовбця сітки" + +msgid "editor.submission.introduction" +msgstr "" +"У розділі \"Подання\" редактор після перегляду представлених файлів вибирає " +"відповідну дію (яка включає в себе повідомлення автора): \"Направити на " +"внутрішнє рецензування\" (тягне за собою вибір файлів для внутрішнього " +"рецензування), \"Направити на зовнішнє рецензування\" (тягне за собою вибір " +"файлів для зовнішнього рецензування), \"Прийняти подання\" (тягне за собою " +"вибір файлів для етапу редагування) або \"Відхилити подання\" (відправка в " +"архів)." + +msgid "editor.monograph.editorial.fairCopy" +msgstr "Чистовик" + +msgid "editor.monograph.proofs" +msgstr "Пруфи" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "Затвердження та опублікування" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" +"Різні формати публікацій, такі як із твердою обкладинкою, м'якою і цифровий, " +"можуть бути вивантажені в розділі \"Формати публікацій\" нижче. Ви можете " +"використати наведену нижче сітку форматів публікацій як контрольний список " +"того, що ще потрібно зробити для опублікування формату видання." + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" +"Додайте формати публікацій (наприклад, цифровий, у м'якій обкладинці), для " +"яких верстальник готує пруфи сторінок для коректури. Пруфи мають " +"бути перевірені на затвердження, а запис для формату в Каталог має " +"бути перевірена на опублікування в каталозі книги перед тим, як формат можна " +"буде зробити Доступним (тобто опублікованим)." + +msgid "editor.monograph.approvedProofs.edit" +msgstr "Установити умови для завантажування" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "Установити умови" + +msgid "editor.monograph.proof.addNote" +msgstr "Додати відповідь" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" +"Будь-які файли, які вже були вивантажені на будь-якому етапі подавання " +"матеріалу, можуть бути додані у список \"Файли пруфів\", для цього потрібно " +"поставити галочку \"Включити\" нижче і клікнути \"Пошук\": усі доступні " +"файли будуть показані у списку й можуть бути вибрані для включення." + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" +"Публічний ідентифікатор \"{$publicIdentifier}\" уже існує для іншого об'єкта " +"цього ж типу. Будь ласка, вибирайте унікальні ідентифікатори для об'єктів " +"одного типу у Вашому е-видавництві." + +msgid "editor.submissions.assignedTo" +msgstr "Призначено редактору" diff --git a/locale/uk/emails.po b/locale/uk/emails.po new file mode 100644 index 00000000000..a9130f938b0 --- /dev/null +++ b/locale/uk/emails.po @@ -0,0 +1,566 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-02 22:44+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "Підтвердження скидання пароля" + +msgid "emails.passwordResetConfirm.body" +msgstr "" +"Ми отримали запит на скидання Вашого паролю для вебсайту {$siteTitle}.
            " +"\n" +"
            \n" +"Якщо Ви не робили цього запиту, будь ласка, проігноруйте цей лист, і Ваш " +"пароль не буде змінений. Якщо Ви бажаєте скинути свій пароль, клікніть на " +"посиланні нижче.
            \n" +"
            \n" +"Скинути мій пароль: {$passwordResetUrl}
            \n" +"
            \n" +"{$siteContactName}" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "Реєстрація е-видавництва" + +msgid "emails.userRegister.body" +msgstr "" +"Вітаємо, {$recipientName}!
            \n" +"
            \n" +"Дякуємо Вам за реєстрацію користувачем \"{$contextName}\". У цьому листі ми " +"вказали Ваші ім'я користувача й пароль, які будуть необхідні для роботи з " +"цим е-видавництвом через вебсайт. У будь-який момент Ви можете попросити, " +"щоб ваш обліковий запис видалили. Для цього Вам достатньо зв'язатися зі " +"мною.
            \n" +"
            \n" +"Ім'я користувача: {$recipientUsername}
            \n" +"Пароль: {$password}
            \n" +"
            \n" +"Дякуємо,
            \n" +"{$signature}" + +msgid "emails.userValidateContext.subject" +msgstr "Підтвердіть свій обліковий запис" + +msgid "emails.userValidateContext.body" +msgstr "" +"{$recipientName}
            \n" +"
            \n" +"Щойно Ви створили обліковий запис для \"{$contextName}\", але перед початком " +"його використання потрібно підтвердити Ваш обліковий запис через email. Аби " +"зробити це, просто перейдіть за покликанням нижче:
            \n" +"
            \n" +"{$activateUrl}
            \n" +"
            \n" +"Дякую,
            \n" +"{$contextSignature}" + +msgid "emails.userValidateSite.subject" +msgstr "Підтвердіть Ваш обліковий запис" + +msgid "emails.userValidateSite.body" +msgstr "" +"{$recipientName}
            \n" +"
            \n" +"Щойно Ви створили обліковий запис для {$siteTitle}, але перед початком його " +"використання потрібно підтвердити Ваш обліковий запис через email. Аби " +"зробити це, просто перейдіть за покликанням нижче:
            \n" +"
            \n" +"{$activateUrl}
            \n" +"
            \n" +"Дякую,
            \n" +"{$siteSignature}" + +msgid "emails.reviewerRegister.subject" +msgstr "Реєстрація як рецензента в \"{$contextName}\"" + +msgid "emails.reviewerRegister.body" +msgstr "" +"З огляду на Ваш досвід ми взяли на себе сміливість внести Ваше ім'я до бази " +"даних рецензентів \"{$contextName}\". Це не передбачає жодних зобов'язань із " +"Вашого боку, а лише дозволяє нам розглядати Вас як можливого рецензента " +"рукописів. Під час запрошень на проведення рецензування Ви матимете " +"можливість бачити назву й анотацію рукопису, про який йтиметься, і, " +"розглянувши цю інформацію, Ви завжди зможете прийняти або відхилити " +"запрошення. Крім того, у будь-який час Ви можете вимагати видалення свого " +"імені з цього списку рецензентів.
            \n" +"
            \n" +"Ми надаємо Вам ім'я користувача й пароль, які будуть необхідні Вам упродовж " +"усієї подальшої роботи з е-видавництвом через його вебсайт. Серед іншого Ви " +"можете оновити свій профіль і вказати власні наукові інтереси.
            \n" +"
            \n" +"Ім'я користувача: {$recipientUsername}
            \n" +"Пароль: {$password}
            \n" +"
            \n" +"Дякуємо,
            \n" +"{$signature}" + +msgid "emails.editorAssign.subject" +msgstr "Вас призначили редактором подання до \"{$contextName}\"" + +msgid "emails.editorAssign.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Це подання було призначено Вам для " +"контролю за проходженням по стадіях редакційного процесу.

            \"{$submissionTitle}\"
            {$authors}

            Анотація

            {$submissionAbstract}

            Якщо Ви " +"вважаєте, що подання стосується \"{$contextName}\", передайте подання на " +"етап рецензування, вибравши \"Надіслати на внутрішнє рецензування\", а потім " +"призначте рецензентів, натиснувши \"Додати рецензента\".

            Якщо подання " +"не підходить для цього е-видавництва, будь ласка, відхиліть подання.

            Заздалегідь дякую.

            З повагою,

            {$contextSignature}" + +msgid "emails.reviewRequest.subject" +msgstr "Запит на рецензування рукопису" + +msgid "emails.reviewRequest.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Я вірю, що Ви станете чудовим " +"рецензентом для подання до \"{$contextName}\". Нижче наведено назву та " +"анотацію подання, і я сподіваюся, що Ви зважитеся взятися за це важливе для " +"нас завдання.

            Якщо Ви можете прорецензувати це подання, Ваш розгляд " +"потрібно здійснити до {$reviewDueDate}. Ви можете переглянути подання, " +"вивантажити файли рецензії та надіслати рецензію, увійшовши в е-видавництво " +"та виконавши кроки за покликанням нижче.

            \"{$submissionTitle}\"" +"

            Анотація

            {$submissionAbstract}

            Будь ласка, прийміть або відхиліть рецензування до " +"{$responseDueDate}.

            Ви можете зв’язатися зі мною з будь-якими " +"запитаннями щодо подання чи процесу рецензування.

            Дякуємо, що " +"розглянули цей запит. Дуже цінуємо Вашу допомогу.

            З " +"повагою,

            {$signature}" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "Запит на оцінювання переглянутого подання" + +msgid "emails.reviewRequestSubsequent.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Дякуємо за Ваше оцінювання \"{$submissionTitle}\". Автори врахували " +"відгуки рецензентів і подали переглянуту версію свого твору. Я пишу, щоб " +"запитати, чи провели б Ви другий раунд експертної перевірки цього подання.

            Якщо Ви можете переглянути це подання, його рецензування потрібно " +"здійснити до {$reviewDueDate}. Ви можете виконати кроки рецензування, щоб переглянути подання, завантажити файли " +"рецензії та надіслати свої коментарі до рецензії.

            \"{$submissionTitle}\"" +"

            Анотація

            {$submissionAbstract}

            Будь ласка, прийміть або " +"відхиліть рецензування до {$responseDueDate}.

            Також, будь ласка, не " +"соромтеся звертатися до мене з будь-якими запитаннями щодо подання чи " +"процесу рецензування.

            Дякуємо, що розглянули цей запит. Дуже цінуємо " +"Вашу допомогу.

            З повагою,

            {$signature}" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "Запит на рецензування рукопису" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" +"Шановний(-а) {$recipientName}!
            \n" +"Я вірю, що Ви могли б стати прекрасним рецензентом для рукопису \"" +"{$submissionTitle}\", надісланого до \"{$contextName}\". Будь ласка, до " +"{$responseDueDate} зайдіть на сайт е-видавництва, щоб повідомити, чи " +"візьметеся Ви за рецензування. Цей лист створено автоматично.\n" +"
            \n" +"{$messageToReviewer}
            \n" +"
            \n" +"Будь ласка, зайдіть на вебсайт е-видавництва, щоб повідомити, чи візьметеся " +"Ви за рецензування, а також для того, щоб отримати доступ до подання, " +"записати Вашу рецензію та рекомендацію.
            \n" +"
            \n" +"Ми хотіли б мати готову рецензію до {$reviewDueDate}.
            \n" +"
            \n" +"URL-адреса подання: {$reviewAssignmentUrl}
            \n" +"
            \n" +"Ім'я користувача: {$recipientUsername}
            \n" +"
            \n" +"Дякуємо, що розглянули цей запит.
            \n" +"
            \n" +"
            \n" +"Щиро Ваш(а),
            \n" +"{$contextSignature}
            \n" + +msgid "emails.reviewCancel.subject" +msgstr "Запит на рецензування скасовано" + +msgid "emails.reviewCancel.body" +msgstr "" +"Вітаємо, {$recipientName}!
            \n" +"
            \n" +"На цьому етапі ми вирішили відкликати наш запит на рецензування Вами " +"рукопису \"{$submissionTitle}\" для \"{$contextName}\". Ми приносимо свої " +"вибачення за спричинені Вам незручності і сподіваємося, що в майбутньому ми " +"зможемо до Вас звернутися за допомогою щодо рецензування матеріалів.
            \n" +"
            \n" +"Якщо у Вас є запитання, будь ласка, зв'яжіться зі мною." + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "Запит на відновлення рецензування" + +msgid "emails.reviewReinstate.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Нещодавно ми скасували наш запит " +"щодо рецензування подання \"{$submissionTitle}\" для \"{$contextName}\". Ми " +"скасували це рішення та сподіваємося, що Ви все ще можете здійснити " +"рецензування.

            Якщо Ви можете допомогти з перевіркою цього подання, Ви " +"можете увійти в е-видавництво, щоб " +"переглянути подання, вивантажити файли рецензії та надіслати запит на " +"рецензію.

            Якщо у Вас виникли запитання, зв’яжіться зі мною.

            З " +"повагою,

            {$signature}" + +msgid "emails.reviewDecline.subject" +msgstr "Не маю змоги рецензувати" + +msgid "emails.reviewDecline.body" +msgstr "" +"Шановний(-і) редакторе(и)!
            \n" +"
            \n" +"Боюся, що в наразі я не можу дати рецензію на подання \"{$submissionTitle}\" " +"для \"{$contextName}\". Дякую Вам, що звернулися до мене, іншого разу також " +"не вагайтеся це зробити.
            \n" +"
            \n" +"{$senderName}" + +msgid "emails.reviewRemind.subject" +msgstr "Нагадування про потребу завершити рецензування" + +msgid "emails.reviewRemind.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Просто нагадуємо про наше прохання " +"до Вас прорецензувати подання \"{$submissionTitle}\" для \"{$contextName}\". " +"Ми очікували, що це рецензування буде завершено до {$reviewDueDate}, і ми " +"будемо раді отримати його, щойно Ви зможете його підготувати.

            Ви " +"можете увійти в е-видавництво й " +"виконати кроки рецензування, щоб переглянути подання, вивантажити файли " +"рецензії та надіслати свої коментарі до рецензії.

            Якщо Вам потрібно " +"подовжити кінцевий термін, зв’яжіться зі мною. Я з нетерпінням чекаю на Вашу " +"думку.

            Заздалегідь дякую та з повагою,

            {$signature}" + +msgid "emails.reviewRemindAuto.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Цей електронний лист є автоматичним " +"нагадуванням від \"{$contextName}\" щодо нашого запиту про рецензування " +"подання \"{$submissionTitle}\".

            Ми очікували, що це рецензування буде " +"завершено до {$reviewDueDate}, і ми будемо раді отримати його, щойно Ви " +"зможете його підготувати.

            Будь ласка, увійдіть в е-видавництво й виконайте кроки рецензування, щоб " +"переглянути подання, вивантажити файли рецензії та надіслати свої коментарі " +"до рецензії.

            Якщо Вам потрібно подовжити кінцевий термін, зв’яжіться " +"зі мною. Я з нетерпінням чекаю на Вашу думку.

            Заздалегідь дякую та з " +"повагою,

            {$contextSignature}" + +msgid "emails.editorDecisionAccept.subject" +msgstr "Ваше подання було прийнято в \"{$contextName}\"" + +msgid "emails.editorDecisionAccept.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Раді повідомити, що ми вирішили " +"прийняти Ваше подання без подальшого перегляду. Після ретельного " +"рецензування ми знайшли Ваше подання \"{$submissionTitle}\" таким, що " +"задовольняє або перевершує наші очікування. Ми раді опублікувати Ваш твір у " +"\"{$contextName}\" і дякуємо Вам за вибір нашого е-видавництва як місця для " +"Вашого твору.

            Ваше подання незабаром буде опубліковано на вебсайті е-" +"видавництва для \"{$contextName}\", і Ви зможете включити його до свого " +"списку публікацій. Ми визнаємо важкість роботи, яка проводиться щодо кожного " +"успішного подання, і ми хочемо привітати Вас із досягненням цього етапу.

            Тепер для підготовки подання до публікації його буде надіслано на " +"редагування та форматування.

            Незабаром Ви отримаєте додаткові " +"інструкції.

            Якщо у Вас виникли запитання, будь ласка, зв'яжіться зі " +"мною з Вашої панелі подання.

            Щирі вітання,

            {$signature}" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "Ваше подання відправлено на внутрішнє рецензування" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Раді повідомити Вам, що редактор " +"розглянув Ваше подання \"{$submissionTitle}\" і вирішив відправити його на " +"внутрішнє рецензування. Ви дізнаєтеся від нас відгуки рецензентів та " +"інформацію про наступні кроки.

            Зверніть увагу, що надсилання подання " +"на внутрішнє рецензування не гарантує, що воно буде опубліковане. Ми " +"розглянемо рекомендації рецензентів, перш ніж прийняти подання до " +"опублікування. Вас можуть попросити внести зміни та відповісти на зауваження " +"рецензентів перед ухваленням остаточного рішення.

            Якщо у вас виникли " +"запитання, будь ласка, зв'яжіться з нами з Вашої панелі " +"подання.

            {$signature}

            " + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "Ваше подання було направлено на літературне редагування" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" +"

            Шановний(-а) {$recipientName},

            \n" +"

            Раді повідомити, що ми вирішили прийняти Ваше подання без рецензування. " +"Ми знайшли Ваше подання \"{$submissionTitle}\" таким, що відповідає нашим " +"очікуванням, і ми не вимагаємо, щоб робота такого типу проходила експертну " +"оцінку. Ми раді опублікувати Ваш твір у \"{$contextName}\" і дякуємо Вам за " +"вибір нашого е-видавництва як місця для Вашого твору.

            \n" +"

            Ваше подання незабаром буде опубліковано на вебсайті е-видавництва для \"" +"{$contextName}\", і Ви зможете включити його до свого списку публікацій. Ми " +"визнаємо важкість роботи, яка проводиться щодо кожного успішного подання, і " +"хочемо привітати Вас із Вашими зусиллями.

            \n" +"

            Тепер для підготовки подання до опублікування його буде надіслано на " +"редагування та форматування.

            \n" +"

            Незабаром Ви отримаєте додаткові інструкції.

            \n" +"

            Якщо у Вас виникли за питання, будь ласка, зв'яжіться з нами з Вашої панелі подання.

            \n" +"

            Щирі вітання,

            \n" +"

            {$signature}

            \n" + +msgid "emails.layoutRequest.subject" +msgstr "Подання {$submissionId} готове до виробництва у {$contextAcronym}" + +msgid "emails.layoutRequest.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Нове подання готове для верстання " +"макета:

            {$submissionId} \"" +"{$submissionTitle}\"
            \"{$contextName}\"

            1. Клікніть URL-" +"адресу подання вище.
            2. Завантажте файли, готові до виробництва, і " +"використовуйте їх для створення гранок відповідно до стандартів " +"е-видавництва.
            3. Вивантажте гранки до розділу \"Формати публікації\" " +"подання.
            4. Використовуйте розділ \"Обговорення виробництва\", щоб " +"повідомити редактора, що гранки готові.

            Якщо Ви не можете зараз " +"виконати цю роботу або маєте будь-які запитання, зв’яжіться зі мною. Дякуємо " +"за Ваш внесок у це е-видавництво.

            З повагою,

            {$signature}" + +msgid "emails.layoutComplete.subject" +msgstr "Гранки готові" + +msgid "emails.layoutComplete.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Для цього подання вже підготовлено " +"гранки, і вони готові до остаточного розгляду.

            \"{$submissionTitle}\"
            \"{$contextName}\"

            Якщо у Вас виникли запитання, будь ласка, зв'яжіться зі мною.

            З " +"повагою,

            {$senderName}

            " + +msgid "emails.indexRequest.subject" +msgstr "Запит щодо індексації" + +msgid "emails.indexRequest.body" +msgstr "" +"Шановний(-а) {$recipientName}!
            \n" +"
            \n" +"Подання \"{$submissionTitle}\" у \"{$contextName}\" зараз потребує індексів, " +"створених за допомогою цих кроків.
            \n" +"1. Клікніть на URL-адресу подання нижче.
            \n" +"2. Увійдіть в е-видавництво і скористайтеся файлом пруфів сторінок для " +"створення гранок відповідно до стандартів е-видавництва.
            \n" +"3. Надішліть електронний лист ВИКОНАНО редактору.
            \n" +"
            \n" +"\"{$contextName}\" URL: {$contextUrl}
            \n" +"URL-адреса подання: {$submissionUrl}
            \n" +"Ім'я користувача: {$recipientUsername}
            \n" +"
            \n" +"Якщо Ви не можете взятися за цю роботу в цей час або у Вас є які-небудь " +"запитання, будь ласка, зв'яжіться зі мною. Дякую за Ваш внесок у це е-" +"видавництво.
            \n" +"
            \n" +"{$signature}" + +msgid "emails.indexComplete.subject" +msgstr "Індексні гранки зроблено" + +msgid "emails.indexComplete.body" +msgstr "" +"Шановний(-а) {$recipientName}!
            \n" +"
            \n" +"Для рукопису \"{$submissionTitle}\" для \"{$contextName}\" індекси вже " +"підготовлено, і вони готові до коректури.
            \n" +"
            \n" +"Якщо у Вас виникли запитання, будь ласка, зв'яжіться зі мною.
            \n" +"
            \n" +"{$senderName}" + +msgid "emails.emailLink.subject" +msgstr "Рукопис можливого інтересу" + +msgid "emails.emailLink.body" +msgstr "" +"Можливо, Вам буде цікаво подивитися матеріал \"{$submissionTitle}\" від " +"{$authors}, опублікований у т. {$volume}, № {$number} ({$year}) видання \"" +"{$contextName}\" за адресою: \"{$submissionUrl}\"." + +msgid "emails.emailLink.description" +msgstr "" +"Цей шаблон електронної пошти надає зареєстрованому читачеві змогу надіслати " +"інформацію про монографію комусь, хто може бути зацікавлений. Він доступний " +"за допомогою засобів читання і повинен бути включений менеджером е-" +"видавництва на сторінці адміністрування інструментів для читання." + +msgid "emails.notifySubmission.subject" +msgstr "Повідомлення про подання" + +msgid "emails.notifySubmission.body" +msgstr "" +"Ви маєте повідомлення від {$sender} стосовно \"{$submissionTitle}\" " +"({$monographDetailsUrl}):
            \n" +"
            \n" +"\t\t{$message}
            \n" +"
            \n" +"\t\t" + +msgid "emails.notifySubmission.description" +msgstr "" +"Повідомлення від користувача, надіслане з модуля інформаційного центру " +"подання." + +msgid "emails.notifyFile.subject" +msgstr "Повідомлення про подання файлу" + +msgid "emails.notifyFile.body" +msgstr "" +"Ви маєте повідомлення від {$sender} стосовно файлу \"{$fileName}\" у \"" +"{$submissionTitle}\" ({$monographDetailsUrl}):
            \n" +"
            \n" +"\t\t{$message}
            \n" +"
            \n" +"\t\t" + +msgid "emails.notifyFile.description" +msgstr "" +"Повідомлення від користувача, надіслане з модулю інформаційного центру файлу" + +msgid "emails.statisticsReportNotification.subject" +msgstr "Діяльність редакції за {$month}, {$year}" + +msgid "emails.statisticsReportNotification.body" +msgstr "" +"\n" +"{$recipientName},
            \n" +"
            \n" +"Ваш звіт про справність е-видавництва за {$month}, {$year} зараз доступний. " +"Вашу ключову статистику за цей місяць подано нижче.
            \n" +"
              \n" +"\t
            • Нових подань цього місяця: {$newSubmissions}
            • \n" +"\t
            • Відхилених подань цього місяця: {$declinedSubmissions}
            • \n" +"\t
            • Прийнятих подань цього місяця: {$acceptedSubmissions}
            • \n" +"\t
            • Загальна кількість подань у системі: {$totalSubmissions}
            • \n" +"
            \n" +"Увійдіть до е-видавництва, щоб переглянути більш детальні редакційні тенденції та статистику щодо опублікованих книг. Повна " +"копія редакційних тенденцій цього місяця додається .
            \n" +"
            \n" +"Щиро Ваш(а),
            \n" +"{$contextSignature}" + +msgid "emails.announcement.subject" +msgstr "{$announcementTitle}" + +msgid "emails.announcement.body" +msgstr "" +"{$announcementTitle}
            \n" +"
            \n" +"{$announcementSummary}
            \n" +"
            \n" +"Відвідайте наш вебсайт, щоб прочитати оголошення повністю." + +#~ msgid "emails.userValidate.subject" +#~ msgstr "Підтвердіть Ваш Обліковий Запис" + +#~ msgid "emails.userValidate.description" +#~ msgstr "" +#~ "Цей лист надсилається новому зареєстрованому користувачу для того, щоб " +#~ "привітати його з реєстрацією та надіслати йому його ім'я користувача та " +#~ "пароль." + +#~ msgid "emails.userValidate.body" +#~ msgstr "" +#~ "Вітаємо, {$recipientName}
            \n" +#~ "
            \n" +#~ "Ви створили обліковий запис на сайті {$contextName}, але перш ніж Ви " +#~ "зможете користуватися ним, необхідно підтвердити вказану під час " +#~ "реєстрації email адресу . Щоб зробити це, перейдіть за вказаним нижче " +#~ "посиланням:
            \n" +#~ "
            \n" +#~ "{$activateUrl}
            \n" +#~ "
            \n" +#~ "З Повагою,
            \n" +#~ "{$signature}" + +#~ msgid "emails.reviewRequestAttached.description" +#~ msgstr "" +#~ "Цей лист редактора серії, що відправляється рецензенту, із запитом згоди " +#~ "чи відмови від здійснення рецензування матеріалу. До листа додано сам " +#~ "матеріал для рецензування. Це повідомлення використовується, якщо вибрано " +#~ "процес рецензування через електронну пошту в Управління > Налаштування > " +#~ "Робочий процес > Рецензування. (В іншому випадку дивіться REVIEW_REQUEST.)" + +#~ msgid "emails.reviewRequestAttached.body" +#~ msgstr "" +#~ "Вітаємо, {$recipientName}!
            \n" +#~ "
            \n" +#~ "Вважаємо, Ви могли б бути прекрасним рецензентом для матеріалу "" +#~ "{$submissionTitle}", і просимо Вас взятися вконати це важливе " +#~ "завдання для нас. Настанови з рецензування цього е-видавництва додано " +#~ "нижче, матеріал для рецензування прикріплено до цього листа. Ваша " +#~ "рецензія на матеріал, разом із рекомендацією, мають бути відправлені нам " +#~ "електронною поштою до {$reviewDueDate}.
            \n" +#~ "
            \n" +#~ "Будь ласка, повідомте листом у відповідь до {$responseDueDate}, чи " +#~ "зможете Ви взятися за рецензування.
            \n" +#~ "
            \n" +#~ "Вдячні Вам наперед,
            \n" +#~ "
            \n" +#~ "{$signature}
            \n" +#~ "
            \n" +#~ "
            \n" +#~ "Настанови з рецензування
            \n" +#~ "
            \n" +#~ "{$reviewGuidelines}
            \n" + +msgid "emails.reviewReinstate.subject" +msgstr "Чи Ви все ще можете здійснити рецензування для \"{$contextName}\"?" + +msgid "emails.revisedVersionNotify.subject" +msgstr "Переглянуту версію вивантажено" + +msgid "emails.revisedVersionNotify.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Автор вивантажив оновлення для " +"подання, {$authorsShort} – \"{$submissionTitle}\".

            Як призначеного " +"редактора ми просимо Вас увійти та переглянути " +"оновлені редакції та прийняти рішення про прийняття, відхилення або " +"надсилання подання для подальшого рецензування.


            Це " +"автоматичне повідомлення від \"{$contextName}\"" +"." + +msgid "emails.editorAssignProduction.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Вам призначено наступне подання для " +"організації стадії виробництва.

            \"" +"{$submissionTitle}\"
            {$authors}

            Анотація

            {$submissionAbstract}

            Будь ласка, " +"увійдіть до перегляду подання. Коли готові " +"до виробництва файли стануть доступними, вивантажте їх у розділі " +"Публікація > Формати публікацій.

            Заздалегідь дякую.

            З повагою,

            {$signature}" + +msgid "emails.editorAssignReview.body" +msgstr "" +"

            Шановний(-а) {$recipientName}!

            Вам призначено наступне подання для " +"організації етапу рецензування.

            \"" +"{$submissionTitle}\"
            {$authors}

            Анотація

            {$submissionAbstract}

            Будь ласка, " +"увійдіть до перегляду подання та призначте " +"кваліфікованих рецензентів. Ви можете призначити рецензента, натиснувши " +"\"Додати рецензента\".

            Заздалегідь дякую.

            З " +"повагою,

            {$signature}" diff --git a/locale/uk/locale.po b/locale/uk/locale.po new file mode 100644 index 00000000000..ee4c4f8df39 --- /dev/null +++ b/locale/uk/locale.po @@ -0,0 +1,1681 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-11-20 07:38+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "common.payments" +msgstr "Платежі" + +msgid "monograph.audience" +msgstr "Аудиторія" + +msgid "monograph.audience.success" +msgstr "Детальну інформацію про аудиторію оновлено." + +msgid "monograph.coverImage" +msgstr "Зображення обкладинки" + +msgid "monograph.audience.rangeQualifier" +msgstr "Визначник групової аудиторії" + +msgid "monograph.audience.rangeFrom" +msgstr "Вибір аудиторії (від)" + +msgid "monograph.audience.rangeTo" +msgstr "Вибір аудиторії (до)" + +msgid "monograph.audience.rangeExact" +msgstr "Вибір аудиторії (конкретно)" + +msgid "monograph.languages" +msgstr "Мови (англійська, французька, іспанська)" + +msgid "monograph.publicationFormats" +msgstr "Формати публікацій" + +msgid "monograph.publicationFormat" +msgstr "Формат" + +msgid "monograph.publicationFormatDetails" +msgstr "Детальніше щодо доступних форматів публікацій: {$format}" + +msgid "monograph.miscellaneousDetails" +msgstr "Детальніше про цю монографію" + +msgid "monograph.carousel.publicationFormats" +msgstr "Формати:" + +msgid "monograph.type" +msgstr "Тип подання" + +msgid "submission.pageProofs" +msgstr "Пруфи сторінок" + +msgid "monograph.proofReadingDescription" +msgstr "" +"Верстальник вивантажує сюди підготовлені до публікації файли. Використайте " +"+Призначити, щоб призначити авторів або інших користувачів для " +"корегування пруфів сторінок, із вивантаженням відкоригованих файлів та їх " +"схваленням перед опублікуванням." + +msgid "monograph.task.addNote" +msgstr "Додати до завдання" + +msgid "monograph.accessLogoOpen.altText" +msgstr "Відкритий Доступ" + +msgid "monograph.publicationFormat.imprint" +msgstr "Вихідні дані (ім'я бренду)" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "Кількість сторінок" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "Передні дані (до основного тексту)" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "Задні дані (після основного тексту)" + +msgid "monograph.publicationFormat.productComposition" +msgstr "Структура видання" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "Деталі товару (не обов'язково)" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "Ідентифікація товару" + +msgid "monograph.publicationFormat.price" +msgstr "Ціна" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "Необхідно зазначити ціну." + +msgid "monograph.publicationFormat.priceType" +msgstr "Тип ціни" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "Відсоток знижки, якщо така застосовується" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "Доступність товару" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "Індикатор можливості повернення" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "Цифрова інформація" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "Фізичні розміри" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr " x " + +msgid "monograph.publicationFormat.productFileSize" +msgstr "Розмір файлу в Мб" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "Ввести власне значення розміру файлу?" + +msgid "monograph.publicationFormat.productHeight" +msgstr "Висота" + +msgid "monograph.publicationFormat.productThickness" +msgstr "Товщина" + +msgid "monograph.publicationFormat.productWeight" +msgstr "Вага" + +msgid "monograph.publicationFormat.productWidth" +msgstr "Довжина" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "Країна-виробник" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "Цифровий захист" + +msgid "monograph.publicationFormat.productRegion" +msgstr "Регіон розповсюдження" + +msgid "monograph.publicationFormat.taxRate" +msgstr "Ставка податку" + +msgid "monograph.publicationFormat.taxType" +msgstr "Вид податку" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" +"Включити метадані для цього формату публікації в каталозі для цієї книги." + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "Відсутні магазини й ціни." + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "Відсутній ідентифікаційний код." + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "Відсутні певні поля з метаданими." + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" +"

            Вибраний вами формат публікації більше не існує для цієї монографії.

            " + +msgid "monograph.publicationFormat.openTab" +msgstr "Відкрити вкладку формату публікації." + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "Формат публікації" + +msgid "grid.catalogEntry.nameRequired" +msgstr "Необхідно ввести ім'я." + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "Необхідно ввести коректну ціну." + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "Подробиці формату" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "Фізичний формат" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "Цей формат буде доступний на окремому вебсайті" + +msgid "grid.catalogEntry.remoteURL" +msgstr "URL дистанційно розміщеного контенту" + +msgid "grid.catalogEntry.isbn" +msgstr "ISBN" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "13-значний код ISBN, такий як 978-951-98548-9-2." + +msgid "grid.catalogEntry.isbn10.description" +msgstr "10-значний код ISBN, такий як 951-98548-9-4." + +msgid "grid.catalogEntry.monographRequired" +msgstr "Необхідно ввести ID монографії." + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "Необхідно вибрати формат публікації." + +msgid "grid.catalogEntry.availability" +msgstr "Доступність" + +msgid "grid.catalogEntry.isAvailable" +msgstr "Доступно" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "Не доступно" + +msgid "grid.catalogEntry.proof" +msgstr "Коректура (пруф)" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "Підтвердження формату" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" +"

            Затвердіть метадані для цього формату. Метадані можна перевірити на " +"панелі \"Редагування\" для кожного формату.

            " + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "

            Указує, що метадані для цього формату не було затверждено.

            " + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "Доступність формату" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" +"

            Зробіть цей форматдоступним для читачів. Можливість завантаження " +"файлів і інші види доставки з'являться на сторінці книги в каталозі.

            " + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" +"

            Цей формат буде недоступним для читачів. Можливість завантаження " +"файлів і інші види доставки більше не відображатимуться на сторінці книги в " +"каталозі.

            " + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "Запис у каталозі не підтверджено." + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "Формат відсутній в каталозі." + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "Коректура (пруф) не затверджена(-ий)." + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "Підтверджено" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "Очікує підтвердження" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "Необхідно ввести розмір файлу для цифрових форматів." + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "Необхідно ввести код доступності товару." + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "Необхідно вибрати код складу продукту." + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "Значення коду" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "Тип коду ONIX" + +msgid "grid.catalogEntry.codeRequired" +msgstr "Необхідно ввести ідентифікаційний код." + +msgid "grid.catalogEntry.valueRequired" +msgstr "Необхідно ввести значення." + +msgid "grid.catalogEntry.salesRights" +msgstr "Права щодо продажу" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "Значення коду" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "Тип прав щодо продажу" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "Решта світу?" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" +"Відмітьте цей прапорець, щоб використати ці права щодо продажу для вашого " +"формату в цілому. В цьому випадку країни та регіони вибирати не потрібно." + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" +"Для цього формату публікації вже визначено тип продажів ROW (решта світу)." + +msgid "grid.catalogEntry.countries" +msgstr "Країни" + +msgid "grid.catalogEntry.regions" +msgstr "Регіони / області" + +msgid "grid.catalogEntry.included" +msgstr "Включно" + +msgid "grid.catalogEntry.excluded" +msgstr "Виключено" + +msgid "grid.catalogEntry.markets" +msgstr "Території магазину" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "Територія" + +msgid "grid.catalogEntry.publicationDates" +msgstr "Дати публікації" + +msgid "grid.catalogEntry.roleRequired" +msgstr "Необхідна роль представника." + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "Вимагається формат дати." + +msgid "grid.catalogEntry.dateValue" +msgstr "Дата" + +msgid "grid.catalogEntry.dateRole" +msgstr "Роль" + +msgid "grid.catalogEntry.dateFormat" +msgstr "Формат дати" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" +"Необхідно ввести дату, і значення дати має співпадати з обраним форматом " +"дати." + +msgid "grid.catalogEntry.representatives" +msgstr "Представники" + +msgid "grid.catalogEntry.representativeType" +msgstr "Тип представництва" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "Агенти" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "Постачальники" + +msgid "grid.catalogEntry.agent" +msgstr "Агент" + +msgid "grid.catalogEntry.agentTip" +msgstr "" +"Ви можете призначити агента для представництва ваших інтересів в обраному " +"Вами регіоні. Не є обов'язковим." + +msgid "grid.catalogEntry.supplier" +msgstr "Постачальник" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "Оберіть роль:" + +msgid "grid.catalogEntry.representativeRole" +msgstr "Роль" + +msgid "grid.catalogEntry.representativeName" +msgstr "Ім'я" + +msgid "grid.catalogEntry.representativePhone" +msgstr "Телефон" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "Адреса електронної пошти" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "Вебсайт" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "ID представника" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "ID тип представника (рекомендовано GLN)" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" +"Ви можете залишити наступний розділ пустим, якщо Ви надаєте власні послуги " +"своїм клієнтам." + +msgid "grid.action.addRepresentative" +msgstr "Додати представника" + +msgid "grid.action.editRepresentative" +msgstr "Редагувати цього представника" + +msgid "grid.action.deleteRepresentative" +msgstr "Видалити цього представника" + +msgid "spotlight" +msgstr "Фокус уваги" + +msgid "spotlight.spotlights" +msgstr "Фокуси уваги" + +msgid "spotlight.noneExist" +msgstr "Тут немає поточних фокусів уваги." + +msgid "spotlight.title.homePage" +msgstr "У фокусі уваги" + +msgid "spotlight.author" +msgstr "Автор, " + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "Пункт фокусу уваги" + +msgid "grid.content.spotlights.category.homepage" +msgstr "Головна сторінка" + +msgid "grid.content.spotlights.form.location" +msgstr "Положення фокусу уваги" + +msgid "grid.content.spotlights.form.item" +msgstr "Введіть назву фокусу уваги (автозаповнення)" + +msgid "grid.content.spotlights.form.title" +msgstr "Назва фокусу уваги" + +msgid "grid.content.spotlights.form.type.book" +msgstr "Книга" + +msgid "grid.content.spotlights.itemRequired" +msgstr "Вимагається елемент." + +msgid "grid.content.spotlights.titleRequired" +msgstr "Вимагається назва фокусу уваги." + +msgid "grid.content.spotlights.locationRequired" +msgstr "Будь ласка, виберіть положення цього фокусу уваги." + +msgid "grid.action.editSpotlight" +msgstr "Редагувати цей фокус уваги" + +msgid "grid.action.deleteSpotlight" +msgstr "Видалити цей фокус уваги" + +msgid "grid.action.addSpotlight" +msgstr "Додати фокус уваги" + +msgid "manager.series.open" +msgstr "Відкрити подання" + +msgid "manager.series.indexed" +msgstr "Індексовано" + +msgid "grid.libraryFiles.column.files" +msgstr "Файли" + +msgid "grid.action.catalogEntry" +msgstr "Переглянути форму запису каталога" + +msgid "grid.action.formatInCatalogEntry" +msgstr "Формат з'явиться в каталозі" + +msgid "grid.action.editFormat" +msgstr "Редагувати цей формат" + +msgid "grid.action.deleteFormat" +msgstr "Видалити цей формат" + +msgid "grid.action.addFormat" +msgstr "Додати формат публікації" + +msgid "grid.action.approveProof" +msgstr "Схвалити цей пруф для індексування та включення в каталог" + +msgid "grid.action.pageProofApproved" +msgstr "Файл пруфів сторінок готовий до опублікування" + +msgid "grid.action.newCatalogEntry" +msgstr "Новий запис у каталозі" + +msgid "grid.action.publicCatalog" +msgstr "Переглянути цей елемент в каталозі" + +msgid "grid.action.feature" +msgstr "Переключити відображення характеристик" + +msgid "grid.action.featureMonograph" +msgstr "Показати це в каруселі каталогу" + +msgid "grid.action.releaseMonograph" +msgstr "Додати мітку \"Новий реліз\" до цього подання" + +msgid "grid.action.manageCategories" +msgstr "Сконфігурувати категорії для цього е-видавництва" + +msgid "grid.action.manageSeries" +msgstr "Сконфігурувати серії для цього е-видавництва" + +msgid "grid.action.addCode" +msgstr "Додати код" + +msgid "grid.action.editCode" +msgstr "Редагувати цей код" + +msgid "grid.action.deleteCode" +msgstr "Видалити цей код" + +msgid "grid.action.addRights" +msgstr "Додати права щодо продажу" + +msgid "grid.action.editRights" +msgstr "Редагувати ці права" + +msgid "grid.action.deleteRights" +msgstr "Видалити ці права" + +msgid "grid.action.addMarket" +msgstr "Додати магазин" + +msgid "grid.action.editMarket" +msgstr "Редагувати цей магазин" + +msgid "grid.action.deleteMarket" +msgstr "Видалити цей магазин" + +msgid "grid.action.addDate" +msgstr "Додати дату публікації" + +msgid "grid.action.editDate" +msgstr "Редагувати цю дату" + +msgid "grid.action.deleteDate" +msgstr "Видалити цю дату" + +msgid "grid.action.createContext" +msgstr "Створити нове е-видавництво" + +msgid "grid.action.publicationFormatTab" +msgstr "Показати вкладку формату публікації" + +msgid "grid.action.moreAnnouncements" +msgstr "Перейти до сторінки оголошень е-видавництва" + +msgid "grid.action.submissionEmail" +msgstr "Натиснути, щоб прочитати цей електронний лист" + +msgid "grid.action.approveProofs" +msgstr "Переглянути сітку коректури" + +msgid "grid.action.proofApproved" +msgstr "Формат перевірено" + +msgid "grid.action.availableRepresentation" +msgstr "Підтвердити/скасувати цей формат" + +msgid "grid.action.formatAvailable" +msgstr "Увімкнути або вимкнути доступність цього формату" + +msgid "grid.reviewAttachments.add" +msgstr "Додати вкладення до рецензії" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "Доступні файли" + +msgid "series.series" +msgstr "Серії" + +msgid "series.featured.description" +msgstr "Ця серія з'явиться в головній навігації" + +msgid "series.path" +msgstr "Шлях" + +msgid "catalog.manage" +msgstr "Управління каталогом" + +msgid "catalog.manage.newReleases" +msgstr "Нові релізи" + +msgid "catalog.manage.category" +msgstr "Категорія" + +msgid "catalog.manage.series" +msgstr "Серії" + +msgid "catalog.manage.series.issn" +msgstr "ISSN" + +msgid "catalog.manage.series.issn.validation" +msgstr "Введіть корректний ISSN." + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "Електронний і друкований ISSN-и мають відрізнятися." + +msgid "catalog.manage.series.onlineIssn" +msgstr "Електронний ISSN" + +msgid "catalog.manage.series.printIssn" +msgstr "Друкований ISSN" + +msgid "catalog.selectSeries" +msgstr "Оберіть серію" + +msgid "catalog.selectCategory" +msgstr "Оберіть категорію" + +msgid "catalog.manage.homepageDescription" +msgstr "" +"Зображення обкладинки вибраних книг з'являється у верхній частині головної " +"сторінки у вигляді набору з можливістю прокрутки. Натисніть кнопку " +"\"Особливості\", потім зірочку, щоб додати книгу в карусель; клікніть на " +"знак оклику, щоб позначити новий реліз; перетаскуйте вверх і вниз для " +"впорядкування." + +msgid "catalog.manage.categoryDescription" +msgstr "" +"Натисніть кнопку \"Особливості\", потім зірочку, щоб вибрати потрібну книгу " +"для цієї категорії; перетаскуйте вверх і вниз для в порядкування." + +msgid "catalog.manage.seriesDescription" +msgstr "" +"Натисніть кнопку \"Особливості\", потім зірочку, щоб вибрати потрібну книгу " +"для цієї серії; перетаскуйте вверх і вниз для впорядкування. Серії " +"ідентифікуються з редактором(ами) й назвою серії, у межах категорії або " +"незалежно від неї." + +msgid "catalog.manage.placeIntoCarousel" +msgstr "Карусель" + +msgid "catalog.manage.newRelease" +msgstr "Реліз" + +msgid "catalog.manage.manageSeries" +msgstr "Керувати серіями" + +msgid "catalog.manage.manageCategories" +msgstr "Керувати категоріями" + +msgid "catalog.manage.noMonographs" +msgstr "Відсутні призначені монографії." + +msgid "catalog.manage.featured" +msgstr "Рекомендовані" + +msgid "catalog.manage.categoryFeatured" +msgstr "Рекомендовані в категорії" + +msgid "catalog.manage.seriesFeatured" +msgstr "Рекомендовані в серії" + +msgid "catalog.manage.featuredSuccess" +msgstr "Монографію представлено." + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "Монографію не представлено." + +msgid "catalog.manage.newReleaseSuccess" +msgstr "Монографію позначено як новий реліз." + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "Мітку \"Новий реліз\" знято з монографії." + +msgid "catalog.manage.feature.newRelease" +msgstr "Новий реліз" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "Новий реліз у категорії" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "Новий реліз у серії" + +msgid "catalog.manage.nonOrderable" +msgstr "Цю монографію не можна замовити, доки її не представлять." + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "Пошук за автором або назвою" + +msgid "catalog.manage.isFeatured" +msgstr "Цю монографію представлено. Зробити цю монографію непредставленою." + +msgid "catalog.manage.isNotFeatured" +msgstr "Цю монографію не представлено. Зробити цю монографію представленою." + +msgid "catalog.manage.isNewRelease" +msgstr "" +"Цю монографію відмічено як \"Новий реліз\". Зняти мітку \"Новий реліз\" із " +"монографії." + +msgid "catalog.manage.isNotNewRelease" +msgstr "" +"Цю монографію не відмічено як \"Новий реліз\". Поставити мітку \"Новий реліз" +"\" монографії." + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "Не було вибрано жодного подання для додавання в каталог." + +msgid "catalog.manage.submissionsNotFound" +msgstr "Одне або більше подань не було знайдено." + +msgid "catalog.manage.findSubmissions" +msgstr "Знайти монографії для додавання в каталог" + +msgid "catalog.noTitles" +msgstr "Ще не було опубліковано жодної назви." + +msgid "catalog.noTitlesNew" +msgstr "Недоступно нових релізів на цей час." + +msgid "catalog.noTitlesSearch" +msgstr "" +"Жодних матеріалів не знайдено за вказаним Вами пошуковим запитом " +"\"{$searchQuery}\"." + +msgid "catalog.feature" +msgstr "Рекомендувати" + +msgid "catalog.featured" +msgstr "Рекомендовані" + +msgid "catalog.featuredBooks" +msgstr "Рекомендовані книги" + +msgid "catalog.foundTitleSearch" +msgstr "Один запис знайдено за вашим запитом \"{$searchQuery}\"." + +msgid "catalog.foundTitlesSearch" +msgstr "{$number} назв знайдено за вашим запитом \"{$searchQuery}\"." + +msgid "catalog.category.heading" +msgstr "Усі книги" + +msgid "catalog.newReleases" +msgstr "Нові релізи" + +msgid "catalog.dateAdded" +msgstr "Додано" + +msgid "catalog.publicationInfo" +msgstr "Інформація про видання" + +msgid "catalog.published" +msgstr "Опубліковано" + +msgid "catalog.forthcoming" +msgstr "Незабаром" + +msgid "catalog.categories" +msgstr "Категорії" + +msgid "catalog.parentCategory" +msgstr "Батьківська Категорія" + +msgid "catalog.category.subcategories" +msgstr "Підкатегорії" + +msgid "catalog.aboutTheAuthor" +msgstr "Детальніше про {$roleName}" + +msgid "catalog.loginRequiredForPayment" +msgstr "" +"Будь ласка, зауважте: щоб придбати матеріали, необхідно увійти в систему. " +"Вибір матеріалу для придбання автоматично переадресує Вас на сторінку входу. " +"Кожен елемент зі значком вільного доступу може бути завантажено без усіляких " +"обмежень, безкоштовно, без потреби входити в систему." + +msgid "catalog.sortBy" +msgstr "Замовити монографії" + +msgid "catalog.sortBy.seriesDescription" +msgstr "Оберіть як замовляти книги з цієї серії." + +msgid "catalog.sortBy.categoryDescription" +msgstr "Оберіть, як замовляти книги з цієї категорії." + +msgid "catalog.sortBy.catalogDescription" +msgstr "Оберіть, як замовляти книги в каталозі." + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "Позиція серії (спочатку найнижча)" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "Позиція серії (спочатку найвища)" + +msgid "catalog.viewableFile.title" +msgstr "{$type} переглядів файлу \"{$title}\"" + +msgid "catalog.viewableFile.return" +msgstr "Повернутися до перегляду подробиць про \"{$monographTitle}\"" + +msgid "submission.search" +msgstr "Пошук книг" + +msgid "common.publication" +msgstr "Монографія" + +msgid "common.publications" +msgstr "Монографії" + +msgid "common.prefix" +msgstr "Префікс" + +msgid "common.preview" +msgstr "Передогляд" + +msgid "common.feature" +msgstr "Популярне" + +msgid "common.searchCatalog" +msgstr "Пошук у Каталозі" + +msgid "common.moreInfo" +msgstr "Детальніше" + +msgid "common.listbuilder.completeForm" +msgstr "Будь ласка, заповніть форму повністю." + +msgid "common.listbuilder.selectValidOption" +msgstr "Будь ласка, оберіть дійсну опцію зі списку." + +msgid "common.listbuilder.itemExists" +msgstr "Ви не можете додати один і той самий товар двічі." + +msgid "common.software" +msgstr "Open Monograph Press" + +msgid "common.omp" +msgstr "OMP" + +msgid "common.homePageHeader.altText" +msgstr "Заголовок головної сторінки" + +msgid "navigation.catalog" +msgstr "Каталог" + +msgid "navigation.competingInterestPolicy" +msgstr "Політика щодо конфлікту інтересів" + +msgid "navigation.catalog.allMonographs" +msgstr "Усі Монографії" + +msgid "navigation.catalog.manage" +msgstr "Керувати" + +msgid "navigation.catalog.administration.short" +msgstr "Адміністрування" + +msgid "navigation.catalog.administration" +msgstr "Адміністрування каталогу" + +msgid "navigation.catalog.administration.categories" +msgstr "Категорії" + +msgid "navigation.catalog.administration.series" +msgstr "Серії" + +msgid "navigation.infoForAuthors" +msgstr "Для авторів" + +msgid "navigation.infoForLibrarians" +msgstr "Для бібліотекарів" + +msgid "navigation.infoForAuthors.long" +msgstr "Інформація для авторів" + +msgid "navigation.infoForLibrarians.long" +msgstr "Інформація для бібіліотекарів" + +msgid "navigation.newReleases" +msgstr "Нові релізи" + +msgid "navigation.published" +msgstr "Видано" + +msgid "navigation.wizard" +msgstr "Майстер налаштувань" + +msgid "navigation.linksAndMedia" +msgstr "Посилання і соціальні медіа" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "Покликання на Ваш каталог." + +msgid "navigation.skip.spotlights" +msgstr "Перейти до фокусів уваги" + +msgid "navigation.navigationMenus.series.generic" +msgstr "Серія" + +msgid "navigation.navigationMenus.series.description" +msgstr "Покликання на серію." + +msgid "navigation.navigationMenus.category.generic" +msgstr "Категорія" + +msgid "navigation.navigationMenus.category.description" +msgstr "Покликання на категорію." + +msgid "navigation.navigationMenus.newRelease" +msgstr "Нові релізи" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "Покликання на нові релізи." + +msgid "context.contexts" +msgstr "Е-видавництва" + +msgid "context.context" +msgstr "Е-видавництво" + +msgid "context.current" +msgstr "Поточне е-видавництво:" + +msgid "context.select" +msgstr "Переключити на інше е-видавництво:" + +msgid "user.authorization.representationNotFound" +msgstr "Запитуваний формат публікації не було знайдено." + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "Включити користувачів без призначених ролей у цьому е-видавництві." + +msgid "user.noRoles.submitMonograph" +msgstr "Подати пропозицію" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "Подати монографію: реєстрацію авторів наразі відключено." + +msgid "user.noRoles.regReviewer" +msgstr "Зареєструватися рецензентом" + +msgid "user.noRoles.regReviewerClosed" +msgstr "Зареєструватися рецензентом: реєстрацію рецензентів наразі відключено." + +msgid "user.reviewerPrompt" +msgstr "Чи хотіли б Ви рецензувати матеріали для цього е-видавництва?" + +msgid "user.reviewerPrompt.userGroup" +msgstr "Так, запитати роль {$userGroup}." + +msgid "user.reviewerPrompt.optin" +msgstr "" +"Так, я хочу, щоб до мене зверталися із запитами на рецензування матеріалів " +"для цього е-видавництва." + +msgid "user.register.contextsPrompt" +msgstr "У яких е-видавництвах на цьому вебсайті Ви хочете зареєструватися?" + +msgid "user.register.otherContextRoles" +msgstr "Відправити запит на такі ролі." + +msgid "user.register.noContextReviewerInterests" +msgstr "" +"Якщо Ви запитали роль рецензента в будь-якому е-видавництві, будь ласка, " +"зазначте свої наукові інтереси." + +msgid "user.role.manager" +msgstr "Менеджер е-видавництва" + +msgid "user.role.pressEditor" +msgstr "Редактор е-видавництва" + +msgid "user.role.subEditor" +msgstr "Редактор серії" + +msgid "user.role.copyeditor" +msgstr "Літературний редактор" + +msgid "user.role.proofreader" +msgstr "Коректор" + +msgid "user.role.productionEditor" +msgstr "Випусковий редактор" + +msgid "user.role.managers" +msgstr "Менеджери е-видавництва" + +msgid "user.role.subEditors" +msgstr "Редактори серії" + +msgid "user.role.editors" +msgstr "Редактори" + +msgid "user.role.copyeditors" +msgstr "Літературні редактори" + +msgid "user.role.proofreaders" +msgstr "Коректори" + +msgid "user.role.productionEditors" +msgstr "Випускові редактори" + +msgid "user.register.selectContext" +msgstr "Вибрати е-видавництво для реєстрації:" + +msgid "user.register.noContexts" +msgstr "На цьому вебсайті немає е-видавництв, у яких Ви можете зареєструватися." + +msgid "user.register.privacyStatement" +msgstr "Заява про конфіденційність" + +msgid "user.register.registrationDisabled" +msgstr "Це е-видавництво наразі не приймає реєстрацій користувачів." + +msgid "user.register.form.passwordLengthTooShort" +msgstr "Пароль, який Ви ввели, не достатньо довгий." + +msgid "user.register.readerDescription" +msgstr "Повідомляється поштою про публікацію нових монографій." + +msgid "user.register.authorDescription" +msgstr "Має можливість подавати матеріали до видавництв." + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "Дає свою згоду на рецензування матеріалів для е-видавництва." + +msgid "user.register.reviewerDescription" +msgstr "Даю згоду на рецензування подань для вебсайту." + +msgid "user.register.reviewerInterests" +msgstr "Вкажіть коло наукових інтересів (галузі та методологічні підходи):" + +msgid "user.register.form.userGroupRequired" +msgstr "Ви маєте обрати принаймі одну роль" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" +"Так, я погоджуюся, щоб мої дані збиралися та зберігалися згідно із заявою " +"про конфіденційність цього е-" +"видавництва." + +msgid "site.noPresses" +msgstr "Немає доступних е-видавництв." + +msgid "site.pressView" +msgstr "Переглянути вебсайт е-видавництва" + +msgid "about.pressContact" +msgstr "Контакти е-видавництва" + +msgid "about.aboutContext" +msgstr "Про е-видавництво" + +msgid "about.editorialTeam" +msgstr "Редакція" + +msgid "about.editorialPolicies" +msgstr "Редакційна політика" + +msgid "about.focusAndScope" +msgstr "Фокус і сфера" + +msgid "about.seriesPolicies" +msgstr "Політика серій і категорій" + +msgid "about.submissions" +msgstr "Подання" + +msgid "about.onlineSubmissions" +msgstr "Онлайнові подання" + +msgid "about.onlineSubmissions.login" +msgstr "Увійти" + +msgid "about.onlineSubmissions.register" +msgstr "Зареєструватися" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "{$login} або {$register} щоб зробити подання." + +msgid "about.onlineSubmissions.submissionActions" +msgstr "{$newSubmission} або {$viewSubmissions}." + +msgid "about.onlineSubmissions.newSubmission" +msgstr "Зробити нове подання" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "переглянути раніше подані матеріали" + +msgid "about.authorGuidelines" +msgstr "Настанови для авторів" + +msgid "about.submissionPreparationChecklist" +msgstr "Вимоги до подання" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" +"Під час подання рукопису до журналу автори повинні підтвердити його " +"відповідність усім установленим вимогам, указаним нижче. У разі виявлення " +"невідповідності поданої роботи пунктам цих вимог редакція повертатиме " +"авторам матеріали на доопрацювання." + +msgid "about.copyrightNotice" +msgstr "Інформація про авторське право" + +msgid "about.privacyStatement" +msgstr "Заява про конфіденційність" + +msgid "about.reviewPolicy" +msgstr "Процес рецензування" + +msgid "about.publicationFrequency" +msgstr "Періодичність публікації" + +msgid "about.openAccessPolicy" +msgstr "Політика відкритого доступу" + +msgid "about.pressSponsorship" +msgstr "Спонсорство е-видавництва" + +msgid "about.aboutThisPublishingSystem" +msgstr "" +"Більше інформації про цю видавничу систему, платформу й робочий процес від " +"OMP / PKP." + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "Редакційно-видавничий процес OMP" + +msgid "about.aboutSoftware" +msgstr "Про Open Monograph Press" + +msgid "about.aboutOMPPress" +msgstr "" +"Це е-видавництво використовує Open Monograph Press {$ompVersion}, що є " +"програмним продуктом із відкритим вихідним кодом для керування е-" +"видавництвом і опублікуванням, який розробляється, підтримується та вільно " +"розповсюджується Public Knowledge Project на умовах ліцензії GNU General " +"Public License. Відвідайте вебсайт PKP, щоб дізнатися більше про це програмне забезпечення. Будь ласка, зв'яжіться з е-видавництвом напряму, якщо у Вас є " +"запитання про е-видавництво й подання матеріалів." + +msgid "about.aboutOMPSite" +msgstr "" +"Це е-видавництво використовує Open Monograph Press {$ompVersion}, що є " +"програмним продуктом із відкритим вихідним кодом для керування е-" +"видавництвом і опублікуванням, який розробляється, підтримується та вільно " +"розповсюджується Public Knowledge Project на умовах ліцензії GNU General " +"Public License. Відвідайте вебсайт PKP, щоб дізнатися більше про це програмне забезпечення. Будь ласка, зв'яжіться " +"з вебсайтом напряму, якщо у Вас є запитання про йог е-видавництва й подання " +"матеріалів." + +msgid "help.searchReturnResults" +msgstr "Повернутися до результатів пошуку" + +msgid "help.goToEditPage" +msgstr "Відкрийте нову сторінку для редагування цієї інформації" + +msgid "installer.appInstallation" +msgstr "Інсталяція OMP" + +msgid "installer.ompUpgrade" +msgstr "Оновлення OMP" + +msgid "installer.installApplication" +msgstr "Інсталювати Open Monograph Press" + +msgid "installer.updatingInstructions" +msgstr "" +"Якщо Ви оновлюєте встановлену OMP, натисніть тут для продовження." + +msgid "installer.installationInstructions" +msgstr "" +"

            Дякуємо, що завантажили Open Monograph Press {$version} " +"виробництва Public Knowledge Project. Перед тим, як продовжити, будь ласка, " +"прочитайте файл README, включений " +"до цього дистрибутиву. Для того, щоб дізнатися більше про Public Knowledge " +"Project і розроблені ним програмні пакети, будь ласка, завітайте на вебсайт PKP. Якщо Ви маєте " +"звіти про помилки або запити до служби підтримки Open Monograph Press, " +"дивіться форум " +"підтримки або завітайте до онлайнової служби PKP система звітування про " +"помилки. Хоча форум підтримки є пріоритетним методом контакту з " +"розробниками, Ви можете також написати розробникам листа на адресу pkp.contact@gmail.com.

            " + +msgid "installer.preInstallationInstructionsTitle" +msgstr "Кроки підготовки до встановлення" + +msgid "installer.preInstallationInstructions" +msgstr "" +"

            1. Наступні файли і каталоги (та їх вміст) потрібно зробити доступними " +"для запису:

            \n" +"
              \n" +"\t
            • config.inc.php доступний для запису (не обов'язково): " +"{$writable_config}
            • \n" +"\t
            • public/ доступний для запису: {$writable_public}
            • \n" +"\t
            • cache/ доступний для запису: {$writable_cache}
            • \n" +"\t
            • cache/t_cache/ доступний для запису: " +"{$writable_templates_cache}
            • \n" +"\t
            • cache/t_compile/ доступний для запису: " +"{$writable_templates_compile}
            • \n" +"\t
            • cache/_db доступний для запису: {$writable_db_cache}
            • \n" +"
            \n" +"\n" +"

            2. Каталог для збереження вивантажених на сервер файлів має бути " +"створений та до нього має бути доступ для запису (дивись \"Налаштування " +"файлів\" нижче).

            " + +msgid "installer.upgradeInstructions" +msgstr "" +"

            OMP версії {$version}

            \n" +"\n" +"

            Дякуємо, що завантажили Open Monograph Press виробництва " +"Public Knowledge Project. Перед тим, як продовжити, будь ласка, прочитайте " +"файл README таUPGRADE, включені до цього дистрибутиву. Для того, щоб " +"дізнатися більше про Public Knowledge Project і розроблені ним програмні " +"пакети, будь ласка, завітайте на вебсайт PKP. Якщо Ви маєте звіти про помилки або запити до " +"служби підтримки Open Monograph Press, дивіться форум підтримки або завітайте до онлайнової " +"служби PKP системи звітування про помилки. Хоча форум підтримки є пріоритетним " +"методом контакту з розробниками, Ви можете також написати розробникам листа " +"на адресу pkp.contact@gmail.com." +"

            \n" +"

            Перед тим, як продовжити, наполегливо рекомендуємо " +"зробити резервну копію Вашої бази даних, файлових директорій і директорії " +"інсталяції OMP.

            " + +msgid "installer.localeSettingsInstructions" +msgstr "" +"Для повної підтримки формату Unicode повинен бути створений PHP з підтримкою " +"бібліотеки mbstring (у більшості сучасних інсталяцій PHP включена за замовчуванням)" +". Якщо ваш сервер не відповідає цим вимогам, ви можете зустрітися з " +"проблемами під час використання розширених таблиць кодування.\n" +"

            \n" +"Ваш сервер наразі має підтримку mbstring: " +"{$supportsMBString}" + +msgid "installer.allowFileUploads" +msgstr "" +"Ваш сервер наразі дає змогу вивантаження файлів: " +"{$allowFileUploads}" + +msgid "installer.maxFileUploadSize" +msgstr "" +"Ваш сервер наразі дає змогу вивантаження файлів розміром не більше: " +"{$maxFileUploadSize}" + +msgid "installer.localeInstructions" +msgstr "" +"Головна мова для цієї системи. Якщо вам необхідна підтримка мови, не " +"вказаної тут, будь ласка, звертайтеся до документації OMP." + +msgid "installer.additionalLocalesInstructions" +msgstr "" +"Виберіть будь-які додаткові мови для підтримки в цій системі. Ці мови будуть " +"доступними для використання е-видавництвами, розміщеними на вебсайті. " +"Додаткові мови також можуть бути встановлені в будь-який час із інтерфейсу " +"адміністрування вебсайту. Локалізації, помічені *, можуть бути неповними." + +msgid "installer.filesDirInstructions" +msgstr "" +"Введіть повний шлях до наявної директорії, де будуть зберігатися вивантажені " +"файли. Ця директорія не повинна бути напряму доступною в мережі. " +"Будь ласка, перед установкою впевніться, що директорія існує і є " +"доступною для запису. Шляхи у Windows повинні використовувати прямі " +"слеши, наприклад, \"C:/mypress/files\"." + +msgid "installer.databaseSettingsInstructions" +msgstr "" +"OMP вимагає доступ до бази даних SQL для зберігання своїх даних. Вище у " +"вммогах до системи вказано список підтримуваних баз даних. У полях нижче " +"вкажіть налаштування, що будуть використані для зв'язку з базою даних." + +msgid "installer.upgradeApplication" +msgstr "Оновити Open Monograph Press" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" +"

            ВАЖЛИВО!

            \n" +"

            Установщик не зміг автоматично перезаписати файл конфігурації. Перед " +"спробою скористатися системою, будь ласка, відкрийте config.inc.php " +"у зручному текстовому редакторі й замініть його вміст вмістом текстового " +"поля, наведеним нижче.

            " + +msgid "installer.installationComplete" +msgstr "" +"

            Установку OMP успішно завершено.

            \n" +"

            Для початку користування системою увійдіть із " +"логіном і паролем, введеними на попередній сторінці.

            \n" +"

            Відвідайте наш форум " +"спільноти або підпишіться на наш інформаційний бюлетень для розробників, щоб " +"отримувати сповіщення про безпеку й оновлення щодо майбутніх випусків, нових " +"плагінів і запланованих функцій.

            " + +msgid "installer.upgradeComplete" +msgstr "" +"

            Оновлення OMP до версії {$version} виконано успішно.

            \n" +"

            Не забудьте встановити параметр \"installed\" (\"встановлено\") у файлі " +"конфігурації config.inc.php знов у значення On (вкл.).

            " +"\n" +"

            Відвідайте наш форум " +"спільноти або підпишіться на наш інформаційний бюлетень для розробників, щоб " +"отримувати сповіщення про безпеку й оновлення щодо майбутніх випусків, нових " +"плагінів і запланованих функцій.

            " + +msgid "log.review.reviewDueDateSet" +msgstr "" +"Граничним терміном {$round}-го раунду рецензування подання {$submissionId} " +"рецензентом {$reviewerName} було встановлено {$dueDate}." + +msgid "log.review.reviewDeclined" +msgstr "" +"Рецензент {$reviewerName} відмовився дати рецензію на {$round}-м раунді " +"рецензування для подання {$submissionId}." + +msgid "log.review.reviewAccepted" +msgstr "" +"Рецензент {$reviewerName} погодився дати рецензію на {$round}-м раунді " +"рецензування для подання {$submissionId}." + +msgid "log.review.reviewUnconsidered" +msgstr "" +"{$editorName} відмітив {$round}-й раунд рецензування для подання " +"{$submissionId} як нерозглянутий." + +msgid "log.editor.decision" +msgstr "" +"Рішення редактора(ки) ({$decision}) для монографії {$submissionId} було " +"записане редактором(кою) {$editorName}." + +msgid "log.editor.recommendation" +msgstr "" +"Рекомендацію редактора(ки) ({$decision}) для монографії {$submissionId} було " +"записане редактором(кою) {$editorName}." + +msgid "log.editor.archived" +msgstr "Подання {$submissionId} було заархівовано." + +msgid "log.editor.restored" +msgstr "Подання {$submissionId} було поновлено (з архіву) в черзі." + +msgid "log.editor.editorAssigned" +msgstr "{$editorName} було призначено редактором(-кою) подання {$submissionId}." + +msgid "log.proofread.assign" +msgstr "" +"{$assignerName} призначив користувача {$proofreaderName} коректором подання " +"{$submissionId}." + +msgid "log.proofread.complete" +msgstr "" +"Коректор(-ка) {$proofreaderName} відправив(-ла) матеріал {$submissionId} для " +"розміщення." + +msgid "log.imported" +msgstr "{$userName} імпортував(ла) монографію {$submissionId}." + +msgid "notification.addedIdentificationCode" +msgstr "Ідентифікаційний код додано." + +msgid "notification.editedIdentificationCode" +msgstr "Ідентифікаційний код відредаговано." + +msgid "notification.removedIdentificationCode" +msgstr "Ідентифікаційний код видалено." + +msgid "notification.addedPublicationDate" +msgstr "Дату опублікування додано." + +msgid "notification.editedPublicationDate" +msgstr "Дату опублікування відредаговано." + +msgid "notification.removedPublicationDate" +msgstr "Дату опублікування видалено." + +msgid "notification.addedPublicationFormat" +msgstr "Формат публікації додано." + +msgid "notification.editedPublicationFormat" +msgstr "Формат публікації відредаговано." + +msgid "notification.removedPublicationFormat" +msgstr "Формат публікації видалено." + +msgid "notification.addedSalesRights" +msgstr "Права щодо продажу додано." + +msgid "notification.editedSalesRights" +msgstr "Права щодо продажу відредаговано." + +msgid "notification.removedSalesRights" +msgstr "Права щодо продажу видалено." + +msgid "notification.addedRepresentative" +msgstr "Представника додано." + +msgid "notification.editedRepresentative" +msgstr "Представника відредаговано." + +msgid "notification.removedRepresentative" +msgstr "Представника видалено." + +msgid "notification.addedMarket" +msgstr "Магазин додано." + +msgid "notification.editedMarket" +msgstr "Магазин відредаговано." + +msgid "notification.removedMarket" +msgstr "Магазин видалено." + +msgid "notification.addedSpotlight" +msgstr "Фокус уваги додано." + +msgid "notification.editedSpotlight" +msgstr "Фокус уваги відредаговано." + +msgid "notification.removedSpotlight" +msgstr "Фокус уваги видалено." + +msgid "notification.savedCatalogMetadata" +msgstr "Метадані каталогу збережено." + +msgid "notification.savedPublicationFormatMetadata" +msgstr "Метадані формату публікації збережено." + +msgid "notification.proofsApproved" +msgstr "Пруфи затверджено." + +msgid "notification.removedSubmission" +msgstr "Подання видалено." + +msgid "notification.type.submissionSubmitted" +msgstr "Нову монографію, \"{$title}\", було подано." + +msgid "notification.type.editing" +msgstr "Події щодо редагування" + +msgid "notification.type.reviewing" +msgstr "Події щодо рецензування" + +msgid "notification.type.site" +msgstr "Події вебсайту" + +msgid "notification.type.submissions" +msgstr "Події щодо подання" + +msgid "notification.type.userComment" +msgstr "Читач додав коментар до \"{$title}\"." + +msgid "notification.type.public" +msgstr "Публічні оголошення" + +msgid "notification.type.editorAssignmentTask" +msgstr "Було подано нову монографію, для якої потрібно призначити редактора." + +msgid "notification.type.copyeditorRequest" +msgstr "Вас попросили виконати літературне редагування \"{$file}\"." + +msgid "notification.type.layouteditorRequest" +msgstr "Вас попросили виконати верстання \"{$title}\"." + +msgid "notification.type.indexRequest" +msgstr "Вас попросили створити індексний файл для \"{$title}\"." + +msgid "notification.type.editorDecisionInternalReview" +msgstr "Процес внутрішнього рецензування розпочався." + +msgid "notification.type.approveSubmission" +msgstr "" +"Це подання наразі очікує схвалення в інструменті \"Запис каталогу\" перед " +"тим, як воно з'явиться в публічному каталозі." + +msgid "notification.type.approveSubmissionTitle" +msgstr "Очікує схвалення." + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" +"Монографію не буде включено в каталог, доки її не буде опубліковано. Щоб " +"додати цю книгу в каталог, клікніть на вкладці \"Публікація\"." + +msgid "notification.type.configurePaymentMethod.title" +msgstr "Жоден метод оплати не сконфігуровано." + +msgid "notification.type.configurePaymentMethod" +msgstr "" +"Перед тим, як визначити налаштування електронної комерції, потрібно " +"сконфігурувати метод оплати." + +msgid "notification.type.visitCatalogTitle" +msgstr "Управління каталогом" + +msgid "notification.type.visitCatalog" +msgstr "" +"Монографію було затверджено. Будь ласка, відвідайте розділ \"Маркетинг і " +"опублікування\", щоб ознайомитися з детальною інформацією про каталог, " +"використовуючи покликання вище." + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" +"Вам відмовлено в доступі, оскільки Ви не видаєтеся належним рецензентом цієї " +"монографії." + +msgid "user.authorization.monographAuthor" +msgstr "" +"Вам відмовлено в доступі, оскільки Ви не видаєтеся автором цієї монографії." + +msgid "user.authorization.monographReviewer" +msgstr "" +"Вам відмовлено в доступі, оскільки Ви не видаєтеся призначеним рецензентом " +"цієї монографії." + +msgid "user.authorization.monographFile" +msgstr "Вам відмовлено в доступі до відповідного файлу монографії." + +msgid "user.authorization.invalidMonograph" +msgstr "Неправильна монографія або вона не запитувалася!" + +msgid "user.authorization.noContext" +msgstr "Не знайдено жодного е-видавництва, що відповідає Вашому запиту." + +msgid "user.authorization.seriesAssignment" +msgstr "" +"Ви намагаєтеся отримати доступ до монографії, яка не є частиною Вашої серії." + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" +"У доступі відмовлено! Вас не було призначено для цієї стадії робочого " +"процесу." + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" +"У доступі відмовлено! Групу користувачів, у якій ви наразі дієте, не було " +"призначено для цієї стадії робочого процесу. Будь ласка, перевірте " +"налаштування вашого е-видавництва." + +msgid "payment.directSales" +msgstr "Завантажити з вебсайту е-видавництва" + +msgid "payment.directSales.price" +msgstr "Ціна" + +msgid "payment.directSales.availability" +msgstr "Доступність" + +msgid "payment.directSales.catalog" +msgstr "Каталог" + +msgid "payment.directSales.approved" +msgstr "Затверджено" + +msgid "payment.directSales.priceCurrency" +msgstr "Ціна ({$currency})" + +msgid "payment.directSales.numericOnly" +msgstr "Ціни мають бути лише числовими. Не включайте символи валют." + +msgid "payment.directSales.directSales" +msgstr "Прямі продажі" + +msgid "payment.directSales.amount" +msgstr "{$amount} ({$currency})" + +msgid "payment.directSales.notAvailable" +msgstr "Не доступно" + +msgid "payment.directSales.notSet" +msgstr "Не встановлено" + +msgid "payment.directSales.openAccess" +msgstr "Відкритий доступ" + +msgid "payment.directSales.price.description" +msgstr "" +"Формати файлів можуть бути доступні для завантаження з вебсайту е-" +"видавництва шляхом відкритого доступу для читачів без будь-яких затрат або " +"прямих продажів (із використанням онлайнового процесора оплати, як " +"сконфігуровано в дистрибутиві). Для цього файлу вкажіть тип доступу." + +msgid "payment.directSales.validPriceRequired" +msgstr "Вимагається дійсна числова ціна." + +msgid "payment.directSales.purchase" +msgstr "Покупка {$format} ({$amount} {$currency})" + +msgid "payment.directSales.download" +msgstr "Завантаження {$format}" + +msgid "payment.directSales.monograph.name" +msgstr "Покупка монографії або завантаження глави" + +msgid "payment.directSales.monograph.description" +msgstr "" +"Ця транзакція спрямована на купівлю прямого завантаження окремої монографії " +"або її глави." + +msgid "debug.notes.helpMappingLoad" +msgstr "" +"Перезавантажений файл відображення XML-довідки {$filename} в пошуку {$id}." + +msgid "rt.metadata.pkp.dctype" +msgstr "Книга" + +msgid "submission.pdf.download" +msgstr "Завантажити цей файл PDF" + +msgid "user.profile.form.showOtherContexts" +msgstr "Зареєструватися в інших е-видавництвах" + +msgid "user.profile.form.hideOtherContexts" +msgstr "Сховати інші е-видавництва" + +msgid "submission.round" +msgstr "Раунд {$round}" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "Було вказано недійсне опублікованне подання." + +msgid "catalog.coverImageTitle" +msgstr "Зображення обкладинки" + +msgid "grid.catalogEntry.chapters" +msgstr "Глави" + +msgid "search.results.orderBy.article" +msgstr "Назва статті" + +msgid "search.results.orderBy.author" +msgstr "Автор" + +msgid "search.results.orderBy.date" +msgstr "Дата опублікування" + +msgid "search.results.orderBy.monograph" +msgstr "Назва монографії" + +msgid "search.results.orderBy.press" +msgstr "Назва е-видавництва" + +msgid "search.results.orderBy.popularityAll" +msgstr "Популярність (за весь час)" + +msgid "search.results.orderBy.popularityMonth" +msgstr "Популярність (за останній місяць)" + +msgid "search.results.orderBy.relevance" +msgstr "Релевантність" + +msgid "search.results.orderDir.asc" +msgstr "За зростанням" + +msgid "search.results.orderDir.desc" +msgstr "За убуванням" + +msgid "section.section" +msgstr "Серії" + +msgid "search.cli.rebuildIndex.indexing" +msgstr "Індексація \"{$pressName}\"" + +msgid "search.cli.rebuildIndex.indexingByPressNotSupported" +msgstr "" +"Реалізація цього пошуку не дає змоги повторно індексувати кожне " +"е-видавництво." + +msgid "search.cli.rebuildIndex.unknownPress" +msgstr "" +"Наданий шлях е-видавництва \"{$pressPath}\" не може бути визначений як " +"е-видавництво." diff --git a/locale/uk/manager.po b/locale/uk/manager.po new file mode 100644 index 00000000000..6a31231fe61 --- /dev/null +++ b/locale/uk/manager.po @@ -0,0 +1,1764 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-02 22:44+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" +"Ця дія скасує всі налаштування е-видавництва, повязані з цією локалізацією" + +msgid "manager.languages.noneAvailable" +msgstr "" +"Вибачте, немає доступних додаткових мов. Напишіть адміністратору вашого " +"вебсайту, якщо хочете мати додаткові мови для цього е-видавництва." + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "Це буде мова за замовчуванням для вебсайту е-видавництва." + +msgid "manager.series.form.mustAllowPermission" +msgstr "" +"Будь ласка, переконайтеся, що обрано принаймні по одному прапорцю для " +"кожного призначення редактора серії." + +msgid "manager.series.form.reviewFormId" +msgstr "Будь ласка, переконайтеся, що Ви коректно обрали форму рецензування." + +msgid "manager.series.submissionIndexing" +msgstr "Не буде включено в індексування е-видавництва" + +msgid "manager.series.editorRestriction" +msgstr "Об'єкти можуть надсилатись лише редакторами та редакторами серії." + +msgid "manager.series.confirmDelete" +msgstr "Ви впевнені, що хочете назавжди видалити цю серію?" + +msgid "manager.series.indexed" +msgstr "Індексовано" + +msgid "manager.series.open" +msgstr "Відкрити подання" + +msgid "manager.series.readingTools" +msgstr "Інструменти для читання" + +msgid "manager.series.submissionReview" +msgstr "Не буде проходити експертне оцінювання" + +msgid "manager.series.submissionsToThisSection" +msgstr "Подання, зроблені до цієї серії" + +msgid "manager.series.abstractsNotRequired" +msgstr "Не вимагати анотації" + +msgid "manager.series.disableComments" +msgstr "Заблокувати можливість коментування для цієї серії." + +msgid "manager.series.book" +msgstr "Серія книг" + +msgid "manager.series.create" +msgstr "Створити серію" + +msgid "manager.series.policy" +msgstr "Опис серії" + +msgid "manager.series.assigned" +msgstr "Редактори для цієї серії" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" +"Додайте редактора серії з доступних редакторів серії. Після додавання " +"вкажіть, чи буде редактор серії переглядати РЕЦЕНЗІЇ (експертне оцінювання) " +"та/або РЕДАГУВАННЯ (літературну редактуру, верстку й коректуру) подань у цій " +"серії. Редактори серії створюються натисканням кнопки Редактори серії в розділі \"Ролі\" в \"Керуванні е-" +"видавництвом\"." + +msgid "manager.series.hideAbout" +msgstr "Пропустіть цю серію в розділі \"Про е-видавництво\"." + +msgid "manager.series.unassigned" +msgstr "Доступні редактори серії" + +msgid "manager.series.form.abbrevRequired" +msgstr "Необхідно вказати абревіатуру для серії." + +msgid "manager.series.form.titleRequired" +msgstr "Необхідно ввести назву для серії." + +msgid "manager.series.noneCreated" +msgstr "Жодної серії не створено." + +msgid "manager.series.existingUsers" +msgstr "Існуючі користувачі" + +msgid "manager.series.seriesTitle" +msgstr "Назва серії" + +msgid "manager.series.restricted" +msgstr "Не дозволяйте авторам подавати матеріали напряму до цієї серії." + +msgid "manager.payment.generalOptions" +msgstr "Загальні параметри" + +msgid "manager.payment.options.enablePayments" +msgstr "" +"Платежі будуть включені для цього е-видавництва. Зауважте, що користувачі " +"повинні увійти до системи, щоб здійснити платіж." + +msgid "manager.payment.success" +msgstr "Налаштування оплати оновлено." + +msgid "manager.settings" +msgstr "Налаштування" + +msgid "manager.settings.pressSettings" +msgstr "Налаштування е-видавництва" + +msgid "manager.settings.press" +msgstr "Е-видавництво" + +msgid "manager.settings.publisher.identity" +msgstr "Свідоцтво видавця" + +msgid "manager.settings.publisher.identity.description" +msgstr "" +"Ці поля необхідні, щоб опублікувати дійсні метадані ONIX." + +msgid "manager.settings.publisher" +msgstr "Ім'я видавця е-видавництва" + +msgid "manager.settings.location" +msgstr "Географічне місцезнаходження" + +msgid "manager.settings.publisherCode" +msgstr "Код видавця" + +msgid "manager.settings.publisherCodeType" +msgstr "Тип коду видавця" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "Цей тип коду видавця не є дійсним." + +msgid "manager.settings.distributionDescription" +msgstr "" +"Усі налаштування для процесу розповсюдження (повідомлення, индексація, " +"архівування, оплата, інструмени для читання)." + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "Завантаження файлів монографії" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "Перегляди анотації монографії" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "Анотація та завантаження монографії" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "Перегляди головної сторінки серії" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "Перегляди головної сторінки е-видавництва" + +msgid "manager.tools" +msgstr "Інструменти" + +msgid "manager.tools.importExport" +msgstr "" +"Усі налаштування для імпорту й експорту даних (видання, монографії, " +"користувачі)" + +msgid "manager.tools.statistics" +msgstr "" +"Інструменти для генерування звітів, пов'язаних зі статистикою використання " +"(перегляд сторінки индексу каталогу, перегляди сторінки анотації монографії, " +"завантаження файлів монографії)" + +msgid "manager.users.availableRoles" +msgstr "Доступні Ролі" + +msgid "manager.users.currentRoles" +msgstr "Поточні ролі" + +msgid "manager.users.selectRole" +msgstr "Обрати Роль" + +msgid "manager.people.allEnrolledUsers" +msgstr "Користувачі, які мають ролі в цьому е-видавництві" + +msgid "manager.people.allPresses" +msgstr "Усі е-видавництва" + +msgid "manager.people.allSiteUsers" +msgstr "Надати роль у цьому е-видавництві користувачу цього вебсайту" + +msgid "manager.people.allUsers" +msgstr "Усі користувачі, які мають ролі" + +msgid "manager.people.confirmRemove" +msgstr "" +"Видалити цього користувача з цього е-видавництва? Ця дія скасує всі " +"призначення користувача в межах цього е-видавництва." + +msgid "manager.people.enrollExistingUser" +msgstr "Надати нову роль існуючому користувачу" + +msgid "manager.people.enrollSyncPress" +msgstr "З е-видавництвом" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" +"Оберіть користувача, якого потрібно включити до облікового запису іншого " +"користувача (наприклад, якщо одна особа має два облікові записи). Перший " +"обраний обліковий запис буде видалений, а його подання, редакційні " +"призначення тощо будуть асоційовані з другим обраним обліковим записом." + +msgid "manager.people.mergeUsers.into.description" +msgstr "" +"Оберіть користувача, якому слід передати права попереднього користувача " +"(авторство, редакційні призначення тощо)." + +msgid "manager.people.syncUserDescription" +msgstr "" +"Синхронізація реєстрації зареєструє всіх користувачів, зареєстрованих у " +"певній ролі у певному е-видавництві, у такій же ролі в цьому е-видавництві. " +"Ця функція дає змогу синхронізувати загальний набір користувачів (наприклад, " +"рецензентів) між е-видавництвами." + +msgid "manager.people.confirmDisable" +msgstr "" +"Деактивувати цього користувача? Це зробить неможливим вхід користувача до " +"системи.\n" +"\n" +"Ви можете вказати користувачу причину деактивації його облікового запису." + +msgid "manager.people.noAdministrativeRights" +msgstr "" +"Вибачте, але ви не маєте прав для управління цим користувачем, з огляду на " +"те, що:\n" +"\t
              \n" +"\t
            • користувач є адміністратором вебсайту
            • \n" +"\t
            • користувач активований в е-видавництвах, якими ви не керуєте
            • \n" +"\t
            \n" +"\tЦе завдання може виконати адміністратор вебсайту.\n" +"\t" + +msgid "manager.system" +msgstr "Налаштування системи" + +msgid "manager.system.archiving" +msgstr "Архівування" + +msgid "manager.system.reviewForms" +msgstr "Форми рецензування" + +msgid "manager.system.readingTools" +msgstr "Інструменти для читання" + +msgid "manager.system.payments" +msgstr "Платежі" + +msgid "user.authorization.pluginLevel" +msgstr "У вас недостатньо прав для керування цим плагіном." + +msgid "manager.pressManagement" +msgstr "Керування е-видавництвом" + +msgid "manager.setup" +msgstr "Інсталяція" + +msgid "manager.setup.aboutItemContent" +msgstr "Контент" + +msgid "manager.setup.addAboutItem" +msgstr "Додати інформацію про" + +msgid "manager.setup.addChecklistItem" +msgstr "Додати пункт вимог" + +msgid "manager.setup.addItem" +msgstr "Додати матеріал" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "Додати матеріал, що з'явиться на сторіці \"Про е-видавництво\"" + +msgid "manager.setup.addNavItem" +msgstr "Додати матеріал" + +msgid "manager.setup.addSponsor" +msgstr "Додати організацію-спонсора" + +msgid "manager.setup.announcements" +msgstr "Оголошення" + +msgid "manager.setup.announcements.success" +msgstr "Налаштування оголошень оновлено." + +msgid "manager.setup.announcementsDescription" +msgstr "" +"Для інформування читачів про новини та події е-видавництва можна публікувати " +"оголошення. Опубліковані оголошення з'являтимуться на сторінці \"Оголошення\"" +"." + +msgid "manager.setup.announcementsIntroduction" +msgstr "Додаткова інформація" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" +"Введіть будь-яку додаткову інформацію, яка має бути показана читачам на " +"сторінці \"Оголошення\"." + +msgid "manager.setup.appearInAboutPress" +msgstr "(Для появи в розділі \"Про е-видавництво\") " + +msgid "manager.setup.contextAbout" +msgstr "Про е-видавництво" + +msgid "manager.setup.contextAbout.description" +msgstr "" +"Укажіть основні відомості про Ваше е-видавництво, що зацікавлять читачів, " +"авторів або рецензентів. Це можуть бути положення про відкритий доступ, " +"фокус і сфера е-видавництва, умови передачі авторських прав, інформація про " +"спонсорів, історія е-видавництва." + +msgid "manager.setup.contextSummary" +msgstr "Загальна інформація про е-видавництво" + +msgid "manager.setup.copyediting" +msgstr "Літературні редактори" + +msgid "manager.setup.copyeditInstructions" +msgstr "Інструкції з літературного редагування" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" +"Інструкції з літературного редагування будуть доступні літературним " +"редакторам, авторам і редакторам розділів на стадії редагування подання. " +"Нижче наведено набір інструкцій за замовчуванням у форматі HTML, який може " +"бути в будь-який момент змінений чи замінений менеджером е-видавництва (у " +"форматі HTML або звичайного тексту)." + +msgid "manager.setup.copyrightNotice" +msgstr "Інформація про авторське право" + +msgid "manager.setup.coverage" +msgstr "Охоплення" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "Максимальна довжина зображення обкладинки" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "Максимальна ширина зображення обкладинки" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" +"Зображення будуть зменшені, якщо вони є більшими за цей розмір, але ніколи " +"не будуть збільшені чи розтягнуті для підгонки згідно з цими розмірами." + +msgid "manager.setup.customizingTheLook" +msgstr "Крок 5. Налаштування вигляду й стилю" + +msgid "manager.setup.customTags" +msgstr "Користувацькі Теги" + +msgid "manager.setup.customTagsDescription" +msgstr "" +"Корстувацькі HTML-теги заголовків, які вставляються в заголовок кожної " +"сторінки (наприклад, теги META)." + +msgid "manager.setup.details" +msgstr "Подробиці" + +msgid "manager.setup.details.description" +msgstr "Назва е-видавництва, контакти, спонсори та пошукові системи." + +msgid "manager.setup.disableUserRegistration" +msgstr "" +"Менеджер е-видавництва реєструватиме всіх користувачів. Редактори чи " +"редактори розділів можуть реєструвати облікові записи користувачів для " +"рецензентів." + +msgid "manager.setup.discipline" +msgstr "Академічна дисципліна й розділи дисципліни" + +msgid "manager.setup.disciplineDescription" +msgstr "" +"Корисно, коли е-видавництво виходить за рамки однієї дисципліни та/або " +"автори подають міждисциплінарні матеріали." + +msgid "manager.setup.disciplineExamples" +msgstr "" +"(Наприклад, Історія; Освіта; Соціологія; Психологія; Культурологія; Право)" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" +"Наведіть приклади відповідних академічних дисциплін для цього е-видавництва" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "Додати зміст для поточної монографії (якщо це доступно)." + +msgid "manager.setup.displayOnHomepage" +msgstr "Контент головної сторінки" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "Показати рекомендовані книги на головній сторінці" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "Рекомендовані книги" + +msgid "manager.setup.displayInSpotlight" +msgstr "Показати книги в фокусі уваги на головній сторінці" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "Фокус уваги" + +msgid "manager.setup.displayNewReleases" +msgstr "Показати нові релізи на головній сторінці" + +msgid "manager.setup.displayNewReleases.label" +msgstr "Нові релізи" + +msgid "manager.setup.enableDois.description" +msgstr "" +"Дозволити, щоб Digital Object Identifiers (DOIs) було призначено твору, " +"опублікованому цим е-видавництвом." + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" +"Оберіть типи творів, що публікуються цим е-видавництвом, яким необхідно " +"призначати DOI. Більшість е-видавництв призначають DOI монографіям / главам, " +"але за бажанням можна призначати DOI усім публікованим матеріалам." + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" +"Використати шаблони за замовчуванням.
            %p.%m для монографій
            %p.%m.c" +"%c для глав
            %p.%m.%f для форматів публікацій
            %p.%m.%f.%s для " +"файлів." + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "Коли досягнуто стадію літературного редагування" + +msgid "manager.dois.formatIdentifier.file" +msgstr "Формат / {$format}" + +msgid "manager.setup.editorDecision" +msgstr "Рішення Редактора" + +msgid "manager.setup.emailBounceAddress" +msgstr "Адреса для помилок" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" +"У випадку проблем із доставкою листа електронною поштою повідомлення про " +"помилку буде направлено на цю адресу." + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" +"Щоб відправляти недоставлювані листи на адресу для помилок, адміністратор " +"вебсайту повинен включити параметр allow_envelope_sender у " +"файлі конфігурації сайту. Може знадобитися конфігурування сервера, як " +"описано в документації OMP." + +msgid "manager.setup.emails" +msgstr "Ідентифікація за адресою електронної пошти" + +msgid "manager.setup.emailSignature" +msgstr "Підпис" + +msgid "manager.setup.emailSignature.description" +msgstr "" +"До електронних листів, надісланих автоматично від імені е-видавництва, буде " +"додано такий підпис." + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "Включити оголошення" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" +"Для інформування читачів про новини та події можна публікувати оголошення. " +"Опубліковані оголошення з'являтимуться на сторінці \"Оголошення\"." + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "Показувати на головній сторінці" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" +"Як багато оголошень показувати на головній сторінці. Залиште це поле пустим, " +"щоб не показувати жодного." + +msgid "manager.setup.enablePressInstructions" +msgstr "Включити публічний показ цього е-видавництва на вебсайті" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" +"Для ідентифікації опублікованих матеріалів будуть використовуватися " +"користувацькі ідентифікатори." + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" +"Для ідентифікації гранок (наприклад, файлів HTML або PDF) опублікованих " +"матеріалів будуть використовуватися користувацькі ідентифікатори." + +msgid "manager.setup.enableUserRegistration" +msgstr "" +"Відвідувачі можуть зареєструвати обліковий запис користувача в е-видавництві." + +msgid "manager.setup.focusAndScope" +msgstr "Фокус і сфера е-видавництва" + +msgid "manager.setup.focusAndScope.description" +msgstr "" +"Опишіть для авторів, читачів і бібліотек проблематику монографій та інших " +"матеріалів, які буде публікувати е-видавництво." + +msgid "manager.setup.focusScope" +msgstr "Фокус і сфера" + +msgid "manager.setup.focusScopeDescription" +msgstr "ПРИКЛАД даних HTML" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "Для авторів щодо індексації їхнього твору" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" +"OMP підтримує Протокол для збору метаданих Open Archives Initiative, який стає стандартом " +"для забезпечення добре індексовуваного доступу до електронних дослідницьких " +"ресурсів у світовому масштабі. Автори будуть використовувати аналогічний " +"шаблон для надання метаданих про їхнє подання. Менеджер е-видавництва має " +"вибрати категорії для індексування і надати авторам відповідні приклади, аби " +"допомогти в індексуванні їхніх творів, розділяючи їх крапкою з комою (" +"наприклад, термін1; термін2). Записи мають бути представлені як приклади, " +"використовуючи \"Напр.,\" або \"Наприклад,\"." + +msgid "manager.setup.form.contactEmailRequired" +msgstr "Вимагається адреса електронної пошти головної контактної особи." + +msgid "manager.setup.form.contactNameRequired" +msgstr "Вимагається ім'я головної контактної особи." + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "Вимагається вказати кількість рецензентів для кожного подання." + +msgid "manager.setup.form.supportEmailRequired" +msgstr "Вимагається вказати електронну пошту підтримки." + +msgid "manager.setup.form.supportNameRequired" +msgstr "Вимагається вказати ім'я особи з підтримки." + +msgid "manager.setup.generalInformation" +msgstr "Загальна інформація" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "Крок 1. Ознайомлення з деталями" + +msgid "manager.setup.guidelines" +msgstr "Настанови" + +msgid "manager.setup.preparingWorkflow" +msgstr "Крок 3. Підготовка робочого процесу" + +msgid "manager.setup.identity" +msgstr "Свідоцтво е-видавництва" + +msgid "manager.setup.information" +msgstr "Інформація" + +msgid "manager.setup.information.description" +msgstr "" +"Стислі описи е-видавництва для бібліотекарів, потенційних авторів і читачів. " +"Вони будуть доступними в бічній панелі вебсайту, коли буде додано блок " +"\"Інформація\"." + +msgid "manager.setup.information.forAuthors" +msgstr "Для авторів" + +msgid "manager.setup.information.forLibrarians" +msgstr "Для бібліотекарів" + +msgid "manager.setup.information.forReaders" +msgstr "Для читачів" + +msgid "manager.setup.information.success" +msgstr "Інформацію для цього е-видавництва було оновлено." + +msgid "manager.setup.institution" +msgstr "Установа" + +msgid "manager.setup.itemsPerPage" +msgstr "Елементів на сторінці" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" +"Обмежте кількість елементів (наприклад, подань, користувачів або редакційних " +"призначень) для показу в списку перед показуванням наступних елементів на " +"іншій сторінці." + +msgid "manager.setup.keyInfo" +msgstr "Ключова інформація" + +msgid "manager.setup.keyInfo.description" +msgstr "" +"Додайте стислий опис Вашого е-видавництва і вкажіть редакторів, керуючих " +"директорів та інших членів Вашої редакції." + +msgid "manager.setup.labelName" +msgstr "Назва мітки" + +msgid "manager.setup.layoutAndGalleys" +msgstr "Верстальники" + +msgid "manager.setup.layoutInstructions" +msgstr "Інструкції з верстання" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" +"Інструкції з верстання можуть бути підготовлені для форматування елементів " +"публікації в е-видавництві і введені нижче в HTML чи звичайним текстом. Вони " +"будуть доступні верстальнику й редактору розділів на сторінці редагування " +"кожного подання. (Оскільки кожне е-видавництво може використовувати власні " +"формати файлів, бібліографічні стандарти, таблиці стилів тощо, набір " +"інструкцій за замовчуванням не надається.)" + +msgid "manager.setup.layoutTemplates" +msgstr "Шаблони верстки" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" +"У розділ \"Верстка\" може бути вивантажено шаблони для кожного зі " +"стандартних форматів, що публікуються в е-видавництві (наприклад, " +"монографії, книжкового огляду тощо), з використанням будь-якого формату " +"файлу (наприклад, pdf, doc тощо), з додаванням анотацій і вказівкою шрифта, " +"розміру, полів тощо, щоб слугувати керівництвом для верстальників і " +"коректорів." + +msgid "manager.setup.layoutTemplates.file" +msgstr "Файл шаблону" + +msgid "manager.setup.layoutTemplates.title" +msgstr "Назва" + +msgid "manager.setup.lists" +msgstr "Списки" + +msgid "manager.setup.lists.success" +msgstr "Налаштування списку було оновлено." + +msgid "manager.setup.look" +msgstr "Вигляд і стиль" + +msgid "manager.setup.look.description" +msgstr "" +"Заголовок головної сторінки, контент, заголовок е-видавництва, підвал, " +"панель навігації та таблиця стилів." + +msgid "manager.setup.settings" +msgstr "Налаштування" + +msgid "manager.setup.management.description" +msgstr "" +"Доступ і безпека, планування, оголошення, літературна редактура, верстка й " +"коректура." + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "Управління основними редакційними кроками" + +msgid "manager.setup.managingPublishingSetup" +msgstr "Налаштування процесів управління та опублікування" + +msgid "manager.setup.managingThePress" +msgstr "Крок 4. Керування налаштуваннями" + +msgid "manager.setup.masthead.success" +msgstr "Вихідні дані цього е-видавницва було оновлено." + +msgid "manager.setup.noImageFileUploaded" +msgstr "Файл зображення не вивантажено." + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "Таблицю стилів не вивантажено." + +msgid "manager.setup.note" +msgstr "Примітка" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" +"Під час використання електронної пошти для повідомлень включіть адреси всіх " +"співавторів багатоавторського подання, а не тільки користувача, який робить " +"подання." + +msgid "manager.setup.noUseCopyeditors" +msgstr "" +"Літературне редагування буде здійснено редактором або редактором розділу, " +"призначеним для цього подання." + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" +"Редактор або редактор розділу, призначений для цього подання, підготує HTML, " +"PDF або інші файли." + +msgid "manager.setup.noUseProofreaders" +msgstr "" +"Редактор або редактор розділу, пов'язаний із цим поданням, перевірить гранки." + +msgid "manager.setup.numPageLinks" +msgstr "Покликання на сторінку" + +msgid "manager.setup.numPageLinks.description" +msgstr "" +"Обмежте кількість покликань для показу на наступних сторінках у списку." + +msgid "manager.setup.onlineAccessManagement" +msgstr "Доступ до контенту е-видавництва" + +msgid "manager.setup.onlineIssn" +msgstr "ISSN (online)" + +msgid "manager.setup.policies" +msgstr "Політика" + +msgid "manager.setup.policies.description" +msgstr "" +"Фокус, експертне оцінювання, розділи, конфіденційність, безпека й додаткова " +"інформація про елементи." + +msgid "manager.setup.privacyStatement.success" +msgstr "Заяву про конфіденційність було оновлено." + +msgid "manager.setup.appearanceDescription" +msgstr "" +"Із цієї сторінки можна сконфігурувати різні компоненти зовнішнього вигляду е-" +"видавництва, включно з елементами заголовка й нижнього підвалу, стилем і " +"темою, а також те, як користувачам представляються списки інформації." + +msgid "manager.setup.pressDescription" +msgstr "Загальна інформація про е-видавництво" + +msgid "manager.setup.pressDescription.description" +msgstr "Стислий опис Вашого е-видавництва." + +msgid "manager.setup.aboutPress" +msgstr "Про е-видавництво" + +msgid "manager.setup.aboutPress.description" +msgstr "" +"Включіть будь-яку інформацію про Ваше е-видавництво, яка може бути цікавою " +"читатчам, авторам або рецензентам. Сюди може входити Ваша політика " +"відкритого доступу, фокус і сфера е-видавництва, інформація про авторське " +"право, розкриття інформації про спонсорство, історія е-видавництва і заява " +"про конфіденційність." + +msgid "manager.setup.pressArchiving" +msgstr "Архівування е-видавництва" + +msgid "manager.setup.homepageContent" +msgstr "Контент головної сторінки е-видавництва" + +msgid "manager.setup.homepageContentDescription" +msgstr "" +"Головна сторінка е-видавництва складається з навігаційних покликань за " +"замовчуванням. Додаткової вміст домашньої сторінки може бути доповнено за " +"допомогою однієї чи всіх таких опцій, які з'являться на сторінці в " +"показаному порядку." + +msgid "manager.setup.pressHomepageContent" +msgstr "Контент головної сторінки е-видавництва" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" +"Головна сторінка е-видавництва складається з навігаційних покликань за " +"замовчуванням. Додаткової вміст домашньої сторінки може бути доповнено за " +"допомогою однієї чи всіх таких опцій, які з'являться на сторінці в " +"показаному порядку." + +msgid "manager.setup.contextInitials" +msgstr "Абревіатура назви е-видавництва" + +msgid "manager.setup.selectCountry" +msgstr "" +"Виберіть країну, де розташоване це е-видавництво, або країну адреси для " +"листування е-видавництва чи видавця." + +msgid "manager.setup.layout" +msgstr "Макет е-видавництва" + +msgid "manager.setup.pageHeader" +msgstr "Заголовок сторінки е-видавництва" + +msgid "manager.setup.pageHeaderDescription" +msgstr "Опис заголовка сторінки" + +msgid "manager.setup.pressPolicies" +msgstr "Крок 2. Політика е-видавництва" + +msgid "manager.setup.pressSetup" +msgstr "Налаштування е-видавництва" + +msgid "manager.setup.pressSetupUpdated" +msgstr "Налаштування Вашого е-видавництва оновлено." + +msgid "manager.setup.styleSheetInvalid" +msgstr "Неправильний формат листка стилів. Прийнятним форматом є .css." + +msgid "manager.setup.pressTheme" +msgstr "Тема оформлення е-видавництва" + +msgid "manager.setup.pressThumbnail" +msgstr "Мініатюра е-видавництва" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" +"Маленький логотип або репрезентація е-видавництва, які можуть бути " +"використані у списку е-видавництв." + +msgid "manager.setup.contextTitle" +msgstr "Назва е-видавництва" + +msgid "manager.setup.printIssn" +msgstr "ISSN (print )" + +msgid "manager.setup.proofingInstructions" +msgstr "Інструкції з коректури" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" +"Інструкції з коректури будуть доступними коректорам, авторам, верстальникам " +"і редакторам розділів на стадії редагування поданих матеріалів. Нижче " +"наведено набір інструкцій за замовчуванням у форматі HTML, який може бути в " +"будь-який момент змінений або заменений менеджером е-видавництва (у форматі " +"HTML або звичайного тексту)." + +msgid "manager.setup.proofreading" +msgstr "Коректори" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "Надати інструкції верстальникам." + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" +"Елементи е-видавництва можуть публікуватися разом, як частина монографії зі " +"своїм змістом. Як альтернатива, окремі матеріали можуть публікуватися в міру " +"готовності, додаючись у зміст \"поточного\" тому. Опишіть читачам (на " +"сторінці \"Про е-видавництво\") систему публікації, яку використовує це е-" +"видавництво, і очікувану періодичність публікації." + +msgid "manager.setup.publisher" +msgstr "Видавець" + +msgid "manager.setup.publisherDescription" +msgstr "" +"Назва видавничої організації з'явиться в розділі \"Про е-видавництво\"." + +msgid "manager.setup.referenceLinking" +msgstr "Покликання в посиланнях" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "Інструкції з верстки для покликань у посиланнях" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" +"Користувачі мають бути зареєстрованими та увійти, щоб переглядати контент " +"відкритого доступу." + +msgid "manager.setup.restrictSiteAccess" +msgstr "" +"Користувачі мають бути зареєстрованими та увійти, щоб переглядати вебсайт " +"е-видавництва." + +msgid "manager.setup.reviewGuidelines" +msgstr "Настанови із зовнішнього рецензування" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" +"Надати зовнішнім рецензентам критерії оцінювання придатності для " +"опублікування в е-видавництві, які можуть включати інструкції щодо " +"подготовки ефективної і корисної рецензії. Рецензенти матимуть можливість " +"надавати коментарі, призначені для автора й редактора, а також окремі " +"коментарі тільки для редактора." + +msgid "manager.setup.internalReviewGuidelines" +msgstr "Настанови із внутрішнього рецензування" + +msgid "manager.setup.reviewOptions" +msgstr "Параметри рецензування" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "Автоматичні нагадувачі електронною поштою" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" +"Щоб активувати ці параметри, адміністратор вебсайту повинен включити в " +"конфігураційному файлі OMP опцію scheduled_tasks. Для підтримки " +"цієї функціональності може знадобитися додаткове конфігурування сервера (що " +"может бути неможливим на всіх серверах), як указано в документації OMP." + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" +"Редактори будуть оцінювати рецензентів за п'ятибальною шкалою якості після " +"кожної рецензії." + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "Обмежити доступ до файлу" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" +"Рецензенти матимуть доступ до файлу подання лише після того, як погодяться " +"на його рецензування." + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "Доступ рецензента" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "Прямий доступ для рецензента" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" +"Рецензентам може бути направлено безпекове покликання в листі-запрошенні, за " +"якимй можна отримати доступ до рецензування без входу в систему. Для доступу " +"до інших сторінок потрібно увійти в систему." + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "Додати безпекове покликання у лист-запрошення до рецензентів." + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "Рейтинги рецензента" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "Нагадувачі для рецензента" + +msgid "manager.setup.reviewPolicy" +msgstr "Політика рецензування" + +msgid "manager.setup.searchDescription.description" +msgstr "" +"Введіть стислий (50-300 знаків) опис е-видавництва, який відображатимуть " +"пошукові системи при показі е-видавництва в результатах пошуку." + +msgid "manager.setup.searchEngineIndexing" +msgstr "Індексація для пошуку" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" +"Допоможіть пошуковим системам на зразок Google знаходити й показувати ваш " +"вебсайт. Рекомендується представити карту вашого вебсайту." + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "Налаштування індексації для пошукових систем було оновлено." + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "Розділи і редактори розділів" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" +"(Якщо розділи не додано, то всі матеріали за замовчуванням направляються в " +"розділ \"Монографії\".)" + +msgid "manager.setup.sectionsDescription" +msgstr "" +"Для створення чи змінення розділів t-видавництва (наприклад, \"Монографії\", " +"\"Огляди книг\" тощо) перейдіть до \"Керування розділами\".

            Автори під час відправки матеріалів зможуть вибрати…" + +msgid "manager.setup.securitySettings" +msgstr "Налаштування доступу й безпеки" + +msgid "manager.setup.securitySettings.note" +msgstr "" +"Інші параметри, пов'язані з безпекою та доступом, можуть бути налаштовані зі " +"сторінки .\"Доступ і безпека\"." + +msgid "manager.setup.selectEditorDescription" +msgstr "" +"Редактор е-видавництва, який буде наглядати за матеріалом у редакційному " +"процесі." + +msgid "manager.setup.selectSectionDescription" +msgstr "Серія е-видавництва, для якої буде розглядатися цей матеріал." + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" +"Завжди показувати посилання на гранки й повідомляти про обмежений доступ." + +msgid "manager.setup.siteAccess.view" +msgstr "Доступ до вебсайту" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "Переглянути контент монографії" + +msgid "manager.setup.stepsToPressSite" +msgstr "П'ять кроків до вебсайту е-видавництва" + +msgid "manager.setup.subjectExamples" +msgstr "" +"(Наприклад, Фотосинтез; Чорні дири; Проблема чотирьох фарб; Баєсівська " +"теорія)" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "Ключові слова" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" +"Надайте приклади ключових слів або тем, на які можуть орієнтуватися автори" + +msgid "manager.setup.submissionGuidelines" +msgstr "Настанови з подання" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "Вимагається елемент контрольного списку." + +msgid "manager.setup.workflow" +msgstr "Робочий процес" + +msgid "manager.setup.submissions.description" +msgstr "" +"Настанови для авторів, авторське право та індексація (включно з реєстрацією)." + +msgid "manager.setup.typeExamples" +msgstr "" +"(Наприклад, Історичне дослідження; Квазіекспериментальний; Літературний " +"аналіз; Опитування/Інтерв'ю)" + +msgid "manager.setup.typeMethodApproach" +msgstr "Тип (метод / підхід)" + +msgid "manager.setup.typeProvideExamples" +msgstr "" +"Наведіть приклади відповідних типів досліджень, методів і підходів для цього " +"поля" + +msgid "manager.setup.useCopyeditors" +msgstr "Для роботи з кожним поданням буде призначено літературного редактора." + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "" +"Е-видавництвом буде залучена редакційна колегія чи колегія рецензентів." + +msgid "manager.setup.useImageTitle" +msgstr "Зображення назви" + +msgid "manager.setup.useStyleSheet" +msgstr "Таблиця стилів е-видавництва" + +msgid "manager.setup.useLayoutEditors" +msgstr "" +"Для підготовки HTML, PDF та ін. файлів електронної публікації буде " +"призначений верстальник." + +msgid "manager.setup.useProofreaders" +msgstr "" +"Для перевірки (спільно з авторами) гранок перед опублікуванням буде " +"призначено коректора." + +msgid "manager.setup.userRegistration" +msgstr "Реєстрація користувача" + +msgid "manager.setup.useTextTitle" +msgstr "Текст назви" + +msgid "manager.setup.volumePerYear" +msgstr "Томів на рік" + +msgid "manager.setup.publicationFormat.code" +msgstr "Формат" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "Має бути обрано формат." + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "Ви повинні призначити ім'я цьому формату." + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "Це фізичний (нецифровий) формат?" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" +"Оскільки цей формат публікації наразі використовується монографією у вашому " +"видавництві, його не можна видалити." + +msgid "manager.setup.newPublicationFormat" +msgstr "Новий формат публікації" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" +"Аби створити новий формат публікації, заповніть форму нижче й натисніть " +"кнопку \"Створити\"." + +msgid "manager.setup.genresDescription" +msgstr "" +"Ці жанри використовуються для йменування файлів і представлені в випадаючому " +"меню при вивантаженні файлів. Жанри, позначені ##, дозволяють користувачу " +"пов'язати файл або з усією книгою 99Z, або з окремою главою за номером (" +"наприклад, 02)." + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" +"Це е-видавництво в цей час не приймає подання. Зайдіть у налаштування " +"робочого процесу, щоб дозволити відправку матеріалів." + +msgid "manager.setup.disableSubmissions.description" +msgstr "" +"Заборонити користувачам відправляти нові подання в е-видавництво. Відправка " +"матеріалів може бути відключена для окремих серій е-видавництва на сторінці " +"налаштувань серій е-видавництва." + +msgid "manager.setup.genres" +msgstr "Жанри" + +msgid "manager.setup.newGenre" +msgstr "Новий жанр монографій" + +msgid "manager.setup.newGenreDescription" +msgstr "" +"Аби створити новий жанр, заповніть форму нижче й натисніть кнопку \"Створити" +"\"." + +msgid "manager.setup.deleteSelected" +msgstr "Видалити вибране" + +msgid "manager.setup.restoreDefaults" +msgstr "Відновити налаштування за замовчуванням" + +msgid "manager.setup.prospectus" +msgstr "Керівництво з проспекту" + +msgid "manager.setup.prospectusDescription" +msgstr "" +"Керівництво з проспекту – це підготовлений е-видавництвом документ, який " +"допомагає автору описати представлені матеріали таким чином, щоб е-" +"видавництво мало змогу визначити їхню цінність. Проспект може включати " +"багато питань – від маркетингових можливостей до теоретичної цінності; у " +"будь-якому разі е-видавництво має створити керівництво з проспекту, яке " +"доповнить його видавничу програму." + +msgid "manager.setup.submitToCategories" +msgstr "Дозволити подання в категорії" + +msgid "manager.setup.submitToSeries" +msgstr "Дозволити подання в серії" + +msgid "manager.setup.issnDescription" +msgstr "" +"ISSN (International Standard Serial Number – міжнародний стандартний " +"серійний номер) – це восьмизначний номер, який ідентифікує періодичні " +"публікації включно з електронними серійними виданнями. Номер можна отримати " +"в Міжнародному центрі " +"ISSN." + +msgid "manager.setup.currentFormats" +msgstr "Поточні формати" + +msgid "manager.setup.categoriesAndSeries" +msgstr "Категорії та серії" + +msgid "manager.setup.categories.description" +msgstr "" +"Ви можете створити список категорій, які допоможуть організувати Ваші " +"публікації. Категорії являють собою групування книг за тематикою, наприклад, " +"\"Економіка\", \"Література\", \"Поезія\" і так далі. Категорії можуть бути " +"вкладені в \"материнські\" категорії: наприклад, материнська категорія " +"\"Економіка\" може охоплювати окремі категорії \"Мікроекономіка\" й " +"\"Макроекономіка\". Відвідувачі зможуть здійснювати пошук в е-видавництві за " +"категоріями." + +msgid "manager.setup.series.description" +msgstr "" +"Ви можете створити будь-яку кількість серій, аби допомогти в організації " +"Ваших публікацій. Серія являє собою спеціальний набір книг, що стосуються " +"тематики або тем, які хтось запропонував, зазвичай один або два викладачі, а " +"потім курирує. Відвідувачі зможуть шукати й переглядати е-видавництво за " +"серіями." + +msgid "manager.setup.reviewForms" +msgstr "Форми рецензій" + +msgid "manager.setup.roleType" +msgstr "Тип ролі" + +msgid "manager.setup.authorRoles" +msgstr "Ролі автора" + +msgid "manager.setup.managerialRoles" +msgstr "Ролі управлінців" + +msgid "manager.setup.availableRoles" +msgstr "Доступні ролі" + +msgid "manager.setup.currentRoles" +msgstr "Поточні ролі" + +msgid "manager.setup.internalReviewRoles" +msgstr "Ролі для внутрішнього рецензування" + +msgid "manager.setup.masthead" +msgstr "Вихідні дані" + +msgid "manager.setup.editorialTeam" +msgstr "Редакція" + +msgid "manager.setup.editorialTeam.description" +msgstr "" +"Список редакторів, керуючих директорів та інших осіб, пов'язаних з е-" +"видавництвом." + +msgid "manager.setup.files" +msgstr "Файли" + +msgid "manager.setup.productionTemplates" +msgstr "Виробничі шаблони" + +msgid "manager.files.note" +msgstr "" +"Примітка: файловий менеджер – це додаткова функція, яка дає змогу напряму " +"переглядати й оперувати файлами та каталогами, пов'язаними із цим " +"е-видавництвом." + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" +"

            Пропоновані Creative Commons повідомлення про авторські права

            \n" +"

            Пропонована політика для видавництв, що провадять відкритий доступ

            ." +"\n" +"Автори, які публікуються в цьому е-видавництві, погоджуються з такими " +"умовами:\n" +"
              \n" +"\t
            1. Автори зберігають авторські права й надають право першої публікації " +"твору з одночасною ліцензією на умовах Ліцензії Creative Commons " +"\"Зазначення авторства міжнародна\", яка дозволяє іншим після початкової " +"публікації в цьому е-видавництві: •\tпоширювати – копіювати і " +"розповсюджувати матеріал у будь-якому вигляді чи форматі; •\tзмінювати – " +"реміксувати, трансформувати і брати матеріал за основу для будь-яких цілей, " +"навіть комерційних, – на таких умовах: •\tзазначення авторства – Ви маєте " +"вказати автора, розмістити посилання на ліцензію та вказати, чи було внесено " +"зміни до твору. Ви можете зробити це у будь-який розумний спосіб, але так, " +"щоб не створювати враження стосовно того, що ліцензіар підтримує чи схвалює " +"Вас або Ваше використання твору; •\tбез додаткових обмежень – Ви не можете " +"висувати додаткові умови або застосовувати технологічні засоби захисту, що " +"обмежують права інших на дії, дозволені ліцензією.
            2. .\n" +"\t
            3. Автори мають можливість укладати окремі додаткові серії договорів для " +"неексклюзивного розповсюдження версії твору, опублікованої в е-видавництві (" +"наприклад, розміщати його в інституційному репозитарії чи публікувати в " +"книзі), з підтвердженням його первинної публікації в цьому " +"е-видавництві.
            4. .\n" +"\t
            5. Авторам дозволяється і рекомендується розміщати свій твір в інтернеті (" +"наприклад, в інституційних репозитаріях або на їхньому вебсайті) до і під " +"час процесу подання, оскільки це може викликати продуктивний обмін, а також " +"більш раннє і широке цитування опублікованих творів (див. The Effect of Open Access…).
            6. .\n" +"
            \n" +"\n" +"

            Пропонована політика для е-видавництв, що провадять відкладений " +"відкритий доступ

            .\n" +"Автори, які публікуються в цьому е-видавництві, погоджуються з такими " +"умовами:\n" +"
              \n" +"\t
            1. Автори зберігають авторські права й надають е-видавництву право першої " +"публікації, при цьому твір протягом [SPECIFY PERIOD OF TIME] після " +"опублікування водночас ліцензується за умовами Ліцензії Creative " +"Commons \"Зазначення авторства міжнародна\", яка дозволяє іншим після " +"початкової публікації в цьому е-видавництві: •\tпоширювати – копіювати і " +"розповсюджувати матеріал у будь-якому вигляді чи форматі; •\tзмінювати – " +"реміксувати, трансформувати і брати матеріал за основу для будь-яких цілей, " +"навіть комерційних, – на таких умовах: •\tзазначення авторства – Ви маєте " +"вказати автора, розмістити посилання на ліцензію та вказати, чи було внесено " +"зміни до твору. Ви можете зробити це у будь-який розумний спосіб, але так, " +"щоб не створювати враження стосовно того, що ліцензіар підтримує чи схвалює " +"Вас або Ваше використання твору; •\tбез додаткових обмежень – Ви не можете " +"висувати додаткові умови або застосовувати технологічні засоби захисту, що " +"обмежують права інших на дії, дозволені ліцензією.
            2. .\n" +"\t
            3. Автори мають можливість укладати окремі додаткові серії договорів для " +"неексклюзивного розповсюдження версії твору, опублікованої в е-видавництві (" +"наприклад, розміщати її в інституційному репозитарії чи публікувати в книзі)" +", з підтвердженням його первинної публікації в цьому е-видавництві.
            4. .\n" +"\t
            5. Авторам дозволяється і рекомендується розміщати свій твір в інтернеті " +"(наприклад, в інституційних репозитаріях або на їхньому вебсайті) до і під " +"час процесу подання, оскільки це може викликати продуктивний обмін, а також " +"більш раннє і широке цитування опублікованих творів (див. The Effect of Open Access…).
            6. .\n" +"
            " + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" +"Кроки: Черга подань > Реценування подання > Редагування подання > " +"Зміст.

            \n" +"Виберіть модель для керування цими аспектами редакційного процесу. (Для " +"визначення керуючого редактора й редакторів серій перейдіть у підрозділ " +"\"Редактори\" розділу \"Керування е-видавництвом\".)" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" +"

            Щоб надати можливість читачам знайти онлайнові версії твору, цитованого " +"автором, доступні такі опції.

            .\n" +"\n" +"
              \n" +"\t
            1. Додати інструмент для читання

              Менеджер е-" +"видавництва може додати \"Пошук посилань\" до інструментів для читання, які " +"супроводжують опубликовані матеріали, що дозволяє читачам вставляти " +"заголовок посилання і потім здійснювати пошук у попередньо вибраних наукових " +"базах даних для цитованого твору.

            2. .\n" +"\t
            3. Вбудовані покликання в посиланнях

              Верстальник може " +"додати покликання на посилання, які можна знайти в інтернеті, використовуючи " +"наступні інструкції (які можна редагувати).

            4. .\n" +"
            " + +msgid "manager.publication.library" +msgstr "Бібліотека е-видавництва" + +msgid "manager.setup.resetPermissions" +msgstr "Скинути дозволи для монографії" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" +"Ви впевнені, що бажаєте скинути дані дозволів, уже прикріплених до " +"монографій?" + +msgid "manager.setup.resetPermissions.description" +msgstr "" +"Заява про авторське право й інформація про ліцензію будуть постійно доданими " +"до публікованого контенту з гарантією, що ці дані не зміняться в разі зміни " +"політики е-видавництва стосовно нових матеріалів. Для скидання збереженої " +"інформації про дозволи, уже прикріпленої до опублікованого контенту, " +"скористайтеся кнопкою, розташованою нижче." + +msgid "manager.setup.resetPermissions.success" +msgstr "Дозволи для монографії було успішно скинуто." + +msgid "grid.genres.title.short" +msgstr "Компоненти" + +msgid "grid.genres.title" +msgstr "Компоненти монографії" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" +"Надіслати копію головній контактній особі, вказаній у налаштуваннях е-" +"видавництва." + +msgid "grid.series.pathAlphaNumeric" +msgstr "Шлях до серії повинен складатися тільки з букв і цифр." + +msgid "grid.series.pathExists" +msgstr "Шлях до серії вже існує. Будь ласка, введіть унікальний шлях." + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "Вибрати серію" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" +"Будь ласка, виберіть серію, на яку ви хочете послатися в цьому пункті меню." + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "Виберіть категорію" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" +"Будь ласка, виберіть категорію, на яку ви хочете послатися в цьому пункті " +"меню." + +msgid "grid.series.urlWillBe" +msgstr "Адресою URL серії буде: {$sampleUrl}" + +msgid "stats.contextStats" +msgstr "Статистика е-видавництва" + +msgid "stats.context.tooltip.text" +msgstr "" +"Кількість відвідувачів, які переглядають головну сторінку е-видавництва й " +"каталогу." + +msgid "stats.context.tooltip.label" +msgstr "Про статистику е-видавництва" + +msgid "stats.context.downloadReport.description" +msgstr "" +"Завантажити електронну таблицю CSV/Excel зі статистикою використання для " +"цього е-видавництва, яка відповідає таким параметрам." + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "Кількість переглядів головної сторінки е-видавництва й каталогу." + +msgid "stats.context.downloadReport.downloadContext" +msgstr "Завантажити Е-видавництво" + +msgid "stats.publications.downloadReport.description" +msgstr "" +"Завантажте електронну таблицю CSV/Excel зі статистикою використання для " +"монографій, що відповідають наступним параметрам." + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "Завантажити монографії" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" +"Кількість переглядів анотацій і завантажень файлів для кожної монографії." + +msgid "stats.publicationStats" +msgstr "Статистика монографії" + +msgid "stats.publications.details" +msgstr "Подробиці монографії" + +msgid "stats.publications.none" +msgstr "" +"Не знайдено монографій зі статистикою використання, що відповідають цим " +"параметрам." + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "Загальна кількість переглядів каталогу за датою" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "Загальна кількість переглядів файлу за датою" + +msgid "stats.publications.countOfTotal" +msgstr "{$count} з {$total} монографій" + +msgid "stats.publications.abstracts" +msgstr "Записи каталогу" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "Немає вибраних об'єктів." + +msgid "plugins.importexport.common.error.validation" +msgstr "Не вдалося перетворити виділені об'єкти." + +msgid "plugins.importexport.common.invalidXML" +msgstr "Неправильний XML:" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "Експортувати подання" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" +"Надіслати головній контактній особі цього е-видавництва копію електронного " +"листа з підтвердженням подання." + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" +"Для цього е-видавництва не визначено жодної головної контактної особи. Можна " +"ввести головну контактну особу в налаштуваннях е-" +"видавництва." + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "Не вдалося знайти вказані об'єкти." + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "Указаний користувач, \"{$userName}\", не існує." + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "Не вдалося проаналізувати формати публікацій" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "Не вдалося проаналізувати глави" + +msgid "emailTemplate.variable.context.contextName" +msgstr "Назва е-видавництва" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "Адреса URL домашньої сторінки е-видавництва" + +msgid "emailTemplate.variable.context.contactName" +msgstr "Ім'я головної контактної особи е-видавництва" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "Підпис електронних листів е-видавництва для автоматизованих листів" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "Адреса електронної пошти головної контактної особи е-видавництва" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "Назва виду платежу" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "Сума платежу" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "Валюта суми платежу, наприклад долар США" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "Назва вебсайту, де розміщено кілька е-видавництв" + +msgid "mailable.validateEmailContext.name" +msgstr "Підтвердити електронну пошту (реєстрація е-видавництва)" + +msgid "mailable.validateEmailContext.description" +msgstr "" +"Цей електронний лист автоматично надсилається новому користувачу, коли вони " +"реєструються у е-видавництві, якщо налаштування вимагають перевірки адреси " +"електронної пошти." + +msgid "doi.displayName" +msgstr "DOI" + +msgid "doi.manager.displayName" +msgstr "Кілька DOI" + +msgid "doi.description" +msgstr "" +"Цей плагін активує призначення Digital Object Identifiers для монографій, " +"глав, форматів публікацій і файлів в OMP." + +msgid "doi.readerDisplayName" +msgstr "DOI:" + +msgid "doi.manager.settings.description" +msgstr "Налаштуйте плагін DOI, щоб мати можливість користуватись DOI в OMP:" + +msgid "doi.manager.settings.explainDois" +msgstr "" +"Оберіть видавничі об'єкти, які отримають Digital Object Identifiers (DOI):" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "Монографії" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "Глави" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "Формати публікацій" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "Файли" + +msgid "doi.manager.settings.doiPrefix" +msgstr "Префікс DOI" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "Префікс DOI є обов'язковим і має мати значення у форматі 10.xxxx." + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" +"Введіть користувацький шаблон суфікса для кожного типу публікації. " +"Користувацький шаблон суфікса може використовувати такі символи для " +"утворення суфікса:

            %p Абревіатура е-видавництва
            " +"%m ID монографії
            %c ID глави
            %f ID формату публікації
            %s ID файлу
            %x " +"Користувацький ідентифікатор

            Майте на увазі, що користувацькі " +"шаблони суфіксів часто призводять до проблем зі створенням і розміщенням " +"DOI. Використовуючи користувацький шаблон суфіксів, ретельно перевірте, чи " +"можуть редактори генерувати DOI, і передайте їх до реєстраційного агентства, " +"такого як Crossref. " + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" +"Наприклад, press%ppub%r створить DOI з значенням - 10.1234/pressESPpub100" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "для монографій" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "для глав" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "для форматів публікацій" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "для файлів" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "Введіть шаблон суфікса DOI для монографій." + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "Введіть шаблон суфікса DOI для глав." + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "Введіть шаблон суфікса DOI для форматів публікацій." + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "Введіть шаблон суфікса DOI для файлів." + +msgid "doi.manager.settings.doiReassign" +msgstr "Перепризначити DOI" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" +"Якщо ви зміните свою DOI-конфігурацію, то вона не стосуватиметься DOI, які " +"вже було призначено. Після збереження конфігурації DOI використовуйте цю " +"кнопку, щоб видалити всі наявні DOI для того, аби нові налаштування вплинули " +"на об'єкти, які снують." + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "Ви впевнені, що бажаєте видалити всі наявні DOI?" + +msgid "doi.editor.doi" +msgstr "DOI" + +msgid "doi.editor.doi.description" +msgstr "DOI має починатися з {$prefix}." + +msgid "doi.editor.doi.assignDoi" +msgstr "Призначити" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "монографія" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "глава" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "вид видання" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "файл" + +msgid "doi.editor.customSuffixMissing" +msgstr "" +"DOI не може бути призначено, через відсутність користувацького суфікса." + +msgid "doi.editor.missingParts" +msgstr "" +"Неможливо згенерувати DOI, оскільки одна або більше частин шаблону DOI " +"відсутні." + +msgid "doi.editor.patternNotResolved" +msgstr "Не можна призначити DOI, оскільки він містить не замінений шаблон." + +msgid "doi.editor.canBeAssigned" +msgstr "" +"Те, що ви бачите, – це попередній перегляд DOI. Виберіть позначку і " +"збережіть форму для призначення DOI." + +msgid "doi.editor.assigned" +msgstr "DOI призначено для {$pubObjectType}." + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" +"Обраний суфікс DOI вже використовується для іншого опублікованого елементу. " +"Будь ласка, оберіть для кожного елемента унікальний суфікс DOI." + +msgid "doi.editor.clearObjectsDoi" +msgstr "Очистити" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "Ви впевнені, що бажаєте видалити наявний DOI?" + +msgid "doi.editor.assignDoi" +msgstr "Призначити DOI {$pubId} для {$pubObjectType}" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "DOI не може бути призначено, оскільки відсутній користувацький суфікс." + +msgid "doi.editor.assignDoi.pattern" +msgstr "" +"DOI {$pubId} не може бути призначено, оскільки він містить незамінений " +"шаблон." + +msgid "doi.editor.assignDoi.assigned" +msgstr "DOI {$pubId} призначено." + +msgid "doi.editor.missingPrefix" +msgstr "DOI має починатися з {$doiPrefix}." + +msgid "doi.editor.preview.publication" +msgstr "DOI для цієї публікації виглядатиме так: {$doi}." + +msgid "doi.editor.preview.publication.none" +msgstr "DOI призначено цій публікації." + +msgid "doi.editor.preview.chapters" +msgstr "Глава \"{$title}\"" + +msgid "doi.editor.preview.publicationFormats" +msgstr "Формат публікації \"{$title}\"" + +msgid "doi.editor.preview.files" +msgstr "Файл: \"{$title}\"" + +msgid "doi.editor.preview.objects" +msgstr "Елемент" + +msgid "doi.manager.submissionDois" +msgstr "Кілька DOI монографії" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" +"Цей електронний лист сповіщає автора про те, що його подання надсилається на " +"стадію внутрішнього рецензування." + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" +"Цей електронний лист сповіщає автора про те, що його подання відхиляється ще " +"перед відправкою на рецензування, оскільки подання не відповідає вимогам до " +"публікації в е-видавництві." + +msgid "manager.institutions.noContext" +msgstr "Е-видавництво цієї установи не було знайдено." + +msgid "manager.manageEmails.description" +msgstr "" +"Редагувати повідомлення, надіслані в електронних листах від цього " +"е-видавництва." + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "Надіслано на внутрішнє рецензування" + +msgid "mailable.indexRequest.name" +msgstr "Запитаний Індекс" + +msgid "mailable.indexComplete.name" +msgstr "Індекс завершено" + +msgid "mailable.publicationVersionNotify.name" +msgstr "Створена нова версія" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" +"Цей електронний лист автоматично сповіщає призначених редакторів про " +"створення нової версії подання." + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" +"Цей електронний лист надсилається менеджерам е-видавництва, коли виконано " +"нове подання і редакторів не призначено." + +#~ msgid "manager.setup.doiPrefix" +#~ msgstr "Префікс DOI" + +#~ msgid "emailTemplate.variable.context.principalContactSignature" +#~ msgstr "" +#~ "Підпис електронної пошти е-видавництва для автоматизованих електронних " +#~ "листів" + +msgid "emailTemplate.variable.context.mailingAddress" +msgstr "Поштова адреса е-видавництва" + +msgid "emailTemplate.variable.statisticsReportNotify.publicationStatsLink" +msgstr "Покликання на сторінку статистики книг" + +msgid "mailable.statisticsReportNotify.description" +msgstr "" +"Цей електронний лист автоматично надсилається щомісяця редакторам і " +"менеджерам е-видавництва, щоб надати їм огляд стану системи." + +msgid "plugins.importexport.common.error.salesRightRequiresTerritory" +msgstr "" +"Запис про права продажу пропущено, оскільки з ним не пов'язано ні країну, ні " +"регіон." + +msgid "manager.sections.alertDelete" +msgstr "" +"Перш ніж цю серію можна буде видалити, потрібно перемістити пов'язані з нею " +"подання до іншої серії." + +msgid "mailable.layoutComplete.name" +msgstr "Гранки готові" + +msgid "emailTemplate.variable.context.contextAcronym" +msgstr "Абревіатура е-видавництва" diff --git a/locale/uk/submission.po b/locale/uk/submission.po new file mode 100644 index 00000000000..1cfa57391bc --- /dev/null +++ b/locale/uk/submission.po @@ -0,0 +1,673 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-01 22:03+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "submission.upload.selectComponent" +msgstr "Обрати компонент" + +msgid "submission.title" +msgstr "Назва книги" + +msgid "submission.select" +msgstr "Обрати подання" + +msgid "submission.synopsis" +msgstr "Короткий опис" + +msgid "submission.workflowType" +msgstr "Тип подання" + +msgid "submission.workflowType.description" +msgstr "" +"Монографія – це видання за цілковитим авторством одного або декількох " +"авторів. Том за редакцією має різних авторів для кожної глави (з деталям " +"глав, введеними пізніше в цьому процесі)" + +msgid "submission.workflowType.editedVolume.label" +msgstr "Том за редакцією" + +msgid "submission.workflowType.editedVolume" +msgstr "Том за редакцією: автори пов'язані з їхніми главами." + +msgid "submission.workflowType.authoredWork" +msgstr "Монографія: автори, що пов'язані з цією книгою в цілому." + +msgid "submission.workflowType.change" +msgstr "Змінити" + +msgid "submission.editorName" +msgstr "{$editorName} (ред.)" + +msgid "submission.monograph" +msgstr "Монографія" + +msgid "submission.published" +msgstr "Готово до друку" + +msgid "submission.fairCopy" +msgstr "Чистовик" + +msgid "submission.authorListSeparator" +msgstr "; " + +msgid "submission.artwork.permissions" +msgstr "Дозволи" + +msgid "submission.chapter" +msgstr "Глава" + +msgid "submission.chapters" +msgstr "Глави" + +msgid "submission.chapter.addChapter" +msgstr "Додати главу" + +msgid "submission.chapter.editChapter" +msgstr "Редагувати главу" + +msgid "submission.chapter.pages" +msgstr "Сторінки" + +msgid "submission.copyedit" +msgstr "Здійснити літературне редагування" + +msgid "submission.publicationFormats" +msgstr "Формати публікацій" + +msgid "submission.proofs" +msgstr "Пруфи" + +msgid "submission.download" +msgstr "Завантажити" + +msgid "submission.sharing" +msgstr "Поділитися цим" + +msgid "manuscript.submission" +msgstr "Подання рукопису" + +msgid "submission.round" +msgstr "Раунд {$round}" + +msgid "submissions.queuedReview" +msgstr "На рецензуванні" + +msgid "manuscript.submissions" +msgstr "Подання рукописів" + +msgid "submission.metadata" +msgstr "Метадані" + +msgid "submission.supportingAgencies" +msgstr "Спонсори" + +msgid "grid.action.addChapter" +msgstr "Створити нову главу" + +msgid "grid.action.editChapter" +msgstr "Редагувати цю главу" + +msgid "grid.action.deleteChapter" +msgstr "Видалити цю главу" + +msgid "submission.submit" +msgstr "Почати подання нової книги" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "Почати нове подання в" + +msgid "submission.submit.newSubmissionSingle" +msgstr "Нове подання" + +msgid "submission.submit.upload" +msgstr "Вивантажити подання" + +msgid "author.volumeEditor" +msgstr "Редактор тому" + +msgid "author.isVolumeEditor" +msgstr "Позначити цього автора як редактора цього тому." + +msgid "submission.submit.seriesPosition" +msgstr "Позиція серії" + +msgid "submission.submit.seriesPosition.description" +msgstr "Приклади: Книга 2, Том 2" + +msgid "submission.submit.privacyStatement" +msgstr "Заява про конфіденційність" + +msgid "submission.submit.contributorRole" +msgstr "Роль користувача" + +msgid "submission.submit.submissionFile" +msgstr "Файл подання" + +msgid "submission.submit.prepare" +msgstr "Підготовка" + +msgid "submission.submit.catalog" +msgstr "Каталог" + +msgid "submission.submit.metadata" +msgstr "Метадані" + +msgid "submission.submit.finishingUp" +msgstr "Завершити" + +msgid "submission.submit.confirmation" +msgstr "Підтвердження" + +msgid "submission.submit.nextSteps" +msgstr "Наступні кроки" + +msgid "submission.submit.coverNote" +msgstr "Супровідний лист для редактора" + +msgid "submission.submit.generalInformation" +msgstr "Загальна інформація" + +msgid "submission.submit.whatNext.description" +msgstr "" +"Е-видавництво отримало повідомлення про подання Вашого рукопису, лист із " +"підтвердженням було направлено на Вашу електронну пошту. Щойно редактори " +"переглянуть Ваш матеріал, ми зв'яжемося з Вами." + +msgid "submission.submit.checklistErrors" +msgstr "" +"Будь ласка, прочитайте й відмітьте пункти у списку подання. Кількість " +"невідмічених позицій - {$itemsRemaining} ." + +msgid "submission.submit.placement" +msgstr "Розміщення подання" + +msgid "submission.submit.userGroup" +msgstr "Подати від мене в ролі…" + +msgid "submission.submit.noContext" +msgstr "Е-видавництво для цього подання не знайдено." + +msgid "grid.chapters.title" +msgstr "Глави" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "Видалити вивантаження літературного редактора" + +msgid "submission.complete" +msgstr "Підтверджено" + +msgid "submission.incomplete" +msgstr "Очікує підтвердження" + +msgid "submission.editCatalogEntry" +msgstr "Запис" + +msgid "submission.catalogEntry.new" +msgstr "Додати запис" + +msgid "submission.catalogEntry.add" +msgstr "Додати обрані елементи до каталогу" + +msgid "submission.catalogEntry.select" +msgstr "Обрати монографії для додання в каталог" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "Ви маєте обрати принаймі одну монографію, щоб додати до каталогу." + +msgid "submission.catalogEntry.confirm" +msgstr "Додати цю книгу до публічного каталогу" + +msgid "submission.catalogEntry.confirm.required" +msgstr "Будь ласка, підтвердіть, що подання готове до розміщення в каталозі." + +msgid "submission.catalogEntry.isAvailable" +msgstr "Ця монографія готова до включення в публічний каталог." + +msgid "submission.catalogEntry.viewSubmission" +msgstr "Переглянути подання" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "Дати публікації" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "Усі глави отримають дату публікації монографії." + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "Кожна глава може мати свою дату публікації." + +msgid "submission.catalogEntry.monographMetadata" +msgstr "Монографія" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "Каталог" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "Формат публікації" + +msgid "submission.event.metadataPublished" +msgstr "Метадані монографії затверджено для опублікування." + +msgid "submission.event.metadataUnpublished" +msgstr "Метадані монографії більше не публікуються." + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "Формат публікації \"{$publicationFormatName}\" тепер доступний." + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "Формат публікації \"{$publicationFormatName}\" більше не є доступним." + +msgid "submission.event.publicationFormatPublished" +msgstr "" +"Формат публікації \"{$publicationFormatName}\" затверджено до опублікування." + +msgid "submission.event.publicationFormatUnpublished" +msgstr "Формат публікації \"{$publicationFormatName}\" більше не публікується." + +msgid "submission.event.catalogMetadataUpdated" +msgstr "Метадані каталогу оновлено." + +msgid "submission.event.publicationMetadataUpdated" +msgstr "Метадані для формату публікації \"{$formatName}\" було оновлено." + +msgid "submission.event.publicationFormatCreated" +msgstr "Формат публікації \"{$formatName}\" створено." + +msgid "submission.event.publicationFormatRemoved" +msgstr "Формат публікації \"{$formatName}\" видалено." + +msgid "editor.submission.decision.sendExternalReview" +msgstr "Надіслати на зовнішнє рецензування" + +msgid "workflow.review.externalReview" +msgstr "Зовнішнє рецензування" + +msgid "submission.upload.fileContents" +msgstr "Компонент подання" + +msgid "submission.dependentFiles" +msgstr "Залежні файли" + +msgid "submission.metadataDescription" +msgstr "" +"Ці специфікації базуються на наборі метаданих Dublin Core - міжнародному " +"стандарті, що використовується для опису контенту е-видавництва." + +msgid "section.any" +msgstr "Будь-яка серія" + +msgid "submission.list.monographs" +msgstr "Монографії" + +msgid "submission.list.countMonographs" +msgstr "{$count} монографій" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "{$count} з {$total} монографій" + +msgid "submission.list.orderFeatures" +msgstr "Упорядкувати ознаки" + +msgid "submission.list.orderingFeatures" +msgstr "" +"Перемістіть або використайте стрілки вверх і вниз для зміни порядку об'єктів " +"на головній сторінці." + +msgid "submission.list.orderingFeaturesSection" +msgstr "" +"Перемістіть або використайте стрілки вверх і вниз для зміни порядку об'єктів " +"у \"{$title}\"." + +msgid "submission.list.saveFeatureOrder" +msgstr "Зберегти порядок сортування" + +msgid "submission.list.viewEntry" +msgstr "Переглянути запис" + +msgid "catalog.browseTitles" +msgstr "{$numTitles} назв" + +msgid "publication.catalogEntry" +msgstr "Запис каталогу" + +msgid "publication.catalogEntry.success" +msgstr "Деталі запису каталогу було оновлено." + +msgid "publication.invalidSeries" +msgstr "Серія для цієї публікації не знайдена." + +msgid "publication.inactiveSeries" +msgstr "{$series} (неактивно)" + +msgid "publication.required.issue" +msgstr "" +"Публікацію потрібно призначити випуску перед тим, як її можна буде " +"опублікувати." + +msgid "publication.publishedIn" +msgstr "Опубліковано в {$issueName}." + +msgid "publication.publish.confirmation" +msgstr "" +"Усі вимоги до публікації виконано. Ви впевнені, що хочете зробити цей запис " +"каталогу публічним?" + +msgid "publication.scheduledIn" +msgstr "Заплановано до публікації в {$issueName}." + +msgid "submission.publication" +msgstr "Публікація" + +msgid "publication.status.published" +msgstr "Опубліковано" + +msgid "submission.status.scheduled" +msgstr "Заплановано" + +msgid "publication.status.unscheduled" +msgstr "Знято з плану" + +msgid "submission.publications" +msgstr "Публікації" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Рік авторського права буде виставлено автоматично після публікації випуску." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "" +"Рік авторського права буде виставлено автоматично, базуючись на даті " +"публікації." + +msgid "publication.datePublished" +msgstr "Дата публікації" + +msgid "publication.editDisabled" +msgstr "Цю версію було опубліковано і не може бути змінено." + +msgid "publication.event.published" +msgstr "Подання було опубліковано." + +msgid "publication.event.scheduled" +msgstr "Подання заплановано до опублікування." + +msgid "publication.event.unpublished" +msgstr "Подання було знято з публікації." + +msgid "publication.event.versionPublished" +msgstr "Нову версію опубліковано." + +msgid "publication.event.versionScheduled" +msgstr "Нова версія запланована до публікації." + +msgid "publication.event.versionUnpublished" +msgstr "Версію було прибрано з публікації." + +msgid "publication.invalidSubmission" +msgstr "Подання для цієї публікації неможливо знайти." + +msgid "publication.publish" +msgstr "Опублікувати" + +msgid "publication.publish.requirements" +msgstr "Наступні вимоги мають бути виконані перед публікацією." + +msgid "publication.required.declined" +msgstr "Матеріал якому відмовлено, неможливо опублікувати." + +msgid "publication.required.reviewStage" +msgstr "" +"До того як опублікувати подання, воно має бути на стадії літературного " +"редагування або виробництва." + +msgid "submission.license.description" +msgstr "" +"Ліцензія призначиться автоматично {$licenseName}, коли матеріал буде опубліковано." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Авторське право буде автоматично призначено на {$copyright} після " +"опублікування цього." + +msgid "submission.copyrightOther.description" +msgstr "Призначити авторські права на опубліковані матеріали такій стороні." + +msgid "publication.unpublish" +msgstr "Зняти з публікації" + +msgid "publication.unpublish.confirm" +msgstr "Ви впевнені що не хочете публікувати цей матеріал?" + +msgid "publication.unschedule.confirm" +msgstr "Ви впевнені, що не хочете запланувати цей матеріал до публікації?" + +msgid "publication.version.details" +msgstr "Деталі публікації для версії {$version}" + +msgid "submission.queries.production" +msgstr "Обговорення подання" + +msgid "publication.chapter.landingPage" +msgstr "Сторінка глави" + +msgid "publication.chapter.hasLandingPage" +msgstr "" +"Показати цю главу на власній сторінці та покликання на ту сторінку зі змісту " +"книги." + +msgid "publication.publish.success" +msgstr "Статус публікації успішно змінено." + +msgid "chapter.volume" +msgstr "Том" + +msgid "submission.withoutChapter" +msgstr "{$name} – без цієї глави" + +msgid "submission.chapterCreated" +msgstr " – Главу створено" + +msgid "chapter.pages" +msgstr "Сторінки" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "Надіслати на внутрішнє рецензування" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "Це подання є готовим до надсилання для внутрішнього рецензування." + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" +"{$editorName} направив(ла) це подання на стадію внутрішнього рецензування." + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "Направлено для внутрішнього рецензування" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" +"Подання \"{$title}\" було направлено на стадію внутрішнього рецензування. " +"Автора було повідомлено, якщо ви не вирішили пропустити цей електронний лист." + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" +"Надішліть авторам електронного листа, щоби повідомити їх, що це подання буде " +"направлено для внутрішнього рецензування. Якщо можливо, зорієнтуйте авторів, " +"як довго може тривати процедура внутрішнього рецензування і коли їм слід " +"знов очікувати новин від редакторів." + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" +"Виберіть файли, які мають бути надіслані на стадію внутрішнього рецензування." + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" +"{$editorName} направив(ла) це подання на стадію зовнішнього рецензування." + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "Направлено для зовнішнього рецензування" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" +"Подання \"{$title}\" було направлено на стадію зовнішнього рецензування." + +msgid "editor.submission.decision.backToReview" +msgstr "Повернутися до рецензування" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" +"Скасувати рішення про прийняття цього подання і направити його знову на " +"стадію рецензування." + +msgid "editor.submission.decision.backToReview.log" +msgstr "" +"{$editorName} скасував(ла) рішення про прийняття цього подання і " +"направив(ла) його знову на стадію рецензування." + +msgid "editor.submission.decision.backToReview.completed" +msgstr "Знову направлено на рецензування" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "Подання \"{$title}\" було знову направлено на стадію рецензування." + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" +"Надішліть авторам електронного листа, щоби повідомити їх, що їхнє подання " +"знову направляється на стадію рецензування. Поясніть, чому було прийнято це " +"рішення, та поінформуйте авторів, яке рецензування буде здійснено." + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" +"Надішліть авторам електронного листа, щоби повідомити їх, що це подання буде " +"направлено для експертного оцінювання. Якщо можливо, зорієнтуйте авторів, як " +"довго може тривати процес експертного оцінювання і коли їм слід знов " +"очікувати новин від редакторів." + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "Виберіть файли, які мають бути надіслані на стадію рецензування." + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "Рекомендувати направити на зовнішнє рецензування" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" +"Рекомендувати, щоби це подання було направлено на стадію зовнішнього " +"рецензування." + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" +"{$editorName} рекомендував(ла), щоби це подання було направлено на стадію " +"зовнішнього рецензування." + +msgid "doi.submission.incorrectContext" +msgstr "" +"Не вдалося створити DOI для такого подання: {$pubObjectTitle}. Його не існує " +"в рамках поточного е-видавництва." + +msgid "publication.chapter.licenseUrl" +msgstr "URL-адреса ліцензії" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "Типова URL-адреса ліцензії глави" + +msgid "submission.copyright.description" +msgstr "" +"Будь ласка, прочитайте та зрозумійте умови щодо авторського права стосовно " +"подання до цього е-видавництва." + +msgid "submission.wizard.notAllowed.description" +msgstr "" +"Ви не маєте права зробити подання до цього е-видавництва, оскільки автори " +"повинні бути зареєстровані редакцією. Якщо ви вважаєте, що це помилка, " +"зверніться до {$name}." + +msgid "submission.wizard.sectionClosed.message" +msgstr "" +"\"{$contextName}\" не приймає подання до серії {$section}. Якщо Вам потрібна " +"допомога у відновленні Вашого подання, зв’яжіться з нами {$name}." + +msgid "submission.sectionNotFound" +msgstr "Серію для цього подання не знайдено." + +msgid "submission.sectionRestrictedToEditors" +msgstr "До цієї серії дозволяється подаватися лише редакції." + +msgid "submission.wizard.submitting.monograph" +msgstr "Подання монографії." + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" +"Подання монографії мовою {$language}." + +msgid "submission.wizard.submitting.editedVolume" +msgstr "Подання тому за редакцією." + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" +"Подання тому за редакцією мовою {$language}." + +msgid "submission.wizard.chapters.description" +msgstr "" +"Будь ласка, надайте всі глави цього подання. Якщо ви подаєте том за " +"редакцією, переконайтеся, що в кожній главі вказано авторів цієї глави." + +#~ msgid "submission.submit.title" +#~ msgstr "Подати монографію" + +#~ msgid "submission.submit.titleAndSummary" +#~ msgstr "Назва і резюме" + +#~ msgid "submission.submit.form.contributorRoleRequired" +#~ msgstr "Будь ласка, оберіть роль користувача." + +#~ msgid "submission.submit.form.abstractRequired" +#~ msgstr "Будь ласка, введіть коротку анотацію Вашої монографії." + +#~ msgid "submission.submit.form.titleRequired" +#~ msgstr "Будь ласка, введіть назву Вашої монографії." + +#~ msgid "submission.submit.form.authorRequiredFields" +#~ msgstr "" +#~ "Необхідно ввести ім'я, прізвище й адресу електронної пошти кожного автора." + +#~ msgid "submission.submit.form.authorRequired" +#~ msgstr "Необхідно обрати хоча б одного автора." + +#~ msgid "submission.submit.form.localeRequired" +#~ msgstr "Будь ласка, оберіть мову подання." + +#~ msgid "author.submit.seriesRequired" +#~ msgstr "Необхідно ввести дійсну серію." + +#~ msgid "submission.submit.selectSeries" +#~ msgstr "Оберіть серію (за бажанням)" + +#~ msgid "submission.confirmSubmit" +#~ msgstr "Ви впевнені, що хочете надіслати цей рукопис до е-видавництва?" + +#~ msgid "submission.chaptersDescription" +#~ msgstr "" +#~ "Ви можете тут перерахувати глави і призначити авторів зі списку вище. Ці " +#~ "автори матимуть доступ до глав під час різних стадій видавничого процесу." + +#~ msgid "submission.submit.userGroupDescription" +#~ msgstr "" +#~ "Якщо ви надсилаєте відредагований том, ви маєте обрати роль редактора " +#~ "тому." + +#~ msgid "submission.submit.cancelSubmission" +#~ msgstr "" +#~ "Ви можете завершити це подання пізніше, вибравши його у списку активних " +#~ "подань на своїй персональній сторінці." diff --git a/locale/uk_UA/admin.po b/locale/uk_UA/admin.po deleted file mode 100644 index ea78ac0c067..00000000000 --- a/locale/uk_UA/admin.po +++ /dev/null @@ -1,117 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-27 23:20+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian " -"\n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "admin.locale.maybeIncomplete" -msgstr "* Підтримка зазначених мов може бути неповною." - -msgid "admin.languages.supportedLocalesInstructions" -msgstr "" -"Виберіть усі мови для підтримки на сайті. Обрані мови будуть доступні для " -"всіх видавництв, розміщених на цьому сайті, а також з'являться в меню вибору " -"мови на кожній сторінці сайту (це налаштування може бути змінено на " -"сторінках окремих видавництв). Якщо не вибрано декілька мов, меню вибору мов " -"не з'явиться і розширені мовні налаштування будуть недоступні для видавництв." - -msgid "admin.languages.primaryLocaleInstructions" -msgstr "" -"Ця мова буде встановлена за замовчуванням для сайту і розміщених на ньому " -"видавництвам." - -msgid "admin.settings.noPressRedirect" -msgstr "Не перенаправляти" - -msgid "admin.settings.redirectInstructions" -msgstr "" -"Запити до головної сторінки буде перенаправлено на це видавництво. Це може " -"бути корисним, наприклад, якщо сайт розміщує лише одне видавництво." - -msgid "admin.settings.redirect" -msgstr "Перенаправлення видавництва" - -msgid "admin.settings.info.success" -msgstr "Інформація на сайті була успішно оновлена." - -msgid "admin.settings.config.success" -msgstr "Налаштування конфігурації сайту були успішно оновлені." - -msgid "admin.settings.appearance.success" -msgstr "Налаштування оформлення сайту були успішно збережені." - -msgid "admin.hostedContexts" -msgstr "Видавництво на сайті" - -msgid "admin.languages.installNewLocalesInstructions" -msgstr "" -"Оберіть додаткові мови для встановлення їх підтримки у цій системі. Мови " -"повинні бути проінстальовані до того, як ними почнуть користуватися " -"розміщені видавництва. Детальніше дивіться документацію OMP , як додати " -"підтримку нових мов." - -msgid "admin.languages.confirmUninstall" -msgstr "" -"Ви впевнені, що хочете вимкнути цю мову? Це може вплинути на всі розміщені " -"видавництва, які використовують цю мову." - -msgid "admin.presses.addPress" -msgstr "Додати Видавництво" - -msgid "admin.contexts.contextDescription" -msgstr "Опис видавництва" - -msgid "admin.contexts.form.edit.success" -msgstr "{$name} успішно відредаговано." - -msgid "admin.contexts.form.create.success" -msgstr "{$name} успішно створено." - -msgid "admin.contexts.form.pathExists" -msgstr "Вказаний вами шлях вже використовується іншим видавництвом." - -msgid "admin.contexts.form.pathRequired" -msgstr "Необхідно вказати шлях." - -msgid "admin.contexts.form.titleRequired" -msgstr "Необхідно ввести назву." - -msgid "admin.contexts.create" -msgstr "Створити Видавництво" - -msgid "admin.presses.noneCreated" -msgstr "Не створено жодного Видавництва." - -msgid "admin.presses.pressSettings" -msgstr "Налаштування Видавництва" - -msgid "admin.systemConfiguration" -msgstr "Конфігурація OMP" - -msgid "admin.systemVersion" -msgstr "Версія OMP" - -msgid "admin.languages.confirmDisable" -msgstr "" -"Ви впевнені, що хочете вимкнути цю мову? це може вплинути на усі " -"видавництва, які використовують зараз цю мову." - -msgid "admin.overwriteConfigFileInstructions" -msgstr "" -"

            УВАГА!\n" -"

            Система не може перезаписати файл налаштувань. Для застосування ваших " -"змін у налаштуваннях, вам необхідно відкрити config.inc.php в " -"текстовому редакторі і замінти його вміст, текстом наведеним нижче.

            " - -msgid "admin.contexts.form.pathAlphaNumeric" -msgstr "" -"Шлях може складатися тільки літери, цифри і символи \"_\", \"-\". Шлях має " -"починатися та завершуватися літерою чи числом." diff --git a/locale/uk_UA/api.po b/locale/uk_UA/api.po deleted file mode 100644 index 0ee711cef4c..00000000000 --- a/locale/uk_UA/api.po +++ /dev/null @@ -1,30 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-27 23:20+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "api.submissions.403.cantChangeContext" -msgstr "Ви не можете змінити видавництво для подання." - -msgid "api.publications.403.contextsDidNotMatch" -msgstr "Публікація яку ви шукаєте не належить жодному видавництву." - -msgid "api.emailTemplates.403.notAllowedChangeContext" -msgstr "" -"У вас недостатньо прав для переносу цього шаблону листа в ынше видавництво." - -msgid "api.publications.403.submissionsDidNotMatch" -msgstr "Публікація, яку ви шукаєте не є частиною цього подання." - -msgid "api.submissions.403.contextRequired" -msgstr "" -"Щоб зробити чи редагувати подання, ви маєте зробити запит до кінцевої точки " -"API Видавництва." diff --git a/locale/uk_UA/author.po b/locale/uk_UA/author.po deleted file mode 100644 index d6aabad96ec..00000000000 --- a/locale/uk_UA/author.po +++ /dev/null @@ -1,16 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-22 14:38+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "author.submit.notAccepting" -msgstr "Це видавництво не приймає подань на цей момент часу." diff --git a/locale/uk_UA/default.po b/locale/uk_UA/default.po deleted file mode 100644 index a032b580c2a..00000000000 --- a/locale/uk_UA/default.po +++ /dev/null @@ -1,160 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-29 11:38+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk_UA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "default.groups.plural.externalReviewer" -msgstr "Зовнішні Рецензенти" - -msgid "default.groups.name.externalReviewer" -msgstr "Зовнішній Рецензент" - -msgid "default.contextSettings.emailSignature" -msgstr "" -"
            \n" -"________________________________________________________________________
            " -"\n" -"{$ldelim}$contextName{$rdelim}" - -msgid "default.groups.plural.volumeEditor" -msgstr "Редактори Томів" - -msgid "default.groups.name.volumeEditor" -msgstr "Редактор Тому" - -msgid "default.groups.plural.chapterAuthor" -msgstr "Автори Розділів" - -msgid "default.groups.name.chapterAuthor" -msgstr "Автор Розділу" - -msgid "default.groups.plural.sectionEditor" -msgstr "Редактори Серій" - -msgid "default.groups.name.sectionEditor" -msgstr "Редактор Серії" - -msgid "default.groups.plural.editor" -msgstr "Редактори Видавництва" - -msgid "default.groups.name.editor" -msgstr "Редактор Видавництва" - -msgid "default.groups.plural.manager" -msgstr "Менеджери видавництва" - -msgid "default.groups.name.manager" -msgstr "Менеджер видавництва" - -msgid "default.genres.other" -msgstr "Інше" - -msgid "default.genres.illustration" -msgstr "Ілюстрація" - -msgid "default.genres.photo" -msgstr "Фото" - -msgid "default.genres.figure" -msgstr "Рисунок" - -msgid "default.genres.table" -msgstr "Таблиця" - -msgid "default.genres.preface" -msgstr "Передмова" - -msgid "default.genres.glossary" -msgstr "Глосарій" - -msgid "default.genres.chapter" -msgstr "Рукопис Розділу" - -msgid "default.genres.manuscript" -msgstr "Рукопис Книги" - -msgid "default.genres.bibliography" -msgstr "Бібліографія" - -msgid "default.contextSettings.forLibrarians" -msgstr "" -"Ми пропонуємо науковим бібліотекам включити це видавництво до списків своїх " -"електронних колекцій. Додатково, в цій видавничій системі передбачено засоби " -"інтеграції з бібліотечним програмним забезпеченням, що дозволяє бібліотекам " -"забезпечувати архівне збереження електронного контенту видавництв та/або " -"безпосередньо брати участь у видавничому процесі. Більш детально про ці " -"можливості див. на сайті Open Monograph " -"Press)." - -msgid "default.contextSettings.forAuthors" -msgstr "" -"Бажаєте опублікувати свою роботу у цьому видавництві? Рекомендуємо " -"ознайомитись з нашою редакційною політикою на сторінці Про Видавництво та переглянути Керівництво " -"для авторів. Для того, щоб мати можливість подавати рукописи до нашого " -"видавництва, автори повинні зареєструватися на сайті видавництва. Якщо Ви вже " -"зареєстровані, просто увійдіть на " -"сайт та пройдіть 5 кроків подання рукопису на розгляд." - -msgid "default.contextSettings.forReaders" -msgstr "" -"Ми пропонуємо авторам реєструватися на сайті, щоб скористатись службою " -"повідомлень цього видавництва. Для реєстрації використайте посилання Зареєструватися у верхньому " -"меню домашньої сторінки сайту видавництва. У Вас буде можливість оперативно " -"отримувати поштою сторінки змісту нових опублікованих монографій нашого " -"видавництва, та дозволите редакції відстежувати читацькі пріоритети та " -"інтереси. Будь ласка, ознайомтеся з нашим Положенням " -"про конфіденційність, у якому йдеться про те, що видавництво гарантує " -"нерозповсюдження імен та електронних адрес своїх читачів стороннім особам." - -msgid "default.contextSettings.openAccessPolicy" -msgstr "" -"Це видавництво підтримує політику миттєвого відкритого доступу до " -"опублікованого контенту, слідуючи принципам вільного поширення наукової " -"інформації та глобального обміну знаннями задля загального суспільного " -"прогресу." - -msgid "default.contextSettings.privacyStatement" -msgstr "" -"

            Імена та електронні адреси, вказані користувачами на сайті цього " -"видавництва, будуть використані виключно для виконання внутрішніх технічних " -"завдань цього видавництва; вони не будуть поширюватись та передаватись " -"стороннім особам.

            " - -msgid "default.contextSettings.checklist.submissionAppearance" -msgstr "" -"Текст набраний 12-м розміром кеглю з одинарним міжрядковим інтервалом; " -"авторські акценти виділені курсивом, а не підкресленням (всюди, крім адрес " -"URL); всі ілюстрації, графіки та таблиці розміщені безпосередньо у тексті, " -"там, де вони повинні бути за змістом (а не у кінці документу)." - -msgid "default.contextSettings.checklist.addressesLinked" -msgstr "Веб-посилання у тексті супроводжуються повними коректними адресами URL." - -msgid "default.contextSettings.checklist.fileFormat" -msgstr "" -"Файл подання є документом у форматі Microsoft Word, RTF або OpenDocument." - -msgid "default.contextSettings.checklist.notPreviouslyPublished" -msgstr "" -"Це подання раніше не було опубліковане і не надсилалося на розгляд до " -"редакцій інших журналів (або вкажіть пояснення у коментарях для редактора)." - -msgid "default.genres.prospectus" -msgstr "Проспект" - -msgid "default.genres.index" -msgstr "Індекс" diff --git a/locale/uk_UA/editor.po b/locale/uk_UA/editor.po deleted file mode 100644 index 3189de4ace1..00000000000 --- a/locale/uk_UA/editor.po +++ /dev/null @@ -1,122 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-27 23:20+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "editor.monograph.recommendation" -msgstr "Рекомендація" - -msgid "editor.monograph.legend.catalogEntry" -msgstr "" -"Переглянути і керувати поданням в каталозі, включно з метаданими і видами " -"видання" - -#, fuzzy -msgid "editor.monograph.legend.sectionActions" -msgstr "Дії з Розділами" - -msgid "editor.monograph.legend.submissionActions" -msgstr "Дії з Поданням" - -msgid "editor.monograph.copyediting.personalMessageToUser" -msgstr "Повідомлення для користувача" - -msgid "editor.monograph.externalReview" -msgstr "Розпочати зовнішнє рецензування" - -msgid "editor.monograph.internalReviewDescription" -msgstr "" -"Оберіть файли зі списку, щоб надіслати на етап внутрішнього рецензування." - -msgid "editor.monograph.internalReview" -msgstr "Розпочати процес внутрішнього рецензування" - -msgid "editor.monograph.uploadReviewForReviewer" -msgstr "Завантажити Рецензію" - -msgid "editor.monograph.replaceReviewer" -msgstr "Замінити Рецензента" - -msgid "editor.monograph.selectReviewerInstructions" -msgstr "" -"Оберіть Рецензента зі списку і натисніть на кнопку \"Обрати Рецензента\" щоб " -"продовжити." - -msgid "editor.monograph.enterReviewerRecommendation" -msgstr "Ввести Рекомендацію Рецензента" - -msgid "editor.monograph.enterRecommendation" -msgstr "Ввести Рекомендацію" - -msgid "editor.monograph.clearReview" -msgstr "Очистити Рецензентів" - -msgid "editor.monograph.cancelReview" -msgstr "Скасувати Запит" - -msgid "editor.submissionArchive" -msgstr "Архів Подань" - -msgid "editor.monograph.proof.addNote" -msgstr "Додати відповідь" - -msgid "editor.monograph.production.approvalAndPublishing" -msgstr "Затвердження та Публікація" - -msgid "editor.monograph.editorial.fairCopy" -msgstr "Чистовик" - -msgid "editor.monograph.legend.complete" -msgstr "Дію Виконано" - -msgid "editor.monograph.legend.in_progress" -msgstr "Дія в процесі виконання або ще не виконана" - -#, fuzzy -msgid "editor.monograph.legend.delete" -msgstr "Видалити Елемент" - -#, fuzzy -msgid "editor.monograph.legend.edit" -msgstr "Редагувати елемент" - -msgid "editor.monograph.legend.more_info" -msgstr "Більше Інформації: нотатки, налаштування та історія файлу" - -#, fuzzy -msgid "editor.monograph.legend.add_user" -msgstr "Додати користувача до розділу" - -#, fuzzy -msgid "editor.monograph.legend.add" -msgstr "Завантажити файл до розділу" - -msgid "editor.monograph.legend.participants" -msgstr "" -"Переглянути та керувати учасниками цього подання: авторами, редакторами, " -"дизайнерами, тощо." - -msgid "editor.monograph.legend.bookInfo" -msgstr "" -"Переглянути та керувати метаданими, нотатками, сповіщеннями та історією " -"подання." - -#, fuzzy -msgid "editor.monograph.legend.itemActions" -msgstr "Дії з Елементами" - -#, fuzzy -msgid "editor.monograph.final.selectFinalDraftFiles" -msgstr "Оберіть Фінальні Версії Чернеток" - -msgid "editor.monograph.peerReviewOptions" -msgstr "Налаштування Рецензування" diff --git a/locale/uk_UA/emails.po b/locale/uk_UA/emails.po deleted file mode 100644 index 5f6b7cdd88c..00000000000 --- a/locale/uk_UA/emails.po +++ /dev/null @@ -1,367 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-30 15:38+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk_UA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "emails.reviewRemind.subject" -msgstr "Нагадування про рецензування рукопису" - -msgid "emails.reviewDecline.subject" -msgstr "Не маю змоги рецензувати" - -msgid "emails.reviewConfirm.subject" -msgstr "Маю змогу рецензувати" - -msgid "emails.reviewCancel.subject" -msgstr "Запит на рецензування скасовано" - -msgid "emails.reviewRequestAttached.subject" -msgstr "Запит на Рецензування Рукопису" - -msgid "emails.reviewRequestRemindAutoOneclick.subject" -msgstr "Запит на Рецензування Рукопису" - -msgid "emails.reviewRequestRemindAuto.subject" -msgstr "Запит на Рецензування Рукопису" - -msgid "emails.reviewRequestOneclick.subject" -msgstr "Запит на Рецензування Рукопису" - -msgid "emails.reviewRequest.subject" -msgstr "Запит на Рецензування Рукопису" - -msgid "emails.editorAssign.subject" -msgstr "Призначення Редакторів" - -msgid "emails.publishNotify.subject" -msgstr "Опубліковано Нову Книгу" - -msgid "emails.reviewerRegister.subject" -msgstr "Зареєструватися як Рецензент у {$contextName}" - -msgid "emails.userValidate.subject" -msgstr "Підтвердіть Ваш Обліковий Запис" - -msgid "emails.userRegister.subject" -msgstr "Реєстрація Видавництва" - -msgid "emails.passwordReset.subject" -msgstr "Скидання Пароля" - -msgid "emails.passwordResetConfirm.subject" -msgstr "Підтвердження Скидання Пароля" - -msgid "emails.notification.subject" -msgstr "Нове Повідомлення від {$siteTitle}" - -msgid "emails.reviewRequestRemindAuto.description" -msgstr "" -"Цей лист надсилається автоматично, коли рецензент пропустив дату " -"рецензування (Див Налаштування > Робочий процес > Рецензування > " -"Налаштування Рецензування) і прямий доступ рецензента за посиланням " -"відключено. Заплановані завдання повинні бути увімкнені та налаштовані (Див. " -"файл налаштування сайту)." - -msgid "emails.reviewRequestRemindAuto.body" -msgstr "" -"Шановна|Шановний {$reviewerName},
            \n" -"Я вірю, що Ви могли б стати прекрасним рецензентом для рукопису " -""{$submissionTitle}", надісланого до {$contextName}. Будь ласка, " -"до {$responseDueDate} зайдіть на сайт видавництва, щоб повідомити, чи " -"візьметеся Ви за рецензування. Цей лист створено автоматично.\n" -"
            \n" -"{$messageToReviewer}
            \n" -"
            \n" -"Будь ласка, зайдіть на сайт видання, щоб повідомити, чи візьметеся Ви за " -"рецензування, а також для того, щоб отримати доступ до подання, записати " -"Вашу рецензію та рекомендацію.
            \n" -"
            \n" -"Ми хотіли б мати готову рецензію до {$reviewDueDate}.
            \n" -"
            \n" -"URL подання: {$submissionReviewUrl}
            \n" -"
            \n" -"Ім'я користувача: {$reviewerUserName}
            \n" -"
            \n" -"Дякую, що розглянули цей запит.
            \n" -"
            \n" -"
            \n" -"З Повагою,
            \n" -"{$editorialContactSignature}
            \n" - -msgid "emails.reviewRequestOneclick.description" -msgstr "" -"Цим листом Редактор Серії просить рецензента здійснити рецензування подання " -"або відмовитись від цієї роботи. У листі міститься інформація про подання (" -"назва та анотація), про кінцевий термін рецензування та про те, як отримати " -"доступ безпосередньо до подання. Цей шаблон використовується, якщо на кроці " -"\"2\" Налаштування, обраний Стандартний процес рецензування та включена " -"опція доступу рецензента \"єдиним натисканням\"." - -msgid "emails.reviewRequestOneclick.body" -msgstr "" -"{$reviewerName}:
            \n" -"
            \n" -"Я вірю, що Ви могли б стати прекрасним рецензентом для рукопису, " -""{$submissionTitle}" надісланого до {$contextName}. Нижче подана " -"анотація цієї праці, і маю надію, Ви розглянете можливість виконання цієї " -"важливої роботи для нас.
            \n" -"
            \n" -"Будь ласка, до {$weekLaterDate} зайдіть на сайт видавництва, щоб повідомити, " -"чи візьметеся Ви за цю рецензію, а також для того, щоб отримати доступ до " -"подання, записати Вашу рецензію та рекомендацію.
            \n" -"
            \n" -"Ми хотіли б мати готову рецензію до {$reviewDueDate}.
            \n" -"
            \n" -"URL подання: {$submissionReviewUrl}
            \n" -"
            \n" -"Дякую, що розглянули цей запит.
            \n" -"
            \n" -"{$editorialContactSignature}
            \n" -"
            \n" -"
            \n" -"
            \n" -""{$submissionTitle}"
            \n" -"
            \n" -"{$abstractTermIfEnabled}
            \n" -"{$submissionAbstract}" - -msgid "emails.reviewRequest.description" -msgstr "" -"Цим листом Редактор Серії просить Рецензента взятися за рецензування подання " -"або відмовитись від цієї роботи. У листі міститься інформація про подання (" -"назва та анотація), про кінцевий термін рецензування та про те, як отримати " -"доступ безпосередньо до подання. Цей шаблон використовується, якщо на кроці " -"\"2\" Налаштування журналу обраний Стандартний процес рецензування (у іншому " -"випадку див. REVIEW_REQUEST_ATTACHED.)" - -msgid "emails.reviewRequest.body" -msgstr "" -"Шановний {$reviewerName},
            \n" -"
            \n" -"{$messageToReviewer}
            \n" -"
            \n" -"Будь ласка, до {$responseDueDate} зайдіть на сайт видавництва, щоб " -"повідомити, чи візьметеся Ви за рецензування, а також для того, щоб отримати " -"доступ до подання та записати Вашу рецензію і рекомендацію.
            \n" -"
            \n" -"Ми хотіли б мати готову рецензію до {$reviewDueDate}.
            \n" -"
            \n" -"URL подання: {$submissionReviewUrl}
            \n" -"
            \n" -"Дякую, що розглянули цей запит.
            \n" -"
            \n" -"
            \n" -"З Повагою,
            \n" -"{$editorialContactSignature}
            \n" - -msgid "emails.editorAssign.description" -msgstr "" -"Цим листом Редактор Серії повідомляє Редактора про доручення йому нагляду за " -"процесом редакційного опрацювання подання. У листі міститься інформація про " -"подання та про те, як отримати доступ до сайту видавництва." - -msgid "emails.editorAssign.body" -msgstr "" -"{$editorialContactName}:
            \n" -"
            \n" -"Як редактор розділу Ви були призначені керувати процесом редакційного " -"опрацювання подання "{$submissionTitle}" до {$contextName}.
            " -"\n" -"
            \n" -"URL подання: {$submissionUrl}
            \n" -"Ім'я користувача: {$editorUsername}
            \n" -"
            \n" -"Дякую," - -msgid "emails.submissionAckNotUser.description" -msgstr "" -"При ввімкненні цей електронний лист автоматично надсилається іншим авторам, " -"які не є користувачами OMP , зазначеними у процесі подання рукопису." - -msgid "emails.submissionAckNotUser.body" -msgstr "" -"Вітаємо,
            \n" -"
            \n" -"Користувач {$submitterName} подав рукопис, "{$submissionTitle}" до " -"{$contextName}.
            \n" -"
            \n" -"Якщо у вас є якісь питання, будь ласка, зв'яжіться зі мною. Дякуємо, що " -"розглянули це видавництво як місце для публікації вашої роботи.
            \n" -"
            \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAckNotUser.subject" -msgstr "Подяка за подання рукопису" - -msgid "emails.submissionAck.description" -msgstr "" -"Якщо розсилання таких листів дозволене, цей лист автоматично надсилається " -"автору, коли він або вона завершує процес подання рукопису до видавництва. У " -"ньому міститься інформація про відстеження редакційного опрацювання рукопису " -"та подяка автору за подання." - -msgid "emails.submissionAck.body" -msgstr "" -"{$authorName}:
            \n" -"
            \n" -"Дякуємо, що надіслали рукопис "{$submissionTitle}" для публікації " -"у {$contextName}. Електронна система управління виданнями, яку ми " -"використовуємо, дозволяє авторам відслідковувати редакційне опрацювання " -"поданих до друку рукописів. Для цього потрібно увійти на веб-сайт журналу зі " -"своїм іменем користувача:
            \n" -"
            \n" -"URL рукопису: {$submissionUrl}
            \n" -"Ім'я користувача: {$authorUsername}
            \n" -"
            \n" -"Якщо Ви маєте запитання, будь ласка, звертайтеся до мене. Дякую за вибір " -"цього видавництва як місця публікації своєї роботи.
            \n" -"
            \n" -"{$editorialContactSignature}" - -msgid "emails.submissionAck.subject" -msgstr "Подяка за подання рукопису" - -msgid "emails.publishNotify.description" -msgstr "" -"Цей лист надсилається зареєстрованим читачам засобами посилання \"Сповістити " -"користувачів\" у теці редактора. Лист інформує читачів про вихід нової книги " -"та запрошує їх відвідати сайт журналу, скориставшись відповідним " -"URL-посиланням." - -msgid "emails.publishNotify.body" -msgstr "" -"Шановні читачі!
            \n" -"
            \n" -"Нове видання {$contextName} було щойно опубліковано за адресою {$contextUrl}" -". Запрошуємо переглянути Зміст, щоб потім зайти на наш веб-сайт та " -"ознайомитись з монографіями та іншими цікавими Вам матеріалами.
            \n" -"
            \n" -"Дякуємо, що продовжуєте цікавитись нашою роботою,
            \n" -"{$editorialContactSignature}" - -msgid "emails.reviewerRegister.description" -msgstr "" -"Цей лист надсилається новому зареєстрованому рецензенту для того, щоб " -"повідомити йому про реєстрацію та надіслати його ім'я користувача та пароль." - -msgid "emails.reviewerRegister.body" -msgstr "" -"З огляду на Ваш досвід, ми взяли на себе сміливість внести Ваше ім'я до бази " -"даних рецензентів видання {$contextName}. Це не передбачає жодних " -"зобов'язань з Вашого боку, а лише дозволяє нам розглядати Вас як можливого " -"рецензента рукописів. Під час запрошень на проведення рецензування, Ви " -"матимете можливість бачити назву та анотацію рукопису, про який йтиме мова, " -"і, розглянувши цю інформацію, Ви завжди зможете прийняти або відхилити " -"запрошення. Крім того, в будь-який час Ви можете вимагати видалення свого " -"імені з цього списку рецензентів.
            \n" -"
            \n" -"Ми надаємо Вам ім'я користувача та пароль, які будуть необхідні Вам упродовж " -"усієї подальшої роботи з журналом через його веб-сайт. Серед іншого, Ви " -"можете оновити свій профіль та вказати власні наукові інтереси.
            \n" -"
            \n" -"Ім'я користувача: {$username}
            \n" -"Пароль: {$password}
            \n" -"
            \n" -"Дякую,
            \n" -"{$principalContactSignature}" - -msgid "emails.userValidate.description" -msgstr "" -"Цей лист надсилається новому зареєстрованому користувачу для того, щоб " -"привітати його з реєстрацією та надіслати йому його ім'я користувача та " -"пароль." - -msgid "emails.userValidate.body" -msgstr "" -"Вітаємо, {$userFullName}
            \n" -"
            \n" -"Ви створили обліковий запис на сайті {$contextName}, але перш ніж Ви зможете " -"користуватися ним, необхідно підтвердити вказану під час реєстрації email " -"адресу . Щоб зробити це, перейдіть за вказаним нижче посиланням:
            \n" -"
            \n" -"{$activateUrl}
            \n" -"
            \n" -"З Повагою,
            \n" -"{$principalContactSignature}" - -msgid "emails.userRegister.description" -msgstr "" -"Цей лист надсилається новому зареєстрованому користувачу для того, щоб " -"привітати його з реєстрацією та надіслати йому його ім'я користувача та " -"пароль." - -msgid "emails.userRegister.body" -msgstr "" -"Вітаємо {$userFullName}
            \n" -"
            \n" -"Дякуємо Вам за реєстрацію користувачем {$contextName}. У цьому листі ми " -"вказали Ваші Ім'я користувача та пароль, які будуть необхідні для роботи з " -"цим журналом через сайт. В будь-який момент, Ви можете попросити, щоб ваш " -"обліковий запис видалили. Для цього Вам достатньо зв'язатися зі мною.
            \n" -"
            \n" -"Ім'я користувача: {$username}
            \n" -"Пароль: {$password}
            \n" -"
            \n" -"З Повагою,
            \n" -"{$principalContactSignature}" - -msgid "emails.passwordReset.description" -msgstr "" -"Цей лист надсилається зареєстрованому користувачу після того, як він успішно " -"скинув свій пароль за допомогою процесу, викладеного у листі " -"PASSWORD_RESET_CONFIRM." - -msgid "emails.passwordReset.body" -msgstr "" -"Ваш пароль для доступу до веб-сайту {$siteTitle} був успішно змінений.
            " -"\n" -"
            \n" -"Ваше ім'я користувача: {$username}
            \n" -"Пароль: {$password}
            \n" -"
            \n" -"{$principalContactSignature}" - -msgid "emails.passwordResetConfirm.description" -msgstr "" -"Цей лист надсилається зареєстрованому користувачу, який вказав, що забув " -"свій пароль і не може увійти до системи. У листі міститься URL, натиснувши " -"на який користувач може скинути свій пароль." - -msgid "emails.passwordResetConfirm.body" -msgstr "" -"Ми отримали запит на скидання Вашого паролю для веб-сайту {$siteTitle}.
            " -"\n" -"
            \n" -"Якщо Ви не робили цього запиту, будь ласка, проігноруйте цей лист і Ваш " -"пароль не буде змінений. Якщо Ви бажаєте скинути свій пароль, натисніть на " -"посиланні нижче.
            \n" -"
            \n" -"Скинути мій пароль: {$url}
            \n" -"
            \n" -"{$principalContactSignature}" - -msgid "emails.notification.description" -msgstr "" -"Цей лист надсилається зареєстрованому користувачу, який обрав опцію " -"отримання повідомлень цього типу електронною поштою." - -msgid "emails.notification.body" -msgstr "" -"Ви маєте нове повідомлення від {$siteTitle}:
            \n" -"
            \n" -"{$notificationContents}
            \n" -"
            \n" -"Посилання: {$url}
            \n" -"
            \n" -"Цей електроний лист згенеровано автоматично, будь ласка, не відповідайте на " -"нього.
            \n" -"{$principalContactSignature}" diff --git a/locale/uk_UA/locale.po b/locale/uk_UA/locale.po deleted file mode 100644 index 64607364599..00000000000 --- a/locale/uk_UA/locale.po +++ /dev/null @@ -1,1119 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-05-05 01:48+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk_UA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "monograph.publicationFormat.missingONIXFields" -msgstr "Відсутні певні поля з метаданими." - -msgid "monograph.publicationFormat.noCodesAssigned" -msgstr "Відсутній ідентифікатор." - -msgid "monograph.publicationFormat.noMarketsAssigned" -msgstr "Відсутні магазини і ціни." - -msgid "monograph.publicationFormat.productRegion" -msgstr "Регіон Росповсюдження" - -msgid "monograph.publicationFormat.countryOfManufacture" -msgstr "Країна-виробник" - -msgid "monograph.publicationFormat.productWidth" -msgstr "Довжина" - -msgid "monograph.publicationFormat.productWeight" -msgstr "Вага" - -msgid "monograph.publicationFormat.productThickness" -msgstr "Товщина" - -msgid "monograph.publicationFormat.productHeight" -msgstr "Висота" - -msgid "monograph.publicationFormat.productFileSize" -msgstr "Розмір файлу в Мб" - -msgid "monograph.publicationFormat.productDimensions" -msgstr "Фізичні розміри" - -msgid "monograph.publicationFormat.digitalInformation" -msgstr "Цифрова Інформація" - -msgid "monograph.publicationFormat.discountAmount" -msgstr "Відсоток знижки, якщо така застосовується" - -msgid "monograph.publicationFormat.priceRequired" -msgstr "Необхідно зазначити ціну." - -msgid "monograph.publicationFormat.price" -msgstr "Ціна" - -msgid "monograph.publicationFormat.pageCounts" -msgstr "Кількість сторінок" - -msgid "monograph.accessLogoOpen.altText" -msgstr "Відкритий Доступ" - -msgid "monograph.task.addNote" -msgstr "Додати до завдання" - -msgid "monograph.type" -msgstr "Тип Подання" - -msgid "monograph.carousel.publicationFormats" -msgstr "Формати:" - -msgid "monograph.miscellaneousDetails" -msgstr "Деталі про цю монографію" - -msgid "monograph.languages" -msgstr "Мови (Англійська, Французька, Іспанська)" - -msgid "monograph.coverImage" -msgstr "Зображення Обкладинки" - -msgid "monograph.audience" -msgstr "Аудиторія" - -msgid "grid.catalogEntry.representativeIdType" -msgstr "ID Тип Представника (рекомендовано GLN)" - -msgid "grid.catalogEntry.representativeIdValue" -msgstr "ID Представника" - -msgid "grid.catalogEntry.representativeWebsite" -msgstr "Адреса веб-сайту" - -msgid "grid.catalogEntry.representativeEmail" -msgstr "Адреса електронної пошти" - -msgid "grid.catalogEntry.representativePhone" -msgstr "Телефон" - -msgid "grid.catalogEntry.representativeName" -msgstr "Ім'я" - -msgid "grid.catalogEntry.representativeRole" -msgstr "Роль" - -msgid "grid.catalogEntry.representativeRoleChoice" -msgstr "Оберіть роль:" - -msgid "grid.catalogEntry.supplier" -msgstr "Постачальник" - -msgid "grid.catalogEntry.agentTip" -msgstr "" -"Ви можете призначити агента для представництва ваших інтересів у обраному " -"вами регіоні. Не є обов'язковим." - -msgid "grid.catalogEntry.agent" -msgstr "Агент" - -msgid "grid.catalogEntry.suppliersCategory" -msgstr "Постачальники" - -msgid "grid.catalogEntry.agentsCategory" -msgstr "Агенти" - -msgid "grid.catalogEntry.representativeType" -msgstr "Тип Представництва" - -msgid "grid.catalogEntry.representatives" -msgstr "Представники" - -msgid "grid.catalogEntry.dateRequired" -msgstr "" -"Необхідно ввести дату, і значення дати має співпадати з обраним форматом " -"дати." - -msgid "grid.catalogEntry.dateFormat" -msgstr "Формат Дати" - -msgid "grid.catalogEntry.dateRole" -msgstr "Роль" - -msgid "grid.catalogEntry.dateValue" -msgstr "Дата" - -msgid "grid.catalogEntry.dateFormatRequired" -msgstr "Необхідно ввести формат дати" - -msgid "grid.catalogEntry.roleRequired" -msgstr "Необхідна роль представника." - -msgid "grid.catalogEntry.publicationDates" -msgstr "Дати Публікації" - -msgid "grid.catalogEntry.marketTerritory" -msgstr "Територія" - -msgid "grid.catalogEntry.markets" -msgstr "Території Магазинів" - -msgid "grid.catalogEntry.excluded" -msgstr "Виключено" - -msgid "grid.catalogEntry.included" -msgstr "Включно" - -msgid "grid.catalogEntry.regions" -msgstr "Регіони\\Області" - -msgid "grid.catalogEntry.countries" -msgstr "Країни" - -msgid "grid.catalogEntry.oneROWPerFormat" -msgstr "" - -msgid "grid.catalogEntry.salesRightsROW.tip" -msgstr "" - -msgid "grid.catalogEntry.salesRightsROW" -msgstr "Решта Світу?" - -msgid "grid.catalogEntry.salesRightsType" -msgstr "Види Прав на росповсюдження" - -msgid "grid.catalogEntry.salesRightsValue" -msgstr "Значення Коду" - -msgid "grid.catalogEntry.salesRights" -msgstr "Права на Росповсюдження" - -msgid "grid.catalogEntry.valueRequired" -msgstr "Необхідно ввести значення." - -msgid "monograph.audience.rangeQualifier" -msgstr "" - -msgid "monograph.publicationFormat.taxRate" -msgstr "Ставка Податку" - -msgid "monograph.publicationFormat.productFormDetailCode" -msgstr "Деталі Товару (не обов'язково)" - -msgid "grid.catalogEntry.identificationCodeValue" -msgstr "Значення Коду" - -msgid "grid.catalogEntry.productAvailabilityRequired" -msgstr "Необхідно ввести код доступності товару." - -msgid "grid.catalogEntry.fileSizeRequired" -msgstr "Необхідно ввести розмір файлу для цифрових форматів." - -msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" -msgstr "Коректура не затверджена." - -msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" -msgstr "Формат відсутній в каталозі." - -msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" -msgstr "Запис у каталозі не підтверджено." - -msgid "grid.catalogEntry.availableRepresentation.title" -msgstr "Доступність Формату" - -msgid "grid.catalogEntry.approvedRepresentation.title" -msgstr "Підтвердження формату" - -msgid "grid.catalogEntry.proof" -msgstr "Коректура" - -msgid "grid.catalogEntry.publicationFormatRequired" -msgstr "Необхідно обрати Вид Видання." - -msgid "grid.catalogEntry.remoteURL" -msgstr "URL дистанційно розміщеного контенту" - -msgid "grid.catalogEntry.remotelyHostedContent" -msgstr "Цей формат буде доступний на окремому сайті" - -msgid "grid.catalogEntry.physicalFormat" -msgstr "Фізичний формат" - -msgid "grid.catalogEntry.publicationFormatDetails" -msgstr "Деталі Формату" - -msgid "grid.catalogEntry.publicationFormatType" -msgstr "Вид Видання" - -msgid "monograph.publicationFormat.isApproved" -msgstr "Включити метадані для цього виду видання в каталозі для цієї книги." - -msgid "monograph.publicationFormat.taxType" -msgstr "Види податку" - -msgid "monograph.publicationFormat.returnInformation" -msgstr "Індикатор можливості повернення" - -msgid "monograph.publicationFormat.productIdentifierType" -msgstr "Ідентифікація Товару" - -msgid "grid.catalogEntry.codeRequired" -msgstr "Необхідно ввести Ідентифікаційний код." - -msgid "grid.catalogEntry.identificationCodeType" -msgstr "Тип Коду ONIX" - -msgid "grid.catalogEntry.productCompositionRequired" -msgstr "" - -msgid "grid.catalogEntry.availableRepresentation.notApproved" -msgstr "Очікує підтвердження" - -msgid "grid.catalogEntry.availableRepresentation.approved" -msgstr "Підтверджено" - -msgid "grid.catalogEntry.availableRepresentation.removeMessage" -msgstr "" -"

            Цей формат буде недоступним для читачів. Можливість завантаження " -"файлів і інші види доставки більше не відображатимуться на сторінці книги у " -"каталозі.

            " - -msgid "grid.catalogEntry.availableRepresentation.message" -msgstr "" -"

            Зробіть цей форматдоступним для читачів. Можливість завантаження " -"файлів і інші види доставки з'являться на сторінці книги у каталозі.

            " - -msgid "grid.catalogEntry.approvedRepresentation.removeMessage" -msgstr "" - -msgid "grid.catalogEntry.approvedRepresentation.message" -msgstr "" - -msgid "grid.catalogEntry.isNotAvailable" -msgstr "Не доступно" - -msgid "grid.catalogEntry.isAvailable" -msgstr "Доступно" - -msgid "grid.catalogEntry.availability" -msgstr "Доступність" - -msgid "grid.catalogEntry.monographRequired" -msgstr "Необхідно ввести ID Монографії." - -msgid "monograph.proofReadingDescription" -msgstr "" -"Редактор верстки вивантажує сюди підготовлені до публікації файли. " -"Використайте +Призначити, щоб призначити авторів або інших " -"користувачів для коректури гранок, із завантаженням відкоригованих файлів та " -"їх схваленням перед публікацією." - -msgid "grid.catalogEntry.validPriceRequired" -msgstr "Необхідно ввести коректну ціну." - -msgid "grid.catalogEntry.nameRequired" -msgstr "Необхідно ввести Ім'я." - -msgid "monograph.publicationFormat.openTab" -msgstr "Відкрити вкладку \"Вид Видання\"." - -msgid "monograph.publicationFormat.formatDoesNotExist" -msgstr "

            Обраний вами вид видання більше не існує для цієї монографії.

            " - -msgid "monograph.publicationFormat.technicalProtection" -msgstr "Цифровий Захист" - -msgid "monograph.publicationFormat.productFileSize.override" -msgstr "Ввести власне значення розміру файлу?" - -msgid "monograph.publicationFormat.productDimensionsSeparator" -msgstr " x " - -msgid "monograph.publicationFormat.productAvailability" -msgstr "Доступність Товару" - -msgid "monograph.publicationFormat.priceType" -msgstr "Тип Ціни" - -msgid "monograph.publicationFormat.productComposition" -msgstr "" - -msgid "monograph.publicationFormat.backMatterCount" -msgstr "" - -msgid "monograph.publicationFormat.frontMatterCount" -msgstr "" - -msgid "monograph.publicationFormat.imprint" -msgstr "Видавництво (Назва Компанії)" - -msgid "submission.pageProofs" -msgstr "Підтвердження сторінок" - -msgid "monograph.publicationFormatDetails" -msgstr "Деталі щодо доступних видів видань: {$format}" - -msgid "monograph.publicationFormat" -msgstr "Формат" - -msgid "monograph.publicationFormats" -msgstr "Види Видань" - -msgid "monograph.audience.rangeExact" -msgstr "Вибір Аудиторії (конкретно)" - -msgid "monograph.audience.rangeTo" -msgstr "Вибір Аудиторії (до)" - -msgid "monograph.audience.rangeFrom" -msgstr "Вибір Аудиторії (від)" - -msgid "monograph.audience.success" -msgstr "Деталі аудиторії збережено." - -msgid "installer.installApplication" -msgstr "Інсталювати Open Monograph Press" - -msgid "installer.ompUpgrade" -msgstr "Оновлення OMP" - -msgid "installer.appInstallation" -msgstr "Інсталяція OMP" - -msgid "help.goToEditPage" -msgstr "Відкрийте нову сторінку для редагування цієї інформації" - -msgid "help.searchReturnResults" -msgstr "Повернутися до результатів пошуку" - -msgid "about.aboutThisPublishingSystem" -msgstr "Про цю Видавничу Систему" - -msgid "about.openAccessPolicy" -msgstr "Політика Відкритого Доступу" - -msgid "about.reviewPolicy" -msgstr "Процес рецензування" - -msgid "about.privacyStatement" -msgstr "Заява Про Конфіденційність" - -msgid "about.copyrightNotice" -msgstr "Положення про авторські права" - -msgid "about.authorGuidelines" -msgstr "Керівництво для авторів" - -msgid "about.onlineSubmissions.newSubmission" -msgstr "Зробити нове подання" - -msgid "about.onlineSubmissions.submissionActions" -msgstr "{$newSubmission} або {$viewSubmissions}." - -msgid "about.onlineSubmissions.registrationRequired" -msgstr "{$login} або {$register} щоб зробити подання." - -msgid "about.onlineSubmissions.register" -msgstr "Зареєструватися" - -msgid "about.onlineSubmissions.login" -msgstr "Увійти" - -msgid "about.submissions" -msgstr "Подання" - -msgid "about.editorialPolicies" -msgstr "Редакційна Політика" - -msgid "about.editorialTeam" -msgstr "Редакційний штат" - -msgid "user.register.form.userGroupRequired" -msgstr "Ви маєте обрати принаймі одну роль" - -msgid "user.register.form.passwordLengthTooShort" -msgstr "Пароь недостатньо довгий." - -msgid "user.register.privacyStatement" -msgstr "Заява Про Конфіденційність" - -msgid "user.role.productionEditors" -msgstr "Редактори з Виробництва" - -msgid "user.role.copyeditors" -msgstr "Літературні Редактори" - -msgid "user.role.editors" -msgstr "Редактори" - -msgid "user.role.subEditors" -msgstr "Редактори Серійних Видань" - -msgid "user.role.productionEditor" -msgstr "Редактор Виробництва" - -msgid "user.role.copyeditor" -msgstr "Літературний Редактор" - -msgid "user.role.subEditor" -msgstr "Редактор Серійних Видань" - -msgid "user.register.otherContextRoles" -msgstr "Відправити запит на наступні ролі." - -msgid "user.noRoles.regReviewer" -msgstr "Зареєструватися як Рецензент" - -msgid "user.noRoles.submitMonograph" -msgstr "Подати Пропозицію" - -msgid "context.select" -msgstr "Переключити на інше видавництво:" - -msgid "context.context" -msgstr "Видавництво" - -msgid "context.contexts" -msgstr "Видавництва" - -msgid "navigation.navigationMenus.newRelease.description" -msgstr "Посилання на нові видання." - -msgid "navigation.navigationMenus.newRelease" -msgstr "Нові видання" - -msgid "navigation.navigationMenus.category.description" -msgstr "Посилання на категорію." - -msgid "navigation.navigationMenus.category.generic" -msgstr "Категорія" - -msgid "navigation.navigationMenus.series.description" -msgstr "Посилання на серії." - -msgid "navigation.navigationMenus.series.generic" -msgstr "Серії" - -msgid "navigation.navigationMenus.catalog.description" -msgstr "Посилання на Ваш Каталог." - -msgid "navigation.linksAndMedia" -msgstr "Посилання і Соціальні Медіа" - -msgid "navigation.wizard" -msgstr "Майстер-налаштувань" - -msgid "navigation.published" -msgstr "Видано" - -msgid "navigation.newReleases" -msgstr "Нові Видання" - -msgid "navigation.infoForLibrarians.long" -msgstr "Інформація для Бібіліотекарів" - -msgid "navigation.infoForAuthors.long" -msgstr "Інформація для Авторів" - -msgid "navigation.infoForLibrarians" -msgstr "Для Бібліотекарів" - -msgid "navigation.infoForAuthors" -msgstr "Для Авторів" - -msgid "navigation.catalog.administration.series" -msgstr "Серії" - -msgid "navigation.catalog.administration.categories" -msgstr "Категорії" - -msgid "navigation.catalog.administration.short" -msgstr "Адміністрування" - -msgid "navigation.catalog.manage" -msgstr "Керувати" - -msgid "navigation.catalog.allMonographs" -msgstr "Усі Монографії" - -msgid "navigation.catalog" -msgstr "Каталог" - -msgid "common.homePageHeader.altText" -msgstr "Заголовок Домашньої Сторінки" - -msgid "common.omp" -msgstr "OMP" - -msgid "common.software" -msgstr "Open Monograph Press" - -msgid "common.listbuilder.itemExists" -msgstr "Ви не можете додати один і той самий товар двічі." - -msgid "common.listbuilder.selectValidOption" -msgstr "Будь ласка, оберіть дійсну опцію зі списку." - -msgid "common.listbuilder.completeForm" -msgstr "Будь ласка, заповніть форму повністю." - -msgid "common.moreInfo" -msgstr "Детальніше" - -msgid "common.searchCatalog" -msgstr "Пошук у Каталозі" - -msgid "common.preview" -msgstr "Передогляд" - -msgid "common.prefix" -msgstr "Префікс" - -msgid "common.publications" -msgstr "Монографії" - -msgid "common.publication" -msgstr "Монографія" - -msgid "submission.search" -msgstr "Пошук книг" - -msgid "catalog.viewableFile.return" -msgstr "Повернутися до перегляду деталей про {$monographTitle}" - -msgid "catalog.sortBy.catalogDescription" -msgstr "Оберіть, як замовляти книги у каталозі." - -msgid "catalog.sortBy.categoryDescription" -msgstr "Оберіть, як замовляти книги з цієї категорії." - -msgid "catalog.sortBy.seriesDescription" -msgstr "Оберіть як замовляти книги з цієї серії." - -msgid "catalog.sortBy" -msgstr "Замовити монографії" - -msgid "catalog.aboutTheAuthor" -msgstr "Детальніше про {$roleName}" - -msgid "catalog.category.subcategories" -msgstr "Підкатегорії" - -msgid "catalog.parentCategory" -msgstr "Батьківська Категорія" - -msgid "catalog.categories" -msgstr "Категорії" - -msgid "catalog.published" -msgstr "Опубліковано" - -msgid "catalog.publicationInfo" -msgstr "Інформація про видання" - -msgid "catalog.dateAdded" -msgstr "Додано" - -msgid "catalog.newReleases" -msgstr "Нові Видання" - -msgid "catalog.category.heading" -msgstr "Усі Книги" - -msgid "catalog.noTitlesNew" -msgstr "Недоступно нових видань на цей час." - -msgid "catalog.manage.filter.searchByAuthorOrTitle" -msgstr "Пошук за автором або назвою" - -msgid "catalog.manage.feature.seriesNewRelease" -msgstr "Нові видання в Серіях" - -msgid "catalog.manage.feature.categoryNewRelease" -msgstr "Нові Видання в категорії" - -msgid "catalog.manage.feature.newRelease" -msgstr "Нова версія" - -msgid "catalog.manage.newReleaseSuccess" -msgstr "Монографія позначена \"Нове Видання\"" - -msgid "catalog.manage.seriesFeatured" -msgstr "Популярні в Серіях" - -msgid "catalog.manage.categoryFeatured" -msgstr "Популярні в категорії" - -msgid "catalog.manage.featured" -msgstr "Популярні" - -msgid "catalog.manage.noMonographs" -msgstr "Відсутні призначені монографії." - -msgid "catalog.manage.manageCategories" -msgstr "Керувати категоріями" - -msgid "catalog.manage.manageSeries" -msgstr "Керувати Серіями" - -msgid "catalog.manage.newRelease" -msgstr "Версія" - -msgid "catalog.manage.placeIntoCarousel" -msgstr "Карусель" - -msgid "catalog.selectCategory" -msgstr "Оберіть Категорію" - -msgid "catalog.selectSeries" -msgstr "Оберіть Серії" - -msgid "catalog.manage.series.printIssn" -msgstr "Друкований ISSN" - -msgid "catalog.manage.series.onlineIssn" -msgstr "Електронний ISSN" - -msgid "catalog.manage.series.issn.equalValidation" -msgstr "Електронний і друкований ISSN-и мають відрізнятися." - -msgid "catalog.manage.series.issn.validation" -msgstr "Введіть корректний ISSN." - -msgid "catalog.manage.series.issn" -msgstr "ISSN" - -msgid "catalog.manage.series" -msgstr "Серії" - -msgid "catalog.manage.category" -msgstr "Категорія" - -msgid "catalog.manage.newReleases" -msgstr "Нові Видання" - -msgid "catalog.manage" -msgstr "Управління каталогом" - -msgid "series.path" -msgstr "Шлях" - -msgid "series.series" -msgstr "Серії" - -msgid "grid.reviewAttachments.availableFiles" -msgstr "Доступні файли" - -msgid "grid.reviewAttachments.add" -msgstr "Додати вкладення до рецензії" - -msgid "grid.action.submissionEmail" -msgstr "Натисніть щоб прочитати цей електронний лист" - -msgid "grid.action.moreAnnouncements" -msgstr "Перейти до сторінки з оголошеннями видавництва" - -msgid "grid.action.createContext" -msgstr "Створити нове видавництво" - -msgid "grid.action.deleteDate" -msgstr "Видалити цю дату" - -msgid "grid.action.editDate" -msgstr "Редагувати цю дату" - -msgid "grid.action.addDate" -msgstr "Додати дату публікації" - -msgid "grid.action.deleteMarket" -msgstr "Видалити цей магазин" - -msgid "grid.action.editMarket" -msgstr "Редагувати цей магазин" - -msgid "grid.action.addMarket" -msgstr "Додати магазин" - -msgid "grid.action.deleteRights" -msgstr "Видалити ці права" - -msgid "grid.action.editRights" -msgstr "редагувати ці права" - -msgid "grid.action.addRights" -msgstr "Додати Права на Росповсюдження" - -msgid "grid.action.manageSeries" -msgstr "Налаштувати \"Серійні видання\" для цього видавництва" - -msgid "grid.action.manageCategories" -msgstr "Налаштувати категорії для цього видавництва" - -msgid "grid.action.releaseMonograph" -msgstr "Додати мітку \"Нове Видання\" до цього Подання" - -msgid "grid.action.publicCatalog" -msgstr "Переглянути цей елемент в каталозі" - -msgid "grid.action.newCatalogEntry" -msgstr "Новий запис у каталозі" - -msgid "grid.action.addAnnouncement" -msgstr "Додати Оголошення" - -msgid "grid.libraryFiles.column.files" -msgstr "Файли" - -msgid "manager.series.indexed" -msgstr "Індексовано" - -msgid "manager.series.open" -msgstr "Відкрити Подання" - -msgid "grid.content.spotlights.form.type.book" -msgstr "Книга" - -msgid "grid.content.spotlights.category.homepage" -msgstr "Домашня сторінка" - -msgid "spotlight.author" -msgstr "Автор, " - -msgid "grid.action.deleteRepresentative" -msgstr "Видалити цього представника" - -msgid "grid.action.editRepresentative" -msgstr "Редагувати цього представника" - -msgid "grid.action.addRepresentative" -msgstr "Додати представника" - -msgid "submission.round" -msgstr "Раунд {$round}" - -msgid "about.pressContact" -msgstr "Контакти Видавництва" - -msgid "site.pressView" -msgstr "Переглянути Сайт Видавництва" - -msgid "user.register.reviewerInterests" -msgstr "Вкажіть коло наукових інтересів (галузі та методологічні підходи):" - -msgid "user.register.reviewerDescription" -msgstr "Дає свою згоду на рецензування рукописів для редакції." - -msgid "user.register.reviewerDescriptionNoInterests" -msgstr "Дає свою згоду на рецензування рукописів для видавництва." - -msgid "user.register.authorDescription" -msgstr "Має можливість подавати матеріали до видавництв." - -msgid "user.register.readerDescription" -msgstr "Повідомляється поштою про публікацію нових монографій." - -msgid "user.register.registrationDisabled" -msgstr "Зараз це видавництво не дозволяє реєстрацію користувачів." - -msgid "user.register.noContexts" -msgstr "На цьому сайті немає видавництв, у яких Ви можете зареєструватись." - -msgid "user.register.selectContext" -msgstr "Вибрати видавництво для реєстрації:" - -msgid "user.role.proofreaders" -msgstr "Коректори" - -msgid "user.role.managers" -msgstr "Менеджери видавництва" - -msgid "user.role.proofreader" -msgstr "Коректор" - -msgid "user.role.pressEditor" -msgstr "Редактор Видавництва" - -msgid "user.role.manager" -msgstr "Менеджер видавництва" - -msgid "user.register.noContextReviewerInterests" -msgstr "" -"Якщо Ви запитуєте в видавництві роль рецензента, будь ласка, зазначте свої " -"наукові інтереси." - -msgid "user.register.contextsPrompt" -msgstr "У яких видавництвах на цьому сайті Ви хочете зареєструватися?" - -msgid "user.reviewerPrompt.optin" -msgstr "" -"Так, я хочу, щоб до мене зверталися з запитами на рецензування матеріалів " -"для даного видавництва." - -msgid "user.reviewerPrompt.userGroup" -msgstr "Так, запитати роль {$userGroup}." - -msgid "user.reviewerPrompt" -msgstr "Хотіли б Ви рецензувати рукописи для цього видавництва?" - -msgid "user.noRoles.regReviewerClosed" -msgstr "Зареєструватися як рецензент: Реєстрація рецензентів наразі відключена." - -msgid "user.noRoles.submitMonographRegClosed" -msgstr "Надіслати Монографію: Реєстрація авторів наразі відключена." - -msgid "user.noRoles.selectUsersWithoutRoles" -msgstr "Включити користувачів без призначених ролей в цьому видавництві." - -msgid "context.current" -msgstr "Поточне Видавництво:" - -msgid "navigation.catalog.administration" -msgstr "Адміністрування Каталогу" - -msgid "navigation.competingInterestPolicy" -msgstr "Політика щодо конфлікту інтересів" - -msgid "catalog.featuredBooks" -msgstr "Популярні Книги" - -msgid "catalog.featured" -msgstr "Популярні" - -msgid "catalog.manage.notNewReleaseSuccess" -msgstr "Мітка \"Нове Видання\" знято з монографії." - -msgid "grid.action.availableRepresentation" -msgstr "Підтвердити/скасувати цей формат" - -msgid "grid.action.publicationFormatTab" -msgstr "Показати вкладку \"Вид Видання\"" - -msgid "grid.action.deleteCode" -msgstr "Видалити цей Код" - -msgid "grid.action.editCode" -msgstr "Редагувати цей Код" - -msgid "grid.action.addCode" -msgstr "Додати Код" - -msgid "grid.action.approveProof" -msgstr "Схвалити цю правку для індексування та включення в каталог" - -msgid "grid.action.addFormat" -msgstr "Додати вид видання" - -msgid "grid.action.deleteFormat" -msgstr "Видалити цей формат" - -msgid "grid.action.editFormat" -msgstr "Редагувати цей формат" - -msgid "grid.action.formatInCatalogEntry" -msgstr "Формат з'явиться в каталозі" - -msgid "grid.action.catalogEntry" -msgstr "Переглянути форму запису каталога" - -msgid "installer.localeInstructions" -msgstr "" -"Основна мова для цієї системи. Якщо Вам необхідна підтримка мови, не " -"вказаної тут, будь ласка, звертайтеся до документації OMP." - -msgid "installer.maxFileUploadSize" -msgstr "" -"Ваш сервер наразі дозволяє вивантаження файлів розміром не більше: " -"{$maxFileUploadSize}" - -msgid "installer.allowFileUploads" -msgstr "" -"Ваш сервер наразі дозволяє вивантаження файлів: " -"{$allowFileUploads}" - -msgid "installer.localeSettingsInstructions" -msgstr "" -"Для повної підтримки формату Unicode (UTF-8), оберіть UTF-8 у всіх " -"налаштуваннях таблиць кодування. Зауважте, що повна підтримка наразі вимагає " -"СУБД MySQL >= 4.1.1 або PostgreSQL >= 9.1.5. Крім того, будь ласка, " -"зауважте, що повна підтримка Unicode також вимагає бібліотеку mbstring (у більшості " -"сучасних інсталяцій PHP включена за замовчуванням). Якщо Ваш сервер не " -"відповідає цим вимогам, Ви можете зустрітись з проблемами під час " -"використання розширених таблиць кодування.\n" -"

            \n" -"Зараз Ваш сервер має підтримку mbstring: {$supportsMBString}" - -msgid "installer.upgradeInstructions" -msgstr "" -"

            OMP версії {$version}

            \n" -"\n" -"

            Дякуємо, що завантажили Open Monograph Press виробництва " -"Public Knowledge Project. Перед тим, як продовжити, будь ласка, прочитайте " -"файл README таUPGRADE, включені до цього дистрибутиву. Для того, щоб " -"дізнатися більше про Public Knowledge Project та розроблені ним програмні " -"пакети, будь ласка, завітайте на веб-сайт PKP. Якщо Ви маєте звіти про помилки або запити до " -"служби підтримки Open Monograph Press, дивіться форум підтримки або " -"завітайте до онлайнової служби PKP система звітування про помилки. Хоча форум підтримки є " -"пріоритетним методом контакту з розробниками, Ви можете також написати " -"розробникам листа на адресу pkp.contact@gmail.com.

            \n" -"

            Перед тим, як продовжити, наполегливо рекомендуємо " -"зробити резервну копію Вашої бази даних, файлових тек та теки інсталяції " -"OMP.

            \n" -"

            Якщо Ви працюєте у режимі PHP Safe Mode, будь ласка, переконайтеся, що " -"значення параметру max_execution_time у Вашому файлі конфігурації php.ini " -"має найвище припустиме значення. Якщо цей або будь-який інший ліміт часу (" -"наприклад, параметр \"Timeout\" налаштувань Apache) буде перевищений, процес " -"оновлення буде перерваний і знадобиться ручне втручання.

            " - -msgid "installer.preInstallationInstructions" -msgstr "" -"

            1. Наступні файли і каталоги (та їх вміст) потрібно зробити доступними " -"для запису:

            \n" -"
              \n" -"\t
            • config.inc.php доступний для запису (не обов'язково): " -"{$writable_config}
            • \n" -"\t
            • public/ доступний для запису: {$writable_public}
            • \n" -"\t
            • cache/ доступний для запису: {$writable_cache}
            • \n" -"\t
            • cache/t_cache/ доступний для запису: " -"{$writable_templates_cache}
            • \n" -"\t
            • cache/t_compile/ доступний для запису: " -"{$writable_templates_compile}
            • \n" -"\t
            • cache/_db доступний для запису: {$writable_db_cache}
            • \n" -"
            \n" -"\n" -"

            2. Каталог для збереження завантажених на сервер файлів має бути " -"створений та до нього має бути доступ для запису (дивись «Налаштування " -"файлів» ниже).

            " - -msgid "installer.preInstallationInstructionsTitle" -msgstr "Кроки підготовки до встановлення" - -#, fuzzy -msgid "installer.installationInstructions" -msgstr "" -"\n" -"

            Дякуємо, що завантажили Open Monograph Press {$version} " -"виробництва Public Knowledge Project. Перед тим, як продовжити, будь ласка, " -"прочитайте файл README, включений до " -"цього дистрибутиву. Для того, щоб дізнатися більше про Public Knowledge " -"Project та розроблені ним програмні пакети, будь ласка, завітайте навеб-сайт PKP. Якщо Ви маєте " -"звіти про помилки або запити до служби підтримки Open Monograph Press, " -"дивіться форум " -"підтримки або завітайте до онлайнової служби PKP система звітування про " -"помилки. Хоча форум підтримки є пріоритетним методом контакту з " -"розробниками, Ви можете також написати розробникам листа на адресу pkp.contact@gmail.com.

            \n" -"\n" -"

            Оновлення

            \n" -"\n" -"

            Якщо ви оновлюєте існуючу інсталяцію системи OMP, Натисніть ТУТ щоб продовжити.

            " - -#, fuzzy -msgid "about.aboutOMPSite" -msgstr "" -"Цей сайт використовує Open Monograph Press {$ompVersion} - програмний пакет " -"з відкритим вихідним кодом, який підтримує процеси менеджменту та публікації " -"для видавництв. Пакет розробляється, підтримується та вільно " -"розповсюджується Public Knowledge Project " -"на умовах ліцензії GNU General Public License." - -#, fuzzy -msgid "about.aboutOMPPress" -msgstr "" -"Це видавництво використовує Open Monograph Press {$ompVersion} - програмний " -"пакет з відкритим вихідним кодом, який підтримує процеси менеджменту та " -"публікації для видавництв. Пакет розробляється, підтримується та вільно " -"розповсюджується Public Knowledge Project " -"на умовах ліцензії GNU General Public License." - -msgid "about.aboutThisPublishingSystem.altText" -msgstr "Редакційно-видавничий процес OMP" - -msgid "about.pressSponsorship" -msgstr "Спонсори Видавництва" - -msgid "about.publicationFrequency" -msgstr "Періодичність публікації" - -msgid "about.submissionPreparationChecklist.description" -msgstr "" -"Під час подання рукопису до журналу автори повинні підтвердити його " -"відповідність всім встановленим вимогам, вказаним нижче. В разі виявлення " -"невідповідності поданої роботи пунктам цих вимог редакція повертатиме " -"авторам матеріали на доопрацювання." - -msgid "about.submissionPreparationChecklist" -msgstr "Вимоги до подання" - -msgid "about.onlineSubmissions.viewSubmissions" -msgstr "переглянути раніше подані матеріали" - -#, fuzzy -msgid "about.onlineSubmissions" -msgstr "Подання Онлайн" - -msgid "about.seriesPolicies" -msgstr "Серії та Політика Категорій" - -msgid "about.focusAndScope" -msgstr "Галузь та проблематика" - -msgid "about.aboutContext" -msgstr "Про Видавництво" - -msgid "common.feature" -msgstr "Популярне" - -msgid "catalog.viewableFile.title" -msgstr "{$type} переглядів файлу {$title}" - -msgid "catalog.sortBy.seriesPositionDesc" -msgstr "Позиція Серій (спочатку найвища)" - -msgid "catalog.sortBy.seriesPositionAsc" -msgstr "Позиція Серій (спочатку найнижча)" - -msgid "catalog.loginRequiredForPayment" -msgstr "" -"Зауважте: Щоб придбати книги. необхідно увійти в систему. Вибір книги для " -"придбання автоматично переадресує вас на сторінку входу. Кожин елемент зі " -"значком вільного доступу може бути завантажено без усіляких обмежень, " -"безкоштовно, без потреби входити до системи." - -msgid "catalog.foundTitlesSearch" -msgstr "{$number} назв знайдено за вашим запитом \"{$searchQuery}\"." - -msgid "catalog.foundTitleSearch" -msgstr "Один запис знайдено за вашим запитом \"{$searchQuery}\"." - -msgid "catalog.feature" -msgstr "Популярне" - -msgid "catalog.noTitlesSearch" -msgstr "" -"Жодних матеріалів не знайдено за вказаним вами пошуковим запитом \"" -"{$searchQuery}\"." - -msgid "catalog.manage.isNotNewRelease" -msgstr "" -"Цю монографію не відмічено як \"Нове Видання\". Поставити мітку \"Нове " -"Видання\" монографії." - -msgid "catalog.manage.isNewRelease" -msgstr "" -"Цю монографію відмічено як \"Нове Видання\". Зняти мітку \"Нове Видання\" з " -"монографії." - -msgid "series.featured.description" -msgstr "Ці Серії з'являться у головній навігації" diff --git a/locale/uk_UA/manager.po b/locale/uk_UA/manager.po deleted file mode 100644 index 9ac693e2c2e..00000000000 --- a/locale/uk_UA/manager.po +++ /dev/null @@ -1,332 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-05-02 02:23+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk_UA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "manager.setup.copyeditInstructions" -msgstr "Інструкції з Літературного Редагування" - -msgid "manager.setup.copyediting" -msgstr "Літературні Редактори" - -msgid "manager.setup.contextAbout" -msgstr "Про Видавництво" - -msgid "manager.setup.appearInAboutPress" -msgstr "(для появи в \"Про Видавництво\") " - -msgid "manager.setup.announcementsIntroduction" -msgstr "Додаткова Інформація" - -msgid "manager.setup.announcements.success" -msgstr "Налаштування оголошень оновлено." - -msgid "manager.setup.announcements" -msgstr "Оголошення" - -msgid "manager.setup.addSponsor" -msgstr "Додати Організацію-Спонсора" - -msgid "manager.setup.addNavItem" -msgstr "Додати матеріал" - -msgid "manager.setup.addItemtoAboutPress" -msgstr "Додати матеріал, що з'явиться на сторіці \"Про Видавництво\"" - -msgid "manager.setup.addItem" -msgstr "Додати Матеріал" - -msgid "manager.setup.addAboutItem" -msgstr "Додати Інформацію Про" - -msgid "manager.setup.aboutItemContent" -msgstr "Контент" - -msgid "manager.setup" -msgstr "Інсталяція" - -msgid "manager.pressManagement" -msgstr "Керування Видавництвом" - -msgid "user.authorization.pluginLevel" -msgstr "У вас недостатньо прав для керування цим плагіном." - -msgid "manager.system.payments" -msgstr "Платежі" - -msgid "manager.system.archiving" -msgstr "Архівування" - -msgid "manager.system" -msgstr "Системні Налаштування" - -msgid "manager.people.confirmDisable" -msgstr "" -"Деактивувати цього користувача? Це зробить неможливим вхід користовуча до " -"системи.\n" -"\n" -"Ви можете вказати користувачу причину деактивування облікового запису." - -msgid "manager.people.allPresses" -msgstr "Усі Видавництва" - -msgid "manager.users.selectRole" -msgstr "Обрати Роль" - -msgid "manager.users.availableRoles" -msgstr "Доступні Ролі" - -msgid "manager.tools" -msgstr "Інструменти" - -msgid "manager.statistics.reports.defaultReport.monographAbstract" -msgstr "Переглядів Анотації Монографії" - -msgid "manager.statistics.reports.defaultReport.monographDownloads" -msgstr "Завантаження файлів Монографії" - -msgid "manager.settings.publisherCode" -msgstr "Код Видавця" - -msgid "manager.settings.location" -msgstr "Географічне місцезнаходження" - -msgid "manager.settings.publisher" -msgstr "Ім'я Видавця" - -msgid "manager.settings.publisher.identity" -msgstr "Ідентифікатор Видавця" - -msgid "manager.settings.press" -msgstr "Видавництво" - -msgid "manager.settings.pressSettings" -msgstr "Налаштування Видавництва" - -msgid "manager.settings" -msgstr "Налаштування" - -msgid "manager.payment.success" -msgstr "Налаштування оплати оновлено." - -msgid "manager.payment.generalOptions" -msgstr "Загальні Налаштування" - -msgid "manager.series.seriesTitle" -msgstr "Назва Серії" - -msgid "manager.series.existingUsers" -msgstr "Існуючі Користувачі" - -msgid "manager.series.noneCreated" -msgstr "Жодної серії не створено." - -msgid "manager.series.form.titleRequired" -msgstr "Необхідно ввести назву для Серії." - -msgid "manager.series.unassigned" -msgstr "Доступні Редактори Серій" - -msgid "manager.series.assigned" -msgstr "Редактори для Серій" - -msgid "manager.series.policy" -msgstr "Опис Серії" - -msgid "manager.series.create" -msgstr "Створити Серії" - -msgid "manager.series.book" -msgstr "Серії Книг" - -msgid "manager.series.disableComments" -msgstr "Заблокувати можливість коментування для цих Серій." - -msgid "manager.series.abstractsNotRequired" -msgstr "Не вимагати анотації" - -msgid "manager.series.indexed" -msgstr "Індексовано" - -msgid "manager.series.open" -msgstr "Відкрити Подання" - -msgid "manager.setup.emailSignature" -msgstr "Підпис" - -msgid "manager.setup.emails" -msgstr "Ідентифікація за адресою електронної пошти" - -msgid "manager.setup.editorDecision" -msgstr "Рішення Редактора" - -msgid "manager.setup.doiPrefix" -msgstr "Префікс DOI" - -msgid "manager.setup.displayNewReleases.label" -msgstr "Нові Видання" - -msgid "manager.setup.details" -msgstr "Детальніше" - -msgid "manager.setup.customTags" -msgstr "Користувацькі Теги" - -msgid "manager.setup.coverThumbnailsMaxWidth" -msgstr "Максимальна ширина зображення обкладинки" - -msgid "manager.setup.coverThumbnailsMaxHeight" -msgstr "Максимальна довжина зображення обкладинки" - -msgid "manager.series.form.mustAllowPermission" -msgstr "" -"Будь ласка, переконайтеся, що обрано принаймні по одному прапорцю для " -"кожного призначення Редактора Серій." - -msgid "manager.languages.primaryLocaleInstructions" -msgstr "Ця мова буде встановлена за замовчуванням для сайту цього видавництва." - -msgid "manager.languages.noneAvailable" -msgstr "" -"Вибачте, відсутні додаткові мовні пакети. Напишіть адміністратору вашого " -"сайтк якщо хочете мати додаткові мови для вашого видавництва." - -msgid "manager.setup.generalInformation" -msgstr "Загальна Інформація" - -msgid "manager.setup.contextAbout.description" -msgstr "" -"Вкажіть основні відомості про видавництво, що зацікавлять читачів, авторів " -"або рецензентів. Це можуть бути положення про відкритий доступ, концепція " -"видавництва, умови передачі авторських прав, інформація про спонсорів, " -"історія видавництва." - -msgid "manager.setup.announcementsDescription" -msgstr "" -"Оголошення можна публікувати для інформування читачів про новини та події " -"видавництва. Оприлюднені оголошення з'являться на сторінці \"Оголошення\"." - -msgid "manager.setup.addChecklistItem" -msgstr "Додати пункт вимог" - -msgid "manager.system.readingTools" -msgstr "Інструментарій для читання" - -msgid "manager.system.reviewForms" -msgstr "Форми рецензування" - -msgid "manager.people.noAdministrativeRights" -msgstr "" -"Вибачте, але Ви не маєте прав для управління цим користувачем, з огляду на " -"те, що:\n" -"\t
              \n" -"\t
            • Користувач є адміністратором сайту
            • \n" -"\t
            • Користувач активнований у видавництвах, якими Ви не " -"керуєте
            • \n" -"\t
            \n" -"\tЦе завдання може виконати адміністратор сайту.\n" -"\t" - -msgid "manager.people.syncUserDescription" -msgstr "" -"Синхронізація реєстрацій дозволяє зареєструвати усіх користувачів, які " -"виконують певну роль у певному видавництві, у тих же ролях у цьому " -"видавництві. Дана функція дозволяє синхронізувати між видавництвами певні " -"групи користувачів, наприклад рецензентів." - -msgid "manager.people.mergeUsers.into.description" -msgstr "" -"Оберіть користувача, якому слід передати права попереднього користувача (" -"авторство, редакційні призначення, тощо)." - -msgid "manager.people.mergeUsers.from.description" -msgstr "" -"Оберіть користувача, якого потрібно включити до облікового запису іншого " -"користувача (наприклад, якщо одна особа має два облікові записи). Перший " -"обраний обліковий запис буде видалений, а його подання, редакційні " -"призначення, тощо будуть асоційовані з другим обраним обліковим записом." - -msgid "manager.people.enrollSyncPress" -msgstr "З Видавництвом" - -msgid "manager.people.enrollExistingUser" -msgstr "Надати нову роль існуючому користувачу" - -msgid "manager.people.confirmRemove" -msgstr "" -"Видалити цього користувача з цього видавництва? Ця дія скасує всі " -"призначення користувача в межах цього видавництва." - -msgid "manager.people.allUsers" -msgstr "Всі користувачі, які мають ролі" - -msgid "manager.people.allSiteUsers" -msgstr "Надати роль у цьому журналі користувачу, зареєстрованому у видавництві" - -msgid "manager.people.allEnrolledUsers" -msgstr "Користувачі, які мають ролі у цьому видавництві" - -msgid "manager.users.currentRoles" -msgstr "Поточні ролі" - -msgid "manager.statistics.reports.filters.byObject.description" -msgstr "" -"Фільтрувати результати за типом об'єкта (видавництво, серії, монографія, " -"типи файлів) та/або по одному або декільком ID об'єктів." - -msgid "manager.statistics.reports.filters.byContext.description" -msgstr "Фільтрувати результати по контексту (серії та/або монографії)." - -msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" -msgstr "Перегляди головної сторінки Видавництва" - -msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" -msgstr "Перегляди головної сторінки Серій" - -msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" -msgstr "Анотація монографії та скачування" - -msgid "manager.settings.publisherCodeType" -msgstr "Тип Коду Видавця" - -msgid "manager.payment.options.enablePayments" -msgstr "" -"Платежі будуть включені для цього Видавництва. Зауважте, що користувачі " -"повинні увійти до системи, щоб здійснити платіж." - -msgid "manager.series.form.abbrevRequired" -msgstr "Необхідно вказати абревіатуру для серій." - -msgid "manager.series.submissionsToThisSection" -msgstr "Рукописи, подані до цих серій" - -msgid "manager.series.submissionReview" -msgstr "Не будуть рецензуватись" - -msgid "manager.series.readingTools" -msgstr "Інструментарій для читання" - -msgid "manager.series.confirmDelete" -msgstr "Ви впевнені, що хочете назавжди видалити ці Серії?" - -msgid "manager.series.editorRestriction" -msgstr "Об'єкти можуть надсилатись лише Редакторами та Редакторами Серій." - -msgid "manager.series.submissionIndexing" -msgstr "Не будуть індексуватись у видавництві" - -msgid "manager.series.form.reviewFormId" -msgstr "Будь ласка, переконайтеся, що Ви коректно обрали форму рецензування." - -msgid "manager.language.confirmDefaultSettingsOverwrite" -msgstr "" -"Ця дія скасує всі налаштування видавництва, повязані з цією локалізацією" diff --git a/locale/uk_UA/submission.po b/locale/uk_UA/submission.po deleted file mode 100644 index 8b5197f95e7..00000000000 --- a/locale/uk_UA/submission.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-05-05 01:48+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk_UA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "submission.chapters" -msgstr "Розділи" - -msgid "submission.chapter" -msgstr "Розділ" - -msgid "submission.artwork.permissions" -msgstr "Дозволи" - -msgid "submission.authorListSeparator" -msgstr "; " - -msgid "submission.fairCopy" -msgstr "Чистовик" - -msgid "submission.published" -msgstr "Готово до друку" - -msgid "submission.monograph" -msgstr "Монографія" - -msgid "submission.editorName" -msgstr "Під редакцією {$editorName}" - -msgid "submission.workflowType.change" -msgstr "Змінити" - -msgid "submission.workflowType.editedVolume" -msgstr "Редагований Том: Автори пов'язані з їхніми розділами." - -msgid "submission.workflowType.editedVolume.label" -msgstr "Редагований Том" - -msgid "submission.workflowType.description" -msgstr "" -"Монографія, - це видання за цілковитим авторством одного або декількох " -"авторів. Відредагований том має різних авторів для кожного розділу (з " -"деталям розділів введеними пізніше в цьому процесі.)" - -msgid "submission.workflowType" -msgstr "Тип Подання" - -msgid "submission.synopsis" -msgstr "Короткий опис" - -msgid "submission.select" -msgstr "Обрати Подання" - -msgid "submission.title" -msgstr "Назва Книги" - -msgid "submission.upload.selectComponent" -msgstr "Обрати компонент" - -msgid "submission.submit.title" -msgstr "Надіслати Монографію" - -msgid "publication.scheduledIn" -msgstr "Заплановано до публікації в {$issueName}." - -msgid "publication.publishedIn" -msgstr "Опубліковано в {$issueName}." - -msgid "publication.required.issue" -msgstr "Публікація має бути призначена до випуску перед публікацією." - -msgid "publication.invalidSeries" -msgstr "Серія для цієї публікації не знайдена." - -msgid "publication.catalogEntry" -msgstr "Запис Каталогу" - -msgid "catalog.browseTitles" -msgstr "{$numTitles} Назв" - -msgid "submission.list.itemsOfTotalMonographs" -msgstr "{$count} з {$total} монографій" - -msgid "submission.list.countMonographs" -msgstr "{$count} монографій" - -msgid "submission.list.monographs" -msgstr "Монографії" - -msgid "section.any" -msgstr "Будь-які Серії" - -msgid "submission.dependentFiles" -msgstr "Залежні файли" - -msgid "workflow.review.externalReview" -msgstr "Зовнішнє Рецензування" - -msgid "editor.submission.decision.sendExternalReview" -msgstr "Надіслати на зовнішнє рецензування" - -msgid "submission.submit.titleAndSummary" -msgstr "Назва і Резюме" - -msgid "submission.event.publicationFormatRemoved" -msgstr "Вид Видання \"{$formatName}\" видалено." - -msgid "submission.event.publicationFormatCreated" -msgstr "Вид Видання \"{$formatName}\" створено." - -msgid "submission.event.catalogMetadataUpdated" -msgstr "Метадані каталогу оновлені." - -msgid "submission.event.publicationFormatUnpublished" -msgstr "Вид Видання \"{$publicationFormatName}\" більше неопублікований." - -msgid "submission.event.publicationFormatPublished" -msgstr "Вид Видання \"{$publicationFormatName}\" затверджено до публікації." - -msgid "submission.event.publicationFormatMadeUnavailable" -msgstr "Вид Видання \"{$publicationFormatName}\" більше недоступний." - -msgid "submission.event.publicationFormatMadeAvailable" -msgstr "Вид Видання \"{$publicationFormatName}\" тепер доступний." - -msgid "submission.event.metadataPublished" -msgstr "Метадані Монографії затверджено для публікації." - -msgid "submission.catalogEntry.publicationMetadata" -msgstr "Вид Видання" - -msgid "submission.catalogEntry.catalogMetadata" -msgstr "Каталог" - -msgid "submission.catalogEntry.monographMetadata" -msgstr "Монографія" - -msgid "submission.catalogEntry.enableChapterPublicationDates" -msgstr "Кожний Розділ може мати свою дату публікації." - -msgid "submission.catalogEntry.disableChapterPublicationDates" -msgstr "Усі Розділи отримають дату публікації Монографії." - -msgid "submission.catalogEntry.chapterPublicationDates" -msgstr "Дати Публікації" - -msgid "submission.catalogEntry.viewSubmission" -msgstr "Переглянути Подання" - -msgid "submission.catalogEntry.isAvailable" -msgstr "Ця монографія готова до включення в публічний каталог." - -msgid "submission.catalogEntry.confirm.required" -msgstr "Будь ласка, підтвердіть, що Подання готове до розміщення у каталозі." - -msgid "submission.catalogEntry.confirm" -msgstr "Додати цю книгу до публічного каталогу" - -msgid "submission.catalogEntry.selectionMissing" -msgstr "Ви маєте обрати принаймі одну монографію щоб додати до каталогу." - -msgid "submission.catalogEntry.select" -msgstr "Обрати Монографія для додання в каталог" - -msgid "submission.catalogEntry.add" -msgstr "Додати обрані елементи до каталогу" - -msgid "submission.catalogEntry.new" -msgstr "Додати запис" - -msgid "submission.editCatalogEntry" -msgstr "Запис" - -msgid "submission.incomplete" -msgstr "Очікує підтвердження" - -msgid "submission.complete" -msgstr "Підтверджено" - -msgid "grid.copyediting.deleteCopyeditorResponse" -msgstr "Видалити файли Літературного Редактора" - -msgid "grid.chapters.title" -msgstr "Розділи" - -msgid "submission.submit.noContext" -msgstr "Видавництво для цього Подання не знайдено." - -msgid "submission.submit.userGroup" -msgstr "Подати від мене у ролі..." - -msgid "submission.submit.placement" -msgstr "Розміщення Подання" - -msgid "submission.submit.generalInformation" -msgstr "Загальна Інформація" - -msgid "submission.submit.coverNote" -msgstr "Примітки для Редактора" - -msgid "submission.submit.nextSteps" -msgstr "Наступні Кроки" - -msgid "submission.submit.confirmation" -msgstr "Підтвердження" - -msgid "submission.submit.finishingUp" -msgstr "Завершити" - -msgid "submission.submit.metadata" -msgstr "Метадані" - -msgid "submission.submit.catalog" -msgstr "Каталог" - -msgid "submission.submit.prepare" -msgstr "Підготовка" - -msgid "submission.submit.submissionFile" -msgstr "Файл Подання" - -msgid "submission.submit.form.contributorRoleRequired" -msgstr "Будь ласка, оберіть роль користувача." - -msgid "submission.submit.form.abstractRequired" -msgstr "Будь ласка, введіть коротку анотацію вашої монографії." - -msgid "submission.submit.form.titleRequired" -msgstr "Будь ласка, введіть назву вашої Монографії." - -msgid "submission.submit.form.authorRequiredFields" -msgstr "" -"Необхідно ввести ім'я, прізвище і адресу електронної пошти кожного автора." - -msgid "submission.submit.form.authorRequired" -msgstr "Необхідно обрати хоча-б одного автора." - -msgid "submission.submit.contributorRole" -msgstr "Роль користувача" - -msgid "submission.submit.privacyStatement" -msgstr "Заява Про Конфіденційність" - -msgid "submission.submit.form.localeRequired" -msgstr "Будь ласка, оберіть мову Подання." - -msgid "submission.submit.seriesPosition.description" -msgstr "Приклади: Книга 2, Том 2" - -msgid "submission.submit.seriesPosition" -msgstr "Позиція Серії" - -msgid "author.submit.seriesRequired" -msgstr "Необхідно ввести існуючу Серію." - -msgid "author.isVolumeEditor" -msgstr "Призначити цього автора, як редактора цього Тому." - -msgid "submission.submit.selectSeries" -msgstr "Оберіть Серію (за бажанням)" - -msgid "submission.submit.upload" -msgstr "Вивантажити Подання" - -msgid "submission.submit.newSubmissionSingle" -msgstr "Нове Подання" - -msgid "submission.submit.newSubmissionMultiple" -msgstr "Почати Нове подання в" - -msgid "submission.submit" -msgstr "Почати Подання Нової Книги" - -msgid "grid.action.deleteChapter" -msgstr "Видалити цей Розділ" - -msgid "grid.action.editChapter" -msgstr "Редагувати цей Розділ" - -msgid "grid.action.addChapter" -msgstr "Створити новий Розділ" - -msgid "submission.metadata" -msgstr "Метадані" - -msgid "submission.confirmSubmit" -msgstr "Ви впевнені, що хочете надіслати цей рукопис до видавництва?" - -msgid "manuscript.submissions" -msgstr "Подання Рукописів" - -msgid "submissions.queuedReview" -msgstr "На Рецензуванні" - -msgid "submission.round" -msgstr "Раунд {$round}" - -msgid "manuscript.submission" -msgstr "Подання Рукопису" - -msgid "submission.sharing" -msgstr "Поділитися Цим" - -msgid "submission.download" -msgstr "Завантажити" - -msgid "submission.publicationFormats" -msgstr "Види Видань" - -msgid "submission.copyedit" -msgstr "Літературне Редагування" - -msgid "submission.chapter.pages" -msgstr "Сторінки" - -msgid "submission.chapter.editChapter" -msgstr "Редагувати Розділ" - -msgid "submission.chapter.addChapter" -msgstr "Додати Розділ" - -msgid "submission.chaptersDescription" -msgstr "" -"Ви можете тут перерахувати Розділи і призначити авторів зі списку вище. Ці " -"автори матимуть доступ до Розділів під час різних стадій видавничого процесу." - -msgid "submission.workflowType.authoredWork" -msgstr "Монографія: Автори, що пов'язані з цією книгою в цілому." - -msgid "publication.catalogEntry.success" -msgstr "Деталі запису каталогу були оновлені." - -msgid "submission.upload.fileContents" -msgstr "Компонент Подання" - -msgid "submission.list.saveFeatureOrder" -msgstr "Зберегти порядок сортування" - -msgid "submission.metadataDescription" -msgstr "" -"Ці специфікації базуються на наборі метаданих Dublin Core - міжнародному " -"стандарті, що використовується для опису контенту видавництва." - -msgid "submission.event.publicationMetadataUpdated" -msgstr "Метадані для Виду Видання \"{$formatName}\" було оновлено." - -msgid "submission.event.metadataUnpublished" -msgstr "Метадані монографії більше неопубліковані." - -msgid "submission.submit.userGroupDescription" -msgstr "" -"Якщо ви надсилаєте відредагований том, ви маєте обрати роль редактора тому." - -msgid "submission.submit.whatNext.description" -msgstr "" -"Видавництво отримало повідомлення про подання Вашого рукопису, лист з " -"підтвердженням було направлено на Вашу електронну пошту. Щойно редактори " -"переглянуть Ваш матеріал, ми зв'яжемося з Вами." - -msgid "submission.submit.cancelSubmission" -msgstr "" -"Ви можете завершити це подання пізніше, вибравши його у списку \"Активні " -"подання\" на своїй персональній сторінці." - -msgid "submission.supportingAgencies" -msgstr "Спонсори" - -msgid "submission.publication" -msgstr "Публікація" - -msgid "publication.status.published" -msgstr "Опубліковано" - -msgid "submission.status.scheduled" -msgstr "Запланований" - -msgid "publication.status.unscheduled" -msgstr "Знято з плану" - -msgid "submission.publications" -msgstr "Публікації" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Рік авторського права буде виставлено автоматично після публікації випуску." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "" -"Рік авторського права буде виставлено автоматично, базуючись на даті " -"публікації." - -msgid "publication.datePublished" -msgstr "Дата Публікації" - -msgid "publication.editDisabled" -msgstr "Ця версія була опублікована і не може бути змінена." - -msgid "publication.event.published" -msgstr "Подання було опубліковано." - -msgid "publication.event.scheduled" -msgstr "Подання заплановане до публікації." - -msgid "publication.event.unpublished" -msgstr "Подання було знято з публікації." - -msgid "publication.event.versionPublished" -msgstr "Нова версія опублікована." - -msgid "publication.event.versionScheduled" -msgstr "Нова версія запланована до публікації." - -msgid "publication.event.versionUnpublished" -msgstr "Версія була прибрана з публікації." - -msgid "publication.invalidSubmission" -msgstr "Подання для цієї публікації неможливо знайти." - -msgid "publication.publish" -msgstr "Опублікувати" - -msgid "publication.publish.requirements" -msgstr "Наступні вимоги мають бути виконані перед публікацією." - -msgid "publication.required.declined" -msgstr "Матеріал якому відмовлено, неможливо опублікувати." - -msgid "publication.required.reviewStage" -msgstr "" -"До того як Опублікувати подання, воно має бути на стадії \"Літературне " -"редагування\" або \"Виробництво\"." - -msgid "submission.license.description" -msgstr "" -"Ліцензія призначиться автоматично {$licenseName} коли матеріал буде опубліковано." - -msgid "submission.copyrightHolder.description" -msgstr "" -"Авторське право автоматично призначиться на {$copyright} після публікування " -"матеріалу." - -msgid "submission.copyrightOther.description" -msgstr "Призначити авторські права на опубліковані матеріали наступній стороні." - -msgid "publication.unpublish" -msgstr "Зняти з публікації" - -msgid "publication.unpublish.confirm" -msgstr "Ви впевнені що не хочете публікувати цей матеріал?" - -msgid "publication.unschedule.confirm" -msgstr "Ви впевнені, що не хочете запланувати цей матеріал до публікації?" - -msgid "publication.version.details" -msgstr "Деталі публікації для версії {$version}" - -msgid "submission.queries.production" -msgstr "Обговорення подання" - diff --git a/locale/vi/admin.po b/locale/vi/admin.po new file mode 100644 index 00000000000..105e409b0ce --- /dev/null +++ b/locale/vi/admin.po @@ -0,0 +1,126 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-17 03:04+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "admin.hostedContexts" +msgstr "" + +msgid "admin.settings.appearance.success" +msgstr "" + +msgid "admin.settings.config.success" +msgstr "" + +msgid "admin.settings.info.success" +msgstr "" + +msgid "admin.settings.redirect" +msgstr "" + +msgid "admin.settings.redirectInstructions" +msgstr "" + +msgid "admin.settings.noPressRedirect" +msgstr "" + +msgid "admin.languages.primaryLocaleInstructions" +msgstr "" + +msgid "admin.languages.supportedLocalesInstructions" +msgstr "" + +msgid "admin.locale.maybeIncomplete" +msgstr "" + +msgid "admin.languages.confirmUninstall" +msgstr "" + +msgid "admin.languages.installNewLocalesInstructions" +msgstr "" + +msgid "admin.languages.confirmDisable" +msgstr "" + +msgid "admin.systemVersion" +msgstr "" + +msgid "admin.systemConfiguration" +msgstr "" + +msgid "admin.presses.pressSettings" +msgstr "" + +msgid "admin.presses.noneCreated" +msgstr "" + +msgid "admin.contexts.create" +msgstr "" + +msgid "admin.contexts.form.titleRequired" +msgstr "" + +msgid "admin.contexts.form.pathRequired" +msgstr "" + +msgid "admin.contexts.form.pathAlphaNumeric" +msgstr "" + +msgid "admin.contexts.form.pathExists" +msgstr "" + +msgid "admin.contexts.form.primaryLocaleNotSupported" +msgstr "" + +msgid "admin.contexts.form.create.success" +msgstr "" + +msgid "admin.contexts.form.edit.success" +msgstr "" + +msgid "admin.contexts.contextDescription" +msgstr "" + +msgid "admin.presses.addPress" +msgstr "" + +msgid "admin.overwriteConfigFileInstructions" +msgstr "" + +msgid "admin.settings.enableBulkEmails.description" +msgstr "" + +msgid "admin.settings.disableBulkEmailRoles.description" +msgstr "" + +msgid "admin.settings.disableBulkEmailRoles.contextDisabled" +msgstr "" + +msgid "admin.siteManagement.description" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.chapterId" +msgstr "" + +msgid "admin.job.processLogFile.invalidLogEntry.seriesId" +msgstr "" + +msgid "admin.settings.statistics.geo.description" +msgstr "" + +msgid "admin.settings.statistics.institutions.description" +msgstr "" + +msgid "admin.settings.statistics.sushi.public.description" +msgstr "" + +msgid "admin.settings.statistics.sushiPlatform.isSiteSushiPlatform" +msgstr "" diff --git a/locale/vi/api.po b/locale/vi/api.po new file mode 100644 index 00000000000..5ad8574dd7b --- /dev/null +++ b/locale/vi/api.po @@ -0,0 +1,33 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "api.submissions.400.submissionIdsRequired" +msgstr "" + +msgid "api.submissions.400.submissionsNotFound" +msgstr "" + +msgid "api.submissions.400.wrongContext" +msgstr "" + +msgid "api.emails.403.disabled" +msgstr "" + +msgid "api.emailTemplates.403.notAllowedChangeContext" +msgstr "" + +msgid "api.publications.403.contextsDidNotMatch" +msgstr "" + +msgid "api.publications.403.submissionsDidNotMatch" +msgstr "" + +msgid "api.submissions.403.cantChangeContext" +msgstr "" + +msgid "api.submission.400.inactiveSection" +msgstr "" diff --git a/locale/vi/author.po b/locale/vi/author.po new file mode 100644 index 00000000000..6ed9b167eef --- /dev/null +++ b/locale/vi/author.po @@ -0,0 +1,12 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "author.submit.notAccepting" +msgstr "" + +msgid "author.submit" +msgstr "" diff --git a/locale/vi/default.po b/locale/vi/default.po new file mode 100644 index 00000000000..8e8caff3a23 --- /dev/null +++ b/locale/vi/default.po @@ -0,0 +1,129 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "default.genres.appendix" +msgstr "" + +msgid "default.genres.bibliography" +msgstr "" + +msgid "default.genres.manuscript" +msgstr "" + +msgid "default.genres.chapter" +msgstr "" + +msgid "default.genres.glossary" +msgstr "" + +msgid "default.genres.index" +msgstr "" + +msgid "default.genres.preface" +msgstr "" + +msgid "default.genres.prospectus" +msgstr "" + +msgid "default.genres.table" +msgstr "" + +msgid "default.genres.figure" +msgstr "" + +msgid "default.genres.photo" +msgstr "" + +msgid "default.genres.illustration" +msgstr "" + +msgid "default.genres.other" +msgstr "" + +msgid "default.groups.name.manager" +msgstr "" + +msgid "default.groups.plural.manager" +msgstr "" + +msgid "default.groups.abbrev.manager" +msgstr "" + +msgid "default.groups.name.editor" +msgstr "" + +msgid "default.groups.plural.editor" +msgstr "" + +msgid "default.groups.abbrev.editor" +msgstr "" + +msgid "default.groups.name.sectionEditor" +msgstr "" + +msgid "default.groups.plural.sectionEditor" +msgstr "" + +msgid "default.groups.abbrev.sectionEditor" +msgstr "" + +msgid "default.groups.name.subscriptionManager" +msgstr "" + +msgid "default.groups.plural.subscriptionManager" +msgstr "" + +msgid "default.groups.abbrev.subscriptionManager" +msgstr "" + +msgid "default.groups.name.chapterAuthor" +msgstr "" + +msgid "default.groups.plural.chapterAuthor" +msgstr "" + +msgid "default.groups.abbrev.chapterAuthor" +msgstr "" + +msgid "default.groups.name.volumeEditor" +msgstr "" + +msgid "default.groups.plural.volumeEditor" +msgstr "" + +msgid "default.groups.abbrev.volumeEditor" +msgstr "" + +msgid "default.contextSettings.authorGuidelines" +msgstr "" + +msgid "default.contextSettings.checklist" +msgstr "" + +msgid "default.contextSettings.privacyStatement" +msgstr "" + +msgid "default.contextSettings.openAccessPolicy" +msgstr "" + +msgid "default.contextSettings.forReaders" +msgstr "" + +msgid "default.contextSettings.forAuthors" +msgstr "" + +msgid "default.contextSettings.forLibrarians" +msgstr "" + +msgid "default.groups.name.externalReviewer" +msgstr "" + +msgid "default.groups.plural.externalReviewer" +msgstr "" + +msgid "default.groups.abbrev.externalReviewer" +msgstr "" diff --git a/locale/vi/editor.po b/locale/vi/editor.po new file mode 100644 index 00000000000..f3788ac9797 --- /dev/null +++ b/locale/vi/editor.po @@ -0,0 +1,162 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "editor.submissionArchive" +msgstr "" + +msgid "editor.monograph.cancelReview" +msgstr "" + +msgid "editor.monograph.clearReview" +msgstr "" + +msgid "editor.monograph.enterRecommendation" +msgstr "" + +msgid "editor.monograph.enterReviewerRecommendation" +msgstr "" + +msgid "editor.monograph.recommendation" +msgstr "" + +msgid "editor.monograph.selectReviewerInstructions" +msgstr "" + +msgid "editor.monograph.replaceReviewer" +msgstr "" + +msgid "editor.monograph.editorToEnter" +msgstr "" + +msgid "editor.monograph.uploadReviewForReviewer" +msgstr "" + +msgid "editor.monograph.peerReviewOptions" +msgstr "" + +msgid "editor.monograph.selectProofreadingFiles" +msgstr "" + +msgid "editor.monograph.internalReview" +msgstr "" + +msgid "editor.monograph.internalReviewDescription" +msgstr "" + +msgid "editor.monograph.externalReview" +msgstr "" + +msgid "editor.monograph.final.selectFinalDraftFiles" +msgstr "" + +msgid "editor.monograph.final.currentFiles" +msgstr "" + +msgid "editor.monograph.copyediting.currentFiles" +msgstr "" + +msgid "editor.monograph.copyediting.personalMessageToUser" +msgstr "" + +msgid "editor.monograph.legend.submissionActions" +msgstr "" + +msgid "editor.monograph.legend.submissionActionsDescription" +msgstr "" + +msgid "editor.monograph.legend.sectionActions" +msgstr "" + +msgid "editor.monograph.legend.sectionActionsDescription" +msgstr "" + +msgid "editor.monograph.legend.itemActions" +msgstr "" + +msgid "editor.monograph.legend.itemActionsDescription" +msgstr "" + +msgid "editor.monograph.legend.catalogEntry" +msgstr "" + +msgid "editor.monograph.legend.bookInfo" +msgstr "" + +msgid "editor.monograph.legend.participants" +msgstr "" + +msgid "editor.monograph.legend.add" +msgstr "" + +msgid "editor.monograph.legend.add_user" +msgstr "" + +msgid "editor.monograph.legend.settings" +msgstr "" + +msgid "editor.monograph.legend.more_info" +msgstr "" + +msgid "editor.monograph.legend.notes_none" +msgstr "" + +msgid "editor.monograph.legend.notes" +msgstr "" + +msgid "editor.monograph.legend.notes_new" +msgstr "" + +msgid "editor.monograph.legend.edit" +msgstr "" + +msgid "editor.monograph.legend.delete" +msgstr "" + +msgid "editor.monograph.legend.in_progress" +msgstr "" + +msgid "editor.monograph.legend.complete" +msgstr "" + +msgid "editor.monograph.legend.uploaded" +msgstr "" + +msgid "editor.submission.introduction" +msgstr "" + +msgid "editor.monograph.editorial.fairCopy" +msgstr "" + +msgid "editor.monograph.proofs" +msgstr "" + +msgid "editor.monograph.production.approvalAndPublishing" +msgstr "" + +msgid "editor.monograph.production.approvalAndPublishingDescription" +msgstr "" + +msgid "editor.monograph.production.publicationFormatDescription" +msgstr "" + +msgid "editor.monograph.approvedProofs.edit" +msgstr "" + +msgid "editor.monograph.approvedProofs.edit.linkTitle" +msgstr "" + +msgid "editor.monograph.proof.addNote" +msgstr "" + +msgid "editor.submission.proof.manageProofFilesDescription" +msgstr "" + +msgid "editor.publicIdentificationExistsForTheSameType" +msgstr "" + +msgid "editor.submissions.assignedTo" +msgstr "" diff --git a/locale/vi/emails.po b/locale/vi/emails.po new file mode 100644 index 00000000000..3a44b3c9b37 --- /dev/null +++ b/locale/vi/emails.po @@ -0,0 +1,182 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "emails.passwordResetConfirm.subject" +msgstr "" + +msgid "emails.passwordResetConfirm.body" +msgstr "" + +msgid "emails.passwordReset.subject" +msgstr "" + +msgid "emails.passwordReset.body" +msgstr "" + +msgid "emails.userRegister.subject" +msgstr "" + +msgid "emails.userRegister.body" +msgstr "" + +msgid "emails.userValidateContext.subject" +msgstr "" + +msgid "emails.userValidateContext.body" +msgstr "" + +msgid "emails.userValidateSite.subject" +msgstr "" + +msgid "emails.userValidateSite.body" +msgstr "" + +msgid "emails.reviewerRegister.subject" +msgstr "" + +msgid "emails.reviewerRegister.body" +msgstr "" + +msgid "emails.editorAssign.subject" +msgstr "" + +msgid "emails.editorAssign.body" +msgstr "" + +msgid "emails.reviewRequest.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequest.body" +msgstr "" + +msgid "emails.reviewRequestSubsequent.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRequestSubsequent.body" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.subject" +msgstr "" + +msgid "emails.reviewResponseOverdueAuto.body" +msgstr "" + +msgid "emails.reviewCancel.subject" +msgstr "" + +msgid "emails.reviewCancel.body" +msgstr "" + +#, fuzzy +msgid "emails.reviewReinstate.body" +msgstr "" + +msgid "emails.reviewReinstate.body" +msgstr "" + +msgid "emails.reviewDecline.subject" +msgstr "" + +msgid "emails.reviewDecline.body" +msgstr "" + +#, fuzzy +msgid "emails.reviewRemind.subject" +msgstr "" + +#, fuzzy +msgid "emails.reviewRemind.body" +msgstr "" + +#, fuzzy +msgid "emails.reviewRemindAuto.body" +msgstr "" + +msgid "emails.editorDecisionAccept.subject" +msgstr "" + +msgid "emails.editorDecisionAccept.body" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.subject" +msgstr "" + +msgid "emails.editorDecisionSendToInternal.body" +msgstr "" + +msgid "emails.editorDecisionSkipReview.subject" +msgstr "" + +msgid "emails.editorDecisionSkipReview.body" +msgstr "" + +msgid "emails.layoutRequest.subject" +msgstr "" + +#, fuzzy +msgid "emails.layoutRequest.body" +msgstr "" + +msgid "emails.layoutComplete.subject" +msgstr "" + +#, fuzzy +msgid "emails.layoutComplete.body" +msgstr "" + +msgid "emails.indexRequest.subject" +msgstr "" + +msgid "emails.indexRequest.body" +msgstr "" + +msgid "emails.indexComplete.subject" +msgstr "" + +msgid "emails.indexComplete.body" +msgstr "" + +msgid "emails.emailLink.subject" +msgstr "" + +msgid "emails.emailLink.body" +msgstr "" + +msgid "emails.emailLink.description" +msgstr "" + +msgid "emails.notifySubmission.subject" +msgstr "" + +msgid "emails.notifySubmission.body" +msgstr "" + +msgid "emails.notifySubmission.description" +msgstr "" + +msgid "emails.notifyFile.subject" +msgstr "" + +msgid "emails.notifyFile.body" +msgstr "" + +msgid "emails.notifyFile.description" +msgstr "" + +msgid "emails.statisticsReportNotification.subject" +msgstr "" + +msgid "emails.statisticsReportNotification.body" +msgstr "" + +msgid "emails.announcement.subject" +msgstr "" + +msgid "emails.announcement.body" +msgstr "" diff --git a/locale/vi/locale.po b/locale/vi/locale.po new file mode 100644 index 00000000000..61e1189caf4 --- /dev/null +++ b/locale/vi/locale.po @@ -0,0 +1,1448 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "common.payments" +msgstr "" + +msgid "monograph.audience" +msgstr "" + +msgid "monograph.audience.success" +msgstr "" + +msgid "monograph.coverImage" +msgstr "" + +msgid "monograph.audience.rangeQualifier" +msgstr "" + +msgid "monograph.audience.rangeFrom" +msgstr "" + +msgid "monograph.audience.rangeTo" +msgstr "" + +msgid "monograph.audience.rangeExact" +msgstr "" + +msgid "monograph.languages" +msgstr "" + +msgid "monograph.publicationFormats" +msgstr "" + +msgid "monograph.publicationFormat" +msgstr "" + +msgid "monograph.publicationFormatDetails" +msgstr "" + +msgid "monograph.miscellaneousDetails" +msgstr "" + +msgid "monograph.carousel.publicationFormats" +msgstr "" + +msgid "monograph.type" +msgstr "" + +msgid "submission.pageProofs" +msgstr "" + +msgid "monograph.proofReadingDescription" +msgstr "" + +msgid "monograph.task.addNote" +msgstr "" + +msgid "monograph.accessLogoOpen.altText" +msgstr "" + +msgid "monograph.publicationFormat.imprint" +msgstr "" + +msgid "monograph.publicationFormat.pageCounts" +msgstr "" + +msgid "monograph.publicationFormat.frontMatterCount" +msgstr "" + +msgid "monograph.publicationFormat.backMatterCount" +msgstr "" + +msgid "monograph.publicationFormat.productComposition" +msgstr "" + +msgid "monograph.publicationFormat.productFormDetailCode" +msgstr "" + +msgid "monograph.publicationFormat.productIdentifierType" +msgstr "" + +msgid "monograph.publicationFormat.price" +msgstr "" + +msgid "monograph.publicationFormat.priceRequired" +msgstr "" + +msgid "monograph.publicationFormat.priceType" +msgstr "" + +msgid "monograph.publicationFormat.discountAmount" +msgstr "" + +msgid "monograph.publicationFormat.productAvailability" +msgstr "" + +msgid "monograph.publicationFormat.returnInformation" +msgstr "" + +msgid "monograph.publicationFormat.digitalInformation" +msgstr "" + +msgid "monograph.publicationFormat.productDimensions" +msgstr "" + +msgid "monograph.publicationFormat.productDimensionsSeparator" +msgstr "" + +msgid "monograph.publicationFormat.productFileSize" +msgstr "" + +msgid "monograph.publicationFormat.productFileSize.override" +msgstr "" + +msgid "monograph.publicationFormat.productHeight" +msgstr "" + +msgid "monograph.publicationFormat.productThickness" +msgstr "" + +msgid "monograph.publicationFormat.productWeight" +msgstr "" + +msgid "monograph.publicationFormat.productWidth" +msgstr "" + +msgid "monograph.publicationFormat.countryOfManufacture" +msgstr "" + +msgid "monograph.publicationFormat.technicalProtection" +msgstr "" + +msgid "monograph.publicationFormat.productRegion" +msgstr "" + +msgid "monograph.publicationFormat.taxRate" +msgstr "" + +msgid "monograph.publicationFormat.taxType" +msgstr "" + +msgid "monograph.publicationFormat.isApproved" +msgstr "" + +msgid "monograph.publicationFormat.noMarketsAssigned" +msgstr "" + +msgid "monograph.publicationFormat.noCodesAssigned" +msgstr "" + +msgid "monograph.publicationFormat.missingONIXFields" +msgstr "" + +msgid "monograph.publicationFormat.formatDoesNotExist" +msgstr "" + +msgid "monograph.publicationFormat.openTab" +msgstr "" + +msgid "grid.catalogEntry.publicationFormatType" +msgstr "" + +msgid "grid.catalogEntry.nameRequired" +msgstr "" + +msgid "grid.catalogEntry.validPriceRequired" +msgstr "" + +msgid "grid.catalogEntry.publicationFormatDetails" +msgstr "" + +msgid "grid.catalogEntry.physicalFormat" +msgstr "" + +msgid "grid.catalogEntry.remotelyHostedContent" +msgstr "" + +msgid "grid.catalogEntry.remoteURL" +msgstr "" + +msgid "grid.catalogEntry.isbn" +msgstr "" + +msgid "grid.catalogEntry.isbn13.description" +msgstr "" + +msgid "grid.catalogEntry.isbn10.description" +msgstr "" + +msgid "grid.catalogEntry.monographRequired" +msgstr "" + +msgid "grid.catalogEntry.publicationFormatRequired" +msgstr "" + +msgid "grid.catalogEntry.availability" +msgstr "" + +msgid "grid.catalogEntry.isAvailable" +msgstr "" + +msgid "grid.catalogEntry.isNotAvailable" +msgstr "" + +msgid "grid.catalogEntry.proof" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.title" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.message" +msgstr "" + +msgid "grid.catalogEntry.approvedRepresentation.removeMessage" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.title" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.message" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.removeMessage" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.catalogNotApprovedWarning" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.notApprovedWarning" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.proofNotApproved" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.approved" +msgstr "" + +msgid "grid.catalogEntry.availableRepresentation.notApproved" +msgstr "" + +msgid "grid.catalogEntry.fileSizeRequired" +msgstr "" + +msgid "grid.catalogEntry.productAvailabilityRequired" +msgstr "" + +msgid "grid.catalogEntry.productCompositionRequired" +msgstr "" + +msgid "grid.catalogEntry.identificationCodeValue" +msgstr "" + +msgid "grid.catalogEntry.identificationCodeType" +msgstr "" + +msgid "grid.catalogEntry.codeRequired" +msgstr "" + +msgid "grid.catalogEntry.valueRequired" +msgstr "" + +msgid "grid.catalogEntry.salesRights" +msgstr "" + +msgid "grid.catalogEntry.salesRightsValue" +msgstr "" + +msgid "grid.catalogEntry.salesRightsType" +msgstr "" + +msgid "grid.catalogEntry.salesRightsROW" +msgstr "" + +msgid "grid.catalogEntry.salesRightsROW.tip" +msgstr "" + +msgid "grid.catalogEntry.oneROWPerFormat" +msgstr "" + +msgid "grid.catalogEntry.countries" +msgstr "" + +msgid "grid.catalogEntry.regions" +msgstr "" + +msgid "grid.catalogEntry.included" +msgstr "" + +msgid "grid.catalogEntry.excluded" +msgstr "" + +msgid "grid.catalogEntry.markets" +msgstr "" + +msgid "grid.catalogEntry.marketTerritory" +msgstr "" + +msgid "grid.catalogEntry.publicationDates" +msgstr "" + +msgid "grid.catalogEntry.roleRequired" +msgstr "" + +msgid "grid.catalogEntry.dateFormatRequired" +msgstr "" + +msgid "grid.catalogEntry.dateValue" +msgstr "" + +msgid "grid.catalogEntry.dateRole" +msgstr "" + +msgid "grid.catalogEntry.dateFormat" +msgstr "" + +msgid "grid.catalogEntry.dateRequired" +msgstr "" + +msgid "grid.catalogEntry.representatives" +msgstr "" + +msgid "grid.catalogEntry.representativeType" +msgstr "" + +msgid "grid.catalogEntry.agentsCategory" +msgstr "" + +msgid "grid.catalogEntry.suppliersCategory" +msgstr "" + +msgid "grid.catalogEntry.agent" +msgstr "" + +msgid "grid.catalogEntry.agentTip" +msgstr "" + +msgid "grid.catalogEntry.supplier" +msgstr "" + +msgid "grid.catalogEntry.representativeRoleChoice" +msgstr "" + +msgid "grid.catalogEntry.representativeRole" +msgstr "" + +msgid "grid.catalogEntry.representativeName" +msgstr "" + +msgid "grid.catalogEntry.representativePhone" +msgstr "" + +msgid "grid.catalogEntry.representativeEmail" +msgstr "" + +msgid "grid.catalogEntry.representativeWebsite" +msgstr "" + +msgid "grid.catalogEntry.representativeIdValue" +msgstr "" + +msgid "grid.catalogEntry.representativeIdType" +msgstr "" + +msgid "grid.catalogEntry.representativesDescription" +msgstr "" + +msgid "grid.action.addRepresentative" +msgstr "" + +msgid "grid.action.editRepresentative" +msgstr "" + +msgid "grid.action.deleteRepresentative" +msgstr "" + +msgid "spotlight" +msgstr "" + +msgid "spotlight.spotlights" +msgstr "" + +msgid "spotlight.noneExist" +msgstr "" + +msgid "spotlight.title.homePage" +msgstr "" + +msgid "spotlight.author" +msgstr "" + +msgid "grid.content.spotlights.spotlightItemTitle" +msgstr "" + +msgid "grid.content.spotlights.category.homepage" +msgstr "" + +msgid "grid.content.spotlights.form.location" +msgstr "" + +msgid "grid.content.spotlights.form.item" +msgstr "" + +msgid "grid.content.spotlights.form.title" +msgstr "" + +msgid "grid.content.spotlights.form.type.book" +msgstr "" + +msgid "grid.content.spotlights.itemRequired" +msgstr "" + +msgid "grid.content.spotlights.titleRequired" +msgstr "" + +msgid "grid.content.spotlights.locationRequired" +msgstr "" + +msgid "grid.action.editSpotlight" +msgstr "" + +msgid "grid.action.deleteSpotlight" +msgstr "" + +msgid "grid.action.addSpotlight" +msgstr "" + +msgid "manager.series.open" +msgstr "" + +msgid "manager.series.indexed" +msgstr "" + +msgid "grid.libraryFiles.column.files" +msgstr "" + +msgid "grid.action.catalogEntry" +msgstr "" + +msgid "grid.action.formatInCatalogEntry" +msgstr "" + +msgid "grid.action.editFormat" +msgstr "" + +msgid "grid.action.deleteFormat" +msgstr "" + +msgid "grid.action.addFormat" +msgstr "" + +msgid "grid.action.approveProof" +msgstr "" + +msgid "grid.action.pageProofApproved" +msgstr "" + +msgid "grid.action.newCatalogEntry" +msgstr "" + +msgid "grid.action.publicCatalog" +msgstr "" + +msgid "grid.action.feature" +msgstr "" + +msgid "grid.action.featureMonograph" +msgstr "" + +msgid "grid.action.releaseMonograph" +msgstr "" + +msgid "grid.action.manageCategories" +msgstr "" + +msgid "grid.action.manageSeries" +msgstr "" + +msgid "grid.action.addCode" +msgstr "" + +msgid "grid.action.editCode" +msgstr "" + +msgid "grid.action.deleteCode" +msgstr "" + +msgid "grid.action.addRights" +msgstr "" + +msgid "grid.action.editRights" +msgstr "" + +msgid "grid.action.deleteRights" +msgstr "" + +msgid "grid.action.addMarket" +msgstr "" + +msgid "grid.action.editMarket" +msgstr "" + +msgid "grid.action.deleteMarket" +msgstr "" + +msgid "grid.action.addDate" +msgstr "" + +msgid "grid.action.editDate" +msgstr "" + +msgid "grid.action.deleteDate" +msgstr "" + +msgid "grid.action.createContext" +msgstr "" + +msgid "grid.action.publicationFormatTab" +msgstr "" + +msgid "grid.action.moreAnnouncements" +msgstr "" + +msgid "grid.action.submissionEmail" +msgstr "" + +msgid "grid.action.approveProofs" +msgstr "" + +msgid "grid.action.proofApproved" +msgstr "" + +msgid "grid.action.availableRepresentation" +msgstr "" + +msgid "grid.action.formatAvailable" +msgstr "" + +msgid "grid.reviewAttachments.add" +msgstr "" + +msgid "grid.reviewAttachments.availableFiles" +msgstr "" + +msgid "series.series" +msgstr "" + +msgid "series.featured.description" +msgstr "" + +msgid "series.path" +msgstr "" + +msgid "catalog.manage" +msgstr "" + +msgid "catalog.manage.newReleases" +msgstr "" + +msgid "catalog.manage.category" +msgstr "" + +msgid "catalog.manage.series" +msgstr "" + +msgid "catalog.manage.series.issn" +msgstr "" + +msgid "catalog.manage.series.issn.validation" +msgstr "" + +msgid "catalog.manage.series.issn.equalValidation" +msgstr "" + +msgid "catalog.manage.series.onlineIssn" +msgstr "" + +msgid "catalog.manage.series.printIssn" +msgstr "" + +msgid "catalog.selectSeries" +msgstr "" + +msgid "catalog.selectCategory" +msgstr "" + +msgid "catalog.manage.homepageDescription" +msgstr "" + +msgid "catalog.manage.categoryDescription" +msgstr "" + +msgid "catalog.manage.seriesDescription" +msgstr "" + +msgid "catalog.manage.placeIntoCarousel" +msgstr "" + +msgid "catalog.manage.newRelease" +msgstr "" + +msgid "catalog.manage.manageSeries" +msgstr "" + +msgid "catalog.manage.manageCategories" +msgstr "" + +msgid "catalog.manage.noMonographs" +msgstr "" + +msgid "catalog.manage.featured" +msgstr "" + +msgid "catalog.manage.categoryFeatured" +msgstr "" + +msgid "catalog.manage.seriesFeatured" +msgstr "" + +msgid "catalog.manage.featuredSuccess" +msgstr "" + +msgid "catalog.manage.notFeaturedSuccess" +msgstr "" + +msgid "catalog.manage.newReleaseSuccess" +msgstr "" + +msgid "catalog.manage.notNewReleaseSuccess" +msgstr "" + +msgid "catalog.manage.feature.newRelease" +msgstr "" + +msgid "catalog.manage.feature.categoryNewRelease" +msgstr "" + +msgid "catalog.manage.feature.seriesNewRelease" +msgstr "" + +msgid "catalog.manage.nonOrderable" +msgstr "" + +msgid "catalog.manage.filter.searchByAuthorOrTitle" +msgstr "" + +msgid "catalog.manage.isFeatured" +msgstr "" + +msgid "catalog.manage.isNotFeatured" +msgstr "" + +msgid "catalog.manage.isNewRelease" +msgstr "" + +msgid "catalog.manage.isNotNewRelease" +msgstr "" + +msgid "catalog.manage.noSubmissionsSelected" +msgstr "" + +msgid "catalog.manage.submissionsNotFound" +msgstr "" + +msgid "catalog.manage.findSubmissions" +msgstr "" + +msgid "catalog.noTitles" +msgstr "" + +msgid "catalog.noTitlesNew" +msgstr "" + +msgid "catalog.noTitlesSearch" +msgstr "" + +msgid "catalog.feature" +msgstr "" + +msgid "catalog.featured" +msgstr "" + +msgid "catalog.featuredBooks" +msgstr "" + +msgid "catalog.foundTitleSearch" +msgstr "" + +msgid "catalog.foundTitlesSearch" +msgstr "" + +msgid "catalog.category.heading" +msgstr "" + +msgid "catalog.newReleases" +msgstr "" + +msgid "catalog.dateAdded" +msgstr "" + +msgid "catalog.publicationInfo" +msgstr "" + +msgid "catalog.published" +msgstr "" + +msgid "catalog.forthcoming" +msgstr "" + +msgid "catalog.categories" +msgstr "" + +msgid "catalog.parentCategory" +msgstr "" + +msgid "catalog.category.subcategories" +msgstr "" + +msgid "catalog.aboutTheAuthor" +msgstr "" + +msgid "catalog.loginRequiredForPayment" +msgstr "" + +msgid "catalog.sortBy" +msgstr "" + +msgid "catalog.sortBy.seriesDescription" +msgstr "" + +msgid "catalog.sortBy.categoryDescription" +msgstr "" + +msgid "catalog.sortBy.catalogDescription" +msgstr "" + +msgid "catalog.sortBy.seriesPositionAsc" +msgstr "" + +msgid "catalog.sortBy.seriesPositionDesc" +msgstr "" + +msgid "catalog.viewableFile.title" +msgstr "" + +msgid "catalog.viewableFile.return" +msgstr "" + +msgid "submission.search" +msgstr "" + +msgid "common.publication" +msgstr "" + +msgid "common.publications" +msgstr "" + +msgid "common.prefix" +msgstr "" + +msgid "common.preview" +msgstr "" + +msgid "common.feature" +msgstr "" + +msgid "common.searchCatalog" +msgstr "" + +msgid "common.moreInfo" +msgstr "" + +msgid "common.listbuilder.completeForm" +msgstr "" + +msgid "common.listbuilder.selectValidOption" +msgstr "" + +msgid "common.listbuilder.itemExists" +msgstr "" + +msgid "common.software" +msgstr "" + +msgid "common.omp" +msgstr "" + +msgid "common.homePageHeader.altText" +msgstr "" + +msgid "navigation.catalog" +msgstr "" + +msgid "navigation.competingInterestPolicy" +msgstr "" + +msgid "navigation.catalog.allMonographs" +msgstr "" + +msgid "navigation.catalog.manage" +msgstr "" + +msgid "navigation.catalog.administration.short" +msgstr "" + +msgid "navigation.catalog.administration" +msgstr "" + +msgid "navigation.catalog.administration.categories" +msgstr "" + +msgid "navigation.catalog.administration.series" +msgstr "" + +msgid "navigation.infoForAuthors" +msgstr "" + +msgid "navigation.infoForLibrarians" +msgstr "" + +msgid "navigation.infoForAuthors.long" +msgstr "" + +msgid "navigation.infoForLibrarians.long" +msgstr "" + +msgid "navigation.newReleases" +msgstr "" + +msgid "navigation.published" +msgstr "" + +msgid "navigation.wizard" +msgstr "" + +msgid "navigation.linksAndMedia" +msgstr "" + +msgid "navigation.navigationMenus.catalog.description" +msgstr "" + +msgid "navigation.skip.spotlights" +msgstr "" + +msgid "navigation.navigationMenus.series.generic" +msgstr "" + +msgid "navigation.navigationMenus.series.description" +msgstr "" + +msgid "navigation.navigationMenus.category.generic" +msgstr "" + +msgid "navigation.navigationMenus.category.description" +msgstr "" + +msgid "navigation.navigationMenus.newRelease" +msgstr "" + +msgid "navigation.navigationMenus.newRelease.description" +msgstr "" + +msgid "context.contexts" +msgstr "" + +msgid "context.context" +msgstr "" + +msgid "context.current" +msgstr "" + +msgid "context.select" +msgstr "" + +msgid "user.authorization.representationNotFound" +msgstr "" + +msgid "user.noRoles.selectUsersWithoutRoles" +msgstr "" + +msgid "user.noRoles.submitMonograph" +msgstr "" + +msgid "user.noRoles.submitMonographRegClosed" +msgstr "" + +msgid "user.noRoles.regReviewer" +msgstr "" + +msgid "user.noRoles.regReviewerClosed" +msgstr "" + +msgid "user.reviewerPrompt" +msgstr "" + +msgid "user.reviewerPrompt.userGroup" +msgstr "" + +msgid "user.reviewerPrompt.optin" +msgstr "" + +msgid "user.register.contextsPrompt" +msgstr "" + +msgid "user.register.otherContextRoles" +msgstr "" + +msgid "user.register.noContextReviewerInterests" +msgstr "" + +msgid "user.role.manager" +msgstr "" + +msgid "user.role.pressEditor" +msgstr "" + +msgid "user.role.subEditor" +msgstr "" + +msgid "user.role.copyeditor" +msgstr "" + +msgid "user.role.proofreader" +msgstr "" + +msgid "user.role.productionEditor" +msgstr "" + +msgid "user.role.managers" +msgstr "" + +msgid "user.role.subEditors" +msgstr "" + +msgid "user.role.editors" +msgstr "" + +msgid "user.role.copyeditors" +msgstr "" + +msgid "user.role.proofreaders" +msgstr "" + +msgid "user.role.productionEditors" +msgstr "" + +msgid "user.register.selectContext" +msgstr "" + +msgid "user.register.noContexts" +msgstr "" + +msgid "user.register.privacyStatement" +msgstr "" + +msgid "user.register.registrationDisabled" +msgstr "" + +msgid "user.register.form.passwordLengthTooShort" +msgstr "" + +msgid "user.register.readerDescription" +msgstr "" + +msgid "user.register.authorDescription" +msgstr "" + +msgid "user.register.reviewerDescriptionNoInterests" +msgstr "" + +msgid "user.register.reviewerDescription" +msgstr "" + +msgid "user.register.reviewerInterests" +msgstr "" + +msgid "user.register.form.userGroupRequired" +msgstr "" + +msgid "user.register.form.privacyConsentThisContext" +msgstr "" + +msgid "site.noPresses" +msgstr "" + +msgid "site.pressView" +msgstr "" + +msgid "about.pressContact" +msgstr "" + +msgid "about.aboutContext" +msgstr "" + +msgid "about.editorialTeam" +msgstr "" + +msgid "about.editorialPolicies" +msgstr "" + +msgid "about.focusAndScope" +msgstr "" + +msgid "about.seriesPolicies" +msgstr "" + +msgid "about.submissions" +msgstr "" + +msgid "about.onlineSubmissions" +msgstr "" + +msgid "about.onlineSubmissions.login" +msgstr "" + +msgid "about.onlineSubmissions.register" +msgstr "" + +msgid "about.onlineSubmissions.registrationRequired" +msgstr "" + +msgid "about.onlineSubmissions.submissionActions" +msgstr "" + +msgid "about.onlineSubmissions.newSubmission" +msgstr "" + +msgid "about.onlineSubmissions.viewSubmissions" +msgstr "" + +msgid "about.authorGuidelines" +msgstr "" + +msgid "about.submissionPreparationChecklist" +msgstr "" + +msgid "about.submissionPreparationChecklist.description" +msgstr "" + +msgid "about.copyrightNotice" +msgstr "" + +msgid "about.privacyStatement" +msgstr "" + +msgid "about.reviewPolicy" +msgstr "" + +msgid "about.publicationFrequency" +msgstr "" + +msgid "about.openAccessPolicy" +msgstr "" + +msgid "about.pressSponsorship" +msgstr "" + +msgid "about.aboutThisPublishingSystem" +msgstr "" + +msgid "about.aboutThisPublishingSystem.altText" +msgstr "" + +msgid "about.aboutSoftware" +msgstr "" + +msgid "about.aboutOMPPress" +msgstr "" + +msgid "about.aboutOMPSite" +msgstr "" + +msgid "help.searchReturnResults" +msgstr "" + +msgid "help.goToEditPage" +msgstr "" + +msgid "installer.appInstallation" +msgstr "" + +msgid "installer.ompUpgrade" +msgstr "" + +msgid "installer.installApplication" +msgstr "" + +msgid "installer.updatingInstructions" +msgstr "" + +msgid "installer.installationInstructions" +msgstr "" + +msgid "installer.preInstallationInstructionsTitle" +msgstr "" + +msgid "installer.preInstallationInstructions" +msgstr "" + +msgid "installer.upgradeInstructions" +msgstr "" + +msgid "installer.localeSettingsInstructions" +msgstr "" + +msgid "installer.allowFileUploads" +msgstr "" + +msgid "installer.maxFileUploadSize" +msgstr "" + +msgid "installer.localeInstructions" +msgstr "" + +msgid "installer.additionalLocalesInstructions" +msgstr "" + +msgid "installer.filesDirInstructions" +msgstr "" + +msgid "installer.databaseSettingsInstructions" +msgstr "" + +msgid "installer.upgradeApplication" +msgstr "" + +msgid "installer.overwriteConfigFileInstructions" +msgstr "" + +#, fuzzy +msgid "installer.installationComplete" +msgstr "" + +#, fuzzy +msgid "installer.upgradeComplete" +msgstr "" + +msgid "log.review.reviewDueDateSet" +msgstr "" + +msgid "log.review.reviewDeclined" +msgstr "" + +msgid "log.review.reviewAccepted" +msgstr "" + +msgid "log.review.reviewUnconsidered" +msgstr "" + +msgid "log.editor.decision" +msgstr "" + +msgid "log.editor.recommendation" +msgstr "" + +msgid "log.editor.archived" +msgstr "" + +msgid "log.editor.restored" +msgstr "" + +msgid "log.editor.editorAssigned" +msgstr "" + +msgid "log.proofread.assign" +msgstr "" + +msgid "log.proofread.complete" +msgstr "" + +msgid "log.imported" +msgstr "" + +msgid "notification.addedIdentificationCode" +msgstr "" + +msgid "notification.editedIdentificationCode" +msgstr "" + +msgid "notification.removedIdentificationCode" +msgstr "" + +msgid "notification.addedPublicationDate" +msgstr "" + +msgid "notification.editedPublicationDate" +msgstr "" + +msgid "notification.removedPublicationDate" +msgstr "" + +msgid "notification.addedPublicationFormat" +msgstr "" + +msgid "notification.editedPublicationFormat" +msgstr "" + +msgid "notification.removedPublicationFormat" +msgstr "" + +msgid "notification.addedSalesRights" +msgstr "" + +msgid "notification.editedSalesRights" +msgstr "" + +msgid "notification.removedSalesRights" +msgstr "" + +msgid "notification.addedRepresentative" +msgstr "" + +msgid "notification.editedRepresentative" +msgstr "" + +msgid "notification.removedRepresentative" +msgstr "" + +msgid "notification.addedMarket" +msgstr "" + +msgid "notification.editedMarket" +msgstr "" + +msgid "notification.removedMarket" +msgstr "" + +msgid "notification.addedSpotlight" +msgstr "" + +msgid "notification.editedSpotlight" +msgstr "" + +msgid "notification.removedSpotlight" +msgstr "" + +msgid "notification.savedCatalogMetadata" +msgstr "" + +msgid "notification.savedPublicationFormatMetadata" +msgstr "" + +msgid "notification.proofsApproved" +msgstr "" + +msgid "notification.removedSubmission" +msgstr "" + +msgid "notification.type.submissionSubmitted" +msgstr "" + +msgid "notification.type.editing" +msgstr "" + +msgid "notification.type.reviewing" +msgstr "" + +msgid "notification.type.site" +msgstr "" + +msgid "notification.type.submissions" +msgstr "" + +msgid "notification.type.userComment" +msgstr "" + +msgid "notification.type.public" +msgstr "" + +msgid "notification.type.editorAssignmentTask" +msgstr "" + +msgid "notification.type.copyeditorRequest" +msgstr "" + +msgid "notification.type.layouteditorRequest" +msgstr "" + +msgid "notification.type.indexRequest" +msgstr "" + +msgid "notification.type.editorDecisionInternalReview" +msgstr "" + +msgid "notification.type.approveSubmission" +msgstr "" + +msgid "notification.type.approveSubmissionTitle" +msgstr "" + +msgid "notification.type.formatNeedsApprovedSubmission" +msgstr "" + +msgid "notification.type.configurePaymentMethod.title" +msgstr "" + +msgid "notification.type.configurePaymentMethod" +msgstr "" + +msgid "notification.type.visitCatalogTitle" +msgstr "" + +msgid "notification.type.visitCatalog" +msgstr "" + +msgid "user.authorization.invalidReviewAssignment" +msgstr "" + +msgid "user.authorization.monographAuthor" +msgstr "" + +msgid "user.authorization.monographReviewer" +msgstr "" + +msgid "user.authorization.monographFile" +msgstr "" + +msgid "user.authorization.invalidMonograph" +msgstr "" + +msgid "user.authorization.noContext" +msgstr "" + +msgid "user.authorization.seriesAssignment" +msgstr "" + +msgid "user.authorization.workflowStageAssignmentMissing" +msgstr "" + +msgid "user.authorization.workflowStageSettingMissing" +msgstr "" + +msgid "payment.directSales" +msgstr "" + +msgid "payment.directSales.price" +msgstr "" + +msgid "payment.directSales.availability" +msgstr "" + +msgid "payment.directSales.catalog" +msgstr "" + +msgid "payment.directSales.approved" +msgstr "" + +msgid "payment.directSales.priceCurrency" +msgstr "" + +msgid "payment.directSales.numericOnly" +msgstr "" + +msgid "payment.directSales.directSales" +msgstr "" + +msgid "payment.directSales.amount" +msgstr "" + +msgid "payment.directSales.notAvailable" +msgstr "" + +msgid "payment.directSales.notSet" +msgstr "" + +msgid "payment.directSales.openAccess" +msgstr "" + +msgid "payment.directSales.price.description" +msgstr "" + +msgid "payment.directSales.validPriceRequired" +msgstr "" + +msgid "payment.directSales.purchase" +msgstr "" + +msgid "payment.directSales.download" +msgstr "" + +msgid "payment.directSales.monograph.name" +msgstr "" + +msgid "payment.directSales.monograph.description" +msgstr "" + +msgid "debug.notes.helpMappingLoad" +msgstr "" + +msgid "rt.metadata.pkp.dctype" +msgstr "" + +msgid "submission.pdf.download" +msgstr "" + +msgid "user.profile.form.showOtherContexts" +msgstr "" + +msgid "user.profile.form.hideOtherContexts" +msgstr "" + +msgid "submission.round" +msgstr "" + +msgid "user.authorization.invalidPublishedSubmission" +msgstr "" + +msgid "catalog.coverImageTitle" +msgstr "" + +msgid "grid.catalogEntry.chapters" +msgstr "" + +msgid "search.results.orderBy.article" +msgstr "" + +msgid "search.results.orderBy.author" +msgstr "" + +msgid "search.results.orderBy.date" +msgstr "" + +msgid "search.results.orderBy.monograph" +msgstr "" + +msgid "search.results.orderBy.press" +msgstr "" + +msgid "search.results.orderBy.popularityAll" +msgstr "" + +msgid "search.results.orderBy.popularityMonth" +msgstr "" + +msgid "search.results.orderBy.relevance" +msgstr "" + +msgid "search.results.orderDir.asc" +msgstr "" + +msgid "search.results.orderDir.desc" +msgstr "" + +msgid "section.section" +msgstr "" diff --git a/locale/vi/manager.po b/locale/vi/manager.po new file mode 100644 index 00000000000..23f112abcd0 --- /dev/null +++ b/locale/vi/manager.po @@ -0,0 +1,1307 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "manager.language.confirmDefaultSettingsOverwrite" +msgstr "" + +msgid "manager.languages.noneAvailable" +msgstr "" + +msgid "manager.languages.primaryLocaleInstructions" +msgstr "" + +msgid "manager.series.form.mustAllowPermission" +msgstr "" + +msgid "manager.series.form.reviewFormId" +msgstr "" + +msgid "manager.series.submissionIndexing" +msgstr "" + +msgid "manager.series.editorRestriction" +msgstr "" + +msgid "manager.series.confirmDelete" +msgstr "" + +msgid "manager.series.indexed" +msgstr "" + +msgid "manager.series.open" +msgstr "" + +msgid "manager.series.readingTools" +msgstr "" + +msgid "manager.series.submissionReview" +msgstr "" + +msgid "manager.series.submissionsToThisSection" +msgstr "" + +msgid "manager.series.abstractsNotRequired" +msgstr "" + +msgid "manager.series.disableComments" +msgstr "" + +msgid "manager.series.book" +msgstr "" + +msgid "manager.series.create" +msgstr "" + +msgid "manager.series.policy" +msgstr "" + +msgid "manager.series.assigned" +msgstr "" + +msgid "manager.series.seriesEditorInstructions" +msgstr "" + +msgid "manager.series.hideAbout" +msgstr "" + +msgid "manager.series.unassigned" +msgstr "" + +msgid "manager.series.form.abbrevRequired" +msgstr "" + +msgid "manager.series.form.titleRequired" +msgstr "" + +msgid "manager.series.noneCreated" +msgstr "" + +msgid "manager.series.existingUsers" +msgstr "" + +msgid "manager.series.seriesTitle" +msgstr "" + +msgid "manager.series.restricted" +msgstr "" + +msgid "manager.payment.generalOptions" +msgstr "" + +msgid "manager.payment.options.enablePayments" +msgstr "" + +msgid "manager.payment.success" +msgstr "" + +msgid "manager.settings" +msgstr "" + +msgid "manager.settings.pressSettings" +msgstr "" + +msgid "manager.settings.press" +msgstr "" + +msgid "manager.settings.publisher.identity" +msgstr "" + +msgid "manager.settings.publisher.identity.description" +msgstr "" + +msgid "manager.settings.publisher" +msgstr "" + +msgid "manager.settings.location" +msgstr "" + +msgid "manager.settings.publisherCode" +msgstr "" + +msgid "manager.settings.publisherCodeType" +msgstr "" + +msgid "manager.settings.publisherCodeType.invalid" +msgstr "" + +msgid "manager.settings.distributionDescription" +msgstr "" + +msgid "manager.statistics.reports.defaultReport.monographDownloads" +msgstr "" + +msgid "manager.statistics.reports.defaultReport.monographAbstract" +msgstr "" + +msgid "manager.statistics.reports.defaultReport.monographAbstractAndDownloads" +msgstr "" + +msgid "manager.statistics.reports.defaultReport.seriesIndexPageViews" +msgstr "" + +msgid "manager.statistics.reports.defaultReport.pressIndexPageViews" +msgstr "" + +msgid "manager.tools" +msgstr "" + +msgid "manager.tools.importExport" +msgstr "" + +msgid "manager.tools.statistics" +msgstr "" + +msgid "manager.users.availableRoles" +msgstr "" + +msgid "manager.users.currentRoles" +msgstr "" + +msgid "manager.users.selectRole" +msgstr "" + +msgid "manager.people.allEnrolledUsers" +msgstr "" + +msgid "manager.people.allPresses" +msgstr "" + +msgid "manager.people.allSiteUsers" +msgstr "" + +msgid "manager.people.allUsers" +msgstr "" + +msgid "manager.people.confirmRemove" +msgstr "" + +msgid "manager.people.enrollExistingUser" +msgstr "" + +msgid "manager.people.enrollSyncPress" +msgstr "" + +msgid "manager.people.mergeUsers.from.description" +msgstr "" + +msgid "manager.people.mergeUsers.into.description" +msgstr "" + +msgid "manager.people.syncUserDescription" +msgstr "" + +msgid "manager.people.confirmDisable" +msgstr "" + +msgid "manager.people.noAdministrativeRights" +msgstr "" + +msgid "manager.system" +msgstr "" + +msgid "manager.system.archiving" +msgstr "" + +msgid "manager.system.reviewForms" +msgstr "" + +msgid "manager.system.readingTools" +msgstr "" + +msgid "manager.system.payments" +msgstr "" + +msgid "user.authorization.pluginLevel" +msgstr "" + +msgid "manager.pressManagement" +msgstr "" + +msgid "manager.setup" +msgstr "" + +msgid "manager.setup.aboutItemContent" +msgstr "" + +msgid "manager.setup.addAboutItem" +msgstr "" + +msgid "manager.setup.addChecklistItem" +msgstr "" + +msgid "manager.setup.addItem" +msgstr "" + +msgid "manager.setup.addItemtoAboutPress" +msgstr "" + +msgid "manager.setup.addNavItem" +msgstr "" + +msgid "manager.setup.addSponsor" +msgstr "" + +msgid "manager.setup.announcements" +msgstr "" + +msgid "manager.setup.announcements.success" +msgstr "" + +msgid "manager.setup.announcementsDescription" +msgstr "" + +msgid "manager.setup.announcementsIntroduction" +msgstr "" + +msgid "manager.setup.announcementsIntroduction.description" +msgstr "" + +msgid "manager.setup.appearInAboutPress" +msgstr "" + +msgid "manager.setup.contextAbout" +msgstr "" + +msgid "manager.setup.contextAbout.description" +msgstr "" + +msgid "manager.setup.contextSummary" +msgstr "" + +msgid "manager.setup.copyediting" +msgstr "" + +msgid "manager.setup.copyeditInstructions" +msgstr "" + +msgid "manager.setup.copyeditInstructionsDescription" +msgstr "" + +msgid "manager.setup.copyrightNotice" +msgstr "" + +msgid "manager.setup.coverage" +msgstr "" + +msgid "manager.setup.coverThumbnailsMaxHeight" +msgstr "" + +msgid "manager.setup.coverThumbnailsMaxWidth" +msgstr "" + +msgid "manager.setup.coverThumbnailsMaxWidthHeight.description" +msgstr "" + +msgid "manager.setup.customizingTheLook" +msgstr "" + +msgid "manager.setup.customTags" +msgstr "" + +msgid "manager.setup.customTagsDescription" +msgstr "" + +msgid "manager.setup.details" +msgstr "" + +msgid "manager.setup.details.description" +msgstr "" + +msgid "manager.setup.disableUserRegistration" +msgstr "" + +msgid "manager.setup.discipline" +msgstr "" + +msgid "manager.setup.disciplineDescription" +msgstr "" + +msgid "manager.setup.disciplineExamples" +msgstr "" + +msgid "manager.setup.disciplineProvideExamples" +msgstr "" + +msgid "manager.setup.displayCurrentMonograph" +msgstr "" + +msgid "manager.setup.displayOnHomepage" +msgstr "" + +msgid "manager.setup.displayFeaturedBooks" +msgstr "" + +msgid "manager.setup.displayFeaturedBooks.label" +msgstr "" + +msgid "manager.setup.displayInSpotlight" +msgstr "" + +msgid "manager.setup.displayInSpotlight.label" +msgstr "" + +msgid "manager.setup.displayNewReleases" +msgstr "" + +msgid "manager.setup.displayNewReleases.label" +msgstr "" + +msgid "manager.setup.enableDois.description" +msgstr "" + +msgid "doi.manager.settings.doiObjectsRequired" +msgstr "" + +msgid "doi.manager.settings.doiSuffixLegacy" +msgstr "" + +msgid "doi.manager.settings.doiCreationTime.copyedit" +msgstr "" + +msgid "manager.dois.formatIdentifier.file" +msgstr "" + +msgid "manager.setup.editorDecision" +msgstr "" + +msgid "manager.setup.emailBounceAddress" +msgstr "" + +msgid "manager.setup.emailBounceAddress.description" +msgstr "" + +msgid "manager.setup.emailBounceAddress.disabled" +msgstr "" + +msgid "manager.setup.emails" +msgstr "" + +msgid "manager.setup.emailSignature" +msgstr "" + +msgid "manager.setup.emailSignature.description" +msgstr "" + +msgid "manager.setup.enableAnnouncements.enable" +msgstr "" + +msgid "manager.setup.enableAnnouncements.description" +msgstr "" + +msgid "manager.setup.numAnnouncementsHomepage" +msgstr "" + +msgid "manager.setup.numAnnouncementsHomepage.description" +msgstr "" + +msgid "manager.setup.enablePressInstructions" +msgstr "" + +msgid "manager.setup.enablePublicMonographId" +msgstr "" + +msgid "manager.setup.enablePublicGalleyId" +msgstr "" + +msgid "manager.setup.enableUserRegistration" +msgstr "" + +msgid "manager.setup.focusAndScope" +msgstr "" + +msgid "manager.setup.focusAndScope.description" +msgstr "" + +msgid "manager.setup.focusScope" +msgstr "" + +msgid "manager.setup.focusScopeDescription" +msgstr "" + +msgid "manager.setup.forAuthorsToIndexTheirWork" +msgstr "" + +msgid "manager.setup.forAuthorsToIndexTheirWorkDescription" +msgstr "" + +msgid "manager.setup.form.contactEmailRequired" +msgstr "" + +msgid "manager.setup.form.contactNameRequired" +msgstr "" + +msgid "manager.setup.form.numReviewersPerSubmission" +msgstr "" + +msgid "manager.setup.form.supportEmailRequired" +msgstr "" + +msgid "manager.setup.form.supportNameRequired" +msgstr "" + +msgid "manager.setup.generalInformation" +msgstr "" + +msgid "manager.setup.gettingDownTheDetails" +msgstr "" + +msgid "manager.setup.guidelines" +msgstr "" + +msgid "manager.setup.preparingWorkflow" +msgstr "" + +msgid "manager.setup.identity" +msgstr "" + +msgid "manager.setup.information" +msgstr "" + +msgid "manager.setup.information.description" +msgstr "" + +msgid "manager.setup.information.forAuthors" +msgstr "" + +msgid "manager.setup.information.forLibrarians" +msgstr "" + +msgid "manager.setup.information.forReaders" +msgstr "" + +msgid "manager.setup.information.success" +msgstr "" + +msgid "manager.setup.institution" +msgstr "" + +msgid "manager.setup.itemsPerPage" +msgstr "" + +msgid "manager.setup.itemsPerPage.description" +msgstr "" + +msgid "manager.setup.keyInfo" +msgstr "" + +msgid "manager.setup.keyInfo.description" +msgstr "" + +msgid "manager.setup.labelName" +msgstr "" + +msgid "manager.setup.layoutAndGalleys" +msgstr "" + +msgid "manager.setup.layoutInstructions" +msgstr "" + +msgid "manager.setup.layoutInstructionsDescription" +msgstr "" + +msgid "manager.setup.layoutTemplates" +msgstr "" + +msgid "manager.setup.layoutTemplatesDescription" +msgstr "" + +msgid "manager.setup.layoutTemplates.file" +msgstr "" + +msgid "manager.setup.layoutTemplates.title" +msgstr "" + +msgid "manager.setup.lists" +msgstr "" + +msgid "manager.setup.lists.success" +msgstr "" + +msgid "manager.setup.look" +msgstr "" + +msgid "manager.setup.look.description" +msgstr "" + +msgid "manager.setup.settings" +msgstr "" + +msgid "manager.setup.management.description" +msgstr "" + +msgid "manager.setup.managementOfBasicEditorialSteps" +msgstr "" + +msgid "manager.setup.managingPublishingSetup" +msgstr "" + +msgid "manager.setup.managingThePress" +msgstr "" + +msgid "manager.setup.masthead.success" +msgstr "" + +msgid "manager.setup.noImageFileUploaded" +msgstr "" + +msgid "manager.setup.noStyleSheetUploaded" +msgstr "" + +msgid "manager.setup.note" +msgstr "" + +msgid "manager.setup.notifyAllAuthorsOnDecision" +msgstr "" + +msgid "manager.setup.noUseCopyeditors" +msgstr "" + +msgid "manager.setup.noUseLayoutEditors" +msgstr "" + +msgid "manager.setup.noUseProofreaders" +msgstr "" + +msgid "manager.setup.numPageLinks" +msgstr "" + +msgid "manager.setup.numPageLinks.description" +msgstr "" + +msgid "manager.setup.onlineAccessManagement" +msgstr "" + +msgid "manager.setup.onlineIssn" +msgstr "" + +msgid "manager.setup.policies" +msgstr "" + +msgid "manager.setup.policies.description" +msgstr "" + +msgid "manager.setup.privacyStatement.success" +msgstr "" + +msgid "manager.setup.appearanceDescription" +msgstr "" + +msgid "manager.setup.pressDescription" +msgstr "" + +msgid "manager.setup.pressDescription.description" +msgstr "" + +msgid "manager.setup.aboutPress" +msgstr "" + +msgid "manager.setup.aboutPress.description" +msgstr "" + +msgid "manager.setup.pressArchiving" +msgstr "" + +msgid "manager.setup.homepageContent" +msgstr "" + +msgid "manager.setup.homepageContentDescription" +msgstr "" + +msgid "manager.setup.pressHomepageContent" +msgstr "" + +msgid "manager.setup.pressHomepageContentDescription" +msgstr "" + +msgid "manager.setup.contextInitials" +msgstr "" + +msgid "manager.setup.selectCountry" +msgstr "" + +msgid "manager.setup.layout" +msgstr "" + +msgid "manager.setup.pageHeader" +msgstr "" + +msgid "manager.setup.pageHeaderDescription" +msgstr "" + +msgid "manager.setup.pressPolicies" +msgstr "" + +msgid "manager.setup.pressSetup" +msgstr "" + +msgid "manager.setup.pressSetupUpdated" +msgstr "" + +msgid "manager.setup.styleSheetInvalid" +msgstr "" + +msgid "manager.setup.pressTheme" +msgstr "" + +msgid "manager.setup.pressThumbnail" +msgstr "" + +msgid "manager.setup.pressThumbnail.description" +msgstr "" + +msgid "manager.setup.contextTitle" +msgstr "" + +msgid "manager.setup.printIssn" +msgstr "" + +msgid "manager.setup.proofingInstructions" +msgstr "" + +msgid "manager.setup.proofingInstructionsDescription" +msgstr "" + +msgid "manager.setup.proofreading" +msgstr "" + +msgid "manager.setup.provideRefLinkInstructions" +msgstr "" + +msgid "manager.setup.publicationScheduleDescription" +msgstr "" + +msgid "manager.setup.publisher" +msgstr "" + +msgid "manager.setup.publisherDescription" +msgstr "" + +msgid "manager.setup.referenceLinking" +msgstr "" + +msgid "manager.setup.refLinkInstructions.description" +msgstr "" + +msgid "manager.setup.restrictMonographAccess" +msgstr "" + +msgid "manager.setup.restrictSiteAccess" +msgstr "" + +msgid "manager.setup.reviewGuidelines" +msgstr "" + +msgid "manager.setup.reviewGuidelinesDescription" +msgstr "" + +msgid "manager.setup.internalReviewGuidelines" +msgstr "" + +msgid "manager.setup.reviewOptions" +msgstr "" + +msgid "manager.setup.reviewOptions.automatedReminders" +msgstr "" + +msgid "manager.setup.reviewOptions.automatedRemindersDisabled" +msgstr "" + +msgid "manager.setup.reviewOptions.onQuality" +msgstr "" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess" +msgstr "" + +msgid "manager.setup.reviewOptions.restrictReviewerFileAccess.description" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccess" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.description" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerAccessKeysEnabled.label" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerRatings" +msgstr "" + +msgid "manager.setup.reviewOptions.reviewerReminders" +msgstr "" + +msgid "manager.setup.reviewPolicy" +msgstr "" + +msgid "manager.setup.searchDescription.description" +msgstr "" + +msgid "manager.setup.searchEngineIndexing" +msgstr "" + +msgid "manager.setup.searchEngineIndexing.description" +msgstr "" + +msgid "manager.setup.searchEngineIndexing.success" +msgstr "" + +msgid "manager.setup.sectionsAndSectionEditors" +msgstr "" + +msgid "manager.setup.sectionsDefaultSectionDescription" +msgstr "" + +msgid "manager.setup.sectionsDescription" +msgstr "" + +msgid "manager.setup.securitySettings" +msgstr "" + +msgid "manager.setup.securitySettings.note" +msgstr "" + +msgid "manager.setup.selectEditorDescription" +msgstr "" + +msgid "manager.setup.selectSectionDescription" +msgstr "" + +msgid "manager.setup.showGalleyLinksDescription" +msgstr "" + +msgid "manager.setup.siteAccess.view" +msgstr "" + +msgid "manager.setup.siteAccess.viewContent" +msgstr "" + +msgid "manager.setup.stepsToPressSite" +msgstr "" + +msgid "manager.setup.subjectExamples" +msgstr "" + +msgid "manager.setup.subjectKeywordTopic" +msgstr "" + +msgid "manager.setup.subjectProvideExamples" +msgstr "" + +msgid "manager.setup.submissionGuidelines" +msgstr "" + +msgid "maganer.setup.submissionChecklistItemRequired" +msgstr "" + +msgid "manager.setup.workflow" +msgstr "" + +msgid "manager.setup.submissions.description" +msgstr "" + +msgid "manager.setup.typeExamples" +msgstr "" + +msgid "manager.setup.typeMethodApproach" +msgstr "" + +msgid "manager.setup.typeProvideExamples" +msgstr "" + +msgid "manager.setup.useCopyeditors" +msgstr "" + +msgid "manager.setup.useEditorialReviewBoard" +msgstr "" + +msgid "manager.setup.useImageTitle" +msgstr "" + +msgid "manager.setup.useStyleSheet" +msgstr "" + +msgid "manager.setup.useLayoutEditors" +msgstr "" + +msgid "manager.setup.useProofreaders" +msgstr "" + +msgid "manager.setup.userRegistration" +msgstr "" + +msgid "manager.setup.useTextTitle" +msgstr "" + +msgid "manager.setup.volumePerYear" +msgstr "" + +msgid "manager.setup.publicationFormat.code" +msgstr "" + +msgid "manager.setup.publicationFormat.codeRequired" +msgstr "" + +msgid "manager.setup.publicationFormat.nameRequired" +msgstr "" + +msgid "manager.setup.publicationFormat.physicalFormat" +msgstr "" + +msgid "manager.setup.publicationFormat.inUse" +msgstr "" + +msgid "manager.setup.newPublicationFormat" +msgstr "" + +msgid "manager.setup.newPublicationFormatDescription" +msgstr "" + +msgid "manager.setup.genresDescription" +msgstr "" + +msgid "manager.setup.disableSubmissions.notAccepting" +msgstr "" + +msgid "manager.setup.disableSubmissions.description" +msgstr "" + +msgid "manager.setup.genres" +msgstr "" + +msgid "manager.setup.newGenre" +msgstr "" + +msgid "manager.setup.newGenreDescription" +msgstr "" + +msgid "manager.setup.deleteSelected" +msgstr "" + +msgid "manager.setup.restoreDefaults" +msgstr "" + +msgid "manager.setup.prospectus" +msgstr "" + +msgid "manager.setup.prospectusDescription" +msgstr "" + +msgid "manager.setup.submitToCategories" +msgstr "" + +msgid "manager.setup.submitToSeries" +msgstr "" + +msgid "manager.setup.issnDescription" +msgstr "" + +msgid "manager.setup.currentFormats" +msgstr "" + +msgid "manager.setup.categoriesAndSeries" +msgstr "" + +msgid "manager.setup.categories.description" +msgstr "" + +msgid "manager.setup.series.description" +msgstr "" + +msgid "manager.setup.reviewForms" +msgstr "" + +msgid "manager.setup.roleType" +msgstr "" + +msgid "manager.setup.authorRoles" +msgstr "" + +msgid "manager.setup.managerialRoles" +msgstr "" + +msgid "manager.setup.availableRoles" +msgstr "" + +msgid "manager.setup.currentRoles" +msgstr "" + +msgid "manager.setup.internalReviewRoles" +msgstr "" + +msgid "manager.setup.masthead" +msgstr "" + +msgid "manager.setup.editorialTeam" +msgstr "" + +msgid "manager.setup.editorialTeam.description" +msgstr "" + +msgid "manager.setup.files" +msgstr "" + +msgid "manager.setup.productionTemplates" +msgstr "" + +msgid "manager.files.note" +msgstr "" + +msgid "manager.setup.copyrightNotice.sample" +msgstr "" + +msgid "manager.setup.basicEditorialStepsDescription" +msgstr "" + +msgid "manager.setup.referenceLinkingDescription" +msgstr "" + +msgid "manager.publication.library" +msgstr "" + +msgid "manager.setup.resetPermissions" +msgstr "" + +msgid "manager.setup.resetPermissions.confirm" +msgstr "" + +msgid "manager.setup.resetPermissions.description" +msgstr "" + +msgid "manager.setup.resetPermissions.success" +msgstr "" + +msgid "grid.genres.title.short" +msgstr "" + +msgid "grid.genres.title" +msgstr "" + +msgid "manager.setup.notifications.copyPrimaryContact" +msgstr "" + +msgid "grid.series.pathAlphaNumeric" +msgstr "" + +msgid "grid.series.pathExists" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItem.series" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItemSeriesMessage" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItem.category" +msgstr "" + +msgid "manager.navigationMenus.form.navigationMenuItemCategoryMessage" +msgstr "" + +msgid "grid.series.urlWillBe" +msgstr "" + +msgid "stats.contextStats" +msgstr "" + +msgid "stats.context.tooltip.text" +msgstr "" + +msgid "stats.context.tooltip.label" +msgstr "" + +msgid "stats.context.downloadReport.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext.description" +msgstr "" + +msgid "stats.context.downloadReport.downloadContext" +msgstr "" + +msgid "stats.publications.downloadReport.description" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions" +msgstr "" + +msgid "stats.publications.downloadReport.downloadSubmissions.description" +msgstr "" + +msgid "stats.publicationStats" +msgstr "" + +msgid "stats.publications.details" +msgstr "" + +msgid "stats.publications.none" +msgstr "" + +msgid "stats.publications.totalAbstractViews.timelineInterval" +msgstr "" + +msgid "stats.publications.totalGalleyViews.timelineInterval" +msgstr "" + +msgid "stats.publications.countOfTotal" +msgstr "" + +msgid "stats.publications.abstracts" +msgstr "" + +msgid "plugins.importexport.common.error.noObjectsSelected" +msgstr "" + +msgid "plugins.importexport.common.error.validation" +msgstr "" + +msgid "plugins.importexport.common.invalidXML" +msgstr "" + +msgid "plugins.importexport.native.exportSubmissions" +msgstr "" + +msgid "manager.setup.notifications.copySubmissionAckPrimaryContact.description" +msgstr "" + +msgid "" +"manager.setup.notifications.copySubmissionAckPrimaryContact.disabled." +"description" +msgstr "" + +msgid "plugins.importexport.common.error.unknownObjects" +msgstr "" + +msgid "plugins.importexport.native.error.unknownUser" +msgstr "" + +msgid "plugins.importexport.publicationformat.exportFailed" +msgstr "" + +msgid "plugins.importexport.chapter.exportFailed" +msgstr "" + +msgid "emailTemplate.variable.context.contextName" +msgstr "" + +msgid "emailTemplate.variable.context.contextUrl" +msgstr "" + +msgid "emailTemplate.variable.context.contactName" +msgstr "" + +msgid "emailTemplate.variable.context.contextSignature" +msgstr "" + +msgid "emailTemplate.variable.context.contactEmail" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemName" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCost" +msgstr "" + +msgid "emailTemplate.variable.queuedPayment.itemCurrencyCode" +msgstr "" + +msgid "emailTemplate.variable.site.siteTitle" +msgstr "" + +msgid "mailable.validateEmailContext.name" +msgstr "" + +msgid "mailable.validateEmailContext.description" +msgstr "" + +msgid "doi.displayName" +msgstr "" + +msgid "doi.manager.displayName" +msgstr "" + +msgid "doi.description" +msgstr "" + +msgid "doi.readerDisplayName" +msgstr "" + +msgid "doi.manager.settings.description" +msgstr "" + +msgid "doi.manager.settings.explainDois" +msgstr "" + +msgid "doi.manager.settings.enablePublicationDoi" +msgstr "" + +msgid "doi.manager.settings.enableChapterDoi" +msgstr "" + +msgid "doi.manager.settings.enableRepresentationDoi" +msgstr "" + +msgid "doi.manager.settings.enableSubmissionFileDoi" +msgstr "" + +msgid "doi.manager.settings.doiPrefix" +msgstr "" + +msgid "doi.manager.settings.doiPrefixPattern" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.example" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.submissions" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.chapters" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.representations" +msgstr "" + +msgid "doi.manager.settings.doiSuffixPattern.files" +msgstr "" + +msgid "doi.manager.settings.doiPublicationSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiChapterSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiRepresentationSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiSubmissionFileSuffixPatternRequired" +msgstr "" + +msgid "doi.manager.settings.doiReassign" +msgstr "" + +msgid "doi.manager.settings.doiReassign.description" +msgstr "" + +msgid "doi.manager.settings.doiReassign.confirm" +msgstr "" + +msgid "doi.editor.doi" +msgstr "" + +msgid "doi.editor.doi.description" +msgstr "" + +msgid "doi.editor.doi.assignDoi" +msgstr "" + +msgid "doi.editor.doiObjectTypeSubmission" +msgstr "" + +msgid "doi.editor.doiObjectTypeChapter" +msgstr "" + +msgid "doi.editor.doiObjectTypeRepresentation" +msgstr "" + +msgid "doi.editor.doiObjectTypeSubmissionFile" +msgstr "" + +msgid "doi.editor.customSuffixMissing" +msgstr "" + +msgid "doi.editor.missingParts" +msgstr "" + +msgid "doi.editor.patternNotResolved" +msgstr "" + +msgid "doi.editor.canBeAssigned" +msgstr "" + +msgid "doi.editor.assigned" +msgstr "" + +msgid "doi.editor.doiSuffixCustomIdentifierNotUnique" +msgstr "" + +msgid "doi.editor.clearObjectsDoi" +msgstr "" + +msgid "doi.editor.clearObjectsDoi.confirm" +msgstr "" + +msgid "doi.editor.assignDoi" +msgstr "" + +msgid "doi.editor.assignDoi.emptySuffix" +msgstr "" + +msgid "doi.editor.assignDoi.pattern" +msgstr "" + +msgid "doi.editor.assignDoi.assigned" +msgstr "" + +msgid "doi.editor.missingPrefix" +msgstr "" + +msgid "doi.editor.preview.publication" +msgstr "" + +msgid "doi.editor.preview.publication.none" +msgstr "" + +msgid "doi.editor.preview.chapters" +msgstr "" + +msgid "doi.editor.preview.publicationFormats" +msgstr "" + +msgid "doi.editor.preview.files" +msgstr "" + +msgid "doi.editor.preview.objects" +msgstr "" + +msgid "doi.manager.submissionDois" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.description" +msgstr "" + +msgid "mailable.decision.initialDecline.notifyAuthor.description" +msgstr "" + +msgid "manager.institutions.noContext" +msgstr "" + +msgid "manager.manageEmails.description" +msgstr "" + +msgid "mailable.decision.sendInternalReview.notifyAuthor.name" +msgstr "" + +msgid "mailable.indexRequest.name" +msgstr "" + +msgid "mailable.indexComplete.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.name" +msgstr "" + +msgid "mailable.publicationVersionNotify.description" +msgstr "" + +msgid "mailable.submissionNeedsEditor.description" +msgstr "" diff --git a/locale/vi/submission.po b/locale/vi/submission.po new file mode 100644 index 00000000000..fd0b4b29323 --- /dev/null +++ b/locale/vi/submission.po @@ -0,0 +1,554 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "submission.upload.selectComponent" +msgstr "" + +msgid "submission.title" +msgstr "" + +msgid "submission.select" +msgstr "" + +msgid "submission.synopsis" +msgstr "" + +msgid "submission.workflowType" +msgstr "" + +msgid "submission.workflowType.description" +msgstr "" + +msgid "submission.workflowType.editedVolume.label" +msgstr "" + +msgid "submission.workflowType.editedVolume" +msgstr "" + +msgid "submission.workflowType.authoredWork" +msgstr "" + +msgid "submission.workflowType.change" +msgstr "" + +msgid "submission.editorName" +msgstr "" + +msgid "submission.monograph" +msgstr "" + +msgid "submission.published" +msgstr "" + +msgid "submission.fairCopy" +msgstr "" + +msgid "submission.authorListSeparator" +msgstr "" + +msgid "submission.artwork.permissions" +msgstr "" + +msgid "submission.chapter" +msgstr "" + +msgid "submission.chapters" +msgstr "" + +msgid "submission.chapter.addChapter" +msgstr "" + +msgid "submission.chapter.editChapter" +msgstr "" + +msgid "submission.chapter.pages" +msgstr "" + +msgid "submission.copyedit" +msgstr "" + +msgid "submission.publicationFormats" +msgstr "" + +msgid "submission.proofs" +msgstr "" + +msgid "submission.download" +msgstr "" + +msgid "submission.sharing" +msgstr "" + +msgid "manuscript.submission" +msgstr "" + +msgid "submission.round" +msgstr "" + +msgid "submissions.queuedReview" +msgstr "" + +msgid "manuscript.submissions" +msgstr "" + +msgid "submission.metadata" +msgstr "" + +msgid "submission.supportingAgencies" +msgstr "" + +msgid "grid.action.addChapter" +msgstr "" + +msgid "grid.action.editChapter" +msgstr "" + +msgid "grid.action.deleteChapter" +msgstr "" + +msgid "submission.submit" +msgstr "" + +msgid "submission.submit.newSubmissionMultiple" +msgstr "" + +msgid "submission.submit.newSubmissionSingle" +msgstr "" + +msgid "submission.submit.upload" +msgstr "" + +msgid "author.volumeEditor" +msgstr "" + +msgid "author.isVolumeEditor" +msgstr "" + +msgid "submission.submit.seriesPosition" +msgstr "" + +msgid "submission.submit.seriesPosition.description" +msgstr "" + +msgid "submission.submit.privacyStatement" +msgstr "" + +msgid "submission.submit.contributorRole" +msgstr "" + +msgid "submission.submit.submissionFile" +msgstr "" + +msgid "submission.submit.prepare" +msgstr "" + +msgid "submission.submit.catalog" +msgstr "" + +msgid "submission.submit.metadata" +msgstr "" + +msgid "submission.submit.finishingUp" +msgstr "" + +msgid "submission.submit.confirmation" +msgstr "" + +msgid "submission.submit.nextSteps" +msgstr "" + +msgid "submission.submit.coverNote" +msgstr "" + +msgid "submission.submit.generalInformation" +msgstr "" + +msgid "submission.submit.whatNext.description" +msgstr "" + +msgid "submission.submit.checklistErrors" +msgstr "" + +msgid "submission.submit.placement" +msgstr "" + +msgid "submission.submit.userGroup" +msgstr "" + +msgid "submission.submit.noContext" +msgstr "" + +msgid "grid.chapters.title" +msgstr "" + +msgid "grid.copyediting.deleteCopyeditorResponse" +msgstr "" + +msgid "submission.complete" +msgstr "" + +msgid "submission.incomplete" +msgstr "" + +msgid "submission.editCatalogEntry" +msgstr "" + +msgid "submission.catalogEntry.new" +msgstr "" + +msgid "submission.catalogEntry.add" +msgstr "" + +msgid "submission.catalogEntry.select" +msgstr "" + +msgid "submission.catalogEntry.selectionMissing" +msgstr "" + +msgid "submission.catalogEntry.confirm" +msgstr "" + +msgid "submission.catalogEntry.confirm.required" +msgstr "" + +msgid "submission.catalogEntry.isAvailable" +msgstr "" + +msgid "submission.catalogEntry.viewSubmission" +msgstr "" + +msgid "submission.catalogEntry.chapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.disableChapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.enableChapterPublicationDates" +msgstr "" + +msgid "submission.catalogEntry.monographMetadata" +msgstr "" + +msgid "submission.catalogEntry.catalogMetadata" +msgstr "" + +msgid "submission.catalogEntry.publicationMetadata" +msgstr "" + +msgid "submission.event.metadataPublished" +msgstr "" + +msgid "submission.event.metadataUnpublished" +msgstr "" + +msgid "submission.event.publicationFormatMadeAvailable" +msgstr "" + +msgid "submission.event.publicationFormatMadeUnavailable" +msgstr "" + +msgid "submission.event.publicationFormatPublished" +msgstr "" + +msgid "submission.event.publicationFormatUnpublished" +msgstr "" + +msgid "submission.event.catalogMetadataUpdated" +msgstr "" + +msgid "submission.event.publicationMetadataUpdated" +msgstr "" + +msgid "submission.event.publicationFormatCreated" +msgstr "" + +msgid "submission.event.publicationFormatRemoved" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview" +msgstr "" + +msgid "workflow.review.externalReview" +msgstr "" + +msgid "submission.upload.fileContents" +msgstr "" + +msgid "submission.dependentFiles" +msgstr "" + +msgid "submission.metadataDescription" +msgstr "" + +msgid "section.any" +msgstr "" + +msgid "submission.list.monographs" +msgstr "" + +msgid "submission.list.countMonographs" +msgstr "" + +msgid "submission.list.itemsOfTotalMonographs" +msgstr "" + +msgid "submission.list.orderFeatures" +msgstr "" + +msgid "submission.list.orderingFeatures" +msgstr "" + +msgid "submission.list.orderingFeaturesSection" +msgstr "" + +msgid "submission.list.saveFeatureOrder" +msgstr "" + +msgid "submission.list.viewEntry" +msgstr "" + +msgid "catalog.browseTitles" +msgstr "" + +msgid "publication.catalogEntry" +msgstr "" + +msgid "publication.catalogEntry.success" +msgstr "" + +msgid "publication.invalidSeries" +msgstr "" + +msgid "publication.inactiveSeries" +msgstr "" + +msgid "publication.required.issue" +msgstr "" + +msgid "publication.publishedIn" +msgstr "" + +msgid "publication.publish.confirmation" +msgstr "" + +msgid "publication.scheduledIn" +msgstr "" + +msgid "submission.publication" +msgstr "Xuất bản" + +msgid "publication.status.published" +msgstr "Đã xuất bản" + +msgid "submission.status.scheduled" +msgstr "Đã lên lịch" + +msgid "publication.status.unscheduled" +msgstr "Huỷ lên lịch" + +msgid "submission.publications" +msgstr "Ấn phẩm" + +msgid "publication.copyrightYearBasis.issueDescription" +msgstr "" +"Năm bản quyền sẽ được đặt tự động khi điều này được xuất bản trong một Số." + +msgid "publication.copyrightYearBasis.submissionDescription" +msgstr "Năm bản quyền sẽ được đặt tự động dựa trên ngày xuất bản." + +msgid "publication.datePublished" +msgstr "Ngày Xuất bản" + +msgid "publication.editDisabled" +msgstr "Phiên bản này đã được xuất bản và không thể chỉnh sửa." + +msgid "publication.event.published" +msgstr "Bài gửi đã được xuất bản." + +msgid "publication.event.scheduled" +msgstr "Bài gửi đã được lên lịch để xuất bản." + +msgid "publication.event.unpublished" +msgstr "Bài gửi chưa được xuất bản." + +msgid "publication.event.versionPublished" +msgstr "Một phiên bản mới đã được xuất bản." + +msgid "publication.event.versionScheduled" +msgstr "Một phiên bản mới đã được lên lịch để xuất bản." + +msgid "publication.event.versionUnpublished" +msgstr "Một phiên bản đã bị xóa từ mục xuất bản." + +msgid "publication.invalidSubmission" +msgstr "Bài gửi cho ấn phẩm này không thể được tìm thấy." + +msgid "publication.publish" +msgstr "Xuất bản" + +msgid "publication.publish.requirements" +msgstr "" +"Các yêu cầu sau phải được đáp ứng trước khi bài này có thể được xuất bản." + +msgid "publication.required.declined" +msgstr "Không thể xuất bản một bài bị từ chối." + +msgid "publication.required.reviewStage" +msgstr "" +"Bài gửi phải qua giai đoạn Sao chép hoặc Sản xuất trước khi có thể được xuất " +"bản." + +msgid "submission.license.description" +msgstr "" +"Giấy phép sẽ được đặt tự động thành " +"{$licenseName} khi giấy phép này được xuất bản." + +msgid "submission.copyrightHolder.description" +msgstr "" +"Bản quyền sẽ tự động được chỉ định cho {$copyright} khi tài liệu này được " +"xuất bản." + +msgid "submission.copyrightOther.description" +msgstr "Chuyển nhượng bản quyền cho các bài đã xuất bản cho bên sau." + +msgid "publication.unpublish" +msgstr "Hủy xuất bản" + +msgid "publication.unpublish.confirm" +msgstr "Bạn có chắc chắn rằng bạn không muốn xuất bản?" + +msgid "publication.unschedule.confirm" +msgstr "Bạn có chắc chắn rằng bạn không muốn lên lịch xuất bản?" + +msgid "publication.version.details" +msgstr "Chi tiết xuất bản cho phiên bản {$version}" + +msgid "submission.queries.production" +msgstr "Thảo luận về sản xuất" + +msgid "publication.chapter.landingPage" +msgstr "" + +msgid "publication.chapter.hasLandingPage" +msgstr "" + +msgid "publication.publish.success" +msgstr "" + +msgid "chapter.volume" +msgstr "" + +msgid "submission.withoutChapter" +msgstr "" + +msgid "submission.chapterCreated" +msgstr "" + +msgid "chapter.pages" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.sendInternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.internalReview" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.log" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview" +msgstr "" + +msgid "editor.submission.decision.backToReview.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.log" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed" +msgstr "" + +msgid "editor.submission.decision.backToReview.completed.description" +msgstr "" + +msgid "editor.submission.decision.backToReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.sendExternalReview.notifyAuthorsDescription" +msgstr "" + +msgid "editor.submission.decision.promoteFiles.externalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.description" +msgstr "" + +msgid "editor.submission.recommend.sendExternalReview.log" +msgstr "" + +msgid "doi.submission.incorrectContext" +msgstr "" + +msgid "publication.chapter.licenseUrl" +msgstr "" + +msgid "publication.chapterDefaultLicenseURL" +msgstr "" + +msgid "submission.copyright.description" +msgstr "" + +msgid "submission.wizard.notAllowed.description" +msgstr "" + +msgid "submission.wizard.sectionClosed.message" +msgstr "" + +msgid "submission.sectionNotFound" +msgstr "" + +msgid "submission.sectionRestrictedToEditors" +msgstr "" + +msgid "submission.wizard.submitting.monograph" +msgstr "" + +msgid "submission.wizard.submitting.monographInLanguage" +msgstr "" + +msgid "submission.wizard.submitting.editedVolume" +msgstr "" + +msgid "submission.wizard.submitting.editedVolumeInLanguage" +msgstr "" + +msgid "submission.wizard.chapters.description" +msgstr "" diff --git a/locale/vi_VN/admin.po b/locale/vi_VN/admin.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/vi_VN/admin.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/vi_VN/api.po b/locale/vi_VN/api.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/vi_VN/api.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/vi_VN/author.po b/locale/vi_VN/author.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/vi_VN/author.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/vi_VN/default.po b/locale/vi_VN/default.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/vi_VN/default.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/vi_VN/editor.po b/locale/vi_VN/editor.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/vi_VN/editor.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/vi_VN/emails.po b/locale/vi_VN/emails.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/vi_VN/emails.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/vi_VN/locale.po b/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/vi_VN/manager.po b/locale/vi_VN/manager.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/locale/vi_VN/manager.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/locale/vi_VN/submission.po b/locale/vi_VN/submission.po deleted file mode 100644 index fa4c70a7d3e..00000000000 --- a/locale/vi_VN/submission.po +++ /dev/null @@ -1,95 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" - -msgid "submission.publication" -msgstr "Xuất bản" - -msgid "publication.status.published" -msgstr "Đã xuất bản" - -msgid "submission.status.scheduled" -msgstr "Đã lên lịch" - -msgid "publication.status.unscheduled" -msgstr "Huỷ lên lịch" - -msgid "submission.publications" -msgstr "Ấn phẩm" - -msgid "publication.copyrightYearBasis.issueDescription" -msgstr "" -"Năm bản quyền sẽ được đặt tự động khi điều này được xuất bản trong một Số." - -msgid "publication.copyrightYearBasis.submissionDescription" -msgstr "Năm bản quyền sẽ được đặt tự động dựa trên ngày xuất bản." - -msgid "publication.datePublished" -msgstr "Ngày Xuất bản" - -msgid "publication.editDisabled" -msgstr "Phiên bản này đã được xuất bản và không thể chỉnh sửa." - -msgid "publication.event.published" -msgstr "Bài gửi đã được xuất bản." - -msgid "publication.event.scheduled" -msgstr "Bài gửi đã được lên lịch để xuất bản." - -msgid "publication.event.unpublished" -msgstr "Bài gửi chưa được xuất bản." - -msgid "publication.event.versionPublished" -msgstr "Một phiên bản mới đã được xuất bản." - -msgid "publication.event.versionScheduled" -msgstr "Một phiên bản mới đã được lên lịch để xuất bản." - -msgid "publication.event.versionUnpublished" -msgstr "Một phiên bản đã bị xóa từ mục xuất bản." - -msgid "publication.invalidSubmission" -msgstr "Bài gửi cho ấn phẩm này không thể được tìm thấy." - -msgid "publication.publish" -msgstr "Xuất bản" - -msgid "publication.publish.requirements" -msgstr "" -"Các yêu cầu sau phải được đáp ứng trước khi bài này có thể được xuất bản." - -msgid "publication.required.declined" -msgstr "Không thể xuất bản một bài bị từ chối." - -msgid "publication.required.reviewStage" -msgstr "" -"Bài gửi phải qua giai đoạn Sao chép hoặc Sản xuất trước khi có thể được xuất " -"bản." - -msgid "submission.license.description" -msgstr "" -"Giấy phép sẽ được đặt tự động thành " -"{$licenseName} khi giấy phép này được xuất bản." - -msgid "submission.copyrightHolder.description" -msgstr "" -"Bản quyền sẽ tự động được chỉ định cho {$copyright} khi tài liệu này được " -"xuất bản." - -msgid "submission.copyrightOther.description" -msgstr "Chuyển nhượng bản quyền cho các bài đã xuất bản cho bên sau." - -msgid "publication.unpublish" -msgstr "Hủy xuất bản" - -msgid "publication.unpublish.confirm" -msgstr "Bạn có chắc chắn rằng bạn không muốn xuất bản?" - -msgid "publication.unschedule.confirm" -msgstr "Bạn có chắc chắn rằng bạn không muốn lên lịch xuất bản?" - -msgid "publication.version.details" -msgstr "Chi tiết xuất bản cho phiên bản {$version}" - -msgid "submission.queries.production" -msgstr "Thảo luận về sản xuất" - diff --git a/package-lock.json b/package-lock.json index 6eb20f32a62..722e6aceb2e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,19 +1,21 @@ { "name": "OMP", - "version": "3.3.0", + "version": "3.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "OMP", - "version": "3.3.0", + "version": "3.4.0", "dependencies": { - "@tinymce/tinymce-vue": "^1.1.0", + "@tinymce/tinymce-vue": "^3", "chart.js": "^2.9.4", "clone-deep": "^4.0.1", "debounce": "^1.2.0", - "moment": "^2.27.0", - "tinymce": "^4.9.11", + "dompurify": "^3.0.8", + "element-resize-event": "^3.0.3", + "moment": "^2.29.2", + "tinymce": "^5.10.0", "v-tooltip": "^2.0.3", "vue": "^2.6.12", "vue-autosuggest": "^2.2.0", @@ -25,30 +27,32 @@ "vuedraggable": "^2.24.3" }, "devDependencies": { - "@foreachbe/cypress-tinymce": "^1.0.0", - "@vue/cli-plugin-babel": "^4.5.15", - "@vue/cli-plugin-eslint": "^4.5.15", - "@vue/cli-service": "^4.5.15", - "@vue/eslint-config-prettier": "^4.0.1", - "babel-eslint": "^10.1.0", - "cypress": "^5.6.0", + "@babel/core": "^7.12.16", + "@babel/eslint-parser": "^7.12.16", + "@vue/cli-plugin-babel": "^5.0.0", + "@vue/cli-plugin-eslint": "^5.0.0", + "@vue/cli-service": "^5.0.0", + "@vue/eslint-config-prettier": "^7.0.0", + "cypress": "^12.17.2", "cypress-failed-log": "^2.7.0", - "cypress-file-upload": "^3.5.1", + "cypress-file-upload": "^5.0.8", "cypress-wait-until": "^1.7.1", - "element-resize-event": "^3.0.3", - "eslint": "^5.16.0", - "eslint-plugin-vue": "^5.2.3", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-prettier": "^4.0.0", + "eslint-plugin-vue": "^8.0.3", "google-closure-compiler-java": "^20200719.0.0", - "less": "^3.12.2", - "less-loader": "^4.1.0", - "lint-staged": "^8.2.1", - "vue-template-compiler": "^2.6.12" + "husky": "^4.3.8", + "less": "^4.0.0", + "less-loader": "^8.0.0", + "lint-staged": "^11.0.1", + "vue-template-compiler": "^2.6.14" } }, "node_modules/@achrinza/node-ipc": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@achrinza/node-ipc/-/node-ipc-9.2.2.tgz", - "integrity": "sha512-b90U39dx0cU6emsOvy5hxU4ApNXnE3+Tuo8XQZfiKTGelDwpMwBVgBP7QX6dGTcJgu/miyJuNJ/2naFBliNWEw==", + "version": "9.2.6", + "resolved": "https://registry.npmjs.org/@achrinza/node-ipc/-/node-ipc-9.2.6.tgz", + "integrity": "sha512-ULSIYPy4ZPM301dfCxRz0l2GJjOwIo/PqmWonIu1bLml7UmnVQmH+juJcoyXp6E8gIRRNAjGYftJnNQlfy4vPg==", "dev": true, "dependencies": { "@node-ipc/js-queue": "2.0.3", @@ -56,7 +60,7 @@ "js-message": "1.0.7" }, "engines": { - "node": "8 || 10 || 12 || 14 || 16 || 17" + "node": "8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19" } }, "node_modules/@ampproject/remapping": { @@ -85,30 +89,30 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.1.tgz", - "integrity": "sha512-72a9ghR0gnESIa7jBN53U32FOVCEoztyIlKaNoU05zRhEecduGK9L9c3ww7Mp06JiR+0ls0GBPFJQwwtjn9ksg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.5.tgz", + "integrity": "sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.1.tgz", - "integrity": "sha512-1H8VgqXme4UXCRv7/Wa1bq7RVymKOzC7znjyFM8KiEzwFqcKUKYNoQef4GhdklgNvoBXyW4gYhuBNCM5o1zImw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.5.tgz", + "integrity": "sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.19.0", - "@babel/helper-compilation-targets": "^7.19.1", - "@babel/helper-module-transforms": "^7.19.0", - "@babel/helpers": "^7.19.0", - "@babel/parser": "^7.19.1", + "@babel/generator": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-module-transforms": "^7.20.2", + "@babel/helpers": "^7.20.5", + "@babel/parser": "^7.20.5", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -123,22 +127,31 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/@babel/eslint-parser": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz", + "integrity": "sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.11.0", + "eslint": "^7.5.0 || ^8.0.0" } }, "node_modules/@babel/generator": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.0.tgz", - "integrity": "sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.5.tgz", + "integrity": "sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==", "dev": true, "dependencies": { - "@babel/types": "^7.19.0", + "@babel/types": "^7.20.5", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -186,12 +199,12 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.1.tgz", - "integrity": "sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.19.1", + "@babel/compat-data": "^7.20.0", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.21.3", "semver": "^6.3.0" @@ -203,19 +216,10 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz", - "integrity": "sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.5.tgz", + "integrity": "sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -223,7 +227,7 @@ "@babel/helper-function-name": "^7.19.0", "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6" }, "engines": { @@ -234,13 +238,13 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", - "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", + "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.1.0" + "regexpu-core": "^5.2.1" }, "engines": { "node": ">=6.9.0" @@ -266,15 +270,6 @@ "@babel/core": "^7.4.0-0" } }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/helper-environment-visitor": { "version": "7.18.9", "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", @@ -346,19 +341,19 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz", - "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -377,9 +372,9 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", - "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", "dev": true, "engines": { "node": ">=6.9.0" @@ -420,24 +415,24 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.20.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", - "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", "dev": true, "dependencies": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.0" }, "engines": { "node": ">=6.9.0" @@ -456,9 +451,9 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", - "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", "dev": true, "engines": { "node": ">=6.9.0" @@ -483,29 +478,29 @@ } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", - "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", "dev": true, "dependencies": { "@babel/helper-function-name": "^7.19.0", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz", - "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==", + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.6.tgz", + "integrity": "sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==", "dev": true, "dependencies": { "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" }, "engines": { "node": ">=6.9.0" @@ -526,10 +521,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.1.tgz", - "integrity": "sha512-h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A==", - "dev": true, + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.5.tgz", + "integrity": "sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==", "bin": { "parser": "bin/babel-parser.js" }, @@ -570,9 +564,9 @@ } }, "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz", - "integrity": "sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz", + "integrity": "sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", @@ -621,13 +615,13 @@ } }, "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.19.1.tgz", - "integrity": "sha512-LfIKNBBY7Q1OX5C4xAgRQffOg2OnhAo9fnbcOHgOC9Yytm2Sw+4XqHufRYU86tHomzepxtvuVaNO+3EVKR4ivw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.5.tgz", + "integrity": "sha512-Lac7PpRJXcC3s9cKsBfl+uc+DYXU5FD06BrTFunQO6QIQT+DwyzDPURAowI3bcvD1dZF/ank1Z5rstUJn3Hn4Q==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/plugin-syntax-decorators": "^7.19.0" @@ -736,16 +730,16 @@ } }, "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", - "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz", + "integrity": "sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.18.8", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9", + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.8" + "@babel/plugin-transform-parameters": "^7.20.1" }, "engines": { "node": ">=6.9.0" @@ -804,14 +798,14 @@ } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", - "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", + "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -916,12 +910,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", - "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.19.0" }, "engines": { "node": ">=6.9.0" @@ -1107,12 +1101,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", - "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.5.tgz", + "integrity": "sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1122,18 +1116,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz", - "integrity": "sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz", + "integrity": "sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.19.0", + "@babel/helper-compilation-targets": "^7.20.0", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" }, @@ -1160,12 +1154,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.18.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz", - "integrity": "sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz", + "integrity": "sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1284,14 +1278,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", - "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz", + "integrity": "sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0" }, "engines": { "node": ">=6.9.0" @@ -1301,15 +1294,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", - "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz", + "integrity": "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-simple-access": "^7.19.4" }, "engines": { "node": ">=6.9.0" @@ -1319,16 +1311,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz", - "integrity": "sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz", + "integrity": "sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==", "dev": true, "dependencies": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.19.0", + "@babel/helper-module-transforms": "^7.19.6", "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-validator-identifier": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-validator-identifier": "^7.19.1" }, "engines": { "node": ">=6.9.0" @@ -1354,13 +1345,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", - "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", + "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-create-regexp-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1401,12 +1392,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", - "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.5.tgz", + "integrity": "sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1431,13 +1422,13 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", - "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", + "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "regenerator-transform": "^0.15.0" + "@babel/helper-plugin-utils": "^7.20.2", + "regenerator-transform": "^0.15.1" }, "engines": { "node": ">=6.9.0" @@ -1462,9 +1453,9 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.1.tgz", - "integrity": "sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz", + "integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==", "dev": true, "dependencies": { "@babel/helper-module-imports": "^7.18.6", @@ -1481,15 +1472,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", @@ -1598,18 +1580,18 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.1.tgz", - "integrity": "sha512-c8B2c6D16Lp+Nt6HcD+nHl0VbPKVnNPTpszahuxJJnurfMtKeZ80A+qUv48Y7wqvS+dTFuLuaM9oYxyNHbCLWA==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", + "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.19.1", - "@babel/helper-compilation-targets": "^7.19.1", - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-validator-option": "^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-async-generator-functions": "^7.19.1", + "@babel/plugin-proposal-async-generator-functions": "^7.20.1", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-static-block": "^7.18.6", "@babel/plugin-proposal-dynamic-import": "^7.18.6", @@ -1618,7 +1600,7 @@ "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.9", + "@babel/plugin-proposal-object-rest-spread": "^7.20.2", "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", "@babel/plugin-proposal-optional-chaining": "^7.18.9", "@babel/plugin-proposal-private-methods": "^7.18.6", @@ -1629,7 +1611,7 @@ "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.18.6", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -1642,10 +1624,10 @@ "@babel/plugin-transform-arrow-functions": "^7.18.6", "@babel/plugin-transform-async-to-generator": "^7.18.6", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.9", - "@babel/plugin-transform-classes": "^7.19.0", + "@babel/plugin-transform-block-scoping": "^7.20.2", + "@babel/plugin-transform-classes": "^7.20.2", "@babel/plugin-transform-computed-properties": "^7.18.9", - "@babel/plugin-transform-destructuring": "^7.18.13", + "@babel/plugin-transform-destructuring": "^7.20.2", "@babel/plugin-transform-dotall-regex": "^7.18.6", "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", @@ -1653,14 +1635,14 @@ "@babel/plugin-transform-function-name": "^7.18.9", "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.18.6", - "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.19.0", + "@babel/plugin-transform-modules-amd": "^7.19.6", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.6", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", "@babel/plugin-transform-new-target": "^7.18.6", "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.8", + "@babel/plugin-transform-parameters": "^7.20.1", "@babel/plugin-transform-property-literals": "^7.18.6", "@babel/plugin-transform-regenerator": "^7.18.6", "@babel/plugin-transform-reserved-words": "^7.18.6", @@ -1672,7 +1654,7 @@ "@babel/plugin-transform-unicode-escapes": "^7.18.10", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.19.0", + "@babel/types": "^7.20.2", "babel-plugin-polyfill-corejs2": "^0.3.3", "babel-plugin-polyfill-corejs3": "^0.6.0", "babel-plugin-polyfill-regenerator": "^0.4.1", @@ -1686,15 +1668,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@babel/preset-modules": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", @@ -1712,12 +1685,11 @@ } }, "node_modules/@babel/runtime": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", - "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", - "dev": true, + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.6.tgz", + "integrity": "sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==", "dependencies": { - "regenerator-runtime": "^0.13.4" + "regenerator-runtime": "^0.13.11" }, "engines": { "node": ">=6.9.0" @@ -1738,19 +1710,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.1.tgz", - "integrity": "sha512-0j/ZfZMxKukDaag2PtOPDbwuELqIar6lLskVPPJDjXMXjfLb1Obo/1yjxIGqqAJrmfaTIY3z2wFLAQ7qSkLsuA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.5.tgz", + "integrity": "sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==", "dev": true, "dependencies": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.19.0", + "@babel/generator": "^7.20.5", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.19.1", - "@babel/types": "^7.19.0", + "@babel/parser": "^7.20.5", + "@babel/types": "^7.20.5", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1759,13 +1731,13 @@ } }, "node_modules/@babel/types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.0.tgz", - "integrity": "sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.5.tgz", + "integrity": "sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.18.10", - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" }, "engines": { @@ -1782,97 +1754,10 @@ "node": ">=0.1.90" } }, - "node_modules/@cypress/listr-verbose-renderer": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz", - "integrity": "sha1-p3SS9LEdzHxEajSz4ochr9M8ZCo=", - "dev": true, - "dependencies": { - "chalk": "^1.1.3", - "cli-cursor": "^1.0.2", - "date-fns": "^1.27.2", - "figures": "^1.7.0" - } - }, - "node_modules/@cypress/listr-verbose-renderer/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "node_modules/@cypress/listr-verbose-renderer/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "node_modules/@cypress/listr-verbose-renderer/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "node_modules/@cypress/listr-verbose-renderer/node_modules/cli-cursor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", - "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", - "dev": true, - "dependencies": { - "restore-cursor": "^1.0.1" - } - }, - "node_modules/@cypress/listr-verbose-renderer/node_modules/figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.1.0" - } - }, - "node_modules/@cypress/listr-verbose-renderer/node_modules/onetime": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", - "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=", - "dev": true - }, - "node_modules/@cypress/listr-verbose-renderer/node_modules/restore-cursor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", - "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", - "dev": true, - "dependencies": { - "exit-hook": "^1.0.0", - "onetime": "^1.0.0" - } - }, - "node_modules/@cypress/listr-verbose-renderer/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - } - }, - "node_modules/@cypress/listr-verbose-renderer/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - }, "node_modules/@cypress/request": { - "version": "2.88.5", - "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.5.tgz", - "integrity": "sha512-TzEC1XMi1hJkywWpRfD2clreTa/Z+lOrXDCxxBTBPEcY5azdPi56A6Xw+O4tWJnaJH3iIE7G5aDXZC6JgRZLcA==", + "version": "2.88.11", + "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", + "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", "dev": true, "dependencies": { "aws-sign2": "~0.7.0", @@ -1882,19 +1767,20 @@ "extend": "~3.0.2", "forever-agent": "~0.6.1", "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", + "http-signature": "~1.3.6", "is-typedarray": "~1.0.0", "isstream": "~0.1.2", "json-stringify-safe": "~5.0.1", "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", "performance-now": "^2.1.0", - "qs": "~6.5.2", + "qs": "~6.10.3", "safe-buffer": "^5.1.2", "tough-cookie": "~2.5.0", "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" + "uuid": "^8.3.2" + }, + "engines": { + "node": ">= 6" } }, "node_modules/@cypress/xvfb": { @@ -1916,67 +1802,88 @@ "ms": "^2.1.1" } }, - "node_modules/@foreachbe/cypress-tinymce": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@foreachbe/cypress-tinymce/-/cypress-tinymce-1.0.0.tgz", - "integrity": "sha512-/uiJBAPtSp1gYdSd6SAOZ91EGk23458eL93R5tQFwsgmARy3KSHFzQQuJwCH1RFwLWZ/M2wc9a9knRA7httlKA==", - "dev": true + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } }, - "node_modules/@hapi/address": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", - "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==", - "deprecated": "Moved to 'npm install @sideway/address'", - "dev": true + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/@hapi/bourne": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", - "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==", - "deprecated": "This version has been deprecated and is no longer supported or maintained", - "dev": true + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/@hapi/hoek": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", - "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==", - "deprecated": "This version has been deprecated and is no longer supported or maintained", + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", "dev": true }, - "node_modules/@hapi/joi": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", - "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", - "deprecated": "Switch to 'npm install joi'", - "dev": true, - "dependencies": { - "@hapi/address": "2.x.x", - "@hapi/bourne": "1.x.x", - "@hapi/hoek": "8.x.x", - "@hapi/topo": "3.x.x" - } - }, "node_modules/@hapi/topo": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", - "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", - "deprecated": "This version has been deprecated and is no longer supported or maintained", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", "dev": true, "dependencies": { - "@hapi/hoek": "^8.3.0" + "@hapi/hoek": "^9.0.0" } }, - "node_modules/@intervolga/optimize-cssnano-plugin": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@intervolga/optimize-cssnano-plugin/-/optimize-cssnano-plugin-1.0.6.tgz", - "integrity": "sha512-zN69TnSr0viRSU6cEDIcuPcP67QcpQ6uHACg58FiN9PDrU6SLyGW3MR4tiISbYxy1kDWAVPwD+XwQTWE5cigAA==", + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", "dev": true, "dependencies": { - "cssnano": "^4.0.0", - "cssnano-preset-default": "^4.0.0", - "postcss": "^7.0.0" + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" } }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -2008,6 +1915,30 @@ "node": ">=6.0.0" } }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.4.14", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", @@ -2015,23 +1946,28 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.15", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", - "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, - "node_modules/@mrmlnc/readdir-enhanced": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", - "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", "dev": true, "dependencies": { - "call-me-maybe": "^1.0.1", - "glob-to-regexp": "^0.3.0" + "eslint-scope": "5.1.1" } }, "node_modules/@node-ipc/js-queue": { @@ -2046,72 +1982,147 @@ "node": ">=1.0.0" } }, - "node_modules/@nodelib/fs.stat": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", - "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", - "dev": true - }, - "node_modules/@samverschueren/stream-to-observable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz", - "integrity": "sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg==", + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { - "any-observable": "^0.3.0" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/@soda/friendly-errors-webpack-plugin": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.7.1.tgz", - "integrity": "sha512-cWKrGaFX+rfbMrAxVv56DzhPNqOJPZuNIS2HGMELtgGzb+vsMzyig9mml5gZ/hr2BGtSLV+dP2LUEuAL8aG2mQ==", + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, - "dependencies": { - "chalk": "^1.1.3", - "error-stack-parser": "^2.0.0", - "string-width": "^2.0.0" + "engines": { + "node": ">= 8" } }, - "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "node_modules/@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", + "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==", + "dev": true + }, + "node_modules/@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", "dev": true, "dependencies": { - "ansi-regex": "^2.0.0" + "@hapi/hoek": "^9.0.0" } }, - "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/supports-color": { + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "dev": true + }, + "node_modules/@sideway/pinpoint": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", "dev": true }, + "node_modules/@soda/friendly-errors-webpack-plugin": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.8.1.tgz", + "integrity": "sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==", + "dev": true, + "dependencies": { + "chalk": "^3.0.0", + "error-stack-parser": "^2.0.6", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@soda/get-current-script": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@soda/get-current-script/-/get-current-script-1.0.2.tgz", @@ -2119,72 +2130,110 @@ "dev": true }, "node_modules/@tinymce/tinymce-vue": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tinymce/tinymce-vue/-/tinymce-vue-1.1.2.tgz", - "integrity": "sha512-nknWxb5gQv8lYXtJ7S/T8f/S15iUVcIKZfBWPRtvihv7GVrPZu3lDeNfvpdgR5VHG8YZakdhVhg/zvaT5XzPNQ==", - "dependencies": { - "vue": "^2.5.17" + "version": "3.2.8", + "resolved": "https://registry.npmjs.org/@tinymce/tinymce-vue/-/tinymce-vue-3.2.8.tgz", + "integrity": "sha512-jEz+NZ0g+FZFz273OEUWz9QkwPMyjc5AJYyxOgu51O1Y5UaJ/6IUddXTX6A20mwCleEv5ebwNYdalviafx4fnA==", + "peerDependencies": { + "vue": "^2.4.3" } }, - "node_modules/@types/anymatch": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", - "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==", - "dev": true + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } }, "node_modules/@types/body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==", + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, "dependencies": { "@types/connect": "*", "@types/node": "*" } }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/chart.js": { - "version": "2.9.28", - "resolved": "https://registry.npmjs.org/@types/chart.js/-/chart.js-2.9.28.tgz", - "integrity": "sha512-9YYhsxRngRJb0dkuaU5BezkF+zvvVHnwdRw+rtlahtFb4zqNf9YSgWsOq+dLYeh0fqsWmHUYLR64eNigh02F+w==", + "version": "2.9.37", + "resolved": "https://registry.npmjs.org/@types/chart.js/-/chart.js-2.9.37.tgz", + "integrity": "sha512-9bosRfHhkXxKYfrw94EmyDQcdjMaQPkU1fH2tDxu8DWXxf1mjzWQAV4laJF51ZbC2ycYwNDvIm1rGez8Bug0vg==", "dependencies": { "moment": "^2.10.2" } }, "node_modules/@types/connect": { - "version": "3.4.33", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.33.tgz", - "integrity": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==", + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect-history-api-fallback": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.3.tgz", - "integrity": "sha512-7SxFCd+FLlxCfwVwbyPxbR4khL9aNikJhrorw8nUIOqeuooc9gifBuDQOJw5kzN7i6i3vLn9G8Wde/4QDihpYw==", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", "dev": true, "dependencies": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, + "node_modules/@types/eslint": { + "version": "8.4.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz", + "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==", + "dev": true + }, "node_modules/@types/express": { - "version": "4.17.9", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.9.tgz", - "integrity": "sha512-SDzEIZInC4sivGIFY4Sz1GG6J9UObPwCInYJjko2jzOf/Imx/dlpume6Xxwj1ORL82tBbmN4cPDIDkLbWHk9hw==", + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.15.tgz", + "integrity": "sha512-Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ==", "dev": true, "dependencies": { "@types/body-parser": "*", - "@types/express-serve-static-core": "*", + "@types/express-serve-static-core": "^4.17.31", "@types/qs": "*", "@types/serve-static": "*" } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.14", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.14.tgz", - "integrity": "sha512-uFTLwu94TfUFMToXNgRZikwPuZdOtDgs3syBtAIr/OXorL1kJqUJT9qCLnRZ5KBOWfZQikQ2xKgR2tnDj1OgDA==", + "version": "4.17.31", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz", + "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", "dev": true, "dependencies": { "@types/node": "*", @@ -2192,64 +2241,43 @@ "@types/range-parser": "*" } }, - "node_modules/@types/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", - "dev": true, - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true }, "node_modules/@types/http-proxy": { - "version": "1.17.4", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.4.tgz", - "integrity": "sha512-IrSHl2u6AWXduUaDLqYpt45tLVCtYv7o4Z0s1KghBCDgIIS9oW5K1H8mZG/A2CfeLdEa7rTd1ACOiHBc1EMT2Q==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/http-proxy-middleware": { - "version": "0.19.3", - "resolved": "https://registry.npmjs.org/@types/http-proxy-middleware/-/http-proxy-middleware-0.19.3.tgz", - "integrity": "sha512-lnBTx6HCOUeIJMLbI/LaL5EmdKLhczJY5oeXZpX/cXE4rRqb3RmV7VcMpiEfYkmTjipv3h7IAyIINe4plEv7cA==", + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", "dev": true, "dependencies": { - "@types/connect": "*", - "@types/http-proxy": "*", "@types/node": "*" } }, "node_modules/@types/json-schema": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", - "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==", + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "dev": true }, "node_modules/@types/mime": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.3.tgz", - "integrity": "sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==", - "dev": true - }, - "node_modules/@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", "dev": true }, "node_modules/@types/minimist": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.1.tgz", - "integrity": "sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", "dev": true }, "node_modules/@types/node": { - "version": "14.14.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz", - "integrity": "sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==", + "version": "14.18.35", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.35.tgz", + "integrity": "sha512-2ATO8pfhG1kDvw4Lc4C0GXIMSQFFJBCo/R1fSgTwmUlq5oy95LXyjDQinsRVgQY6gp6ghh3H91wk9ES5/5C+Tw==", "dev": true }, "node_modules/@types/normalize-package-data": { @@ -2258,28 +2286,43 @@ "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", "dev": true }, - "node_modules/@types/q": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", - "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", "dev": true }, "node_modules/@types/qs": { - "version": "6.9.5", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz", - "integrity": "sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ==", + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", "dev": true }, "node_modules/@types/range-parser": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", - "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", "dev": true }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dev": true, + "dependencies": { + "@types/express": "*" + } + }, "node_modules/@types/serve-static": { - "version": "1.13.8", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.8.tgz", - "integrity": "sha512-MoJhSQreaVoL+/hurAZzIm8wafFR6ajiTM1m4A0kv6AGeVBl4r4pOV8bGFrjjq1sGxDTnCoF8i22o0/aE5XCyA==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", "dev": true, "dependencies": { "@types/mime": "*", @@ -2287,94 +2330,45 @@ } }, "node_modules/@types/sinonjs__fake-timers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.2.tgz", - "integrity": "sha512-dIPoZ3g5gcx9zZEszaxLSVTvMReD3xxyyDnQUjA6IYDG9Ba2AV0otMPs+77sG9ojB4Qr2N2Vk5RnKeuA0X/0bg==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", + "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", "dev": true }, "node_modules/@types/sizzle": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.2.tgz", - "integrity": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==", - "dev": true - }, - "node_modules/@types/source-list-map": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", - "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", - "dev": true - }, - "node_modules/@types/tapable": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", - "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==", - "dev": true - }, - "node_modules/@types/uglify-js": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.11.1.tgz", - "integrity": "sha512-7npvPKV+jINLu1SpSYVWG8KvyJBhBa8tmzMMdDoVc2pWUYHN8KIXlPJhjJ4LT97c4dXJA2SHL/q6ADbDriZN+Q==", - "dev": true, - "dependencies": { - "source-map": "^0.6.1" - } - }, - "node_modules/@types/uglify-js/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", + "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", "dev": true }, - "node_modules/@types/webpack": { - "version": "4.41.25", - "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.25.tgz", - "integrity": "sha512-cr6kZ+4m9lp86ytQc1jPOJXgINQyz3kLLunZ57jznW+WIAL0JqZbGubQk4GlD42MuQL5JGOABrxdpqqWeovlVQ==", + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", "dev": true, "dependencies": { - "@types/anymatch": "*", - "@types/node": "*", - "@types/tapable": "*", - "@types/uglify-js": "*", - "@types/webpack-sources": "*", - "source-map": "^0.6.0" + "@types/node": "*" } }, - "node_modules/@types/webpack-dev-server": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz", - "integrity": "sha512-rIb+LtUkKnh7+oIJm3WiMJONd71Q0lZuqGLcSqhZ5qjN9gV/CNmZe7Bai+brnBPZ/KVYOsr+4bFLiNZwjBicLw==", + "node_modules/@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "dev": true, "dependencies": { - "@types/connect-history-api-fallback": "*", - "@types/express": "*", - "@types/http-proxy-middleware": "*", - "@types/serve-static": "*", - "@types/webpack": "*" + "@types/node": "*" } }, - "node_modules/@types/webpack-sources": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.0.0.tgz", - "integrity": "sha512-a5kPx98CNFRKQ+wqawroFunvFqv7GHm/3KOI52NY9xWADgc8smu4R6prt4EU/M4QfVjvgBkMqU4fBhw3QfMVkg==", + "node_modules/@types/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", "dev": true, + "optional": true, "dependencies": { - "@types/node": "*", - "@types/source-list-map": "*", - "source-map": "^0.7.3" + "@types/node": "*" } }, - "node_modules/@types/webpack-sources/node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true - }, - "node_modules/@types/webpack/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, "node_modules/@vue/babel-helper-vue-jsx-merge-props": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz", @@ -2431,32 +2425,32 @@ } }, "node_modules/@vue/babel-preset-app": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.5.19.tgz", - "integrity": "sha512-VCNRiAt2P/bLo09rYt3DLe6xXUMlhJwrvU18Ddd/lYJgC7s8+wvhgYs+MTx4OiAXdu58drGwSBO9SPx7C6J82Q==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-5.0.8.tgz", + "integrity": "sha512-yl+5qhpjd8e1G4cMXfORkkBlvtPCIgmRf3IYCWYDKIQ7m+PPa5iTm4feiNmCMD6yGqQWMhhK/7M3oWGL9boKwg==", "dev": true, "dependencies": { - "@babel/core": "^7.11.0", - "@babel/helper-compilation-targets": "^7.9.6", - "@babel/helper-module-imports": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-proposal-decorators": "^7.8.3", + "@babel/core": "^7.12.16", + "@babel/helper-compilation-targets": "^7.12.16", + "@babel/helper-module-imports": "^7.12.13", + "@babel/plugin-proposal-class-properties": "^7.12.13", + "@babel/plugin-proposal-decorators": "^7.12.13", "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-jsx": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.11.0", - "@babel/preset-env": "^7.11.0", - "@babel/runtime": "^7.11.0", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/plugin-transform-runtime": "^7.12.15", + "@babel/preset-env": "^7.12.16", + "@babel/runtime": "^7.12.13", "@vue/babel-plugin-jsx": "^1.0.3", - "@vue/babel-preset-jsx": "^1.2.4", + "@vue/babel-preset-jsx": "^1.1.2", "babel-plugin-dynamic-import-node": "^2.3.3", - "core-js": "^3.6.5", - "core-js-compat": "^3.6.5", - "semver": "^6.1.0" + "core-js": "^3.8.3", + "core-js-compat": "^3.8.3", + "semver": "^7.3.4" }, "peerDependencies": { "@babel/core": "*", "core-js": "^3", - "vue": "^2 || ^3.0.0-0" + "vue": "^2 || ^3.2.13" }, "peerDependenciesMeta": { "core-js": { @@ -2468,12 +2462,18 @@ } }, "node_modules/@vue/babel-preset-app/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, "bin": { "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/@vue/babel-preset-jsx": { @@ -2608,145 +2608,140 @@ } }, "node_modules/@vue/cli-overlay": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-overlay/-/cli-overlay-4.5.19.tgz", - "integrity": "sha512-GdxvNSmOw7NHIazCO8gTK+xZbaOmScTtxj6eHVeMbYpDYVPJ+th3VMLWNpw/b6uOjwzzcyKlA5dRQ1DAb+gF/g==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-overlay/-/cli-overlay-5.0.8.tgz", + "integrity": "sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ==", "dev": true }, "node_modules/@vue/cli-plugin-babel": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-4.5.19.tgz", - "integrity": "sha512-8ebXzaMW9KNTMAN6+DzkhFsjty1ieqT7hIW5Lbk4v30Qhfjkms7lBWyXPGkoq+wAikXFa1Gnam2xmWOBqDDvWg==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-5.0.8.tgz", + "integrity": "sha512-a4qqkml3FAJ3auqB2kN2EMPocb/iu0ykeELwed+9B1c1nQ1HKgslKMHMPavYx3Cd/QAx2mBD4hwKBqZXEI/CsQ==", "dev": true, "dependencies": { - "@babel/core": "^7.11.0", - "@vue/babel-preset-app": "^4.5.19", - "@vue/cli-shared-utils": "^4.5.19", - "babel-loader": "^8.1.0", - "cache-loader": "^4.1.0", - "thread-loader": "^2.1.3", - "webpack": "^4.0.0" + "@babel/core": "^7.12.16", + "@vue/babel-preset-app": "^5.0.8", + "@vue/cli-shared-utils": "^5.0.8", + "babel-loader": "^8.2.2", + "thread-loader": "^3.0.0", + "webpack": "^5.54.0" }, "peerDependencies": { - "@vue/cli-service": "^3.0.0 || ^4.0.0-0" + "@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0" } }, "node_modules/@vue/cli-plugin-eslint": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-eslint/-/cli-plugin-eslint-4.5.19.tgz", - "integrity": "sha512-53sa4Pu9j5KajesFlj494CcO8vVo3e3nnZ1CCKjGGnrF90id1rUeepcFfz5XjwfEtbJZp2x/NoX/EZE6zCzSFQ==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-eslint/-/cli-plugin-eslint-5.0.8.tgz", + "integrity": "sha512-d11+I5ONYaAPW1KyZj9GlrV/E6HZePq5L5eAF5GgoVdu6sxr6bDgEoxzhcS1Pk2eh8rn1MxG/FyyR+eCBj/CNg==", "dev": true, "dependencies": { - "@vue/cli-shared-utils": "^4.5.19", - "eslint-loader": "^2.2.1", - "globby": "^9.2.0", - "inquirer": "^7.1.0", - "webpack": "^4.0.0", + "@vue/cli-shared-utils": "^5.0.8", + "eslint-webpack-plugin": "^3.1.0", + "globby": "^11.0.2", + "webpack": "^5.54.0", "yorkie": "^2.0.0" }, "peerDependencies": { - "@vue/cli-service": "^3.0.0 || ^4.0.0-0", - "eslint": ">= 1.6.0 < 7.0.0" + "@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0", + "eslint": ">=7.5.0" } }, "node_modules/@vue/cli-plugin-router": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-router/-/cli-plugin-router-4.5.19.tgz", - "integrity": "sha512-3icGzH1IbVYmMMsOwYa0lal/gtvZLebFXdE5hcQJo2mnTwngXGMTyYAzL56EgHBPjbMmRpyj6Iw9k4aVInVX6A==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-router/-/cli-plugin-router-5.0.8.tgz", + "integrity": "sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg==", "dev": true, "dependencies": { - "@vue/cli-shared-utils": "^4.5.19" + "@vue/cli-shared-utils": "^5.0.8" }, "peerDependencies": { - "@vue/cli-service": "^3.0.0 || ^4.0.0-0" + "@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0" } }, "node_modules/@vue/cli-plugin-vuex": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.5.19.tgz", - "integrity": "sha512-DUmfdkG3pCdkP7Iznd87RfE9Qm42mgp2hcrNcYQYSru1W1gX2dG/JcW8bxmeGSa06lsxi9LEIc/QD1yPajSCZw==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-5.0.8.tgz", + "integrity": "sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA==", "dev": true, "peerDependencies": { - "@vue/cli-service": "^3.0.0 || ^4.0.0-0" + "@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0" } }, "node_modules/@vue/cli-service": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-service/-/cli-service-4.5.19.tgz", - "integrity": "sha512-+Wpvj8fMTCt9ZPOLu5YaLkFCQmB4MrZ26aRmhhKiCQ/4PMoL6mLezfqdt6c+m2htM+1WV5RunRo+0WHl2DfwZA==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-service/-/cli-service-5.0.8.tgz", + "integrity": "sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==", "dev": true, "dependencies": { - "@intervolga/optimize-cssnano-plugin": "^1.0.5", - "@soda/friendly-errors-webpack-plugin": "^1.7.1", - "@soda/get-current-script": "^1.0.0", + "@babel/helper-compilation-targets": "^7.12.16", + "@soda/friendly-errors-webpack-plugin": "^1.8.0", + "@soda/get-current-script": "^1.0.2", "@types/minimist": "^1.2.0", - "@types/webpack": "^4.0.0", - "@types/webpack-dev-server": "^3.11.0", - "@vue/cli-overlay": "^4.5.19", - "@vue/cli-plugin-router": "^4.5.19", - "@vue/cli-plugin-vuex": "^4.5.19", - "@vue/cli-shared-utils": "^4.5.19", - "@vue/component-compiler-utils": "^3.1.2", - "@vue/preload-webpack-plugin": "^1.1.0", - "@vue/web-component-wrapper": "^1.2.0", - "acorn": "^7.4.0", - "acorn-walk": "^7.1.1", + "@vue/cli-overlay": "^5.0.8", + "@vue/cli-plugin-router": "^5.0.8", + "@vue/cli-plugin-vuex": "^5.0.8", + "@vue/cli-shared-utils": "^5.0.8", + "@vue/component-compiler-utils": "^3.3.0", + "@vue/vue-loader-v15": "npm:vue-loader@^15.9.7", + "@vue/web-component-wrapper": "^1.3.0", + "acorn": "^8.0.5", + "acorn-walk": "^8.0.2", "address": "^1.1.2", - "autoprefixer": "^9.8.6", - "browserslist": "^4.12.0", - "cache-loader": "^4.1.0", + "autoprefixer": "^10.2.4", + "browserslist": "^4.16.3", "case-sensitive-paths-webpack-plugin": "^2.3.0", - "cli-highlight": "^2.1.4", + "cli-highlight": "^2.1.10", "clipboardy": "^2.3.0", - "cliui": "^6.0.0", - "copy-webpack-plugin": "^5.1.1", - "css-loader": "^3.5.3", - "cssnano": "^4.1.10", + "cliui": "^7.0.4", + "copy-webpack-plugin": "^9.0.1", + "css-loader": "^6.5.0", + "css-minimizer-webpack-plugin": "^3.0.2", + "cssnano": "^5.0.0", "debug": "^4.1.1", - "default-gateway": "^5.0.5", - "dotenv": "^8.2.0", + "default-gateway": "^6.0.3", + "dotenv": "^10.0.0", "dotenv-expand": "^5.1.0", - "file-loader": "^4.2.0", - "fs-extra": "^7.0.1", - "globby": "^9.2.0", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", "hash-sum": "^2.0.0", - "html-webpack-plugin": "^3.2.0", + "html-webpack-plugin": "^5.1.0", + "is-file-esm": "^1.0.0", "launch-editor-middleware": "^2.2.1", "lodash.defaultsdeep": "^4.6.1", "lodash.mapvalues": "^4.6.0", - "lodash.transform": "^4.6.0", - "mini-css-extract-plugin": "^0.9.0", + "mini-css-extract-plugin": "^2.5.3", "minimist": "^1.2.5", - "pnp-webpack-plugin": "^1.6.4", + "module-alias": "^2.2.2", "portfinder": "^1.0.26", - "postcss-loader": "^3.0.0", + "postcss": "^8.2.6", + "postcss-loader": "^6.1.1", + "progress-webpack-plugin": "^1.0.12", "ssri": "^8.0.1", - "terser-webpack-plugin": "^1.4.4", - "thread-loader": "^2.1.3", - "url-loader": "^2.2.0", - "vue-loader": "^15.9.2", - "vue-style-loader": "^4.1.2", - "webpack": "^4.0.0", - "webpack-bundle-analyzer": "^3.8.0", - "webpack-chain": "^6.4.0", - "webpack-dev-server": "^3.11.0", - "webpack-merge": "^4.2.2" + "terser-webpack-plugin": "^5.1.1", + "thread-loader": "^3.0.0", + "vue-loader": "^17.0.0", + "vue-style-loader": "^4.1.3", + "webpack": "^5.54.0", + "webpack-bundle-analyzer": "^4.4.0", + "webpack-chain": "^6.5.1", + "webpack-dev-server": "^4.7.3", + "webpack-merge": "^5.7.3", + "webpack-virtual-modules": "^0.4.2", + "whatwg-fetch": "^3.6.2" }, "bin": { "vue-cli-service": "bin/vue-cli-service.js" }, "engines": { - "node": ">=8" - }, - "optionalDependencies": { - "vue-loader-v16": "npm:vue-loader@^16.1.0" + "node": "^12.0.0 || >= 14.0.0" }, "peerDependencies": { - "@vue/compiler-sfc": "^3.0.0-beta.14", - "vue-template-compiler": "^2.0.0" + "vue-template-compiler": "^2.0.0", + "webpack-sources": "*" }, "peerDependenciesMeta": { - "@vue/compiler-sfc": { + "cache-loader": { "optional": true }, "less-loader": { @@ -2766,100 +2761,144 @@ }, "vue-template-compiler": { "optional": true + }, + "webpack-sources": { + "optional": true } } }, - "node_modules/@vue/cli-service/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true + "node_modules/@vue/cli-shared-utils": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-5.0.8.tgz", + "integrity": "sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ==", + "dev": true, + "dependencies": { + "@achrinza/node-ipc": "^9.2.5", + "chalk": "^4.1.2", + "execa": "^1.0.0", + "joi": "^17.4.0", + "launch-editor": "^2.2.1", + "lru-cache": "^6.0.0", + "node-fetch": "^2.6.7", + "open": "^8.0.2", + "ora": "^5.3.0", + "read-pkg": "^5.1.1", + "semver": "^7.3.4", + "strip-ansi": "^6.0.0" + } }, - "node_modules/@vue/cli-service/node_modules/ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "node_modules/@vue/cli-shared-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "minipass": "^3.1.1" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 8" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@vue/cli-shared-utils": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.19.tgz", - "integrity": "sha512-JYpdsrC/d9elerKxbEUtmSSU6QRM60rirVubOewECHkBHj+tLNznWq/EhCjswywtePyLaMUK25eTqnTSZlEE+g==", + "node_modules/@vue/cli-shared-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "@achrinza/node-ipc": "9.2.2", - "@hapi/joi": "^15.0.1", - "chalk": "^2.4.2", - "execa": "^1.0.0", - "launch-editor": "^2.2.1", - "lru-cache": "^5.1.1", - "open": "^6.3.0", - "ora": "^3.4.0", - "read-pkg": "^5.1.1", - "request": "^2.88.2", - "semver": "^6.1.0", - "strip-ansi": "^6.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@vue/cli-shared-utils/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/@vue/cli-shared-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@vue/cli-shared-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/@vue/cli-shared-utils/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, "bin": { "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@vue/cli-shared-utils/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/@vue/cli-shared-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1" + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/@vue/component-compiler-utils": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz", - "integrity": "sha512-lejBLa7xAMsfiZfNp7Kv51zOzifnb29FwdnMLa96z26kXErPFioSf9BMcePVIQ6/Gc6/mC0UrPpxAWIHyae0vw==", + "node_modules/@vue/compiler-sfc": { + "version": "2.7.14", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.14.tgz", + "integrity": "sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==", + "dependencies": { + "@babel/parser": "^7.18.4", + "postcss": "^8.4.14", + "source-map": "^0.6.1" + } + }, + "node_modules/@vue/component-compiler-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz", + "integrity": "sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==", "dev": true, "dependencies": { "consolidate": "^0.15.1", "hash-sum": "^1.0.2", "lru-cache": "^4.1.2", "merge-source-map": "^1.1.0", - "postcss": "^7.0.14", + "postcss": "^7.0.36", "postcss-selector-parser": "^6.0.2", "source-map": "~0.6.1", "vue-template-es2015-compiler": "^1.9.0" }, "optionalDependencies": { - "prettier": "^1.18.2" + "prettier": "^1.18.2 || ^2.0.0" } }, "node_modules/@vue/component-compiler-utils/node_modules/hash-sum": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", - "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", "dev": true }, "node_modules/@vue/component-compiler-utils/node_modules/lru-cache": { @@ -2872,219 +2911,230 @@ "yallist": "^2.1.2" } }, - "node_modules/@vue/component-compiler-utils/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/@vue/component-compiler-utils/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", "dev": true }, + "node_modules/@vue/component-compiler-utils/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, "node_modules/@vue/component-compiler-utils/node_modules/yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", "dev": true }, "node_modules/@vue/eslint-config-prettier": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-4.0.1.tgz", - "integrity": "sha512-rJEDXPb61Hfgg8GllO3XXFP98bcIxdNNHSrNcxP/vBSukOolgOwQyZJ5f5z/c7ViPyh5/IDlC4qBnhx/0n+I4g==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-7.0.0.tgz", + "integrity": "sha512-/CTc6ML3Wta1tCe1gUeO0EYnVXfo3nJXsIhZ8WJr3sov+cGASr6yuiibJTL6lmIBm7GobopToOuB3B6AWyV0Iw==", "dev": true, "dependencies": { - "eslint-config-prettier": "^3.3.0", - "eslint-plugin-prettier": "^3.0.0", - "prettier": "^1.15.2" + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-prettier": "^4.0.0" + }, + "peerDependencies": { + "eslint": ">= 7.28.0", + "prettier": ">= 2.0.0" } }, - "node_modules/@vue/eslint-config-prettier/node_modules/prettier": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.15.3.tgz", - "integrity": "sha512-gAU9AGAPMaKb3NNSUUuhhFAS7SCO4ALTN4nRIn6PJ075Qd28Yn2Ig2ahEJWdJwJmlEBTUfC7mMUSFy8MwsOCfg==", - "dev": true + "node_modules/@vue/vue-loader-v15": { + "name": "vue-loader", + "version": "15.10.1", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.1.tgz", + "integrity": "sha512-SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA==", + "dev": true, + "dependencies": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + }, + "peerDependencies": { + "css-loader": "*", + "webpack": "^3.0.0 || ^4.1.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "cache-loader": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } }, - "node_modules/@vue/preload-webpack-plugin": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.2.tgz", - "integrity": "sha512-LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ==", + "node_modules/@vue/vue-loader-v15/node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", "dev": true }, "node_modules/@vue/web-component-wrapper": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.2.0.tgz", - "integrity": "sha512-Xn/+vdm9CjuC9p3Ae+lTClNutrVhsXpzxvoTXXtoys6kVRX9FkueSUAqSWAyZntmVLlR4DosBV4pH8y5Z/HbUw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.3.0.tgz", + "integrity": "sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==", "dev": true }, "node_modules/@webassemblyjs/ast": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", - "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", "dev": true, "dependencies": { - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0" + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", - "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", "dev": true }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", - "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", - "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", - "dev": true - }, - "node_modules/@webassemblyjs/helper-code-frame": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", - "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", - "dev": true, - "dependencies": { - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "node_modules/@webassemblyjs/helper-fsm": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", - "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", "dev": true }, - "node_modules/@webassemblyjs/helper-module-context": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", - "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.9.0" + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", - "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", - "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", - "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", "dev": true, "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", - "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", "dev": true, "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", - "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", - "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/helper-wasm-section": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-opt": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "@webassemblyjs/wast-printer": "1.9.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", - "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", - "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", - "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "node_modules/@webassemblyjs/wast-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", - "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/floating-point-hex-parser": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-code-frame": "1.9.0", - "@webassemblyjs/helper-fsm": "1.9.0", - "@xtuc/long": "4.2.2" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", - "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0", + "@webassemblyjs/ast": "1.11.1", "@xtuc/long": "4.2.2" } }, @@ -3101,32 +3151,78 @@ "dev": true }, "node_modules/accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, "dependencies": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" } }, "node_modules/acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", - "dev": true + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } }, "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } }, "node_modules/address": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", - "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", - "dev": true + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, "node_modules/ajv": { "version": "6.12.6", @@ -3138,55 +3234,104 @@ "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, "node_modules/ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true - }, - "node_modules/ajv/node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", - "dev": true + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } }, "node_modules/ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", - "dev": true + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } }, "node_modules/ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "dev": true + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", - "dev": true + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } }, "node_modules/ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, "node_modules/ansi-styles": { "version": "3.2.1", @@ -3195,42 +3340,49 @@ "dev": true, "dependencies": { "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/any-observable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz", - "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==", - "dev": true - }, "node_modules/any-promise": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", "dev": true }, "node_modules/anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, - "optional": true, "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, "node_modules/arch": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", - "dev": true + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, "node_modules/argparse": { "version": "1.0.10", @@ -3241,152 +3393,58 @@ "sprintf-js": "~1.0.2" } }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true - }, "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", "dev": true }, "node_modules/array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, - "dependencies": { - "array-uniq": "^1.0.1" + "engines": { + "node": ">=8" } }, - "node_modules/array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", - "dev": true - }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, "node_modules/asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, "dependencies": { "safer-buffer": "~2.1.0" } }, - "node_modules/asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", "dev": true, - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" + "engines": { + "node": ">=0.8" } }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - }, - "node_modules/assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, - "dependencies": { - "object-assign": "^4.1.1", - "util": "0.10.3" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "dev": true - }, - "node_modules/assert/node_modules/inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", - "dev": true - }, - "node_modules/assert/node_modules/util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "dev": true, - "dependencies": { - "inherits": "2.0.1" + "engines": { + "node": ">=8" } }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "dev": true - }, - "node_modules/astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", - "dev": true - }, "node_modules/async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "dev": true, - "dependencies": { - "lodash": "^4.17.14" - } - }, - "node_modules/async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, - "node_modules/async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "dev": true }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "dev": true }, "node_modules/at-least-node": { @@ -3398,98 +3456,87 @@ "node": ">= 4.0.0" } }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true - }, "node_modules/autoprefixer": { - "version": "9.8.6", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", - "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], "dependencies": { - "browserslist": "^4.12.0", - "caniuse-lite": "^1.0.30001109", - "colorette": "^1.2.1", + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^7.0.32", - "postcss-value-parser": "^4.1.0" + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, "node_modules/aws-sign2": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "dev": true + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "dev": true, + "engines": { + "node": "*" + } }, "node_modules/aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", "dev": true }, - "node_modules/babel-eslint": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", - "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.0", - "@babel/traverse": "^7.7.0", - "@babel/types": "^7.7.0", - "eslint-visitor-keys": "^1.0.0", - "resolve": "^1.12.0" - } - }, "node_modules/babel-loader": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.1.tgz", - "integrity": "sha512-dMF8sb2KQ8kJl21GUjkW1HWmcsL39GOV5vnzjqrCzEPNY0S0UfMLnumidiwIajDSBmKhYf5iRW+HXaM4cvCKBw==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", "dev": true, "dependencies": { - "find-cache-dir": "^2.1.0", - "loader-utils": "^1.4.0", - "make-dir": "^2.1.0", - "pify": "^4.0.1", + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", "schema-utils": "^2.6.5" - } - }, - "node_modules/babel-loader/node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "node_modules/babel-loader/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" } }, "node_modules/babel-loader/node_modules/loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", - "json5": "^1.0.1" + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" } }, - "node_modules/babel-loader/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, "node_modules/babel-plugin-dynamic-import-node": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", @@ -3513,15 +3560,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", @@ -3548,80 +3586,41 @@ } }, "node_modules/balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - } - }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" - } - }, - "node_modules/base/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - } - }, - "node_modules/base/node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - } - }, - "node_modules/base/node_modules/is-descriptor": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "node_modules/base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, "node_modules/batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", "dev": true }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dev": true, "dependencies": { "tweetnacl": "^0.14.3" @@ -3630,32 +3629,36 @@ "node_modules/bezier-easing": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/bezier-easing/-/bezier-easing-2.1.0.tgz", - "integrity": "sha1-wE3+i5JtbsrKGBPWn/F5t8ICXYY=" - }, - "node_modules/bfj": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz", - "integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==", - "dev": true, - "dependencies": { - "bluebird": "^3.5.5", - "check-types": "^8.0.3", - "hoopy": "^0.1.4", - "tryer": "^1.0.1" - } + "integrity": "sha512-gbIqZ/eslnUFC1tjEvtz0sgx+xTK20wDnYMIA27VA04R7w6xxXQPZDbibjA9DTWZRA2CXtwHykkVzlCaAJAZig==" }, "node_modules/big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true + "dev": true, + "engines": { + "node": "*" + } }, "node_modules/binary-extensions": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", - "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, - "optional": true + "engines": { + "node": ">=8" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } }, "node_modules/blob-util": { "version": "2.0.2", @@ -3669,28 +3672,37 @@ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", "dev": true }, - "node_modules/bn.js": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", - "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==", - "dev": true - }, "node_modules/body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dev": true, "dependencies": { - "bytes": "3.1.0", + "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" } }, "node_modules/body-parser/node_modules/debug": { @@ -3702,42 +3714,55 @@ "ms": "2.0.0" } }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "node_modules/body-parser/node_modules/qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "dev": true + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "node_modules/bonjour-service": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.14.tgz", + "integrity": "sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==", "dev": true, "dependencies": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", + "array-flatten": "^2.1.2", "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "node_modules/bonjour/node_modules/array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, "node_modules/brace-expansion": { @@ -3751,397 +3776,132 @@ } }, "node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "node_modules/browserslist": { + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], "dependencies": { - "is-extendable": "^0.1.0" + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", - "dev": true - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "dev": true, - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "engines": { + "node": "*" } }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true }, - "node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true, - "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" + "engines": { + "node": ">= 0.8" } }, - "node_modules/browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "dev": true, - "dependencies": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "node_modules/browserify-sign/node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/browserify-sign/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "node_modules/browserify-sign/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "node_modules/browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dev": true, - "dependencies": { - "pako": "~1.0.5" - } - }, - "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "dev": true, - "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", - "dev": true - }, - "node_modules/buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "node_modules/buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", - "dev": true - }, - "node_modules/buffer-json": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz", - "integrity": "sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==", - "dev": true - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", - "dev": true - }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", - "dev": true - }, - "node_modules/bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", - "dev": true - }, - "node_modules/cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "dev": true, - "dependencies": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - } - }, - "node_modules/cacache/node_modules/glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "node_modules/cache-loader": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz", - "integrity": "sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==", - "dev": true, - "dependencies": { - "buffer-json": "^2.0.0", - "find-cache-dir": "^3.0.0", - "loader-utils": "^1.2.3", - "mkdirp": "^0.5.1", - "neo-async": "^2.6.1", - "schema-utils": "^2.0.0" - } - }, - "node_modules/cache-loader/node_modules/find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "node_modules/cache-loader/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "node_modules/cache-loader/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - } - }, - "node_modules/cache-loader/node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - } - }, - "node_modules/cache-loader/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - } - }, - "node_modules/cache-loader/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "node_modules/cache-loader/node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "dependencies": { - "find-up": "^4.0.0" - } - }, - "node_modules/cache-loader/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, "node_modules/cachedir": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, "node_modules/call-bind": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz", - "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, "dependencies": { "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.0" + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/call-me-maybe": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", - "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", - "dev": true - }, - "node_modules/caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, - "dependencies": { - "callsites": "^2.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/caller-callsite/node_modules/callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", - "dev": true - }, "node_modules/camel-case": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", - "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "dependencies": { - "no-case": "^2.2.0", - "upper-case": "^1.1.1" + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" } }, "node_modules/camelcase": { @@ -4169,9 +3929,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001407", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001407.tgz", - "integrity": "sha512-4ydV+t4P7X3zH83fQWNDX/mQEzYomossfpViCOx9zHBSMV+rIe3LFqglHHtVyvNl1FhTNxPxs3jei82iqOW04w==", + "version": "1.0.30001439", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz", + "integrity": "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==", "dev": true, "funding": [ { @@ -4185,15 +3945,18 @@ ] }, "node_modules/case-sensitive-paths-webpack-plugin": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", - "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==", - "dev": true + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "dev": true, + "engines": { + "node": ">=4" + } }, "node_modules/caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", "dev": true }, "node_modules/chalk": { @@ -4205,14 +3968,11 @@ "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, "node_modules/chart.js": { "version": "2.9.4", "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.9.4.tgz", @@ -4242,162 +4002,123 @@ "node_modules/check-more-types": { "version": "2.24.0", "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", - "integrity": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=", - "dev": true - }, - "node_modules/check-types": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz", - "integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==", - "dev": true + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } }, "node_modules/chokidar": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", - "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, - "optional": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], "dependencies": { - "anymatch": "~3.1.1", + "anymatch": "~3.1.2", "braces": "~3.0.2", - "fsevents": "~2.1.2", - "glob-parent": "~5.1.0", + "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/chokidar/node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "optional": true, "dependencies": { - "fill-range": "^7.0.1" + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/chokidar/node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "dev": true, - "optional": true, - "dependencies": { - "to-regex-range": "^5.0.1" + "engines": { + "node": ">=6.0" } }, - "node_modules/chokidar/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "optional": true - }, - "node_modules/chokidar/node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "optional": true, - "dependencies": { - "is-number": "^7.0.0" - } - }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "node_modules/chrome-trace-event": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", - "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", - "dev": true, - "dependencies": { - "tslib": "^1.9.0" - } - }, - "node_modules/ci-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", - "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", - "dev": true - }, - "node_modules/cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true }, "node_modules/clamp": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/clamp/-/clamp-1.0.1.tgz", - "integrity": "sha1-ZqDmQBGBbjcZaCj9yMjBRzEshjQ=" - }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - } - }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - } + "integrity": "sha512-kgMuFyE78OC6Dyu3Dy7vcx4uy97EIbVxJB/B0eJ3bUNAkwdNcxYzgKltnyADiYwsR7SEqkkUPsEUT//OVS6XMA==" }, "node_modules/clean-css": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", - "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.1.tgz", + "integrity": "sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==", "dev": true, "dependencies": { "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" } }, - "node_modules/clean-css/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } }, "node_modules/cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "dependencies": { - "restore-cursor": "^2.0.0" + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/cli-highlight": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.8.tgz", - "integrity": "sha512-mFuTW5UOV3/S0wZE9/1b0EcAM0XOJIhoAWPhWm5voiJ6ugVBkvYBIEL7sbHo9sEtWdEmwDIWab32qpaRI3cfqQ==", + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz", + "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "highlight.js": "^10.0.0", + "highlight.js": "^10.7.1", "mz": "^2.4.0", "parse5": "^5.1.1", "parse5-htmlparser2-tree-adapter": "^6.0.0", - "yargs": "^15.0.0" + "yargs": "^16.0.0" + }, + "bin": { + "highlight": "bin/highlight" + }, + "engines": { + "node": ">=8.0.0", + "npm": ">=5.0.0" } }, "node_modules/cli-highlight/node_modules/ansi-styles": { @@ -4407,16 +4128,28 @@ "dev": true, "dependencies": { "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/cli-highlight/node_modules/chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/cli-highlight/node_modules/color-convert": { @@ -4426,19 +4159,19 @@ "dev": true, "dependencies": { "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/cli-highlight/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/cli-highlight/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, "node_modules/cli-highlight/node_modules/supports-color": { "version": "7.2.0", @@ -4447,6 +4180,9 @@ "dev": true, "dependencies": { "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/cli-spinners": { @@ -4476,113 +4212,22 @@ "@colors/colors": "1.5.0" } }, - "node_modules/cli-table3/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-table3/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/cli-table3/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-table3/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" }, "engines": { "node": ">=8" - } - }, - "node_modules/cli-table3/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-truncate": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", - "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", - "dev": true, - "dependencies": { - "slice-ansi": "0.0.4", - "string-width": "^1.0.1" - } - }, - "node_modules/cli-truncate/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "node_modules/cli-truncate/node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "dependencies": { - "number-is-nan": "^1.0.0" - } - }, - "node_modules/cli-truncate/node_modules/slice-ansi": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", - "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", - "dev": true - }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-width": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", - "dev": true - }, "node_modules/clipboardy": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz", @@ -4592,64 +4237,20 @@ "arch": "^2.1.1", "execa": "^1.0.0", "is-wsl": "^2.1.1" - } - }, - "node_modules/clipboardy/node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "node_modules/cliui/node_modules/ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "node_modules/cliui/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/cliui/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "node_modules/cliui/node_modules/string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "node_modules/cliui/node_modules/strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.0" + "wrap-ansi": "^7.0.0" } }, "node_modules/clone": { @@ -4669,43 +4270,9 @@ "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", "shallow-clone": "^3.0.0" - } - }, - "node_modules/coa": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "dev": true, - "dependencies": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" - } - }, - "node_modules/code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "node_modules/color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", - "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.1", - "color-string": "^1.5.4" + }, + "engines": { + "node": ">=6" } }, "node_modules/color-convert": { @@ -4716,25 +4283,26 @@ "color-name": "1.1.3" } }, - "node_modules/color-name": { + "node_modules/color-convert/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" }, - "node_modules/color-string": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", - "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", - "dev": true, - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true }, "node_modules/colorette": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", - "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", "dev": true }, "node_modules/combined-stream": { @@ -4744,30 +4312,39 @@ "dev": true, "dependencies": { "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, "node_modules/commander": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", - "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", - "dev": true + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "engines": { + "node": ">= 6" + } }, "node_modules/common-tags": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", - "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==", - "dev": true + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } }, "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, - "node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "node_modules/compare-versions": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz", + "integrity": "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==", "dev": true }, "node_modules/compressible": { @@ -4777,6 +4354,9 @@ "dev": true, "dependencies": { "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" } }, "node_modules/compression": { @@ -4792,14 +4372,11 @@ "on-headers": "~1.0.2", "safe-buffer": "5.1.2", "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/compression/node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "dev": true - }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4812,39 +4389,30 @@ "node_modules/compression/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "engines": { + "node": ">=0.8" } }, - "node_modules/connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", - "dev": true - }, - "node_modules/console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", - "dev": true - }, "node_modules/consolidate": { "version": "0.15.1", "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz", @@ -4852,150 +4420,111 @@ "dev": true, "dependencies": { "bluebird": "^3.1.1" + }, + "engines": { + "node": ">= 0.10.0" } }, - "node_modules/constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", - "dev": true - }, "node_modules/content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, "dependencies": { - "safe-buffer": "5.1.2" + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" } }, "node_modules/content-type": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "dev": true - }, - "node_modules/convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, - "dependencies": { - "safe-buffer": "~5.1.1" + "engines": { + "node": ">= 0.6" } }, - "node_modules/cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, - "node_modules/copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "dev": true, "dependencies": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" + "is-what": "^3.14.1" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" } }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true - }, "node_modules/copy-webpack-plugin": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.1.2.tgz", - "integrity": "sha512-Uh7crJAco3AjBvgAy9Z75CjK8IG+gxaErro71THQ+vv/bl4HaQcpkexAY8KVW/T6D2W2IRr+couF/knIRkZMIQ==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz", + "integrity": "sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==", "dev": true, "dependencies": { - "cacache": "^12.0.3", - "find-cache-dir": "^2.1.0", - "glob-parent": "^3.1.0", - "globby": "^7.1.1", - "is-glob": "^4.0.1", - "loader-utils": "^1.2.3", - "minimatch": "^3.0.4", + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^11.0.3", "normalize-path": "^3.0.0", - "p-limit": "^2.2.1", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "webpack-log": "^2.0.0" - } - }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.0" - } - }, - "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", - "integrity": "sha1-+yzP+UAfhgCUXfral0QMypcrhoA=", - "dev": true, - "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" } }, - "node_modules/copy-webpack-plugin/node_modules/ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", - "dev": true - }, "node_modules/copy-webpack-plugin/node_modules/schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, "dependencies": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", - "dev": true - }, "node_modules/core-js": { - "version": "3.25.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.25.2.tgz", - "integrity": "sha512-YB4IAT1bjEfxTJ1XYy11hJAKskO+qmhuDBM8/guIfMz4JvdsAQAqvyb97zXX7JgSrfPLG5mRGFWJwJD39ruq2A==", + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.1.tgz", + "integrity": "sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA==", "dev": true, "hasInstallScript": true, "funding": { @@ -5004,9 +4533,9 @@ } }, "node_modules/core-js-compat": { - "version": "3.25.2", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.2.tgz", - "integrity": "sha512-TxfyECD4smdn3/CjWxczVtJqVLEEC2up7/82t7vC0AzNogr+4nQ8vyF7abxAuTXWvjTClSbvGhU0RgqA4ToQaQ==", + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz", + "integrity": "sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==", "dev": true, "dependencies": { "browserslist": "^4.21.4" @@ -5019,378 +4548,415 @@ "node_modules/core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "dev": true }, "node_modules/cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, "dependencies": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "node_modules/css-declaration-sorter": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", + "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", "dev": true, - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" } }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "node_modules/css-loader": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", + "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", "dev": true, "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "icss-utils": "^5.1.0", + "postcss": "^8.4.19", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/css-loader/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", "dev": true, "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } } }, - "node_modules/css-color-names": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", - "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", - "dev": true - }, - "node_modules/css-declaration-sorter": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", - "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "dependencies": { - "postcss": "^7.0.1", - "timsort": "^0.3.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/css-loader": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz", - "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==", + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "dependencies": { - "camelcase": "^5.3.1", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^1.2.3", - "normalize-path": "^3.0.0", - "postcss": "^7.0.32", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.2", - "postcss-modules-scope": "^2.2.0", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.1.0", - "schema-utils": "^2.7.0", - "semver": "^6.3.0" + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/css-loader/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "node_modules/css-loader/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } }, "node_modules/css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, "dependencies": { "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/css-select-base-adapter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", - "dev": true - }, "node_modules/css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "dev": true, "dependencies": { - "mdn-data": "2.0.4", + "mdn-data": "2.0.14", "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "node_modules/css-tree/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, "node_modules/css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", - "dev": true + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } }, "node_modules/cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } }, "node_modules/cssnano": { - "version": "4.1.10", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", - "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "version": "5.1.14", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz", + "integrity": "sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==", "dev": true, "dependencies": { - "cosmiconfig": "^5.0.0", - "cssnano-preset-default": "^4.0.7", - "is-resolvable": "^1.0.0", - "postcss": "^7.0.0" + "cssnano-preset-default": "^5.2.13", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, "node_modules/cssnano-preset-default": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", - "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", - "dev": true, - "dependencies": { - "css-declaration-sorter": "^4.0.1", - "cssnano-util-raw-cache": "^4.0.1", - "postcss": "^7.0.0", - "postcss-calc": "^7.0.1", - "postcss-colormin": "^4.0.3", - "postcss-convert-values": "^4.0.1", - "postcss-discard-comments": "^4.0.2", - "postcss-discard-duplicates": "^4.0.2", - "postcss-discard-empty": "^4.0.1", - "postcss-discard-overridden": "^4.0.1", - "postcss-merge-longhand": "^4.0.11", - "postcss-merge-rules": "^4.0.3", - "postcss-minify-font-values": "^4.0.2", - "postcss-minify-gradients": "^4.0.2", - "postcss-minify-params": "^4.0.2", - "postcss-minify-selectors": "^4.0.2", - "postcss-normalize-charset": "^4.0.1", - "postcss-normalize-display-values": "^4.0.2", - "postcss-normalize-positions": "^4.0.2", - "postcss-normalize-repeat-style": "^4.0.2", - "postcss-normalize-string": "^4.0.2", - "postcss-normalize-timing-functions": "^4.0.2", - "postcss-normalize-unicode": "^4.0.1", - "postcss-normalize-url": "^4.0.1", - "postcss-normalize-whitespace": "^4.0.2", - "postcss-ordered-values": "^4.1.2", - "postcss-reduce-initial": "^4.0.3", - "postcss-reduce-transforms": "^4.0.2", - "postcss-svgo": "^4.0.2", - "postcss-unique-selectors": "^4.0.1" - } - }, - "node_modules/cssnano-util-get-arguments": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", - "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", - "dev": true - }, - "node_modules/cssnano-util-get-match": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", - "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", - "dev": true + "version": "5.2.13", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz", + "integrity": "sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.0", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.3", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.1", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "node_modules/cssnano-util-raw-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", - "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", "dev": true, - "dependencies": { - "postcss": "^7.0.0" + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/cssnano-util-same-parent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", - "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", - "dev": true - }, "node_modules/csso": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.1.1.tgz", - "integrity": "sha512-Rvq+e1e0TFB8E8X+8MQjHSY6vtol45s5gxtLI/018UsAn2IBMmwNEZRM/h+HVnAJRHjasLIKKUO3uvoMM28LvA==", - "dev": true, - "dependencies": { - "css-tree": "^1.0.0" - } - }, - "node_modules/csso/node_modules/css-tree": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.1.tgz", - "integrity": "sha512-NVN42M2fjszcUNpDbdkvutgQSlFYsr1z7kqeuCagHnNLBfYor6uP1WL1KrkmdYZ5Y1vTBCIOI/C/+8T98fJ71w==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "dev": true, "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" } }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "dev": true - }, - "node_modules/csso/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "node_modules/cyclist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", - "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", - "dev": true + "node_modules/csstype": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", + "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" }, "node_modules/cypress": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-5.6.0.tgz", - "integrity": "sha512-cs5vG3E2JLldAc16+5yQxaVRLLqMVya5RlrfPWkC72S5xrlHFdw7ovxPb61s4wYweROKTyH01WQc2PFzwwVvyQ==", + "version": "12.17.2", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.17.2.tgz", + "integrity": "sha512-hxWAaWbqQBzzMuadSGSuQg5PDvIGOovm6xm0hIfpCVcORsCAj/gF2p0EvfnJ4f+jK2PCiDgP6D2eeE9/FK4Mjg==", "dev": true, "hasInstallScript": true, "dependencies": { - "@cypress/listr-verbose-renderer": "^0.4.1", - "@cypress/request": "^2.88.5", + "@cypress/request": "^2.88.11", "@cypress/xvfb": "^1.2.4", - "@types/sinonjs__fake-timers": "^6.0.1", + "@types/node": "^14.14.31", + "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", - "arch": "^2.1.2", - "blob-util": "2.0.2", + "arch": "^2.2.0", + "blob-util": "^2.0.2", "bluebird": "^3.7.2", + "buffer": "^5.6.0", "cachedir": "^2.3.0", "chalk": "^4.1.0", "check-more-types": "^2.24.0", - "cli-table3": "~0.6.0", - "commander": "^5.1.0", + "cli-cursor": "^3.1.0", + "cli-table3": "~0.6.1", + "commander": "^6.2.1", "common-tags": "^1.8.0", - "debug": "^4.1.1", - "eventemitter2": "^6.4.2", - "execa": "^4.0.2", + "dayjs": "^1.10.4", + "debug": "^4.3.4", + "enquirer": "^2.3.6", + "eventemitter2": "6.4.7", + "execa": "4.1.0", "executable": "^4.1.1", - "extract-zip": "^1.7.0", - "fs-extra": "^9.0.1", + "extract-zip": "2.0.1", + "figures": "^3.2.0", + "fs-extra": "^9.1.0", "getos": "^3.2.1", - "is-ci": "^2.0.0", - "is-installed-globally": "^0.3.2", + "is-ci": "^3.0.0", + "is-installed-globally": "~0.4.0", "lazy-ass": "^1.6.0", - "listr": "^0.14.3", - "lodash": "^4.17.19", + "listr2": "^3.8.3", + "lodash": "^4.17.21", "log-symbols": "^4.0.0", - "minimist": "^1.2.5", - "moment": "^2.27.0", + "minimist": "^1.2.8", "ospath": "^1.2.2", - "pretty-bytes": "^5.4.1", - "ramda": "~0.26.1", + "pretty-bytes": "^5.6.0", + "proxy-from-env": "1.0.0", "request-progress": "^3.0.0", - "supports-color": "^7.2.0", + "semver": "^7.5.3", + "supports-color": "^8.1.1", "tmp": "~0.2.1", "untildify": "^4.0.0", - "url": "^0.11.0", "yauzl": "^2.10.0" }, "bin": { "cypress": "bin/cypress" }, "engines": { - "node": ">=10.0.0" + "node": "^14.0.0 || ^16.0.0 || >=18.0.0" } }, "node_modules/cypress-failed-log": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/cypress-failed-log/-/cypress-failed-log-2.7.0.tgz", - "integrity": "sha512-9tSuFRjlAGZuH+IIiyDM7IAvjh4dmet/iUPLRxet9ugLkELw/cyW7jUCQmR7j4aW8Fl+ZlbNUekVonBaS322SA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/cypress-failed-log/-/cypress-failed-log-2.10.0.tgz", + "integrity": "sha512-v+GsOcpCAgj335zfDy9jDnaujH31SM/6pEQBp0dH0clbYu4NSXirLRXW9WoKhd0j70UrAA0hTLNbS2oTt1Y5kA==", "dev": true, "dependencies": { - "debug": "4.1.1", + "debug": "4.3.4", "logdown": "3.3.1" + }, + "engines": { + "node": ">=6" } }, "node_modules/cypress-file-upload": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/cypress-file-upload/-/cypress-file-upload-3.5.3.tgz", - "integrity": "sha512-S/czzqAj1BYz6Xxnfpx2aSc6hXsj76fd8/iuycJ2RxoxCcQMliw8eQV0ugzVlkzr1GD5dKGviNFGYqv3nRJ+Tg==", - "dev": true + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz", + "integrity": "sha512-+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g==", + "dev": true, + "engines": { + "node": ">=8.2.1" + }, + "peerDependencies": { + "cypress": ">3.0.0" + } }, "node_modules/cypress-wait-until": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/cypress-wait-until/-/cypress-wait-until-1.7.1.tgz", - "integrity": "sha512-8DL5IsBTbAxBjfYgCzdbohPq/bY+IKc63fxtso1C8RWhLnQkZbVESyaclNr76jyxfId6uyzX8+Xnt0ZwaXNtkA==", + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/cypress-wait-until/-/cypress-wait-until-1.7.2.tgz", + "integrity": "sha512-uZ+M8/MqRcpf+FII/UZrU7g1qYZ4aVlHcgyVopnladyoBrpoaMJ4PKZDrdOJ05H5RHbr7s9Tid635X3E+ZLU/Q==", "dev": true }, "node_modules/cypress/node_modules/ansi-styles": { @@ -5424,11 +4990,17 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/cypress/node_modules/ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true + "node_modules/cypress/node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, "node_modules/cypress/node_modules/color-convert": { "version": "2.0.1", @@ -5442,35 +5014,6 @@ "node": ">=7.0.0" } }, - "node_modules/cypress/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/cypress/node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/cypress/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, "node_modules/cypress/node_modules/execa": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", @@ -5494,21 +5037,6 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/cypress/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/cypress/node_modules/get-stream": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", @@ -5528,15 +5056,9 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "node_modules/cypress/node_modules/is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "dev": true, - "dependencies": { - "ci-info": "^2.0.0" + "engines": { + "node": ">=8" } }, "node_modules/cypress/node_modules/is-stream": { @@ -5551,43 +5073,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cypress/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/cypress/node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cypress/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/cypress/node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -5600,483 +5085,288 @@ "node": ">=8" } }, - "node_modules/cypress/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cypress/node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/cypress/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/cypress/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { - "glob": "^7.1.3" + "lru-cache": "^6.0.0" }, "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/cypress/node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" + "semver": "bin/semver.js" }, "engines": { - "node": ">=8" - } - }, - "node_modules/cypress/node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/cypress/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { "has-flag": "^4.0.0" - } - }, - "node_modules/cypress/node_modules/tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", - "dev": true, - "dependencies": { - "rimraf": "^3.0.0" }, "engines": { - "node": ">=8.17.0" - } - }, - "node_modules/cypress/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/cypress/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" + "node": ">=10" }, - "engines": { - "node": ">= 8" + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "dev": true, "dependencies": { "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" } }, - "node_modules/date-fns": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", - "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", + "node_modules/dayjs": { + "version": "1.11.7", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", + "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", "dev": true }, "node_modules/de-indent": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", - "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", "dev": true }, "node_modules/debounce": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.0.tgz", - "integrity": "sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" }, "node_modules/debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "dev": true - }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", - "dev": true - }, - "node_modules/deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "dependencies": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, "node_modules/deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "node_modules/deepmerge": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz", "integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/default-gateway": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-5.0.5.tgz", - "integrity": "sha512-z2RnruVmj8hVMmAnEJMTIJNijhKCDiGjbLP+BHJFOT7ld3Bo5qcIBpVYDniqhbMIIf+jZDlkP2MkPXiQy/DBLA==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, "dependencies": { - "execa": "^3.3.0" - } - }, - "node_modules/default-gateway/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" } }, "node_modules/default-gateway/node_modules/execa": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz", - "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "p-finally": "^2.0.0", - "signal-exit": "^3.0.2", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/default-gateway/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "pump": "^3.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/default-gateway/node_modules/is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", - "dev": true - }, - "node_modules/default-gateway/node_modules/mimic-fn": { + "node_modules/default-gateway/node_modules/human-signals": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "node_modules/default-gateway/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - } - }, - "node_modules/default-gateway/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" + "engines": { + "node": ">=10.17.0" } }, - "node_modules/default-gateway/node_modules/p-finally": { + "node_modules/default-gateway/node_modules/is-stream": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz", - "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", - "dev": true - }, - "node_modules/default-gateway/node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "node_modules/default-gateway/node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/default-gateway/node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "node_modules/default-gateway/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, "dependencies": { "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, - "dependencies": { - "object-keys": "^1.0.12" - } - }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, - "node_modules/define-property/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - } - }, - "node_modules/define-property/node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - } - }, - "node_modules/define-property/node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "node_modules/del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, - "dependencies": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" + "engines": { + "node": ">=8" } }, - "node_modules/del/node_modules/globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "node_modules/define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", "dev": true, "dependencies": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/del/node_modules/globby/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "node_modules/del/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "dev": true + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } }, "node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "node_modules/des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "engines": { + "node": ">= 0.8" } }, "node_modules/destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", - "dev": true - }, - "node_modules/detect-node": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", - "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", - "dev": true - }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, "node_modules/dir-glob": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", - "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { - "path-type": "^3.0.0" + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", "dev": true }, "node_modules/dns-packet": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", - "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", "dev": true, "dependencies": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" } }, - "node_modules/dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { - "buffer-indexof": "^1.0.0" + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" } }, "node_modules/dom-converter": { @@ -6089,72 +5379,83 @@ } }, "node_modules/dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, "dependencies": { "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/dom-serializer/node_modules/domelementtype": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.2.tgz", - "integrity": "sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==", - "dev": true - }, - "node_modules/domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true - }, "node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] }, "node_modules/domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "dependencies": { - "domelementtype": "1" + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, + "node_modules/dompurify": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.0.8.tgz", + "integrity": "sha512-b7uwreMYL2eZhrSCRC4ahLTeZcPZxSmYfmcQGXGkXiZSNW1X85v+SDM5KsWcpivIiUBH47Ji7NtyUdpLeF5JZQ==" + }, "node_modules/domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "dependencies": { - "is-obj": "^2.0.0" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/dot-prop/node_modules/is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - }, "node_modules/dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", - "dev": true + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "dev": true, + "engines": { + "node": ">=10" + } }, "node_modules/dotenv-expand": { "version": "5.1.0", @@ -6163,9 +5464,9 @@ "dev": true }, "node_modules/dropzone": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/dropzone/-/dropzone-5.5.1.tgz", - "integrity": "sha512-3VduRWLxx9hbVr42QieQN25mx/I61/mRdUSuxAmDGdDqZIN8qtP7tcKMa3KfpJjuGjOJGYYUzzeq6eGDnkzesA==" + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/dropzone/-/dropzone-5.9.3.tgz", + "integrity": "sha512-Azk8kD/2/nJIuVPK+zQ9sjKMRIpRvNyqn9XwbBHNq+iNuSccbJS6hwm1Woy0pMST0erSo0u4j+KJaodndDk4vA==" }, "node_modules/duplexer": { "version": "0.1.2", @@ -6173,18 +5474,6 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, - "node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, "node_modules/easy-stack": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/easy-stack/-/easy-stack-1.0.1.tgz", @@ -6197,7 +5486,7 @@ "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, "dependencies": { "jsbn": "~0.1.0", @@ -6207,115 +5496,98 @@ "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", - "dev": true - }, - "node_modules/ejs": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", - "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.256", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.256.tgz", - "integrity": "sha512-x+JnqyluoJv8I0U9gVe+Sk2st8vF0CzMt78SXxuoWCooLLY2k5VerIBdpvG7ql6GKI4dzNnPjmqgDJ76EdaAKw==", - "dev": true - }, - "node_modules/elegant-spinner": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", - "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", "dev": true }, "node_modules/element-resize-event": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/element-resize-event/-/element-resize-event-3.0.3.tgz", - "integrity": "sha512-vhGNxT87PdZA6Ak4E0QhArwGzNcSPUwSN7n9wCFLeBlY2NNuuiwguQuQIp7P5oB65PLJ892yKcHiqz1xLWeiug==", - "dev": true - }, - "node_modules/elliptic": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", - "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", - "dev": true, - "dependencies": { - "bn.js": "^4.4.0", - "brorand": "^1.0.1", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.0" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/element-resize-event/-/element-resize-event-3.0.6.tgz", + "integrity": "sha512-sSeXY9rNDp86bJODW68pxLcy3A5FrPZfIgOrJHzqgYzX513Zq6/ytdBigp7KeJEpZZopBBSiO1cVuiRkZpNxLw==" }, "node_modules/emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, "node_modules/emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", - "dev": true + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } }, "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", - "dev": true + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } }, "node_modules/end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "dependencies": { "once": "^1.4.0" } }, "node_modules/enhanced-resolve": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz", - "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==", + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", + "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" } }, - "node_modules/enhanced-resolve/node_modules/memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, "dependencies": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" } }, "node_modules/entities": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", - "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", - "dev": true + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } }, "node_modules/errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, + "optional": true, "dependencies": { "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" } }, "node_modules/error-ex": { @@ -6328,43 +5600,19 @@ } }, "node_modules/error-stack-parser": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", - "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", - "dev": true, - "dependencies": { - "stackframe": "^1.1.1" - } - }, - "node_modules/es-abstract": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", - "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", "dev": true, "dependencies": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" + "stackframe": "^1.3.4" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true }, "node_modules/escalade": { "version": "3.1.1", @@ -6378,406 +5626,577 @@ "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, "node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } }, "node_modules/eslint": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz", - "integrity": "sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==", + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.0.0", - "ajv": "^6.9.1", - "chalk": "^2.1.0", - "cross-spawn": "^6.0.5", + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", "debug": "^4.0.1", "doctrine": "^3.0.0", - "eslint-scope": "^4.0.3", - "eslint-utils": "^1.3.1", - "eslint-visitor-keys": "^1.0.0", - "espree": "^5.0.1", - "esquery": "^1.0.1", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", - "glob": "^7.1.2", - "globals": "^11.7.0", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", "ignore": "^4.0.6", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", - "inquirer": "^6.2.2", - "js-yaml": "^3.13.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.11", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", "natural-compare": "^1.4.0", - "optionator": "^0.8.2", - "path-is-inside": "^1.0.2", + "optionator": "^0.9.1", "progress": "^2.0.0", - "regexpp": "^2.0.1", - "semver": "^5.5.1", - "strip-ansi": "^4.0.0", - "strip-json-comments": "^2.0.1", - "table": "^5.2.3", - "text-table": "^0.2.0" + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-config-prettier": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-3.3.0.tgz", - "integrity": "sha512-Bc3bh5bAcKNvs3HOpSi6EfGA2IIp7EzWcg2tS4vP7stnXu/J1opihHDM7jI9JCIckyIDTgZLSWn7J3HY0j2JfA==", - "dev": true, - "dependencies": { - "get-stdin": "^6.0.0" - } - }, - "node_modules/eslint-loader": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-2.2.1.tgz", - "integrity": "sha512-RLgV9hoCVsMLvOxCuNjdqOrUqIj9oJg8hF44vzJaYqsAHuY9G2YAeN3joQ9nxP0p5Th9iFSIpKo+SD8KISxXRg==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", + "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", "dev": true, - "dependencies": { - "loader-fs-cache": "^1.0.0", - "loader-utils": "^1.0.2", - "object-assign": "^4.0.1", - "object-hash": "^1.1.4", - "rimraf": "^2.6.1" + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" } }, "node_modules/eslint-plugin-prettier": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.0.1.tgz", - "integrity": "sha512-/PMttrarPAY78PLvV3xfWibMOdMDl57hmlQ2XqFeA37wd+CJ7WSxV7txqjVPHi/AAFKd2lX0ZqfsOc/i5yFCSQ==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", "dev": true, "dependencies": { "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "eslint": ">=7.28.0", + "prettier": ">=2.0.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } } }, "node_modules/eslint-plugin-vue": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-5.2.3.tgz", - "integrity": "sha512-mGwMqbbJf0+VvpGR5Lllq0PMxvTdrZ/ZPjmhkacrCHbubJeJOt+T6E3HUzAifa2Mxi7RSdJfC9HFpOeSYVMMIw==", + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-8.7.1.tgz", + "integrity": "sha512-28sbtm4l4cOzoO1LtzQPxfxhQABararUb1JtqusQqObJpWX2e/gmVyeYVfepizPFne0Q5cILkYGiBoV36L12Wg==", "dev": true, "dependencies": { - "vue-eslint-parser": "^5.0.0" + "eslint-utils": "^3.0.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.0.1", + "postcss-selector-parser": "^6.0.9", + "semver": "^7.3.5", + "vue-eslint-parser": "^8.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/eslint-plugin-vue/node_modules/acorn-jsx": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.2.tgz", - "integrity": "sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw==", - "dev": true - }, - "node_modules/eslint-plugin-vue/node_modules/espree": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-4.1.0.tgz", - "integrity": "sha512-I5BycZW6FCVIub93TeVY1s7vjhP9CY6cXCznIRfiig7nRviKZYdRnj/sHEWC6A7WE9RDWOFq9+7OsWSYz8qv2w==", + "node_modules/eslint-plugin-vue/node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "dependencies": { - "acorn": "^6.0.2", - "acorn-jsx": "^5.0.0", - "eslint-visitor-keys": "^1.0.0" + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/eslint-plugin-vue/node_modules/vue-eslint-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-5.0.0.tgz", - "integrity": "sha512-JlHVZwBBTNVvzmifwjpZYn0oPWH2SgWv5dojlZBsrhablDu95VFD+hriB1rQGwbD+bms6g+rAFhQHk6+NyiS6g==", + "node_modules/eslint-plugin-vue/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "dependencies": { - "debug": "^4.1.0", - "eslint-scope": "^4.0.0", - "eslint-visitor-keys": "^1.0.0", - "espree": "^4.1.0", - "esquery": "^1.0.1", - "lodash": "^4.17.11" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "esrecurse": "^4.1.0", + "esrecurse": "^4.3.0", "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" } }, "node_modules/eslint-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.2.tgz", - "integrity": "sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^1.0.0" + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" } }, - "node_modules/eslint-visitor-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==", - "dev": true - }, - "node_modules/eslint/node_modules/acorn-jsx": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz", - "integrity": "sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg==", - "dev": true - }, - "node_modules/eslint/node_modules/ajv": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", - "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, - "dependencies": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "engines": { + "node": ">=4" } }, - "node_modules/eslint/node_modules/ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "node_modules/eslint/node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "node_modules/eslint/node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, - "dependencies": { - "esutils": "^2.0.2" + "engines": { + "node": ">=10" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", "dev": true, "dependencies": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" } }, - "node_modules/eslint/node_modules/espree": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz", - "integrity": "sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A==", + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "dependencies": { - "acorn": "^6.0.7", - "acorn-jsx": "^5.0.0", - "eslint-visitor-keys": "^1.0.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/eslint/node_modules/external-editor": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz", - "integrity": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==", + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/eslint/node_modules/file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "node_modules/eslint-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "flat-cache": "^2.0.1" + "engines": { + "node": ">=8" } }, - "node_modules/eslint/node_modules/flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", "dev": true, "dependencies": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/eslint/node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "node_modules/eslint/node_modules/import-fresh": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz", - "integrity": "sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ==", + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/eslint/node_modules/inquirer": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.3.1.tgz", - "integrity": "sha512-MmL624rfkFt4TG9y/Jvmt8vdmOo836U7Y0Hxr2aFk3RelZEGX4Igk0KabWrcaaZaTv9uzglOqWh1Vly+FAWAXA==", + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "ansi-escapes": "^3.2.0", - "chalk": "^2.4.2", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^2.0.0", - "lodash": "^4.17.11", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rxjs": "^6.4.0", - "string-width": "^2.1.0", - "strip-ansi": "^5.1.0", - "through": "^2.3.6" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/eslint/node_modules/inquirer/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/eslint/node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "dependencies": { - "ansi-regex": "^4.1.0" + "@babel/highlight": "^7.10.4" } }, - "node_modules/eslint/node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "minimist": "^1.2.5" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint/node_modules/regexpp": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", - "dev": true - }, - "node_modules/eslint/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "node_modules/eslint/node_modules/slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/eslint/node_modules/table": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/table/-/table-5.2.3.tgz", - "integrity": "sha512-N2RsDAMvDLvYwFcwbPyF3VmVSSkuF+G1e+8inhBLtHpvwXGw4QRPEZhihQNeEN0i1up6/f6ObCJXNdlRG3YVyQ==", + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "ajv": "^6.9.1", - "lodash": "^4.17.11", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/eslint/node_modules/table/node_modules/string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/table/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/eslint/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "ansi-regex": "^4.1.0" + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/eslint/node_modules/write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "node_modules/eslint/node_modules/globals": { + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", "dev": true, "dependencies": { - "mkdirp": "^0.5.1" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } }, "node_modules/esquery": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", - "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, "dependencies": { - "estraverse": "^4.0.0" + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" } }, "node_modules/esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "dependencies": { - "estraverse": "^4.1.0" + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" } }, "node_modules/estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "dev": true + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } }, "node_modules/esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", - "dev": true + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", - "dev": true + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } }, "node_modules/event-pubsub": { "version": "4.3.0", @@ -6789,9 +6208,9 @@ } }, "node_modules/eventemitter2": { - "version": "6.4.3", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.3.tgz", - "integrity": "sha512-t0A2msp6BzOf+QAcI6z9XMktLj52OjGQg+8SJH6v5+3uxNpWYRR3wQmfA+6xtMU9kOC59qk9licus5dYcrYkMQ==", + "version": "6.4.7", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", + "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", "dev": true }, "node_modules/eventemitter3": { @@ -6801,28 +6220,12 @@ "dev": true }, "node_modules/events": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz", - "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==", - "dev": true - }, - "node_modules/eventsource": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", - "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", - "dev": true, - "dependencies": { - "original": "^1.0.0" - } - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "engines": { + "node": ">=0.8.x" } }, "node_modules/execa": { @@ -6838,115 +6241,138 @@ "p-finally": "^1.0.0", "signal-exit": "^3.0.0", "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "dependencies": { - "pify": "^2.2.0" + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" } }, - "node_modules/executable/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true + "node_modules/execa/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/exit-hook": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", - "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=", - "dev": true + "node_modules/execa/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true, - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "dependencies": { - "is-descriptor": "^0.1.0" + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" } }, - "node_modules/expand-brackets/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "node_modules/executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", "dev": true, "dependencies": { - "is-extendable": "^0.1.0" + "pify": "^2.2.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, "node_modules/express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dev": true, "dependencies": { - "accepts": "~1.3.7", + "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.4.0", + "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", - "depd": "~1.1.2", + "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "~1.1.2", + "finalhandler": "1.2.0", "fresh": "0.5.2", + "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" } }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, "node_modules/express/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -6959,14 +6385,23 @@ "node_modules/express/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "node_modules/express/node_modules/qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "dev": true + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/extend": { "version": "3.0.2", @@ -6974,272 +6409,187 @@ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, - "node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", "dev": true, "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" } }, - "node_modules/extend-shallow/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "node_modules/extract-zip/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "dependencies": { - "is-plain-object": "^2.0.4" + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "dev": true, - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - } + "engines": [ + "node >=0.6.0" + ] }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" } }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "is-descriptor": "^1.0.0" - } - }, - "node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - } - }, - "node_modules/extglob/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - } - }, - "node_modules/extglob/node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - } - }, - "node_modules/extglob/node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "node_modules/extract-zip": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", - "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", - "dev": true, - "dependencies": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", - "yauzl": "^2.10.0" - } - }, - "node_modules/extract-zip/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/extract-zip/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "dev": true - }, - "node_modules/fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "node_modules/fast-diff": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", - "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", - "dev": true, - "dependencies": { - "@mrmlnc/readdir-enhanced": "^2.2.1", - "@nodelib/fs.stat": "^1.1.2", - "glob-parent": "^3.1.0", - "is-glob": "^4.0.0", - "merge2": "^1.2.3", - "micromatch": "^3.1.10" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.0" + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, "node_modules/fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, + "node_modules/fastq": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.14.0.tgz", + "integrity": "sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, "node_modules/faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, "dependencies": { "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" } }, "node_modules/fd-slicer": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "dev": true, "dependencies": { "pend": "~1.2.0" } }, - "node_modules/figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", - "dev": true - }, "node_modules/figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "dependencies": { "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/file-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-4.3.0.tgz", - "integrity": "sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==", + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "dependencies": { - "loader-utils": "^1.2.3", - "schema-utils": "^2.5.0" + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/filesize": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", - "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", - "dev": true - }, "node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - } - }, - "node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "dependencies": { - "is-extendable": "^0.1.0" + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "parseurl": "~1.3.3", - "statuses": "~1.5.0", + "statuses": "2.0.1", "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, "node_modules/finalhandler/node_modules/debug": { @@ -7254,68 +6604,101 @@ "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "node_modules/find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, "dependencies": { "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, "node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "dependencies": { - "locate-path": "^3.0.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/flatted": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.0.tgz", - "integrity": "sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg==", - "dev": true + "node_modules/find-versions": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-4.0.0.tgz", + "integrity": "sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==", + "dev": true, + "dependencies": { + "semver-regex": "^3.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "dependencies": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/fn-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fn-name/-/fn-name-2.0.1.tgz", - "integrity": "sha1-UhTXU3pNBqSjAcDMJi/rhBiAAuc=", + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, "node_modules/follow-redirects": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz", - "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==", - "dev": true - }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } }, "node_modules/forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "dev": true + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "dev": true, + "engines": { + "node": "*" + } }, "node_modules/form-data": { "version": "2.3.3", @@ -7326,74 +6709,82 @@ "asynckit": "^0.4.0", "combined-stream": "^1.0.6", "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" } }, "node_modules/forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", - "dev": true + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", "dev": true, - "dependencies": { - "map-cache": "^0.2.2" + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" } }, "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "dev": true - }, - "node_modules/from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" + "engines": { + "node": ">= 0.6" } }, "node_modules/fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } + "node_modules/fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, "node_modules/fsevents": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", - "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, - "optional": true + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } }, "node_modules/function-bind": { "version": "1.1.1", @@ -7404,20 +6795,9 @@ "node_modules/functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true }, - "node_modules/g-status": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/g-status/-/g-status-2.0.2.tgz", - "integrity": "sha512-kQoE9qH+T1AHKgSSD0Hkv98bobE90ILQcXAF4wvGgsr7uFqNvwmh8j+Lq3l0RVt3E3HjSbv2B9biEGcEtpHLCA==", - "dev": true, - "dependencies": { - "arrify": "^1.0.1", - "matcher": "^1.0.0", - "simple-git": "^1.85.0" - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -7431,29 +6811,29 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } }, "node_modules/get-intrinsic": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz", - "integrity": "sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "dev": true, "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1" + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/get-own-enumerable-property-symbols": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.0.tgz", - "integrity": "sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg==", - "dev": true - }, - "node_modules/get-stdin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", - "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", "dev": true }, "node_modules/get-stream": { @@ -7463,14 +6843,11 @@ "dev": true, "dependencies": { "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true - }, "node_modules/getos": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", @@ -7480,87 +6857,105 @@ "async": "^3.2.0" } }, - "node_modules/getos/node_modules/async": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", - "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==", - "dev": true - }, "node_modules/getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, "dependencies": { "assert-plus": "^1.0.0" } }, "node_modules/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, - "optional": true, "dependencies": { - "is-glob": "^4.0.1" + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" } }, "node_modules/glob-to-regexp": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", - "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, "node_modules/global-dirs": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz", - "integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, "dependencies": { - "ini": "^1.3.5" + "ini": "2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/globals": { - "version": "11.10.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.10.0.tgz", - "integrity": "sha512-0GZF1RiPKU97IHUO5TORo9w1PwrH/NBPl+fS7oMLdaTRiYmYbwK4NWoZWrAdd0/abG9R2BU+OiwyQpTpE6pdfQ==", - "dev": true + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } }, "node_modules/globby": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz", - "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^1.0.2", - "dir-glob": "^2.2.2", - "fast-glob": "^2.2.6", - "glob": "^7.1.3", - "ignore": "^4.0.3", - "pify": "^4.0.1", - "slash": "^2.0.0" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globby/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true + "node_modules/globby/node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } }, "node_modules/google-closure-compiler-java": { "version": "20200719.0.0", @@ -7569,49 +6964,32 @@ "dev": true }, "node_modules/graceful-fs": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", - "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, "node_modules/gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, "dependencies": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/gzip-size/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, "node_modules/handle-thing": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "dev": true - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "dev": true, - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -7619,150 +6997,68 @@ "dev": true, "dependencies": { "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" } }, - "node_modules/has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - } - }, - "node_modules/has-ansi/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, "node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "node_modules/has-symbols": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", - "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", - "dev": true - }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" + "engines": { + "node": ">=4" } }, - "node_modules/has-values": { + "node_modules/has-property-descriptors": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "dev": true, "dependencies": { - "is-buffer": "^1.1.5" - } - }, - "node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hash-base/node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/hash-base/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hash-base/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, "node_modules/hash-sum": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", "dev": true }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, "node_modules/he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true - }, - "node_modules/hex-color-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", - "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", - "dev": true + "dev": true, + "bin": { + "he": "bin/he" + } }, "node_modules/highlight.js": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.4.0.tgz", - "integrity": "sha512-EfrUGcQ63oLJbj0J0RI9ebX6TAITbsDBLbsjr881L/X5fMO9+oadKzEF21C7R3ULKG6Gv3uoab2HiqVJa/4+oA==", - "dev": true - }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", "dev": true, - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "engines": { + "node": "*" } }, - "node_modules/hoopy": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", - "dev": true - }, "node_modules/hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", @@ -7772,7 +7068,7 @@ "node_modules/hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, "dependencies": { "inherits": "^2.0.1", @@ -7781,50 +7077,71 @@ "wbuf": "^1.1.0" } }, - "node_modules/hsl-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", - "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", - "dev": true + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } }, - "node_modules/hsla-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", - "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, - "node_modules/html-comment-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", - "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==", - "dev": true + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } }, "node_modules/html-entities": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz", - "integrity": "sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", "dev": true }, - "node_modules/html-minifier": { - "version": "3.5.21", - "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", - "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "dev": true, "dependencies": { - "camel-case": "3.0.x", - "clean-css": "4.2.x", - "commander": "2.17.x", - "he": "1.2.x", - "param-case": "2.1.x", - "relateurl": "0.2.x", - "uglify-js": "3.4.x" + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" } }, - "node_modules/html-minifier/node_modules/commander": { - "version": "2.17.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", - "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", - "dev": true + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } }, "node_modules/html-tags": { "version": "3.2.0", @@ -7839,104 +7156,75 @@ } }, "node_modules/html-webpack-plugin": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz", - "integrity": "sha1-sBq71yOsqqeze2r0SS69oD2d03s=", - "dev": true, - "dependencies": { - "html-minifier": "^3.2.3", - "loader-utils": "^0.2.16", - "lodash": "^4.17.3", - "pretty-error": "^2.0.2", - "tapable": "^1.0.0", - "toposort": "^1.0.0", - "util.promisify": "1.0.0" - } - }, - "node_modules/html-webpack-plugin/node_modules/big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", - "dev": true - }, - "node_modules/html-webpack-plugin/node_modules/json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true - }, - "node_modules/html-webpack-plugin/node_modules/loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", - "dev": true, - "dependencies": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0", - "object-assign": "^4.0.1" - } - }, - "node_modules/html-webpack-plugin/node_modules/util.promisify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", - "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", "dev": true, "dependencies": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" } }, "node_modules/htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "dev": true, - "dependencies": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - } - }, - "node_modules/htmlparser2/node_modules/entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true - }, - "node_modules/htmlparser2/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" } }, "node_modules/http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", "dev": true }, "node_modules/http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" } }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, "node_modules/http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", @@ -7946,450 +7234,364 @@ "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" } }, "node_modules/http-proxy-middleware": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", - "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, "dependencies": { - "http-proxy": "^1.17.0", - "is-glob": "^4.0.0", - "lodash": "^4.17.11", - "micromatch": "^3.1.10" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", + "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", "dev": true, "dependencies": { "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "jsprim": "^2.0.2", + "sshpk": "^1.14.1" + }, + "engines": { + "node": ">=0.10" } }, - "node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", - "dev": true - }, "node_modules/human-signals": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "engines": { + "node": ">=8.12.0" } }, - "node_modules/icss-utils": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", - "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "node_modules/husky": { + "version": "4.3.8", + "resolved": "https://registry.npmjs.org/husky/-/husky-4.3.8.tgz", + "integrity": "sha512-LCqqsB0PzJQ/AlCgfrfzRe3e3+NvmefAdKQhRYpxS4u6clblBoDdzzvHi8fmxKRzvMxPY/1WZWzomPZww0Anow==", "dev": true, + "hasInstallScript": true, "dependencies": { - "postcss": "^7.0.14" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true - }, - "node_modules/iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", - "dev": true - }, - "node_modules/ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "node_modules/image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", - "dev": true, - "optional": true - }, - "node_modules/import-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", - "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", - "dev": true, - "dependencies": { - "import-from": "^2.1.0" + "chalk": "^4.0.0", + "ci-info": "^2.0.0", + "compare-versions": "^3.6.0", + "cosmiconfig": "^7.0.0", + "find-versions": "^4.0.0", + "opencollective-postinstall": "^2.0.2", + "pkg-dir": "^5.0.0", + "please-upgrade-node": "^3.2.0", + "slash": "^3.0.0", + "which-pm-runs": "^1.0.0" + }, + "bin": { + "husky-run": "bin/run.js", + "husky-upgrade": "lib/upgrader/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/husky" } }, - "node_modules/import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "node_modules/husky/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/import-fresh/node_modules/caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "node_modules/husky/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "caller-callsite": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - }, - "node_modules/import-from": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", - "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "node_modules/husky/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "resolve-from": "^3.0.0" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "node_modules/husky/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "dependencies": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "node_modules/indent-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", - "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", - "dev": true - }, - "node_modules/indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", - "dev": true - }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "node_modules/husky/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "engines": { + "node": ">=8" } }, - "node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "node_modules/ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", - "dev": true - }, - "node_modules/inquirer": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", - "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "node_modules/husky/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.19", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.6.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inquirer/node_modules/ansi-escapes": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", - "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "node_modules/husky/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "type-fest": "^0.11.0" + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inquirer/node_modules/ansi-regex": { + "node_modules/husky/node_modules/p-locate": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" - } - }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inquirer/node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "node_modules/husky/node_modules/pkg-dir": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", "dev": true, "dependencies": { - "restore-cursor": "^3.1.0" + "find-up": "^5.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/inquirer/node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/husky/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/inquirer/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/inquirer/node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "optional": true, "dependencies": { - "escape-string-regexp": "^1.0.5" + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/inquirer/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "node_modules/inquirer/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "node_modules/inquirer/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "node_modules/inquirer/node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "node_modules/inquirer/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/inquirer/node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "node_modules/inquirer/node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/inquirer/node_modules/rxjs": { - "version": "6.6.3", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz", - "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==", + "node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true, - "dependencies": { - "tslib": "^1.9.0" + "engines": { + "node": ">= 4" } }, - "node_modules/inquirer/node_modules/string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/inquirer/node_modules/strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.0" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "engines": { + "node": ">=0.8.19" } }, - "node_modules/inquirer/node_modules/type-fest": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", - "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", - "dev": true - }, - "node_modules/internal-ip": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", - "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, - "dependencies": { - "default-gateway": "^4.2.0", - "ipaddr.js": "^1.9.0" + "engines": { + "node": ">=8" } }, - "node_modules/internal-ip/node_modules/default-gateway": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", - "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "dependencies": { - "execa": "^1.0.0", - "ip-regex": "^2.1.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "dev": true - }, - "node_modules/ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", - "dev": true - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true - }, - "node_modules/is-absolute-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", - "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true, - "dependencies": { - "kind-of": "^3.0.2" + "engines": { + "node": ">=10" } }, - "node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "node_modules/ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" + "engines": { + "node": ">= 10" } }, - "node_modules/is-arguments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", - "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==", - "dev": true - }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, "node_modules/is-binary-path": { @@ -8397,219 +7599,163 @@ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, - "optional": true, "dependencies": { "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "node_modules/is-callable": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", - "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==", - "dev": true - }, "node_modules/is-ci": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", - "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, "dependencies": { - "ci-info": "^1.5.0" + "ci-info": "^3.2.0" + }, + "bin": { + "is-ci": "bin.js" } }, - "node_modules/is-color-stop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", - "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "node_modules/is-ci/node_modules/ci-info": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.7.0.tgz", + "integrity": "sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==", "dev": true, - "dependencies": { - "css-color-names": "^0.0.4", - "hex-color-regex": "^1.1.0", - "hsl-regex": "^1.0.0", - "hsla-regex": "^1.0.0", - "rgb-regex": "^1.0.1", - "rgba-regex": "^1.0.0" + "engines": { + "node": ">=8" } }, "node_modules/is-core-module": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz", - "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==", + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", "dev": true, "dependencies": { "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - } - }, - "node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - } - }, - "node_modules/is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", - "dev": true - }, - "node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - }, - "node_modules/is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", - "dev": true - }, "node_modules/is-docker": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", - "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==", - "dev": true - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-file-esm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-file-esm/-/is-file-esm-1.0.0.tgz", + "integrity": "sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==", + "dev": true, + "dependencies": { + "read-pkg-up": "^7.0.1" + } }, "node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } }, "node_modules/is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/is-installed-globally": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz", - "integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "dev": true, "dependencies": { - "global-dirs": "^2.0.1", - "is-path-inside": "^3.0.1" + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-installed-globally/node_modules/is-path-inside": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz", - "integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==", - "dev": true - }, - "node_modules/is-negative-zero": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz", - "integrity": "sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=", - "dev": true - }, - "node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, - "dependencies": { - "kind-of": "^3.0.2" + "engines": { + "node": ">=8" } }, - "node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" + "engines": { + "node": ">=0.12.0" } }, "node_modules/is-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", - "dev": true - }, - "node_modules/is-observable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz", - "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==", - "dev": true, - "dependencies": { - "symbol-observable": "^1.1.0" - } - }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true - }, - "node_modules/is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", "dev": true, - "dependencies": { - "is-path-inside": "^2.1.0" + "engines": { + "node": ">=0.10.0" } }, "node_modules/is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, - "dependencies": { - "path-is-inside": "^1.0.2" + "engines": { + "node": ">=8" } }, "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "dev": true + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/is-plain-object": { "version": "2.0.4", @@ -8617,63 +7763,33 @@ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dependencies": { "isobject": "^3.0.1" - } - }, - "node_modules/is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", - "dev": true - }, - "node_modules/is-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", - "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/is-regexp": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", - "dev": true - }, - "node_modules/is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", - "dev": true + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "dev": true - }, - "node_modules/is-svg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", - "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", - "dev": true, - "dependencies": { - "html-comment-regex": "^1.1.0" - } - }, - "node_modules/is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", "dev": true, - "dependencies": { - "has-symbols": "^1.0.1" + "engines": { + "node": ">=0.10.0" } }, "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "dev": true }, "node_modules/is-unicode-supported": { @@ -8688,47 +7804,107 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", "dev": true }, "node_modules/is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", - "dev": true + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, "node_modules/isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } }, "node_modules/isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", "dev": true }, "node_modules/javascript-stringify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.0.1.tgz", - "integrity": "sha512-yV+gqbd5vaOYjqlbk16EG89xB5udgjqQF3C5FAORDg4f/IS1Yc5ERCv5e/57yBcfJYw05V5JyIXabhwb75Xxow==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==", "dev": true }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/joi": { + "version": "17.7.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.7.0.tgz", + "integrity": "sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } + }, "node_modules/js-message": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/js-message/-/js-message-1.0.7.tgz", @@ -8745,26 +7921,35 @@ "dev": true }, "node_modules/js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, "node_modules/jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", "dev": true }, "node_modules/jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } }, "node_modules/json-parse-better-errors": { "version": "1.0.2", @@ -8779,9 +7964,9 @@ "dev": true }, "node_modules/json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, "node_modules/json-schema-traverse": { @@ -8793,25 +7978,19 @@ "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, "node_modules/json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true - }, - "node_modules/json3": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", - "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "dev": true }, "node_modules/json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.2.tgz", + "integrity": "sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==", "dev": true, "bin": { "json5": "lib/cli.js" @@ -8821,436 +8000,398 @@ } }, "node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "node_modules/jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", + "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", "dev": true, + "engines": [ + "node >=0.6.0" + ], "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" } }, - "node_modules/killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", - "dev": true - }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - }, - "node_modules/launch-editor": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.2.1.tgz", - "integrity": "sha512-On+V7K2uZK6wK7x691ycSUbLD/FyKKelArkbaAMSSJU8JmqmhwN2+mnJDNINuJWSrh2L0kDk+ZQtbC/gOWUwLw==", - "dev": true, - "dependencies": { - "chalk": "^2.3.0", - "shell-quote": "^1.6.1" + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/launch-editor-middleware": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.2.1.tgz", - "integrity": "sha512-s0UO2/gEGiCgei3/2UN3SMuUj1phjQN8lcpnvgLSz26fAzNWPQ6Nf/kF5IFClnfU2ehp6LrmKdMU/beveO+2jg==", + "node_modules/klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", "dev": true, - "dependencies": { - "launch-editor": "^2.2.1" + "engines": { + "node": ">= 8" } }, - "node_modules/lazy-ass": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", - "integrity": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=", - "dev": true - }, - "node_modules/less": { - "version": "3.12.2", - "resolved": "https://registry.npmjs.org/less/-/less-3.12.2.tgz", - "integrity": "sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==", + "node_modules/launch-editor": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", "dev": true, "dependencies": { - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "make-dir": "^2.1.0", - "tslib": "^1.10.0" - }, - "optionalDependencies": { - "image-size": "~0.5.0", - "mime": "^1.4.1", - "native-request": "^1.0.5", - "source-map": "~0.6.0" + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" } }, - "node_modules/less-loader": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-4.1.0.tgz", - "integrity": "sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg==", + "node_modules/launch-editor-middleware": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.6.0.tgz", + "integrity": "sha512-K2yxgljj5TdCeRN1lBtO3/J26+AIDDDw+04y6VAiZbWcTdBwsYN6RrZBnW5DN/QiSIdKNjKdATLUUluWWFYTIA==", "dev": true, "dependencies": { - "clone": "^2.1.1", - "loader-utils": "^1.1.0", - "pify": "^3.0.0" + "launch-editor": "^2.6.0" } }, - "node_modules/less-loader/node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", - "dev": true - }, - "node_modules/less/node_modules/mime": { + "node_modules/lazy-ass": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "optional": true - }, - "node_modules/less/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - }, - "node_modules/less/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" + "engines": { + "node": "> 0.8" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/lint-staged": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-8.2.1.tgz", - "integrity": "sha512-n0tDGR/rTCgQNwXnUf/eWIpPNddGWxC32ANTNYsj2k02iZb7Cz5ox2tytwBu+2r0zDXMEMKw7Y9OD/qsav561A==", - "dev": true, - "dependencies": { - "chalk": "^2.3.1", - "commander": "^2.14.1", - "cosmiconfig": "^5.2.0", - "debug": "^3.1.0", - "dedent": "^0.7.0", - "del": "^3.0.0", - "execa": "^1.0.0", - "g-status": "^2.0.2", - "is-glob": "^4.0.0", - "is-windows": "^1.0.2", - "listr": "^0.14.2", - "listr-update-renderer": "^0.5.0", - "lodash": "^4.17.11", - "log-symbols": "^2.2.0", - "micromatch": "^3.1.8", - "npm-which": "^3.0.1", - "p-map": "^1.1.1", - "path-is-inside": "^1.0.2", - "pify": "^3.0.0", - "please-upgrade-node": "^3.0.2", - "staged-git-files": "1.1.2", - "string-argv": "^0.0.2", - "stringify-object": "^3.2.2", - "yup": "^0.27.0" - } - }, - "node_modules/lint-staged/node_modules/debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "node_modules/less": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", + "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "source-map": "~0.6.0" } }, - "node_modules/lint-staged/node_modules/del": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", - "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", + "node_modules/less-loader": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-8.1.1.tgz", + "integrity": "sha512-K93jJU7fi3n6rxVvzp8Cb88Uy9tcQKfHlkoezHwKILXhlNYiRQl4yowLIkQqmBXOH/5I8yoKiYeIf781HGkW9g==", "dev": true, "dependencies": { - "globby": "^6.1.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "p-map": "^1.1.1", - "pify": "^3.0.0", - "rimraf": "^2.2.8" + "klona": "^2.0.4" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "less": "^3.5.0 || ^4.0.0", + "webpack": "^5.0.0" } }, - "node_modules/lint-staged/node_modules/globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "node_modules/less/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, + "optional": true, "dependencies": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/lint-staged/node_modules/globby/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "node_modules/lint-staged/node_modules/is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", - "dev": true - }, - "node_modules/lint-staged/node_modules/is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", + "node_modules/less/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, - "dependencies": { - "is-path-inside": "^1.0.0" + "optional": true, + "engines": { + "node": ">=6" } }, - "node_modules/lint-staged/node_modules/is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "node_modules/less/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "dependencies": { - "path-is-inside": "^1.0.1" + "optional": true, + "bin": { + "semver": "bin/semver" } }, - "node_modules/lint-staged/node_modules/p-map": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz", - "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==", - "dev": true - }, - "node_modules/listr": { - "version": "0.14.3", - "resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz", - "integrity": "sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { - "@samverschueren/stream-to-observable": "^0.3.0", - "is-observable": "^1.1.0", - "is-promise": "^2.1.0", - "is-stream": "^1.1.0", - "listr-silent-renderer": "^1.1.1", - "listr-update-renderer": "^0.5.0", - "listr-verbose-renderer": "^0.5.0", - "p-map": "^2.0.0", - "rxjs": "^6.3.3" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/listr-silent-renderer": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz", - "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=", - "dev": true - }, - "node_modules/listr-update-renderer": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz", - "integrity": "sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==", + "node_modules/lilconfig": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", "dev": true, - "dependencies": { - "chalk": "^1.1.3", - "cli-truncate": "^0.2.1", - "elegant-spinner": "^1.0.1", - "figures": "^1.7.0", - "indent-string": "^3.0.0", - "log-symbols": "^1.0.2", - "log-update": "^2.3.0", - "strip-ansi": "^3.0.1" + "engines": { + "node": ">=10" } }, - "node_modules/listr-update-renderer/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "node_modules/listr-update-renderer/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, - "node_modules/listr-update-renderer/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "node_modules/lint-staged": { + "version": "11.2.6", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-11.2.6.tgz", + "integrity": "sha512-Vti55pUnpvPE0J9936lKl0ngVeTdSZpEdTNhASbkaWX7J5R9OEifo1INBGQuGW4zmy6OG+TcWPJ3m5yuy5Q8Tg==", + "dev": true, + "dependencies": { + "cli-truncate": "2.1.0", + "colorette": "^1.4.0", + "commander": "^8.2.0", + "cosmiconfig": "^7.0.1", + "debug": "^4.3.2", + "enquirer": "^2.3.6", + "execa": "^5.1.1", + "listr2": "^3.12.2", + "micromatch": "^4.0.4", + "normalize-path": "^3.0.0", + "please-upgrade-node": "^3.2.0", + "string-argv": "0.3.1", + "stringify-object": "3.3.0", + "supports-color": "8.1.1" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" } }, - "node_modules/listr-update-renderer/node_modules/figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "node_modules/lint-staged/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.1.0" + "engines": { + "node": ">= 12" } }, - "node_modules/listr-update-renderer/node_modules/log-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", - "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", + "node_modules/lint-staged/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "chalk": "^1.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/listr-update-renderer/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "node_modules/lint-staged/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/listr-update-renderer/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - }, - "node_modules/listr-verbose-renderer": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz", - "integrity": "sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==", + "node_modules/lint-staged/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "chalk": "^2.4.1", - "cli-cursor": "^2.1.0", - "date-fns": "^1.27.2", - "figures": "^2.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/loader-fs-cache": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz", - "integrity": "sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==", + "node_modules/lint-staged/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "dependencies": { - "find-cache-dir": "^0.1.1", - "mkdirp": "^0.5.1" + "engines": { + "node": ">=10.17.0" } }, - "node_modules/loader-fs-cache/node_modules/find-cache-dir": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", - "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", + "node_modules/lint-staged/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "mkdirp": "^0.5.1", - "pkg-dir": "^1.0.0" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/loader-fs-cache/node_modules/find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "node_modules/lint-staged/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "dependencies": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/loader-fs-cache/node_modules/path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "node_modules/lint-staged/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "pinkie-promise": "^2.0.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/loader-fs-cache/node_modules/pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "node_modules/listr2": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", + "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", "dev": true, "dependencies": { - "find-up": "^1.0.0" + "cli-truncate": "^2.1.0", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.5.1", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } } }, - "node_modules/loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "node_modules/listr2/node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", "dev": true }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, "node_modules/loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "dependencies": { "big.js": "^5.2.2", - "emojis-list": "^2.0.0", + "emojis-list": "^3.0.0", "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" } }, "node_modules/loader-utils/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" } }, "node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/lodash": { - "version": "4.17.20", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", - "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "node_modules/lodash.debounce": { "version": "4.0.8", @@ -9273,66 +8414,198 @@ "node_modules/lodash.mapvalues": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz", - "integrity": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=", + "integrity": "sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==", "dev": true }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "node_modules/lodash.once": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "dev": true + }, + "node_modules/lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true }, - "node_modules/lodash.throttle": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/lodash.transform": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz", - "integrity": "sha1-EjBkIvYzJK7YSD0/ODMrX2cFR6A=", - "dev": true + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", - "dev": true + "node_modules/log-update/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "node_modules/log-symbols": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", - "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "node_modules/log-update/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "chalk": "^2.0.1" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/log-update": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", - "integrity": "sha1-iDKP19HOeTiykoN0bwsbwSayRwg=", + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "dependencies": { - "ansi-escapes": "^3.0.0", - "cli-cursor": "^2.0.0", - "wrap-ansi": "^3.0.1" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, "node_modules/log-update/node_modules/wrap-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", - "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "dependencies": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/logdown": { @@ -9344,65 +8617,40 @@ "chalk": "^2.3.0" } }, - "node_modules/loglevel": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", - "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==", - "dev": true - }, "node_modules/lower-case": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=", - "dev": true - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "tslib": "^2.0.3" } }, - "node_modules/make-dir/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true - }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "object-visit": "^1.0.0" + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/matcher": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/matcher/-/matcher-1.1.1.tgz", - "integrity": "sha512-+BmqxWIubKTRKNWx/ahnCkk3mG8m7OturVlqq6HiojGJTd5hVYbgZm6WzcYPCoB+KBT4Vd6R7WSRG2OADNaCjg==", + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "dependencies": { - "escape-string-regexp": "^1.0.4" + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/material-colors": { @@ -9410,43 +8658,37 @@ "resolved": "https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz", "integrity": "sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==" }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dev": true, - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, "node_modules/mdn-data": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", - "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", "dev": true }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "dev": true + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "node_modules/memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "node_modules/memfs": { + "version": "3.4.12", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.12.tgz", + "integrity": "sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw==", "dev": true, "dependencies": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" + "fs-monkey": "^1.0.3" + }, + "engines": { + "node": ">= 4.0.0" } }, "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, "node_modules/merge-source-map": { @@ -9458,12 +8700,6 @@ "source-map": "^0.6.1" } }, - "node_modules/merge-source-map/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", @@ -9474,251 +8710,240 @@ "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 8" + } }, "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", - "dev": true - }, - "node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - }, "node_modules/mime": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz", - "integrity": "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==", - "dev": true + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } }, "node_modules/mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", - "dev": true + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } }, "node_modules/mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "dependencies": { - "mime-db": "1.44.0" + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" } }, "node_modules/mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, - "node_modules/mini-css-extract-plugin": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz", - "integrity": "sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, - "dependencies": { - "loader-utils": "^1.1.0", - "normalize-url": "1.9.1", - "schema-utils": "^1.0.0", - "webpack-sources": "^1.1.0" + "engines": { + "node": ">=6" } }, - "node_modules/mini-css-extract-plugin/node_modules/normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "node_modules/mini-css-extract-plugin": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz", + "integrity": "sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==", "dev": true, "dependencies": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "dependencies": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", - "dev": true - }, - "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "node_modules/minipass": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", - "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/minipass/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true }, - "node_modules/mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "dependencies": { - "is-plain-object": "^2.0.4" + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "dependencies": { - "minimist": "^1.2.5" + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" } }, + "node_modules/module-alias": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz", + "integrity": "sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==", + "dev": true + }, "node_modules/moment": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", - "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", + "engines": { + "node": "*" + } }, - "node_modules/move-concurrently": { + "node_modules/mrmime": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", "dev": true, - "dependencies": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" + "engines": { + "node": ">=10" } }, "node_modules/ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "node_modules/multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, "dependencies": { - "dns-packet": "^1.3.1", + "dns-packet": "^5.2.2", "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" } }, - "node_modules/multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", - "dev": true - }, - "node_modules/mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true - }, "node_modules/mz": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", @@ -9730,43 +8955,59 @@ "thenify-all": "^1.0.0" } }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/native-request": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.0.8.tgz", - "integrity": "sha512-vU2JojJVelUGp6jRcLwToPoWGxSx23z/0iX+I77J3Ht17rf2INGjrhOoQnjVo60nQd8wVsgzKkPfRXBiVdD2ag==", - "dev": true, - "optional": true - }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, + "node_modules/needle": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", + "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "dev": true, + "optional": true, + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "dependencies": { + "ms": "^2.1.1" + } + }, "node_modules/negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "dev": true + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } }, "node_modules/neo-async": { "version": "2.6.2", @@ -9781,61 +9022,48 @@ "dev": true }, "node_modules/no-case": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", - "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "dependencies": { - "lower-case": "^1.1.1" + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "node_modules/node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", - "dev": true + "node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } }, - "node_modules/node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dev": true, - "dependencies": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - } - }, - "node_modules/node-libs-browser/node_modules/punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } }, "node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz", + "integrity": "sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==", "dev": true }, "node_modules/normalize-package-data": { @@ -9850,213 +9078,121 @@ "validate-npm-package-license": "^3.0.1" } }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", - "dev": true + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/normalize-url": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", - "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", - "dev": true - }, - "node_modules/npm-path": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/npm-path/-/npm-path-2.0.4.tgz", - "integrity": "sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true, - "dependencies": { - "which": "^1.2.10" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm-run-path": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", "dev": true, "dependencies": { "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/npm-which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/npm-which/-/npm-which-3.0.1.tgz", - "integrity": "sha1-kiXybsOihcIJyuZ8OxGmtKtxQKo=", + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", "dev": true, - "dependencies": { - "commander": "^2.9.0", - "npm-path": "^2.0.2", - "which": "^1.2.10" + "engines": { + "node": ">=4" } }, "node_modules/nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, "dependencies": { - "boolbase": "~1.0.0" + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", - "dev": true - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true - }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dev": true, - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - } - }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - } - }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/object-hash": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz", - "integrity": "sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==", - "dev": true - }, "node_modules/object-inspect": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", - "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==", - "dev": true - }, - "node_modules/object-is": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.3.tgz", - "integrity": "sha512-teyqLvFWzLkq5B9ki8FVWA902UER2qkxmdA4nLf+wjOLAWgxzCWZNCxpDq9MvE8MmhWNr+I8w3BN49Vx36Y6Xg==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1" - } - }, - "node_modules/object-is/node_modules/es-abstract": { - "version": "1.18.0-next.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz", - "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", "dev": true, - "dependencies": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.0", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", "dev": true, - "dependencies": { - "isobject": "^3.0.0" + "engines": { + "node": ">= 0.4" } }, "node_modules/object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" - } - }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz", - "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - } - }, - "node_modules/object.values": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz", - "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1", - "function-bind": "^1.1.1", - "has": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/obuf": { @@ -10066,149 +9202,203 @@ "dev": true }, "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "dependencies": { "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, "node_modules/on-headers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "dependencies": { - "mimic-fn": "^1.0.0" + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/open": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", - "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opencollective-postinstall": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz", + "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==", + "dev": true, + "bin": { + "opencollective-postinstall": "index.js" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true, + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "is-wsl": "^1.1.0" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", - "dev": true - }, - "node_modules/opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", - "dev": true, - "dependencies": { - "is-wsl": "^1.1.0" - } - }, - "node_modules/optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.4", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "wordwrap": "~1.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/ora": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", - "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "node_modules/ora/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "chalk": "^2.4.2", - "cli-cursor": "^2.1.0", - "cli-spinners": "^2.0.0", - "log-symbols": "^2.2.0", - "strip-ansi": "^5.2.0", - "wcwidth": "^1.0.1" + "color-name": "~1.1.4" }, "engines": { - "node": ">=6" + "node": ">=7.0.0" } }, - "node_modules/ora/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/ora/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "ansi-regex": "^4.1.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/original": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", - "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", - "dev": true, - "dependencies": { - "url-parse": "^1.4.3" + "node": ">=8" } }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", - "dev": true - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, "node_modules/ospath": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", - "integrity": "sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=", + "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", "dev": true }, "node_modules/p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "dev": true + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } }, "node_modules/p-limit": { "version": "2.3.0", @@ -10217,62 +9407,71 @@ "dev": true, "dependencies": { "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "dependencies": { - "p-limit": "^2.0.0" + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/p-retry": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", - "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "dev": true, "dependencies": { - "retry": "^0.12.0" + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" } }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true - }, - "node_modules/parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", "dev": true, - "dependencies": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" + "engines": { + "node": ">=6" } }, "node_modules/param-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", - "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, "dependencies": { - "no-case": "^2.2.0" + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, "node_modules/parent-module": { @@ -10282,35 +9481,36 @@ "dev": true, "dependencies": { "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/parent-module/node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "node_modules/parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", "dev": true, - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "engines": { + "node": ">= 0.10" } }, "node_modules/parse5": { @@ -10338,851 +9538,985 @@ "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true - }, - "node_modules/path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "node_modules/path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "dev": true + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } }, "node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "node_modules/path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", - "dev": true + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } }, "node_modules/path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, "node_modules/path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "dependencies": { - "pify": "^3.0.0" - } - }, - "node_modules/pbkdf2": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", - "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, - "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "engines": { + "node": ">=8" } }, "node_modules/pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "dev": true }, "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", "dev": true }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "node_modules/picomatch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "optional": true + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } }, "node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "node_modules/please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "dev": true, + "dependencies": { + "semver-compare": "^1.0.0" + } + }, + "node_modules/popper.js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", + "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==", + "deprecated": "You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dev": true, + "dependencies": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dev": true, "dependencies": { - "pinkie": "^2.0.0" + "lodash": "^4.17.14" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/postcss": { + "version": "8.4.20", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz", + "integrity": "sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "node_modules/pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", "dev": true, "dependencies": { - "find-up": "^3.0.0" + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" } }, - "node_modules/please-upgrade-node": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", - "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "node_modules/postcss-colormin": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", + "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", "dev": true, "dependencies": { - "semver-compare": "^1.0.0" + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/pnp-webpack-plugin": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", - "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", "dev": true, "dependencies": { - "ts-pnp": "^1.1.6" + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/popper.js": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", - "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" - }, - "node_modules/portfinder": { - "version": "1.0.28", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", - "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", "dev": true, - "dependencies": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/portfinder/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "dev": true + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "node_modules/postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", "dev": true, - "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-calc": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", - "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", "dev": true, "dependencies": { - "postcss": "^7.0.27", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.0.2" + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" } }, - "node_modules/postcss-colormin": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", - "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "dependencies": { - "browserslist": "^4.0.0", - "color": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/postcss-colormin/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-convert-values": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", - "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", "dev": true, "dependencies": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-convert-values/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-discard-comments": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", - "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "node_modules/postcss-merge-rules": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz", + "integrity": "sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==", "dev": true, "dependencies": { - "postcss": "^7.0.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-discard-duplicates": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", - "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", "dev": true, "dependencies": { - "postcss": "^7.0.0" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-discard-empty": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", - "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", "dev": true, "dependencies": { - "postcss": "^7.0.0" + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-discard-overridden": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", - "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", "dev": true, "dependencies": { - "postcss": "^7.0.0" + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-load-config": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", - "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", "dev": true, "dependencies": { - "cosmiconfig": "^5.0.0", - "import-cwd": "^2.0.0" + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-loader": { + "node_modules/postcss-modules-extract-imports": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", - "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", "dev": true, "dependencies": { - "loader-utils": "^1.1.0", - "postcss": "^7.0.0", - "postcss-load-config": "^2.0.0", - "schema-utils": "^1.0.0" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/postcss-loader/node_modules/schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", "dev": true, "dependencies": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/postcss-merge-longhand": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", - "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, "dependencies": { - "css-color-names": "0.0.4", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "stylehacks": "^4.0.0" + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "node_modules/postcss-merge-rules": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", - "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", "dev": true, "dependencies": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "cssnano-util-same-parent": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0", - "vendors": "^1.0.0" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", "dev": true, "dependencies": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-minify-font-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", - "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", "dev": true, "dependencies": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-minify-gradients": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", - "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", "dev": true, "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "is-color-stop": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-minify-params": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", - "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", "dev": true, "dependencies": { - "alphanum-sort": "^1.0.0", - "browserslist": "^4.0.0", - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "uniqs": "^2.0.0" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-minify-params/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "node_modules/postcss-minify-selectors": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", - "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", "dev": true, "dependencies": { - "alphanum-sort": "^1.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", "dev": true, "dependencies": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-modules-extract-imports": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", - "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", "dev": true, "dependencies": { - "postcss": "^7.0.5" + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-modules-local-by-default": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", - "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "node_modules/postcss-reduce-initial": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz", + "integrity": "sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==", "dev": true, "dependencies": { - "icss-utils": "^4.1.1", - "postcss": "^7.0.32", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-modules-scope": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", - "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", "dev": true, "dependencies": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^6.0.0" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-modules-values": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", - "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "node_modules/postcss-selector-parser": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", "dev": true, "dependencies": { - "icss-utils": "^4.0.0", - "postcss": "^7.0.6" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" } }, - "node_modules/postcss-normalize-charset": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", - "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", "dev": true, "dependencies": { - "postcss": "^7.0.0" + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-normalize-display-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", - "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", "dev": true, "dependencies": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, - "node_modules/postcss-normalize-positions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", - "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-normalize-repeat-style": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", - "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "node_modules/prettier": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", + "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", "dev": true, - "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-normalize-string": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", - "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, "dependencies": { - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" } }, - "node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-normalize-timing-functions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", - "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "dev": true, - "dependencies": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-normalize-unicode": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", - "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", "dev": true, "dependencies": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "lodash": "^4.17.20", + "renderkid": "^3.0.0" } }, - "node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, - "node_modules/postcss-normalize-url": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", - "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true, - "dependencies": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "engines": { + "node": ">=0.4.0" } }, - "node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-normalize-whitespace": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", - "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "node_modules/progress-webpack-plugin": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz", + "integrity": "sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==", "dev": true, "dependencies": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "chalk": "^2.1.0", + "figures": "^2.0.0", + "log-update": "^2.3.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "peerDependencies": { + "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0" } }, - "node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-ordered-values": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", - "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "node_modules/progress-webpack-plugin/node_modules/ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", "dev": true, - "dependencies": { - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "engines": { + "node": ">=4" } }, - "node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true + "node_modules/progress-webpack-plugin/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/postcss-reduce-initial": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", - "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "node_modules/progress-webpack-plugin/node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", "dev": true, "dependencies": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0" + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/postcss-reduce-transforms": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", - "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "node_modules/progress-webpack-plugin/node_modules/figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", "dev": true, "dependencies": { - "cssnano-util-get-match": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" } }, - "node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", - "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "node_modules/progress-webpack-plugin/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1", - "util-deprecate": "^1.0.2" + "engines": { + "node": ">=4" } }, - "node_modules/postcss-svgo": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", - "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", + "node_modules/progress-webpack-plugin/node_modules/log-update": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", + "integrity": "sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==", "dev": true, "dependencies": { - "is-svg": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "svgo": "^1.0.0" + "ansi-escapes": "^3.0.0", + "cli-cursor": "^2.0.0", + "wrap-ansi": "^3.0.1" + }, + "engines": { + "node": ">=4" } }, - "node_modules/postcss-svgo/node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true + "node_modules/progress-webpack-plugin/node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/postcss-unique-selectors": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", - "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "node_modules/progress-webpack-plugin/node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", "dev": true, "dependencies": { - "alphanum-sort": "^1.0.0", - "postcss": "^7.0.0", - "uniqs": "^2.0.0" + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/postcss-value-parser": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", - "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", - "dev": true - }, - "node_modules/postcss/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "node_modules/postcss/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "node_modules/progress-webpack-plugin/node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" } }, - "node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true - }, - "node_modules/prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "dev": true - }, - "node_modules/prettier": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", - "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==", + "node_modules/progress-webpack-plugin/node_modules/string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "dev": true, - "optional": true + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "node_modules/progress-webpack-plugin/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", "dev": true, "dependencies": { - "fast-diff": "^1.1.2" + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/pretty-bytes": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.4.1.tgz", - "integrity": "sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA==", - "dev": true - }, - "node_modules/pretty-error": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", - "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "node_modules/progress-webpack-plugin/node_modules/wrap-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", + "integrity": "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==", "dev": true, "dependencies": { - "lodash": "^4.17.20", - "renderkid": "^2.0.4" + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "node_modules/property-expr": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-1.5.1.tgz", - "integrity": "sha512-CGuc0VUTGthpJXL36ydB6jnbyOf/rAHFvmVrJlH+Rg0DqqLFQGAP6hIaxD/G0OAmBJPhXDHuEJigrp0e0wFV6g==", - "dev": true - }, "node_modules/proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, "dependencies": { - "forwarded": "~0.1.2", + "forwarded": "0.2.0", "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" } }, + "node_modules/proxy-from-env": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", + "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", + "dev": true + }, "node_modules/prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", - "dev": true + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true }, "node_modules/pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", "dev": true }, "node_modules/psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", - "dev": true - }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dev": true, - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", "dev": true }, "node_modules/pump": { @@ -11195,78 +10529,49 @@ "once": "^1.3.1" } }, - "node_modules/pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "node_modules/pumpify/node_modules/pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, "node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "node_modules/q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, "node_modules/qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true - }, - "node_modules/query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "version": "6.10.4", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", + "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", "dev": true, "dependencies": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", - "dev": true - }, - "node_modules/querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", - "dev": true - }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "node_modules/ramda": { - "version": "0.26.1", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.26.1.tgz", - "integrity": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==", - "dev": true + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, "node_modules/randombytes": { "version": "2.1.0", @@ -11277,32 +10582,49 @@ "safe-buffer": "^5.1.0" } }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, - "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, "node_modules/raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, "dependencies": { - "bytes": "3.1.0", - "http-errors": "1.7.2", + "bytes": "3.1.2", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/read-pkg": { @@ -11320,16 +10642,15 @@ "node": ">=8" } }, - "node_modules/read-pkg/node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" }, "engines": { "node": ">=8" @@ -11338,29 +10659,48 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, "node_modules/readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, - "optional": true, "dependencies": { "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, "node_modules/regenerate": { @@ -11382,44 +10722,35 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", - "dev": true + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" }, "node_modules/regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", "dev": true, "dependencies": { "@babel/runtime": "^7.8.4" } }, - "node_modules/regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", - "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==", + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true, - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" } }, "node_modules/regexpu-core": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz", - "integrity": "sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz", + "integrity": "sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==", "dev": true, "dependencies": { "regenerate": "^1.4.2", @@ -11427,7 +10758,7 @@ "regjsgen": "^0.7.1", "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" + "unicode-match-property-value-ecmascript": "^2.1.0" }, "engines": { "node": ">=4" @@ -11455,127 +10786,37 @@ "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", - "dev": true - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "dev": true - }, - "node_modules/renderkid": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.4.tgz", - "integrity": "sha512-K2eXrSOJdq+HuKzlcjOlGoOarUu5SDguDEhE7+Ah4zuOWL40j8A/oHvLlLob9PSTNvVnBd+/q0Er1QfpEuem5g==", - "dev": true, - "dependencies": { - "css-select": "^1.1.0", - "dom-converter": "^0.2", - "htmlparser2": "^3.3.0", - "lodash": "^4.17.20", - "strip-ansi": "^3.0.0" - } - }, - "node_modules/renderkid/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "node_modules/renderkid/node_modules/css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "dev": true, - "dependencies": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "node_modules/renderkid/node_modules/css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", - "dev": true - }, - "node_modules/renderkid/node_modules/domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "dev": true, - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "node_modules/renderkid/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - } - }, - "node_modules/repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", - "dev": true - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "dev": true, - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, "engines": { - "node": ">= 6" + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" } }, "node_modules/request-progress": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", - "integrity": "sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=", + "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", "dev": true, "dependencies": { "throttleit": "^1.0.0" @@ -11584,146 +10825,157 @@ "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, "node_modules/resolve": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", - "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "dev": true, "dependencies": { - "is-core-module": "^2.1.0", - "path-parse": "^1.0.6" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, - "dependencies": { - "resolve-from": "^3.0.0" + "engines": { + "node": ">=4" } }, - "node_modules/resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - }, - "node_modules/resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "dev": true - }, "node_modules/restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "dependencies": { - "onetime": "^2.0.0", + "onetime": "^5.1.0", "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" } }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true - }, "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", - "dev": true - }, - "node_modules/rgb-regex": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", - "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", - "dev": true - }, - "node_modules/rgba-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", - "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", - "dev": true - }, - "node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "dev": true, - "dependencies": { - "glob": "^7.1.3" + "engines": { + "node": ">= 4" } }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "node_modules/run-async": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "node_modules/rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "dependencies": { - "is-promise": "^2.1.0" + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "aproba": "^1.1.1" + "queue-microtask": "^1.2.2" } }, "node_modules/rxjs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.1.tgz", - "integrity": "sha512-y0j31WJc83wPu31vS1VlAFW5JGrnGC+j+TtGAa1fRQphy48+fDYiDmX8tjGloToEsMkxnouOg/1IzXGKkJnZMg==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", + "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", "dev": true, "dependencies": { - "tslib": "^1.9.0" + "tslib": "^2.1.0" } }, "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, - "dependencies": { - "ret": "~0.1.10" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, "node_modules/safer-buffer": { "version": "2.1.2", @@ -11735,7 +10987,8 @@ "version": "1.2.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true + "dev": true, + "optional": true }, "node_modules/schema-utils": { "version": "2.7.1", @@ -11746,54 +10999,82 @@ "@types/json-schema": "^7.0.5", "ajv": "^6.12.4", "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", "dev": true }, "node_modules/selfsigned": { - "version": "1.10.8", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", - "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", "dev": true, "dependencies": { - "node-forge": "^0.10.0" + "node-forge": "^1" + }, + "engines": { + "node": ">=10" } }, "node_modules/semver": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", - "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==", - "dev": true + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } }, "node_modules/semver-compare": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", "dev": true }, + "node_modules/semver-regex": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.4.tgz", + "integrity": "sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, "dependencies": { "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", + "depd": "2.0.0", + "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "~1.7.2", + "http-errors": "2.0.0", "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", + "ms": "2.1.3", + "on-finished": "2.4.1", "range-parser": "~1.2.1", - "statuses": "~1.5.0" + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" } }, "node_modules/send/node_modules/debug": { @@ -11808,19 +11089,19 @@ "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true }, "node_modules/serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", "dev": true, "dependencies": { "randombytes": "^2.1.0" @@ -11829,7 +11110,7 @@ "node_modules/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, "dependencies": { "accepts": "~1.3.4", @@ -11838,334 +11119,227 @@ "escape-html": "~1.0.3", "http-errors": "~1.6.2", "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - } - }, - "node_modules/serve-index/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "dev": true, - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "node_modules/serve-index/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "node_modules/serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "dev": true, - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "node_modules/set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - } - }, - "node_modules/set-value/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - } - }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "dev": true - }, - "node_modules/setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", - "dev": true - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dependencies": { - "kind-of": "^6.0.2" - } - }, - "node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "dependencies": { - "shebang-regex": "^1.0.0" - } - }, - "node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "node_modules/shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==", - "dev": true - }, - "node_modules/signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "dev": true + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } }, - "node_modules/simple-git": { - "version": "1.126.0", - "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-1.126.0.tgz", - "integrity": "sha512-47mqHxgZnN8XRa9HbpWprzUv3Ooqz9RY/LSZgvA7jCkW8jcwLahMz7LKugY91KZehfG0sCVPtgXiU72hd6b1Bw==", + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "debug": "^4.0.1" + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" } }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "dev": true, "dependencies": { - "is-arrayish": "^0.3.1" + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" } }, - "node_modules/simple-swizzle/node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", "dev": true }, - "node_modules/slash": { + "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - } - }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - } + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" + "engines": { + "node": ">= 0.6" } }, - "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, "dependencies": { - "kind-of": "^6.0.0" + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/snapdragon-node/node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - } + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true }, - "node_modules/snapdragon-node/node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" } }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "dependencies": { - "kind-of": "^3.2.0" + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" + "engines": { + "node": ">=8" } }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/shell-quote": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.4.tgz", + "integrity": "sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==", "dev": true, - "dependencies": { - "ms": "2.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dev": true, "dependencies": { - "is-descriptor": "^0.1.0" + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sirv": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", + "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", "dev": true, "dependencies": { - "is-extendable": "^0.1.0" + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^1.0.0" + }, + "engines": { + "node": ">= 10" } }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "node_modules/sockjs": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.20.tgz", - "integrity": "sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==", + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, - "dependencies": { - "faye-websocket": "^0.10.0", - "uuid": "^3.4.0", - "websocket-driver": "0.6.5" + "engines": { + "node": ">=8" } }, - "node_modules/sockjs-client": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", - "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", + "node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, "dependencies": { - "debug": "^3.2.5", - "eventsource": "^1.0.7", - "faye-websocket": "~0.11.1", - "inherits": "^2.0.3", - "json3": "^3.3.2", - "url-parse": "^1.4.3" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/sockjs-client/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/sockjs-client/node_modules/faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "websocket-driver": ">=0.5.1" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, "dependencies": { - "is-plain-obj": "^1.0.0" + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" } }, "node_modules/sortablejs": { @@ -12173,53 +11347,32 @@ "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.10.2.tgz", "integrity": "sha512-YkPGufevysvfwn5rfdlGyrGjt7/CRHwvRPogD/lC+TnvcN29jDpCifKP+rBqf+LRldfXSTh+0CGLcSg0VIxq3A==" }, - "node_modules/source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "dev": true - }, "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", - "dev": true, - "dependencies": { - "atob": "^2.1.1", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" } }, "node_modules/source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "node_modules/source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", - "dev": true - }, "node_modules/spdx-correct": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", @@ -12263,6 +11416,9 @@ "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" } }, "node_modules/spdy-transport": { @@ -12279,36 +11435,16 @@ "wbuf": "^1.7.3" } }, - "node_modules/spdy-transport/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "node_modules/split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "dependencies": { - "extend-shallow": "^3.0.0" - } - }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true }, "node_modules/sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", "dev": true, "dependencies": { "asn1": "~0.2.3", @@ -12320,148 +11456,80 @@ "jsbn": "~0.1.0", "safer-buffer": "^2.0.2", "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/ssri": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", - "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", "dev": true, "dependencies": { - "figgy-pudding": "^3.5.1" + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" } }, "node_modules/stable": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", "dev": true }, "node_modules/stackframe": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", - "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==", + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", "dev": true }, - "node_modules/staged-git-files": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/staged-git-files/-/staged-git-files-1.1.2.tgz", - "integrity": "sha512-0Eyrk6uXW6tg9PYkhi/V/J4zHp33aNyi2hOCmhFLqLTIhbgqWn5jlSzI+IU0VqrZq6+DbHcabQl/WP6P3BG0QA==", - "dev": true - }, - "node_modules/static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "dev": true, - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - } - }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - } - }, "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "dev": true - }, - "node_modules/stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dev": true, - "dependencies": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "node_modules/stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true, - "dependencies": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" + "engines": { + "node": ">= 0.8" } }, - "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "node_modules/strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", - "dev": true - }, "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string-argv": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.0.2.tgz", - "integrity": "sha1-2sMECGkMIfPDYwo/86BYd73L1zY=", - "dev": true - }, - "node_modules/string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "safe-buffer": "~5.2.0" } }, - "node_modules/string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", + "node_modules/string-argv": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" + "engines": { + "node": ">=0.6.19" } }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, "node_modules/stringify-object": { @@ -12473,61 +11541,76 @@ "get-own-enumerable-property-symbols": "^3.0.0", "is-obj": "^1.0.1", "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, "node_modules/strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { - "ansi-regex": "^3.0.0" + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, "node_modules/strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", - "dev": true + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, "node_modules/strip-indent": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz", - "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=", - "dev": true + "integrity": "sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA==", + "dev": true, + "engines": { + "node": ">=4" + } }, "node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - }, - "node_modules/stylehacks": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", - "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, - "dependencies": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/stylehacks/node_modules/postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", "dev": true, "dependencies": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, "node_modules/supports-color": { @@ -12537,6 +11620,21 @@ "dev": true, "dependencies": { "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/svg-tags": { @@ -12546,99 +11644,206 @@ "dev": true }, "node_modules/svgo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", - "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", "dev": true, "dependencies": { - "chalk": "^2.4.1", - "coa": "^2.0.2", - "css-select": "^2.0.0", - "css-select-base-adapter": "^0.1.1", - "css-tree": "1.0.0-alpha.37", - "csso": "^4.0.2", - "js-yaml": "^3.13.1", - "mkdirp": "~0.5.1", - "object.values": "^1.1.0", - "sax": "~1.2.4", - "stable": "^0.1.8", - "unquote": "~1.1.1", - "util.promisify": "~1.0.0" + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" } }, - "node_modules/symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", - "dev": true + "node_modules/svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/table": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/table/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } }, - "node_modules/synchronous-promise": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.9.tgz", - "integrity": "sha512-LO95GIW16x69LuND1nuuwM4pjgFGupg7pZ/4lU86AmchPKrhk0o2tpMU2unXRrqo81iAFe1YJ0nAGEVwsrZAgg==", + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, + "node_modules/table/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, "node_modules/tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "dev": true + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } }, "node_modules/terser": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", - "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz", + "integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==", "dev": true, "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" } }, "node_modules/terser-webpack-plugin": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", - "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", "dev": true, "dependencies": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" + "@jridgewell/trace-mapping": "^0.3.14", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.14.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } } }, "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, "dependencies": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/terser-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "node_modules/terser/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, "node_modules/thenify": { @@ -12653,148 +11858,151 @@ "node_modules/thenify-all": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", "dev": true, "dependencies": { "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" } }, "node_modules/thread-loader": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-2.1.3.tgz", - "integrity": "sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-3.0.4.tgz", + "integrity": "sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==", "dev": true, "dependencies": { - "loader-runner": "^2.3.1", - "loader-utils": "^1.1.0", - "neo-async": "^2.6.0" + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.1.0", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/thread-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/thread-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/throttleit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=", + "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", "dev": true }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, - "node_modules/timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", - "dev": true, - "dependencies": { - "setimmediate": "^1.0.4" - } - }, - "node_modules/timsort": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", - "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", - "dev": true - }, "node_modules/tinycolor2": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", - "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==" + "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", + "engines": { + "node": "*" + } }, "node_modules/tinymce": { - "version": "4.9.11", - "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-4.9.11.tgz", - "integrity": "sha512-nkSLsax+VY5DBRjMFnHFqPwTnlLEGHCco82FwJF2JNH6W+5/ClvNC1P4uhD5lXPDNiDykSHR0XJdEh7w/ICHzA==" + "version": "5.10.7", + "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-5.10.7.tgz", + "integrity": "sha512-9UUjaO0R7FxcFo0oxnd1lMs7H+D0Eh+dDVo5hKbVe1a+VB0nit97vOqlinj+YwgoBDt6/DSCUoWqAYlLI8BLYA==" }, "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", "dev": true, "dependencies": { - "os-tmpdir": "~1.0.2" + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" } }, - "node_modules/to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", - "dev": true - }, "node_modules/to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - } - }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true, - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" + "engines": { + "node": ">=4" } }, "node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, "node_modules/toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", - "dev": true + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } }, - "node_modules/toposort": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz", - "integrity": "sha1-LmhELZ9k7HILjMieZEOsbKqVACk=", - "dev": true + "node_modules/totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", + "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==", + "dev": true, + "engines": { + "node": ">=6" + } }, "node_modules/tough-cookie": { "version": "2.5.0", @@ -12804,63 +12012,63 @@ "dependencies": { "psl": "^1.1.28", "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" } }, - "node_modules/tryer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", - "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", - "dev": true - }, - "node_modules/ts-pnp": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", - "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, "node_modules/tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", - "dev": true - }, - "node_modules/tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", "dev": true }, "node_modules/tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, "dependencies": { "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" } }, "node_modules/tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", "dev": true }, "node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "dependencies": { - "prelude-ls": "~1.1.2" + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" } }, "node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/type-is": { @@ -12871,36 +12079,11 @@ "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" } }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", - "dev": true - }, - "node_modules/uglify-js": { - "version": "3.4.10", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", - "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", - "dev": true, - "dependencies": { - "commander": "~2.19.0", - "source-map": "~0.6.1" - } - }, - "node_modules/uglify-js/node_modules/commander": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", - "dev": true - }, - "node_modules/uglify-js/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", @@ -12924,9 +12107,9 @@ } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", "dev": true, "engines": { "node": ">=4" @@ -12941,118 +12124,37 @@ "node": ">=4" } }, - "node_modules/union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, - "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } - }, - "node_modules/uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", - "dev": true - }, - "node_modules/uniqs": { + "node_modules/universalify": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", - "dev": true - }, - "node_modules/unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "dependencies": { - "unique-slug": "^2.0.0" - } - }, - "node_modules/unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" + "engines": { + "node": ">= 10.0.0" } }, - "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true - }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "dev": true - }, - "node_modules/unquote": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", - "dev": true - }, - "node_modules/unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "dev": true, - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - } - }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - } - }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true, - "dependencies": { - "isarray": "1.0.0" + "engines": { + "node": ">= 0.8" } }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true - }, "node_modules/untildify": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true - }, - "node_modules/upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, "node_modules/update-browserslist-db": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz", - "integrity": "sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==", + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", "dev": true, "funding": [ { @@ -13075,125 +12177,62 @@ "browserslist": ">= 4.21.0" } }, - "node_modules/upper-case": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=", - "dev": true - }, "node_modules/uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "dependencies": { "punycode": "^2.1.0" } }, - "node_modules/urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "dev": true - }, - "node_modules/url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dev": true, - "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" - } - }, - "node_modules/url-loader": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz", - "integrity": "sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==", - "dev": true, - "dependencies": { - "loader-utils": "^1.2.3", - "mime": "^2.4.4", - "schema-utils": "^2.5.0" - } - }, - "node_modules/url-parse": { - "version": "1.4.7", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", - "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", - "dev": true, - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", - "dev": true - }, - "node_modules/use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true - }, - "node_modules/util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "dev": true, - "dependencies": { - "inherits": "2.0.3" - } - }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "node_modules/util.promisify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", - "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.2", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.0" - } - }, "node_modules/utila": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", "dev": true }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "dev": true + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } }, "node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "dev": true + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } }, "node_modules/v-tooltip": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/v-tooltip/-/v-tooltip-2.0.3.tgz", - "integrity": "sha512-KZZY3s+dcijzZmV2qoDH4rYmjMZ9YKGBVoUznZKQX0e3c2GjpJm3Sldzz8HHH2Ud87JqhZPB4+4gyKZ6m98cKQ==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/v-tooltip/-/v-tooltip-2.1.3.tgz", + "integrity": "sha512-xXngyxLQTOx/yUEy50thb8te7Qo4XU6h4LZB6cvEfVd9mnysUxLEoYwGWDdqR+l69liKsy3IPkdYff3J1gAJ5w==", "dependencies": { - "lodash": "^4.17.15", - "popper.js": "^1.16.0", - "vue-resize": "^0.4.5" + "@babel/runtime": "^7.13.10", + "lodash": "^4.17.21", + "popper.js": "^1.16.1", + "vue-resize": "^1.0.1" } }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", @@ -13207,41 +12246,46 @@ "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "dev": true - }, - "node_modules/vendors": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", - "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", - "dev": true + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } }, "node_modules/verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "dev": true, + "engines": [ + "node >=0.6.0" + ], "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" } }, - "node_modules/vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", - "dev": true - }, "node_modules/vue": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.12.tgz", - "integrity": "sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg==" + "version": "2.7.14", + "resolved": "https://registry.npmjs.org/vue/-/vue-2.7.14.tgz", + "integrity": "sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==", + "dependencies": { + "@vue/compiler-sfc": "2.7.14", + "csstype": "^3.1.0" + } }, "node_modules/vue-autosuggest": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/vue-autosuggest/-/vue-autosuggest-2.2.0.tgz", - "integrity": "sha512-cHgEakpoRUOaqXXEo8RcRrbSTM3eAaCu9b55ZXiKbaS6IUD8ewqffQrMy/A1DXqHSQbyEEGui4oAsCbRge29Jg==" + "integrity": "sha512-cHgEakpoRUOaqXXEo8RcRrbSTM3eAaCu9b55ZXiKbaS6IUD8ewqffQrMy/A1DXqHSQbyEEGui4oAsCbRge29Jg==", + "engines": { + "node": "> 4", + "npm": "> 3" + }, + "peerDependencies": { + "vue": ">= 2.5.0" + } }, "node_modules/vue-chartjs": { "version": "3.5.1", @@ -13249,12 +12293,19 @@ "integrity": "sha512-foocQbJ7FtveICxb4EV5QuVpo6d8CmZFmAopBppDIGKY+esJV8IJgwmEW0RexQhxqXaL/E1xNURsgFFYyKzS/g==", "dependencies": { "@types/chart.js": "^2.7.55" + }, + "engines": { + "node": ">=6.9.0", + "npm": ">= 3.0.0" + }, + "peerDependencies": { + "chart.js": ">= 2.5" } }, "node_modules/vue-color": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/vue-color/-/vue-color-2.7.1.tgz", - "integrity": "sha512-u3yl46B2eEej9zfAOIRRSphX1QfeNQzMwO82EIA+aoi0AKX3o1KcfsmMzm4BFkkj2ukCxLVfQ41k7g1gSI7SlA==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/vue-color/-/vue-color-2.8.1.tgz", + "integrity": "sha512-BoLCEHisXi2QgwlhZBg9UepvzZZmi4176vbr+31Shen5WWZwSLVgdScEPcB+yrAtuHAz42309C0A4+WiL9lNBw==", "dependencies": { "clamp": "^1.0.1", "lodash.throttle": "^4.0.0", @@ -13262,6 +12313,93 @@ "tinycolor2": "^1.1.2" } }, + "node_modules/vue-eslint-parser": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz", + "integrity": "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==", + "dev": true, + "dependencies": { + "debug": "^4.3.2", + "eslint-scope": "^7.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.0.0", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/vue-eslint-parser/node_modules/eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/vue-eslint-parser/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/vue-eslint-parser/node_modules/espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/vue-eslint-parser/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/vue-eslint-parser/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/vue-hot-reload-api": { "version": "2.3.4", "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", @@ -13271,28 +12409,16 @@ "node_modules/vue-js-modal": { "version": "1.3.35", "resolved": "https://registry.npmjs.org/vue-js-modal/-/vue-js-modal-1.3.35.tgz", - "integrity": "sha512-DKtxUCW/oprM/ndn9h/cnVgsmqjQ/ARy5rH4q/11Pas04og2td+sltl91H/rlwXTwJIqWyt+lJizK5o4ErjWIQ==" - }, - "node_modules/vue-loader": { - "version": "15.9.5", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.9.5.tgz", - "integrity": "sha512-oeMOs2b5o5gRqkxfds10bCx6JeXYTwivRgbb8hzOrcThD2z1+GqEKE3EX9A2SGbsYDf4rXwRg6D5n1w0jO5SwA==", - "dev": true, - "dependencies": { - "@vue/component-compiler-utils": "^3.1.0", - "hash-sum": "^1.0.2", - "loader-utils": "^1.1.0", - "vue-hot-reload-api": "^2.3.0", - "vue-style-loader": "^4.1.0" + "integrity": "sha512-DKtxUCW/oprM/ndn9h/cnVgsmqjQ/ARy5rH4q/11Pas04og2td+sltl91H/rlwXTwJIqWyt+lJizK5o4ErjWIQ==", + "peerDependencies": { + "vue": "^2.2.6" } }, - "node_modules/vue-loader-v16": { - "name": "vue-loader", - "version": "16.8.3", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.8.3.tgz", - "integrity": "sha512-7vKN45IxsKxe5GcVCbc2qFU5aWzyiLrYJyUuMz4BQLKctCj/fmCa0w6fGiiQ2cLFetNcek1ppGJQDCup0c1hpA==", + "node_modules/vue-loader": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-17.0.1.tgz", + "integrity": "sha512-/OOyugJnImKCkAKrAvdsWMuwoCqGxWT5USLsjohzWbMgOwpA5wQmzQiLMzZd7DjhIfunzAGIApTOgIylz/kwcg==", "dev": true, - "optional": true, "dependencies": { "chalk": "^4.1.0", "hash-sum": "^2.0.0", @@ -13300,14 +12426,21 @@ }, "peerDependencies": { "webpack": "^4.1.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "@vue/compiler-sfc": { + "optional": true + }, + "vue": { + "optional": true + } } }, - "node_modules/vue-loader-v16/node_modules/ansi-styles": { + "node_modules/vue-loader/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "optional": true, "dependencies": { "color-convert": "^2.0.1" }, @@ -13318,12 +12451,11 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/vue-loader-v16/node_modules/chalk": { + "node_modules/vue-loader/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "optional": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -13335,12 +12467,11 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/vue-loader-v16/node_modules/color-convert": { + "node_modules/vue-loader/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "optional": true, "dependencies": { "color-name": "~1.1.4" }, @@ -13348,39 +12479,20 @@ "node": ">=7.0.0" } }, - "node_modules/vue-loader-v16/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "optional": true - }, - "node_modules/vue-loader-v16/node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true, - "optional": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/vue-loader-v16/node_modules/has-flag": { + "node_modules/vue-loader/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "optional": true, "engines": { "node": ">=8" } }, - "node_modules/vue-loader-v16/node_modules/loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "node_modules/vue-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, - "optional": true, "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", @@ -13390,12 +12502,11 @@ "node": ">=8.9.0" } }, - "node_modules/vue-loader-v16/node_modules/supports-color": { + "node_modules/vue-loader/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "optional": true, "dependencies": { "has-flag": "^4.0.0" }, @@ -13403,16 +12514,16 @@ "node": ">=8" } }, - "node_modules/vue-loader/node_modules/hash-sum": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", - "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", - "dev": true - }, "node_modules/vue-resize": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-0.4.5.tgz", - "integrity": "sha512-bhP7MlgJQ8TIkZJXAfDf78uJO+mEI3CaLABLjv0WNzr4CcGRGPIAItyWYnP6LsPA4Oq0WE+suidNs6dgpO4RHg==" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-1.0.1.tgz", + "integrity": "sha512-z5M7lJs0QluJnaoMFTIeGx6dIkYxOwHThlZDeQnWZBizKblb99GSejPnK37ZbNE/rVwDcYcHY+Io+AxdpY952w==", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "vue": "^2.6.0" + } }, "node_modules/vue-scrollto": { "version": "2.20.0", @@ -13423,9 +12534,9 @@ } }, "node_modules/vue-style-loader": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.2.tgz", - "integrity": "sha512-0ip8ge6Gzz/Bk0iHovU9XAUQaFt/G2B61bnWa2tCcqqdgfHs1lF9xXorFbE55Gmy92okFT+8bfmySuUOu13vxQ==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", "dev": true, "dependencies": { "hash-sum": "^1.0.2", @@ -13435,17 +12546,17 @@ "node_modules/vue-style-loader/node_modules/hash-sum": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", - "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", "dev": true }, "node_modules/vue-template-compiler": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz", - "integrity": "sha512-OzzZ52zS41YUbkCBfdXShQTe69j1gQDZ9HIX8miuC9C3rBCk9wIRjLiZZLrmX9V+Ftq/YEyv1JaVr5Y/hNtByg==", + "version": "2.7.14", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz", + "integrity": "sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==", "dev": true, "dependencies": { "de-indent": "^1.0.2", - "he": "^1.1.0" + "he": "^1.2.0" } }, "node_modules/vue-template-es2015-compiler": { @@ -13471,126 +12582,16 @@ } }, "node_modules/watchpack": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", - "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0" + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" }, - "optionalDependencies": { - "chokidar": "^3.4.1", - "watchpack-chokidar2": "^2.0.1" - } - }, - "node_modules/watchpack-chokidar2": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", - "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", - "dev": true, - "optional": true, - "dependencies": { - "chokidar": "^2.1.8" - } - }, - "node_modules/watchpack-chokidar2/node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "optional": true, - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "optional": true, - "dependencies": { - "remove-trailing-separator": "^1.0.1" - } - }, - "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true, - "optional": true - }, - "node_modules/watchpack-chokidar2/node_modules/chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "optional": true, - "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "node_modules/watchpack-chokidar2/node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true - }, - "node_modules/watchpack-chokidar2/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "optional": true, - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "optional": true, - "dependencies": { - "is-extglob": "^2.1.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dev": true, - "optional": true, - "dependencies": { - "binary-extensions": "^1.0.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "optional": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" + "engines": { + "node": ">=10.13.0" } }, "node_modules/wbuf": { @@ -13611,488 +12612,532 @@ "defaults": "^1.0.3" } }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, "node_modules/webpack": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", - "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", - "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/wasm-edit": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "acorn": "^6.4.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", + "version": "5.76.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.76.1.tgz", + "integrity": "sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.3.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.3", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.7.4", - "webpack-sources": "^1.4.1" + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } } }, "node_modules/webpack-bundle-analyzer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz", - "integrity": "sha512-Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA==", - "dev": true, - "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1", - "bfj": "^6.1.1", - "chalk": "^2.4.1", - "commander": "^2.18.0", - "ejs": "^2.6.1", - "express": "^4.16.3", - "filesize": "^3.6.1", - "gzip-size": "^5.0.0", - "lodash": "^4.17.19", - "mkdirp": "^0.5.1", - "opener": "^1.5.1", - "ws": "^6.0.0" - } - }, - "node_modules/webpack-bundle-analyzer/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, - "node_modules/webpack-chain": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/webpack-chain/-/webpack-chain-6.5.1.tgz", - "integrity": "sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==", - "dev": true, - "dependencies": { - "deepmerge": "^1.5.2", - "javascript-stringify": "^2.0.1" - } - }, - "node_modules/webpack-dev-middleware": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz", - "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==", - "dev": true, - "dependencies": { - "memory-fs": "^0.4.1", - "mime": "^2.4.4", - "mkdirp": "^0.5.1", - "range-parser": "^1.2.1", - "webpack-log": "^2.0.0" - } - }, - "node_modules/webpack-dev-server": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz", - "integrity": "sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.7.0.tgz", + "integrity": "sha512-j9b8ynpJS4K+zfO5GGwsAcQX4ZHpWV+yRiHDiL+bE0XHJ8NiPYLTNVQdlFYWxtpg9lfAQNlwJg16J9AJtFSXRg==", "dev": true, "dependencies": { - "ansi-html": "0.0.7", - "bonjour": "^3.5.0", - "chokidar": "^2.1.8", - "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "debug": "^4.1.1", - "del": "^4.1.1", - "express": "^4.17.1", - "html-entities": "^1.3.1", - "http-proxy-middleware": "0.19.1", - "import-local": "^2.0.0", - "internal-ip": "^4.3.0", - "ip": "^1.1.5", - "is-absolute-url": "^3.0.3", - "killable": "^1.0.1", - "loglevel": "^1.6.8", - "opn": "^5.5.0", - "p-retry": "^3.0.1", - "portfinder": "^1.0.26", - "schema-utils": "^1.0.0", - "selfsigned": "^1.10.7", - "semver": "^6.3.0", - "serve-index": "^1.9.1", - "sockjs": "0.3.20", - "sockjs-client": "1.4.0", - "spdy": "^4.0.2", - "strip-ansi": "^3.0.1", - "supports-color": "^6.1.0", - "url": "^0.11.0", - "webpack-dev-middleware": "^3.7.2", - "webpack-log": "^2.0.0", - "ws": "^6.2.1", - "yargs": "^13.3.2" + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "opener": "^1.5.2", + "sirv": "^1.0.7", + "ws": "^7.3.1" + }, + "bin": { + "webpack-bundle-analyzer": "lib/bin/analyzer.js" + }, + "engines": { + "node": ">= 10.13.0" } }, - "node_modules/webpack-dev-server/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "node_modules/webpack-dev-server/node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "node_modules/webpack-bundle-analyzer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/webpack-dev-server/node_modules/anymatch/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "node_modules/webpack-bundle-analyzer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "remove-trailing-separator": "^1.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/webpack-dev-server/node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true - }, - "node_modules/webpack-dev-server/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "node_modules/webpack-dev-server/node_modules/chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "node_modules/webpack-bundle-analyzer/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" + "color-name": "~1.1.4" }, - "optionalDependencies": { - "fsevents": "^1.2.7" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/webpack-dev-server/node_modules/cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "node_modules/webpack-bundle-analyzer/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true, - "dependencies": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" + "engines": { + "node": ">= 10" } }, - "node_modules/webpack-dev-server/node_modules/cliui/node_modules/ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "node_modules/webpack-dev-server/node_modules/cliui/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/webpack-bundle-analyzer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "ansi-regex": "^4.1.0" + "engines": { + "node": ">=8" } }, - "node_modules/webpack-dev-server/node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true - }, - "node_modules/webpack-dev-server/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "node_modules/webpack-bundle-analyzer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/webpack-dev-server/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "node_modules/webpack-chain": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/webpack-chain/-/webpack-chain-6.5.1.tgz", + "integrity": "sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==", "dev": true, "dependencies": { - "is-extglob": "^2.1.0" + "deepmerge": "^1.5.2", + "javascript-stringify": "^2.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/webpack-dev-server/node_modules/is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", - "dev": true - }, - "node_modules/webpack-dev-server/node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", "dev": true, "dependencies": { - "binary-extensions": "^1.0.0" + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/webpack-dev-server/node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/webpack-dev-server/node_modules/schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "dependencies": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/webpack-dev-server/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/webpack-dev-middleware/node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", "dev": true }, - "node_modules/webpack-dev-server/node_modules/string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "node_modules/webpack-dev-server/node_modules/string-width/node_modules/ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "node_modules/webpack-dev-server/node_modules/string-width/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "dependencies": { - "ansi-regex": "^4.1.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/webpack-dev-server/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" + "node_modules/webpack-dev-server": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz", + "integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==", + "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } } }, - "node_modules/webpack-dev-server/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/webpack-dev-server/node_modules/wrap-ansi": { + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "node_modules/webpack-dev-server/node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", "dev": true }, - "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "dependencies": { - "ansi-regex": "^4.1.0" - } - }, - "node_modules/webpack-dev-server/node_modules/yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "dev": true, - "dependencies": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, - "node_modules/webpack-dev-server/node_modules/yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "dev": true, - "dependencies": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, "node_modules/webpack-merge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", - "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", "dev": true, "dependencies": { - "lodash": "^4.17.15" + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" } }, "node_modules/webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true, - "dependencies": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" + "engines": { + "node": ">=10.13.0" } }, - "node_modules/webpack-sources/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/webpack-virtual-modules": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz", + "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==", + "dev": true + }, + "node_modules/webpack/node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", "dev": true }, "node_modules/webpack/node_modules/schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, "dependencies": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/websocket-driver": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz", - "integrity": "sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=", + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" } }, "node_modules/websocket-extensions": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", "dev": true }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true + "node_modules/which-pm-runs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", + "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "node_modules/wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", "dev": true }, - "node_modules/worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true, - "dependencies": { - "errno": "~0.1.7" + "engines": { + "node": ">=0.10.0" } }, "node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -14100,6 +13145,12 @@ "dev": true, "dependencies": { "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/wrap-ansi/node_modules/color-convert": { @@ -14109,212 +13160,137 @@ "dev": true, "dependencies": { "color-name": "~1.1.4" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, "node_modules/ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", "dev": true, - "dependencies": { - "async-limiter": "~1.0.0" + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true - }, "node_modules/y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", - "dev": true - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - } - }, - "node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - }, - "node_modules/yargs-parser/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "node_modules/yargs/node_modules/ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "node_modules/yargs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/yargs/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/yargs/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/yargs/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - } - }, - "node_modules/yargs/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true, - "dependencies": { - "p-limit": "^2.2.0" + "engines": { + "node": ">= 6" } }, - "node_modules/yargs/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "node_modules/yargs/node_modules/string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" } }, - "node_modules/yargs/node_modules/strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, - "dependencies": { - "ansi-regex": "^5.0.0" + "engines": { + "node": ">=10" } }, "node_modules/yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "dev": true, "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/yorkie": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/yorkie/-/yorkie-2.0.0.tgz", "integrity": "sha512-jcKpkthap6x63MB4TxwCyuIGkV0oYP/YRyuQU5UO0Yz/E/ZAu+653/uov+phdmO54n6BcvFRyyt0RRrWdN2mpw==", "dev": true, + "hasInstallScript": true, "dependencies": { "execa": "^0.8.0", "is-ci": "^1.0.10", "normalize-path": "^1.0.0", "strip-indent": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, + "node_modules/yorkie/node_modules/ci-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", + "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "dev": true + }, "node_modules/yorkie/node_modules/cross-spawn": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, "dependencies": { "lru-cache": "^4.0.1", @@ -14325,7 +13301,7 @@ "node_modules/yorkie/node_modules/execa": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz", - "integrity": "sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=", + "integrity": "sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==", "dev": true, "dependencies": { "cross-spawn": "^5.0.1", @@ -14335,13 +13311,31 @@ "p-finally": "^1.0.0", "signal-exit": "^3.0.0", "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, "node_modules/yorkie/node_modules/get-stream": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "dev": true + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yorkie/node_modules/is-ci": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", + "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "dev": true, + "dependencies": { + "ci-info": "^1.5.0" + }, + "bin": { + "is-ci": "bin.js" + } }, "node_modules/yorkie/node_modules/lru-cache": { "version": "4.1.5", @@ -14356,41 +13350,57 @@ "node_modules/yorkie/node_modules/normalize-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-1.0.0.tgz", - "integrity": "sha1-MtDkcvkf80VwHBWoMRAY07CpA3k=", - "dev": true + "integrity": "sha512-7WyT0w8jhpDStXRq5836AMmihQwq2nrUVQrgjvUo/p/NZf9uy/MeJ246lBJVmWuYXMlJuG9BNZHF0hWjfTbQUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/yorkie/node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true + "node_modules/yorkie/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yorkie/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/yup": { - "version": "0.27.0", - "resolved": "https://registry.npmjs.org/yup/-/yup-0.27.0.tgz", - "integrity": "sha512-v1yFnE4+u9za42gG/b/081E7uNW9mUj3qtkmelLbW5YPROZzSH/KUUyJu9Wt8vxFJcT9otL/eZopS0YK1L5yPQ==", + "node_modules/yorkie/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "dependencies": { - "@babel/runtime": "^7.0.0", - "fn-name": "~2.0.1", - "lodash": "^4.17.11", - "property-expr": "^1.5.0", - "synchronous-promise": "^2.0.6", - "toposort": "^2.0.2" + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" } }, - "node_modules/yup/node_modules/toposort": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", - "integrity": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=", + "node_modules/yorkie/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", "dev": true } }, "dependencies": { "@achrinza/node-ipc": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@achrinza/node-ipc/-/node-ipc-9.2.2.tgz", - "integrity": "sha512-b90U39dx0cU6emsOvy5hxU4ApNXnE3+Tuo8XQZfiKTGelDwpMwBVgBP7QX6dGTcJgu/miyJuNJ/2naFBliNWEw==", + "version": "9.2.6", + "resolved": "https://registry.npmjs.org/@achrinza/node-ipc/-/node-ipc-9.2.6.tgz", + "integrity": "sha512-ULSIYPy4ZPM301dfCxRz0l2GJjOwIo/PqmWonIu1bLml7UmnVQmH+juJcoyXp6E8gIRRNAjGYftJnNQlfy4vPg==", "dev": true, "requires": { "@node-ipc/js-queue": "2.0.3", @@ -14418,49 +13428,52 @@ } }, "@babel/compat-data": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.1.tgz", - "integrity": "sha512-72a9ghR0gnESIa7jBN53U32FOVCEoztyIlKaNoU05zRhEecduGK9L9c3ww7Mp06JiR+0ls0GBPFJQwwtjn9ksg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.5.tgz", + "integrity": "sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==", "dev": true }, "@babel/core": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.1.tgz", - "integrity": "sha512-1H8VgqXme4UXCRv7/Wa1bq7RVymKOzC7znjyFM8KiEzwFqcKUKYNoQef4GhdklgNvoBXyW4gYhuBNCM5o1zImw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.5.tgz", + "integrity": "sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==", "dev": true, "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.19.0", - "@babel/helper-compilation-targets": "^7.19.1", - "@babel/helper-module-transforms": "^7.19.0", - "@babel/helpers": "^7.19.0", - "@babel/parser": "^7.19.1", + "@babel/generator": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-module-transforms": "^7.20.2", + "@babel/helpers": "^7.20.5", + "@babel/parser": "^7.20.5", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.1", "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + } + }, + "@babel/eslint-parser": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz", + "integrity": "sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==", + "dev": true, + "requires": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" } }, "@babel/generator": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.0.tgz", - "integrity": "sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.5.tgz", + "integrity": "sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==", "dev": true, "requires": { - "@babel/types": "^7.19.0", + "@babel/types": "^7.20.5", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -14498,29 +13511,21 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.1.tgz", - "integrity": "sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", "dev": true, "requires": { - "@babel/compat-data": "^7.19.1", + "@babel/compat-data": "^7.20.0", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.21.3", "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } } }, "@babel/helper-create-class-features-plugin": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz", - "integrity": "sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.5.tgz", + "integrity": "sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -14528,18 +13533,18 @@ "@babel/helper-function-name": "^7.19.0", "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6" } }, "@babel/helper-create-regexp-features-plugin": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", - "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", + "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.1.0" + "regexpu-core": "^5.2.1" } }, "@babel/helper-define-polyfill-provider": { @@ -14554,14 +13559,6 @@ "lodash.debounce": "^4.0.8", "resolve": "^1.14.2", "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } } }, "@babel/helper-environment-visitor": { @@ -14617,19 +13614,19 @@ } }, "@babel/helper-module-transforms": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz", - "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2" } }, "@babel/helper-optimise-call-expression": { @@ -14642,9 +13639,9 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", - "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", "dev": true }, "@babel/helper-remap-async-to-generator": { @@ -14673,21 +13670,21 @@ } }, "@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "dev": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.20.2" } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", - "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", "dev": true, "requires": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.0" } }, "@babel/helper-split-export-declaration": { @@ -14700,9 +13697,9 @@ } }, "@babel/helper-string-parser": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", - "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", "dev": true }, "@babel/helper-validator-identifier": { @@ -14718,26 +13715,26 @@ "dev": true }, "@babel/helper-wrap-function": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", - "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", "dev": true, "requires": { "@babel/helper-function-name": "^7.19.0", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" } }, "@babel/helpers": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz", - "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==", + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.6.tgz", + "integrity": "sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==", "dev": true, "requires": { "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" } }, "@babel/highlight": { @@ -14752,10 +13749,9 @@ } }, "@babel/parser": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.1.tgz", - "integrity": "sha512-h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A==", - "dev": true + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.5.tgz", + "integrity": "sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -14778,9 +13774,9 @@ } }, "@babel/plugin-proposal-async-generator-functions": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz", - "integrity": "sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz", + "integrity": "sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.18.9", @@ -14811,13 +13807,13 @@ } }, "@babel/plugin-proposal-decorators": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.19.1.tgz", - "integrity": "sha512-LfIKNBBY7Q1OX5C4xAgRQffOg2OnhAo9fnbcOHgOC9Yytm2Sw+4XqHufRYU86tHomzepxtvuVaNO+3EVKR4ivw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.5.tgz", + "integrity": "sha512-Lac7PpRJXcC3s9cKsBfl+uc+DYXU5FD06BrTFunQO6QIQT+DwyzDPURAowI3bcvD1dZF/ank1Z5rstUJn3Hn4Q==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/plugin-syntax-decorators": "^7.19.0" @@ -14884,16 +13880,16 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", - "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz", + "integrity": "sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==", "dev": true, "requires": { - "@babel/compat-data": "^7.18.8", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9", + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.8" + "@babel/plugin-transform-parameters": "^7.20.1" } }, "@babel/plugin-proposal-optional-catch-binding": { @@ -14928,14 +13924,14 @@ } }, "@babel/plugin-proposal-private-property-in-object": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", - "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", + "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" } }, @@ -15004,12 +14000,12 @@ } }, "@babel/plugin-syntax-import-assertions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", - "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.19.0" } }, "@babel/plugin-syntax-json-strings": { @@ -15132,27 +14128,27 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", - "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.5.tgz", + "integrity": "sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-classes": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz", - "integrity": "sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz", + "integrity": "sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.19.0", + "@babel/helper-compilation-targets": "^7.20.0", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" } @@ -15167,12 +14163,12 @@ } }, "@babel/plugin-transform-destructuring": { - "version": "7.18.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz", - "integrity": "sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz", + "integrity": "sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-dotall-regex": { @@ -15243,39 +14239,36 @@ } }, "@babel/plugin-transform-modules-amd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", - "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz", + "integrity": "sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", - "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz", + "integrity": "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-simple-access": "^7.19.4" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz", - "integrity": "sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz", + "integrity": "sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==", "dev": true, "requires": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.19.0", + "@babel/helper-module-transforms": "^7.19.6", "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-validator-identifier": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-validator-identifier": "^7.19.1" } }, "@babel/plugin-transform-modules-umd": { @@ -15289,13 +14282,13 @@ } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", - "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", + "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-create-regexp-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-new-target": { @@ -15318,12 +14311,12 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", - "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.5.tgz", + "integrity": "sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-property-literals": { @@ -15336,13 +14329,13 @@ } }, "@babel/plugin-transform-regenerator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", - "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", + "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "regenerator-transform": "^0.15.0" + "@babel/helper-plugin-utils": "^7.20.2", + "regenerator-transform": "^0.15.1" } }, "@babel/plugin-transform-reserved-words": { @@ -15355,9 +14348,9 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.1.tgz", - "integrity": "sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz", + "integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==", "dev": true, "requires": { "@babel/helper-module-imports": "^7.18.6", @@ -15366,14 +14359,6 @@ "babel-plugin-polyfill-corejs3": "^0.6.0", "babel-plugin-polyfill-regenerator": "^0.4.1", "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } } }, "@babel/plugin-transform-shorthand-properties": { @@ -15442,18 +14427,18 @@ } }, "@babel/preset-env": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.1.tgz", - "integrity": "sha512-c8B2c6D16Lp+Nt6HcD+nHl0VbPKVnNPTpszahuxJJnurfMtKeZ80A+qUv48Y7wqvS+dTFuLuaM9oYxyNHbCLWA==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", + "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", "dev": true, "requires": { - "@babel/compat-data": "^7.19.1", - "@babel/helper-compilation-targets": "^7.19.1", - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-validator-option": "^7.18.6", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-async-generator-functions": "^7.19.1", + "@babel/plugin-proposal-async-generator-functions": "^7.20.1", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-class-static-block": "^7.18.6", "@babel/plugin-proposal-dynamic-import": "^7.18.6", @@ -15462,7 +14447,7 @@ "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.9", + "@babel/plugin-proposal-object-rest-spread": "^7.20.2", "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", "@babel/plugin-proposal-optional-chaining": "^7.18.9", "@babel/plugin-proposal-private-methods": "^7.18.6", @@ -15473,7 +14458,7 @@ "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.18.6", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -15486,10 +14471,10 @@ "@babel/plugin-transform-arrow-functions": "^7.18.6", "@babel/plugin-transform-async-to-generator": "^7.18.6", "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.9", - "@babel/plugin-transform-classes": "^7.19.0", + "@babel/plugin-transform-block-scoping": "^7.20.2", + "@babel/plugin-transform-classes": "^7.20.2", "@babel/plugin-transform-computed-properties": "^7.18.9", - "@babel/plugin-transform-destructuring": "^7.18.13", + "@babel/plugin-transform-destructuring": "^7.20.2", "@babel/plugin-transform-dotall-regex": "^7.18.6", "@babel/plugin-transform-duplicate-keys": "^7.18.9", "@babel/plugin-transform-exponentiation-operator": "^7.18.6", @@ -15497,14 +14482,14 @@ "@babel/plugin-transform-function-name": "^7.18.9", "@babel/plugin-transform-literals": "^7.18.9", "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.18.6", - "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.19.0", + "@babel/plugin-transform-modules-amd": "^7.19.6", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.6", "@babel/plugin-transform-modules-umd": "^7.18.6", "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", "@babel/plugin-transform-new-target": "^7.18.6", "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.8", + "@babel/plugin-transform-parameters": "^7.20.1", "@babel/plugin-transform-property-literals": "^7.18.6", "@babel/plugin-transform-regenerator": "^7.18.6", "@babel/plugin-transform-reserved-words": "^7.18.6", @@ -15516,20 +14501,12 @@ "@babel/plugin-transform-unicode-escapes": "^7.18.10", "@babel/plugin-transform-unicode-regex": "^7.18.6", "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.19.0", + "@babel/types": "^7.20.2", "babel-plugin-polyfill-corejs2": "^0.3.3", "babel-plugin-polyfill-corejs3": "^0.6.0", "babel-plugin-polyfill-regenerator": "^0.4.1", "core-js-compat": "^3.25.1", "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } } }, "@babel/preset-modules": { @@ -15546,12 +14523,11 @@ } }, "@babel/runtime": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", - "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", - "dev": true, + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.6.tgz", + "integrity": "sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==", "requires": { - "regenerator-runtime": "^0.13.4" + "regenerator-runtime": "^0.13.11" } }, "@babel/template": { @@ -15566,31 +14542,31 @@ } }, "@babel/traverse": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.1.tgz", - "integrity": "sha512-0j/ZfZMxKukDaag2PtOPDbwuELqIar6lLskVPPJDjXMXjfLb1Obo/1yjxIGqqAJrmfaTIY3z2wFLAQ7qSkLsuA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.5.tgz", + "integrity": "sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==", "dev": true, "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.19.0", + "@babel/generator": "^7.20.5", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.19.1", - "@babel/types": "^7.19.0", + "@babel/parser": "^7.20.5", + "@babel/types": "^7.20.5", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.0.tgz", - "integrity": "sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.5.tgz", + "integrity": "sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==", "dev": true, "requires": { - "@babel/helper-string-parser": "^7.18.10", - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" } }, @@ -15601,99 +14577,10 @@ "dev": true, "optional": true }, - "@cypress/listr-verbose-renderer": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz", - "integrity": "sha1-p3SS9LEdzHxEajSz4ochr9M8ZCo=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "cli-cursor": "^1.0.2", - "date-fns": "^1.27.2", - "figures": "^1.7.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "cli-cursor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", - "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", - "dev": true, - "requires": { - "restore-cursor": "^1.0.1" - } - }, - "figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.1.0" - } - }, - "onetime": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", - "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=", - "dev": true - }, - "restore-cursor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", - "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", - "dev": true, - "requires": { - "exit-hook": "^1.0.0", - "onetime": "^1.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, "@cypress/request": { - "version": "2.88.5", - "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.5.tgz", - "integrity": "sha512-TzEC1XMi1hJkywWpRfD2clreTa/Z+lOrXDCxxBTBPEcY5azdPi56A6Xw+O4tWJnaJH3iIE7G5aDXZC6JgRZLcA==", + "version": "2.88.11", + "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", + "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", "dev": true, "requires": { "aws-sign2": "~0.7.0", @@ -15703,19 +14590,17 @@ "extend": "~3.0.2", "forever-agent": "~0.6.1", "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", + "http-signature": "~1.3.6", "is-typedarray": "~1.0.0", "isstream": "~0.1.2", "json-stringify-safe": "~5.0.1", "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", "performance-now": "^2.1.0", - "qs": "~6.5.2", + "qs": "~6.10.3", "safe-buffer": "^5.1.2", "tough-cookie": "~2.5.0", "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" + "uuid": "^8.3.2" } }, "@cypress/xvfb": { @@ -15739,62 +14624,72 @@ } } }, - "@foreachbe/cypress-tinymce": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@foreachbe/cypress-tinymce/-/cypress-tinymce-1.0.0.tgz", - "integrity": "sha512-/uiJBAPtSp1gYdSd6SAOZ91EGk23458eL93R5tQFwsgmARy3KSHFzQQuJwCH1RFwLWZ/M2wc9a9knRA7httlKA==", - "dev": true - }, - "@hapi/address": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", - "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==", - "dev": true - }, - "@hapi/bourne": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", - "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==", - "dev": true - }, - "@hapi/hoek": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", - "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==", - "dev": true - }, - "@hapi/joi": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", - "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", + "@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", "dev": true, "requires": { - "@hapi/address": "2.x.x", - "@hapi/bourne": "1.x.x", - "@hapi/hoek": "8.x.x", - "@hapi/topo": "3.x.x" + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } } }, + "@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, "@hapi/topo": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", - "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", "dev": true, "requires": { - "@hapi/hoek": "^8.3.0" + "@hapi/hoek": "^9.0.0" } }, - "@intervolga/optimize-cssnano-plugin": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@intervolga/optimize-cssnano-plugin/-/optimize-cssnano-plugin-1.0.6.tgz", - "integrity": "sha512-zN69TnSr0viRSU6cEDIcuPcP67QcpQ6uHACg58FiN9PDrU6SLyGW3MR4tiISbYxy1kDWAVPwD+XwQTWE5cigAA==", + "@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", "dev": true, "requires": { - "cssnano": "^4.0.0", - "cssnano-preset-default": "^4.0.0", - "postcss": "^7.0.0" + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" } }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, "@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -15817,6 +14712,29 @@ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "dev": true }, + "@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, "@jridgewell/sourcemap-codec": { "version": "1.4.14", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", @@ -15824,23 +14742,47 @@ "dev": true }, "@jridgewell/trace-mapping": { - "version": "0.3.15", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", - "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", "dev": true, "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, - "@mrmlnc/readdir-enhanced": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", - "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", "dev": true, "requires": { - "call-me-maybe": "^1.0.1", - "glob-to-regexp": "^0.3.0" + "eslint-scope": "5.1.1" + } + }, + "@node-ipc/js-queue": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@node-ipc/js-queue/-/js-queue-2.0.3.tgz", + "integrity": "sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==", + "dev": true, + "requires": { + "easy-stack": "1.0.1" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" } }, "@node-ipc/js-queue": { @@ -15853,70 +14795,102 @@ } }, "@nodelib/fs.stat": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", - "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true }, - "@samverschueren/stream-to-observable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz", - "integrity": "sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg==", + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { - "any-observable": "^0.3.0" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" } }, + "@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", + "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==", + "dev": true + }, + "@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "dev": true + }, + "@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, "@soda/friendly-errors-webpack-plugin": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.7.1.tgz", - "integrity": "sha512-cWKrGaFX+rfbMrAxVv56DzhPNqOJPZuNIS2HGMELtgGzb+vsMzyig9mml5gZ/hr2BGtSLV+dP2LUEuAL8aG2mQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.8.1.tgz", + "integrity": "sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==", "dev": true, "requires": { - "chalk": "^1.1.3", - "error-stack-parser": "^2.0.0", - "string-width": "^2.0.0" + "chalk": "^3.0.0", + "error-stack-parser": "^2.0.6", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } }, "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "ansi-regex": "^2.0.0" + "color-name": "~1.1.4" } }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, @@ -15927,72 +14901,105 @@ "dev": true }, "@tinymce/tinymce-vue": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tinymce/tinymce-vue/-/tinymce-vue-1.1.2.tgz", - "integrity": "sha512-nknWxb5gQv8lYXtJ7S/T8f/S15iUVcIKZfBWPRtvihv7GVrPZu3lDeNfvpdgR5VHG8YZakdhVhg/zvaT5XzPNQ==", - "requires": { - "vue": "^2.5.17" - } + "version": "3.2.8", + "resolved": "https://registry.npmjs.org/@tinymce/tinymce-vue/-/tinymce-vue-3.2.8.tgz", + "integrity": "sha512-jEz+NZ0g+FZFz273OEUWz9QkwPMyjc5AJYyxOgu51O1Y5UaJ/6IUddXTX6A20mwCleEv5ebwNYdalviafx4fnA==", + "requires": {} }, - "@types/anymatch": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", - "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==", + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", "dev": true }, "@types/body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==", + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, "requires": { "@types/connect": "*", "@types/node": "*" } }, + "@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, "@types/chart.js": { - "version": "2.9.28", - "resolved": "https://registry.npmjs.org/@types/chart.js/-/chart.js-2.9.28.tgz", - "integrity": "sha512-9YYhsxRngRJb0dkuaU5BezkF+zvvVHnwdRw+rtlahtFb4zqNf9YSgWsOq+dLYeh0fqsWmHUYLR64eNigh02F+w==", + "version": "2.9.37", + "resolved": "https://registry.npmjs.org/@types/chart.js/-/chart.js-2.9.37.tgz", + "integrity": "sha512-9bosRfHhkXxKYfrw94EmyDQcdjMaQPkU1fH2tDxu8DWXxf1mjzWQAV4laJF51ZbC2ycYwNDvIm1rGez8Bug0vg==", "requires": { "moment": "^2.10.2" } }, "@types/connect": { - "version": "3.4.33", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.33.tgz", - "integrity": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==", + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, "requires": { "@types/node": "*" } }, "@types/connect-history-api-fallback": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.3.tgz", - "integrity": "sha512-7SxFCd+FLlxCfwVwbyPxbR4khL9aNikJhrorw8nUIOqeuooc9gifBuDQOJw5kzN7i6i3vLn9G8Wde/4QDihpYw==", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", "dev": true, "requires": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, + "@types/eslint": { + "version": "8.4.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz", + "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==", + "dev": true + }, "@types/express": { - "version": "4.17.9", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.9.tgz", - "integrity": "sha512-SDzEIZInC4sivGIFY4Sz1GG6J9UObPwCInYJjko2jzOf/Imx/dlpume6Xxwj1ORL82tBbmN4cPDIDkLbWHk9hw==", + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.15.tgz", + "integrity": "sha512-Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ==", "dev": true, "requires": { "@types/body-parser": "*", - "@types/express-serve-static-core": "*", + "@types/express-serve-static-core": "^4.17.31", "@types/qs": "*", "@types/serve-static": "*" } }, "@types/express-serve-static-core": { - "version": "4.17.14", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.14.tgz", - "integrity": "sha512-uFTLwu94TfUFMToXNgRZikwPuZdOtDgs3syBtAIr/OXorL1kJqUJT9qCLnRZ5KBOWfZQikQ2xKgR2tnDj1OgDA==", + "version": "4.17.31", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz", + "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", "dev": true, "requires": { "@types/node": "*", @@ -16000,64 +15007,43 @@ "@types/range-parser": "*" } }, - "@types/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } + "@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true }, "@types/http-proxy": { - "version": "1.17.4", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.4.tgz", - "integrity": "sha512-IrSHl2u6AWXduUaDLqYpt45tLVCtYv7o4Z0s1KghBCDgIIS9oW5K1H8mZG/A2CfeLdEa7rTd1ACOiHBc1EMT2Q==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/http-proxy-middleware": { - "version": "0.19.3", - "resolved": "https://registry.npmjs.org/@types/http-proxy-middleware/-/http-proxy-middleware-0.19.3.tgz", - "integrity": "sha512-lnBTx6HCOUeIJMLbI/LaL5EmdKLhczJY5oeXZpX/cXE4rRqb3RmV7VcMpiEfYkmTjipv3h7IAyIINe4plEv7cA==", + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", "dev": true, "requires": { - "@types/connect": "*", - "@types/http-proxy": "*", "@types/node": "*" } }, "@types/json-schema": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", - "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==", + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "dev": true }, "@types/mime": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.3.tgz", - "integrity": "sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==", - "dev": true - }, - "@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", "dev": true }, "@types/minimist": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.1.tgz", - "integrity": "sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", "dev": true }, "@types/node": { - "version": "14.14.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz", - "integrity": "sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==", + "version": "14.18.35", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.35.tgz", + "integrity": "sha512-2ATO8pfhG1kDvw4Lc4C0GXIMSQFFJBCo/R1fSgTwmUlq5oy95LXyjDQinsRVgQY6gp6ghh3H91wk9ES5/5C+Tw==", "dev": true }, "@types/normalize-package-data": { @@ -16066,28 +15052,43 @@ "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", "dev": true }, - "@types/q": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", - "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", "dev": true }, "@types/qs": { - "version": "6.9.5", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz", - "integrity": "sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ==", + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", "dev": true }, "@types/range-parser": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", - "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", "dev": true }, + "@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dev": true, + "requires": { + "@types/express": "*" + } + }, "@types/serve-static": { - "version": "1.13.8", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.8.tgz", - "integrity": "sha512-MoJhSQreaVoL+/hurAZzIm8wafFR6ajiTM1m4A0kv6AGeVBl4r4pOV8bGFrjjq1sGxDTnCoF8i22o0/aE5XCyA==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", "dev": true, "requires": { "@types/mime": "*", @@ -16095,98 +15096,43 @@ } }, "@types/sinonjs__fake-timers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.2.tgz", - "integrity": "sha512-dIPoZ3g5gcx9zZEszaxLSVTvMReD3xxyyDnQUjA6IYDG9Ba2AV0otMPs+77sG9ojB4Qr2N2Vk5RnKeuA0X/0bg==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", + "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", "dev": true }, "@types/sizzle": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.2.tgz", - "integrity": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==", - "dev": true - }, - "@types/source-list-map": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", - "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", - "dev": true - }, - "@types/tapable": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", - "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", + "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", "dev": true }, - "@types/uglify-js": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.11.1.tgz", - "integrity": "sha512-7npvPKV+jINLu1SpSYVWG8KvyJBhBa8tmzMMdDoVc2pWUYHN8KIXlPJhjJ4LT97c4dXJA2SHL/q6ADbDriZN+Q==", - "dev": true, - "requires": { - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "@types/webpack": { - "version": "4.41.25", - "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.25.tgz", - "integrity": "sha512-cr6kZ+4m9lp86ytQc1jPOJXgINQyz3kLLunZ57jznW+WIAL0JqZbGubQk4GlD42MuQL5JGOABrxdpqqWeovlVQ==", + "@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", "dev": true, "requires": { - "@types/anymatch": "*", - "@types/node": "*", - "@types/tapable": "*", - "@types/uglify-js": "*", - "@types/webpack-sources": "*", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "@types/node": "*" } }, - "@types/webpack-dev-server": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz", - "integrity": "sha512-rIb+LtUkKnh7+oIJm3WiMJONd71Q0lZuqGLcSqhZ5qjN9gV/CNmZe7Bai+brnBPZ/KVYOsr+4bFLiNZwjBicLw==", + "@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "dev": true, "requires": { - "@types/connect-history-api-fallback": "*", - "@types/express": "*", - "@types/http-proxy-middleware": "*", - "@types/serve-static": "*", - "@types/webpack": "*" + "@types/node": "*" } }, - "@types/webpack-sources": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.0.0.tgz", - "integrity": "sha512-a5kPx98CNFRKQ+wqawroFunvFqv7GHm/3KOI52NY9xWADgc8smu4R6prt4EU/M4QfVjvgBkMqU4fBhw3QfMVkg==", + "@types/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", "dev": true, + "optional": true, "requires": { - "@types/node": "*", - "@types/source-list-map": "*", - "source-map": "^0.7.3" - }, - "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true - } + "@types/node": "*" } }, "@vue/babel-helper-vue-jsx-merge-props": { @@ -16241,34 +15187,37 @@ } }, "@vue/babel-preset-app": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.5.19.tgz", - "integrity": "sha512-VCNRiAt2P/bLo09rYt3DLe6xXUMlhJwrvU18Ddd/lYJgC7s8+wvhgYs+MTx4OiAXdu58drGwSBO9SPx7C6J82Q==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-5.0.8.tgz", + "integrity": "sha512-yl+5qhpjd8e1G4cMXfORkkBlvtPCIgmRf3IYCWYDKIQ7m+PPa5iTm4feiNmCMD6yGqQWMhhK/7M3oWGL9boKwg==", "dev": true, "requires": { - "@babel/core": "^7.11.0", - "@babel/helper-compilation-targets": "^7.9.6", - "@babel/helper-module-imports": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-proposal-decorators": "^7.8.3", + "@babel/core": "^7.12.16", + "@babel/helper-compilation-targets": "^7.12.16", + "@babel/helper-module-imports": "^7.12.13", + "@babel/plugin-proposal-class-properties": "^7.12.13", + "@babel/plugin-proposal-decorators": "^7.12.13", "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-jsx": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.11.0", - "@babel/preset-env": "^7.11.0", - "@babel/runtime": "^7.11.0", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/plugin-transform-runtime": "^7.12.15", + "@babel/preset-env": "^7.12.16", + "@babel/runtime": "^7.12.13", "@vue/babel-plugin-jsx": "^1.0.3", - "@vue/babel-preset-jsx": "^1.2.4", + "@vue/babel-preset-jsx": "^1.1.2", "babel-plugin-dynamic-import-node": "^2.3.3", - "core-js": "^3.6.5", - "core-js-compat": "^3.6.5", - "semver": "^6.1.0" + "core-js": "^3.8.3", + "core-js-compat": "^3.8.3", + "semver": "^7.3.4" }, "dependencies": { "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } } } }, @@ -16372,193 +15321,214 @@ } }, "@vue/cli-overlay": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-overlay/-/cli-overlay-4.5.19.tgz", - "integrity": "sha512-GdxvNSmOw7NHIazCO8gTK+xZbaOmScTtxj6eHVeMbYpDYVPJ+th3VMLWNpw/b6uOjwzzcyKlA5dRQ1DAb+gF/g==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-overlay/-/cli-overlay-5.0.8.tgz", + "integrity": "sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ==", "dev": true }, "@vue/cli-plugin-babel": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-4.5.19.tgz", - "integrity": "sha512-8ebXzaMW9KNTMAN6+DzkhFsjty1ieqT7hIW5Lbk4v30Qhfjkms7lBWyXPGkoq+wAikXFa1Gnam2xmWOBqDDvWg==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-5.0.8.tgz", + "integrity": "sha512-a4qqkml3FAJ3auqB2kN2EMPocb/iu0ykeELwed+9B1c1nQ1HKgslKMHMPavYx3Cd/QAx2mBD4hwKBqZXEI/CsQ==", "dev": true, "requires": { - "@babel/core": "^7.11.0", - "@vue/babel-preset-app": "^4.5.19", - "@vue/cli-shared-utils": "^4.5.19", - "babel-loader": "^8.1.0", - "cache-loader": "^4.1.0", - "thread-loader": "^2.1.3", - "webpack": "^4.0.0" + "@babel/core": "^7.12.16", + "@vue/babel-preset-app": "^5.0.8", + "@vue/cli-shared-utils": "^5.0.8", + "babel-loader": "^8.2.2", + "thread-loader": "^3.0.0", + "webpack": "^5.54.0" } }, "@vue/cli-plugin-eslint": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-eslint/-/cli-plugin-eslint-4.5.19.tgz", - "integrity": "sha512-53sa4Pu9j5KajesFlj494CcO8vVo3e3nnZ1CCKjGGnrF90id1rUeepcFfz5XjwfEtbJZp2x/NoX/EZE6zCzSFQ==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-eslint/-/cli-plugin-eslint-5.0.8.tgz", + "integrity": "sha512-d11+I5ONYaAPW1KyZj9GlrV/E6HZePq5L5eAF5GgoVdu6sxr6bDgEoxzhcS1Pk2eh8rn1MxG/FyyR+eCBj/CNg==", "dev": true, "requires": { - "@vue/cli-shared-utils": "^4.5.19", - "eslint-loader": "^2.2.1", - "globby": "^9.2.0", - "inquirer": "^7.1.0", - "webpack": "^4.0.0", + "@vue/cli-shared-utils": "^5.0.8", + "eslint-webpack-plugin": "^3.1.0", + "globby": "^11.0.2", + "webpack": "^5.54.0", "yorkie": "^2.0.0" } }, "@vue/cli-plugin-router": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-router/-/cli-plugin-router-4.5.19.tgz", - "integrity": "sha512-3icGzH1IbVYmMMsOwYa0lal/gtvZLebFXdE5hcQJo2mnTwngXGMTyYAzL56EgHBPjbMmRpyj6Iw9k4aVInVX6A==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-router/-/cli-plugin-router-5.0.8.tgz", + "integrity": "sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg==", "dev": true, "requires": { - "@vue/cli-shared-utils": "^4.5.19" + "@vue/cli-shared-utils": "^5.0.8" } }, "@vue/cli-plugin-vuex": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.5.19.tgz", - "integrity": "sha512-DUmfdkG3pCdkP7Iznd87RfE9Qm42mgp2hcrNcYQYSru1W1gX2dG/JcW8bxmeGSa06lsxi9LEIc/QD1yPajSCZw==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-5.0.8.tgz", + "integrity": "sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA==", "dev": true, "requires": {} }, "@vue/cli-service": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-service/-/cli-service-4.5.19.tgz", - "integrity": "sha512-+Wpvj8fMTCt9ZPOLu5YaLkFCQmB4MrZ26aRmhhKiCQ/4PMoL6mLezfqdt6c+m2htM+1WV5RunRo+0WHl2DfwZA==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-service/-/cli-service-5.0.8.tgz", + "integrity": "sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==", "dev": true, "requires": { - "@intervolga/optimize-cssnano-plugin": "^1.0.5", - "@soda/friendly-errors-webpack-plugin": "^1.7.1", - "@soda/get-current-script": "^1.0.0", + "@babel/helper-compilation-targets": "^7.12.16", + "@soda/friendly-errors-webpack-plugin": "^1.8.0", + "@soda/get-current-script": "^1.0.2", "@types/minimist": "^1.2.0", - "@types/webpack": "^4.0.0", - "@types/webpack-dev-server": "^3.11.0", - "@vue/cli-overlay": "^4.5.19", - "@vue/cli-plugin-router": "^4.5.19", - "@vue/cli-plugin-vuex": "^4.5.19", - "@vue/cli-shared-utils": "^4.5.19", - "@vue/component-compiler-utils": "^3.1.2", - "@vue/preload-webpack-plugin": "^1.1.0", - "@vue/web-component-wrapper": "^1.2.0", - "acorn": "^7.4.0", - "acorn-walk": "^7.1.1", + "@vue/cli-overlay": "^5.0.8", + "@vue/cli-plugin-router": "^5.0.8", + "@vue/cli-plugin-vuex": "^5.0.8", + "@vue/cli-shared-utils": "^5.0.8", + "@vue/component-compiler-utils": "^3.3.0", + "@vue/vue-loader-v15": "npm:vue-loader@^15.9.7", + "@vue/web-component-wrapper": "^1.3.0", + "acorn": "^8.0.5", + "acorn-walk": "^8.0.2", "address": "^1.1.2", - "autoprefixer": "^9.8.6", - "browserslist": "^4.12.0", - "cache-loader": "^4.1.0", + "autoprefixer": "^10.2.4", + "browserslist": "^4.16.3", "case-sensitive-paths-webpack-plugin": "^2.3.0", - "cli-highlight": "^2.1.4", + "cli-highlight": "^2.1.10", "clipboardy": "^2.3.0", - "cliui": "^6.0.0", - "copy-webpack-plugin": "^5.1.1", - "css-loader": "^3.5.3", - "cssnano": "^4.1.10", + "cliui": "^7.0.4", + "copy-webpack-plugin": "^9.0.1", + "css-loader": "^6.5.0", + "css-minimizer-webpack-plugin": "^3.0.2", + "cssnano": "^5.0.0", "debug": "^4.1.1", - "default-gateway": "^5.0.5", - "dotenv": "^8.2.0", + "default-gateway": "^6.0.3", + "dotenv": "^10.0.0", "dotenv-expand": "^5.1.0", - "file-loader": "^4.2.0", - "fs-extra": "^7.0.1", - "globby": "^9.2.0", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", "hash-sum": "^2.0.0", - "html-webpack-plugin": "^3.2.0", + "html-webpack-plugin": "^5.1.0", + "is-file-esm": "^1.0.0", "launch-editor-middleware": "^2.2.1", "lodash.defaultsdeep": "^4.6.1", "lodash.mapvalues": "^4.6.0", - "lodash.transform": "^4.6.0", - "mini-css-extract-plugin": "^0.9.0", + "mini-css-extract-plugin": "^2.5.3", "minimist": "^1.2.5", - "pnp-webpack-plugin": "^1.6.4", + "module-alias": "^2.2.2", "portfinder": "^1.0.26", - "postcss-loader": "^3.0.0", + "postcss": "^8.2.6", + "postcss-loader": "^6.1.1", + "progress-webpack-plugin": "^1.0.12", "ssri": "^8.0.1", - "terser-webpack-plugin": "^1.4.4", - "thread-loader": "^2.1.3", - "url-loader": "^2.2.0", - "vue-loader": "^15.9.2", - "vue-loader-v16": "npm:vue-loader@^16.1.0", - "vue-style-loader": "^4.1.2", - "webpack": "^4.0.0", - "webpack-bundle-analyzer": "^3.8.0", - "webpack-chain": "^6.4.0", - "webpack-dev-server": "^3.11.0", - "webpack-merge": "^4.2.2" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, - "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - } + "terser-webpack-plugin": "^5.1.1", + "thread-loader": "^3.0.0", + "vue-loader": "^17.0.0", + "vue-style-loader": "^4.1.3", + "webpack": "^5.54.0", + "webpack-bundle-analyzer": "^4.4.0", + "webpack-chain": "^6.5.1", + "webpack-dev-server": "^4.7.3", + "webpack-merge": "^5.7.3", + "webpack-virtual-modules": "^0.4.2", + "whatwg-fetch": "^3.6.2" } }, "@vue/cli-shared-utils": { - "version": "4.5.19", - "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.19.tgz", - "integrity": "sha512-JYpdsrC/d9elerKxbEUtmSSU6QRM60rirVubOewECHkBHj+tLNznWq/EhCjswywtePyLaMUK25eTqnTSZlEE+g==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-5.0.8.tgz", + "integrity": "sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ==", "dev": true, "requires": { - "@achrinza/node-ipc": "9.2.2", - "@hapi/joi": "^15.0.1", - "chalk": "^2.4.2", + "@achrinza/node-ipc": "^9.2.5", + "chalk": "^4.1.2", "execa": "^1.0.0", + "joi": "^17.4.0", "launch-editor": "^2.2.1", - "lru-cache": "^5.1.1", - "open": "^6.3.0", - "ora": "^3.4.0", + "lru-cache": "^6.0.0", + "node-fetch": "^2.6.7", + "open": "^8.0.2", + "ora": "^5.3.0", "read-pkg": "^5.1.1", - "request": "^2.88.2", - "semver": "^6.1.0", + "semver": "^7.3.4", "strip-ansi": "^6.0.0" }, "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "ansi-regex": "^5.0.1" + "has-flag": "^4.0.0" } } } }, + "@vue/compiler-sfc": { + "version": "2.7.14", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.14.tgz", + "integrity": "sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==", + "requires": { + "@babel/parser": "^7.18.4", + "postcss": "^8.4.14", + "source-map": "^0.6.1" + } + }, "@vue/component-compiler-utils": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz", - "integrity": "sha512-lejBLa7xAMsfiZfNp7Kv51zOzifnb29FwdnMLa96z26kXErPFioSf9BMcePVIQ6/Gc6/mC0UrPpxAWIHyae0vw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz", + "integrity": "sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==", "dev": true, "requires": { "consolidate": "^0.15.1", "hash-sum": "^1.0.2", "lru-cache": "^4.1.2", "merge-source-map": "^1.1.0", - "postcss": "^7.0.14", + "postcss": "^7.0.36", "postcss-selector-parser": "^6.0.2", - "prettier": "^1.18.2", + "prettier": "^1.18.2 || ^2.0.0", "source-map": "~0.6.1", "vue-template-es2015-compiler": "^1.9.0" }, @@ -16566,7 +15536,7 @@ "hash-sum": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", - "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", "dev": true }, "lru-cache": { @@ -16579,223 +15549,210 @@ "yallist": "^2.1.2" } }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", "dev": true }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, "yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", "dev": true } } }, "@vue/eslint-config-prettier": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-4.0.1.tgz", - "integrity": "sha512-rJEDXPb61Hfgg8GllO3XXFP98bcIxdNNHSrNcxP/vBSukOolgOwQyZJ5f5z/c7ViPyh5/IDlC4qBnhx/0n+I4g==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-7.0.0.tgz", + "integrity": "sha512-/CTc6ML3Wta1tCe1gUeO0EYnVXfo3nJXsIhZ8WJr3sov+cGASr6yuiibJTL6lmIBm7GobopToOuB3B6AWyV0Iw==", + "dev": true, + "requires": { + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-prettier": "^4.0.0" + } + }, + "@vue/vue-loader-v15": { + "version": "npm:vue-loader@15.10.1", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.1.tgz", + "integrity": "sha512-SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA==", "dev": true, "requires": { - "eslint-config-prettier": "^3.3.0", - "eslint-plugin-prettier": "^3.0.0", - "prettier": "^1.15.2" + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" }, "dependencies": { - "prettier": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.15.3.tgz", - "integrity": "sha512-gAU9AGAPMaKb3NNSUUuhhFAS7SCO4ALTN4nRIn6PJ075Qd28Yn2Ig2ahEJWdJwJmlEBTUfC7mMUSFy8MwsOCfg==", + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", "dev": true } } }, - "@vue/preload-webpack-plugin": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.2.tgz", - "integrity": "sha512-LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ==", - "dev": true - }, "@vue/web-component-wrapper": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.2.0.tgz", - "integrity": "sha512-Xn/+vdm9CjuC9p3Ae+lTClNutrVhsXpzxvoTXXtoys6kVRX9FkueSUAqSWAyZntmVLlR4DosBV4pH8y5Z/HbUw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.3.0.tgz", + "integrity": "sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==", "dev": true }, "@webassemblyjs/ast": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", - "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", "dev": true, "requires": { - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0" + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", - "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", "dev": true }, "@webassemblyjs/helper-api-error": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", - "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", "dev": true }, "@webassemblyjs/helper-buffer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", - "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", - "dev": true - }, - "@webassemblyjs/helper-code-frame": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", - "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", - "dev": true, - "requires": { - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "@webassemblyjs/helper-fsm": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", - "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", "dev": true }, - "@webassemblyjs/helper-module-context": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", - "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.9.0" + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", - "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", "dev": true }, "@webassemblyjs/helper-wasm-section": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", - "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" } }, "@webassemblyjs/ieee754": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", - "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", "dev": true, "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", - "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", "dev": true, "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", - "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", "dev": true }, "@webassemblyjs/wasm-edit": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", - "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/helper-wasm-section": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-opt": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "@webassemblyjs/wast-printer": "1.9.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" } }, "@webassemblyjs/wasm-gen": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", - "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, "@webassemblyjs/wasm-opt": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", - "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" } }, "@webassemblyjs/wasm-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", - "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "@webassemblyjs/wast-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", - "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/floating-point-hex-parser": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-code-frame": "1.9.0", - "@webassemblyjs/helper-fsm": "1.9.0", - "@xtuc/long": "4.2.2" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, "@webassemblyjs/wast-printer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", - "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0", + "@webassemblyjs/ast": "1.11.1", "@xtuc/long": "4.2.2" } }, @@ -16812,33 +15769,57 @@ "dev": true }, "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" } }, "acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", "dev": true }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "requires": {} + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, "acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true }, "address": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", - "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "dev": true }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -16849,56 +15830,69 @@ "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" }, "dependencies": { - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true } } }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", - "dev": true - }, "ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true - }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", - "dev": true + "dev": true, + "requires": {} }, "ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", "dev": true }, "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "dev": true + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } }, - "ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true }, "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, "ansi-styles": { @@ -16910,35 +15904,22 @@ "color-convert": "^1.9.0" } }, - "any-observable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz", - "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==", - "dev": true - }, "any-promise": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", "dev": true }, "anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, - "optional": true, "requires": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, "arch": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", @@ -16954,156 +15935,49 @@ "sprintf-js": "~1.0.2" } }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true - }, "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", "dev": true }, "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "dev": true, - "requires": { - "array-uniq": "^1.0.1" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true }, "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, "requires": { "safer-buffer": "~2.1.0" } }, - "asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - }, - "dependencies": { - "bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - } - } - }, - "assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "dev": true, - "requires": { - "object-assign": "^4.1.1", - "util": "0.10.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", - "dev": true - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "dev": true, - "requires": { - "inherits": "2.0.1" - } - } - } - }, "assert-plus": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", "dev": true }, "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true }, "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "dev": true, - "requires": { - "lodash": "^4.17.14" - } - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "dev": true }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "dev": true }, "at-least-node": { @@ -17112,97 +15986,54 @@ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true - }, "autoprefixer": { - "version": "9.8.6", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", - "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", "dev": true, "requires": { - "browserslist": "^4.12.0", - "caniuse-lite": "^1.0.30001109", - "colorette": "^1.2.1", + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^7.0.32", - "postcss-value-parser": "^4.1.0" + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" } }, "aws-sign2": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", "dev": true }, "aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", "dev": true }, - "babel-eslint": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", - "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.0", - "@babel/traverse": "^7.7.0", - "@babel/types": "^7.7.0", - "eslint-visitor-keys": "^1.0.0", - "resolve": "^1.12.0" - } - }, "babel-loader": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.1.tgz", - "integrity": "sha512-dMF8sb2KQ8kJl21GUjkW1HWmcsL39GOV5vnzjqrCzEPNY0S0UfMLnumidiwIajDSBmKhYf5iRW+HXaM4cvCKBw==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", "dev": true, "requires": { - "find-cache-dir": "^2.1.0", - "loader-utils": "^1.4.0", - "make-dir": "^2.1.0", - "pify": "^4.0.1", + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", "schema-utils": "^2.6.5" }, "dependencies": { - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", - "json5": "^1.0.1" + "json5": "^2.1.2" } - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true } } }, @@ -17224,14 +16055,6 @@ "@babel/compat-data": "^7.17.7", "@babel/helper-define-polyfill-provider": "^0.3.3", "semver": "^6.1.1" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } } }, "babel-plugin-polyfill-corejs3": { @@ -17244,76 +16067,21 @@ "core-js-compat": "^3.25.1" } }, - "babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - } - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, + "babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, "base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", @@ -17323,13 +16091,13 @@ "batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", "dev": true }, "bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dev": true, "requires": { "tweetnacl": "^0.14.3" @@ -17338,19 +16106,7 @@ "bezier-easing": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/bezier-easing/-/bezier-easing-2.1.0.tgz", - "integrity": "sha1-wE3+i5JtbsrKGBPWn/F5t8ICXYY=" - }, - "bfj": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz", - "integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==", - "dev": true, - "requires": { - "bluebird": "^3.5.5", - "check-types": "^8.0.3", - "hoopy": "^0.1.4", - "tryer": "^1.0.1" - } + "integrity": "sha512-gbIqZ/eslnUFC1tjEvtz0sgx+xTK20wDnYMIA27VA04R7w6xxXQPZDbibjA9DTWZRA2CXtwHykkVzlCaAJAZig==" }, "big.js": { "version": "5.2.2", @@ -17359,11 +16115,27 @@ "dev": true }, "binary-extensions": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", - "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, - "optional": true + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "blob-util": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", + "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", + "dev": true }, "blob-util": { "version": "2.0.2", @@ -17377,30 +16149,32 @@ "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", "dev": true }, - "bn.js": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", - "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==", - "dev": true - }, "body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dev": true, "requires": { - "bytes": "3.1.0", + "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -17410,46 +16184,48 @@ "ms": "2.0.0" } }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "dev": true + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } } } }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "bonjour-service": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.14.tgz", + "integrity": "sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==", "dev": true, "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", + "array-flatten": "^2.1.2", "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" - }, - "dependencies": { - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - } + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, "boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, "brace-expansion": { @@ -17463,136 +16239,12 @@ } }, "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", - "dev": true - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dev": true, - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dev": true, - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dev": true, - "requires": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "dev": true, - "requires": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "dependencies": { - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - } - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "requires": { - "pako": "~1.0.5" + "fill-range": "^7.0.1" } }, "browserslist": { @@ -17608,199 +16260,33 @@ } }, "buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, "buffer-crc32": { "version": "0.2.13", "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "dev": true }, "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", - "dev": true - }, - "buffer-json": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz", - "integrity": "sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==", - "dev": true - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, - "builtin-status-codes": { + "bytes": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true }, - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", - "dev": true - }, - "cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "dev": true, - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - }, - "dependencies": { - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - } - } - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "cache-loader": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz", - "integrity": "sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==", - "dev": true, - "requires": { - "buffer-json": "^2.0.0", - "find-cache-dir": "^3.0.0", - "loader-utils": "^1.2.3", - "mkdirp": "^0.5.1", - "neo-async": "^2.6.1", - "schema-utils": "^2.0.0" - }, - "dependencies": { - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, "cachedir": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", @@ -17808,46 +16294,29 @@ "dev": true }, "call-bind": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz", - "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, "requires": { "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.0" + "get-intrinsic": "^1.0.2" } }, - "call-me-maybe": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", - "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true }, - "caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", - "dev": true, - "requires": { - "callsites": "^2.0.0" - }, - "dependencies": { - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", - "dev": true - } - } - }, "camel-case": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", - "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "requires": { - "no-case": "^2.2.0", - "upper-case": "^1.1.1" + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" } }, "camelcase": { @@ -17869,21 +16338,21 @@ } }, "caniuse-lite": { - "version": "1.0.30001407", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001407.tgz", - "integrity": "sha512-4ydV+t4P7X3zH83fQWNDX/mQEzYomossfpViCOx9zHBSMV+rIe3LFqglHHtVyvNl1FhTNxPxs3jei82iqOW04w==", + "version": "1.0.30001439", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz", + "integrity": "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==", "dev": true }, "case-sensitive-paths-webpack-plugin": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", - "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", "dev": true }, "caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", "dev": true }, "chalk": { @@ -17897,12 +16366,6 @@ "supports-color": "^5.3.0" } }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, "chart.js": { "version": "2.9.4", "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.9.4.tgz", @@ -17932,168 +16395,83 @@ "check-more-types": { "version": "2.24.0", "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", - "integrity": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=", - "dev": true - }, - "check-types": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz", - "integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", "dev": true }, "chokidar": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", - "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, - "optional": true, "requires": { - "anymatch": "~3.1.1", + "anymatch": "~3.1.2", "braces": "~3.0.2", - "fsevents": "~2.1.2", - "glob-parent": "~5.1.0", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" + "readdirp": "~3.6.0" }, "dependencies": { - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "optional": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "optional": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "optional": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "optional": true, "requires": { - "is-number": "^7.0.0" + "is-glob": "^4.0.1" } } } }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, "chrome-trace-event": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", - "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", - "dev": true, - "requires": { - "tslib": "^1.9.0" - } - }, - "ci-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", - "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "dev": true }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true }, "clamp": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/clamp/-/clamp-1.0.1.tgz", - "integrity": "sha1-ZqDmQBGBbjcZaCj9yMjBRzEshjQ=" - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } + "integrity": "sha512-kgMuFyE78OC6Dyu3Dy7vcx4uy97EIbVxJB/B0eJ3bUNAkwdNcxYzgKltnyADiYwsR7SEqkkUPsEUT//OVS6XMA==" }, "clean-css": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", - "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.1.tgz", + "integrity": "sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==", "dev": true, "requires": { "source-map": "~0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } } }, "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "requires": { - "restore-cursor": "^2.0.0" + "restore-cursor": "^3.1.0" } }, "cli-highlight": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.8.tgz", - "integrity": "sha512-mFuTW5UOV3/S0wZE9/1b0EcAM0XOJIhoAWPhWm5voiJ6ugVBkvYBIEL7sbHo9sEtWdEmwDIWab32qpaRI3cfqQ==", + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz", + "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==", "dev": true, "requires": { "chalk": "^4.0.0", - "highlight.js": "^10.0.0", + "highlight.js": "^10.7.1", "mz": "^2.4.0", "parse5": "^5.1.1", "parse5-htmlparser2-tree-adapter": "^6.0.0", - "yargs": "^15.0.0" + "yargs": "^16.0.0" }, "dependencies": { "ansi-styles": { @@ -18106,9 +16484,9 @@ } }, "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", @@ -18124,12 +16502,6 @@ "color-name": "~1.1.4" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -18161,107 +16533,18 @@ "requires": { "@colors/colors": "1.5.0", "string-width": "^4.2.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } } }, "cli-truncate": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", - "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, "requires": { - "slice-ansi": "0.0.4", - "string-width": "^1.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "slice-ansi": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", - "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", - "dev": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" } }, - "cli-width": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", - "dev": true - }, "clipboardy": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz", @@ -18271,68 +16554,17 @@ "arch": "^2.1.1", "execa": "^1.0.0", "is-wsl": "^2.1.1" - }, - "dependencies": { - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "requires": { - "is-docker": "^2.0.0" - } - } } }, "cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "requires": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - } + "wrap-ansi": "^7.0.0" } }, "clone": { @@ -18351,70 +16583,36 @@ "shallow-clone": "^3.0.0" } }, - "coa": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "dev": true, - "requires": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", - "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", - "dev": true, - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.4" - } - }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "requires": { "color-name": "1.1.3" + }, + "dependencies": { + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } } }, "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, - "color-string": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", - "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", - "dev": true, - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } + "colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true }, "colorette": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", - "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", "dev": true }, "combined-stream": { @@ -18427,27 +16625,27 @@ } }, "commander": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", - "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", "dev": true }, "common-tags": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", - "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==", + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "dev": true }, "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "compare-versions": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz", + "integrity": "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==", "dev": true }, "compressible": { @@ -18474,12 +16672,6 @@ "vary": "~1.1.2" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "dev": true - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -18492,7 +16684,13 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true } } @@ -18500,31 +16698,13 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", - "dev": true - }, - "console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "dev": true }, "consolidate": { @@ -18536,19 +16716,13 @@ "bluebird": "^3.1.1" } }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", - "dev": true - }, "content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, "requires": { - "safe-buffer": "5.1.2" + "safe-buffer": "5.2.1" } }, "content-type": { @@ -18558,136 +16732,69 @@ "dev": true }, "convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - } + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true }, "cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "dev": true }, "cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, - "copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "dev": true, "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" + "is-what": "^3.14.1" } }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true - }, "copy-webpack-plugin": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.1.2.tgz", - "integrity": "sha512-Uh7crJAco3AjBvgAy9Z75CjK8IG+gxaErro71THQ+vv/bl4HaQcpkexAY8KVW/T6D2W2IRr+couF/knIRkZMIQ==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz", + "integrity": "sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==", "dev": true, "requires": { - "cacache": "^12.0.3", - "find-cache-dir": "^2.1.0", - "glob-parent": "^3.1.0", - "globby": "^7.1.1", - "is-glob": "^4.0.1", - "loader-utils": "^1.2.3", - "minimatch": "^3.0.4", + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^11.0.3", "normalize-path": "^3.0.0", - "p-limit": "^2.2.1", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "webpack-log": "^2.0.0" + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0" }, "dependencies": { - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "globby": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", - "integrity": "sha1-+yzP+UAfhgCUXfral0QMypcrhoA=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" - } - }, - "ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", - "dev": true - }, "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" } - }, - "slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", - "dev": true } } }, "core-js": { - "version": "3.25.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.25.2.tgz", - "integrity": "sha512-YB4IAT1bjEfxTJ1XYy11hJAKskO+qmhuDBM8/guIfMz4JvdsAQAqvyb97zXX7JgSrfPLG5mRGFWJwJD39ruq2A==", + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.1.tgz", + "integrity": "sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA==", "dev": true }, "core-js-compat": { - "version": "3.25.2", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.2.tgz", - "integrity": "sha512-TxfyECD4smdn3/CjWxczVtJqVLEEC2up7/82t7vC0AzNogr+4nQ8vyF7abxAuTXWvjTClSbvGhU0RgqA4ToQaQ==", + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz", + "integrity": "sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==", "dev": true, "requires": { "browserslist": "^4.21.4" @@ -18696,189 +16803,149 @@ "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "dev": true }, "cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "dev": true, - "requires": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - } - }, - "create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - }, - "dependencies": { - "bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - } - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" } }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" } }, - "css-color-names": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", - "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", - "dev": true - }, "css-declaration-sorter": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", - "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", + "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", + "dev": true, + "requires": {} + }, + "css-loader": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", + "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", "dev": true, "requires": { - "postcss": "^7.0.1", - "timsort": "^0.3.0" + "icss-utils": "^5.1.0", + "postcss": "^8.4.19", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + }, + "dependencies": { + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } } }, - "css-loader": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz", - "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==", + "css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", "dev": true, "requires": { - "camelcase": "^5.3.1", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^1.2.3", - "normalize-path": "^3.0.0", - "postcss": "^7.0.32", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.2", - "postcss-modules-scope": "^2.2.0", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.1.0", - "schema-utils": "^2.7.0", - "semver": "^6.3.0" + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" }, "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true + "ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } } } }, "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, "requires": { "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" } }, - "css-select-base-adapter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", - "dev": true - }, "css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "dev": true, "requires": { - "mdn-data": "2.0.4", + "mdn-data": "2.0.14", "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } } }, "css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "dev": true }, "cssesc": { @@ -18888,164 +16955,121 @@ "dev": true }, "cssnano": { - "version": "4.1.10", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", - "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "version": "5.1.14", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz", + "integrity": "sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==", "dev": true, "requires": { - "cosmiconfig": "^5.0.0", - "cssnano-preset-default": "^4.0.7", - "is-resolvable": "^1.0.0", - "postcss": "^7.0.0" + "cssnano-preset-default": "^5.2.13", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" } }, "cssnano-preset-default": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", - "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", - "dev": true, - "requires": { - "css-declaration-sorter": "^4.0.1", - "cssnano-util-raw-cache": "^4.0.1", - "postcss": "^7.0.0", - "postcss-calc": "^7.0.1", - "postcss-colormin": "^4.0.3", - "postcss-convert-values": "^4.0.1", - "postcss-discard-comments": "^4.0.2", - "postcss-discard-duplicates": "^4.0.2", - "postcss-discard-empty": "^4.0.1", - "postcss-discard-overridden": "^4.0.1", - "postcss-merge-longhand": "^4.0.11", - "postcss-merge-rules": "^4.0.3", - "postcss-minify-font-values": "^4.0.2", - "postcss-minify-gradients": "^4.0.2", - "postcss-minify-params": "^4.0.2", - "postcss-minify-selectors": "^4.0.2", - "postcss-normalize-charset": "^4.0.1", - "postcss-normalize-display-values": "^4.0.2", - "postcss-normalize-positions": "^4.0.2", - "postcss-normalize-repeat-style": "^4.0.2", - "postcss-normalize-string": "^4.0.2", - "postcss-normalize-timing-functions": "^4.0.2", - "postcss-normalize-unicode": "^4.0.1", - "postcss-normalize-url": "^4.0.1", - "postcss-normalize-whitespace": "^4.0.2", - "postcss-ordered-values": "^4.1.2", - "postcss-reduce-initial": "^4.0.3", - "postcss-reduce-transforms": "^4.0.2", - "postcss-svgo": "^4.0.2", - "postcss-unique-selectors": "^4.0.1" - } - }, - "cssnano-util-get-arguments": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", - "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", - "dev": true - }, - "cssnano-util-get-match": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", - "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", - "dev": true - }, - "cssnano-util-raw-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", - "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "version": "5.2.13", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz", + "integrity": "sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==", + "dev": true, + "requires": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.0", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.3", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.1", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + } + }, + "cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", "dev": true, - "requires": { - "postcss": "^7.0.0" - } - }, - "cssnano-util-same-parent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", - "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", - "dev": true + "requires": {} }, "csso": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.1.1.tgz", - "integrity": "sha512-Rvq+e1e0TFB8E8X+8MQjHSY6vtol45s5gxtLI/018UsAn2IBMmwNEZRM/h+HVnAJRHjasLIKKUO3uvoMM28LvA==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "dev": true, "requires": { - "css-tree": "^1.0.0" - }, - "dependencies": { - "css-tree": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.1.tgz", - "integrity": "sha512-NVN42M2fjszcUNpDbdkvutgQSlFYsr1z7kqeuCagHnNLBfYor6uP1WL1KrkmdYZ5Y1vTBCIOI/C/+8T98fJ71w==", - "dev": true, - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - } - }, - "mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "css-tree": "^1.1.2" } }, - "cyclist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", - "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", - "dev": true + "csstype": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", + "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" }, "cypress": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-5.6.0.tgz", - "integrity": "sha512-cs5vG3E2JLldAc16+5yQxaVRLLqMVya5RlrfPWkC72S5xrlHFdw7ovxPb61s4wYweROKTyH01WQc2PFzwwVvyQ==", + "version": "12.17.2", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.17.2.tgz", + "integrity": "sha512-hxWAaWbqQBzzMuadSGSuQg5PDvIGOovm6xm0hIfpCVcORsCAj/gF2p0EvfnJ4f+jK2PCiDgP6D2eeE9/FK4Mjg==", "dev": true, "requires": { - "@cypress/listr-verbose-renderer": "^0.4.1", - "@cypress/request": "^2.88.5", + "@cypress/request": "^2.88.11", "@cypress/xvfb": "^1.2.4", - "@types/sinonjs__fake-timers": "^6.0.1", + "@types/node": "^14.14.31", + "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", - "arch": "^2.1.2", - "blob-util": "2.0.2", + "arch": "^2.2.0", + "blob-util": "^2.0.2", "bluebird": "^3.7.2", + "buffer": "^5.6.0", "cachedir": "^2.3.0", "chalk": "^4.1.0", "check-more-types": "^2.24.0", - "cli-table3": "~0.6.0", - "commander": "^5.1.0", + "cli-cursor": "^3.1.0", + "cli-table3": "~0.6.1", + "commander": "^6.2.1", "common-tags": "^1.8.0", - "debug": "^4.1.1", - "eventemitter2": "^6.4.2", - "execa": "^4.0.2", + "dayjs": "^1.10.4", + "debug": "^4.3.4", + "enquirer": "^2.3.6", + "eventemitter2": "6.4.7", + "execa": "4.1.0", "executable": "^4.1.1", - "extract-zip": "^1.7.0", - "fs-extra": "^9.0.1", + "extract-zip": "2.0.1", + "figures": "^3.2.0", + "fs-extra": "^9.1.0", "getos": "^3.2.1", - "is-ci": "^2.0.0", - "is-installed-globally": "^0.3.2", + "is-ci": "^3.0.0", + "is-installed-globally": "~0.4.0", "lazy-ass": "^1.6.0", - "listr": "^0.14.3", - "lodash": "^4.17.19", + "listr2": "^3.8.3", + "lodash": "^4.17.21", "log-symbols": "^4.0.0", - "minimist": "^1.2.5", - "moment": "^2.27.0", + "minimist": "^1.2.8", "ospath": "^1.2.2", - "pretty-bytes": "^5.4.1", - "ramda": "~0.26.1", + "pretty-bytes": "^5.6.0", + "proxy-from-env": "1.0.0", "request-progress": "^3.0.0", - "supports-color": "^7.2.0", + "semver": "^7.5.3", + "supports-color": "^8.1.1", "tmp": "~0.2.1", "untildify": "^4.0.0", - "url": "^0.11.0", "yauzl": "^2.10.0" }, "dependencies": { @@ -19066,14 +17090,19 @@ "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true - }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -19083,29 +17112,6 @@ "color-name": "~1.1.4" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, "execa": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", @@ -19123,18 +17129,6 @@ "strip-final-newline": "^2.0.0" } }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, "get-stream": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", @@ -19150,47 +17144,12 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "dev": true, - "requires": { - "ci-info": "^2.0.0" - } - }, "is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, "npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -19200,173 +17159,88 @@ "path-key": "^3.0.0" } }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { - "shebang-regex": "^3.0.0" + "lru-cache": "^6.0.0" } }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "requires": { "has-flag": "^4.0.0" } - }, - "tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", - "dev": true, - "requires": { - "rimraf": "^3.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } } } }, "cypress-failed-log": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/cypress-failed-log/-/cypress-failed-log-2.7.0.tgz", - "integrity": "sha512-9tSuFRjlAGZuH+IIiyDM7IAvjh4dmet/iUPLRxet9ugLkELw/cyW7jUCQmR7j4aW8Fl+ZlbNUekVonBaS322SA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/cypress-failed-log/-/cypress-failed-log-2.10.0.tgz", + "integrity": "sha512-v+GsOcpCAgj335zfDy9jDnaujH31SM/6pEQBp0dH0clbYu4NSXirLRXW9WoKhd0j70UrAA0hTLNbS2oTt1Y5kA==", "dev": true, "requires": { - "debug": "4.1.1", + "debug": "4.3.4", "logdown": "3.3.1" } }, "cypress-file-upload": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/cypress-file-upload/-/cypress-file-upload-3.5.3.tgz", - "integrity": "sha512-S/czzqAj1BYz6Xxnfpx2aSc6hXsj76fd8/iuycJ2RxoxCcQMliw8eQV0ugzVlkzr1GD5dKGviNFGYqv3nRJ+Tg==", - "dev": true + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz", + "integrity": "sha512-+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g==", + "dev": true, + "requires": {} }, "cypress-wait-until": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/cypress-wait-until/-/cypress-wait-until-1.7.1.tgz", - "integrity": "sha512-8DL5IsBTbAxBjfYgCzdbohPq/bY+IKc63fxtso1C8RWhLnQkZbVESyaclNr76jyxfId6uyzX8+Xnt0ZwaXNtkA==", + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/cypress-wait-until/-/cypress-wait-until-1.7.2.tgz", + "integrity": "sha512-uZ+M8/MqRcpf+FII/UZrU7g1qYZ4aVlHcgyVopnladyoBrpoaMJ4PKZDrdOJ05H5RHbr7s9Tid635X3E+ZLU/Q==", "dev": true }, "dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "dev": true, "requires": { "assert-plus": "^1.0.0" } }, - "date-fns": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", - "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", + "dayjs": { + "version": "1.11.7", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", + "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", "dev": true }, "de-indent": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", - "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", "dev": true }, "debounce": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.0.tgz", - "integrity": "sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" }, "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "dev": true - }, - "dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", - "dev": true - }, - "deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" + "ms": "2.1.2" } }, "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "deepmerge": { @@ -19376,308 +17250,140 @@ "dev": true }, "default-gateway": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-5.0.5.tgz", - "integrity": "sha512-z2RnruVmj8hVMmAnEJMTIJNijhKCDiGjbLP+BHJFOT7ld3Bo5qcIBpVYDniqhbMIIf+jZDlkP2MkPXiQy/DBLA==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, "requires": { - "execa": "^3.3.0" + "execa": "^5.0.0" }, "dependencies": { - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, "execa": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz", - "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "p-finally": "^2.0.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", - "dev": true - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" } }, - "p-finally": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz", - "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "requires": { - "isexe": "^2.0.0" + "path-key": "^3.0.0" } } } }, "defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, "requires": { "clone": "^1.0.2" } }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, - "requires": { - "object-keys": "^1.0.12" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true }, - "del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", "dev": true, "requires": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" - }, - "dependencies": { - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - } + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" } }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true }, "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true }, - "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true }, "detect-node": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", - "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - } - } - }, "dir-glob": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", - "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "requires": { - "path-type": "^3.0.0" + "path-type": "^4.0.0" } }, "dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", "dev": true }, "dns-packet": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", - "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", "dev": true, "requires": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" + "@leichtgewicht/ip-codec": "^2.0.1" } }, - "dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "requires": { - "buffer-indexof": "^1.0.0" + "esutils": "^2.0.2" } }, "dom-converter": { @@ -19690,75 +17396,61 @@ } }, "dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, "requires": { "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", "entities": "^2.0.0" - }, - "dependencies": { - "domelementtype": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.2.tgz", - "integrity": "sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==", - "dev": true - } } }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true - }, "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true }, "domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "requires": { - "domelementtype": "1" + "domelementtype": "^2.2.0" } }, + "dompurify": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.0.8.tgz", + "integrity": "sha512-b7uwreMYL2eZhrSCRC4ahLTeZcPZxSmYfmcQGXGkXiZSNW1X85v+SDM5KsWcpivIiUBH47Ji7NtyUdpLeF5JZQ==" + }, "domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "requires": { - "dom-serializer": "0", - "domelementtype": "1" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" } }, - "dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "requires": { - "is-obj": "^2.0.0" - }, - "dependencies": { - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - } + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, "dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", "dev": true }, "dotenv-expand": { @@ -19768,9 +17460,9 @@ "dev": true }, "dropzone": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/dropzone/-/dropzone-5.5.1.tgz", - "integrity": "sha512-3VduRWLxx9hbVr42QieQN25mx/I61/mRdUSuxAmDGdDqZIN8qtP7tcKMa3KfpJjuGjOJGYYUzzeq6eGDnkzesA==" + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/dropzone/-/dropzone-5.9.3.tgz", + "integrity": "sha512-Azk8kD/2/nJIuVPK+zQ9sjKMRIpRvNyqn9XwbBHNq+iNuSccbJS6hwm1Woy0pMST0erSo0u4j+KJaodndDk4vA==" }, "duplexer": { "version": "0.1.2", @@ -19778,18 +17470,6 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, "easy-stack": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/easy-stack/-/easy-stack-1.0.1.tgz", @@ -19799,7 +17479,7 @@ "ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, "requires": { "jsbn": "~0.1.0", @@ -19809,117 +17489,78 @@ "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", - "dev": true - }, - "ejs": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", - "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, "electron-to-chromium": { - "version": "1.4.256", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.256.tgz", - "integrity": "sha512-x+JnqyluoJv8I0U9gVe+Sk2st8vF0CzMt78SXxuoWCooLLY2k5VerIBdpvG7ql6GKI4dzNnPjmqgDJ76EdaAKw==", - "dev": true - }, - "elegant-spinner": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", - "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", "dev": true }, "element-resize-event": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/element-resize-event/-/element-resize-event-3.0.3.tgz", - "integrity": "sha512-vhGNxT87PdZA6Ak4E0QhArwGzNcSPUwSN7n9wCFLeBlY2NNuuiwguQuQIp7P5oB65PLJ892yKcHiqz1xLWeiug==", - "dev": true - }, - "elliptic": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", - "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", - "dev": true, - "requires": { - "bn.js": "^4.4.0", - "brorand": "^1.0.1", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - } - } + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/element-resize-event/-/element-resize-event-3.0.6.tgz", + "integrity": "sha512-sSeXY9rNDp86bJODW68pxLcy3A5FrPZfIgOrJHzqgYzX513Zq6/ytdBigp7KeJEpZZopBBSiO1cVuiRkZpNxLw==" }, "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true }, "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true }, "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "requires": { "once": "^1.4.0" } }, "enhanced-resolve": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz", - "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==", + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", + "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", "dev": true, "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - }, - "dependencies": { - "memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - } + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" } }, "entities": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", - "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true }, "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, + "optional": true, "requires": { "prr": "~1.0.1" } @@ -19934,43 +17575,19 @@ } }, "error-stack-parser": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", - "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", - "dev": true, - "requires": { - "stackframe": "^1.1.1" - } - }, - "es-abstract": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", - "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", "dev": true, "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" + "stackframe": "^1.3.4" } }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true }, "escalade": { "version": "3.1.1", @@ -19981,373 +17598,344 @@ "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true }, "eslint": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz", - "integrity": "sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==", + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", "dev": true, "requires": { - "@babel/code-frame": "^7.0.0", - "ajv": "^6.9.1", - "chalk": "^2.1.0", - "cross-spawn": "^6.0.5", + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", "debug": "^4.0.1", "doctrine": "^3.0.0", - "eslint-scope": "^4.0.3", - "eslint-utils": "^1.3.1", - "eslint-visitor-keys": "^1.0.0", - "espree": "^5.0.1", - "esquery": "^1.0.1", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", - "glob": "^7.1.2", - "globals": "^11.7.0", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", "ignore": "^4.0.6", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", - "inquirer": "^6.2.2", - "js-yaml": "^3.13.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.11", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", "natural-compare": "^1.4.0", - "optionator": "^0.8.2", - "path-is-inside": "^1.0.2", + "optionator": "^0.9.1", "progress": "^2.0.0", - "regexpp": "^2.0.1", - "semver": "^5.5.1", - "strip-ansi": "^4.0.0", - "strip-json-comments": "^2.0.1", - "table": "^5.2.3", - "text-table": "^0.2.0" - }, - "dependencies": { - "acorn-jsx": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz", - "integrity": "sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg==", - "dev": true - }, - "ajv": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", - "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "espree": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz", - "integrity": "sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A==", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { - "acorn": "^6.0.7", - "acorn-jsx": "^5.0.0", - "eslint-visitor-keys": "^1.0.0" + "@babel/highlight": "^7.10.4" } }, - "external-editor": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz", - "integrity": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" + "color-convert": "^2.0.1" } }, - "file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "flat-cache": "^2.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "flat-cache": { + "color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" + "color-name": "~1.1.4" } }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true }, - "import-fresh": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz", - "integrity": "sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "inquirer": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.3.1.tgz", - "integrity": "sha512-MmL624rfkFt4TG9y/Jvmt8vdmOo836U7Y0Hxr2aFk3RelZEGX4Igk0KabWrcaaZaTv9uzglOqWh1Vly+FAWAXA==", + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "requires": { - "ansi-escapes": "^3.2.0", - "chalk": "^2.4.2", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^2.0.0", - "lodash": "^4.17.11", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rxjs": "^6.4.0", - "string-width": "^2.1.0", - "strip-ansi": "^5.1.0", - "through": "^2.3.6" - }, - "dependencies": { - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "requires": { + "is-glob": "^4.0.1" } }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "globals": { + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", "dev": true, "requires": { - "minimist": "^1.2.5" + "type-fest": "^0.20.2" } }, - "regexpp": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", - "dev": true - }, - "resolve-from": { + "has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" + "lru-cache": "^6.0.0" } }, - "table": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/table/-/table-5.2.3.tgz", - "integrity": "sha512-N2RsDAMvDLvYwFcwbPyF3VmVSSkuF+G1e+8inhBLtHpvwXGw4QRPEZhihQNeEN0i1up6/f6ObCJXNdlRG3YVyQ==", + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "ajv": "^6.9.1", - "lodash": "^4.17.11", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" - }, - "dependencies": { - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "has-flag": "^4.0.0" } }, - "write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", - "dev": true, - "requires": { - "mkdirp": "^0.5.1" - } + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true } } }, "eslint-config-prettier": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-3.3.0.tgz", - "integrity": "sha512-Bc3bh5bAcKNvs3HOpSi6EfGA2IIp7EzWcg2tS4vP7stnXu/J1opihHDM7jI9JCIckyIDTgZLSWn7J3HY0j2JfA==", - "dev": true, - "requires": { - "get-stdin": "^6.0.0" - } - }, - "eslint-loader": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-2.2.1.tgz", - "integrity": "sha512-RLgV9hoCVsMLvOxCuNjdqOrUqIj9oJg8hF44vzJaYqsAHuY9G2YAeN3joQ9nxP0p5Th9iFSIpKo+SD8KISxXRg==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", + "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", "dev": true, - "requires": { - "loader-fs-cache": "^1.0.0", - "loader-utils": "^1.0.2", - "object-assign": "^4.0.1", - "object-hash": "^1.1.4", - "rimraf": "^2.6.1" - } + "requires": {} }, "eslint-plugin-prettier": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.0.1.tgz", - "integrity": "sha512-/PMttrarPAY78PLvV3xfWibMOdMDl57hmlQ2XqFeA37wd+CJ7WSxV7txqjVPHi/AAFKd2lX0ZqfsOc/i5yFCSQ==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", "dev": true, "requires": { "prettier-linter-helpers": "^1.0.0" } }, "eslint-plugin-vue": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-5.2.3.tgz", - "integrity": "sha512-mGwMqbbJf0+VvpGR5Lllq0PMxvTdrZ/ZPjmhkacrCHbubJeJOt+T6E3HUzAifa2Mxi7RSdJfC9HFpOeSYVMMIw==", + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-8.7.1.tgz", + "integrity": "sha512-28sbtm4l4cOzoO1LtzQPxfxhQABararUb1JtqusQqObJpWX2e/gmVyeYVfepizPFne0Q5cILkYGiBoV36L12Wg==", "dev": true, "requires": { - "vue-eslint-parser": "^5.0.0" + "eslint-utils": "^3.0.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.0.1", + "postcss-selector-parser": "^6.0.9", + "semver": "^7.3.5", + "vue-eslint-parser": "^8.0.1" }, "dependencies": { - "acorn-jsx": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.2.tgz", - "integrity": "sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw==", - "dev": true - }, - "espree": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-4.1.0.tgz", - "integrity": "sha512-I5BycZW6FCVIub93TeVY1s7vjhP9CY6cXCznIRfiig7nRviKZYdRnj/sHEWC6A7WE9RDWOFq9+7OsWSYz8qv2w==", + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "requires": { - "acorn": "^6.0.2", - "acorn-jsx": "^5.0.0", - "eslint-visitor-keys": "^1.0.0" + "eslint-visitor-keys": "^2.0.0" } }, - "vue-eslint-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-5.0.0.tgz", - "integrity": "sha512-JlHVZwBBTNVvzmifwjpZYn0oPWH2SgWv5dojlZBsrhablDu95VFD+hriB1rQGwbD+bms6g+rAFhQHk6+NyiS6g==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { - "debug": "^4.1.0", - "eslint-scope": "^4.0.0", - "eslint-visitor-keys": "^1.0.0", - "espree": "^4.1.0", - "esquery": "^1.0.1", - "lodash": "^4.17.11" + "lru-cache": "^6.0.0" } } } }, "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "requires": { - "esrecurse": "^4.1.0", + "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }, "eslint-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.2.tgz", - "integrity": "sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "requires": { - "eslint-visitor-keys": "^1.0.0" + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } } }, "eslint-visitor-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true }, + "eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dev": true, + "requires": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", @@ -20355,39 +17943,55 @@ "dev": true }, "esquery": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", - "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, "requires": { - "estraverse": "^4.0.0" + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { - "estraverse": "^4.1.0" + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true }, "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true }, "event-pubsub": { @@ -20397,9 +18001,9 @@ "dev": true }, "eventemitter2": { - "version": "6.4.3", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.3.tgz", - "integrity": "sha512-t0A2msp6BzOf+QAcI6z9XMktLj52OjGQg+8SJH6v5+3uxNpWYRR3wQmfA+6xtMU9kOC59qk9licus5dYcrYkMQ==", + "version": "6.4.7", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", + "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", "dev": true }, "eventemitter3": { @@ -20409,30 +18013,11 @@ "dev": true }, "events": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz", - "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true }, - "eventsource": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", - "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", - "dev": true, - "requires": { - "original": "^1.0.0" - } - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dev": true, - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, "execa": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", @@ -20446,284 +18031,178 @@ "p-finally": "^1.0.0", "signal-exit": "^3.0.0", "strip-eof": "^1.0.0" - } - }, - "executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", - "dev": true, - "requires": { - "pify": "^2.2.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "exit-hook": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", - "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=", - "dev": true - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" }, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "requires": { - "ms": "2.0.0" + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "requires": { - "is-descriptor": "^0.1.0" + "shebang-regex": "^1.0.0" } }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { - "is-extendable": "^0.1.0" + "isexe": "^2.0.0" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true } } }, + "executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "requires": { + "pify": "^2.2.0" + } + }, "express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dev": true, "requires": { - "accepts": "~1.3.7", + "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.4.0", + "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", - "depd": "~1.1.2", + "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "~1.1.2", + "finalhandler": "1.2.0", "fresh": "0.5.2", + "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "dev": true - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { - "kind-of": "^6.0.0" + "ms": "2.0.0" } }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "side-channel": "^1.0.4" } } } }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, "extract-zip": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", - "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", "dev": true, "requires": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", + "@types/yauzl": "^2.9.1", + "debug": "^4.1.1", + "get-stream": "^5.1.0", "yauzl": "^2.10.0" }, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "requires": { - "ms": "2.0.0" + "pump": "^3.0.0" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true } } }, "extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "dev": true }, "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "fast-diff": { @@ -20733,58 +18212,54 @@ "dev": true }, "fast-glob": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", - "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "requires": { - "@mrmlnc/readdir-enhanced": "^2.2.1", - "@nodelib/fs.stat": "^1.1.2", - "glob-parent": "^3.1.0", - "is-glob": "^4.0.0", - "merge2": "^1.2.3", - "micromatch": "^3.1.10" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "dependencies": { "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } + "is-glob": "^4.0.1" } } } }, "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, + "fastq": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.14.0.tgz", + "integrity": "sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, "requires": { "websocket-driver": ">=0.5.1" @@ -20793,78 +18268,51 @@ "fd-slicer": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "dev": true, "requires": { "pend": "~1.2.0" } }, - "figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", - "dev": true - }, "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "requires": { "escape-string-regexp": "^1.0.5" } }, - "file-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-4.3.0.tgz", - "integrity": "sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==", + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "requires": { - "loader-utils": "^1.2.3", - "schema-utils": "^2.5.0" + "flat-cache": "^3.0.4" } }, - "filesize": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", - "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", - "dev": true - }, "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } + "to-regex-range": "^5.0.1" } }, "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, "requires": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "on-finished": "~2.3.0", + "on-finished": "2.4.1", "parseurl": "~1.3.3", - "statuses": "~1.5.0", + "statuses": "2.0.1", "unpipe": "~1.0.0" }, "dependencies": { @@ -20880,69 +18328,67 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true } } }, "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, "requires": { "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" } }, "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { - "locate-path": "^3.0.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" } }, - "flatted": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.0.tgz", - "integrity": "sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg==", - "dev": true + "find-versions": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-4.0.0.tgz", + "integrity": "sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==", + "dev": true, + "requires": { + "semver-regex": "^3.1.2" + } }, - "flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" + "flatted": "^3.1.0", + "rimraf": "^3.0.2" } }, - "fn-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fn-name/-/fn-name-2.0.1.tgz", - "integrity": "sha1-UhTXU3pNBqSjAcDMJi/rhBiAAuc=", + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, "follow-redirects": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz", - "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==", - "dev": true - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "dev": true }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "dev": true }, "form-data": { @@ -20957,69 +18403,51 @@ } }, "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "dev": true, - "requires": { - "map-cache": "^0.2.2" - } + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true }, "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, "fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" } }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, "fsevents": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", - "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, "optional": true }, @@ -21032,20 +18460,9 @@ "functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true }, - "g-status": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/g-status/-/g-status-2.0.2.tgz", - "integrity": "sha512-kQoE9qH+T1AHKgSSD0Hkv98bobE90ILQcXAF4wvGgsr7uFqNvwmh8j+Lq3l0RVt3E3HjSbv2B9biEGcEtpHLCA==", - "dev": true, - "requires": { - "arrify": "^1.0.1", - "matcher": "^1.0.0", - "simple-git": "^1.85.0" - } - }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -21059,26 +18476,20 @@ "dev": true }, "get-intrinsic": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz", - "integrity": "sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "dev": true, "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1" + "has-symbols": "^1.0.3" } }, "get-own-enumerable-property-symbols": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.0.tgz", - "integrity": "sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg==", - "dev": true - }, - "get-stdin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", - "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", "dev": true }, "get-stream": { @@ -21090,12 +18501,6 @@ "pump": "^3.0.0" } }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true - }, "getos": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", @@ -21103,90 +18508,79 @@ "dev": true, "requires": { "async": "^3.2.0" - }, - "dependencies": { - "async": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", - "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==", - "dev": true - } } }, "getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, "requires": { "assert-plus": "^1.0.0" } }, "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, - "optional": true, "requires": { - "is-glob": "^4.0.1" + "is-glob": "^4.0.3" } }, "glob-to-regexp": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", - "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, "global-dirs": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz", - "integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, "requires": { - "ini": "^1.3.5" + "ini": "2.0.0" } }, "globals": { - "version": "11.10.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.10.0.tgz", - "integrity": "sha512-0GZF1RiPKU97IHUO5TORo9w1PwrH/NBPl+fS7oMLdaTRiYmYbwK4NWoZWrAdd0/abG9R2BU+OiwyQpTpE6pdfQ==", + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true }, "globby": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz", - "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "requires": { - "@types/glob": "^7.1.1", - "array-union": "^1.0.2", - "dir-glob": "^2.2.2", - "fast-glob": "^2.2.6", - "glob": "^7.1.3", - "ignore": "^4.0.3", - "pify": "^4.0.1", - "slash": "^2.0.0" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" }, "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true } } @@ -21198,27 +18592,18 @@ "dev": true }, "graceful-fs": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", - "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, "gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, "requires": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" - }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - } + "duplexer": "^0.1.2" } }, "handle-thing": { @@ -21227,22 +18612,6 @@ "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "dev": true - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "dev": true, - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -21252,152 +18621,43 @@ "function-bind": "^1.1.1" } }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - } - } - }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "has-symbols": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", - "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "dev": true, - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { + "has-property-descriptors": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dev": true, - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "dependencies": { - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - } + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.1" } }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, "hash-sum": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", "dev": true }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, "he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true }, - "hex-color-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", - "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", - "dev": true - }, "highlight.js": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.4.0.tgz", - "integrity": "sha512-EfrUGcQ63oLJbj0J0RI9ebX6TAITbsDBLbsjr881L/X5fMO9+oadKzEF21C7R3ULKG6Gv3uoab2HiqVJa/4+oA==", - "dev": true - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "dev": true, - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "hoopy": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", "dev": true }, "hosted-git-info": { @@ -21409,58 +18669,72 @@ "hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, "requires": { "inherits": "^2.0.1", "obuf": "^1.0.0", "readable-stream": "^2.0.1", "wbuf": "^1.1.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, - "hsl-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", - "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", - "dev": true - }, - "hsla-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", - "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", - "dev": true - }, - "html-comment-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", - "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==", - "dev": true - }, "html-entities": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz", - "integrity": "sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", "dev": true }, - "html-minifier": { - "version": "3.5.21", - "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", - "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "dev": true, "requires": { - "camel-case": "3.0.x", - "clean-css": "4.2.x", - "commander": "2.17.x", - "he": "1.2.x", - "param-case": "2.1.x", - "relateurl": "0.2.x", - "uglify-js": "3.4.x" + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" }, "dependencies": { "commander": { - "version": "2.17.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", - "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true } } @@ -21472,108 +18746,55 @@ "dev": true }, "html-webpack-plugin": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz", - "integrity": "sha1-sBq71yOsqqeze2r0SS69oD2d03s=", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", "dev": true, "requires": { - "html-minifier": "^3.2.3", - "loader-utils": "^0.2.16", - "lodash": "^4.17.3", - "pretty-error": "^2.0.2", - "tapable": "^1.0.0", - "toposort": "^1.0.0", - "util.promisify": "1.0.0" - }, - "dependencies": { - "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", - "dev": true - }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true - }, - "loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", - "dev": true, - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0", - "object-assign": "^4.0.1" - } - }, - "util.promisify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", - "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", - "dev": true, - "requires": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" - } - } + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" } }, "htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "dev": true, "requires": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - }, - "dependencies": { - "entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" } }, "http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", "dev": true }, "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" } }, + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, "http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", @@ -21586,220 +18807,53 @@ } }, "http-proxy-middleware": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", - "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, "requires": { - "http-proxy": "^1.17.0", - "is-glob": "^4.0.0", - "lodash": "^4.17.11", - "micromatch": "^3.1.10" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" } }, "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", + "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", "dev": true, "requires": { "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "jsprim": "^2.0.2", + "sshpk": "^1.14.1" } }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", - "dev": true - }, "human-signals": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "icss-utils": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", - "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", - "dev": true, - "requires": { - "postcss": "^7.0.14" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true - }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", - "dev": true - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", - "dev": true, - "optional": true - }, - "import-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", - "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", - "dev": true, - "requires": { - "import-from": "^2.1.0" - } - }, - "import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", - "dev": true, - "requires": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - }, - "dependencies": { - "caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", - "dev": true, - "requires": { - "caller-callsite": "^2.0.0" - } - }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - } - } - }, - "import-from": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", - "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - } - }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "dev": true, - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "indent-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", - "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", - "dev": true - }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", - "dev": true - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", - "dev": true - }, - "inquirer": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", - "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "husky": { + "version": "4.3.8", + "resolved": "https://registry.npmjs.org/husky/-/husky-4.3.8.tgz", + "integrity": "sha512-LCqqsB0PzJQ/AlCgfrfzRe3e3+NvmefAdKQhRYpxS4u6clblBoDdzzvHi8fmxKRzvMxPY/1WZWzomPZww0Anow==", "dev": true, "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.19", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.6.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" + "chalk": "^4.0.0", + "ci-info": "^2.0.0", + "compare-versions": "^3.6.0", + "cosmiconfig": "^7.0.0", + "find-versions": "^4.0.0", + "opencollective-postinstall": "^2.0.2", + "pkg-dir": "^5.0.0", + "please-upgrade-node": "^3.2.0", + "slash": "^3.0.0", + "which-pm-runs": "^1.0.0" }, "dependencies": { - "ansi-escapes": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", - "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", - "dev": true, - "requires": { - "type-fest": "^0.11.0" - } - }, - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -21810,30 +18864,15 @@ } }, "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -21843,103 +18882,56 @@ "color-name": "~1.1.4" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "requires": { - "mimic-fn": "^2.1.0" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" } }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "p-locate": "^5.0.0" } }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true - }, - "rxjs": { - "version": "6.6.3", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz", - "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==", + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "requires": { - "tslib": "^1.9.0" + "yocto-queue": "^0.1.0" } }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" + "p-limit": "^3.0.2" } }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "pkg-dir": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", "dev": true, "requires": { - "ansi-regex": "^5.0.0" + "find-up": "^5.0.0" } }, "supports-color": { @@ -21950,318 +18942,210 @@ "requires": { "has-flag": "^4.0.0" } - }, - "type-fest": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", - "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", - "dev": true } } }, - "internal-ip": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", - "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "optional": true, "requires": { - "default-gateway": "^4.2.0", - "ipaddr.js": "^1.9.0" - }, - "dependencies": { - "default-gateway": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", - "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "ip-regex": "^2.1.0" - } - } + "safer-buffer": ">= 2.1.2 < 3.0.0" } }, - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "dev": true + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "requires": {} }, - "ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true }, - "is-absolute-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", - "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", - "dev": true + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", + "dev": true, + "optional": true }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" } }, - "is-arguments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", - "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==", + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, - "optional": true, "requires": { - "binary-extensions": "^2.0.0" + "once": "^1.3.0", + "wrappy": "1" } }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "is-callable": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", - "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==", + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true }, - "is-ci": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", - "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", - "dev": true, - "requires": { - "ci-info": "^1.5.0" - } + "ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "dev": true }, - "is-color-stop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", - "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", - "dev": true, - "requires": { - "css-color-names": "^0.0.4", - "hex-color-regex": "^1.1.0", - "hsl-regex": "^1.0.0", - "hsla-regex": "^1.0.0", - "rgb-regex": "^1.0.1", - "rgba-regex": "^1.0.0" - } + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true }, - "is-core-module": { + "is-binary-path": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz", - "integrity": "sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "requires": { - "has": "^1.0.3" + "binary-extensions": "^2.0.0" } }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, "requires": { - "kind-of": "^3.0.2" + "ci-info": "^3.2.0" }, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } + "ci-info": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.7.0.tgz", + "integrity": "sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==", + "dev": true } } }, - "is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", - "dev": true - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", "dev": true, "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } + "has": "^1.0.3" } }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", - "dev": true - }, "is-docker": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", - "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==", - "dev": true - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true }, + "is-file-esm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-file-esm/-/is-file-esm-1.0.0.tgz", + "integrity": "sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==", + "dev": true, + "requires": { + "read-pkg-up": "^7.0.1" + } + }, "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true }, "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { "is-extglob": "^2.1.1" } }, "is-installed-globally": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz", - "integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "dev": true, "requires": { - "global-dirs": "^2.0.1", - "is-path-inside": "^3.0.1" - }, - "dependencies": { - "is-path-inside": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz", - "integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==", - "dev": true - } + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" } }, - "is-negative-zero": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz", - "integrity": "sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=", + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true }, "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true }, "is-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", - "dev": true - }, - "is-observable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz", - "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==", - "dev": true, - "requires": { - "symbol-observable": "^1.1.0" - } - }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", "dev": true }, - "is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", - "dev": true, - "requires": { - "is-path-inside": "^2.1.0" - } - }, "is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", - "dev": true, - "requires": { - "path-is-inside": "^1.0.2" - } + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true }, "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true }, "is-plain-object": { @@ -22272,61 +19156,22 @@ "isobject": "^3.0.1" } }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", - "dev": true - }, - "is-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", - "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", - "dev": true, - "requires": { - "has-symbols": "^1.0.1" - } - }, "is-regexp": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", - "dev": true - }, - "is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", "dev": true }, "is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", "dev": true }, - "is-svg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", - "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", - "dev": true, - "requires": { - "html-comment-regex": "^1.1.0" - } - }, - "is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.1" - } - }, "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "dev": true }, "is-unicode-supported": { @@ -22335,46 +19180,90 @@ "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", "dev": true }, "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", - "dev": true + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" }, "isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "dev": true + }, + "javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==", "dev": true }, - "javascript-stringify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.0.1.tgz", - "integrity": "sha512-yV+gqbd5vaOYjqlbk16EG89xB5udgjqQF3C5FAORDg4f/IS1Yc5ERCv5e/57yBcfJYw05V5JyIXabhwb75Xxow==", - "dev": true + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "joi": { + "version": "17.7.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.7.0.tgz", + "integrity": "sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } }, "js-message": { "version": "1.0.7", @@ -22389,9 +19278,9 @@ "dev": true }, "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "requires": { "argparse": "^1.0.7", @@ -22401,7 +19290,7 @@ "jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", "dev": true }, "jsesc": { @@ -22423,9 +19312,9 @@ "dev": true }, "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, "json-schema-traverse": { @@ -22437,151 +19326,149 @@ "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, "json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true - }, - "json3": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", - "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "dev": true }, "json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.2.tgz", + "integrity": "sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==", "dev": true }, "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "requires": { - "graceful-fs": "^4.1.6" + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" } }, "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", + "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", "dev": true, "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" } }, - "killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", - "dev": true - }, "kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, + "klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "dev": true + }, "launch-editor": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.2.1.tgz", - "integrity": "sha512-On+V7K2uZK6wK7x691ycSUbLD/FyKKelArkbaAMSSJU8JmqmhwN2+mnJDNINuJWSrh2L0kDk+ZQtbC/gOWUwLw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", "dev": true, "requires": { - "chalk": "^2.3.0", - "shell-quote": "^1.6.1" + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" } }, "launch-editor-middleware": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.2.1.tgz", - "integrity": "sha512-s0UO2/gEGiCgei3/2UN3SMuUj1phjQN8lcpnvgLSz26fAzNWPQ6Nf/kF5IFClnfU2ehp6LrmKdMU/beveO+2jg==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.6.0.tgz", + "integrity": "sha512-K2yxgljj5TdCeRN1lBtO3/J26+AIDDDw+04y6VAiZbWcTdBwsYN6RrZBnW5DN/QiSIdKNjKdATLUUluWWFYTIA==", "dev": true, "requires": { - "launch-editor": "^2.2.1" + "launch-editor": "^2.6.0" } }, "lazy-ass": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", - "integrity": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", "dev": true }, "less": { - "version": "3.12.2", - "resolved": "https://registry.npmjs.org/less/-/less-3.12.2.tgz", - "integrity": "sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", + "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", "dev": true, "requires": { + "copy-anything": "^2.0.1", "errno": "^0.1.1", "graceful-fs": "^4.1.2", "image-size": "~0.5.0", "make-dir": "^2.1.0", "mime": "^1.4.1", - "native-request": "^1.0.5", + "needle": "^3.1.0", + "parse-node-version": "^1.0.1", "source-map": "~0.6.0", - "tslib": "^1.10.0" + "tslib": "^2.3.0" }, "dependencies": { - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, - "optional": true + "optional": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, "optional": true }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true } } }, "less-loader": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-4.1.0.tgz", - "integrity": "sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-8.1.1.tgz", + "integrity": "sha512-K93jJU7fi3n6rxVvzp8Cb88Uy9tcQKfHlkoezHwKILXhlNYiRQl4yowLIkQqmBXOH/5I8yoKiYeIf781HGkW9g==", "dev": true, "requires": { - "clone": "^2.1.1", - "loader-utils": "^1.1.0", - "pify": "^3.0.0" - }, - "dependencies": { - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", - "dev": true - } + "klona": "^2.0.4" } }, "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" } }, + "lilconfig": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", + "dev": true + }, "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", @@ -22589,297 +19476,139 @@ "dev": true }, "lint-staged": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-8.2.1.tgz", - "integrity": "sha512-n0tDGR/rTCgQNwXnUf/eWIpPNddGWxC32ANTNYsj2k02iZb7Cz5ox2tytwBu+2r0zDXMEMKw7Y9OD/qsav561A==", - "dev": true, - "requires": { - "chalk": "^2.3.1", - "commander": "^2.14.1", - "cosmiconfig": "^5.2.0", - "debug": "^3.1.0", - "dedent": "^0.7.0", - "del": "^3.0.0", - "execa": "^1.0.0", - "g-status": "^2.0.2", - "is-glob": "^4.0.0", - "is-windows": "^1.0.2", - "listr": "^0.14.2", - "listr-update-renderer": "^0.5.0", - "lodash": "^4.17.11", - "log-symbols": "^2.2.0", - "micromatch": "^3.1.8", - "npm-which": "^3.0.1", - "p-map": "^1.1.1", - "path-is-inside": "^1.0.2", - "pify": "^3.0.0", - "please-upgrade-node": "^3.0.2", - "staged-git-files": "1.1.2", - "string-argv": "^0.0.2", - "stringify-object": "^3.2.2", - "yup": "^0.27.0" + "version": "11.2.6", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-11.2.6.tgz", + "integrity": "sha512-Vti55pUnpvPE0J9936lKl0ngVeTdSZpEdTNhASbkaWX7J5R9OEifo1INBGQuGW4zmy6OG+TcWPJ3m5yuy5Q8Tg==", + "dev": true, + "requires": { + "cli-truncate": "2.1.0", + "colorette": "^1.4.0", + "commander": "^8.2.0", + "cosmiconfig": "^7.0.1", + "debug": "^4.3.2", + "enquirer": "^2.3.6", + "execa": "^5.1.1", + "listr2": "^3.12.2", + "micromatch": "^4.0.4", + "normalize-path": "^3.0.0", + "please-upgrade-node": "^3.2.0", + "string-argv": "0.3.1", + "stringify-object": "3.3.0", + "supports-color": "8.1.1" }, "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "del": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", - "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", - "dev": true, - "requires": { - "globby": "^6.1.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "p-map": "^1.1.1", - "pify": "^3.0.0", - "rimraf": "^2.2.8" - } - }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true }, - "is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", - "dev": true, - "requires": { - "is-path-inside": "^1.0.0" - } - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "requires": { - "path-is-inside": "^1.0.1" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" } }, - "p-map": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz", - "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==", - "dev": true - } - } - }, - "listr": { - "version": "0.14.3", - "resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz", - "integrity": "sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==", - "dev": true, - "requires": { - "@samverschueren/stream-to-observable": "^0.3.0", - "is-observable": "^1.1.0", - "is-promise": "^2.1.0", - "is-stream": "^1.1.0", - "listr-silent-renderer": "^1.1.1", - "listr-update-renderer": "^0.5.0", - "listr-verbose-renderer": "^0.5.0", - "p-map": "^2.0.0", - "rxjs": "^6.3.3" - } - }, - "listr-silent-renderer": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz", - "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=", - "dev": true - }, - "listr-update-renderer": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz", - "integrity": "sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "cli-truncate": "^0.2.1", - "elegant-spinner": "^1.0.1", - "figures": "^1.7.0", - "indent-string": "^3.0.0", - "log-symbols": "^1.0.2", - "log-update": "^2.3.0", - "strip-ansi": "^3.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true }, - "figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.1.0" - } + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true }, - "log-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", - "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "requires": { - "chalk": "^1.0.0" + "path-key": "^3.0.0" } }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "requires": { - "ansi-regex": "^2.0.0" + "has-flag": "^4.0.0" } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true } } }, - "listr-verbose-renderer": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz", - "integrity": "sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "cli-cursor": "^2.1.0", - "date-fns": "^1.27.2", - "figures": "^2.0.0" - } - }, - "loader-fs-cache": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz", - "integrity": "sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==", + "listr2": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", + "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", "dev": true, "requires": { - "find-cache-dir": "^0.1.1", - "mkdirp": "^0.5.1" + "cli-truncate": "^2.1.0", + "colorette": "^2.0.16", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.5.1", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" }, "dependencies": { - "find-cache-dir": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", - "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "mkdirp": "^0.5.1", - "pkg-dir": "^1.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", - "dev": true, - "requires": { - "find-up": "^1.0.0" - } + "colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true } } }, "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "dev": true }, "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "requires": { "big.js": "^5.2.2", - "emojis-list": "^2.0.0", + "emojis-list": "^3.0.0", "json5": "^1.0.1" }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" @@ -22888,19 +19617,24 @@ } }, "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "p-locate": "^4.1.0" } }, "lodash": { - "version": "4.17.20", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", - "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true }, "lodash.debounce": { "version": "4.0.8", @@ -22923,66 +19657,149 @@ "lodash.mapvalues": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz", - "integrity": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=", + "integrity": "sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==", "dev": true }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "lodash.once": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", "dev": true }, "lodash.throttle": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" }, - "lodash.transform": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz", - "integrity": "sha1-EjBkIvYzJK7YSD0/ODMrX2cFR6A=", + "lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true }, "lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true }, "log-symbols": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", - "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, "requires": { - "chalk": "^2.0.1" + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, "log-update": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", - "integrity": "sha1-iDKP19HOeTiykoN0bwsbwSayRwg=", - "dev": true, - "requires": { - "ansi-escapes": "^3.0.0", - "cli-cursor": "^2.0.0", - "wrap-ansi": "^3.0.1" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" }, "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, "wrap-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", - "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" } } } @@ -22996,67 +19813,31 @@ "chalk": "^2.3.0" } }, - "loglevel": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", - "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==", - "dev": true - }, "lower-case": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=", - "dev": true - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - } + "tslib": "^2.0.3" } }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "requires": { - "object-visit": "^1.0.0" + "yallist": "^4.0.0" } }, - "matcher": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/matcher/-/matcher-1.1.1.tgz", - "integrity": "sha512-+BmqxWIubKTRKNWx/ahnCkk3mG8m7OturVlqq6HiojGJTd5hVYbgZm6WzcYPCoB+KBT4Vd6R7WSRG2OADNaCjg==", + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { - "escape-string-regexp": "^1.0.4" + "semver": "^6.0.0" } }, "material-colors": { @@ -23064,43 +19845,31 @@ "resolved": "https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz", "integrity": "sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==" }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, "mdn-data": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", - "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", "dev": true }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "memfs": { + "version": "3.4.12", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.12.tgz", + "integrity": "sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw==", "dev": true, "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" + "fs-monkey": "^1.0.3" } }, "merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, "merge-source-map": { @@ -23110,14 +19879,6 @@ "dev": true, "requires": { "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } } }, "merge-stream": { @@ -23135,108 +19896,92 @@ "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true }, "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - } + "braces": "^3.0.2", + "picomatch": "^2.3.1" } }, "mime": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz", - "integrity": "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true }, "mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true }, "mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "requires": { - "mime-db": "1.44.0" + "mime-db": "1.52.0" } }, "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, "mini-css-extract-plugin": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz", - "integrity": "sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==", + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz", + "integrity": "sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==", "dev": true, "requires": { - "loader-utils": "^1.1.0", - "normalize-url": "1.9.1", - "schema-utils": "^1.0.0", - "webpack-sources": "^1.1.0" + "schema-utils": "^4.0.0" }, "dependencies": { - "normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "requires": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "schema-utils": { + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" } } } @@ -23247,139 +19992,72 @@ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", - "dev": true - }, "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true }, "minipass": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", - "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, "requires": { "yallist": "^4.0.0" - }, - "dependencies": { - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", - "dev": true, - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } } }, "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "requires": { - "minimist": "^1.2.5" + "minimist": "^1.2.6" } }, + "module-alias": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz", + "integrity": "sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==", + "dev": true + }, "moment": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", - "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, - "move-concurrently": { + "mrmime": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "dev": true }, "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, "requires": { - "dns-packet": "^1.3.1", + "dns-packet": "^5.2.2", "thunky": "^1.0.2" } }, - "multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", - "dev": true - }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true - }, "mz": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", @@ -23391,42 +20069,45 @@ "thenify-all": "^1.0.0" } }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - } - }, - "native-request": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.0.8.tgz", - "integrity": "sha512-vU2JojJVelUGp6jRcLwToPoWGxSx23z/0iX+I77J3Ht17rf2INGjrhOoQnjVo60nQd8wVsgzKkPfRXBiVdD2ag==", - "dev": true, - "optional": true + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, + "needle": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", + "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "dev": true, + "optional": true, + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true }, "neo-async": { @@ -23442,63 +20123,34 @@ "dev": true }, "no-case": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", - "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dev": true, "requires": { - "lower-case": "^1.1.1" + "whatwg-url": "^5.0.0" } }, "node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dev": true, - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true - } - } - }, "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz", + "integrity": "sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==", "dev": true }, "normalize-package-data": { @@ -23511,6 +20163,14 @@ "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "normalize-path": { @@ -23522,210 +20182,71 @@ "normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true }, "normalize-url": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", - "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true }, - "npm-path": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/npm-path/-/npm-path-2.0.4.tgz", - "integrity": "sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==", - "dev": true, - "requires": { - "which": "^1.2.10" - } - }, "npm-run-path": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", "dev": true, "requires": { "path-key": "^2.0.0" - } - }, - "npm-which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/npm-which/-/npm-which-3.0.1.tgz", - "integrity": "sha1-kiXybsOihcIJyuZ8OxGmtKtxQKo=", - "dev": true, - "requires": { - "commander": "^2.9.0", - "npm-path": "^2.0.2", - "which": "^1.2.10" - } - }, - "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "dev": true, - "requires": { - "boolbase": "~1.0.0" - } - }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", - "dev": true - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dev": true, - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true } } }, - "object-hash": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz", - "integrity": "sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==", + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true }, "object-inspect": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", - "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", "dev": true }, - "object-is": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.3.tgz", - "integrity": "sha512-teyqLvFWzLkq5B9ki8FVWA902UER2qkxmdA4nLf+wjOLAWgxzCWZNCxpDq9MvE8MmhWNr+I8w3BN49Vx36Y6Xg==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1" - }, - "dependencies": { - "es-abstract": { - "version": "1.18.0-next.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz", - "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==", - "dev": true, - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.0", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" - } - } - } - }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "dev": true, - "requires": { - "isobject": "^3.0.0" - } - }, "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dev": true, "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" } }, - "object.getownpropertydescriptors": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz", - "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "object.values": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz", - "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1", - "function-bind": "^1.1.1", - "has": "^1.0.3" - } - }, "obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", @@ -23733,9 +20254,9 @@ "dev": true }, "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "requires": { "ee-first": "1.1.1" @@ -23750,121 +20271,130 @@ "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "requires": { "wrappy": "1" } }, "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "requires": { - "mimic-fn": "^1.0.0" + "mimic-fn": "^2.1.0" } }, "open": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", - "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", "dev": true, "requires": { - "is-wsl": "^1.1.0" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" } }, + "opencollective-postinstall": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz", + "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==", + "dev": true + }, "opener": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", "dev": true }, - "opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", - "dev": true, - "requires": { - "is-wsl": "^1.1.0" - } - }, "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.4", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "wordwrap": "~1.0.0" + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" } }, "ora": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", - "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, "requires": { - "chalk": "^2.4.2", - "cli-cursor": "^2.1.0", - "cli-spinners": "^2.0.0", - "log-symbols": "^2.2.0", - "strip-ansi": "^5.2.0", + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" }, "dependencies": { - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "ansi-regex": "^4.1.0" + "has-flag": "^4.0.0" } } } }, - "original": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", - "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", - "dev": true, - "requires": { - "url-parse": "^1.4.3" - } - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", - "dev": true - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, "ospath": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", - "integrity": "sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=", + "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", "dev": true }, "p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true }, "p-limit": { @@ -23877,27 +20407,31 @@ } }, "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { - "p-limit": "^2.0.0" + "p-limit": "^2.2.0" } }, "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } }, "p-retry": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", - "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "dev": true, "requires": { - "retry": "^0.12.0" + "@types/retry": "0.12.0", + "retry": "^0.13.1" } }, "p-try": { @@ -23906,30 +20440,14 @@ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true - }, - "parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", - "dev": true, - "requires": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - } - }, "param-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", - "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, "requires": { - "no-case": "^2.2.0" + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, "parent-module": { @@ -23939,39 +20457,26 @@ "dev": true, "requires": { "callsites": "^3.0.0" - }, - "dependencies": { - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - } - } - }, - "parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dev": true, - "requires": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" } }, "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "requires": { + "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" } }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, "parse5": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", @@ -24001,135 +20506,88 @@ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true - }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "dev": true + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } }, "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true }, "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true }, "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "pbkdf2": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", - "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", - "dev": true, - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true }, "pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "dev": true }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", "dev": true }, "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "picomatch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "dev": true, - "optional": true - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "^2.0.0" - } - }, "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { - "find-up": "^3.0.0" + "find-up": "^4.0.0" } }, "please-upgrade-node": { @@ -24141,31 +20599,31 @@ "semver-compare": "^1.0.0" } }, - "pnp-webpack-plugin": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", - "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", - "dev": true, - "requires": { - "ts-pnp": "^1.1.6" - } - }, "popper.js": { "version": "1.16.1", "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" }, "portfinder": { - "version": "1.0.28", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", - "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", "dev": true, "requires": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" }, "dependencies": { + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, "debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", @@ -24177,615 +20635,352 @@ } } }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "dev": true - }, "postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", - "dev": true, + "version": "8.4.20", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz", + "integrity": "sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" } }, "postcss-calc": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", - "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", "dev": true, "requires": { - "postcss": "^7.0.27", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.0.2" + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" } }, "postcss-colormin": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", - "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", + "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", "dev": true, "requires": { - "browserslist": "^4.0.0", - "color": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" } }, "postcss-convert-values": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", - "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", "dev": true, - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "requires": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" } }, "postcss-discard-comments": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", - "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", "dev": true, - "requires": { - "postcss": "^7.0.0" - } + "requires": {} }, "postcss-discard-duplicates": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", - "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", "dev": true, - "requires": { - "postcss": "^7.0.0" - } + "requires": {} }, "postcss-discard-empty": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", - "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", "dev": true, - "requires": { - "postcss": "^7.0.0" - } + "requires": {} }, "postcss-discard-overridden": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", - "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", - "dev": true, - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-load-config": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", - "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", "dev": true, - "requires": { - "cosmiconfig": "^5.0.0", - "import-cwd": "^2.0.0" - } + "requires": {} }, "postcss-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", - "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", "dev": true, "requires": { - "loader-utils": "^1.1.0", - "postcss": "^7.0.0", - "postcss-load-config": "^2.0.0", - "schema-utils": "^1.0.0" + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" }, "dependencies": { - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "lru-cache": "^6.0.0" } } } }, "postcss-merge-longhand": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", - "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", "dev": true, "requires": { - "css-color-names": "0.0.4", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "stylehacks": "^4.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" } }, "postcss-merge-rules": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", - "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz", + "integrity": "sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==", "dev": true, "requires": { - "browserslist": "^4.0.0", + "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", - "cssnano-util-same-parent": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0", - "vendors": "^1.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" } }, "postcss-minify-font-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", - "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", "dev": true, "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0" } }, "postcss-minify-gradients": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", - "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", "dev": true, "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "is-color-stop": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" } }, "postcss-minify-params": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", - "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", "dev": true, "requires": { - "alphanum-sort": "^1.0.0", - "browserslist": "^4.0.0", - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "uniqs": "^2.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" } }, "postcss-minify-selectors": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", - "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", "dev": true, "requires": { - "alphanum-sort": "^1.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "postcss-selector-parser": "^6.0.5" } }, "postcss-modules-extract-imports": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", - "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", "dev": true, - "requires": { - "postcss": "^7.0.5" - } + "requires": {} }, "postcss-modules-local-by-default": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", - "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", "dev": true, "requires": { - "icss-utils": "^4.1.1", - "postcss": "^7.0.32", + "icss-utils": "^5.0.0", "postcss-selector-parser": "^6.0.2", "postcss-value-parser": "^4.1.0" } }, "postcss-modules-scope": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", - "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", "dev": true, "requires": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^6.0.0" + "postcss-selector-parser": "^6.0.4" } }, "postcss-modules-values": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", - "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, "requires": { - "icss-utils": "^4.0.0", - "postcss": "^7.0.6" + "icss-utils": "^5.0.0" } }, "postcss-normalize-charset": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", - "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", "dev": true, - "requires": { - "postcss": "^7.0.0" - } + "requires": {} }, "postcss-normalize-display-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", - "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", "dev": true, "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-positions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", - "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", "dev": true, "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-repeat-style": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", - "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", "dev": true, "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-string": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", - "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", "dev": true, "requires": { - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-timing-functions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", - "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", "dev": true, "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-unicode": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", - "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", "dev": true, "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-url": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", - "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", "dev": true, "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-whitespace": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", - "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", "dev": true, "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0" } }, "postcss-ordered-values": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", - "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", "dev": true, "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" } }, "postcss-reduce-initial": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", - "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz", + "integrity": "sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==", "dev": true, "requires": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" } }, "postcss-reduce-transforms": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", - "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", "dev": true, "requires": { - "cssnano-util-get-match": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0" } }, "postcss-selector-parser": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", - "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", "dev": true, "requires": { "cssesc": "^3.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1", "util-deprecate": "^1.0.2" } }, "postcss-svgo": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", - "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", "dev": true, "requires": { - "is-svg": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "svgo": "^1.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" } }, "postcss-unique-selectors": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", - "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", "dev": true, "requires": { - "alphanum-sort": "^1.0.0", - "postcss": "^7.0.0", - "uniqs": "^2.0.0" + "postcss-selector-parser": "^6.0.5" } }, "postcss-value-parser": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", - "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, "prettier": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", - "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==", - "dev": true, - "optional": true + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", + "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", + "dev": true }, "prettier-linter-helpers": { "version": "1.0.0", @@ -24797,27 +20992,21 @@ } }, "pretty-bytes": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.4.1.tgz", - "integrity": "sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "dev": true }, "pretty-error": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", - "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", "dev": true, "requires": { "lodash": "^4.17.20", - "renderkid": "^2.0.4" + "renderkid": "^3.0.0" } }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true - }, "process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", @@ -24830,68 +21019,163 @@ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "property-expr": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-1.5.1.tgz", - "integrity": "sha512-CGuc0VUTGthpJXL36ydB6jnbyOf/rAHFvmVrJlH+Rg0DqqLFQGAP6hIaxD/G0OAmBJPhXDHuEJigrp0e0wFV6g==", - "dev": true + "progress-webpack-plugin": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz", + "integrity": "sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==", + "dev": true, + "requires": { + "chalk": "^2.1.0", + "figures": "^2.0.0", + "log-update": "^2.3.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true + }, + "log-update": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", + "integrity": "sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==", + "dev": true, + "requires": { + "ansi-escapes": "^3.0.0", + "cli-cursor": "^2.0.0", + "wrap-ansi": "^3.0.1" + } + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", + "integrity": "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==", + "dev": true, + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" + } + } + } }, "proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, "requires": { - "forwarded": "~0.1.2", + "forwarded": "0.2.0", "ipaddr.js": "1.9.1" + }, + "dependencies": { + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + } } }, + "proxy-from-env": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", + "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", + "dev": true + }, "prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", - "dev": true + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true }, "pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", "dev": true }, "psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", "dev": true }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - }, - "dependencies": { - "bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - } - } - }, "pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", @@ -24902,79 +21186,25 @@ "once": "^1.3.1" } }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - }, - "dependencies": { - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } - } - }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, - "q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "dev": true - }, "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true - }, - "query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "version": "6.10.4", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", + "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", "dev": true, "requires": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" + "side-channel": "^1.0.4" } }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", - "dev": true - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", - "dev": true - }, - "querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "ramda": { - "version": "0.26.1", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.26.1.tgz", - "integrity": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==", + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, "randombytes": { @@ -24986,16 +21216,6 @@ "safe-buffer": "^5.1.0" } }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, - "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, "range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", @@ -25003,15 +21223,32 @@ "dev": true }, "raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.2", + "bytes": "3.1.2", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } } }, "read-pkg": { @@ -25026,41 +21263,49 @@ "type-fest": "^0.6.0" }, "dependencies": { - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true } } }, "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, "readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, - "optional": true, "requires": { "picomatch": "^2.2.1" } @@ -25081,44 +21326,29 @@ } }, "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", - "dev": true + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" }, "regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", "dev": true, "requires": { "@babel/runtime": "^7.8.4" } }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "regexp.prototype.flags": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", - "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - } + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true }, "regexpu-core": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz", - "integrity": "sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz", + "integrity": "sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==", "dev": true, "requires": { "regenerate": "^1.4.2", @@ -25126,7 +21356,7 @@ "regjsgen": "^0.7.1", "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" + "unicode-match-property-value-ecmascript": "^2.1.0" } }, "regjsgen": { @@ -25155,117 +21385,26 @@ "relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", - "dev": true - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", "dev": true }, "renderkid": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.4.tgz", - "integrity": "sha512-K2eXrSOJdq+HuKzlcjOlGoOarUu5SDguDEhE7+Ah4zuOWL40j8A/oHvLlLob9PSTNvVnBd+/q0Er1QfpEuem5g==", - "dev": true, - "requires": { - "css-select": "^1.1.0", - "dom-converter": "^0.2", - "htmlparser2": "^3.3.0", - "lodash": "^4.17.20", - "strip-ansi": "^3.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "dev": true, - "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", - "dev": true - }, - "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "dev": true, - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true - }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", "dev": true, "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" } }, "request-progress": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", - "integrity": "sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=", + "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", "dev": true, "requires": { "throttleit": "^1.0.0" @@ -25274,147 +21413,99 @@ "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true }, - "require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true }, "requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, "resolve": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", - "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", - "dev": true, - "requires": { - "is-core-module": "^2.1.0", - "path-parse": "^1.0.6" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "dev": true, "requires": { - "resolve-from": "^3.0.0" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" } }, "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true }, "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "requires": { - "onetime": "^2.0.0", + "onetime": "^5.1.0", "signal-exit": "^3.0.2" } }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true - }, "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "dev": true }, - "rgb-regex": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", - "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true }, - "rgba-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", - "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", "dev": true }, "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "requires": { "glob": "^7.1.3" } }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "run-async": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", - "dev": true, - "requires": { - "is-promise": "^2.1.0" - } - }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "requires": { - "aproba": "^1.1.1" + "queue-microtask": "^1.2.2" } }, "rxjs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.1.tgz", - "integrity": "sha512-y0j31WJc83wPu31vS1VlAFW5JGrnGC+j+TtGAa1fRQphy48+fDYiDmX8tjGloToEsMkxnouOg/1IzXGKkJnZMg==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", + "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", "dev": true, "requires": { - "tslib": "^1.9.0" + "tslib": "^2.1.0" } }, "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "dev": true, - "requires": { - "ret": "~0.1.10" - } - }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -25425,7 +21516,8 @@ "version": "1.2.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true + "dev": true, + "optional": true }, "schema-utils": { "version": "2.7.1", @@ -25441,49 +21533,55 @@ "select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", "dev": true }, "selfsigned": { - "version": "1.10.8", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", - "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", "dev": true, "requires": { - "node-forge": "^0.10.0" + "node-forge": "^1" } }, "semver": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", - "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, "semver-compare": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "dev": true + }, + "semver-regex": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.4.tgz", + "integrity": "sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==", "dev": true }, "send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, "requires": { "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", + "depd": "2.0.0", + "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "~1.7.2", + "http-errors": "2.0.0", "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", + "ms": "2.1.3", + "on-finished": "2.4.1", "range-parser": "~1.2.1", - "statuses": "~1.5.0" + "statuses": "2.0.1" }, "dependencies": { "debug": { @@ -25498,23 +21596,23 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true } } }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true } } }, "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", "dev": true, "requires": { "randombytes": "^2.1.0" @@ -25523,7 +21621,7 @@ "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, "requires": { "accepts": "~1.3.4", @@ -25544,10 +21642,16 @@ "ms": "2.0.0" } }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true + }, "http-errors": { "version": "1.6.3", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "dev": true, "requires": { "depd": "~1.1.2", @@ -25556,10 +21660,16 @@ "statuses": ">= 1.4.0 < 2" } }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "setprototypeof": { @@ -25567,72 +21677,33 @@ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true } } }, "serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.17.1" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } + "send": "0.18.0" } }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "dev": true - }, "setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, "shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", @@ -25642,238 +21713,100 @@ } }, "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { - "shebang-regex": "^1.0.0" + "shebang-regex": "^3.0.0" } }, "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==", - "dev": true - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.4.tgz", + "integrity": "sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==", "dev": true }, - "simple-git": { - "version": "1.126.0", - "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-1.126.0.tgz", - "integrity": "sha512-47mqHxgZnN8XRa9HbpWprzUv3Ooqz9RY/LSZgvA7jCkW8jcwLahMz7LKugY91KZehfG0sCVPtgXiU72hd6b1Bw==", + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dev": true, "requires": { - "debug": "^4.0.1" + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" } }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "sirv": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", + "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", "dev": true, "requires": { - "is-arrayish": "^0.3.1" - }, - "dependencies": { - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "dev": true - } + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^1.0.0" } }, "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "is-descriptor": "^0.1.0" + "color-convert": "^2.0.1" } }, - "extend-shallow": { + "color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "requires": { - "kind-of": "^3.2.0" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "is-buffer": "^1.1.5" + "color-name": "~1.1.4" } } } }, "sockjs": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.20.tgz", - "integrity": "sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==", - "dev": true, - "requires": { - "faye-websocket": "^0.10.0", - "uuid": "^3.4.0", - "websocket-driver": "0.6.5" - } - }, - "sockjs-client": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", - "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", - "dev": true, - "requires": { - "debug": "^3.2.5", - "eventsource": "^1.0.7", - "faye-websocket": "~0.11.1", - "inherits": "^2.0.3", - "json3": "^3.3.2", - "url-parse": "^1.4.3" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - } - } - }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, "requires": { - "is-plain-obj": "^1.0.0" + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" } }, "sortablejs": { @@ -25881,55 +21814,26 @@ "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.10.2.tgz", "integrity": "sha512-YkPGufevysvfwn5rfdlGyrGjt7/CRHwvRPogD/lC+TnvcN29jDpCifKP+rBqf+LRldfXSTh+0CGLcSg0VIxq3A==" }, - "source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "dev": true - }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, - "source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", - "dev": true, - "requires": { - "atob": "^2.1.1", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" }, "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "requires": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } } }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", - "dev": true - }, "spdx-correct": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", @@ -25987,40 +21891,18 @@ "obuf": "^1.1.2", "readable-stream": "^3.0.6", "wbuf": "^1.7.3" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.0" } }, "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true }, "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", "dev": true, "requires": { "asn1": "~0.2.3", @@ -26035,12 +21917,12 @@ } }, "ssri": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", - "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", "dev": true, "requires": { - "figgy-pudding": "^3.5.1" + "minipass": "^3.1.1" } }, "stable": { @@ -26050,132 +21932,41 @@ "dev": true }, "stackframe": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", - "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==", + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", "dev": true }, - "staged-git-files": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/staged-git-files/-/staged-git-files-1.1.2.tgz", - "integrity": "sha512-0Eyrk6uXW6tg9PYkhi/V/J4zHp33aNyi2hOCmhFLqLTIhbgqWn5jlSzI+IU0VqrZq6+DbHcabQl/WP6P3BG0QA==", - "dev": true - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "dev": true, - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "dev": true - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dev": true, - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dev": true, - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true }, "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "dev": true, "requires": { - "safe-buffer": "~5.1.0" + "safe-buffer": "~5.2.0" } }, "string-argv": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.0.2.tgz", - "integrity": "sha1-2sMECGkMIfPDYwo/86BYd73L1zY=", + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", "dev": true }, "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" } }, "stringify-object": { @@ -26190,18 +21981,18 @@ } }, "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { - "ansi-regex": "^3.0.0" + "ansi-regex": "^5.0.1" } }, "strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", "dev": true }, "strip-final-newline": { @@ -26213,37 +22004,23 @@ "strip-indent": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz", - "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=", + "integrity": "sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA==", "dev": true }, "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, "stylehacks": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", - "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", "dev": true, "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" } }, "supports-color": { @@ -26255,6 +22032,12 @@ "has-flag": "^3.0.0" } }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, "svg-tags": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", @@ -26262,103 +22045,146 @@ "dev": true }, "svgo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", - "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", "dev": true, "requires": { - "chalk": "^2.4.1", - "coa": "^2.0.2", - "css-select": "^2.0.0", - "css-select-base-adapter": "^0.1.1", - "css-tree": "1.0.0-alpha.37", - "csso": "^4.0.2", - "js-yaml": "^3.13.1", - "mkdirp": "~0.5.1", - "object.values": "^1.1.0", - "sax": "~1.2.4", - "stable": "^0.1.8", - "unquote": "~1.1.1", - "util.promisify": "~1.0.0" + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + } } }, - "symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", - "dev": true - }, - "synchronous-promise": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.9.tgz", - "integrity": "sha512-LO95GIW16x69LuND1nuuwM4pjgFGupg7pZ/4lU86AmchPKrhk0o2tpMU2unXRrqo81iAFe1YJ0nAGEVwsrZAgg==", - "dev": true + "table": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", + "dev": true, + "requires": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + } + } }, "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "dev": true }, "terser": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", - "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz", + "integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==", "dev": true, "requires": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" + "source-map-support": "~0.5.20" }, "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true } } }, "terser-webpack-plugin": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", - "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", "dev": true, "requires": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" + "@jridgewell/trace-mapping": "^0.3.14", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.14.1" }, "dependencies": { "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true } } }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, "thenify": { @@ -26373,149 +22199,111 @@ "thenify-all": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", "dev": true, "requires": { "thenify": ">= 3.1.0 < 4" } }, "thread-loader": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-2.1.3.tgz", - "integrity": "sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-3.0.4.tgz", + "integrity": "sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==", "dev": true, "requires": { - "loader-runner": "^2.3.1", - "loader-utils": "^1.1.0", - "neo-async": "^2.6.0" + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.1.0", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } } }, "throttleit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=", + "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", "dev": true }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, "thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, - "timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", - "dev": true, - "requires": { - "setimmediate": "^1.0.4" - } - }, - "timsort": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", - "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", - "dev": true - }, "tinycolor2": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==" }, "tinymce": { - "version": "4.9.11", - "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-4.9.11.tgz", - "integrity": "sha512-nkSLsax+VY5DBRjMFnHFqPwTnlLEGHCco82FwJF2JNH6W+5/ClvNC1P4uhD5lXPDNiDykSHR0XJdEh7w/ICHzA==" + "version": "5.10.7", + "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-5.10.7.tgz", + "integrity": "sha512-9UUjaO0R7FxcFo0oxnd1lMs7H+D0Eh+dDVo5hKbVe1a+VB0nit97vOqlinj+YwgoBDt6/DSCUoWqAYlLI8BLYA==" }, "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", "dev": true, "requires": { - "os-tmpdir": "~1.0.2" + "rimraf": "^3.0.0" } }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", - "dev": true - }, "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } - }, "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "is-number": "^7.0.0" } }, "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true }, - "toposort": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz", - "integrity": "sha1-LmhELZ9k7HILjMieZEOsbKqVACk=", + "totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", + "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==", "dev": true }, "tough-cookie": { @@ -26528,34 +22316,22 @@ "punycode": "^2.1.1" } }, - "tryer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", - "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", - "dev": true - }, - "ts-pnp": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", - "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, "tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", - "dev": true - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", "dev": true }, "tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, "requires": { "safe-buffer": "^5.0.1" @@ -26564,22 +22340,22 @@ "tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", "dev": true }, "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "requires": { - "prelude-ls": "~1.1.2" + "prelude-ls": "^1.2.1" } }, "type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true }, "type-is": { @@ -26592,36 +22368,6 @@ "mime-types": "~2.1.24" } }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", - "dev": true - }, - "uglify-js": { - "version": "3.4.10", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", - "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", - "dev": true, - "requires": { - "commander": "~2.19.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "commander": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, "unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", @@ -26639,9 +22385,9 @@ } }, "unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", "dev": true }, "unicode-property-aliases-ecmascript": { @@ -26650,249 +22396,84 @@ "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } - }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", - "dev": true - }, - "uniqs": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", - "dev": true - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true }, "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "dev": true - }, - "unquote": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "dev": true, - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true - } - } - }, "untildify": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", "dev": true }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true - }, "update-browserslist-db": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz", - "integrity": "sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==", + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", "dev": true, "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" - } - }, - "upper-case": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=", - "dev": true - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "dev": true - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dev": true, - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", - "dev": true - } - } - }, - "url-loader": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz", - "integrity": "sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==", - "dev": true, - "requires": { - "loader-utils": "^1.2.3", - "mime": "^2.4.4", - "schema-utils": "^2.5.0" - } - }, - "url-parse": { - "version": "1.4.7", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", - "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", - "dev": true, - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true + } }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "requires": { - "inherits": "2.0.3" + "punycode": "^2.1.0" } }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "util.promisify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", - "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.2", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.0" - } - }, "utila": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", "dev": true }, "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true }, "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true }, "v-tooltip": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/v-tooltip/-/v-tooltip-2.0.3.tgz", - "integrity": "sha512-KZZY3s+dcijzZmV2qoDH4rYmjMZ9YKGBVoUznZKQX0e3c2GjpJm3Sldzz8HHH2Ud87JqhZPB4+4gyKZ6m98cKQ==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/v-tooltip/-/v-tooltip-2.1.3.tgz", + "integrity": "sha512-xXngyxLQTOx/yUEy50thb8te7Qo4XU6h4LZB6cvEfVd9mnysUxLEoYwGWDdqR+l69liKsy3IPkdYff3J1gAJ5w==", "requires": { - "lodash": "^4.17.15", - "popper.js": "^1.16.0", - "vue-resize": "^0.4.5" + "@babel/runtime": "^7.13.10", + "lodash": "^4.17.21", + "popper.js": "^1.16.1", + "vue-resize": "^1.0.1" } }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, "validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", @@ -26906,19 +22487,13 @@ "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "dev": true - }, - "vendors": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", - "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true }, "verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "dev": true, "requires": { "assert-plus": "^1.0.0", @@ -26926,21 +22501,20 @@ "extsprintf": "^1.2.0" } }, - "vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", - "dev": true - }, "vue": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.12.tgz", - "integrity": "sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg==" + "version": "2.7.14", + "resolved": "https://registry.npmjs.org/vue/-/vue-2.7.14.tgz", + "integrity": "sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==", + "requires": { + "@vue/compiler-sfc": "2.7.14", + "csstype": "^3.1.0" + } }, "vue-autosuggest": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/vue-autosuggest/-/vue-autosuggest-2.2.0.tgz", - "integrity": "sha512-cHgEakpoRUOaqXXEo8RcRrbSTM3eAaCu9b55ZXiKbaS6IUD8ewqffQrMy/A1DXqHSQbyEEGui4oAsCbRge29Jg==" + "integrity": "sha512-cHgEakpoRUOaqXXEo8RcRrbSTM3eAaCu9b55ZXiKbaS6IUD8ewqffQrMy/A1DXqHSQbyEEGui4oAsCbRge29Jg==", + "requires": {} }, "vue-chartjs": { "version": "3.5.1", @@ -26951,9 +22525,9 @@ } }, "vue-color": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/vue-color/-/vue-color-2.7.1.tgz", - "integrity": "sha512-u3yl46B2eEej9zfAOIRRSphX1QfeNQzMwO82EIA+aoi0AKX3o1KcfsmMzm4BFkkj2ukCxLVfQ41k7g1gSI7SlA==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/vue-color/-/vue-color-2.8.1.tgz", + "integrity": "sha512-BoLCEHisXi2QgwlhZBg9UepvzZZmi4176vbr+31Shen5WWZwSLVgdScEPcB+yrAtuHAz42309C0A4+WiL9lNBw==", "requires": { "clamp": "^1.0.1", "lodash.throttle": "^4.0.0", @@ -26961,6 +22535,65 @@ "tinycolor2": "^1.1.2" } }, + "vue-eslint-parser": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz", + "integrity": "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==", + "dev": true, + "requires": { + "debug": "^4.3.2", + "eslint-scope": "^7.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.0.0", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.5" + }, + "dependencies": { + "eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true + }, + "espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "dev": true, + "requires": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, "vue-hot-reload-api": { "version": "2.3.4", "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", @@ -26970,35 +22603,14 @@ "vue-js-modal": { "version": "1.3.35", "resolved": "https://registry.npmjs.org/vue-js-modal/-/vue-js-modal-1.3.35.tgz", - "integrity": "sha512-DKtxUCW/oprM/ndn9h/cnVgsmqjQ/ARy5rH4q/11Pas04og2td+sltl91H/rlwXTwJIqWyt+lJizK5o4ErjWIQ==" + "integrity": "sha512-DKtxUCW/oprM/ndn9h/cnVgsmqjQ/ARy5rH4q/11Pas04og2td+sltl91H/rlwXTwJIqWyt+lJizK5o4ErjWIQ==", + "requires": {} }, "vue-loader": { - "version": "15.9.5", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.9.5.tgz", - "integrity": "sha512-oeMOs2b5o5gRqkxfds10bCx6JeXYTwivRgbb8hzOrcThD2z1+GqEKE3EX9A2SGbsYDf4rXwRg6D5n1w0jO5SwA==", - "dev": true, - "requires": { - "@vue/component-compiler-utils": "^3.1.0", - "hash-sum": "^1.0.2", - "loader-utils": "^1.1.0", - "vue-hot-reload-api": "^2.3.0", - "vue-style-loader": "^4.1.0" - }, - "dependencies": { - "hash-sum": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", - "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", - "dev": true - } - } - }, - "vue-loader-v16": { - "version": "npm:vue-loader@16.8.3", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.8.3.tgz", - "integrity": "sha512-7vKN45IxsKxe5GcVCbc2qFU5aWzyiLrYJyUuMz4BQLKctCj/fmCa0w6fGiiQ2cLFetNcek1ppGJQDCup0c1hpA==", + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-17.0.1.tgz", + "integrity": "sha512-/OOyugJnImKCkAKrAvdsWMuwoCqGxWT5USLsjohzWbMgOwpA5wQmzQiLMzZd7DjhIfunzAGIApTOgIylz/kwcg==", "dev": true, - "optional": true, "requires": { "chalk": "^4.1.0", "hash-sum": "^2.0.0", @@ -27010,7 +22622,6 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "optional": true, "requires": { "color-convert": "^2.0.1" } @@ -27020,7 +22631,6 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "optional": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -27031,38 +22641,21 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "optional": true, "requires": { "color-name": "~1.1.4" } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "optional": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true, - "optional": true - }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "optional": true + "dev": true }, "loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, - "optional": true, "requires": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", @@ -27074,7 +22667,6 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "optional": true, "requires": { "has-flag": "^4.0.0" } @@ -27082,9 +22674,12 @@ } }, "vue-resize": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-0.4.5.tgz", - "integrity": "sha512-bhP7MlgJQ8TIkZJXAfDf78uJO+mEI3CaLABLjv0WNzr4CcGRGPIAItyWYnP6LsPA4Oq0WE+suidNs6dgpO4RHg==" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-1.0.1.tgz", + "integrity": "sha512-z5M7lJs0QluJnaoMFTIeGx6dIkYxOwHThlZDeQnWZBizKblb99GSejPnK37ZbNE/rVwDcYcHY+Io+AxdpY952w==", + "requires": { + "@babel/runtime": "^7.13.10" + } }, "vue-scrollto": { "version": "2.20.0", @@ -27095,9 +22690,9 @@ } }, "vue-style-loader": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.2.tgz", - "integrity": "sha512-0ip8ge6Gzz/Bk0iHovU9XAUQaFt/G2B61bnWa2tCcqqdgfHs1lF9xXorFbE55Gmy92okFT+8bfmySuUOu13vxQ==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", "dev": true, "requires": { "hash-sum": "^1.0.2", @@ -27107,19 +22702,19 @@ "hash-sum": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", - "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", "dev": true } } }, "vue-template-compiler": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz", - "integrity": "sha512-OzzZ52zS41YUbkCBfdXShQTe69j1gQDZ9HIX8miuC9C3rBCk9wIRjLiZZLrmX9V+Ftq/YEyv1JaVr5Y/hNtByg==", + "version": "2.7.14", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz", + "integrity": "sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==", "dev": true, "requires": { "de-indent": "^1.0.2", - "he": "^1.1.0" + "he": "^1.2.0" } }, "vue-template-es2015-compiler": { @@ -27145,130 +22740,13 @@ } }, "watchpack": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", - "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", - "dev": true, - "requires": { - "chokidar": "^3.4.1", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0", - "watchpack-chokidar2": "^2.0.1" - } - }, - "watchpack-chokidar2": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", - "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, - "optional": true, "requires": { - "chokidar": "^2.1.8" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "optional": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "optional": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true, - "optional": true - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "optional": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "optional": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "optional": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dev": true, - "optional": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "optional": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - } + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" } }, "wbuf": { @@ -27289,448 +22767,322 @@ "defaults": "^1.0.3" } }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, "webpack": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", - "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/wasm-edit": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "acorn": "^6.4.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", + "version": "5.76.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.76.1.tgz", + "integrity": "sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.3.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.3", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.7.4", - "webpack-sources": "^1.4.1" - }, - "dependencies": { + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" } } } }, "webpack-bundle-analyzer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz", - "integrity": "sha512-Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA==", - "dev": true, - "requires": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1", - "bfj": "^6.1.1", - "chalk": "^2.4.1", - "commander": "^2.18.0", - "ejs": "^2.6.1", - "express": "^4.16.3", - "filesize": "^3.6.1", - "gzip-size": "^5.0.0", - "lodash": "^4.17.19", - "mkdirp": "^0.5.1", - "opener": "^1.5.1", - "ws": "^6.0.0" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - } - } - }, - "webpack-chain": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/webpack-chain/-/webpack-chain-6.5.1.tgz", - "integrity": "sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==", - "dev": true, - "requires": { - "deepmerge": "^1.5.2", - "javascript-stringify": "^2.0.1" - } - }, - "webpack-dev-middleware": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz", - "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==", - "dev": true, - "requires": { - "memory-fs": "^0.4.1", - "mime": "^2.4.4", - "mkdirp": "^0.5.1", - "range-parser": "^1.2.1", - "webpack-log": "^2.0.0" - } - }, - "webpack-dev-server": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz", - "integrity": "sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.7.0.tgz", + "integrity": "sha512-j9b8ynpJS4K+zfO5GGwsAcQX4ZHpWV+yRiHDiL+bE0XHJ8NiPYLTNVQdlFYWxtpg9lfAQNlwJg16J9AJtFSXRg==", "dev": true, "requires": { - "ansi-html": "0.0.7", - "bonjour": "^3.5.0", - "chokidar": "^2.1.8", - "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "debug": "^4.1.1", - "del": "^4.1.1", - "express": "^4.17.1", - "html-entities": "^1.3.1", - "http-proxy-middleware": "0.19.1", - "import-local": "^2.0.0", - "internal-ip": "^4.3.0", - "ip": "^1.1.5", - "is-absolute-url": "^3.0.3", - "killable": "^1.0.1", - "loglevel": "^1.6.8", - "opn": "^5.5.0", - "p-retry": "^3.0.1", - "portfinder": "^1.0.26", - "schema-utils": "^1.0.0", - "selfsigned": "^1.10.7", - "semver": "^6.3.0", - "serve-index": "^1.9.1", - "sockjs": "0.3.20", - "sockjs-client": "1.4.0", - "spdy": "^4.0.2", - "strip-ansi": "^3.0.1", - "supports-color": "^6.1.0", - "url": "^0.11.0", - "webpack-dev-middleware": "^3.7.2", - "webpack-log": "^2.0.0", - "ws": "^6.2.1", - "yargs": "^13.3.2" + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "opener": "^1.5.2", + "sirv": "^1.0.7", + "ws": "^7.3.1" }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } + "color-convert": "^2.0.1" } }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "color-name": "~1.1.4" } }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true }, - "is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "binary-extensions": "^1.0.0" + "has-flag": "^4.0.0" } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + } + } + }, + "webpack-chain": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/webpack-chain/-/webpack-chain-6.5.1.tgz", + "integrity": "sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==", + "dev": true, + "requires": { + "deepmerge": "^1.5.2", + "javascript-stringify": "^2.0.1" + } + }, + "webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dev": true, + "requires": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "fast-deep-equal": "^3.1.3" } }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", "dev": true }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "requires": { - "ansi-regex": "^2.0.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + } + } + }, + "webpack-dev-server": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz", + "integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==", + "dev": true, + "requires": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, + "dependencies": { + "ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "requires": { - "has-flag": "^3.0.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "wrap-ansi": { + "ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "fast-deep-equal": "^3.1.3" } }, - "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" } }, - "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "ws": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } + "requires": {} } } }, - "webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", - "dev": true, - "requires": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" - } - }, "webpack-merge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", - "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", "dev": true, "requires": { - "lodash": "^4.17.15" + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" } }, "webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "dev": true, - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true + }, + "webpack-virtual-modules": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz", + "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==", + "dev": true }, "websocket-driver": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz", - "integrity": "sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=", + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" } }, @@ -27740,40 +23092,53 @@ "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "dev": true }, + "whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { "isexe": "^2.0.0" } }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "which-pm-runs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", + "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", "dev": true }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", "dev": true }, - "worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", - "dev": true, - "requires": { - "errno": "~0.1.7" - } + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true }, "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "requires": { "ansi-styles": "^4.0.0", @@ -27781,12 +23146,6 @@ "strip-ansi": "^6.0.0" }, "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -27804,201 +23163,77 @@ "requires": { "color-name": "~1.1.4" } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } } } }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, "ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", "dev": true, - "requires": { - "async-limiter": "~1.0.0" - } + "requires": {} }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true }, - "y18n": { + "yallist": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true }, "yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - } + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" } }, "yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - } - } + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true }, "yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "dev": true, "requires": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + }, "yorkie": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/yorkie/-/yorkie-2.0.0.tgz", @@ -28011,10 +23246,16 @@ "strip-indent": "^2.0.0" }, "dependencies": { + "ci-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", + "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "dev": true + }, "cross-spawn": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, "requires": { "lru-cache": "^4.0.1", @@ -28025,7 +23266,7 @@ "execa": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz", - "integrity": "sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=", + "integrity": "sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==", "dev": true, "requires": { "cross-spawn": "^5.0.1", @@ -28040,9 +23281,18 @@ "get-stream": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", "dev": true }, + "is-ci": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", + "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "dev": true, + "requires": { + "ci-info": "^1.5.0" + } + }, "lru-cache": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", @@ -28056,38 +23306,40 @@ "normalize-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-1.0.0.tgz", - "integrity": "sha1-MtDkcvkf80VwHBWoMRAY07CpA3k=", + "integrity": "sha512-7WyT0w8jhpDStXRq5836AMmihQwq2nrUVQrgjvUo/p/NZf9uy/MeJ246lBJVmWuYXMlJuG9BNZHF0hWjfTbQUA==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, "yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - } - } - }, - "yup": { - "version": "0.27.0", - "resolved": "https://registry.npmjs.org/yup/-/yup-0.27.0.tgz", - "integrity": "sha512-v1yFnE4+u9za42gG/b/081E7uNW9mUj3qtkmelLbW5YPROZzSH/KUUyJu9Wt8vxFJcT9otL/eZopS0YK1L5yPQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.0.0", - "fn-name": "~2.0.1", - "lodash": "^4.17.11", - "property-expr": "^1.5.0", - "synchronous-promise": "^2.0.6", - "toposort": "^2.0.2" - }, - "dependencies": { - "toposort": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", - "integrity": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", "dev": true } } } } -} +} \ No newline at end of file diff --git a/package.json b/package.json index 91083dd30d3..7dd47df0c1f 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,24 @@ { "name": "OMP", "description": "Open Monograph Systems (OMP) is a monograph management and publishing system that has been developed by the Public Knowledge Project through its federally funded efforts to expand and improve access to research.", - "version": "3.3.0", + "version": "3.4.0", "author": "Public Knowledge Project", "private": true, "scripts": { "dev": "vue-cli-service build --no-clean --watch", "build": "vue-cli-service build --no-clean", - "lint": "vue-cli-service lint js/load.js lib/pkp/js/load.js lib/pkp/js/classes/VueRegistry.js" + "lint": "vue-cli-service lint js/load.js lib/pkp/js/load.js lib/pkp/js/usage-stats-chart.js lib/pkp/js/classes/VueRegistry.js", + "fix": "vue-cli-service lint js/load.js lib/pkp/js/load.js lib/pkp/js/usage-stats-chart.js lib/pkp/js/classes/VueRegistry.js && php lib/pkp/lib/vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --allow-risky=yes" }, "dependencies": { - "@tinymce/tinymce-vue": "^1.1.0", + "@tinymce/tinymce-vue": "^3", "chart.js": "^2.9.4", "clone-deep": "^4.0.1", "debounce": "^1.2.0", - "moment": "^2.27.0", - "tinymce": "^4.9.11", + "dompurify": "^3.0.8", + "element-resize-event": "^3.0.3", + "moment": "^2.29.2", + "tinymce": "^5.10.0", "v-tooltip": "^2.0.3", "vue": "^2.6.12", "vue-autosuggest": "^2.2.0", @@ -27,24 +30,26 @@ "vuedraggable": "^2.24.3" }, "devDependencies": { - "@foreachbe/cypress-tinymce": "^1.0.0", - "@vue/cli-plugin-babel": "^4.5.15", - "@vue/cli-plugin-eslint": "^4.5.15", - "@vue/cli-service": "^4.5.15", - "@vue/eslint-config-prettier": "^4.0.1", - "babel-eslint": "^10.1.0", - "cypress": "^5.6.0", + "@babel/core": "^7.12.16", + "@babel/eslint-parser": "^7.12.16", + "@vue/cli-plugin-babel": "^5.0.0", + "@vue/cli-plugin-eslint": "^5.0.0", + "@vue/cli-service": "^5.0.0", + "@vue/eslint-config-prettier": "^7.0.0", + "cypress": "^12.17.2", "cypress-failed-log": "^2.7.0", - "cypress-file-upload": "^3.5.1", + "cypress-file-upload": "^5.0.8", "cypress-wait-until": "^1.7.1", - "element-resize-event": "^3.0.3", - "eslint": "^5.16.0", - "eslint-plugin-vue": "^5.2.3", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-prettier": "^4.0.0", + "eslint-plugin-vue": "^8.0.3", "google-closure-compiler-java": "^20200719.0.0", - "less": "^3.12.2", - "less-loader": "^4.1.0", - "lint-staged": "^8.2.1", - "vue-template-compiler": "^2.6.12" + "husky": "^4.3.8", + "less": "^4.0.0", + "less-loader": "^8.0.0", + "lint-staged": "^11.0.1", + "vue-template-compiler": "^2.6.14" }, "eslintConfig": { "root": true, @@ -74,10 +79,11 @@ { "args": "none" } - ] + ], + "vue/multi-word-component-names": "off" }, "parserOptions": { - "parser": "babel-eslint" + "parser": "@babel/eslint-parser" } }, "postcss": { @@ -89,5 +95,16 @@ "> 1%", "last 2 versions", "ie >= 10" - ] -} + ], + "husky": { + "hooks": { + "pre-commit": "lint-staged" + } + }, + "lint-staged": { + "**/*.php": [ + "php lib/pkp/lib/vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --allow-risky=yes", + "php lib/pkp/lib/vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --allow-risky=yes --dry-run" + ] + } +} \ No newline at end of file diff --git a/pages/authorDashboard/AuthorDashboardHandler.inc.php b/pages/authorDashboard/AuthorDashboardHandler.inc.php deleted file mode 100644 index 62b241bef6b..00000000000 --- a/pages/authorDashboard/AuthorDashboardHandler.inc.php +++ /dev/null @@ -1,124 +0,0 @@ -getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION); - $templateMgr = TemplateManager::getManager($request); - $reviewRoundDao = DAORegistry::getDAO('ReviewRoundDAO'); /* @var $reviewRoundDao ReviewRoundDAO */ - $internalReviewRounds = $reviewRoundDao->getBySubmissionId($submission->getId(), WORKFLOW_STAGE_ID_INTERNAL_REVIEW); - $templateMgr->assign('internalReviewRounds', $internalReviewRounds); - return parent::submission($args, $request); - } - - /** - * @copydoc PKPAuthorDashboardHandler::setupTemplate() - */ - function setupTemplate($request) { - parent::setupTemplate($request); - - $submission = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION); - - $chaptersGridUrl = $request->getDispatcher()->url( - $request, - ROUTE_COMPONENT, - null, - 'grid.users.chapter.ChapterGridHandler', - 'fetchGrid', - null, - [ - 'submissionId' => $submission->getId(), - 'publicationId' => '__publicationId__', - ] - ); - - $templateMgr = TemplateManager::getManager($request); - $templateMgr->setState([ - 'chaptersGridUrl' => $chaptersGridUrl, - ]); - } - - - // - // Protected helper methods - // - /** - * Get the SUBMISSION_FILE_... file stage based on the current - * WORKFLOW_STAGE_... workflow stage. - * @param $currentStage int WORKFLOW_STAGE_... - * @return int SUBMISSION_FILE_... - */ - protected function _fileStageFromWorkflowStage($currentStage) { - switch ($currentStage) { - case WORKFLOW_STAGE_ID_INTERNAL_REVIEW: - return SUBMISSION_FILE_REVIEW_REVISION; - default: - return parent::_fileStageFromWorkflowStage($currentStage); - } - } - - /** - * Get the notification request options. - * @param $submission Submission - * @return array - */ - protected function _getNotificationRequestOptions($submission) { - $submissionAssocTypeAndIdArray = array(ASSOC_TYPE_SUBMISSION, $submission->getId()); - $notificationRequestOptions = parent::_getNotificationRequestOptions($submission); - $notificationRequestOptions[NOTIFICATION_LEVEL_TASK][NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS] = $submissionAssocTypeAndIdArray; - $notificationRequestOptions[NOTIFICATION_LEVEL_NORMAL][NOTIFICATION_TYPE_EDITOR_DECISION_INTERNAL_REVIEW] = $submissionAssocTypeAndIdArray; - return $notificationRequestOptions; - } - - /** - * @copydoc PKPWorkflowHandler::_getRepresentationsGridUrl() - */ - protected function _getRepresentationsGridUrl($request, $submission) { - return $request->getDispatcher()->url( - $request, - ROUTE_COMPONENT, - null, - 'grid.catalogEntry.PublicationFormatGridHandler', - 'fetchGrid', - null, - [ - 'submissionId' => $submission->getId(), - 'publicationId' => '__publicationId__', - ] - ); - } -} - - diff --git a/pages/authorDashboard/AuthorDashboardHandler.php b/pages/authorDashboard/AuthorDashboardHandler.php new file mode 100644 index 00000000000..bd4bd96b7b7 --- /dev/null +++ b/pages/authorDashboard/AuthorDashboardHandler.php @@ -0,0 +1,161 @@ +getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION); + $templateMgr = TemplateManager::getManager($request); + $reviewRoundDao = DAORegistry::getDAO('ReviewRoundDAO'); /** @var ReviewRoundDAO $reviewRoundDao */ + $internalReviewRounds = $reviewRoundDao->getBySubmissionId($submission->getId(), WORKFLOW_STAGE_ID_INTERNAL_REVIEW); + $templateMgr->assign('internalReviewRounds', $internalReviewRounds); + return parent::submission($args, $request); + } + + /** + * @copydoc PKPAuthorDashboardHandler::setupTemplate() + */ + public function setupTemplate($request) + { + parent::setupTemplate($request); + + $submission = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION); + + $chaptersGridUrl = $request->getDispatcher()->url( + $request, + PKPApplication::ROUTE_COMPONENT, + null, + 'grid.users.chapter.ChapterGridHandler', + 'fetchGrid', + null, + [ + 'submissionId' => $submission->getId(), + 'publicationId' => '__publicationId__', + ] + ); + + $templateMgr = TemplateManager::getManager($request); + $templateMgr->setState([ + 'chaptersGridUrl' => $chaptersGridUrl, + ]); + } + + + // + // Protected helper methods + // + /** + * Get the SubmissionFile::SUBMISSION_FILE_... file stage based on the current + * WORKFLOW_STAGE_... workflow stage. + * + * @param int $currentStage WORKFLOW_STAGE_... + * + * @return int SubmissionFile::SUBMISSION_FILE_... + */ + protected function _fileStageFromWorkflowStage($currentStage) + { + switch ($currentStage) { + case WORKFLOW_STAGE_ID_INTERNAL_REVIEW: + return SubmissionFile::SUBMISSION_FILE_REVIEW_REVISION; + default: + return parent::_fileStageFromWorkflowStage($currentStage); + } + } + + /** + * Get the notification request options. + * + * @param Submission $submission + * + * @return array + */ + protected function _getNotificationRequestOptions($submission) + { + $submissionAssocTypeAndIdArray = [Application::ASSOC_TYPE_SUBMISSION, $submission->getId()]; + $notificationRequestOptions = []; + $notificationRequestOptions[Notification::NOTIFICATION_LEVEL_TASK][Notification::NOTIFICATION_TYPE_PENDING_INTERNAL_REVISIONS] = $submissionAssocTypeAndIdArray; + $notificationRequestOptions[Notification::NOTIFICATION_LEVEL_NORMAL][Notification::NOTIFICATION_TYPE_EDITOR_DECISION_INTERNAL_REVIEW] = $submissionAssocTypeAndIdArray; + return $notificationRequestOptions; + } + + /** + * @copydoc PKPWorkflowHandler::_getRepresentationsGridUrl() + */ + protected function _getRepresentationsGridUrl($request, $submission) + { + return $request->getDispatcher()->url( + $request, + PKPApplication::ROUTE_COMPONENT, + null, + 'grid.catalogEntry.PublicationFormatGridHandler', + 'fetchGrid', + null, + [ + 'submissionId' => $submission->getId(), + 'publicationId' => '__publicationId__', + ] + ); + } + + protected function getTitleAbstractForm(string $latestPublicationApiUrl, array $locales, Publication $latestPublication, Context $context): TitleAbstractForm + { + return new TitleAbstractForm( + $latestPublicationApiUrl, + $locales, + $latestPublication + ); + } + + protected function getContributorsListPanel(Submission $submission, Context $context, array $locales, array $authorItems, ?bool $canEditPublication): ContributorsListPanel + { + return new ContributorsListPanel( + 'contributors', + __('publication.contributors'), + $submission, + $context, + $locales, + $authorItems, + $canEditPublication + ); + } +} diff --git a/pages/authorDashboard/index.php b/pages/authorDashboard/index.php index 6b97e77b665..8c91bf703f1 100644 --- a/pages/authorDashboard/index.php +++ b/pages/authorDashboard/index.php @@ -12,20 +12,18 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_authorDashboard + * * @brief Handle requests for the author dashboard. * */ switch ($op) { - // - // Author Dashboard - // - case 'submission': - case 'readSubmissionEmail': - case 'reviewRoundInfo': - import('pages.authorDashboard.AuthorDashboardHandler'); - define('HANDLER_CLASS', 'AuthorDashboardHandler'); + // + // Author Dashboard + // + case 'submission': + case 'readSubmissionEmail': + case 'reviewRoundInfo': + define('HANDLER_CLASS', 'APP\pages\authorDashboard\AuthorDashboardHandler'); } - - diff --git a/pages/catalog/CatalogBookHandler.inc.php b/pages/catalog/CatalogBookHandler.inc.php deleted file mode 100755 index 7aef30619c6..00000000000 --- a/pages/catalog/CatalogBookHandler.inc.php +++ /dev/null @@ -1,368 +0,0 @@ -addPolicy(new OmpPublishedSubmissionAccessPolicy($request, $args, $roleAssignments)); - return parent::authorize($request, $args, $roleAssignments); - } - - - // - // Public handler methods - // - /** - * Display a published submission in the public catalog. - * @param $args array - * @param $request PKPRequest - */ - function book($args, $request) { - $templateMgr = TemplateManager::getManager($request); - $submission = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION); - $this->setupTemplate($request, $submission); - AppLocale::requireComponents(LOCALE_COMPONENT_APP_SUBMISSION, LOCALE_COMPONENT_PKP_SUBMISSION); // submission.synopsis; submission.copyrightStatement - - // Get the requested publication or default to the current publication - $submissionId = array_shift($args); - $subPath = empty($args) ? 0 : array_shift($args); - if ($subPath === 'version') { - $this->isVersionRequest = true; - $publicationId = (int) array_shift($args); - foreach ($submission->getData('publications') as $publication) { - if ($publication->getId() === $publicationId) { - $this->publication = $publication; - } - } - } else { - $this->publication = $submission->getCurrentPublication(); - } - - if (!$this->publication || $this->publication->getData('status') !== STATUS_PUBLISHED) { - $request->getDispatcher()->handle404(); - } - - // If the publication has been reached through an outdated - // urlPath, redirect to the latest version - if (!ctype_digit((string) $submissionId) && $submissionId !== $this->publication->getData('urlPath') && !$subPath) { - $newArgs = $args; - $newArgs = $this->publication->getData('urlPath') - ? $this->publication->getData('urlPath') - : $this->publication->getId(); - $request->redirect(null, $request->getRequestedPage(), $request->getRequestedOp(), $newArgs); - } - - $templateMgr->assign([ - 'publishedSubmission' => $submission, - 'publication' => $this->publication, - 'firstPublication' => reset($submission->getData('publications')), - 'currentPublication' => $submission->getCurrentPublication(), - 'authorString' => $this->publication->getAuthorString(DAORegistry::getDAO('UserGroupDAO')->getByContextId($submission->getData('contextId'))->toArray()), - ]); - - // Provide the publication formats to the template - $availablePublicationFormats = []; - $availableRemotePublicationFormats = []; - foreach ($this->publication->getData('publicationFormats') as $format) { - if ($format->getIsAvailable()) { - $availablePublicationFormats[] = $format; - if ($format->getRemoteURL()) { - $availableRemotePublicationFormats[] = $format; - } - } - } - $templateMgr->assign(array( - 'publicationFormats' => $availablePublicationFormats, - 'remotePublicationFormats' => $availableRemotePublicationFormats, - )); - - // Assign chapters (if they exist) - $templateMgr->assign('chapters', DAORegistry::getDAO('ChapterDAO')->getByPublicationId($this->publication->getId())->toAssociativeArray()); - - $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true); - $templateMgr->assign(array( - 'pubIdPlugins' => PluginRegistry::loadCategory('pubIds', true), - 'ccLicenseBadge' => Application::get()->getCCLicenseBadge($this->publication->getData('licenseUrl')), - )); - - // Categories - $templateMgr->assign([ - 'categories' => DAORegistry::getDAO('CategoryDAO')->getByPublicationId($this->publication->getId())->toArray(), - ]); - - // Citations - if ($this->publication->getData('citationsRaw')) { - $parsedCitations = DAORegistry::getDAO('CitationDAO')->getByPublicationId($this->publication->getId()); - $templateMgr->assign([ - 'citations' => $parsedCitations->toArray(), - 'parsedCitations' => $parsedCitations, // compatible with older themes - ]); - } - - // Retrieve editors for an edited volume - $editors = []; - if ($submission->getWorkType() == WORK_TYPE_EDITED_VOLUME) { - foreach ($this->publication->getData('authors') as $author) { - if ($author->getIsVolumeEditor()) { - $editors[] = $author; - } - } - } - $templateMgr->assign([ - 'editors' => $editors, - ]); - - // Consider public identifiers - $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true); - $templateMgr->assign('pubIdPlugins', $pubIdPlugins); - - $pubFormatFiles = Services::get('submissionFile')->getMany([ - 'submissionIds' => [$submission->getId()], - 'assocTypes' => [ASSOC_TYPE_PUBLICATION_FORMAT] - ]); - $availableFiles = []; - foreach ($pubFormatFiles as $pubFormatFile) { - if ($pubFormatFile->getDirectSalesPrice() !== null) { - $availableFiles[] = $pubFormatFile; - } - } - - // Only pass files in pub formats that are also available - $filteredAvailableFiles = array(); - foreach ($availableFiles as $submissionFile) { - foreach ($availablePublicationFormats as $format) { - if ($submissionFile->getData('assocId') == $format->getId()) { - $filteredAvailableFiles[] = $submissionFile; - break; - } - } - } - $templateMgr->assign('availableFiles', $filteredAvailableFiles); - - // Provide the currency to the template, if configured. - if ($currencyCode = $request->getContext()->getData('currency')) { - $isoCodes = new \Sokil\IsoCodes\IsoCodesFactory(); - $templateMgr->assign('currency', $isoCodes->getCurrencies()->getByLetterCode($currencyCode)); - } - - // Add data for backwards compatibility - $templateMgr->assign([ - 'keywords' => $this->publication->getLocalizedData('keywords'), - 'licenseUrl' => $this->publication->getData('licenseUrl'), - ]); - - // Ask robots not to index outdated versions and point to the canonical url for the latest version - if ($this->publication->getId() !== $submission->getCurrentPublication()->getId()) { - $templateMgr->addHeader('noindex', ''); - $url = $request->getDispatcher()->url($request, ROUTE_PAGE, null, 'catalog', 'book', $submission->getBestId()); - $templateMgr->addHeader('canonical', ''); - } - - // Display - if (!HookRegistry::call('CatalogBookHandler::book', array(&$request, &$submission))) { - return $templateMgr->display('frontend/pages/book.tpl'); - } - } - - /** - * Use an inline viewer to view a published submission publication - * format file. - * @param $args array - * @param $request PKPRequest - */ - function view($args, $request) { - $this->download($args, $request, true); - } - - /** - * Download a published submission publication format file. - * @param $args array - * @param $request PKPRequest - * @param $view boolean True iff inline viewer should be used, if available - */ - function download($args, $request, $view = false) { - $dispatcher = $request->getDispatcher(); - $submission = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION); - $this->setupTemplate($request, $submission); - $press = $request->getPress(); - AppLocale::requireComponents(LOCALE_COMPONENT_APP_SUBMISSION, LOCALE_COMPONENT_PKP_SUBMISSION); - - $monographId = array_shift($args); // Validated thru auth - $subPath = array_shift($args); - if ($subPath === 'version') { - $publicationId = array_shift($args); - $representationId = array_shift($args); - $bestFileId = array_shift($args); - } else { - $publicationId = $submission->getCurrentPublication()->getId(); - $representationId = $subPath; - $bestFileId = array_shift($args); - } - - $publicationFormat = Application::get()->getRepresentationDAO()->getByBestId($representationId, $publicationId); - if (!$publicationFormat || !$publicationFormat->getIsAvailable() || $remoteURL = $publicationFormat->getRemoteURL()) $dispatcher->handle404(); - - $publication = null; - foreach ((array) $submission->getData('publications') as $iPublication) { - if ($iPublication->getId() == $publicationId) { - $publication = $iPublication; - break; - } - } - - if (empty($publication) - || $publication->getData('status') !== STATUS_PUBLISHED - || $publicationFormat->getData('publicationId') !== $publication->getId()) { - $dispatcher->handle404(); - } - - import('lib.pkp.classes.submission.SubmissionFile'); // File constants - $submissionFile = DAORegistry::getDAO('SubmissionFileDAO')->getByBestId($bestFileId, $submission->getId()); - if (!$submissionFile) $dispatcher->handle404(); - - $path = $submissionFile->getData('path'); - $filename = Services::get('file')->formatFilename($path, $submissionFile->getLocalizedData('name')); - switch ($submissionFile->getData('assocType')) { - case ASSOC_TYPE_PUBLICATION_FORMAT: // Publication format file - if ($submissionFile->getData('assocId') != $publicationFormat->getId() || $submissionFile->getDirectSalesPrice() === null) $dispatcher->handle404(); - break; - case ASSOC_TYPE_SUBMISSION_FILE: // Dependent file - $genreDao = DAORegistry::getDAO('GenreDAO'); /* @var $genreDao GenreDAO */ - $genre = $genreDao->getById($submissionFile->getGenreId()); - if (!$genre->getDependent()) $dispatcher->handle404(); - return Services::get('file')->download($submissionFile->getData('fileId'), $filename); - default: $dispatcher->handle404(); - } - - $urlPath = [$submission->getBestId()]; - if ($publicationId !== $submission->getCurrentPublication()->getId()) { - $urlPath[] = 'version'; - $urlPath[] = $publicationId; - } - $urlPath[] = $publicationFormat->getBestId(); - $urlPath[] = $submissionFile->getBestId(); - - $chapterDao = DAORegistry::getDAO('ChapterDAO'); /* @var $chapterDao ChapterDAO */ - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign(array( - 'publishedSubmission' => $submission, - 'publicationFormat' => $publicationFormat, - 'submissionFile' => $submissionFile, - 'chapter' => $chapterDao->getChapter($submissionFile->getData('chapterId')), - 'downloadUrl' => $dispatcher->url($request, ROUTE_PAGE, null, null, 'download', $urlPath, array('inline' => true)), - )); - - $ompCompletedPaymentDao = DAORegistry::getDAO('OMPCompletedPaymentDAO'); /* @var $ompCompletedPaymentDao OMPCompletedPaymentDAO */ - $user = $request->getUser(); - if ($submissionFile->getDirectSalesPrice() === '0' || ($user && $ompCompletedPaymentDao->hasPaidPurchaseFile($user->getId(), $submissionFile->getId()))) { - // Paid purchase or open access. - if (!$user && $press->getData('restrictMonographAccess')) { - // User needs to register first. - Validation::redirectLogin(); - } - - if ($view) { - if (HookRegistry::call('CatalogBookHandler::view', array(&$this, &$submission, &$publicationFormat, &$submissionFile))) { - // If the plugin handled the hook, prevent further default activity. - exit(); - } - } - - // Inline viewer not available, or viewing not wanted. - // Download or show the file. - $inline = $request->getUserVar('inline')?true:false; - if (HookRegistry::call('CatalogBookHandler::download', array(&$this, &$submission, &$publicationFormat, &$submissionFile, &$inline))) { - // If the plugin handled the hook, prevent further default activity. - exit(); - } - $returner = true; - HookRegistry::call('FileManager::downloadFileFinished', array(&$returner)); - return Services::get('file')->download($submissionFile->getData('fileId'), $filename, $inline); - } - - // Fall-through: user needs to pay for purchase. - - // Users that are not logged in need to register/login first. - if (!$user) return $request->redirect(null, 'login', null, null, array('source' => $request->url(null, null, null, array($monographId, $representationId, $bestFileId)))); - - // They're logged in but need to pay to view. - import('classes.payment.omp.OMPPaymentManager'); - $paymentManager = new OMPPaymentManager($press); - if (!$paymentManager->isConfigured()) { - $request->redirect(null, 'catalog'); - } - - $queuedPayment = $paymentManager->createQueuedPayment( - $request, - PAYMENT_TYPE_PURCHASE_FILE, - $user->getId(), - $submissionFile->getId(), - $submissionFile->getDirectSalesPrice(), - $press->getData('currency') - ); - $paymentManager->queuePayment($queuedPayment); - - $paymentForm = $paymentManager->getPaymentForm($queuedPayment); - $paymentForm->display($request); - } - - /** - * Set up common template variables. - * @param $request PKPRequest - * @param $submission Submission - */ - function setupTemplate($request, $submission = null) { - $templateMgr = TemplateManager::getmanager($request); - if ($seriesId = $submission->getSeriesId()) { - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($seriesId, $submission->getData('contextId')); - $templateMgr->assign('series', $series); - } - - parent::setupTemplate($request); - } -} - - diff --git a/pages/catalog/CatalogBookHandler.php b/pages/catalog/CatalogBookHandler.php new file mode 100755 index 00000000000..320335593f8 --- /dev/null +++ b/pages/catalog/CatalogBookHandler.php @@ -0,0 +1,608 @@ +addPolicy(new ContextRequiredPolicy($request)); + $this->addPolicy(new OmpPublishedSubmissionAccessPolicy($request, $args, $roleAssignments)); + return parent::authorize($request, $args, $roleAssignments); + } + + + // + // Public handler methods + // + /** + * Display a published submission in the public catalog. + * + * @param array $args + * @param Request $request + */ + public function book($args, $request) + { + $templateMgr = TemplateManager::getManager($request); + $submission = $this->getAuthorizedContextObject(PKPApplication::ASSOC_TYPE_SUBMISSION); + $user = $request->getUser(); + $this->setupTemplate($request, $submission); + + // Serve 404 if no submission available OR submission is unpublished and no user is logged in OR submission is unpublished and we have a user logged in but the user does not have access to preview + if (!$submission || ($submission->getData('status') !== PKPSubmission::STATUS_PUBLISHED && !$user) || ($submission->getData('status') !== PKPSubmission::STATUS_PUBLISHED && $user && !Repo::submission()->canPreview($user, $submission))) { + $request->getDispatcher()->handle404(); + } + + // Get the requested publication or default to the current publication + $submissionId = array_shift($args); + $subPath = empty($args) ? 0 : array_shift($args); + if ($subPath === 'version') { + $this->isVersionRequest = true; + $publicationId = (int) array_shift($args); + foreach ($submission->getData('publications') as $publication) { + if ($publication->getId() === $publicationId) { + $this->publication = $publication; + } + } + } else { + $this->publication = $submission->getCurrentPublication(); + } + + if (!$this->publication || ($this->publication->getData('status') !== PKPSubmission::STATUS_PUBLISHED && !Repo::submission()->canPreview($user, $submission))) { + $request->getDispatcher()->handle404(); + } + + // If the publication has been reached through an outdated + // urlPath, redirect to the latest version + if (!ctype_digit((string) $submissionId) && $submissionId !== $this->publication->getData('urlPath') && !$subPath) { + $newArgs = $this->publication->getData('urlPath') + ? $this->publication->getData('urlPath') + : $this->publication->getId(); + $request->redirect(null, $request->getRequestedPage(), $request->getRequestedOp(), $newArgs); + } + + // If a chapter is requested, set this chapter + if ($subPath === 'chapter') { + $chapterId = empty($args) ? 0 : (int) array_shift($args); + $this->setChapter($chapterId, $request); + } elseif (!empty($args) && $args[0] === 'chapter') { + $chapterId = isset($args[1]) ? (int) $args[1] : 0; + $this->setChapter($chapterId, $request); + } + + if ($this->isChapterRequest) { + if (!$this->chapter->isPageEnabled()) { + $request->getDispatcher()->handle404(); + } + $chapterAuthors = $this->chapter->getAuthors(); + $chapterAuthors = $chapterAuthors->toArray(); + + $datePublished = $submission->getEnableChapterPublicationDates() && $this->chapter->getDatePublished() + ? $this->chapter->getDatePublished() + : $this->publication->getData('datePublished'); + + // Get the earliest published Version of the chapter + $sourceChapter = $this->getSourceChapter($submission); + if ($sourceChapter) { + // Get the earliest publishing date of the chapter + $firstDatePublished = $this->getChaptersFirstPublishedDate($submission, $sourceChapter); + } else { + $firstDatePublished = $datePublished; + } + + $templateMgr->assign([ + 'chapter' => $this->chapter, + 'chapterAuthors' => $chapterAuthors, + 'sourceChapter' => $sourceChapter, + 'firstDatePublished' => $firstDatePublished ?: $datePublished, + 'datePublished' => $datePublished, + 'chapterPublicationIds' => $this->chapterPublicationIds, + ]); + } + + // Get the earliest published publication + $firstPublication = $submission->getData('publications')->reduce(function ($a, $b) { + return empty($a) || strtotime((string) $b->getData('datePublished')) < strtotime((string) $a->getData('datePublished')) ? $b : $a; + }, 0); + + $userGroups = Repo::userGroup()->getCollector() + ->filterByContextIds([$submission->getData('contextId')]) + ->getMany(); + + $templateMgr->assign([ + 'isChapterRequest' => $this->isChapterRequest, + 'publishedSubmission' => $submission, + 'publication' => $this->publication, + 'firstPublication' => $firstPublication, + 'currentPublication' => $submission->getCurrentPublication(), + 'authorString' => $this->publication->getAuthorString($userGroups), + ]); + + // Provide the publication formats to the template + $availablePublicationFormats = []; + $availableRemotePublicationFormats = []; + foreach ($this->publication->getData('publicationFormats') as $format) { + if ($format->getIsAvailable()) { + $availablePublicationFormats[] = $format; + if ($format->getRemoteURL()) { + $availableRemotePublicationFormats[] = $format; + } + } + } + $templateMgr->assign([ + 'publicationFormats' => $availablePublicationFormats, + 'remotePublicationFormats' => $availableRemotePublicationFormats, + ]); + + // Assign chapters (if they exist) + /** @var ChapterDAO */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + $templateMgr->assign('chapters', $chapterDao->getByPublicationId($this->publication->getId())->toAssociativeArray()); + + $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true); + if ($this->isChapterRequest && $this->chapter->getData('licenseUrl')) { + $ccLicenseBadge = Application::get()->getCCLicenseBadge($this->chapter->getData('licenseUrl')); + } else { + $ccLicenseBadge = Application::get()->getCCLicenseBadge($this->publication->getData('licenseUrl')); + } + $templateMgr->assign([ + 'pubIdPlugins' => PluginRegistry::loadCategory('pubIds', true), + 'ccLicenseBadge' => $ccLicenseBadge, + ]); + + // Categories + $templateMgr->assign([ + 'categories' => Repo::category()->getCollector() + ->filterByPublicationIds([$this->publication->getId()]) + ->getMany() + ->toArray() + ]); + + // Citations + if ($this->publication->getData('citationsRaw')) { + /** @var CitationDAO */ + $citationDao = DAORegistry::getDAO('CitationDAO'); + $parsedCitations = $citationDao->getByPublicationId($this->publication->getId()); + $templateMgr->assign([ + 'citations' => $parsedCitations->toArray(), + 'parsedCitations' => $parsedCitations, // compatible with older themes + ]); + } + + // Retrieve editors for an edited volume + $editors = []; + if ($submission->getWorkType() == $submission::WORK_TYPE_EDITED_VOLUME) { + foreach ($this->publication->getData('authors') as $author) { + if ($author->getIsVolumeEditor()) { + $editors[] = $author; + } + } + } + $templateMgr->assign([ + 'editors' => $editors, + ]); + + // Consider public identifiers + $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true); + $templateMgr->assign('pubIdPlugins', $pubIdPlugins); + + $pubFormatFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$submission->getId()]) + ->filterByAssoc(Application::ASSOC_TYPE_PUBLICATION_FORMAT) + ->getMany(); + + $availableFiles = []; + foreach ($pubFormatFiles as $pubFormatFile) { + if ($pubFormatFile->getDirectSalesPrice() !== null) { + $availableFiles[] = $pubFormatFile; + } + } + + // Only pass files in pub formats that are also available + $filteredAvailableFiles = []; + /** @var SubmissionFile $submissionFile */ + foreach ($availableFiles as $submissionFile) { + foreach ($availablePublicationFormats as $format) { + if ($submissionFile->getData('assocId') == $format->getId()) { + $filteredAvailableFiles[] = $submissionFile; + break; + } + } + } + $templateMgr->assign('availableFiles', $filteredAvailableFiles); + + // Provide the currency to the template, if configured. + if ($currencyCode = $request->getContext()->getData('currency')) { + $templateMgr->assign('currency', Locale::getCurrencies()->getByLetterCode($currencyCode)); + } + + // Add data for backwards compatibility + $templateMgr->assign([ + 'keywords' => $this->publication->getLocalizedData('keywords'), + 'licenseUrl' => $this->publication->getData('licenseUrl'), + ]); + + // Ask robots not to index outdated versions and point to the canonical url for the latest version + if ($this->publication->getId() !== $submission->getCurrentPublication()->getId()) { + $templateMgr->addHeader('noindex', ''); + $url = $request->getDispatcher()->url($request, PKPApplication::ROUTE_PAGE, null, 'catalog', 'book', $submission->getBestId()); + $templateMgr->addHeader('canonical', ''); + } + + // Display + if (!Hook::call('CatalogBookHandler::book', [&$request, &$submission, &$this->publication, &$this->chapter])) { + $templateMgr->display('frontend/pages/book.tpl'); + if ($this->isChapterRequest) { + event(new UsageEvent(Application::ASSOC_TYPE_CHAPTER, $request->getContext(), $submission, null, null, $this->chapter)); + } else { + event(new UsageEvent(Application::ASSOC_TYPE_SUBMISSION, $request->getContext(), $submission)); + } + return; + } + } + + /** + * Use an inline viewer to view a published submission publication + * format file. + * + * @param array $args + * @param Request $request + */ + public function view($args, $request) + { + $this->download($args, $request, true); + } + + /** + * Download a published submission publication format file. + * + * @param array $args + * @param Request $request + * @param bool $view True iff inline viewer should be used, if available + */ + public function download($args, $request, $view = false) + { + $dispatcher = $request->getDispatcher(); + $submission = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION); + $this->setupTemplate($request, $submission); + $press = $request->getPress(); + + $monographId = array_shift($args); // Validated thru auth + $subPath = array_shift($args); + if ($subPath === 'version') { + $publicationId = array_shift($args); + $representationId = array_shift($args); + $bestFileId = array_shift($args); + } else { + $publicationId = $submission->getCurrentPublication()->getId(); + $representationId = $subPath; + $bestFileId = array_shift($args); + } + + $publicationFormat = Application::get()->getRepresentationDAO()->getByBestId($representationId, $publicationId); + if (!$publicationFormat || !$publicationFormat->getIsAvailable() || $publicationFormat->getRemoteURL()) { + $dispatcher->handle404(); + } + + $publication = null; + foreach ($submission->getData('publications') as $iPublication) { + if ($iPublication->getId() == $publicationId) { + $publication = $iPublication; + break; + } + } + + if (empty($publication) + || $publication->getData('status') !== PKPSubmission::STATUS_PUBLISHED + || $publicationFormat->getData('publicationId') !== $publication->getId()) { + $dispatcher->handle404(); + } + + $submissionFile = Repo::submissionFile() + ->dao + ->getByBestId( + $bestFileId, + $submission->getId() + ); + if (!$submissionFile) { + $dispatcher->handle404(); + } + + $path = $submissionFile->getData('path'); + $filename = Services::get('file')->formatFilename($path, $submissionFile->getLocalizedData('name')); + switch ($submissionFile->getData('assocType')) { + case Application::ASSOC_TYPE_PUBLICATION_FORMAT: // Publication format file + if ($submissionFile->getData('assocId') != $publicationFormat->getId() || $submissionFile->getDirectSalesPrice() === null) { + $dispatcher->handle404(); + } + break; + case Application::ASSOC_TYPE_SUBMISSION_FILE: // Dependent file + $genreDao = DAORegistry::getDAO('GenreDAO'); /** @var GenreDAO $genreDao */ + $genre = $genreDao->getById($submissionFile->getGenreId()); + if (!$genre->getDependent()) { + $dispatcher->handle404(); + } + return Services::get('file')->download($submissionFile->getData('fileId'), $filename); + default: $dispatcher->handle404(); + } + + $urlPath = [$submission->getBestId()]; + if ($publicationId !== $submission->getCurrentPublication()->getId()) { + $urlPath[] = 'version'; + $urlPath[] = $publicationId; + } + $urlPath[] = $publicationFormat->getBestId(); + $urlPath[] = $submissionFile->getBestId(); + + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + $chapter = $chapterDao->getChapter($submissionFile->getData('chapterId')); + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign([ + 'publishedSubmission' => $submission, + 'publicationFormat' => $publicationFormat, + 'submissionFile' => $submissionFile, + 'chapter' => $chapter, + 'downloadUrl' => $dispatcher->url($request, PKPApplication::ROUTE_PAGE, null, null, 'download', $urlPath, ['inline' => true]), + ]); + + $ompCompletedPaymentDao = DAORegistry::getDAO('OMPCompletedPaymentDAO'); /** @var OMPCompletedPaymentDAO $ompCompletedPaymentDao */ + $user = $request->getUser(); + if ($submissionFile->getDirectSalesPrice() === '0' || ($user && $ompCompletedPaymentDao->hasPaidPurchaseFile($user->getId(), $submissionFile->getId()))) { + // Paid purchase or open access. + if (!$user && $press->getData('restrictMonographAccess')) { + // User needs to register first. + Validation::redirectLogin(); + } + + if ($view) { + if (Hook::call('CatalogBookHandler::view', [&$this, &$submission, &$publicationFormat, &$submissionFile])) { + // If the plugin handled the hook, prevent further default activity. + exit; + } + } + + // Inline viewer not available, or viewing not wanted. + // Download or show the file. + $inline = $request->getUserVar('inline') ? true : false; + if (Hook::call('CatalogBookHandler::download', [&$this, &$submission, &$publicationFormat, &$submissionFile, &$inline])) { + // If the plugin handled the hook, prevent further default activity. + exit; + } + + // if the file is a publication format file (i.e. not a dependent file e.g. CSS or images), fire an usage event. + if ($submissionFile->getData('assocId') == $publicationFormat->getId()) { + $assocType = Application::ASSOC_TYPE_SUBMISSION_FILE; + /** @var GenreDAO */ + $genreDao = DAORegistry::getDAO('GenreDAO'); + $genre = $genreDao->getById($submissionFile->getData('genreId')); + // TO-DO: is this correct ? + if ($genre->getCategory() != Genre::GENRE_CATEGORY_DOCUMENT || $genre->getSupplementary() || $genre->getDependent()) { + $assocType = Application::ASSOC_TYPE_SUBMISSION_FILE_COUNTER_OTHER; + } + event(new UsageEvent($assocType, $request->getContext(), $submission, $publicationFormat, $submissionFile, $chapter)); + } + $returner = true; + Hook::call('FileManager::downloadFileFinished', [&$returner]); + return Services::get('file')->download($submissionFile->getData('fileId'), $filename, $inline); + } + + // Fall-through: user needs to pay for purchase. + + // Users that are not logged in need to register/login first. + if (!$user) { + return $request->redirect(null, 'login', null, null, ['source' => $request->url(null, null, null, [$monographId, $representationId, $bestFileId])]); + } + + // They're logged in but need to pay to view. + $paymentManager = new OMPPaymentManager($press); + if (!$paymentManager->isConfigured()) { + $request->redirect(null, 'catalog'); + } + + $queuedPayment = $paymentManager->createQueuedPayment( + $request, + OMPPaymentManager::PAYMENT_TYPE_PURCHASE_FILE, + $user->getId(), + $submissionFile->getId(), + $submissionFile->getDirectSalesPrice(), + $press->getData('currency') + ); + $paymentManager->queuePayment($queuedPayment); + + $paymentForm = $paymentManager->getPaymentForm($queuedPayment); + $paymentForm->display($request); + } + + /** + * Set up common template variables. + * + * @param Request $request + * @param Submission $submission + */ + public function setupTemplate($request, $submission = null) + { + $templateMgr = TemplateManager::getManager($request); + if ($seriesId = $submission->getCurrentPublication()->getData('seriesId')) { + $series = Repo::section()->get($seriesId, $submission->getData('contextId')); + $templateMgr->assign('series', $series); + } + parent::setupTemplate($request); + } + + /** + * Set the requested chapter. + * + */ + protected function setChapter(int $chapterId, PKPRequest $request): void + { + if ($chapterId > 0) { + $this->isChapterRequest = true; + /** @var ChapterDAO */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + $chapters = $chapterDao->getBySourceChapterId($chapterId); + $chapters = $chapters->toAssociativeArray(); + $chaptersCount = count($chapters); + if ($chaptersCount > 0) { + /** @var Chapter $chapter */ + foreach ($chapters as $chapter) { + $publicationId = (int) $chapter->getData('publicationId'); + if ($publicationId === $this->publication->getId()) { + $this->chapter = $chapter; + $this->setChapterPublicationIds(); + break; + } + } + } + + if (null === $this->chapter) { + $request->getDispatcher()->handle404(); + } + } + } + + /** + * Set an array with all publication ids of the requested chapter. + */ + protected function setChapterPublicationIds(): void + { + if ($this->chapter && $this->isChapterRequest) { + /** @var ChapterDAO */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + $chapters = $chapterDao->getBySourceChapterId($this->chapter->getSourceChapterId()); + $chapters = $chapters->toAssociativeArray(); + $publicationIds = []; + /** @var Chapter $chapter */ + foreach ($chapters as $chapter) { + if ($chapter->isPageEnabled()) { + $publicationId = (int) $chapter->getData('publicationId'); + $publicationIds[] = $publicationId; + } + } + $this->chapterPublicationIds = $publicationIds; + } + } + + /** + * Get the earliest version of a chapter + * + */ + protected function getSourceChapter(Submission $submission): ?Chapter + { + /** @var ChapterDAO */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + $chapters = $chapterDao->getBySourceChapterId($this->chapter->getSourceChapterId()); + $chapters = $chapters->toAssociativeArray(); + $publications = Repo::publication()->getCollector()->filterBySubmissionIds([$submission->getId()])->getMany(); + + /** @var Chapter $chapter */ + foreach ($chapters as $chapter) { + /** @var Publication $publication */ + foreach ($publications as $publication) { + if ($publication->getId() === (int) $chapter->getData('publicationId')) { + return $chapter; + } + } + } + + return null; + } + + /** + * Get the earliest publishing date of the chapter + * + * + */ + protected function getChaptersFirstPublishedDate(Submission $submission, Chapter $sourceChapter): ?string + { + $publishedPublications = $submission->getPublishedPublications(); + $firstPublication = null; + $sourceChapterPublicationId = (int) $sourceChapter->getData('publicationId'); + + /** @var Publication $publication */ + foreach ($publishedPublications as $publication) { + if ($publication->getId() === $sourceChapterPublicationId) { + $firstPublication = $publication; + break; + } + } + + if ($firstPublication) { + if ($submission->getEnableChapterPublicationDates() && $sourceChapter->getDatePublished()) { + return $sourceChapter->getDatePublished(); + } + + return $firstPublication->getData('datePublished'); + } + + return null; + } +} diff --git a/pages/catalog/CatalogHandler.inc.php b/pages/catalog/CatalogHandler.inc.php deleted file mode 100644 index 190b48cfa7b..00000000000 --- a/pages/catalog/CatalogHandler.inc.php +++ /dev/null @@ -1,308 +0,0 @@ -page($args, $request, true); - } - - /** - * Show a page of the catalog - * @param $args array [ - * @option int Page number if available - * ] - * @param $request PKPRequest - * @param $isFirstPage boolean Return the first page of results - */ - public function page($args, $request, $isFirstPage = false) { - $page = null; - if ($isFirstPage) { - $page = 1; - } elseif ($args[0]) { - $page = (int) $args[0]; - } - - if (!$isFirstPage && (empty($page) || $page < 2)) { - $request->getDispatcher()->handle404(); - } - - $templateMgr = TemplateManager::getManager($request); - $this->setupTemplate($request); - $context = $request->getContext(); - - import('classes.submission.Submission'); // STATUS_ constants - import('classes.submission.SubmissionDAO'); // ORDERBY_ constants - - $orderOption = $context->getData('catalogSortOption') ? $context->getData('catalogSortOption') : ORDERBY_DATE_PUBLISHED . '-' . SORT_DIRECTION_DESC; - list($orderBy, $orderDir) = explode('-', $orderOption); - - $count = $context->getData('itemsPerPage') ? $context->getData('itemsPerPage') : Config::getVar('interface', 'items_per_page'); - $offset = $page > 1 ? ($page - 1) * $count : 0; - - import('classes.core.Services'); - $submissionService = Services::get('submission'); - - $params = array( - 'contextId' => $context->getId(), - 'orderByFeatured' => true, - 'orderBy' => $orderBy, - 'orderDirection' => $orderDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC', - 'count' => $count, - 'offset' => $offset, - 'status' => STATUS_PUBLISHED, - ); - $submissionsIterator = $submissionService->getMany($params); - $total = $submissionService->getMax($params); - - $featureDao = DAORegistry::getDAO('FeatureDAO'); /* @var $featureDao FeatureDAO */ - $featuredMonographIds = $featureDao->getSequencesByAssoc(ASSOC_TYPE_PRESS, $context->getId()); - - $this->_setupPaginationTemplate($request, count($submissionsIterator), $page, $count, $offset, $total); - - $templateMgr->assign(array( - 'publishedSubmissions' => iterator_to_array($submissionsIterator), - 'featuredMonographIds' => $featuredMonographIds, - )); - - $templateMgr->display('frontend/pages/catalog.tpl'); - } - - /** - * Show the catalog new releases. - * @param $args array - * @param $request PKPRequest - */ - function newReleases($args, $request) { - $templateMgr = TemplateManager::getManager($request); - $this->setupTemplate($request); - $press = $request->getPress(); - - // Provide a list of new releases to browse - $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); /* @var $newReleaseDao NewReleaseDAO */ - $newReleases = $newReleaseDao->getMonographsByAssoc(ASSOC_TYPE_PRESS, $press->getId()); - $templateMgr->assign('publishedSubmissions', $newReleases); - - // Display - $templateMgr->display('frontend/pages/catalogNewReleases.tpl'); - } - - /** - * View the content of a series. - * @param $args array [ - * @option string Series path - * @option int Page number if available - * ] - * @param $request PKPRequest - * @return string - */ - function series($args, $request) { - $seriesPath = $args[0]; - $page = isset($args[1]) ? (int) $args[1] : 1; - $templateMgr = TemplateManager::getManager($request); - $context = $request->getContext(); - - // Get the series - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getByPath($seriesPath, $context->getId()); - - if (!$series) { - $request->redirect(null, 'catalog'); - } - - $this->setupTemplate($request); - import('classes.submission.Submission'); // STATUS_ constants - import('classes.submission.SubmissionDAO'); // ORDERBY_ constants - - $orderOption = $series->getSortOption() ? $series->getSortOption() : ORDERBY_DATE_PUBLISHED . '-' . SORT_DIRECTION_DESC; - list($orderBy, $orderDir) = explode('-', $orderOption); - - $count = $context->getData('itemsPerPage') ? $context->getData('itemsPerPage') : Config::getVar('interface', 'items_per_page'); - $offset = $page > 1 ? ($page - 1) * $count : 0; - - import('classes.core.Services'); - $submissionService = Services::get('submission'); - - $params = array( - 'contextId' => $context->getId(), - 'seriesIds' => $series->getId(), - 'orderByFeatured' => true, - 'orderBy' => $orderBy, - 'orderDirection' => $orderDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC', - 'count' => $count, - 'offset' => $offset, - 'status' => STATUS_PUBLISHED, - ); - $submissionsIterator = $submissionService->getMany($params); - $total = $submissionService->getMax($params); - - $featureDao = DAORegistry::getDAO('FeatureDAO'); /* @var $featureDao FeatureDAO */ - $featuredMonographIds = $featureDao->getSequencesByAssoc(ASSOC_TYPE_SERIES, $series->getId()); - - // Provide a list of new releases to browse - $newReleases = array(); - if ($page === 1) { - $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); /* @var $newReleaseDao NewReleaseDAO */ - $newReleases = $newReleaseDao->getMonographsByAssoc(ASSOC_TYPE_SERIES, $series->getId()); - } - - $this->_setupPaginationTemplate($request, count($submissionsIterator), $page, $count, $offset, $total); - - $templateMgr->assign(array( - 'series' => $series, - 'publishedSubmissions' => iterator_to_array($submissionsIterator), - 'featuredMonographIds' => $featuredMonographIds, - 'newReleasesMonographs' => $newReleases, - )); - - return $templateMgr->display('frontend/pages/catalogSeries.tpl'); - } - - /** - * @deprecated Since OMP 3.2.1, use pages/search instead. - * @param $args array - * @param $request PKPRequest - * @return string - */ - function results($args, $request) { - $request->redirect(null, 'search'); - } - - /** - * Serve the image for a category or series. - */ - function fullSize($args, $request) { - - $press = $request->getPress(); - $type = $request->getUserVar('type'); - $id = $request->getUserVar('id'); - $imageInfo = array(); - $path = null; - - switch ($type) { - case 'category': - $path = '/categories/'; - $categoryDao = DAORegistry::getDAO('CategoryDAO'); /* @var $categoryDao CategoryDAO */ - $category = $categoryDao->getById($id, $press->getId()); - if ($category) { - $imageInfo = $category->getImage(); - } - break; - case 'series': - $path = '/series/'; - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($id, $press->getId()); - if ($series) { - $imageInfo = $series->getImage(); - } - break; - default: - fatalError('invalid type specified'); - break; - } - - if ($imageInfo) { - import('lib.pkp.classes.file.ContextFileManager'); - $pressFileManager = new ContextFileManager($press->getId()); - $pressFileManager->downloadByPath($pressFileManager->getBasePath() . $path . $imageInfo['name'], null, true); - } - } - - /** - * Serve the thumbnail for a category or series. - */ - function thumbnail($args, $request) { - $press = $request->getPress(); - $type = $request->getUserVar('type'); - $id = $request->getUserVar('id'); - $imageInfo = array(); - $path = null; // Scrutinizer - - switch ($type) { - case 'category': - $path = '/categories/'; - $categoryDao = DAORegistry::getDAO('CategoryDAO'); /* @var $categoryDao CategoryDAO */ - $category = $categoryDao->getById($id, $press->getId()); - if ($category) { - $imageInfo = $category->getImage(); - } - break; - case 'series': - $path = '/series/'; - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($id, $press->getId()); - if ($series) { - $imageInfo = $series->getImage(); - } - break; - default: - fatalError('invalid type specified'); - break; - } - - if ($imageInfo) { - import('lib.pkp.classes.file.ContextFileManager'); - $pressFileManager = new ContextFileManager($press->getId()); - $pressFileManager->downloadByPath($pressFileManager->getBasePath() . $path . $imageInfo['thumbnailName'], null, true); - } - } - - /** - * Set up the basic template. - */ - function setupTemplate($request) { - $templateMgr = TemplateManager::getManager($request); - $press = $request->getPress(); - if ($press) { - $templateMgr->assign('currency', $press->getSetting('currency')); - } - parent::setupTemplate($request); - } - - /** - * Assign the pagination template variables - * @param $request PKPRequest - * @param $submissionsCount int Number of submissions being shown - * @param $page int Page number being shown - * @param $count int Max number of monographs being shown - * @param $offset int Starting position of monographs - * @param $total int Total number of monographs available - */ - public function _setupPaginationTemplate($request, $submissionsCount, $page, $count, $offset, $total) { - $showingStart = $offset + 1; - $showingEnd = min($offset + $count, $offset + $submissionsCount); - $nextPage = $total > $showingEnd ? $page + 1 : null; - $prevPage = $showingStart > 1 ? $page - 1 : null; - - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign(array( - 'showingStart' => $showingStart, - 'showingEnd' => $showingEnd, - 'total' => $total, - 'nextPage' => $nextPage, - 'prevPage' => $prevPage, - )); - } -} diff --git a/pages/catalog/CatalogHandler.php b/pages/catalog/CatalogHandler.php new file mode 100644 index 00000000000..fe0501c54dc --- /dev/null +++ b/pages/catalog/CatalogHandler.php @@ -0,0 +1,334 @@ +page($args, $request, true); + } + + /** + * Show a page of the catalog + * + * @param array $args [ + * + * @option int Page number if available + * ] + * + * @param Request $request + * @param bool $isFirstPage Return the first page of results + */ + public function page($args, $request, $isFirstPage = false) + { + $page = null; + if ($isFirstPage) { + $page = 1; + } elseif ($args[0]) { + $page = (int) $args[0]; + } + + if (!$isFirstPage && (empty($page) || $page < 2)) { + $request->getDispatcher()->handle404(); + } + + $templateMgr = TemplateManager::getManager($request); + $this->setupTemplate($request); + $context = $request->getContext(); + + $orderOption = $context->getData('catalogSortOption') ? $context->getData('catalogSortOption') : Collector::ORDERBY_DATE_PUBLISHED . '-' . Collector::ORDER_DIR_DESC; + [$orderBy, $orderDir] = explode('-', $orderOption); + + $count = $context->getData('itemsPerPage') ? $context->getData('itemsPerPage') : Config::getVar('interface', 'items_per_page'); + $offset = $page > 1 ? ($page - 1) * $count : 0; + + $collector = Repo::submission() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ->filterByStatus([Submission::STATUS_PUBLISHED]) + ->orderBy($orderBy, $orderDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC') + ->orderByFeatured(); + + $total = $collector->getCount(); + $submissions = $collector->limit($count)->offset($offset)->getMany(); + + $featureDao = DAORegistry::getDAO('FeatureDAO'); /** @var FeatureDAO $featureDao */ + $featuredMonographIds = $featureDao->getSequencesByAssoc(Application::ASSOC_TYPE_PRESS, $context->getId()); + + $this->_setupPaginationTemplate($request, $submissions->count(), $page, $count, $offset, $total); + + $seriesIterator = Repo::section() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ->withPublished(true) + ->getMany(); + + $templateMgr->assign([ + 'publishedSubmissions' => $submissions->toArray(), + 'authorUserGroups' => $authorUserGroups = Repo::userGroup()->getCollector()->filterByRoleIds([\PKP\security\Role::ROLE_ID_AUTHOR])->filterByContextIds([$context->getId()])->getMany()->remember(), + 'featuredMonographIds' => $featuredMonographIds, + 'contextSeries' => $seriesIterator->toArray(), + ]); + + $templateMgr->display('frontend/pages/catalog.tpl'); + event(new UsageEvent(Application::ASSOC_TYPE_PRESS, $context)); + return; + } + + /** + * Show the catalog new releases. + * + * @param array $args + * @param Request $request + */ + public function newReleases($args, $request) + { + $templateMgr = TemplateManager::getManager($request); + $this->setupTemplate($request); + $press = $request->getPress(); + + // Provide a list of new releases to browse + $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); /** @var NewReleaseDAO $newReleaseDao */ + $newReleases = $newReleaseDao->getMonographsByAssoc(Application::ASSOC_TYPE_PRESS, $press->getId()); + $templateMgr->assign([ + 'publishedSubmissions' => $newReleases, + 'authorUserGroups' => $authorUserGroups = Repo::userGroup()->getCollector()->filterByRoleIds([\PKP\security\Role::ROLE_ID_AUTHOR])->filterByContextIds([$press->getId()])->getMany()->remember(), + ]); + + // Display + $templateMgr->display('frontend/pages/catalogNewReleases.tpl'); + } + + /** + * View the content of a series. + * + * @param array $args [ + * + * @option string Series path + * @option int Page number if available + * ] + * + * @param Request $request + */ + public function series($args, $request) + { + $seriesPath = $args[0]; + $page = isset($args[1]) ? (int) $args[1] : 1; + $templateMgr = TemplateManager::getManager($request); + $context = $request->getContext(); + + // Get the series + $series = $seriesPath ? Repo::section()->getByPath($seriesPath, $context->getId()) : null; + + if (!$series) { + $request->redirect(null, 'catalog'); + } + + $this->setupTemplate($request); + + $orderOption = $series->getSortOption() ? $series->getSortOption() : Collector::ORDERBY_DATE_PUBLISHED . '-' . Collector::ORDER_DIR_DESC; + [$orderBy, $orderDir] = explode('-', $orderOption); + + $count = $context->getData('itemsPerPage') ? $context->getData('itemsPerPage') : Config::getVar('interface', 'items_per_page'); + $offset = $page > 1 ? ($page - 1) * $count : 0; + + $collector = Repo::submission() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ->filterBySeriesIds([$series->getId()]) + ->filterByStatus([Submission::STATUS_PUBLISHED]) + ->orderBy($orderBy, $orderDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC') + ->orderByFeatured(); + + $total = $collector->getCount(); + $submissions = $collector->limit($count)->offset($offset)->getMany(); + + $featureDao = DAORegistry::getDAO('FeatureDAO'); /** @var FeatureDAO $featureDao */ + $featuredMonographIds = $featureDao->getSequencesByAssoc(Application::ASSOC_TYPE_SERIES, $series->getId()); + + // Provide a list of new releases to browse + $newReleases = []; + if ($page === 1) { + $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); /** @var NewReleaseDAO $newReleaseDao */ + $newReleases = $newReleaseDao->getMonographsByAssoc(Application::ASSOC_TYPE_SERIES, $series->getId()); + } + + $this->_setupPaginationTemplate($request, $submissions->count(), $page, $count, $offset, $total); + + $templateMgr->assign([ + 'series' => $series, + 'publishedSubmissions' => $submissions->toArray(), + 'featuredMonographIds' => $featuredMonographIds, + 'newReleasesMonographs' => $newReleases, + 'authorUserGroups' => $authorUserGroups = Repo::userGroup()->getCollector()->filterByRoleIds([\PKP\security\Role::ROLE_ID_AUTHOR])->filterByContextIds([$context->getId()])->getMany()->remember(), + ]); + + $templateMgr->display('frontend/pages/catalogSeries.tpl'); + event(new UsageEvent(Application::ASSOC_TYPE_SERIES, $context, null, null, null, null, $series)); + return; + } + + /** + * @deprecated Since OMP 3.2.1, use pages/search instead. + * + * @param array $args + * @param Request $request + */ + public function results($args, $request) + { + $request->redirect(null, 'search'); + } + + /** + * Serve the image for a category or series. + */ + public function fullSize($args, $request) + { + $press = $request->getPress(); + $type = $request->getUserVar('type'); + $id = $request->getUserVar('id'); + $imageInfo = []; + $path = null; + + switch ($type) { + case 'category': + $path = '/categories/'; + $category = Repo::category()->get((int) $id); + if ($category && $category->getContextId() == $press->getId()) { + $imageInfo = $category->getImage(); + } + break; + case 'series': + $path = '/series/'; + $series = Repo::section()->get($id, $press->getId()); + if ($series) { + $imageInfo = $series->getImage(); + } + break; + default: + fatalError('invalid type specified'); + break; + } + + if ($imageInfo) { + $pressFileManager = new ContextFileManager($press->getId()); + $pressFileManager->downloadByPath($pressFileManager->getBasePath() . $path . $imageInfo['name'], null, true); + } + } + + /** + * Serve the thumbnail for a category or series. + */ + public function thumbnail($args, $request) + { + $press = $request->getPress(); + $type = $request->getUserVar('type'); + $id = $request->getUserVar('id'); + $imageInfo = []; + $path = null; // Scrutinizer + + switch ($type) { + case 'category': + $path = '/categories/'; + $category = Repo::category()->get((int) $id); + if ($category && $category->getContextId() == $press->getId()) { + $imageInfo = $category->getImage(); + } + break; + case 'series': + $path = '/series/'; + $series = Repo::section()->get($id, $press->getId()); + if ($series) { + $imageInfo = $series->getImage(); + } + break; + default: + fatalError('invalid type specified'); + break; + } + + if ($imageInfo) { + $pressFileManager = new ContextFileManager($press->getId()); + $pressFileManager->downloadByPath($pressFileManager->getBasePath() . $path . $imageInfo['thumbnailName'], null, true); + } + } + + /** + * Set up the basic template. + */ + public function setupTemplate($request) + { + $templateMgr = TemplateManager::getManager($request); + $press = $request->getPress(); + if ($press) { + $templateMgr->assign('currency', $press->getSetting('currency')); + } + parent::setupTemplate($request); + } + + /** + * Assign the pagination template variables + * + * @param Request $request + * @param int $submissionsCount Number of submissions being shown + * @param int $page Page number being shown + * @param int $count Max number of monographs being shown + * @param int $offset Starting position of monographs + * @param int $total Total number of monographs available + */ + public function _setupPaginationTemplate($request, $submissionsCount, $page, $count, $offset, $total) + { + $showingStart = $offset + 1; + $showingEnd = min($offset + $count, $offset + $submissionsCount); + $nextPage = $total > $showingEnd ? $page + 1 : null; + $prevPage = $showingStart > 1 ? $page - 1 : null; + + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign([ + 'showingStart' => $showingStart, + 'showingEnd' => $showingEnd, + 'total' => $total, + 'nextPage' => $nextPage, + 'prevPage' => $prevPage, + ]); + } +} diff --git a/pages/catalog/index.php b/pages/catalog/index.php index 8327443aab2..9e5c2b57a94 100644 --- a/pages/catalog/index.php +++ b/pages/catalog/index.php @@ -12,28 +12,25 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_catalog + * * @brief Handle requests for the public catalog view. * */ switch ($op) { - case 'index': - case 'page': - case 'category': - case 'fullSize': - case 'newReleases': - case 'series': - case 'thumbnail': - case 'results': - define('HANDLER_CLASS', 'CatalogHandler'); - import('pages.catalog.CatalogHandler'); - break; - case 'book': - case 'download': - case 'view': - define('HANDLER_CLASS', 'CatalogBookHandler'); - import('pages.catalog.CatalogBookHandler'); - break; + case 'index': + case 'page': + case 'category': + case 'fullSize': + case 'newReleases': + case 'series': + case 'thumbnail': + case 'results': + define('HANDLER_CLASS', 'APP\pages\catalog\CatalogHandler'); + break; + case 'book': + case 'download': + case 'view': + define('HANDLER_CLASS', 'APP\pages\catalog\CatalogBookHandler'); + break; } - - diff --git a/pages/decision/index.php b/pages/decision/index.php new file mode 100644 index 00000000000..c8447f9dbba --- /dev/null +++ b/pages/decision/index.php @@ -0,0 +1,20 @@ +getContext(); + + $stateComponents = []; + + if (!empty($enabledDoiTypes)) { + $submissionDoiListPanel = new DoiListPanel( + 'submissionDoiListPanel', + __('doi.manager.submissionDois'), + array_merge( + $commonArgs, + [ + 'apiUrl' => $request->getDispatcher()->url($request, PKPApplication::ROUTE_API, $context->getPath(), 'submissions'), + 'getParams' => [ + 'stageIds' => [WORKFLOW_STAGE_ID_PUBLISHED, WORKFLOW_STAGE_ID_PRODUCTION], + ], + 'itemType' => 'submission' + ] + ) + ); + $stateComponents[$submissionDoiListPanel->id] = $submissionDoiListPanel->getConfig(); + } + + return $stateComponents; + } + + /** + * Set Smarty template variables. Which tabs to display are set by the APP. + */ + protected function getTemplateVariables(array $enabledDoiTypes): array + { + $templateVariables = parent::getTemplateVariables($enabledDoiTypes); + $templateVariables['displaySubmissionsTab'] = !empty($enabledDoiTypes); + + return $templateVariables; + } +} diff --git a/pages/dois/index.php b/pages/dois/index.php new file mode 100644 index 00000000000..0389c71491d --- /dev/null +++ b/pages/dois/index.php @@ -0,0 +1,23 @@ +getRouter()->getRequestedOp($request); - if ($op == 'plugin') { - $args = $request->getRouter()->getRequestedArgs($request); - $pluginName = array_shift($args); - $plugins = PluginRegistry::loadCategory('gateways'); - if (!isset($plugins[$pluginName])) { - $request->getDispatcher()->handle404(); - } - $this->plugin = $plugins[$pluginName]; - foreach ($this->plugin->getPolicies($request) as $policy) { - $this->addPolicy($policy); - } - } - } - - /** - * Index handler. - * @param $args array - * @param $request PKPRequest - */ - function index($args, $request) { - $request->redirect(null, 'index'); - } - - /** - * Handle requests for gateway plugins. - * @param $args array - * @param $request PKPRequest - */ - function plugin($args, $request) { - $this->validate(); - if (isset($this->plugin)) { - if (!$this->plugin->fetch(array_slice($args, 1), $request)) { - $request->redirect(null, 'index'); - } - } else { - $request->redirect(null, 'index'); - } - } -} diff --git a/pages/gateway/GatewayHandler.php b/pages/gateway/GatewayHandler.php new file mode 100644 index 00000000000..81dfccc816d --- /dev/null +++ b/pages/gateway/GatewayHandler.php @@ -0,0 +1,78 @@ +getRouter()->getRequestedOp($request); + if ($op == 'plugin') { + $args = $request->getRouter()->getRequestedArgs($request); + $pluginName = array_shift($args); + $plugins = PluginRegistry::loadCategory('gateways'); + if (!isset($plugins[$pluginName])) { + $request->getDispatcher()->handle404(); + } + $this->plugin = $plugins[$pluginName]; + foreach ($this->plugin->getPolicies($request) as $policy) { + $this->addPolicy($policy); + } + } + } + + /** + * Index handler. + * + * @param array $args + * @param Request $request + */ + public function index($args, $request) + { + $request->redirect(null, 'index'); + } + + /** + * Handle requests for gateway plugins. + * + * @param array $args + * @param Request $request + */ + public function plugin($args, $request) + { + $this->validate(); + if (isset($this->plugin)) { + if (!$this->plugin->fetch(array_slice($args, 1), $request)) { + $request->redirect(null, 'index'); + } + } else { + $request->redirect(null, 'index'); + } + } +} diff --git a/pages/gateway/index.php b/pages/gateway/index.php index f3c1bc91621..1f520d6c842 100644 --- a/pages/gateway/index.php +++ b/pages/gateway/index.php @@ -3,7 +3,7 @@ /** * @defgroup pages_gateway Gateway Pages */ - + /** * @file pages/gateway/index.php * @@ -12,16 +12,14 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_gateway - * @brief Handle gateway interaction requests. + * + * @brief Handle gateway interaction requests. * */ switch ($op) { - case 'index': - case 'plugin': - define('HANDLER_CLASS', 'GatewayHandler'); - import('pages.gateway.GatewayHandler'); - break; + case 'index': + case 'plugin': + define('HANDLER_CLASS', 'APP\pages\gateway\GatewayHandler'); + break; } - - diff --git a/pages/index/IndexHandler.inc.php b/pages/index/IndexHandler.inc.php deleted file mode 100644 index afd2649406f..00000000000 --- a/pages/index/IndexHandler.inc.php +++ /dev/null @@ -1,134 +0,0 @@ -validate(null, $request); - $press = $request->getPress(); - - if (!$press) { - $press = $this->getTargetContext($request, $hasNoContexts); - if ($press) { - // There's a target context but no press in the current request. Redirect. - $request->redirect($press->getPath()); - } - if ($hasNoContexts && Validation::isSiteAdmin()) { - // No contexts created, and this is the admin. - $request->redirect(null, 'admin', 'contexts'); - } - } - - $this->setupTemplate($request); - - if ($press) { - // Display the current press home. - $this->_displayPressIndexPage($press, $request); - } else { - // Display the site home. - $site = $request->getSite(); - $this->_displaySiteIndexPage($site, $request); - } - - } - - - // - // Private helper methods. - // - /** - * Display the site index page. - * @param $site Site - * @param $request Request - */ - function _displaySiteIndexPage($site, $request) { - $templateMgr = TemplateManager::getManager($request); - $pressDao = DAORegistry::getDAO('PressDAO'); /* @var $pressDao PressDAO */ - - if ($site->getRedirect() && ($press = $pressDao->getById($site->getRedirect())) != null) { - $request->redirect($press->getPath()); - } - - $templateMgr->assign(array( - 'pageTitleTranslated' => $site->getLocalizedTitle(), - 'about' => $site->getLocalizedAbout(), - 'pressesFilesPath' => $request->getBaseUrl() . '/' . Config::getVar('files', 'public_files_dir') . '/presses/', - 'presses' => $pressDao->getAll(true)->toArray(), - 'site' => $site, - )); - $templateMgr->setCacheability(CACHEABILITY_PUBLIC); - $templateMgr->display('frontend/pages/indexSite.tpl'); - } - - /** - * Display a given press index page. - * @param $press Press - * @param $request Request - */ - function _displayPressIndexPage($press, $request) { - $templateMgr = TemplateManager::getManager($request); - - // Display New Releases - if ($press->getSetting('displayNewReleases')) { - $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); /* @var $newReleaseDao NewReleaseDAO */ - $newReleases = $newReleaseDao->getMonographsByAssoc(ASSOC_TYPE_PRESS, $press->getId()); - $templateMgr->assign('newReleases', $newReleases); - } - - // Assign header and content for home page. - $templateMgr->assign('additionalHomeContent', $press->getLocalizedSetting('additionalHomeContent')); - $templateMgr->assign('homepageImage', $press->getLocalizedSetting('homepageImage')); - $templateMgr->assign('pageTitleTranslated', $press->getLocalizedSetting('name')); - - // Display creative commons logo/licence if enabled. - $templateMgr->assign('displayCreativeCommons', $press->getSetting('includeCreativeCommons')); - - $this->_setupAnnouncements($press, $templateMgr); - - // Display Featured Books - if ($press->getSetting('displayFeaturedBooks')) { - $featureDao = DAORegistry::getDAO('FeatureDAO'); /* @var $featureDao FeatureDAO */ - $featuredMonographIds = $featureDao->getSequencesByAssoc(ASSOC_TYPE_PRESS, $press->getId()); - $featuredMonographs = array(); - if (!empty($featuredMonographIds)) { - foreach($featuredMonographIds as $submissionId => $value) { - $featuredMonographs[] = Services::get('submission')->get($submissionId); - } - } - $templateMgr->assign('featuredMonographs', $featuredMonographs); - } - - // Display In Spotlight - if ($press->getSetting('displayInSpotlight')) { - // Include random spotlight items for the press home page. - $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /* @var $spotlightDao SpotlightDAO */ - $spotlights = $spotlightDao->getRandomByPressId($press->getId(), MAX_SPOTLIGHTS_VISIBLE); - $templateMgr->assign('spotlights', $spotlights); - } - - $templateMgr->display('frontend/pages/index.tpl'); - } -} - diff --git a/pages/index/IndexHandler.php b/pages/index/IndexHandler.php new file mode 100644 index 00000000000..e0727e54320 --- /dev/null +++ b/pages/index/IndexHandler.php @@ -0,0 +1,159 @@ +validate(null, $request); + $press = $request->getPress(); + + if (!$press) { + $press = $this->getTargetContext($request, $hasNoContexts); + if ($press) { + // There's a target context but no press in the current request. Redirect. + $request->redirect($press->getPath()); + } + if ($hasNoContexts && Validation::isSiteAdmin()) { + // No contexts created, and this is the admin. + $request->redirect(null, 'admin', 'contexts'); + } + } + + $this->setupTemplate($request); + + if ($press) { + // Display the current press home. + $this->_displayPressIndexPage($press, $request); + } else { + // Display the site home. + $site = $request->getSite(); + $this->_displaySiteIndexPage($site, $request); + } + } + + + // + // Private helper methods. + // + /** + * Display the site index page. + * + * @param Site $site + * @param Request $request + */ + public function _displaySiteIndexPage($site, $request) + { + $templateMgr = TemplateManager::getManager($request); + $pressDao = DAORegistry::getDAO('PressDAO'); /** @var PressDAO $pressDao */ + + if ($site->getRedirect() && ($press = $pressDao->getById($site->getRedirect())) != null) { + $request->redirect($press->getPath()); + } + + $templateMgr->assign([ + 'pageTitleTranslated' => $site->getLocalizedTitle(), + 'about' => $site->getLocalizedAbout(), + 'pressesFilesPath' => $request->getBaseUrl() . '/' . Config::getVar('files', 'public_files_dir') . '/presses/', + 'presses' => $pressDao->getAll(true)->toArray(), + 'site' => $site, + ]); + $templateMgr->setCacheability(TemplateManager::CACHEABILITY_PUBLIC); + $templateMgr->display('frontend/pages/indexSite.tpl'); + } + + /** + * Display a given press index page. + * + * @param Press $press + * @param Request $request + */ + public function _displayPressIndexPage($press, $request) + { + $templateMgr = TemplateManager::getManager($request); + + // Display New Releases + if ($press->getSetting('displayNewReleases')) { + $newReleaseDao = DAORegistry::getDAO('NewReleaseDAO'); /** @var NewReleaseDAO $newReleaseDao */ + $newReleases = $newReleaseDao->getMonographsByAssoc(Application::ASSOC_TYPE_PRESS, $press->getId()); + $templateMgr->assign('newReleases', $newReleases); + } + + $templateMgr->assign([ + 'additionalHomeContent' => $press->getLocalizedSetting('additionalHomeContent'), + 'homepageImage' => $press->getLocalizedSetting('homepageImage'), + 'pageTitleTranslated' => $press->getLocalizedSetting('name'), + 'displayCreativeCommons' => $press->getSetting('includeCreativeCommons'), + 'authorUserGroups' => Repo::userGroup()->getCollector()->filterByRoleIds([\PKP\security\Role::ROLE_ID_AUTHOR])->filterByContextIds([$press->getId()])->getMany()->remember(), + ]); + + $this->_setupAnnouncements($press, $templateMgr); + + // Display Featured Books + if ($press->getSetting('displayFeaturedBooks')) { + $featureDao = DAORegistry::getDAO('FeatureDAO'); /** @var FeatureDAO $featureDao */ + $featuredMonographIds = $featureDao->getSequencesByAssoc(Application::ASSOC_TYPE_PRESS, $press->getId()); + $featuredMonographs = []; + if (!empty($featuredMonographIds)) { + foreach ($featuredMonographIds as $submissionId => $value) { + $featuredMonographs[] = Repo::submission()->get($submissionId); + } + } + $templateMgr->assign('featuredMonographs', $featuredMonographs); + } + + // Display In Spotlight + if ($press->getSetting('displayInSpotlight')) { + // Include random spotlight items for the press home page. + $spotlightDao = DAORegistry::getDAO('SpotlightDAO'); /** @var SpotlightDAO $spotlightDao */ + $spotlights = $spotlightDao->getRandomByPressId($press->getId(), Spotlight::MAX_SPOTLIGHTS_VISIBLE); + $templateMgr->assign('spotlights', $spotlights); + } + + $templateMgr->display('frontend/pages/index.tpl'); + event(new UsageEvent(Application::ASSOC_TYPE_PRESS, $press)); + return; + } +} diff --git a/pages/index/index.php b/pages/index/index.php index 09d0d3b8caa..acd8a783a80 100644 --- a/pages/index/index.php +++ b/pages/index/index.php @@ -12,16 +12,14 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_index + * * @brief Handle site index page requests. * */ switch ($op) { - case 'index': - define('HANDLER_CLASS', 'IndexHandler'); - import('pages.index.IndexHandler'); - break; + case 'index': + define('HANDLER_CLASS', 'APP\pages\index\IndexHandler'); + break; } - - diff --git a/pages/information/InformationHandler.inc.php b/pages/information/InformationHandler.inc.php deleted file mode 100644 index efca78a6eb2..00000000000 --- a/pages/information/InformationHandler.inc.php +++ /dev/null @@ -1,112 +0,0 @@ -validate(null, $request); - $press = $request->getPress(); - if ($press == null) $request->redirect('index'); - - $this->setupTemplate($request, $press); - - $contentOnly = $request->getUserVar('contentOnly'); - - switch(array_shift($args)) { - case 'readers': - $content = $press->getLocalizedSetting('readerInformation'); - $pageTitle = 'navigation.infoForReaders.long'; - $pageCrumbTitle = 'navigation.infoForReaders'; - break; - case 'authors': - $content = $press->getLocalizedSetting('authorInformation'); - $pageTitle = 'navigation.infoForAuthors.long'; - $pageCrumbTitle = 'navigation.infoForAuthors'; - break; - case 'librarians': - $content = $press->getLocalizedSetting('librarianInformation'); - $pageTitle = 'navigation.infoForLibrarians.long'; - $pageCrumbTitle = 'navigation.infoForLibrarians'; - break; - case 'competingInterestPolicy': - $content = $press->getLocalizedSetting('competingInterestPolicy'); - $pageTitle = $pageCrumbTitle = 'navigation.competingInterestPolicy'; - break; - case 'sampleCopyrightWording': - $content = __('manager.setup.copyrightNotice.sample'); - $pageTitle = $pageCrumbTitle = 'manager.setup.copyrightNotice'; - break; - default: - $request->redirect($press->getPath()); - return; - } - - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('pageCrumbTitle', $pageCrumbTitle); - $templateMgr->assign('pageTitle', $pageTitle); - $templateMgr->assign('content', $content); - $templateMgr->assign('contentOnly', $contentOnly); // Hide the header and footer code - - $templateMgr->display('frontend/pages/information.tpl'); - } - - function readers($args, $request) { - $this->index(array('readers'), $request); - } - - function authors($args, $request) { - $this->index(array('authors'), $request); - } - - function librarians($args, $request) { - $this->index(array('librarians'), $request); - } - - function competingInterestPolicy($args, $request) { - return $this->index(array('competingInterestPolicy'), $request); - } - - function sampleCopyrightWording($args, $request) { - $this->index(array('sampleCopyrightWording'), $request); - } - - /** - * Initialize the template. - * @param $press Press - */ - function setupTemplate($request, $press) { - parent::setupTemplate($request); - AppLocale::requireComponents(LOCALE_COMPONENT_APP_MANAGER); // FIXME needed? - if (!$press->getSetting('restrictSiteAccess')) { - $templateMgr = TemplateManager::getManager($request); - $templateMgr->setCacheability(CACHEABILITY_PUBLIC); - } - } -} - - diff --git a/pages/information/InformationHandler.php b/pages/information/InformationHandler.php new file mode 100644 index 00000000000..61dbd7e57fa --- /dev/null +++ b/pages/information/InformationHandler.php @@ -0,0 +1,117 @@ +validate(null, $request); + $press = $request->getPress(); + if ($press == null) { + $request->redirect('index'); + } + + $this->setupTemplate($request); + + $contentOnly = $request->getUserVar('contentOnly'); + + switch (array_shift($args)) { + case 'readers': + $content = $press->getLocalizedSetting('readerInformation'); + $pageTitle = 'navigation.infoForReaders.long'; + $pageCrumbTitle = 'navigation.infoForReaders'; + break; + case 'authors': + $content = $press->getLocalizedSetting('authorInformation'); + $pageTitle = 'navigation.infoForAuthors.long'; + $pageCrumbTitle = 'navigation.infoForAuthors'; + break; + case 'librarians': + $content = $press->getLocalizedSetting('librarianInformation'); + $pageTitle = 'navigation.infoForLibrarians.long'; + $pageCrumbTitle = 'navigation.infoForLibrarians'; + break; + case 'competingInterestPolicy': + $content = $press->getLocalizedSetting('competingInterestPolicy'); + $pageTitle = $pageCrumbTitle = 'navigation.competingInterestPolicy'; + break; + case 'sampleCopyrightWording': + $content = __('manager.setup.copyrightNotice.sample'); + $pageTitle = $pageCrumbTitle = 'manager.setup.copyrightNotice'; + break; + default: + $request->redirect($press->getPath()); + return; + } + + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign('pageCrumbTitle', $pageCrumbTitle); + $templateMgr->assign('pageTitle', $pageTitle); + $templateMgr->assign('content', $content); + $templateMgr->assign('contentOnly', $contentOnly); // Hide the header and footer code + + $templateMgr->display('frontend/pages/information.tpl'); + } + + public function readers($args, $request) + { + $this->index(['readers'], $request); + } + + public function authors($args, $request) + { + $this->index(['authors'], $request); + } + + public function librarians($args, $request) + { + $this->index(['librarians'], $request); + } + + public function competingInterestPolicy($args, $request) + { + return $this->index(['competingInterestPolicy'], $request); + } + + public function sampleCopyrightWording($args, $request) + { + $this->index(['sampleCopyrightWording'], $request); + } + + /** + * Initialize the template. + */ + public function setupTemplate($request) + { + parent::setupTemplate($request); + if (!$request->getPress()->getSetting('restrictSiteAccess')) { + $templateMgr = TemplateManager::getManager($request); + $templateMgr->setCacheability(TemplateManager::CACHEABILITY_PUBLIC); + } + } +} diff --git a/pages/information/index.php b/pages/information/index.php index f7d9cbf0761..517f59c0c8a 100644 --- a/pages/information/index.php +++ b/pages/information/index.php @@ -12,20 +12,18 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_information + * * @brief Handle information requests. * */ switch ($op) { - case 'index': - case 'readers': - case 'authors': - case 'librarians': - case 'competingInterestPolicy': - case 'sampleCopyrightWording': - define('HANDLER_CLASS', 'InformationHandler'); - import('pages.information.InformationHandler'); - break; + case 'index': + case 'readers': + case 'authors': + case 'librarians': + case 'competingInterestPolicy': + case 'sampleCopyrightWording': + define('HANDLER_CLASS', 'APP\pages\information\InformationHandler'); + break; } - - diff --git a/pages/manageCatalog/ManageCatalogHandler.inc.php b/pages/manageCatalog/ManageCatalogHandler.inc.php deleted file mode 100644 index a9d6c2e7f36..00000000000 --- a/pages/manageCatalog/ManageCatalogHandler.inc.php +++ /dev/null @@ -1,124 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER), - array('index') - ); - } - - - // - // Implement template methods from PKPHandler - // - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.PKPSiteAccessPolicy'); - $this->addPolicy(new PKPSiteAccessPolicy($request, null, $roleAssignments)); - return parent::authorize($request, $args, $roleAssignments); - } - - /** - * @copydoc PKPHandler::initialize() - */ - function initialize($request) { - $this->setupTemplate($request); - - // Call parent method. - parent::initialize($request); - } - - - // - // Public handler methods - // - /** - * Show the catalog management home. - * @param $args array - * @param $request PKPRequest - * @return JSONMessage JSON object - */ - function index($args, $request) { - AppLocale::requireComponents(LOCALE_COMPONENT_APP_SUBMISSION); - $context = $request->getContext(); - - // Catalog list - import('lib.pkp.classes.submission.PKPSubmissionDAO'); // ORDERBY_DATE_PUBLISHED constants - list($catalogSortBy, $catalogSortDir) = explode('-', $context->getData('catalogSortOption')); - $catalogSortBy = empty($catalogSortBy) ? ORDERBY_DATE_PUBLISHED : $catalogSortBy; - $catalogSortDir = $catalogSortDir == SORT_DIRECTION_ASC ? 'ASC' : 'DESC'; - $catalogList = new \APP\components\listPanels\CatalogListPanel( - 'catalog', - __('submission.list.monographs'), - [ - 'apiUrl' => $request->getDispatcher()->url( - $request, - ROUTE_API, - $context->getPath(), - '_submissions' - ), - 'catalogSortBy' => $catalogSortBy, - 'catalogSortDir' => $catalogSortDir, - 'getParams' => [ - 'status' => STATUS_PUBLISHED, - 'orderByFeatured' => true, - 'orderBy' => $catalogSortBy, - 'orderDirection' => $catalogSortDir, - ], - ] - ); - - $submissionService = \Services::get('submission'); - $params = array_merge($catalogList->getParams, [ - 'count' => $catalogList->count, - 'contextId' => $context->getId(), - ]); - $submissionsIterator = $submissionService->getMany($params); - $items = []; - foreach ($submissionsIterator as $submission) { - $items[] = $submissionService->getBackendListProperties($submission, ['request' => $request]); - } - $catalogList->set([ - 'items' => $items, - 'itemsMax' => $submissionService->getMax($params), - ]); - - $templateMgr = TemplateManager::getManager($request); - $templateMgr->setState([ - 'components' => [ - 'catalog' => $catalogList->getConfig() - ] - ]); - return $templateMgr->display('manageCatalog/index.tpl'); - } -} diff --git a/pages/manageCatalog/ManageCatalogHandler.php b/pages/manageCatalog/ManageCatalogHandler.php new file mode 100644 index 00000000000..84c356b230f --- /dev/null +++ b/pages/manageCatalog/ManageCatalogHandler.php @@ -0,0 +1,152 @@ +addRoleAssignment( + [Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN], + ['index'] + ); + } + + + // + // Implement template methods from PKPHandler + // + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $this->addPolicy(new PKPSiteAccessPolicy($request, null, $roleAssignments)); + return parent::authorize($request, $args, $roleAssignments); + } + + /** + * @copydoc PKPHandler::initialize() + */ + public function initialize($request) + { + $this->setupTemplate($request); + + // Call parent method. + parent::initialize($request); + } + + + // + // Public handler methods + // + /** + * Show the catalog management home. + * + * @param array $args + * @param Request $request + */ + public function index($args, $request) + { + $context = $request->getContext(); + + // Catalog list + $catalogSortBy = Collector::ORDERBY_DATE_PUBLISHED; + $catalogSortDir = 'DESC'; + if ($context->getData('catalogSortOption')) { + [$catalogSortBy, $catalogSortDir] = explode('-', $context->getData('catalogSortOption')); + } + $catalogList = new \APP\components\listPanels\CatalogListPanel( + 'catalog', + __('submission.list.monographs'), + [ + 'apiUrl' => $request->getDispatcher()->url( + $request, + Application::ROUTE_API, + $context->getPath(), + '_submissions' + ), + 'catalogSortBy' => $catalogSortBy, + 'catalogSortDir' => $catalogSortDir, + 'getParams' => [ + 'status' => Submission::STATUS_PUBLISHED, + 'orderByFeatured' => true, + 'orderBy' => $catalogSortBy, + 'orderDirection' => $catalogSortDir, + ], + ] + ); + + $collector = Repo::submission() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ->filterByStatus([Submission::STATUS_PUBLISHED]) + ->orderBy($catalogSortBy, $catalogSortDir) + ->orderByFeatured(); + $total = $collector->getCount(); + $submissions = $collector->limit($catalogList->count)->getMany(); + + $userGroups = Repo::userGroup()->getCollector() + ->filterByContextIds([$context->getId()]) + ->getMany(); + + /** @var GenreDAO $genreDao */ + $genreDao = DAORegistry::getDAO('GenreDAO'); + $genres = $genreDao->getByContextId($context->getId())->toArray(); + + $items = Repo::submission()->getSchemaMap() + ->mapManyToSubmissionsList($submissions, $userGroups, $genres) + ->values(); + + $catalogList->set([ + 'items' => $items, + 'itemsMax' => $total, + ]); + + $templateMgr = TemplateManager::getManager($request); + $templateMgr->setState([ + 'components' => [ + 'catalog' => $catalogList->getConfig() + ] + ]); + return $templateMgr->display('manageCatalog/index.tpl'); + } +} diff --git a/pages/manageCatalog/index.php b/pages/manageCatalog/index.php index 42a40ac5f00..f83acccdb34 100644 --- a/pages/manageCatalog/index.php +++ b/pages/manageCatalog/index.php @@ -12,16 +12,14 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_catalog + * * @brief Handle requests for catalog management functions. * */ switch ($op) { - case 'index': - case 'homepage': - define('HANDLER_CLASS', 'ManageCatalogHandler'); - import('pages.manageCatalog.ManageCatalogHandler'); - break; + case 'index': + case 'homepage': + define('HANDLER_CLASS', 'APP\pages\manageCatalog\ManageCatalogHandler'); + break; } - - diff --git a/pages/management/SettingsHandler.inc.php b/pages/management/SettingsHandler.inc.php deleted file mode 100644 index 92d3ff4079b..00000000000 --- a/pages/management/SettingsHandler.inc.php +++ /dev/null @@ -1,71 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_SITE_ADMIN), - array( - 'access', - ) - ); - $this->addRoleAssignment( - ROLE_ID_MANAGER, - array( - 'settings', - ) - ); - } - - /** - * @copydoc ManagementHandler::website() - */ - function website($args, $request) { - AppLocale::requireComponents( - LOCALE_COMPONENT_PKP_SUBMISSION, - LOCALE_COMPONENT_APP_SUBMISSION - ); - parent::website($args, $request); - } - - /** - * Add the workflow settings page - * - * @param $args array - * @param $request Request - */ - function workflow($args, $request) { - parent::workflow($args, $request); - TemplateManager::getManager($request)->display('management/workflow.tpl'); - } - - /** - * Add the distribution settings page - * - * @param $args array - * @param $request Request - */ - function distribution($args, $request) { - parent::distribution($args, $request); - TemplateManager::getManager($request)->display('management/distribution.tpl'); - } -} diff --git a/pages/management/SettingsHandler.php b/pages/management/SettingsHandler.php new file mode 100644 index 00000000000..25421f2a27d --- /dev/null +++ b/pages/management/SettingsHandler.php @@ -0,0 +1,72 @@ +addRoleAssignment( + [Role::ROLE_ID_SITE_ADMIN], + [ + 'access', + ] + ); + $this->addRoleAssignment( + Role::ROLE_ID_MANAGER, + [ + 'settings', + ] + ); + } + + /** + * Add the workflow settings page + * + * @param array $args + * @param Request $request + */ + public function workflow($args, $request) + { + parent::workflow($args, $request); + + $this->addReviewFormWorkflowSupport($request); + + TemplateManager::getManager($request)->display('management/workflow.tpl'); + } + + /** + * Add the distribution settings page + * + * @param array $args + * @param Request $request + */ + public function distribution($args, $request) + { + parent::distribution($args, $request); + TemplateManager::getManager($request)->display('management/distribution.tpl'); + } +} diff --git a/pages/management/index.php b/pages/management/index.php index 2e1756bb2d8..cdf548238d4 100644 --- a/pages/management/index.php +++ b/pages/management/index.php @@ -12,31 +12,29 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_management + * * @brief Handle requests for management pages. * */ switch ($op) { - // - // Settings - // - case 'categories': - case 'series': - case 'settings': - case 'access': - import('pages.management.SettingsHandler'); - define('HANDLER_CLASS', 'SettingsHandler'); - break; - case 'tools': - case 'importexport': - case 'statistics': - case 'permissions': - case 'resetPermissions': - import('lib.pkp.pages.management.PKPToolsHandler'); - define('HANDLER_CLASS', 'PKPToolsHandler'); - break; - case 'navigation': - import('pages.management.NavigationHandler'); - define('HANDLER_CLASS', 'NavigationHandler'); - break; + // + // Settings + // + case 'categories': + case 'series': + case 'settings': + case 'access': + define('HANDLER_CLASS', 'APP\pages\management\SettingsHandler'); + break; + case 'tools': + case 'importexport': + case 'statistics': + case 'permissions': + case 'resetPermissions': + define('HANDLER_CLASS', 'PKP\pages\management\PKPToolsHandler'); + break; + case 'navigation': + define('HANDLER_CLASS', 'APP\pages\management\NavigationHandler'); + break; } diff --git a/pages/oai/OAIHandler.inc.php b/pages/oai/OAIHandler.inc.php deleted file mode 100644 index 11155cd821e..00000000000 --- a/pages/oai/OAIHandler.inc.php +++ /dev/null @@ -1,55 +0,0 @@ -url(null, 'oai'), Config::getVar('oai', 'repository_id'))); - $oai->execute(); - } -} - - diff --git a/pages/oai/OAIHandler.php b/pages/oai/OAIHandler.php new file mode 100644 index 00000000000..6bd5e425344 --- /dev/null +++ b/pages/oai/OAIHandler.php @@ -0,0 +1,58 @@ +url(null, 'oai'), Config::getVar('oai', 'repository_id'))); + $oai->execute(); + } +} diff --git a/pages/oai/index.php b/pages/oai/index.php index 20e74a6ad91..5aa4751b6ff 100644 --- a/pages/oai/index.php +++ b/pages/oai/index.php @@ -3,7 +3,7 @@ /** * @defgroup pages_oai OAI page */ - + /** * @file pages/oai/index.php * @@ -12,15 +12,13 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_oai - * @brief Handle Open Archives Initiative protocol interaction requests. + * + * @brief Handle Open Archives Initiative protocol interaction requests. * */ switch ($op) { - case 'index': - define('HANDLER_CLASS', 'OAIHandler'); - import('pages.oai.OAIHandler'); - break; + case 'index': + define('HANDLER_CLASS', 'APP\pages\oai\OAIHandler'); + break; } - - diff --git a/pages/payment/PaymentHandler.inc.php b/pages/payment/PaymentHandler.inc.php deleted file mode 100644 index c3624f3b290..00000000000 --- a/pages/payment/PaymentHandler.inc.php +++ /dev/null @@ -1,47 +0,0 @@ -redirect(null, null, 'index'); - } - - $paymentMethodPlugin = $paymentMethodPlugins[$paymentMethodPluginName]; - if (!$paymentMethodPlugin->isConfigured($request->getContext())) { - $request->redirect(null, null, 'index'); - } - - $paymentMethodPlugin->handle($args, $request); - } -} - - diff --git a/pages/payment/PaymentHandler.php b/pages/payment/PaymentHandler.php new file mode 100644 index 00000000000..c00f13c9d6f --- /dev/null +++ b/pages/payment/PaymentHandler.php @@ -0,0 +1,46 @@ +redirect(null, null, 'index'); + } + + $paymentMethodPlugin = $paymentMethodPlugins[$paymentMethodPluginName]; + if (!$paymentMethodPlugin->isConfigured($request->getContext())) { + $request->redirect(null, null, 'index'); + } + + $paymentMethodPlugin->handle($args, $request); + } +} diff --git a/pages/payment/index.php b/pages/payment/index.php index cd4a25cea0e..6a081817ca4 100644 --- a/pages/payment/index.php +++ b/pages/payment/index.php @@ -3,7 +3,7 @@ /** * @defgroup pages_payment Payment page */ - + /** * @file pages/payment/index.php * @@ -12,15 +12,13 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_payment + * * @brief Handle requests for interactions between the payment system and external * sites/systems. */ switch ($op) { - case 'plugin': - define('HANDLER_CLASS', 'PaymentHandler'); - import('pages.payment.PaymentHandler'); - break; + case 'plugin': + define('HANDLER_CLASS', 'APP\pages\payment\PaymentHandler'); + break; } - - diff --git a/pages/reviewer/ReviewerHandler.inc.php b/pages/reviewer/ReviewerHandler.inc.php deleted file mode 100644 index 91429bf164f..00000000000 --- a/pages/reviewer/ReviewerHandler.inc.php +++ /dev/null @@ -1,50 +0,0 @@ -addRoleAssignment( - ROLE_ID_REVIEWER, array( - 'submission', 'step', 'saveStep', - 'showDeclineReview', 'saveDeclineReview', 'downloadFile' - ) - ); - } - - /** - * @see PKPHandler::authorize() - * @param $request PKPRequest - * @param $args array - * @param $roleAssignments array - */ - function authorize($request, &$args, $roleAssignments) { - import('lib.pkp.classes.security.authorization.SubmissionAccessPolicy'); - $router = $request->getRouter(); - $this->addPolicy(new SubmissionAccessPolicy( - $request, - $args, - $roleAssignments - )); - return parent::authorize($request, $args, $roleAssignments); - } -} - - diff --git a/pages/reviewer/ReviewerHandler.php b/pages/reviewer/ReviewerHandler.php new file mode 100644 index 00000000000..89dbae0eb0d --- /dev/null +++ b/pages/reviewer/ReviewerHandler.php @@ -0,0 +1,58 @@ +addRoleAssignment( + Role::ROLE_ID_REVIEWER, + [ + 'submission', 'step', 'saveStep', + 'showDeclineReview', 'saveDeclineReview', 'downloadFile' + ] + ); + } + + /** + * @see PKPHandler::authorize() + * + * @param Request $request + * @param array $args + * @param array $roleAssignments + */ + public function authorize($request, &$args, $roleAssignments) + { + $router = $request->getRouter(); + $this->addPolicy(new SubmissionAccessPolicy( + $request, + $args, + $roleAssignments + )); + return parent::authorize($request, $args, $roleAssignments); + } +} diff --git a/pages/reviewer/index.php b/pages/reviewer/index.php index fe8ff4eebbb..c95f73e335d 100644 --- a/pages/reviewer/index.php +++ b/pages/reviewer/index.php @@ -12,23 +12,21 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_reviewer + * * @brief Handle requests for reviewer functions. * */ switch ($op) { - // - // Submission Tracking - // - case 'submission': - case 'step': - case 'saveStep': - case 'showDeclineReview': - case 'saveDeclineReview': - define('HANDLER_CLASS', 'ReviewerHandler'); - import('pages.reviewer.ReviewerHandler'); - break; + // + // Submission Tracking + // + case 'submission': + case 'step': + case 'saveStep': + case 'showDeclineReview': + case 'saveDeclineReview': + define('HANDLER_CLASS', 'APP\pages\reviewer\ReviewerHandler'); + break; } - - diff --git a/pages/search/SearchHandler.inc.php b/pages/search/SearchHandler.inc.php deleted file mode 100644 index 5b56ba8511e..00000000000 --- a/pages/search/SearchHandler.inc.php +++ /dev/null @@ -1,59 +0,0 @@ -search($args, $request); - } - - /** - * View the results of a search operation. - * @param $args array - * @param $request PKPRequest - * @return string - */ - function search($args, $request) { - $templateMgr = TemplateManager::getManager($request); - $press = $request->getPress(); - $this->setupTemplate($request); - AppLocale::requireComponents(LOCALE_COMPONENT_APP_SUBMISSION); - - $query = $request->getUserVar('query'); - $templateMgr->assign('searchQuery', $query); - - // Get the range info. - $rangeInfo = $this->getRangeInfo($request, 'search'); - - // Fetch the monographs to display - $monographSearch = new MonographSearch(); - $error = null; - $results = $monographSearch->retrieveResults($request, $press, array(null => $query), $error, null, null, $rangeInfo); - $templateMgr->assign('results', $results); - - // Display - $templateMgr->display('frontend/pages/search.tpl'); - } -} - - diff --git a/pages/search/SearchHandler.php b/pages/search/SearchHandler.php new file mode 100644 index 00000000000..ecb6fada01c --- /dev/null +++ b/pages/search/SearchHandler.php @@ -0,0 +1,69 @@ +search($args, $request); + } + + /** + * View the results of a search operation. + * + * @param array $args + * @param Request $request + */ + public function search($args, $request) + { + $templateMgr = TemplateManager::getManager($request); + $press = $request->getPress(); + $this->setupTemplate($request); + + // Get the range info. + $rangeInfo = $this->getRangeInfo($request, 'search'); + + // Fetch the monographs to display + $monographSearch = new MonographSearch(); + $error = null; + $query = $request->getUserVar('query'); + $templateMgr->assign([ + 'results' => $monographSearch->retrieveResults($request, $press, [null => $query], $error, null, null, $rangeInfo), + 'searchQuery' => $query, + 'authorUserGroups' => Repo::userGroup()->getCollector() + ->filterByRoleIds([\PKP\security\Role::ROLE_ID_AUTHOR]) + ->filterByContextIds($press ? [$press->getId()] : null) + ->getMany()->remember(), + ]); + + // Display + $templateMgr->display('frontend/pages/search.tpl'); + } +} diff --git a/pages/search/index.php b/pages/search/index.php index ea43c5310d6..c2a08eeacef 100644 --- a/pages/search/index.php +++ b/pages/search/index.php @@ -12,16 +12,14 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_search + * * @brief Handle search requests. * */ switch ($op) { - case 'index': - case 'search': - define('HANDLER_CLASS', 'SearchHandler'); - import('pages.search.SearchHandler'); - break; + case 'index': + case 'search': + define('HANDLER_CLASS', 'APP\pages\search\SearchHandler'); + break; } - - diff --git a/pages/sitemap/SitemapHandler.inc.php b/pages/sitemap/SitemapHandler.inc.php deleted file mode 100644 index 91217a8f8aa..00000000000 --- a/pages/sitemap/SitemapHandler.inc.php +++ /dev/null @@ -1,86 +0,0 @@ -documentElement; - - $press = $request->getPress(); - $pressId = $press->getId(); - - // Catalog - $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog'))); - import('lib.pkp.classes.submission.PKPSubmission'); // STATUS_PUBLISHED - $submissionsIterator = Services::get('submission')->getMany(['status' => STATUS_PUBLISHED, 'contextId' => $pressId, 'count' => 1000]); - foreach ($submissionsIterator as $submission) { - // Book - $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'book', array($submission->getBestId())))); - // Files - // Get publication formats - $publicationFormats = DAORegistry::getDAO('PublicationFormatDAO')->getApprovedByPublicationId($submission->getCurrentPublication()->getId())->toArray(); - foreach ($publicationFormats as $format) { - // Consider only available publication formats - if ($format->getIsAvailable()) { - // Consider only available publication format files - $availableFiles = array_filter( - iterator_to_array(Services::get('submissionFile')->getMany([ - 'assocTypes' => [ASSOC_TYPE_PUBLICATION_FORMAT], - 'assocIds' => [$format->getId()], - 'submissionIds' => [$submission->getId()], - ])), - function($a) { - return $a->getDirectSalesPrice() !== null; - } - ); - foreach ($availableFiles as $file) { - $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'view', array($submission->getBestId(), $format->getBestId(), $file->getBestId())))); - } - } - } - } - - // New releases - $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'newReleases'))); - // Browse by series - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $seriesResult = $seriesDao->getByPressId($pressId); - while ($series = $seriesResult->next()) { - $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'series', $series->getPath()))); - } - // Browse by categories - $categoryDao = DAORegistry::getDAO('CategoryDAO'); /* @var $categoryDao CategoryDAO */ - $categoriesResult = $categoryDao->getByContextId($pressId); - while ($category = $categoriesResult->next()) { - $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'category', $category->getPath()))); - } - - $doc->appendChild($root); - - // Enable plugins to change the sitemap - HookRegistry::call('SitemapHandler::createPressSitemap', array(&$doc)); - - return $doc; - } - -} - - diff --git a/pages/sitemap/SitemapHandler.php b/pages/sitemap/SitemapHandler.php new file mode 100644 index 00000000000..a151633fe07 --- /dev/null +++ b/pages/sitemap/SitemapHandler.php @@ -0,0 +1,117 @@ +documentElement; + + $press = $request->getPress(); + $pressId = $press->getId(); + + // Catalog + $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog'))); + $submissions = Repo::submission() + ->getCollector() + ->filterByContextIds([$pressId]) + ->filterByStatus([Submission::STATUS_PUBLISHED]) + ->getMany(); + + foreach ($submissions as $submission) { + // Book + $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'book', [$submission->getBestId()]))); + // Chapters + $chapters = $submission->getLatestPublication()->getData('chapters'); + if ($chapters && count($chapters) > 0) { + foreach ($chapters as $chapter) { + if ($chapter->isPageEnabled()) { + $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'book', [$submission->getBestId(), 'chapter', $chapter->getId()]))); + } + } + } + // Files + // Get publication formats + /** @var \APP\publicationFormat\PublicationFormatDAO $publicationFormatDao */ + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); + $publicationFormats = $publicationFormatDao->getApprovedByPublicationId($submission->getCurrentPublication()->getId())->toArray(); + foreach ($publicationFormats as $format) { + // Consider only available publication formats + if ($format->getIsAvailable()) { + // Consider only available publication format files + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterByAssoc( + Application::ASSOC_TYPE_PUBLICATION_FORMAT, + [$format->getId()] + ) + ->filterBySubmissionIds([$submission->getId()]) + ->getMany() + ->toArray(); + + $availableFiles = array_filter( + $submissionFiles, + function ($a) { + return $a->getDirectSalesPrice() !== null; + } + ); + foreach ($availableFiles as $file) { + $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'view', [$submission->getBestId(), $format->getBestId(), $file->getBestId()]))); + } + } + } + } + + // New releases + $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'newReleases'))); + // Browse by series + $seriesResult = Repo::section() + ->getCollector() + ->filterByContextIds([$pressId]) + ->getMany(); + foreach ($seriesResult as $series) { + $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'series', $series->getPath()))); + } + // Browse by categories + $categories = Repo::category()->getCollector() + ->filterByContextIds([$pressId]) + ->getMany(); + + foreach ($categories as $category) { + $root->appendChild($this->_createUrlTree($doc, $request->url($press->getPath(), 'catalog', 'category', $category->getPath()))); + } + + $doc->appendChild($root); + + // Enable plugins to change the sitemap + Hook::call('SitemapHandler::createPressSitemap', [&$doc]); + + return $doc; + } +} diff --git a/pages/sitemap/index.php b/pages/sitemap/index.php index 708f02421ad..89519b12d26 100644 --- a/pages/sitemap/index.php +++ b/pages/sitemap/index.php @@ -3,7 +3,7 @@ /** * @defgroup pages_sitemap Site Map Pages */ - + /** * @file pages/sitemap/index.php * @@ -12,15 +12,13 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_sitemap - * @brief Produce a sitemap in XML format for submitting to search engines. + * + * @brief Produce a sitemap in XML format for submitting to search engines. * */ switch ($op) { - case 'index': - define('HANDLER_CLASS', 'SitemapHandler'); - import('pages.sitemap.SitemapHandler'); - break; + case 'index': + define('HANDLER_CLASS', 'APP\pages\sitemap\SitemapHandler'); + break; } - - diff --git a/pages/stats/StatsHandler.inc.php b/pages/stats/StatsHandler.inc.php deleted file mode 100644 index 5446f3ab98a..00000000000 --- a/pages/stats/StatsHandler.inc.php +++ /dev/null @@ -1,75 +0,0 @@ -getRequest()->getContext(); - if (!$context) { - return; - } - - $seriesFilters = []; - $result = \DAORegistry::getDAO('SeriesDAO')->getByContextId($context->getId()); - while ($series = $result->next()) { - $seriesFilters[] = [ - 'param' => 'seriesIds', - 'value' => $series->getId(), - 'title' => $series->getLocalizedTitle(), - ]; - } - - if (empty($seriesFilters)) { - return; - } - - $filters = $templateMgr->getState('filters'); - if (is_null($filters)) { - $filters = []; - } - - $filters[] = [ - 'heading' => __('series.series'), - 'filters' => $seriesFilters, - ]; - $templateMgr->setState([ - 'filters' => $filters - ]); - } -} diff --git a/pages/stats/StatsHandler.php b/pages/stats/StatsHandler.php new file mode 100644 index 00000000000..44cb7988909 --- /dev/null +++ b/pages/stats/StatsHandler.php @@ -0,0 +1,85 @@ +getRequest()->getContext(); + if (!$context) { + return; + } + + $seriesFilters = Repo::section() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ->getMany() + ->map(fn (Section $series) => [ + 'param' => 'seriesIds', + 'value' => $series->getId(), + 'title' => $series->getLocalizedTitle(), + ]) + ->toArray(); + + if (empty($seriesFilters)) { + return; + } + + $filters = $templateMgr->getState('filters'); + if (is_null($filters)) { + $filters = []; + } + + $filters[] = [ + 'heading' => __('series.series'), + 'filters' => $seriesFilters, + ]; + $templateMgr->setState([ + 'filters' => $filters + ]); + } +} diff --git a/pages/stats/index.php b/pages/stats/index.php index a29048cb03a..4eb50f674a3 100644 --- a/pages/stats/index.php +++ b/pages/stats/index.php @@ -12,9 +12,9 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_stats + * * @brief Handle requests for statistics pages. * */ -import('pages.stats.StatsHandler'); -define('HANDLER_CLASS', 'StatsHandler'); +define('HANDLER_CLASS', 'APP\pages\stats\StatsHandler'); diff --git a/pages/submission/SubmissionHandler.inc.php b/pages/submission/SubmissionHandler.inc.php deleted file mode 100644 index 45c04af0a71..00000000000 --- a/pages/submission/SubmissionHandler.inc.php +++ /dev/null @@ -1,57 +0,0 @@ -addRoleAssignment(array(ROLE_ID_AUTHOR, ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER), - array('index', 'wizard', 'step', 'saveStep')); - } - - - // - // Protected helper methods - // - /** - * Get the step numbers and their corresponding title locale keys. - * @return array - */ - function getStepsNumberAndLocaleKeys() { - return array( - 1 => 'submission.submit.prepare', - 2 => 'submission.submit.upload', - 3 => 'submission.submit.catalog', - 4 => 'submission.submit.confirmation', - 5 => 'submission.submit.nextSteps', - ); - } - - /** - * Get the number of submission steps. - * @return int - */ - function getStepCount() { - return 5; - } -} - - diff --git a/pages/submission/SubmissionHandler.php b/pages/submission/SubmissionHandler.php new file mode 100644 index 00000000000..3289226642f --- /dev/null +++ b/pages/submission/SubmissionHandler.php @@ -0,0 +1,249 @@ +getContext(); + $userGroups = $this->getSubmitUserGroups($context, $request->getUser()); + if (!$userGroups->count()) { + $this->showErrorPage( + 'submission.wizard.notAllowed', + __('submission.wizard.notAllowed.description', [ + 'email' => $context->getData('contactEmail'), + 'name' => $context->getData('contactName'), + ]) + ); + return; + } + + $apiUrl = $request->getDispatcher()->url( + $request, + Application::ROUTE_API, + $context->getPath(), + 'submissions' + ); + + $form = new StartSubmission($apiUrl, $context, $userGroups); + + $templateMgr = TemplateManager::getManager($request); + + $templateMgr->setState([ + 'form' => $form->getConfig(), + ]); + + parent::start($args, $request); + } + + protected function getSubmittingTo(Context $context, Submission $submission, array $sections, LazyCollection $categories): string + { + $multipleLanguages = count($context->getSupportedSubmissionLocales()) > 1; + $workType = $submission->getData('workType'); + + if ($multipleLanguages) { + return __( + ( + $workType === Submission::WORK_TYPE_AUTHORED_WORK + ? 'submission.wizard.submitting.monographInLanguage' + : 'submission.wizard.submitting.editedVolumeInLanguage' + ), + ['language' => Locale::getMetadata($submission->getData('locale'))->getDisplayName()] + ); + } + + return __( + ( + $workType === Submission::WORK_TYPE_AUTHORED_WORK + ? 'submission.wizard.submitting.monograph' + : 'submission.wizard.submitting.editedVolume' + ) + ); + } + + /** + * Add the chapters grid to the details step + */ + protected function getDetailsStep(Request $request, Submission $submission, Publication $publication, array $locales, string $publicationApiUrl, array $sections, string $controlledVocabUrl): array + { + $step = parent::getDetailsStep($request, $submission, $publication, $locales, $publicationApiUrl, $sections, $controlledVocabUrl); + $step['sections'][] = [ + 'id' => self::CHAPTERS_SECTION_ID, + 'name' => __('submission.chapters'), + 'description' => __('submission.wizard.chapters.description'), + 'type' => SubmissionHandler::SECTION_TYPE_TEMPLATE, + ]; + + Hook::add('Template::SubmissionWizard::Section', function (string $hookName, array $params) { + $templateMgr = $params[1]; /** @var TemplateManager $templateMgr */ + $output = &$params[2]; /** @var string $step */ + + $output .= sprintf( + '', + $templateMgr->fetch('submission/chapters.tpl') + ); + + return false; + }); + + Hook::add('Template::SubmissionWizard::Section::Review', function (string $hookName, array $params) { + $step = $params[0]['step']; /** @var string $step */ + $templateMgr = $params[1]; /** @var TemplateManager $templateMgr */ + $output = &$params[2]; /** @var string $output */ + + if ($step === 'details') { + $output .= $templateMgr->fetch('submission/review-chapters.tpl'); + } + + return false; + }); + + $chapterGrid = new ChapterGridHandler(); + /** @var ChapterDAO */ + $chapterDao = DAORegistry::getDAO('ChapterDAO'); + $chapters = $chapterDao->getByPublicationId($publication->getId()) + ->toArray(); + $chapterData = []; + foreach ($chapters as $chapter) { + $chapterData[] = $chapterGrid->getChapterData($chapter, $publication); + } + + $templateMgr = TemplateManager::getManager($request); + $templateMgr->setState([ + 'chapters' => $chapterData, + ]); + + return $step; + } + + protected function getReconfigureForm(Context $context, Submission $submission, Publication $publication, array $sections, LazyCollection $categories): ReconfigureSubmission + { + return new ReconfigureSubmission( + FormComponent::ACTION_EMIT, + $submission, + $publication, + $context + ); + } + + protected function getDetailsForm(string $publicationApiUrl, array $locales, Publication $publication, Context $context, array $sections, string $suggestionUrlBase): Details + { + return new Details( + $publicationApiUrl, + $locales, + $publication, + $context, + $suggestionUrlBase + ); + } + + /** + * Get the series that this user can submit to + */ + protected function getSubmitSeries(Context $context): array + { + $allSeries = Repo::section() + ->getCollector() + ->filterByContextIds([$context->getId()]) + ->excludeInactive(true) + ->getMany(); + + $submitSeries = []; + /** @var Section $series */ + foreach ($allSeries as $series) { + if ($series->getEditorRestricted() && !$this->isEditor()) { + continue; + } + $submitSeries[] = $series; + } + + return $submitSeries; + } + + protected function getForTheEditorsForm(string $publicationApiUrl, array $locales, Publication $publication, Submission $submission, Context $context, string $suggestionUrlBase, LazyCollection $categories): ForTheEditors + { + return new ForTheEditors( + $publicationApiUrl, + $locales, + $publication, + $submission, + $context, + $suggestionUrlBase, + $this->getSubmitSeries($context), + $categories + ); + } + + /** + * Get the properties that should be saved to the Submission + * from the ReconfigureSubmission form + */ + protected function getReconfigurePublicationProps(): array + { + return []; + } + + /** + * Get the properties that should be saved to the Submission + * from the ReconfigureSubmission form + */ + protected function getReconfigureSubmissionProps(): array + { + return ['locale', 'workType']; + } + + protected function getContributorsListPanel(Request $request, Submission $submission, Publication $publication, array $locales): ContributorsListPanel + { + return new ContributorsListPanel( + 'contributors', + __('publication.contributors'), + $submission, + $request->getContext(), + $locales, + [], // Populated by publication state + true + ); + } +} diff --git a/pages/submission/index.php b/pages/submission/index.php index 10f33f2495c..d8746d7292c 100644 --- a/pages/submission/index.php +++ b/pages/submission/index.php @@ -8,21 +8,15 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_submission + * * @brief Handle requests for the submission wizard. * */ switch ($op) { - // - // Monograph Submission - // - case 'wizard': - case 'step': - case 'saveStep': - case 'index': - import('pages.submission.SubmissionHandler'); - define('HANDLER_CLASS', 'SubmissionHandler'); - break; + case 'index': + case 'saved': + case 'wizard': // @deprecated 3.4 + define('HANDLER_CLASS', 'APP\pages\submission\SubmissionHandler'); + break; } - - diff --git a/pages/user/UserHandler.inc.php b/pages/user/UserHandler.inc.php deleted file mode 100644 index 11986c2ae93..00000000000 --- a/pages/user/UserHandler.inc.php +++ /dev/null @@ -1,35 +0,0 @@ -addRoleAssignment( - array(ROLE_ID_SUB_EDITOR, ROLE_ID_MANAGER, ROLE_ID_ASSISTANT), - array( - 'access', 'index', 'submission', - 'editorDecisionActions', // Submission & review - 'internalReview', // Internal review - 'externalReview', // External review - 'editorial', - 'production', - 'submissionHeader', - 'submissionProgressBar', - ) - ); - } - - - // - // Public handler methods - // - /** - * Show the internal review stage. - * @param $args array - * @param $request PKPRequest - */ - function internalReview($args, $request) { - $this->_redirectToIndex($args, $request); - } - - /** - * Setup variables for the template - * @param $request Request - */ - function setupIndex($request) { - parent::setupIndex($request); - - $templateMgr = TemplateManager::getManager($request); - $submission = $this->getAuthorizedContextObject(ASSOC_TYPE_SUBMISSION); - - $submissionContext = $request->getContext(); - if ($submission->getContextId() !== $submissionContext->getId()) { - $submissionContext = Services::get('context')->get($submission->getContextId()); - } - - $supportedFormLocales = $submissionContext->getSupportedFormLocales(); - $localeNames = AppLocale::getAllLocales(); - $locales = array_map(function($localeKey) use ($localeNames) { - return ['key' => $localeKey, 'label' => $localeNames[$localeKey]]; - }, $supportedFormLocales); - - $latestPublication = $submission->getLatestPublication(); - - $submissionApiUrl = $request->getDispatcher()->url($request, ROUTE_API, $submissionContext->getData('urlPath'), 'submissions/' . $submission->getId()); - $latestPublicationApiUrl = $request->getDispatcher()->url($request, ROUTE_API, $submissionContext->getData('urlPath'), 'submissions/' . $submission->getId() . '/publications/' . $latestPublication->getId()); - $temporaryFileApiUrl = $request->getDispatcher()->url($request, ROUTE_API, $submissionContext->getData('urlPath'), 'temporaryFiles'); - - $chaptersGridUrl = $request->getDispatcher()->url( - $request, - ROUTE_COMPONENT, - null, - 'grid.users.chapter.ChapterGridHandler', - 'fetchGrid', - null, - [ - 'submissionId' => $submission->getId(), - 'publicationId' => '__publicationId__', - ] - ); - - import('classes.file.PublicFileManager'); - $publicFileManager = new PublicFileManager(); - $baseUrl = $request->getBaseUrl() . '/' . $publicFileManager->getContextFilesPath($submissionContext->getId()); - - $audienceForm = new APP\components\forms\submission\AudienceForm($submissionApiUrl, $submission); - $catalogEntryForm = new APP\components\forms\publication\CatalogEntryForm($latestPublicationApiUrl, $locales, $latestPublication, $submission, $baseUrl, $temporaryFileApiUrl); - $publicationDatesForm = new APP\components\forms\submission\PublicationDatesForm($submissionApiUrl, $submission); - - $templateMgr->setConstants([ - 'FORM_AUDIENCE', - 'FORM_CATALOG_ENTRY', - 'WORK_TYPE_AUTHORED_WORK', - 'WORK_TYPE_EDITED_VOLUME', - ]); - - $components = $templateMgr->getState('components'); - $components[FORM_AUDIENCE] = $audienceForm->getConfig(); - $components[FORM_CATALOG_ENTRY] = $catalogEntryForm->getConfig(); - $components[FORM_PUBLICATION_DATES] = $publicationDatesForm->getConfig(); - - $publicationFormIds = $templateMgr->getState('publicationFormIds'); - $publicationFormIds[] = FORM_CATALOG_ENTRY; - - $templateMgr->setState([ - 'components' => $components, - 'chaptersGridUrl' => $chaptersGridUrl, - 'publicationFormIds' => $publicationFormIds, - 'editedVolumeLabel' => __('submission.workflowType.editedVolume.label'), - 'monographLabel' => __('common.publication'), - ]); - - $templateMgr->assign([ - 'pageComponent' => 'WorkflowPage', - ]); - } - - - // - // Protected helper methods - // - /** - * Return the editor assignment notification type based on stage id. - * @param $stageId int - * @return int - */ - protected function getEditorAssignmentNotificationTypeByStageId($stageId) { - switch ($stageId) { - case WORKFLOW_STAGE_ID_SUBMISSION: - return NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_SUBMISSION; - case WORKFLOW_STAGE_ID_INTERNAL_REVIEW: - return NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_INTERNAL_REVIEW; - case WORKFLOW_STAGE_ID_EXTERNAL_REVIEW: - return NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_EXTERNAL_REVIEW; - case WORKFLOW_STAGE_ID_EDITING: - return NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_EDITING; - case WORKFLOW_STAGE_ID_PRODUCTION: - return NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_PRODUCTION; - } - return null; - } - - /** - * @copydoc PKPWorkflowHandler::_getRepresentationsGridUrl() - */ - protected function _getRepresentationsGridUrl($request, $submission) { - return $request->getDispatcher()->url( - $request, - ROUTE_COMPONENT, - null, - 'grid.catalogEntry.PublicationFormatGridHandler', - 'fetchGrid', - null, - [ - 'submissionId' => $submission->getId(), - 'publicationId' => '__publicationId__', - ] - ); - } -} diff --git a/pages/workflow/WorkflowHandler.php b/pages/workflow/WorkflowHandler.php new file mode 100644 index 00000000000..1b599d6d45b --- /dev/null +++ b/pages/workflow/WorkflowHandler.php @@ -0,0 +1,364 @@ +addRoleAssignment( + [Role::ROLE_ID_SUB_EDITOR, Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN, Role::ROLE_ID_ASSISTANT], + [ + 'access', 'index', 'submission', + 'editorDecisionActions', // Submission & review + 'internalReview', // Internal review + 'externalReview', // External review + 'editorial', + 'production', + 'submissionHeader', + 'submissionProgressBar', + ] + ); + } + + + // + // Public handler methods + // + /** + * Show the internal review stage. + * + * @param array $args + * @param Request $request + */ + public function internalReview($args, $request) + { + $this->_redirectToIndex($args, $request); + } + + /** + * Setup variables for the template + * + * @param Request $request + */ + public function setupIndex($request) + { + parent::setupIndex($request); + + $templateMgr = TemplateManager::getManager($request); + $submission = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION); + + $submissionContext = $request->getContext(); + if ($submission->getContextId() !== $submissionContext->getId()) { + $submissionContext = Services::get('context')->get($submission->getContextId()); + } + + $locales = $submissionContext->getSupportedFormLocaleNames(); + $locales = array_map(fn (string $locale, string $name) => ['key' => $locale, 'label' => $name], array_keys($locales), $locales); + $latestPublication = $submission->getLatestPublication(); + + $submissionApiUrl = $request->getDispatcher()->url($request, PKPApplication::ROUTE_API, $submissionContext->getData('urlPath'), 'submissions/' . $submission->getId()); + $latestPublicationApiUrl = $request->getDispatcher()->url($request, PKPApplication::ROUTE_API, $submissionContext->getData('urlPath'), 'submissions/' . $submission->getId() . '/publications/' . $latestPublication->getId()); + $temporaryFileApiUrl = $request->getDispatcher()->url($request, PKPApplication::ROUTE_API, $submissionContext->getData('urlPath'), 'temporaryFiles'); + + $chaptersGridUrl = $request->getDispatcher()->url( + $request, + PKPApplication::ROUTE_COMPONENT, + null, + 'grid.users.chapter.ChapterGridHandler', + 'fetchGrid', + null, + [ + 'submissionId' => $submission->getId(), + 'publicationId' => '__publicationId__', + ] + ); + + $publicFileManager = new PublicFileManager(); + $baseUrl = $request->getBaseUrl() . '/' . $publicFileManager->getContextFilesPath($submissionContext->getId()); + + $audienceForm = new \APP\components\forms\submission\AudienceForm($submissionApiUrl, $submission); + $catalogEntryForm = new \APP\components\forms\publication\CatalogEntryForm($latestPublicationApiUrl, $locales, $latestPublication, $submission, $baseUrl, $temporaryFileApiUrl); + $publicationDatesForm = new \APP\components\forms\submission\PublicationDatesForm($submissionApiUrl, $submission); + + + $authorUserGroups = Repo::userGroup()->getByRoleIds([Role::ROLE_ID_AUTHOR], $submission->getData('contextId')); + $publicationLicenseForm = new \APP\components\forms\publication\PublicationLicenseForm($latestPublicationApiUrl, $locales, $latestPublication, $submissionContext, $authorUserGroups); + + $templateMgr->setConstants([ + 'FORM_AUDIENCE' => FORM_AUDIENCE, + 'FORM_CATALOG_ENTRY' => FORM_CATALOG_ENTRY, + 'WORK_TYPE_AUTHORED_WORK' => Submission::WORK_TYPE_AUTHORED_WORK, + 'WORK_TYPE_EDITED_VOLUME' => Submission::WORK_TYPE_EDITED_VOLUME, + ]); + + $components = $templateMgr->getState('components'); + $components[FORM_AUDIENCE] = $audienceForm->getConfig(); + $components[FORM_CATALOG_ENTRY] = $catalogEntryForm->getConfig(); + $components[FORM_PUBLICATION_DATES] = $publicationDatesForm->getConfig(); + $components[$publicationLicenseForm->id] = $publicationLicenseForm->getConfig(); + + $publicationFormIds = $templateMgr->getState('publicationFormIds'); + $publicationFormIds[] = FORM_CATALOG_ENTRY; + + $templateMgr->setState([ + 'components' => $components, + 'chaptersGridUrl' => $chaptersGridUrl, + 'publicationFormIds' => $publicationFormIds, + 'editedVolumeLabel' => __('submission.workflowType.editedVolume.label'), + 'monographLabel' => __('common.publication'), + ]); + + $templateMgr->assign([ + 'pageComponent' => 'WorkflowPage', + ]); + } + + + // + // Protected helper methods + // + /** + * Return the editor assignment notification type based on stage id. + * + * @param int $stageId + * + * @return ?int + */ + protected function getEditorAssignmentNotificationTypeByStageId($stageId) + { + switch ($stageId) { + case WORKFLOW_STAGE_ID_SUBMISSION: + return Notification::NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_SUBMISSION; + case WORKFLOW_STAGE_ID_INTERNAL_REVIEW: + return Notification::NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_INTERNAL_REVIEW; + case WORKFLOW_STAGE_ID_EXTERNAL_REVIEW: + return Notification::NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_EXTERNAL_REVIEW; + case WORKFLOW_STAGE_ID_EDITING: + return Notification::NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_EDITING; + case WORKFLOW_STAGE_ID_PRODUCTION: + return Notification::NOTIFICATION_TYPE_EDITOR_ASSIGNMENT_PRODUCTION; + } + return null; + } + + protected function _getRepresentationsGridUrl($request, $submission) + { + return $request->getDispatcher()->url( + $request, + PKPApplication::ROUTE_COMPONENT, + null, + 'grid.catalogEntry.PublicationFormatGridHandler', + 'fetchGrid', + null, + [ + 'submissionId' => $submission->getId(), + 'publicationId' => '__publicationId__', + ] + ); + } + + protected function getStageDecisionTypes(int $stageId): array + { + $submission = $this->getAuthorizedContextObject(Application::ASSOC_TYPE_SUBMISSION); + $request = Application::get()->getRequest(); + $reviewRoundId = (int) $request->getUserVar('reviewRoundId'); + + switch ($stageId) { + case WORKFLOW_STAGE_ID_SUBMISSION: + $decisionTypes = [ + new SkipInternalReview(), + new SkipExternalReview(), + ]; + if ($submission->getData('status') === Submission::STATUS_DECLINED) { + $decisionTypes[] = new RevertInitialDecline(); + } elseif ($submission->getData('status') === Submission::STATUS_QUEUED) { + $decisionTypes[] = new InitialDecline(); + } + $decisionTypes[] = new SendInternalReview(); + break; + case WORKFLOW_STAGE_ID_INTERNAL_REVIEW: + $decisionTypes = [ + new RequestRevisionsInternal(), + new SendExternalReview(), + new AcceptFromInternal(), + ]; + $cancelInternalReviewRound = new CancelInternalReviewRound(); + if ($cancelInternalReviewRound->canRetract($submission, $reviewRoundId)) { + $decisionTypes[] = $cancelInternalReviewRound; + } + if ($submission->getData('status') === Submission::STATUS_DECLINED) { + $decisionTypes[] = new RevertDeclineInternal(); + } elseif ($submission->getData('status') === Submission::STATUS_QUEUED) { + $decisionTypes[] = new DeclineInternal(); + } + break; + case WORKFLOW_STAGE_ID_EXTERNAL_REVIEW: + $decisionTypes = [ + new RequestRevisions(), + new Accept(), + ]; + $cancelReviewRound = new CancelReviewRound(); + if ($cancelReviewRound->canRetract($submission, $reviewRoundId)) { + $decisionTypes[] = $cancelReviewRound; + } + if ($submission->getData('status') === Submission::STATUS_DECLINED) { + $decisionTypes[] = new RevertDecline(); + } elseif ($submission->getData('status') === Submission::STATUS_QUEUED) { + $decisionTypes[] = new Decline(); + } + break; + case WORKFLOW_STAGE_ID_EDITING: + $decisionTypes = [ + new SendToProduction(), + new BackFromCopyediting(), + ]; + break; + case WORKFLOW_STAGE_ID_PRODUCTION: + $decisionTypes = [ + new BackFromProduction(), + ]; + break; + } + + Hook::call('Workflow::Decisions', [&$decisionTypes, $stageId]); + + return $decisionTypes; + } + + protected function getStageRecommendationTypes(int $stageId): array + { + switch ($stageId) { + case WORKFLOW_STAGE_ID_INTERNAL_REVIEW: + $decisionTypes = [ + new RecommendRevisionsInternal(), + new RecommendAcceptInternal(), + new RecommendDeclineInternal(), + new RecommendSendExternalReview(), + ]; + break; + case WORKFLOW_STAGE_ID_EXTERNAL_REVIEW: + $decisionTypes = [ + new RecommendRevisions(), + new RecommendAccept(), + new RecommendDecline(), + ]; + break; + default: + $decisionTypes = []; + } + + + Hook::call('Workflow::Recommendations', [$decisionTypes, $stageId]); + + return $decisionTypes; + } + + protected function getPrimaryDecisionTypes(): array + { + return [ + SkipInternalReview::class, + SendExternalReview::class, + AcceptFromInternal::class, + Accept::class, + SendToProduction::class, + ]; + } + + protected function getWarnableDecisionTypes(): array + { + return [ + InitialDecline::class, + DeclineInternal::class, + Decline::class, + CancelInternalReviewRound::class, + CancelReviewRound::class, + BackFromCopyediting::class, + BackFromProduction::class, + ]; + } + + protected function getTitleAbstractForm(string $latestPublicationApiUrl, array $locales, Publication $latestPublication, Context $context): TitleAbstractForm + { + return new TitleAbstractForm( + $latestPublicationApiUrl, + $locales, + $latestPublication + ); + } + + protected function getContributorsListPanel(Submission $submission, Context $context, array $locales, array $authorItems, bool $canEditPublication): ContributorsListPanel + { + return new ContributorsListPanel( + 'contributors', + __('publication.contributors'), + $submission, + $context, + $locales, + $authorItems, + $canEditPublication + ); + } +} diff --git a/pages/workflow/index.php b/pages/workflow/index.php index 9c55e7479c0..a6c05acc4ba 100644 --- a/pages/workflow/index.php +++ b/pages/workflow/index.php @@ -12,23 +12,21 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup pages_workflow + * * @brief Handle requests for workflow functions. * */ switch ($op) { - case 'access': - case 'index': - case 'submission': - case 'internalReview': - case 'externalReview': - case 'editorial': - case 'production': - case 'editorDecisionActions': - case 'submissionProgressBar': - define('HANDLER_CLASS', 'WorkflowHandler'); - import('pages.workflow.WorkflowHandler'); - break; + case 'access': + case 'index': + case 'submission': + case 'internalReview': + case 'externalReview': + case 'editorial': + case 'production': + case 'editorDecisionActions': + case 'submissionProgressBar': + define('HANDLER_CLASS', 'APP\pages\workflow\WorkflowHandler'); + break; } - - diff --git a/plugins/blocks/browse/BrowseBlockPlugin.inc.php b/plugins/blocks/browse/BrowseBlockPlugin.inc.php deleted file mode 100644 index 0be6b8180e5..00000000000 --- a/plugins/blocks/browse/BrowseBlockPlugin.inc.php +++ /dev/null @@ -1,134 +0,0 @@ -getPluginPath() . '/settings.xml'; - } - - /** - * Get the display name of this plugin. - * @return String - */ - function getDisplayName() { - return __('plugins.block.browse.displayName'); - } - - /** - * Get a description of the plugin. - */ - function getDescription() { - return __('plugins.block.browse.description'); - } - - /** - * @copydoc Plugin::getActions() - */ - function getActions($request, $actionArgs) { - $router = $request->getRouter(); - import('lib.pkp.classes.linkAction.request.AjaxModal'); - return array_merge( - $this->getEnabled()?array( - new LinkAction( - 'settings', - new AjaxModal( - $router->url($request, null, null, 'manage', null, array_merge($actionArgs, array('verb' => 'settings'))), - $this->getDisplayName() - ), - __('manager.plugins.settings'), - null - ), - ):array(), - parent::getActions($request, $actionArgs) - ); - } - - /** - * @copydoc PKPPlugin::manage() - */ - function manage($args, $request) { - $press = $request->getPress(); - - switch ($request->getUserVar('verb')) { - case 'settings': - $this->import('BrowseBlockSettingsForm'); - $form = new BrowseBlockSettingsForm($this, $press->getId()); - if ($request->getUserVar('save')) { - $form->readInputData(); - if ($form->validate()) { - $form->execute(); - return new JSONMessage(true); - } - } else { - $form->initData(); - } - return new JSONMessage(true, $form->fetch($request)); - } - return parent::manage($args, $request); - } - - /** - * Get the HTML contents of the browse block. - * @param $templateMgr PKPTemplateManager - * @return string - */ - function getContents($templateMgr, $request = null) { - $press = $request->getPress(); - - $browseNewReleases = $this->getSetting($press->getId(), 'browseNewReleases'); - $templateMgr->assign('browseNewReleases', $browseNewReleases); - - $seriesDisplay = $this->getSetting($press->getId(), 'browseSeries'); - if ($seriesDisplay) { - // Provide a list of series to browse - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getByPressId($press->getId()); - $templateMgr->assign('browseSeries', $series->toArray()); - } - - $categoriesDisplay = $this->getSetting($press->getId(), 'browseCategories'); - if ($categoriesDisplay) { - // Provide a list of categories to browse - $categoryDao = DAORegistry::getDAO('CategoryDAO'); /* @var $categoryDao CategoryDAO */ - $categories = $categoryDao->getByContextId($press->getId()); - $templateMgr->assign('browseCategories', $categories->toArray()); - } - - // If we're currently viewing a series or catalog, detect it - // so that we can highlight the current selection in the - // dropdown. - $router = $request->getRouter(); - switch ($router->getRequestedOp($request)) { - case 'category': - $args = $router->getRequestedArgs($request); - $templateMgr->assign('browseBlockSelectedCategory', reset($args)); - break; - case 'series': - $args = $router->getRequestedArgs($request); - $templateMgr->assign('browseBlockSelectedSeries', reset($args)); - break; - } - - return parent::getContents($templateMgr); - } -} - - diff --git a/plugins/blocks/browse/BrowseBlockPlugin.php b/plugins/blocks/browse/BrowseBlockPlugin.php new file mode 100644 index 00000000000..8c0ba87dc1b --- /dev/null +++ b/plugins/blocks/browse/BrowseBlockPlugin.php @@ -0,0 +1,158 @@ +getPluginPath() . '/settings.xml'; + } + + /** + * Get the display name of this plugin. + * + * @return string + */ + public function getDisplayName() + { + return __('plugins.block.browse.displayName'); + } + + /** + * Get a description of the plugin. + */ + public function getDescription() + { + return __('plugins.block.browse.description'); + } + + /** + * @copydoc Plugin::getActions() + */ + public function getActions($request, $actionArgs) + { + $router = $request->getRouter(); + return array_merge( + $this->getEnabled() ? [ + new LinkAction( + 'settings', + new AjaxModal( + $router->url($request, null, null, 'manage', null, array_merge($actionArgs, ['verb' => 'settings'])), + $this->getDisplayName() + ), + __('manager.plugins.settings'), + null + ), + ] : [], + parent::getActions($request, $actionArgs) + ); + } + + /** + * @copydoc PKPPlugin::manage() + */ + public function manage($args, $request) + { + $press = $request->getPress(); + + switch ($request->getUserVar('verb')) { + case 'settings': + $form = new BrowseBlockSettingsForm($this, $press->getId()); + if ($request->getUserVar('save')) { + $form->readInputData(); + if ($form->validate()) { + $form->execute(); + return new JSONMessage(true); + } + } else { + $form->initData(); + } + return new JSONMessage(true, $form->fetch($request)); + } + return parent::manage($args, $request); + } + + /** + * Get the HTML contents of the browse block. + * + * @param PKPTemplateManager $templateMgr + * @param null|mixed $request + * + * @return string + */ + public function getContents($templateMgr, $request = null) + { + $press = $request->getPress(); + + $browseNewReleases = $this->getSetting($press->getId(), 'browseNewReleases'); + $templateMgr->assign('browseNewReleases', $browseNewReleases); + + $seriesDisplay = $this->getSetting($press->getId(), 'browseSeries'); + if ($seriesDisplay) { + // Provide a list of series to browse + $series = Repo::section() + ->getCollector() + ->filterByContextIds([$press->getId()]) + ->getMany(); + $templateMgr->assign('browseSeries', $series->toArray()); + } + + $categoriesDisplay = $this->getSetting($press->getId(), 'browseCategories'); + if ($categoriesDisplay) { + // Provide a list of categories to browse + $categories = Repo::category()->getCollector() + ->filterByContextIds([$press->getId()]) + ->getMany(); + + $templateMgr->assign('browseCategories', iterator_to_array($categories)); + } + + // If we're currently viewing a series or catalog, detect it + // so that we can highlight the current selection in the + // dropdown. + $router = $request->getRouter(); + switch ($router->getRequestedOp($request)) { + case 'category': + $args = $router->getRequestedArgs($request); + $templateMgr->assign('browseBlockSelectedCategory', reset($args)); + break; + case 'series': + $args = $router->getRequestedArgs($request); + $templateMgr->assign('browseBlockSelectedSeries', reset($args)); + break; + } + + return parent::getContents($templateMgr); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\plugins\blocks\browse\BrowseBlockPlugin', '\BrowseBlockPlugin'); +} diff --git a/plugins/blocks/browse/BrowseBlockSettingsForm.inc.php b/plugins/blocks/browse/BrowseBlockSettingsForm.inc.php deleted file mode 100644 index 12c10228b9a..00000000000 --- a/plugins/blocks/browse/BrowseBlockSettingsForm.inc.php +++ /dev/null @@ -1,132 +0,0 @@ -setPressId($pressId); - $this->setPlugin($plugin); - - parent::__construct($plugin->getTemplateResource('settingsForm.tpl')); - - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - - $this->setData('pluginName', $plugin->getName()); - $this->setData('pluginJavaScriptPath', $plugin->getPluginPath()); - } - - // - // Getters and Setters - // - /** - * Get the Press ID. - * @return int - */ - public function getPressId() { - return $this->_pressId; - } - - /** - * Set the Press ID. - * @param $pressId int - */ - public function setPressId($pressId) { - $this->_pressId = $pressId; - } - - /** - * Get the plugin. - * @return BrowseBlockPlugin - */ - public function getPlugin() { - return $this->_plugin; - } - - /** - * Set the plugin. - * @param $plugin BrowseBlockPlugin - */ - public function setPlugin($plugin) { - $this->_plugin = $plugin; - } - - // - // Implement template methods from Form - // - /** - * @see Form::initData() - */ - public function initData() { - $pressId = $this->getPressId(); - $plugin = $this->getPlugin(); - foreach($this->_getFormFields() as $fieldName => $fieldType) { - $this->setData($fieldName, $plugin->getSetting($pressId, $fieldName)); - } - } - - /** - * @see Form::readInputData() - */ - public function readInputData() { - $this->readUserVars(array_keys($this->_getFormFields())); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - $plugin = $this->getPlugin(); - $pressId = $this->getPressId(); - foreach($this->_getFormFields() as $fieldName => $fieldType) { - $plugin->updateSetting($pressId, $fieldName, $this->getData($fieldName), $fieldType); - } - parent::execute(...$functionArgs); - } - - // - // Private helper methods - // - public function _getFormFields() { - return array( - 'browseNewReleases' => 'bool', - 'browseCategories' => 'bool', - 'browseSeries' => 'bool', - ); - } -} - - diff --git a/plugins/blocks/browse/BrowseBlockSettingsForm.php b/plugins/blocks/browse/BrowseBlockSettingsForm.php new file mode 100644 index 00000000000..a59f4d8bf5f --- /dev/null +++ b/plugins/blocks/browse/BrowseBlockSettingsForm.php @@ -0,0 +1,146 @@ +setPressId($pressId); + $this->setPlugin($plugin); + + parent::__construct($plugin->getTemplateResource('settingsForm.tpl')); + + $this->addCheck(new \PKP\form\validation\FormValidatorPost($this)); + $this->addCheck(new \PKP\form\validation\FormValidatorCSRF($this)); + + $this->setData('pluginName', $plugin->getName()); + $this->setData('pluginJavaScriptPath', $plugin->getPluginPath()); + } + + // + // Getters and Setters + // + /** + * Get the Press ID. + * + * @return int + */ + public function getPressId() + { + return $this->_pressId; + } + + /** + * Set the Press ID. + * + * @param int $pressId + */ + public function setPressId($pressId) + { + $this->_pressId = $pressId; + } + + /** + * Get the plugin. + * + * @return BrowseBlockPlugin + */ + public function getPlugin() + { + return $this->_plugin; + } + + /** + * Set the plugin. + * + * @param BrowseBlockPlugin $plugin + */ + public function setPlugin($plugin) + { + $this->_plugin = $plugin; + } + + // + // Implement template methods from Form + // + /** + * @see Form::initData() + */ + public function initData() + { + $pressId = $this->getPressId(); + $plugin = $this->getPlugin(); + foreach ($this->_getFormFields() as $fieldName => $fieldType) { + $this->setData($fieldName, $plugin->getSetting($pressId, $fieldName)); + } + } + + /** + * @see Form::readInputData() + */ + public function readInputData() + { + $this->readUserVars(array_keys($this->_getFormFields())); + } + + /** + * @copydoc Form::execute() + */ + public function execute(...$functionArgs) + { + $plugin = $this->getPlugin(); + $pressId = $this->getPressId(); + foreach ($this->_getFormFields() as $fieldName => $fieldType) { + $plugin->updateSetting($pressId, $fieldName, $this->getData($fieldName), $fieldType); + } + parent::execute(...$functionArgs); + } + + // + // Private helper methods + // + public function _getFormFields() + { + return [ + 'browseNewReleases' => 'bool', + 'browseCategories' => 'bool', + 'browseSeries' => 'bool', + ]; + } +} diff --git a/plugins/blocks/browse/index.php b/plugins/blocks/browse/index.php index 16fe47f9924..df7e90cc619 100644 --- a/plugins/blocks/browse/index.php +++ b/plugins/blocks/browse/index.php @@ -12,13 +12,9 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup plugins_blocks_browse + * * @brief Wrapper for browse block plugin. * */ - -require_once('BrowseBlockPlugin.inc.php'); - -return new BrowseBlockPlugin(); - - +return new \APP\plugins\blocks\browse\BrowseBlockPlugin(); diff --git a/plugins/blocks/browse/locale/ca_ES/locale.po b/plugins/blocks/browse/locale/ca_ES/locale.po deleted file mode 100644 index c92838536cc..00000000000 --- a/plugins/blocks/browse/locale/ca_ES/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T07:09:50-07:00\n" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Catalan \n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse" -msgstr "Navega" - -msgid "plugins.block.browse.displayName" -msgstr "Bloc de navegació" - -msgid "plugins.block.browse.description" -msgstr "Aquest mòdul proporciona les eines de \"navegació\" a la barra lateral." - -msgid "plugins.block.browse.category" -msgstr "Categories" - -msgid "plugins.block.browse.series" -msgstr "Series" - -msgid "plugins.block.browse.newReleases" -msgstr "Novetats" - -msgid "plugins.block.browse.settings.title" -msgstr "Explorar possibilitats" - -msgid "plugins.block.browse.settings" -msgstr "Configuració" diff --git a/plugins/blocks/browse/locale/cs_CZ/locale.po b/plugins/blocks/browse/locale/cs_CZ/locale.po deleted file mode 100644 index 6849ae59094..00000000000 --- a/plugins/blocks/browse/locale/cs_CZ/locale.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-05 08:43+0000\n" -"Last-Translator: Radek Gomola \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.newReleases" -msgstr "Nové příspěvky" - -msgid "plugins.block.browse.series" -msgstr "Edice" - -msgid "plugins.block.browse.category" -msgstr "Kategorie" - -msgid "plugins.block.browse.settings.title" -msgstr "Možnosti procházení" - -msgid "plugins.block.browse.settings" -msgstr "Nastavení" - -msgid "plugins.block.browse.description" -msgstr "Tento plugin poskytuje postranní panel pro procházení." - -msgid "plugins.block.browse.displayName" -msgstr "Blok pro procházení" - -msgid "plugins.block.browse" -msgstr "Procházet" diff --git a/plugins/blocks/browse/locale/da_DK/locale.po b/plugins/blocks/browse/locale/da_DK/locale.po deleted file mode 100644 index 34d3001fcf5..00000000000 --- a/plugins/blocks/browse/locale/da_DK/locale.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-09 18:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.displayName" -msgstr "Browse-blok" - -msgid "plugins.block.browse.newReleases" -msgstr "Nye udgivelser" - -msgid "plugins.block.browse.series" -msgstr "Serier" - -msgid "plugins.block.browse.category" -msgstr "Kategorier" - -msgid "plugins.block.browse.settings.title" -msgstr "Browse-muligheder" - -msgid "plugins.block.browse.settings" -msgstr "Indstillinger" - -msgid "plugins.block.browse.description" -msgstr "Denne plugin indsætter \"browse-værktøjer\" i sidemenuen." - -msgid "plugins.block.browse" -msgstr "Browse" diff --git a/plugins/blocks/browse/locale/da_DK/locale.xml b/plugins/blocks/browse/locale/da_DK/locale.xml deleted file mode 100644 index 36dc8a89909..00000000000 --- a/plugins/blocks/browse/locale/da_DK/locale.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - Browse - Browse blok - Denne plugin indsætter et browse-værktøj i sidemenuen. - Indstillinger - Browsemuligheder - Kategorier - Serier - Nye udgivelser - diff --git a/plugins/blocks/browse/locale/de_DE/locale.po b/plugins/blocks/browse/locale/de_DE/locale.po deleted file mode 100644 index 34a84a2f811..00000000000 --- a/plugins/blocks/browse/locale/de_DE/locale.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:50-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:50-07:00\n" -"Language: \n" - -msgid "plugins.block.browse" -msgstr "Browsen" - -msgid "plugins.block.browse.displayName" -msgstr "Browse-Block" - -msgid "plugins.block.browse.description" -msgstr "Dieses Plugin stellt \"Browse\"-Werkzeuge in der Sidebar bereit." - -msgid "plugins.block.browse.settings" -msgstr "Einstellungen" - -msgid "plugins.block.browse.settings.title" -msgstr "Browsing-Möglichkeiten" - -msgid "plugins.block.browse.category" -msgstr "Kategorien" - -msgid "plugins.block.browse.series" -msgstr "Reihen" - -msgid "plugins.block.browse.newReleases" -msgstr "Neuerscheinungen" diff --git a/plugins/blocks/browse/locale/en_US/locale.po b/plugins/blocks/browse/locale/en_US/locale.po deleted file mode 100644 index ba2be416d2e..00000000000 --- a/plugins/blocks/browse/locale/en_US/locale.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" - -msgid "plugins.block.browse" -msgstr "Browse" - -msgid "plugins.block.browse.displayName" -msgstr "Browse Block" - -msgid "plugins.block.browse.description" -msgstr "This plugin provides sidebar \"browse\" tools." - -msgid "plugins.block.browse.settings" -msgstr "Settings" - -msgid "plugins.block.browse.settings.title" -msgstr "Browse Possibilities" - -msgid "plugins.block.browse.category" -msgstr "Categories" - -msgid "plugins.block.browse.series" -msgstr "Series" - -msgid "plugins.block.browse.newReleases" -msgstr "New releases" diff --git a/plugins/blocks/browse/locale/es_ES/locale.po b/plugins/blocks/browse/locale/es_ES/locale.po deleted file mode 100644 index feea64c1db3..00000000000 --- a/plugins/blocks/browse/locale/es_ES/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:15+00:00\n" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse" -msgstr "Navegar" - -msgid "plugins.block.browse.displayName" -msgstr "Bloque de exploración" - -msgid "plugins.block.browse.description" -msgstr "Este plugin proporciona herramientas de exploración en la barra lateral." - -msgid "plugins.block.browse.category" -msgstr "Categorías" - -msgid "plugins.block.browse.series" -msgstr "Series" - -msgid "plugins.block.browse.newReleases" -msgstr "Novedades" - -msgid "plugins.block.browse.settings.title" -msgstr "Explorar posibilidades" - -msgid "plugins.block.browse.settings" -msgstr "Ajustes" diff --git a/plugins/blocks/browse/locale/fi_FI/locale.po b/plugins/blocks/browse/locale/fi_FI/locale.po deleted file mode 100644 index 3a1c2cfd7a5..00000000000 --- a/plugins/blocks/browse/locale/fi_FI/locale.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-18 16:48+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.newReleases" -msgstr "Uutuudet" - -msgid "plugins.block.browse.series" -msgstr "Sarjat" - -msgid "plugins.block.browse.category" -msgstr "Kategoriat" - -msgid "plugins.block.browse.settings.title" -msgstr "Selausvaihtoehdot" - -msgid "plugins.block.browse.settings" -msgstr "Asetukset" - -msgid "plugins.block.browse.description" -msgstr "Tämä lohkolisäosa näyttää sivupalkissa arkiston selaustoiminnot." - -msgid "plugins.block.browse.displayName" -msgstr "Selauslohko" - -msgid "plugins.block.browse" -msgstr "Selaa" diff --git a/plugins/blocks/browse/locale/fr_CA/locale.po b/plugins/blocks/browse/locale/fr_CA/locale.po index 5fe0a154ba0..5a4b45fceb2 100644 --- a/plugins/blocks/browse/locale/fr_CA/locale.po +++ b/plugins/blocks/browse/locale/fr_CA/locale.po @@ -6,27 +6,3 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Weblate\n" - -msgid "plugins.block.browse" -msgstr "Explorer" - -msgid "plugins.block.browse.displayName" -msgstr "Bloc de navigation" - -msgid "plugins.block.browse.description" -msgstr "Ce module fournit des outils de navigation dans la barre latérale." - -msgid "plugins.block.browse.settings" -msgstr "Paramètres" - -msgid "plugins.block.browse.settings.title" -msgstr "Explorer les options" - -msgid "plugins.block.browse.category" -msgstr "Catégories" - -msgid "plugins.block.browse.series" -msgstr "Collections" - -msgid "plugins.block.browse.newReleases" -msgstr "Nouveautés" diff --git a/plugins/blocks/browse/locale/gd_GB/locale.po b/plugins/blocks/browse/locale/gd_GB/locale.po deleted file mode 100644 index 68e2dbdb5a3..00000000000 --- a/plugins/blocks/browse/locale/gd_GB/locale.po +++ /dev/null @@ -1,38 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-16 20:31+0000\n" -"Last-Translator: Michael Bauer \n" -"Language-Team: Gaelic \n" -"Language: gd_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " -"(n > 2 && n < 20) ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse" -msgstr "Rùraich" - -msgid "plugins.block.browse.displayName" -msgstr "Am bloca rùrachaidh" - -msgid "plugins.block.browse.description" -msgstr "" -"Tha am plugan seo a’ cur nan innealan “Rùraich” ri làimh air a’ bhàr-taobh." - -msgid "plugins.block.browse.settings" -msgstr "Roghainnean" - -msgid "plugins.block.browse.settings.title" -msgstr "Rùraich na cothroman" - -msgid "plugins.block.browse.category" -msgstr "Roinnean-seòrsa" - -msgid "plugins.block.browse.series" -msgstr "Sreath" - -msgid "plugins.block.browse.newReleases" -msgstr "Sgaoilidhean ùra" diff --git a/plugins/blocks/browse/locale/it/locale.po b/plugins/blocks/browse/locale/it/locale.po new file mode 100644 index 00000000000..09e9639c5aa --- /dev/null +++ b/plugins/blocks/browse/locale/it/locale.po @@ -0,0 +1,39 @@ +# Alfredo Cosco , 2021. +msgid "" +msgstr "" +"PO-Revision-Date: 2021-08-19 16:34+0000\n" +"Last-Translator: Alfredo Cosco \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.browse" +msgstr "Consulta" + +msgid "plugins.block.browse.displayName" +msgstr "Blocco Consulta" + +msgid "plugins.block.browse.description" +msgstr "" +"Questo plugin genera un blocco laterale per la consultazione per serie e " +"categorie." + +msgid "plugins.block.browse.settings" +msgstr "Configurazioni" + +msgid "plugins.block.browse.settings.title" +msgstr "Possibilità di consultazione" + +msgid "plugins.block.browse.category" +msgstr "Categorie" + +msgid "plugins.block.browse.series" +msgstr "Serie" + +msgid "plugins.block.browse.newReleases" +msgstr "Nuove pubblicazioni" diff --git a/plugins/blocks/browse/locale/mk_MK/locale.po b/plugins/blocks/browse/locale/mk_MK/locale.po deleted file mode 100644 index e6bf8888283..00000000000 --- a/plugins/blocks/browse/locale/mk_MK/locale.po +++ /dev/null @@ -1,37 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-04 22:32+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.newReleases" -msgstr "Нови Изданија" - -msgid "plugins.block.browse.series" -msgstr "Серии" - -msgid "plugins.block.browse.category" -msgstr "Категории" - -msgid "plugins.block.browse.settings.title" -msgstr "Прелистај Можности" - -msgid "plugins.block.browse.settings" -msgstr "Поставки" - -msgid "plugins.block.browse.description" -msgstr "" -"Овој приклучок обезбедува алатки за „прелистување“ на страничната лента." - -msgid "plugins.block.browse.displayName" -msgstr "Прелистај Блок" - -msgid "plugins.block.browse" -msgstr "Прелистај" diff --git a/plugins/blocks/browse/locale/nb_NO/locale.po b/plugins/blocks/browse/locale/nb_NO/locale.po deleted file mode 100644 index c454f1a0f2d..00000000000 --- a/plugins/blocks/browse/locale/nb_NO/locale.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-20 14:50+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.newReleases" -msgstr "Nye utgivelser" - -msgid "plugins.block.browse.series" -msgstr "Serier" - -msgid "plugins.block.browse.category" -msgstr "Kategorier" - -msgid "plugins.block.browse.settings.title" -msgstr "Bla gjennom-muligheter" - -msgid "plugins.block.browse.settings" -msgstr "Innstillinger" - -msgid "plugins.block.browse.description" -msgstr "Dette programtillegget setter inn \"bla gjennom-verktøy\" i sidemenyen." - -msgid "plugins.block.browse.displayName" -msgstr "Bla gjennom-blokk" - -msgid "plugins.block.browse" -msgstr "Bla gjennom" diff --git a/plugins/blocks/browse/locale/pl_PL/locale.po b/plugins/blocks/browse/locale/pl_PL/locale.po deleted file mode 100644 index 1ef34f65646..00000000000 --- a/plugins/blocks/browse/locale/pl_PL/locale.po +++ /dev/null @@ -1,37 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-09 17:40+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.displayName" -msgstr "Dział przeglądu" - -msgid "plugins.block.browse.description" -msgstr "Wtyczka zawiera pasek boczny narzędzi przeglądania." - -msgid "plugins.block.browse.settings.title" -msgstr "Przeglądaj według" - -msgid "plugins.block.browse" -msgstr "Przeglądaj" - -msgid "plugins.block.browse.newReleases" -msgstr "Nowe wydania" - -msgid "plugins.block.browse.series" -msgstr "Serie" - -msgid "plugins.block.browse.category" -msgstr "Kategorie" - -msgid "plugins.block.browse.settings" -msgstr "Ustawienia" diff --git a/plugins/blocks/browse/locale/pt_BR/locale.po b/plugins/blocks/browse/locale/pt_BR/locale.po index fec7847036b..f255073d099 100644 --- a/plugins/blocks/browse/locale/pt_BR/locale.po +++ b/plugins/blocks/browse/locale/pt_BR/locale.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T12:01:00-07:00\n" +"PO-Revision-Date: 2019-09-30T12:01:00-07:00\n" "Last-Translator: \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T12:01:00-07:00\n" -"PO-Revision-Date: 2019-09-30T12:01:00-07:00\n" -"Language: \n" msgid "plugins.block.browse" msgstr "Navegar" @@ -20,6 +20,12 @@ msgstr "Bloco de Navegação" msgid "plugins.block.browse.description" msgstr "Este plugin oferece uma barra de ferramentas lateral para navegação." +msgid "plugins.block.browse.settings" +msgstr "Configurações" + +msgid "plugins.block.browse.settings.title" +msgstr "Possibilidades de Navegação" + msgid "plugins.block.browse.category" msgstr "Navegar a categoria" @@ -28,9 +34,3 @@ msgstr "Navegar numa série" msgid "plugins.block.browse.newReleases" msgstr "Navegar em lançamentos" - -msgid "plugins.block.browse.settings" -msgstr "Configurações" - -msgid "plugins.block.browse.settings.title" -msgstr "Possibilidades de Navegação" diff --git a/plugins/blocks/browse/locale/pt_PT/locale.po b/plugins/blocks/browse/locale/pt_PT/locale.po index aedfb8cf29f..51065d0c235 100644 --- a/plugins/blocks/browse/locale/pt_PT/locale.po +++ b/plugins/blocks/browse/locale/pt_PT/locale.po @@ -11,26 +11,26 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" -msgid "plugins.block.browse.newReleases" -msgstr "Novos lançamentos" - -msgid "plugins.block.browse.series" -msgstr "Séries" +msgid "plugins.block.browse" +msgstr "Pesquisar" -msgid "plugins.block.browse.category" -msgstr "Categorias" +msgid "plugins.block.browse.displayName" +msgstr "Bloco de Pesquisa" -msgid "plugins.block.browse.settings.title" -msgstr "Possibilidades de Pesquisa" +msgid "plugins.block.browse.description" +msgstr "Este plugin fornece ferramentas de \"pesquisa\" na barra lateral." msgid "plugins.block.browse.settings" msgstr "Configurações" -msgid "plugins.block.browse.description" -msgstr "Este plugin fornece ferramentas de \"pesquisa\" na barra lateral." +msgid "plugins.block.browse.settings.title" +msgstr "Possibilidades de Pesquisa" -msgid "plugins.block.browse.displayName" -msgstr "Bloco de Pesquisa" +msgid "plugins.block.browse.category" +msgstr "Categorias" -msgid "plugins.block.browse" -msgstr "Pesquisar" +msgid "plugins.block.browse.series" +msgstr "Séries" + +msgid "plugins.block.browse.newReleases" +msgstr "Novos lançamentos" diff --git a/plugins/blocks/browse/locale/ro_RO/locale.po b/plugins/blocks/browse/locale/ro_RO/locale.po deleted file mode 100644 index fd7c8274e18..00000000000 --- a/plugins/blocks/browse/locale/ro_RO/locale.po +++ /dev/null @@ -1,37 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-01 18:10+0000\n" -"Last-Translator: Vasile Moraru \n" -"Language-Team: Romanian \n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.newReleases" -msgstr "Apariții noi" - -msgid "plugins.block.browse.series" -msgstr "Serii" - -msgid "plugins.block.browse.category" -msgstr "Categorii" - -msgid "plugins.block.browse.settings.title" -msgstr "Variante de derulare" - -msgid "plugins.block.browse.settings" -msgstr "Setări" - -msgid "plugins.block.browse.description" -msgstr "Acest plugin pune la dispoziție scală de derulare." - -msgid "plugins.block.browse.displayName" -msgstr "Derulează blocuri" - -msgid "plugins.block.browse" -msgstr "Derulează" diff --git a/plugins/blocks/browse/locale/ru_RU/locale.po b/plugins/blocks/browse/locale/ru_RU/locale.po deleted file mode 100644 index c2a3b151b35..00000000000 --- a/plugins/blocks/browse/locale/ru_RU/locale.po +++ /dev/null @@ -1,37 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-04 09:36+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.description" -msgstr "Этот модуль представляет инструмент боковой панели \"Просмотр\"." - -msgid "plugins.block.browse.newReleases" -msgstr "Новые релизы" - -msgid "plugins.block.browse.series" -msgstr "Серии" - -msgid "plugins.block.browse.category" -msgstr "Категории" - -msgid "plugins.block.browse.settings.title" -msgstr "Возможности Просмотра" - -msgid "plugins.block.browse.settings" -msgstr "Настройки" - -msgid "plugins.block.browse.displayName" -msgstr "Блок Просмотр" - -msgid "plugins.block.browse" -msgstr "Просмотр" diff --git a/plugins/blocks/browse/locale/sl_SI/locale.po b/plugins/blocks/browse/locale/sl_SI/locale.po deleted file mode 100644 index d1faa907d6d..00000000000 --- a/plugins/blocks/browse/locale/sl_SI/locale.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:15+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:15+00:00\n" -"Language: \n" - -msgid "plugins.block.browse" -msgstr "Brskaj" - -msgid "plugins.block.browse.displayName" -msgstr "Brskalni blok" - -msgid "plugins.block.browse.description" -msgstr "Ta vtičnik v stranskem meniju prikazuje orodja za brskanje." - -msgid "plugins.block.browse.settings" -msgstr "Nastavitve" - -msgid "plugins.block.browse.settings.title" -msgstr "Možnosti brskanja" - -msgid "plugins.block.browse.category" -msgstr "Kategorije" - -msgid "plugins.block.browse.series" -msgstr "Zbirke" - -msgid "plugins.block.browse.newReleases" -msgstr "Nove objave" diff --git a/plugins/blocks/browse/locale/sv_SE/locale.po b/plugins/blocks/browse/locale/sv_SE/locale.po deleted file mode 100644 index 30ea1de6732..00000000000 --- a/plugins/blocks/browse/locale/sv_SE/locale.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-01-24 16:02+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.description" -msgstr "Det här pluginet aktiverar bläddringsmenyn." - -msgid "plugins.block.browse.newReleases" -msgstr "Nytt material" - -msgid "plugins.block.browse.series" -msgstr "Serier" - -msgid "plugins.block.browse.category" -msgstr "Kategorier" - -msgid "plugins.block.browse.settings.title" -msgstr "Bläddringsmöjligheter" - -msgid "plugins.block.browse.settings" -msgstr "Inställningar" - -msgid "plugins.block.browse.displayName" -msgstr "Bläddra-block" - -msgid "plugins.block.browse" -msgstr "Bläddra" diff --git a/plugins/blocks/browse/locale/uk_UA/locale.po b/plugins/blocks/browse/locale/uk_UA/locale.po deleted file mode 100644 index 0220ea1f084..00000000000 --- a/plugins/blocks/browse/locale/uk_UA/locale.po +++ /dev/null @@ -1,37 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-22 14:38+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.browse.newReleases" -msgstr "Нові Видання" - -msgid "plugins.block.browse.series" -msgstr "Серії" - -msgid "plugins.block.browse.category" -msgstr "Категорії" - -msgid "plugins.block.browse.settings.title" -msgstr "Можливості Перегляду" - -msgid "plugins.block.browse.settings" -msgstr "Налаштування" - -msgid "plugins.block.browse.description" -msgstr "Цей плагін дає можливість створити Бокову Панель \"Перегляд\"." - -msgid "plugins.block.browse.displayName" -msgstr "Блок Перегляду" - -msgid "plugins.block.browse" -msgstr "Переглянути" diff --git a/plugins/blocks/browse/locale/vi_VN/locale.po b/plugins/blocks/browse/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/blocks/browse/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/blocks/browse/templates/block.tpl b/plugins/blocks/browse/templates/block.tpl index 54e242b9e7d..f05df75ae05 100644 --- a/plugins/blocks/browse/templates/block.tpl +++ b/plugins/blocks/browse/templates/block.tpl @@ -24,7 +24,7 @@ {if $browseNewReleases}
          2. - + {translate key="navigation.newReleases"}
          3. @@ -36,7 +36,7 @@
              {foreach from=$browseCategories item="browseCategory"}
            • - getPath()|escape}"> + getPath()|escape}"> {$browseCategory->getLocalizedTitle()|escape}
            • @@ -50,11 +50,13 @@ {translate key="plugins.block.browse.series"} diff --git a/plugins/blocks/browse/templates/settingsForm.tpl b/plugins/blocks/browse/templates/settingsForm.tpl index 531b42bda3f..95c02138ab2 100644 --- a/plugins/blocks/browse/templates/settingsForm.tpl +++ b/plugins/blocks/browse/templates/settingsForm.tpl @@ -15,7 +15,7 @@ $('#browseBlockSettingsForm').pkpHandler('$.pkp.plugins.blocks.browse.BrowseBlockSettingsFormHandler'); {rdelim}); -
              + {csrf} {include file="common/formErrors.tpl"} {fbvFormArea id="browseBlockSettingsFormArea" class="border" title="plugins.block.browse.settings.title"} diff --git a/plugins/blocks/developedBy/DevelopedByBlockPlugin.inc.php b/plugins/blocks/developedBy/DevelopedByBlockPlugin.inc.php deleted file mode 100644 index e6d91b5d95e..00000000000 --- a/plugins/blocks/developedBy/DevelopedByBlockPlugin.inc.php +++ /dev/null @@ -1,52 +0,0 @@ -getPluginPath() . '/settings.xml'; - } - - /** - * Install default settings on press creation. - * @return string - */ - function getContextSpecificPluginSettingsFile() { - return $this->getPluginPath() . '/settings.xml'; - } - - /** - * Get the display name of this plugin. - * @return String - */ - function getDisplayName() { - return __('plugins.block.developedBy.displayName'); - } - - /** - * Get a description of the plugin. - */ - function getDescription() { - return __('plugins.block.developedBy.description'); - } -} diff --git a/plugins/blocks/developedBy/DevelopedByBlockPlugin.php b/plugins/blocks/developedBy/DevelopedByBlockPlugin.php new file mode 100644 index 00000000000..ab0f90c90cb --- /dev/null +++ b/plugins/blocks/developedBy/DevelopedByBlockPlugin.php @@ -0,0 +1,62 @@ +getPluginPath() . '/settings.xml'; + } + + /** + * Install default settings on press creation. + * + * @return string + */ + public function getContextSpecificPluginSettingsFile() + { + return $this->getPluginPath() . '/settings.xml'; + } + + /** + * Get the display name of this plugin. + * + * @return string + */ + public function getDisplayName() + { + return __('plugins.block.developedBy.displayName'); + } + + /** + * Get a description of the plugin. + */ + public function getDescription() + { + return __('plugins.block.developedBy.description'); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\plugins\blocks\developedBy\DevelopedByBlockPlugin', '\DevelopedByBlockPlugin'); +} diff --git a/plugins/blocks/developedBy/index.php b/plugins/blocks/developedBy/index.php index 46302eb5994..b57d0663642 100644 --- a/plugins/blocks/developedBy/index.php +++ b/plugins/blocks/developedBy/index.php @@ -1,23 +1,14 @@ , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-18 10:06+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Блок \"Разработено от\"" + +msgid "plugins.block.developedBy.description" +msgstr "Този плъгин предоставя връзка „Разработено от“ в страничната лента." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Разработено от" diff --git a/plugins/blocks/developedBy/locale/ca_ES/locale.po b/plugins/blocks/developedBy/locale/ca/locale.po similarity index 100% rename from plugins/blocks/developedBy/locale/ca_ES/locale.po rename to plugins/blocks/developedBy/locale/ca/locale.po diff --git a/plugins/blocks/developedBy/locale/cs/locale.po b/plugins/blocks/developedBy/locale/cs/locale.po new file mode 100644 index 00000000000..0d8530e566a --- /dev/null +++ b/plugins/blocks/developedBy/locale/cs/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-05 08:43+0000\n" +"Last-Translator: Radek Gomola \n" +"Language-Team: Czech \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Blok \"Vytvořeno kým\"" + +msgid "plugins.block.developedBy.description" +msgstr "Tento plugin vytvoří v postranním sloupci blok \"Vytvořeno kým\"." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Vytvořeno kým" diff --git a/plugins/blocks/developedBy/locale/cs_CZ/locale.po b/plugins/blocks/developedBy/locale/cs_CZ/locale.po deleted file mode 100644 index 314e13389ad..00000000000 --- a/plugins/blocks/developedBy/locale/cs_CZ/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-05 08:43+0000\n" -"Last-Translator: Radek Gomola \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.developedBy.blockTitle" -msgstr "Vytvořeno kým" - -msgid "plugins.block.developedBy.description" -msgstr "Tento plugin vytvoří v postranním sloupci blok \"Vytvořeno kým\"." - -msgid "plugins.block.developedBy.displayName" -msgstr "Blok \"Vytvořeno kým\"" diff --git a/plugins/blocks/developedBy/locale/da/locale.po b/plugins/blocks/developedBy/locale/da/locale.po new file mode 100644 index 00000000000..7c0728b7cb0 --- /dev/null +++ b/plugins/blocks/developedBy/locale/da/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-05 16:39+0000\n" +"Last-Translator: Niels Erik Frederiksen \n" +"Language-Team: Danish \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "\"Udviklet af\"-blok" + +msgid "plugins.block.developedBy.description" +msgstr "Denne plugin placerer et \"Udviklet af\"-link i sidemenuen." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Udviklet af" diff --git a/plugins/blocks/developedBy/locale/da_DK/locale.po b/plugins/blocks/developedBy/locale/da_DK/locale.po deleted file mode 100644 index 2098d47ed24..00000000000 --- a/plugins/blocks/developedBy/locale/da_DK/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-05 16:39+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.developedBy.description" -msgstr "Denne plugin placerer et \"Udviklet af\"-link i sidemenuen." - -msgid "plugins.block.developedBy.displayName" -msgstr "\"Udviklet af\"-blok" - -msgid "plugins.block.developedBy.blockTitle" -msgstr "Udviklet af" diff --git a/plugins/blocks/developedBy/locale/da_DK/locale.xml b/plugins/blocks/developedBy/locale/da_DK/locale.xml deleted file mode 100644 index 97f71b9d9fd..00000000000 --- a/plugins/blocks/developedBy/locale/da_DK/locale.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - "Udviklet af"-blok - Denne plugin indsætter en "Udviklet af"-blok i sidemenuen. - diff --git a/plugins/blocks/developedBy/locale/de_DE/locale.po b/plugins/blocks/developedBy/locale/de/locale.po similarity index 100% rename from plugins/blocks/developedBy/locale/de_DE/locale.po rename to plugins/blocks/developedBy/locale/de/locale.po diff --git a/plugins/blocks/developedBy/locale/el/locale.po b/plugins/blocks/developedBy/locale/el/locale.po new file mode 100644 index 00000000000..51b5b78a688 --- /dev/null +++ b/plugins/blocks/developedBy/locale/el/locale.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:16+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "\"Αναπτύχθηκε από\" Block" + +msgid "plugins.block.developedBy.description" +msgstr "" +"Το plugin αυτό παρέχει ένα σύνδεσμο \"Αναπτύχθηκε από\" στην πλαϊνή μπάρα." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "" diff --git a/plugins/blocks/developedBy/locale/el_GR/locale.po b/plugins/blocks/developedBy/locale/el_GR/locale.po deleted file mode 100644 index 9b7e44de74b..00000000000 --- a/plugins/blocks/developedBy/locale/el_GR/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:16+00:00\n" -"Language: \n" - -msgid "plugins.block.developedBy.displayName" -msgstr "\"Αναπτύχθηκε από\" Block" - -msgid "plugins.block.developedBy.description" -msgstr "Το plugin αυτό παρέχει ένα σύνδεσμο \"Αναπτύχθηκε από\" στην πλαϊνή μπάρα." diff --git a/plugins/blocks/developedBy/locale/en/locale.po b/plugins/blocks/developedBy/locale/en/locale.po new file mode 100644 index 00000000000..eded18048dc --- /dev/null +++ b/plugins/blocks/developedBy/locale/en/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "\"Developed By\" Block" + +msgid "plugins.block.developedBy.description" +msgstr "This plugin provides sidebar \"Developed By\" link." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Developed By" diff --git a/plugins/blocks/developedBy/locale/en_US/locale.po b/plugins/blocks/developedBy/locale/en_US/locale.po deleted file mode 100644 index d611e289cae..00000000000 --- a/plugins/blocks/developedBy/locale/en_US/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" - -msgid "plugins.block.developedBy.displayName" -msgstr "\"Developed By\" Block" - -msgid "plugins.block.developedBy.description" -msgstr "This plugin provides sidebar \"Developed By\" link." - -msgid "plugins.block.developedBy.blockTitle" -msgstr "Developed By" diff --git a/plugins/blocks/developedBy/locale/es_ES/locale.po b/plugins/blocks/developedBy/locale/es/locale.po similarity index 100% rename from plugins/blocks/developedBy/locale/es_ES/locale.po rename to plugins/blocks/developedBy/locale/es/locale.po diff --git a/plugins/blocks/developedBy/locale/fa/locale.po b/plugins/blocks/developedBy/locale/fa/locale.po new file mode 100644 index 00000000000..ccca53ad540 --- /dev/null +++ b/plugins/blocks/developedBy/locale/fa/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:16+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "بلوک «تهیه توسط»" + +msgid "plugins.block.developedBy.description" +msgstr "این پلاگین لینکی در نوار حاشیه برای «تهیه توسط» ایجاد میکند." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "" diff --git a/plugins/blocks/developedBy/locale/fa_IR/locale.po b/plugins/blocks/developedBy/locale/fa_IR/locale.po deleted file mode 100644 index 2e3b951387d..00000000000 --- a/plugins/blocks/developedBy/locale/fa_IR/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:16+00:00\n" -"Language: \n" - -msgid "plugins.block.developedBy.displayName" -msgstr "بلوک «تهیه توسط»" - -msgid "plugins.block.developedBy.description" -msgstr "این پلاگین لینکی در نوار حاشیه برای «تهیه توسط» ایجاد میکند." diff --git a/plugins/blocks/developedBy/locale/fi/locale.po b/plugins/blocks/developedBy/locale/fi/locale.po new file mode 100644 index 00000000000..d6bc01b74bc --- /dev/null +++ b/plugins/blocks/developedBy/locale/fi/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-18 16:48+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi_FI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "\"Kehittänyt\"-lohko" + +msgid "plugins.block.developedBy.description" +msgstr "Tämä lohkolisäosa näyttää sivupalkissa \"Kehittänyt\"-linkin." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Kehittänyt" diff --git a/plugins/blocks/developedBy/locale/fi_FI/locale.po b/plugins/blocks/developedBy/locale/fi_FI/locale.po deleted file mode 100644 index b66eba7c2ff..00000000000 --- a/plugins/blocks/developedBy/locale/fi_FI/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-18 16:48+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.developedBy.blockTitle" -msgstr "Kehittänyt" - -msgid "plugins.block.developedBy.description" -msgstr "Tämä lohkolisäosa näyttää sivupalkissa \"Kehittänyt\"-linkin." - -msgid "plugins.block.developedBy.displayName" -msgstr "\"Kehittänyt\"-lohko" diff --git a/plugins/blocks/developedBy/locale/fr_FR/locale.po b/plugins/blocks/developedBy/locale/fr_FR/locale.po new file mode 100644 index 00000000000..9f2d5ec2a0f --- /dev/null +++ b/plugins/blocks/developedBy/locale/fr_FR/locale.po @@ -0,0 +1,24 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-24 08:49+0000\n" +"Last-Translator: Rudy Hahusseau \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Bloc « Développé par »" + +msgid "plugins.block.developedBy.description" +msgstr "" +"Ce plugin fournit un lien au bloc « Développé par » dans l'encadré latéral." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Développé par" diff --git a/plugins/blocks/developedBy/locale/gl/locale.po b/plugins/blocks/developedBy/locale/gl/locale.po new file mode 100644 index 00000000000..14ab9405f42 --- /dev/null +++ b/plugins/blocks/developedBy/locale/gl/locale.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:22+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Bloque \"Creado por\"" + +msgid "plugins.block.developedBy.description" +msgstr "" +"Este complemento fornece unha ligazón \"Desenvolvido por\" na barra lateral." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Desenvolvido por" diff --git a/plugins/blocks/developedBy/locale/hr/locale.po b/plugins/blocks/developedBy/locale/hr/locale.po new file mode 100644 index 00000000000..2cb3da28a4a --- /dev/null +++ b/plugins/blocks/developedBy/locale/hr/locale.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" +"PO-Revision-Date: 2021-04-21 13:43+0000\n" +"Last-Translator: Dobrica Pavlinušić \n" +"Language-Team: Croatian \n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "\"Sustav razvili\" blok" + +msgid "plugins.block.developedBy.description" +msgstr "Ovaj dodatak prikazuje poveznicu na razvojni tim OMP-a u rubnom izborniku." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Sustav razvili" diff --git a/plugins/blocks/developedBy/locale/hr_HR/locale.po b/plugins/blocks/developedBy/locale/hr_HR/locale.po deleted file mode 100644 index 09c7b6527b9..00000000000 --- a/plugins/blocks/developedBy/locale/hr_HR/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:16+00:00\n" -"Language: \n" - -msgid "plugins.block.developedBy.displayName" -msgstr "\"Sustav razvili\" blok" - -msgid "plugins.block.developedBy.description" -msgstr "Ovaj dodatak prikazuje poveznicu na razvojni tim OMP-a u rubnom izborniku." diff --git a/plugins/blocks/developedBy/locale/hu/locale.po b/plugins/blocks/developedBy/locale/hu/locale.po new file mode 100644 index 00000000000..fa4d52e7a4d --- /dev/null +++ b/plugins/blocks/developedBy/locale/hu/locale.po @@ -0,0 +1,22 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-26 13:56+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "\"Fejlesztette\" blokk" + +msgid "plugins.block.developedBy.description" +msgstr "Ez a bővítmény biztosítja az oldalsáv \"Fejlesztette\" linkjét." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Fejlesztette" diff --git a/plugins/blocks/developedBy/locale/it/locale.po b/plugins/blocks/developedBy/locale/it/locale.po new file mode 100644 index 00000000000..c0cf0439f8f --- /dev/null +++ b/plugins/blocks/developedBy/locale/it/locale.po @@ -0,0 +1,24 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" +"PO-Revision-Date: 2021-04-28 14:37+0000\n" +"Last-Translator: Stefano Bolelli Gallevi \n" +"Language-Team: Italian \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Modulo \"Sviluppato da\"" + +msgid "plugins.block.developedBy.description" +msgstr "Questo plugin fornisce un link \"Sviluppato da\" nel menu laterale." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Sviluppato da" diff --git a/plugins/blocks/developedBy/locale/it_IT/locale.po b/plugins/blocks/developedBy/locale/it_IT/locale.po deleted file mode 100644 index bccf42d7760..00000000000 --- a/plugins/blocks/developedBy/locale/it_IT/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:16+00:00\n" -"Language: \n" - -msgid "plugins.block.developedBy.displayName" -msgstr "Modulo \"Sviluppato da\"" - -msgid "plugins.block.developedBy.description" -msgstr "Questo plugin fornisce un link \"Sviluppato da\" nel menu laterale." diff --git a/plugins/blocks/developedBy/locale/ja/locale.po b/plugins/blocks/developedBy/locale/ja/locale.po new file mode 100644 index 00000000000..56963879036 --- /dev/null +++ b/plugins/blocks/developedBy/locale/ja/locale.po @@ -0,0 +1,25 @@ +# TAKASHI IMAGIRE , 2021. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" +"PO-Revision-Date: 2021-12-11 07:16+0000\n" +"Last-Translator: TAKASHI IMAGIRE \n" +"Language-Team: Japanese \n" +"Language: ja_JP\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "\"開発者\" ブロック" + +msgid "plugins.block.developedBy.description" +msgstr "このプラグインはサイドバーに \"開発者\" リンクを付けます。" + +msgid "plugins.block.developedBy.blockTitle" +msgstr "開発者は" diff --git a/plugins/blocks/developedBy/locale/ja_JP/locale.po b/plugins/blocks/developedBy/locale/ja_JP/locale.po deleted file mode 100644 index 2122a9deaca..00000000000 --- a/plugins/blocks/developedBy/locale/ja_JP/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:16+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:16+00:00\n" -"Language: \n" - -msgid "plugins.block.developedBy.displayName" -msgstr "\"開発者\" ブロック" - -msgid "plugins.block.developedBy.description" -msgstr "このプラグインはサイドバーに \"開発者\" リンクを付けます。" diff --git a/plugins/blocks/developedBy/locale/mk/locale.po b/plugins/blocks/developedBy/locale/mk/locale.po new file mode 100644 index 00000000000..f4d905199ad --- /dev/null +++ b/plugins/blocks/developedBy/locale/mk/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-04 22:32+0000\n" +"Last-Translator: Blagoja Grozdanovski \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "„Развиен од“ Блок" + +msgid "plugins.block.developedBy.description" +msgstr "Овој приклучок обезбедува \"Развиен од\" странична врска." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Развиен од" diff --git a/plugins/blocks/developedBy/locale/mk_MK/locale.po b/plugins/blocks/developedBy/locale/mk_MK/locale.po deleted file mode 100644 index d09c1ea6e81..00000000000 --- a/plugins/blocks/developedBy/locale/mk_MK/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-04 22:32+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.developedBy.blockTitle" -msgstr "Развиен од" - -msgid "plugins.block.developedBy.description" -msgstr "Овој приклучок обезбедува \"Развиен од\" странична врска." - -msgid "plugins.block.developedBy.displayName" -msgstr "„Развиен од“ Блок" diff --git a/plugins/blocks/developedBy/locale/nb/locale.po b/plugins/blocks/developedBy/locale/nb/locale.po new file mode 100644 index 00000000000..44507f2bb73 --- /dev/null +++ b/plugins/blocks/developedBy/locale/nb/locale.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-20 14:50+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Blokk for «Utviklet av»" + +msgid "plugins.block.developedBy.description" +msgstr "" +"Dette programtillegget lager en lenke merket «Utviklet av» i sidemenyen." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Utviklet av" diff --git a/plugins/blocks/developedBy/locale/nb_NO/locale.po b/plugins/blocks/developedBy/locale/nb_NO/locale.po deleted file mode 100644 index 9c6298cf7be..00000000000 --- a/plugins/blocks/developedBy/locale/nb_NO/locale.po +++ /dev/null @@ -1,22 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-20 14:50+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.developedBy.blockTitle" -msgstr "Utviklet av" - -msgid "plugins.block.developedBy.description" -msgstr "" -"Dette programtillegget lager en lenke merket «Utviklet av» i sidemenyen." - -msgid "plugins.block.developedBy.displayName" -msgstr "Blokk for «Utviklet av»" diff --git a/plugins/blocks/developedBy/locale/pl/locale.po b/plugins/blocks/developedBy/locale/pl/locale.po new file mode 100644 index 00000000000..1b6f85ed6d7 --- /dev/null +++ b/plugins/blocks/developedBy/locale/pl/locale.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-09 17:40+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Dział \"opracowany przez\"" + +msgid "plugins.block.developedBy.description" +msgstr "Wtyczka zawiera link pasku bocznego \"opracowany przez\"." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Opracowany przez" diff --git a/plugins/blocks/developedBy/locale/pl_PL/locale.po b/plugins/blocks/developedBy/locale/pl_PL/locale.po deleted file mode 100644 index 0894d1c2d9b..00000000000 --- a/plugins/blocks/developedBy/locale/pl_PL/locale.po +++ /dev/null @@ -1,22 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-09 17:40+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.developedBy.displayName" -msgstr "Dział \"opracowany przez\"" - -msgid "plugins.block.developedBy.blockTitle" -msgstr "Opracowany przez" - -msgid "plugins.block.developedBy.description" -msgstr "Wtyczka zawiera link pasku bocznego \"opracowany przez\"." diff --git a/plugins/blocks/developedBy/locale/pt_PT/locale.po b/plugins/blocks/developedBy/locale/pt_PT/locale.po index 45e137e081a..64a286ea449 100644 --- a/plugins/blocks/developedBy/locale/pt_PT/locale.po +++ b/plugins/blocks/developedBy/locale/pt_PT/locale.po @@ -11,11 +11,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" -msgid "plugins.block.developedBy.description" -msgstr "Este plugin fornece um link para \"Desenvolvido por\" na barra lateral." - msgid "plugins.block.developedBy.displayName" msgstr "Bloco \"Desenvolvido por\"" +msgid "plugins.block.developedBy.description" +msgstr "" +"Este plugin fornece um link para \"Desenvolvido por\" na barra lateral." + msgid "plugins.block.developedBy.blockTitle" msgstr "Desenvolvido por" diff --git a/plugins/blocks/developedBy/locale/ro/locale.po b/plugins/blocks/developedBy/locale/ro/locale.po new file mode 100644 index 00000000000..7a52cd05520 --- /dev/null +++ b/plugins/blocks/developedBy/locale/ro/locale.po @@ -0,0 +1,23 @@ +# Ruxandra Berescu , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-03 17:39+0000\n" +"Last-Translator: Ruxandra Berescu \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Bloc „Creat de”" + +msgid "plugins.block.developedBy.description" +msgstr "Acest plugin oferă în bara laterală link-ul „Creat de”." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Dezvoltat de" diff --git a/plugins/blocks/developedBy/locale/ru/locale.po b/plugins/blocks/developedBy/locale/ru/locale.po new file mode 100644 index 00000000000..a7040c95bcb --- /dev/null +++ b/plugins/blocks/developedBy/locale/ru/locale.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-30 12:18+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Блок \"Разработано\"" + +msgid "plugins.block.developedBy.description" +msgstr "Этот модуль представляет ссылку \"Разработано\" в боковую панель." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Разработано" diff --git a/plugins/blocks/developedBy/locale/ru_RU/locale.po b/plugins/blocks/developedBy/locale/ru_RU/locale.po deleted file mode 100644 index 3d38cc684dc..00000000000 --- a/plugins/blocks/developedBy/locale/ru_RU/locale.po +++ /dev/null @@ -1,22 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-30 12:18+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.developedBy.description" -msgstr "Этот модуль представляет ссылку \"Разработано\" в боковую панель." - -msgid "plugins.block.developedBy.displayName" -msgstr "Блок \"Разработано\"" - -msgid "plugins.block.developedBy.blockTitle" -msgstr "Разработано" diff --git a/plugins/blocks/developedBy/locale/sl/locale.po b/plugins/blocks/developedBy/locale/sl/locale.po new file mode 100644 index 00000000000..6ba8e34d84b --- /dev/null +++ b/plugins/blocks/developedBy/locale/sl/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:17+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:17+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Blok \"Razvijalci\"" + +msgid "plugins.block.developedBy.description" +msgstr "Vtičnik omogoča stransko vrstico s povezavo na stran \"Razvijalci\"." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "" diff --git a/plugins/blocks/developedBy/locale/sl_SI/locale.po b/plugins/blocks/developedBy/locale/sl_SI/locale.po deleted file mode 100644 index 9a714fe6bec..00000000000 --- a/plugins/blocks/developedBy/locale/sl_SI/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:17+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:17+00:00\n" -"Language: \n" - -msgid "plugins.block.developedBy.displayName" -msgstr "Blok \"Razvijalci\"" - -msgid "plugins.block.developedBy.description" -msgstr "Vtičnik omogoča stransko vrstico s povezavo na stran \"Razvijalci\"." diff --git a/plugins/blocks/developedBy/locale/sv/locale.po b/plugins/blocks/developedBy/locale/sv/locale.po new file mode 100644 index 00000000000..63aa627d3f4 --- /dev/null +++ b/plugins/blocks/developedBy/locale/sv/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-09 08:53+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "\"Utvecklat av\"-block" + +msgid "plugins.block.developedBy.description" +msgstr "Denna plugin aktiverar \"Utvecklat av\"-länken i sidomenyn." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Utvecklat av" diff --git a/plugins/blocks/developedBy/locale/sv_SE/locale.po b/plugins/blocks/developedBy/locale/sv_SE/locale.po deleted file mode 100644 index 52feaf643df..00000000000 --- a/plugins/blocks/developedBy/locale/sv_SE/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-09 08:53+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.developedBy.description" -msgstr "Denna plugin aktiverar \"Utvecklat av\"-länken i sidomenyn." - -msgid "plugins.block.developedBy.displayName" -msgstr "\"Utvecklat av\"-block" - -msgid "plugins.block.developedBy.blockTitle" -msgstr "Utvecklat av" diff --git a/plugins/blocks/developedBy/locale/tr/locale.po b/plugins/blocks/developedBy/locale/tr/locale.po new file mode 100644 index 00000000000..11fb7504813 --- /dev/null +++ b/plugins/blocks/developedBy/locale/tr/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 09:32+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "\"Geliştiren\" Sütunu" + +msgid "plugins.block.developedBy.description" +msgstr "Bu eklenti yan sütuna \"Geliştiren\" bağlantısı ekler." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Geliştiren" diff --git a/plugins/blocks/developedBy/locale/uk/locale.po b/plugins/blocks/developedBy/locale/uk/locale.po new file mode 100644 index 00000000000..4b3bd45d849 --- /dev/null +++ b/plugins/blocks/developedBy/locale/uk/locale.po @@ -0,0 +1,23 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-18 09:48+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "Блок \"Розроблено\"" + +msgid "plugins.block.developedBy.description" +msgstr "Цей плагін створює боковий блок з інформацією про розробника." + +msgid "plugins.block.developedBy.blockTitle" +msgstr "Розроблено" diff --git a/plugins/blocks/developedBy/locale/uk_UA/locale.po b/plugins/blocks/developedBy/locale/uk_UA/locale.po deleted file mode 100644 index e52e9311ad2..00000000000 --- a/plugins/blocks/developedBy/locale/uk_UA/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-22 14:38+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.developedBy.description" -msgstr "Цей плагін створює боковий блок з інформацією про Розробника." - -msgid "plugins.block.developedBy.displayName" -msgstr "Блок \"Розроблено\"" diff --git a/plugins/blocks/developedBy/locale/vi/locale.po b/plugins/blocks/developedBy/locale/vi/locale.po new file mode 100644 index 00000000000..b60065137b6 --- /dev/null +++ b/plugins/blocks/developedBy/locale/vi/locale.po @@ -0,0 +1,15 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "plugins.block.developedBy.displayName" +msgstr "" + +msgid "plugins.block.developedBy.description" +msgstr "" + +msgid "plugins.block.developedBy.blockTitle" +msgstr "" diff --git a/plugins/blocks/developedBy/locale/vi_VN/locale.po b/plugins/blocks/developedBy/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/blocks/developedBy/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/blocks/developedBy/templates/block.tpl b/plugins/blocks/developedBy/templates/block.tpl index 429bc5a0077..c648e953bbe 100644 --- a/plugins/blocks/developedBy/templates/block.tpl +++ b/plugins/blocks/developedBy/templates/block.tpl @@ -13,7 +13,7 @@

            diff --git a/plugins/blocks/information/InformationBlockPlugin.inc.php b/plugins/blocks/information/InformationBlockPlugin.inc.php deleted file mode 100644 index e5725d42795..00000000000 --- a/plugins/blocks/information/InformationBlockPlugin.inc.php +++ /dev/null @@ -1,56 +0,0 @@ -getPluginPath() . '/settings.xml'; - } - - /** - * Get the display name of this plugin. - * @return String - */ - function getDisplayName() { - return __('plugins.block.information.displayName'); - } - - /** - * Get a description of the plugin. - */ - function getDescription() { - return __('plugins.block.information.description'); - } - - /** - * @copydoc BlockPlugin::getContents() - */ - function getContents($templateMgr, $request = null) { - $press = $request->getPress(); - if (!$press) return ''; - - $templateMgr->assign('forReaders', $press->getLocalizedSetting('readerInformation')); - $templateMgr->assign('forAuthors', $press->getLocalizedSetting('authorInformation')); - $templateMgr->assign('forLibrarians', $press->getLocalizedSetting('librarianInformation')); - return parent::getContents($templateMgr); - } -} - - diff --git a/plugins/blocks/information/InformationBlockPlugin.php b/plugins/blocks/information/InformationBlockPlugin.php new file mode 100644 index 00000000000..9f03d9bdad4 --- /dev/null +++ b/plugins/blocks/information/InformationBlockPlugin.php @@ -0,0 +1,70 @@ +getPluginPath() . '/settings.xml'; + } + + /** + * Get the display name of this plugin. + * + * @return string + */ + public function getDisplayName() + { + return __('plugins.block.information.displayName'); + } + + /** + * Get a description of the plugin. + */ + public function getDescription() + { + return __('plugins.block.information.description'); + } + + /** + * @copydoc BlockPlugin::getContents() + * + * @param null|mixed $request + */ + public function getContents($templateMgr, $request = null) + { + $press = $request->getPress(); + if (!$press) { + return ''; + } + + $templateMgr->assign('forReaders', $press->getLocalizedSetting('readerInformation')); + $templateMgr->assign('forAuthors', $press->getLocalizedSetting('authorInformation')); + $templateMgr->assign('forLibrarians', $press->getLocalizedSetting('librarianInformation')); + return parent::getContents($templateMgr); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\plugins\blocks\information\InformationBlockPlugin', '\InformationBlockPlugin'); +} diff --git a/plugins/blocks/information/index.php b/plugins/blocks/information/index.php index 1c6181970cc..792199a92fc 100644 --- a/plugins/blocks/information/index.php +++ b/plugins/blocks/information/index.php @@ -1,23 +1,14 @@ , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-23 11:06+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Информационен блок" + +msgid "plugins.block.information.description" +msgstr "Този плъгин предоставя връзка с информация в страничната лента." + +msgid "plugins.block.information.link" +msgstr "Информация" diff --git a/plugins/blocks/information/locale/ca/locale.po b/plugins/blocks/information/locale/ca/locale.po new file mode 100644 index 00000000000..67c198e907c --- /dev/null +++ b/plugins/blocks/information/locale/ca/locale.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Bloc d'informació" + +msgid "plugins.block.information.description" +msgstr "" +"Aquest connector proporciona un enllaç d'informació a la barra lateral." + +msgid "plugins.block.information.link" +msgstr "Informació" diff --git a/plugins/blocks/information/locale/ca_ES/locale.po b/plugins/blocks/information/locale/ca_ES/locale.po deleted file mode 100644 index fb7195b595a..00000000000 --- a/plugins/blocks/information/locale/ca_ES/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Bloc d'informació" - -msgid "plugins.block.information.description" -msgstr "Aquest connector proporciona un enllaç d'informació a la barra lateral." - -msgid "plugins.block.information.link" -msgstr "Informació" diff --git a/plugins/blocks/information/locale/cs/locale.po b/plugins/blocks/information/locale/cs/locale.po new file mode 100644 index 00000000000..adf10c871af --- /dev/null +++ b/plugins/blocks/information/locale/cs/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:17+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:17+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Informační blok" + +msgid "plugins.block.information.description" +msgstr "Tento plugin poskytne v postraním panelu odkaz na informace." + +msgid "plugins.block.information.link" +msgstr "Informace" diff --git a/plugins/blocks/information/locale/cs_CZ/locale.po b/plugins/blocks/information/locale/cs_CZ/locale.po deleted file mode 100644 index 197c2a500b4..00000000000 --- a/plugins/blocks/information/locale/cs_CZ/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:17+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:17+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Informační blok" - -msgid "plugins.block.information.description" -msgstr "Tento plugin poskytne v postraním panelu odkaz na informace." - -msgid "plugins.block.information.link" -msgstr "Informace" diff --git a/plugins/blocks/information/locale/da/locale.po b/plugins/blocks/information/locale/da/locale.po new file mode 100644 index 00000000000..10058e3ce8b --- /dev/null +++ b/plugins/blocks/information/locale/da/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-07 10:35+0000\n" +"Last-Translator: Niels Erik Frederiksen \n" +"Language-Team: Danish \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Informationsblok" + +msgid "plugins.block.information.description" +msgstr "Denne plugin indsætter informationslink i sidemenuen." + +msgid "plugins.block.information.link" +msgstr "Information" diff --git a/plugins/blocks/information/locale/da_DK/locale.po b/plugins/blocks/information/locale/da_DK/locale.po deleted file mode 100644 index 039b6cc5d2b..00000000000 --- a/plugins/blocks/information/locale/da_DK/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-07 10:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.information.link" -msgstr "Information" - -msgid "plugins.block.information.description" -msgstr "Denne plugin indsætter informationslink i sidemenuen." - -msgid "plugins.block.information.displayName" -msgstr "Informationsblok" diff --git a/plugins/blocks/information/locale/de/locale.po b/plugins/blocks/information/locale/de/locale.po new file mode 100644 index 00000000000..d729cca5d1d --- /dev/null +++ b/plugins/blocks/information/locale/de/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Informationen-Block" + +msgid "plugins.block.information.description" +msgstr "Dieses Plugin stellt den Informationen-Link für die Sidebar bereit." + +msgid "plugins.block.information.link" +msgstr "Informationen" diff --git a/plugins/blocks/information/locale/de_DE/locale.po b/plugins/blocks/information/locale/de_DE/locale.po deleted file mode 100644 index e5ab86b3b57..00000000000 --- a/plugins/blocks/information/locale/de_DE/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Informationen-Block" - -msgid "plugins.block.information.description" -msgstr "Dieses Plugin stellt den Informationen-Link für die Sidebar bereit." - -msgid "plugins.block.information.link" -msgstr "Informationen" diff --git a/plugins/blocks/information/locale/el/locale.po b/plugins/blocks/information/locale/el/locale.po new file mode 100644 index 00000000000..1cd0b2be0b0 --- /dev/null +++ b/plugins/blocks/information/locale/el/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:17+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:17+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Block Πληροφοριών" + +msgid "plugins.block.information.description" +msgstr "Το plugin αυτό παρέχει ένα σύνδεσμο Πληροφορίες στην πλαϊνή μπάρα." + +msgid "plugins.block.information.link" +msgstr "Πληροφορίες" diff --git a/plugins/blocks/information/locale/el_GR/locale.po b/plugins/blocks/information/locale/el_GR/locale.po deleted file mode 100644 index 8d83f6106f1..00000000000 --- a/plugins/blocks/information/locale/el_GR/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:17+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:17+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Block Πληροφοριών" - -msgid "plugins.block.information.description" -msgstr "Το plugin αυτό παρέχει ένα σύνδεσμο Πληροφορίες στην πλαϊνή μπάρα." - -msgid "plugins.block.information.link" -msgstr "Πληροφορίες" diff --git a/plugins/blocks/information/locale/en/locale.po b/plugins/blocks/information/locale/en/locale.po new file mode 100644 index 00000000000..4972445ca36 --- /dev/null +++ b/plugins/blocks/information/locale/en/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Information Block" + +msgid "plugins.block.information.description" +msgstr "This plugin provides sidebar information link." + +msgid "plugins.block.information.link" +msgstr "Information" diff --git a/plugins/blocks/information/locale/en_US/locale.po b/plugins/blocks/information/locale/en_US/locale.po deleted file mode 100644 index 58f91a231ec..00000000000 --- a/plugins/blocks/information/locale/en_US/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Information Block" - -msgid "plugins.block.information.description" -msgstr "This plugin provides sidebar information link." - -msgid "plugins.block.information.link" -msgstr "Information" diff --git a/plugins/blocks/information/locale/es/locale.po b/plugins/blocks/information/locale/es/locale.po new file mode 100644 index 00000000000..c9360248802 --- /dev/null +++ b/plugins/blocks/information/locale/es/locale.po @@ -0,0 +1,22 @@ +# Marc Bria , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-28 05:49+0000\n" +"Last-Translator: Marc Bria \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Bloques de información" + +msgid "plugins.block.information.description" +msgstr "Este módulo proporciona un enlace con información en la barra lateral." + +msgid "plugins.block.information.link" +msgstr "Información" diff --git a/plugins/blocks/information/locale/es_ES/locale.po b/plugins/blocks/information/locale/es_ES/locale.po deleted file mode 100644 index 531a398db0c..00000000000 --- a/plugins/blocks/information/locale/es_ES/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:17+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:17+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Bloque de información" - -msgid "plugins.block.information.description" -msgstr "Este complemento proporciona un enlace de información en la barra lateral." - -msgid "plugins.block.information.link" -msgstr "Información" diff --git a/plugins/blocks/information/locale/eu/locale.po b/plugins/blocks/information/locale/eu/locale.po new file mode 100644 index 00000000000..0b9bd9cd669 --- /dev/null +++ b/plugins/blocks/information/locale/eu/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:17+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:17+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Informazioaren blokea" + +msgid "plugins.block.information.description" +msgstr "Plugin honek informazioaren esteka ematen du alboko barran." + +msgid "plugins.block.information.link" +msgstr "Informazioa" diff --git a/plugins/blocks/information/locale/eu_ES/locale.po b/plugins/blocks/information/locale/eu_ES/locale.po deleted file mode 100644 index 6f1f8283ea0..00000000000 --- a/plugins/blocks/information/locale/eu_ES/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:17+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:17+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Informazioaren blokea" - -msgid "plugins.block.information.description" -msgstr "Plugin honek informazioaren esteka ematen du alboko barran." - -msgid "plugins.block.information.link" -msgstr "Informazioa" diff --git a/plugins/blocks/information/locale/fa/locale.po b/plugins/blocks/information/locale/fa/locale.po new file mode 100644 index 00000000000..a9d37492c4c --- /dev/null +++ b/plugins/blocks/information/locale/fa/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "بلوک اطلاعات" + +msgid "plugins.block.information.description" +msgstr "این پلاگین لینکی در نوار حاشیه برای اطلاعات ایجاد میکند." + +msgid "plugins.block.information.link" +msgstr "اطلاعات" diff --git a/plugins/blocks/information/locale/fa_IR/locale.po b/plugins/blocks/information/locale/fa_IR/locale.po deleted file mode 100644 index cd1d30af4a4..00000000000 --- a/plugins/blocks/information/locale/fa_IR/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "بلوک اطلاعات" - -msgid "plugins.block.information.description" -msgstr "این پلاگین لینکی در نوار حاشیه برای اطلاعات ایجاد میکند." - -msgid "plugins.block.information.link" -msgstr "اطلاعات" diff --git a/plugins/blocks/information/locale/fi/locale.po b/plugins/blocks/information/locale/fi/locale.po new file mode 100644 index 00000000000..4e1845eda05 --- /dev/null +++ b/plugins/blocks/information/locale/fi/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-18 16:48+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi_FI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Tietoja-lohko" + +msgid "plugins.block.information.description" +msgstr "Tämä lisäosa tulostaa Tietoja-linkit sivupalkkiin." + +msgid "plugins.block.information.link" +msgstr "Tietoa" diff --git a/plugins/blocks/information/locale/fi_FI/locale.po b/plugins/blocks/information/locale/fi_FI/locale.po deleted file mode 100644 index 070a7072d12..00000000000 --- a/plugins/blocks/information/locale/fi_FI/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-18 16:48+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.information.link" -msgstr "Tietoa" - -msgid "plugins.block.information.description" -msgstr "Tämä lisäosa tulostaa Tietoja-linkit sivupalkkiin." - -msgid "plugins.block.information.displayName" -msgstr "Tietoja-lohko" diff --git a/plugins/blocks/information/locale/fr_CA/locale.po b/plugins/blocks/information/locale/fr_CA/locale.po index ee78408b22c..a8737f7008c 100644 --- a/plugins/blocks/information/locale/fr_CA/locale.po +++ b/plugins/blocks/information/locale/fr_CA/locale.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" "Last-Translator: \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" msgid "plugins.block.information.displayName" msgstr "Bloc d'informations" diff --git a/plugins/blocks/information/locale/fr_FR/locale.po b/plugins/blocks/information/locale/fr_FR/locale.po new file mode 100644 index 00000000000..20e83f6eb70 --- /dev/null +++ b/plugins/blocks/information/locale/fr_FR/locale.po @@ -0,0 +1,23 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-24 08:49+0000\n" +"Last-Translator: Rudy Hahusseau \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Bloc d'informations" + +msgid "plugins.block.information.description" +msgstr "Ce plugin offre un lien d'information dans l'encadré latéral." + +msgid "plugins.block.information.link" +msgstr "Informations" diff --git a/plugins/blocks/information/locale/gl/locale.po b/plugins/blocks/information/locale/gl/locale.po new file mode 100644 index 00000000000..8e82aa885b8 --- /dev/null +++ b/plugins/blocks/information/locale/gl/locale.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:22+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Bloque de información" + +msgid "plugins.block.information.description" +msgstr "" +"Este complemento proporciona unha ligazón de información na barra lateral." + +msgid "plugins.block.information.link" +msgstr "Información" diff --git a/plugins/blocks/information/locale/hr/locale.po b/plugins/blocks/information/locale/hr/locale.po new file mode 100644 index 00000000000..c5e3f8b3830 --- /dev/null +++ b/plugins/blocks/information/locale/hr/locale.po @@ -0,0 +1,23 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Blok informacija" + +msgid "plugins.block.information.description" +msgstr "" +"Ovaj dodatak prikazuje poveznicu na infomacije za čitatelje, autore i " +"knjižničare u rubnom izborniku." + +msgid "plugins.block.information.link" +msgstr "Informacije" diff --git a/plugins/blocks/information/locale/hr_HR/locale.po b/plugins/blocks/information/locale/hr_HR/locale.po deleted file mode 100644 index 2591ef7b0de..00000000000 --- a/plugins/blocks/information/locale/hr_HR/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Blok informacija" - -msgid "plugins.block.information.description" -msgstr "Ovaj dodatak prikazuje poveznicu na infomacije za čitatelje, autore i knjižničare u rubnom izborniku." - -msgid "plugins.block.information.link" -msgstr "Informacije" diff --git a/plugins/blocks/information/locale/hu/locale.po b/plugins/blocks/information/locale/hu/locale.po new file mode 100644 index 00000000000..ee4b42210da --- /dev/null +++ b/plugins/blocks/information/locale/hu/locale.po @@ -0,0 +1,22 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-02-18 15:26+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Információ blokk" + +msgid "plugins.block.information.description" +msgstr "Ez a bővítmény biztosítja az oldalsáv Információ blokkjának linkjeit." + +msgid "plugins.block.information.link" +msgstr "Információ" diff --git a/plugins/blocks/information/locale/it/locale.po b/plugins/blocks/information/locale/it/locale.po new file mode 100644 index 00000000000..4f2bda4460d --- /dev/null +++ b/plugins/blocks/information/locale/it/locale.po @@ -0,0 +1,23 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Modulo di informazioni" + +msgid "plugins.block.information.description" +msgstr "" +"Questo plugin inserisce nella barra laterale i link a informazioni sulla " +"rivista." + +msgid "plugins.block.information.link" +msgstr "Informazioni" diff --git a/plugins/blocks/information/locale/it_IT/locale.po b/plugins/blocks/information/locale/it_IT/locale.po deleted file mode 100644 index 47af26fff59..00000000000 --- a/plugins/blocks/information/locale/it_IT/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Modulo di informazioni" - -msgid "plugins.block.information.description" -msgstr "Questo plugin inserisce nella barra laterale i link a informazioni sulla rivista." - -msgid "plugins.block.information.link" -msgstr "Informazioni" diff --git a/plugins/blocks/information/locale/ja/locale.po b/plugins/blocks/information/locale/ja/locale.po new file mode 100644 index 00000000000..70619d72215 --- /dev/null +++ b/plugins/blocks/information/locale/ja/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "情報ブロック" + +msgid "plugins.block.information.description" +msgstr "サイドバーに情報リンクを付けます。" + +msgid "plugins.block.information.link" +msgstr "ご案内" diff --git a/plugins/blocks/information/locale/ja_JP/locale.po b/plugins/blocks/information/locale/ja_JP/locale.po deleted file mode 100644 index 58e55c7c63a..00000000000 --- a/plugins/blocks/information/locale/ja_JP/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "情報ブロック" - -msgid "plugins.block.information.description" -msgstr "サイドバーに情報リンクを付けます。" - -msgid "plugins.block.information.link" -msgstr "ご案内" diff --git a/plugins/blocks/information/locale/mk/locale.po b/plugins/blocks/information/locale/mk/locale.po new file mode 100644 index 00000000000..dbf6333ab0c --- /dev/null +++ b/plugins/blocks/information/locale/mk/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-04 22:32+0000\n" +"Last-Translator: Blagoja Grozdanovski \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Информативен Блок" + +msgid "plugins.block.information.description" +msgstr "Овој приклучок обезбедува странична информативна врска." + +msgid "plugins.block.information.link" +msgstr "Информација" diff --git a/plugins/blocks/information/locale/mk_MK/locale.po b/plugins/blocks/information/locale/mk_MK/locale.po deleted file mode 100644 index 650db0a15c0..00000000000 --- a/plugins/blocks/information/locale/mk_MK/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-04 22:32+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.information.link" -msgstr "Информација" - -msgid "plugins.block.information.description" -msgstr "Овој приклучок обезбедува странична информативна врска." - -msgid "plugins.block.information.displayName" -msgstr "Информативен Блок" diff --git a/plugins/blocks/information/locale/no_NO/locale.po b/plugins/blocks/information/locale/nb/locale.po similarity index 100% rename from plugins/blocks/information/locale/no_NO/locale.po rename to plugins/blocks/information/locale/nb/locale.po diff --git a/plugins/blocks/information/locale/nl/locale.po b/plugins/blocks/information/locale/nl/locale.po new file mode 100644 index 00000000000..322ff4fbf97 --- /dev/null +++ b/plugins/blocks/information/locale/nl/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Informatieblok" + +msgid "plugins.block.information.description" +msgstr "Deze plugin verzorgt de informatie-link in de sidebar." + +msgid "plugins.block.information.link" +msgstr "Informatie" diff --git a/plugins/blocks/information/locale/nl_NL/locale.po b/plugins/blocks/information/locale/nl_NL/locale.po deleted file mode 100644 index c2694b44dce..00000000000 --- a/plugins/blocks/information/locale/nl_NL/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:18+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:18+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Informatieblok" - -msgid "plugins.block.information.description" -msgstr "Deze plugin verzorgt de informatie-link in de sidebar." - -msgid "plugins.block.information.link" -msgstr "Informatie" diff --git a/plugins/blocks/information/locale/pl/locale.po b/plugins/blocks/information/locale/pl/locale.po new file mode 100644 index 00000000000..d5297a917a9 --- /dev/null +++ b/plugins/blocks/information/locale/pl/locale.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-09 17:40+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Dział informacji" + +msgid "plugins.block.information.description" +msgstr "Wtyczka zawiera link do pasku bocznego informacji." + +msgid "plugins.block.information.link" +msgstr "Informacje" diff --git a/plugins/blocks/information/locale/pl_PL/locale.po b/plugins/blocks/information/locale/pl_PL/locale.po deleted file mode 100644 index 925295bfbae..00000000000 --- a/plugins/blocks/information/locale/pl_PL/locale.po +++ /dev/null @@ -1,22 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-09 17:40+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.information.link" -msgstr "Informacje" - -msgid "plugins.block.information.description" -msgstr "Wtyczka zawiera link do pasku bocznego informacji." - -msgid "plugins.block.information.displayName" -msgstr "Dział informacji" diff --git a/plugins/blocks/information/locale/pt_BR/locale.po b/plugins/blocks/information/locale/pt_BR/locale.po index 1ddb0200c83..2252b4862ac 100644 --- a/plugins/blocks/information/locale/pt_BR/locale.po +++ b/plugins/blocks/information/locale/pt_BR/locale.po @@ -2,20 +2,21 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T12:01:00-07:00\n" +"PO-Revision-Date: 2019-09-30T12:01:00-07:00\n" "Last-Translator: \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T12:01:00-07:00\n" -"PO-Revision-Date: 2019-09-30T12:01:00-07:00\n" -"Language: \n" msgid "plugins.block.information.displayName" msgstr "Informações por público" msgid "plugins.block.information.description" -msgstr "Este plugin oferece links para informações por público-alvo na barra lateral." +msgstr "" +"Este plugin oferece links para informações por público-alvo na barra lateral." msgid "plugins.block.information.link" msgstr "Informações" diff --git a/plugins/blocks/information/locale/pt_PT/locale.po b/plugins/blocks/information/locale/pt_PT/locale.po index ac1ceae98e4..408c2835cf5 100644 --- a/plugins/blocks/information/locale/pt_PT/locale.po +++ b/plugins/blocks/information/locale/pt_PT/locale.po @@ -11,11 +11,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" -msgid "plugins.block.information.link" -msgstr "Informações" +msgid "plugins.block.information.displayName" +msgstr "Bloco de Informações" msgid "plugins.block.information.description" msgstr "Este plugin fornece um link com informações na barra lateral." -msgid "plugins.block.information.displayName" -msgstr "Bloco de Informações" +msgid "plugins.block.information.link" +msgstr "Informações" diff --git a/plugins/blocks/information/locale/ro/locale.po b/plugins/blocks/information/locale/ro/locale.po new file mode 100644 index 00000000000..852629b189a --- /dev/null +++ b/plugins/blocks/information/locale/ro/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Zona informaţiilor" + +msgid "plugins.block.information.description" +msgstr "Acest modul afişează în bară un link către informaţii." + +msgid "plugins.block.information.link" +msgstr "Informaţie" diff --git a/plugins/blocks/information/locale/ro_RO/locale.po b/plugins/blocks/information/locale/ro_RO/locale.po deleted file mode 100644 index d0a5ce613c9..00000000000 --- a/plugins/blocks/information/locale/ro_RO/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Zona informaţiilor" - -msgid "plugins.block.information.description" -msgstr "Acest modul afişează în bară un link către informaţii." - -msgid "plugins.block.information.link" -msgstr "Informaţie" diff --git a/plugins/blocks/information/locale/ru/locale.po b/plugins/blocks/information/locale/ru/locale.po new file mode 100644 index 00000000000..dff7228d8d2 --- /dev/null +++ b/plugins/blocks/information/locale/ru/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Информационный блок" + +msgid "plugins.block.information.description" +msgstr "Добавляет к боковой панели ссылку на информацию." + +msgid "plugins.block.information.link" +msgstr "Информация" diff --git a/plugins/blocks/information/locale/ru_RU/locale.po b/plugins/blocks/information/locale/ru_RU/locale.po deleted file mode 100644 index a8e52b2fdb6..00000000000 --- a/plugins/blocks/information/locale/ru_RU/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Информационный блок" - -msgid "plugins.block.information.description" -msgstr "Добавляет к боковой панели ссылку на информацию." - -msgid "plugins.block.information.link" -msgstr "Информация" diff --git a/plugins/blocks/information/locale/sl/locale.po b/plugins/blocks/information/locale/sl/locale.po new file mode 100644 index 00000000000..de67d1da939 --- /dev/null +++ b/plugins/blocks/information/locale/sl/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Blok informacij" + +msgid "plugins.block.information.description" +msgstr "Vtičnik omogoča povezavo na informacije v stranski orodni vrstici." + +msgid "plugins.block.information.link" +msgstr "Informacije" diff --git a/plugins/blocks/information/locale/sl_SI/locale.po b/plugins/blocks/information/locale/sl_SI/locale.po deleted file mode 100644 index fc909faec64..00000000000 --- a/plugins/blocks/information/locale/sl_SI/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Blok informacij" - -msgid "plugins.block.information.description" -msgstr "Vtičnik omogoča povezavo na informacije v stranski orodni vrstici." - -msgid "plugins.block.information.link" -msgstr "Informacije" diff --git a/plugins/blocks/information/locale/sv/locale.po b/plugins/blocks/information/locale/sv/locale.po new file mode 100644 index 00000000000..b49572bf529 --- /dev/null +++ b/plugins/blocks/information/locale/sv/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-08 03:32+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Informationsblock" + +msgid "plugins.block.information.description" +msgstr "Denna plugin aktiverar informationslänkar i sidomenyn." + +msgid "plugins.block.information.link" +msgstr "Information" diff --git a/plugins/blocks/information/locale/sv_SE/locale.po b/plugins/blocks/information/locale/sv_SE/locale.po deleted file mode 100644 index 80b8bd018f7..00000000000 --- a/plugins/blocks/information/locale/sv_SE/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-08 03:32+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.information.link" -msgstr "Information" - -msgid "plugins.block.information.description" -msgstr "Denna plugin aktiverar informationslänkar i sidomenyn." - -msgid "plugins.block.information.displayName" -msgstr "Informationsblock" diff --git a/plugins/blocks/information/locale/tr/locale.po b/plugins/blocks/information/locale/tr/locale.po new file mode 100644 index 00000000000..1c6e3a40378 --- /dev/null +++ b/plugins/blocks/information/locale/tr/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 09:32+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Bilgi Sütunu" + +msgid "plugins.block.information.description" +msgstr "Bu eklenti yan sütuna bilgi bağlantıları ekler." + +msgid "plugins.block.information.link" +msgstr "Bilgi" diff --git a/plugins/blocks/information/locale/uk/locale.po b/plugins/blocks/information/locale/uk/locale.po new file mode 100644 index 00000000000..8500a7e4752 --- /dev/null +++ b/plugins/blocks/information/locale/uk/locale.po @@ -0,0 +1,26 @@ +# Petro Bilous , 2022. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" +"PO-Revision-Date: 2022-08-06 07:25+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk_UA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.information.displayName" +msgstr "Блок інформації" + +msgid "plugins.block.information.description" +msgstr "Цей плагін створює інформаційне посилання на бічній панелі." + +msgid "plugins.block.information.link" +msgstr "Інформація" diff --git a/plugins/blocks/information/locale/uk_UA/locale.po b/plugins/blocks/information/locale/uk_UA/locale.po deleted file mode 100644 index 0028be526b8..00000000000 --- a/plugins/blocks/information/locale/uk_UA/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Блок інформації" - -msgid "plugins.block.information.description" -msgstr "Цей модуль забезпечує панель з інформаційним посиланням." - -msgid "plugins.block.information.link" -msgstr "Інформація" diff --git a/plugins/blocks/information/locale/vi/locale.po b/plugins/blocks/information/locale/vi/locale.po new file mode 100644 index 00000000000..a72a5cd0550 --- /dev/null +++ b/plugins/blocks/information/locale/vi/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.information.displayName" +msgstr "Khối thông tin" + +msgid "plugins.block.information.description" +msgstr "Công cụ này tạo ra liên kết thông tin ở cột bên" + +msgid "plugins.block.information.link" +msgstr "Thông tin" diff --git a/plugins/blocks/information/locale/vi_VN/locale.po b/plugins/blocks/information/locale/vi_VN/locale.po deleted file mode 100644 index 91564f0ce92..00000000000 --- a/plugins/blocks/information/locale/vi_VN/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" -"Language: \n" - -msgid "plugins.block.information.displayName" -msgstr "Khối thông tin" - -msgid "plugins.block.information.description" -msgstr "Công cụ này tạo ra liên kết thông tin ở cột bên" - -msgid "plugins.block.information.link" -msgstr "Thông tin" diff --git a/plugins/blocks/information/locale/zh_CN/locale.po b/plugins/blocks/information/locale/zh_CN/locale.po index 844ad9d5ba3..075611eb256 100644 --- a/plugins/blocks/information/locale/zh_CN/locale.po +++ b/plugins/blocks/information/locale/zh_CN/locale.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" "Last-Translator: \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:19+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:19+00:00\n" -"Language: \n" msgid "plugins.block.information.displayName" msgstr "消息单元" diff --git a/plugins/blocks/information/templates/block.tpl b/plugins/blocks/information/templates/block.tpl index 2e14c989728..f31471573ca 100644 --- a/plugins/blocks/information/templates/block.tpl +++ b/plugins/blocks/information/templates/block.tpl @@ -18,21 +18,21 @@
              {if !empty($forReaders)}
            • - + {translate key="navigation.infoForReaders"}
            • {/if} {if !empty($forAuthors)}
            • - + {translate key="navigation.infoForAuthors"}
            • {/if} {if !empty($forLibrarians)}
            • - + {translate key="navigation.infoForLibrarians"}
            • diff --git a/plugins/blocks/languageToggle/LanguageToggleBlockPlugin.inc.php b/plugins/blocks/languageToggle/LanguageToggleBlockPlugin.inc.php deleted file mode 100644 index 42015d9ee99..00000000000 --- a/plugins/blocks/languageToggle/LanguageToggleBlockPlugin.inc.php +++ /dev/null @@ -1,83 +0,0 @@ -getPluginPath() . '/settings.xml'; - } - - /** - * Install default settings on press creation. - * @return string - */ - function getContextSpecificPluginSettingsFile() { - return $this->getPluginPath() . '/settings.xml'; - } - - /** - * Get the display name of this plugin. - * @return String - */ - function getDisplayName() { - return __('plugins.block.languageToggle.displayName'); - } - - /** - * Get a description of the plugin. - */ - function getDescription() { - return __('plugins.block.languageToggle.description'); - } - - /** - * @copydoc BlockPlugin::getContents() - */ - function getContents($templateMgr, $request = null) { - if (!defined('SESSION_DISABLE_INIT')) { - $press = $request->getPress(); - if (isset($press)) { - $locales = $press->getSupportedLocaleNames(); - - } else { - $site = $request->getSite(); - $locales = $site->getSupportedLocaleNames(); - } - } else { - $locales =& AppLocale::getAllLocales(); - if (isset($_SERVER['HTTP_REFERER'])) { - $templateMgr->assign('languageToggleNoUser', true); - $templateMgr->assign('referrerUrl', $_SERVER['HTTP_REFERER']); - } else { - unset($locales); // Disable; we're not sure what URL to use - } - } - - if (isset($locales) && count($locales) > 1) { - $templateMgr->assign('enableLanguageToggle', true); - $templateMgr->assign('languageToggleLocales', $locales); - } - - return parent::getContents($templateMgr); - } -} diff --git a/plugins/blocks/languageToggle/LanguageToggleBlockPlugin.php b/plugins/blocks/languageToggle/LanguageToggleBlockPlugin.php new file mode 100644 index 00000000000..ec04fd43e6a --- /dev/null +++ b/plugins/blocks/languageToggle/LanguageToggleBlockPlugin.php @@ -0,0 +1,101 @@ +getPluginPath() . '/settings.xml'; + } + + /** + * Install default settings on press creation. + * + * @return string + */ + public function getContextSpecificPluginSettingsFile() + { + return $this->getPluginPath() . '/settings.xml'; + } + + /** + * Get the display name of this plugin. + * + * @return string + */ + public function getDisplayName() + { + return __('plugins.block.languageToggle.displayName'); + } + + /** + * Get a description of the plugin. + */ + public function getDescription() + { + return __('plugins.block.languageToggle.description'); + } + + /** + * @copydoc BlockPlugin::getContents() + * + * @param null|mixed $request + */ + public function getContents($templateMgr, $request = null) + { + $locales = null; + + if (!SessionManager::isDisabled()) { + $request ??= Application::get()->getRequest(); + $context = $request->getContext(); + $locales = Locale::getFormattedDisplayNames( + isset($context) + ? $context->getSupportedLocales() + : $request->getSite()->getSupportedLocales(), + Locale::getLocales(), + LocaleMetadata::LANGUAGE_LOCALE_ONLY + ); + } else { + if (isset($_SERVER['HTTP_REFERER'])) { + $locales = Locale::getFormattedDisplayNames(null, null, LocaleMetadata::LANGUAGE_LOCALE_ONLY); + $templateMgr->assign('languageToggleNoUser', true); + $templateMgr->assign('referrerUrl', $_SERVER['HTTP_REFERER']); + } + } + + if (isset($locales) && count($locales) > 1) { + $templateMgr->assign('enableLanguageToggle', true); + $templateMgr->assign('languageToggleLocales', $locales); + } + + return parent::getContents($templateMgr); + } +} + +if (!PKP_STRICT_MODE) { + class_alias('\APP\plugins\blocks\languageToggle\LanguageToggleBlockPlugin', '\LanguageToggleBlockPlugin'); +} diff --git a/plugins/blocks/languageToggle/index.php b/plugins/blocks/languageToggle/index.php index edcd64cac27..6888b6ac277 100644 --- a/plugins/blocks/languageToggle/index.php +++ b/plugins/blocks/languageToggle/index.php @@ -1,23 +1,14 @@ , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-08 10:06+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Блог за смяна на език" + +msgid "plugins.block.languageToggle.description" +msgstr "Този плъгин предоставя превключвателя на езика на страничната лента." diff --git a/plugins/blocks/languageToggle/locale/ca/locale.po b/plugins/blocks/languageToggle/locale/ca/locale.po new file mode 100644 index 00000000000..4195001f60d --- /dev/null +++ b/plugins/blocks/languageToggle/locale/ca/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Bloc de commutació de llengües" + +msgid "plugins.block.languageToggle.description" +msgstr "Aquest mòdul proporciona un commutador de llengües a la barra lateral." diff --git a/plugins/blocks/languageToggle/locale/ca_ES/locale.po b/plugins/blocks/languageToggle/locale/ca_ES/locale.po deleted file mode 100644 index f7370c7aa5a..00000000000 --- a/plugins/blocks/languageToggle/locale/ca_ES/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "Bloc de commutació de llengües" - -msgid "plugins.block.languageToggle.description" -msgstr "Aquest mòdul proporciona un commutador de llengües a la barra lateral." diff --git a/plugins/blocks/languageToggle/locale/cs/locale.po b/plugins/blocks/languageToggle/locale/cs/locale.po new file mode 100644 index 00000000000..d1de4bbe980 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/cs/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-05 08:43+0000\n" +"Last-Translator: Radek Gomola \n" +"Language-Team: Czech \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Blok pro přepínání jazyků" + +msgid "plugins.block.languageToggle.description" +msgstr "Tento plugin přidá do postranního panelu přepínač jazyků." diff --git a/plugins/blocks/languageToggle/locale/cs_CZ/locale.po b/plugins/blocks/languageToggle/locale/cs_CZ/locale.po deleted file mode 100644 index 7e66c12ff83..00000000000 --- a/plugins/blocks/languageToggle/locale/cs_CZ/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-05 08:43+0000\n" -"Last-Translator: Radek Gomola \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.languageToggle.description" -msgstr "Tento plugin přidá do postranního panelu přepínač jazyků." - -msgid "plugins.block.languageToggle.displayName" -msgstr "Blok pro přepínání jazyků" diff --git a/plugins/blocks/languageToggle/locale/da/locale.po b/plugins/blocks/languageToggle/locale/da/locale.po new file mode 100644 index 00000000000..ba2d847dff6 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/da/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-07 10:35+0000\n" +"Last-Translator: Niels Erik Frederiksen \n" +"Language-Team: Danish \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Sprogvalgsblok" + +msgid "plugins.block.languageToggle.description" +msgstr "Denne plugin indsætter en sprogvalgsblok i sidemenuen." diff --git a/plugins/blocks/languageToggle/locale/da_DK/locale.po b/plugins/blocks/languageToggle/locale/da_DK/locale.po deleted file mode 100644 index 808029bf414..00000000000 --- a/plugins/blocks/languageToggle/locale/da_DK/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-07 10:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.languageToggle.description" -msgstr "Denne plugin indsætter en sprogvalgsblok i sidemenuen." - -msgid "plugins.block.languageToggle.displayName" -msgstr "Sprogvalgsblok" diff --git a/plugins/blocks/languageToggle/locale/da_DK/locale.xml b/plugins/blocks/languageToggle/locale/da_DK/locale.xml deleted file mode 100644 index d1f8f8bdbd7..00000000000 --- a/plugins/blocks/languageToggle/locale/da_DK/locale.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Sprogvælger-blok - Denne plugin indsætter en sprogvælger-blok i sidemenuen. - diff --git a/plugins/blocks/languageToggle/locale/de/locale.po b/plugins/blocks/languageToggle/locale/de/locale.po new file mode 100644 index 00000000000..7b9a30795f8 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/de/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Sprachwechsel-Block" + +msgid "plugins.block.languageToggle.description" +msgstr "" +"Dieses Plugin stellt die Sprachwechselmöglichkeit in der Sidebar bereit." diff --git a/plugins/blocks/languageToggle/locale/de_DE/locale.po b/plugins/blocks/languageToggle/locale/de_DE/locale.po deleted file mode 100644 index d978da32ba7..00000000000 --- a/plugins/blocks/languageToggle/locale/de_DE/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "Sprachwechsel-Block" - -msgid "plugins.block.languageToggle.description" -msgstr "Dieses Plugin stellt die Sprachwechselmöglichkeit in der Sidebar bereit." diff --git a/plugins/blocks/languageToggle/locale/el/locale.po b/plugins/blocks/languageToggle/locale/el/locale.po new file mode 100644 index 00000000000..829750454a7 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/el/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Block Αλλαγής Γλώσσας" + +msgid "plugins.block.languageToggle.description" +msgstr "Το plugin αυτό παρέχει ένα εργαλείο Αλλαγής γλώσσας στην πλαϊνή μπάρα." diff --git a/plugins/blocks/languageToggle/locale/el_GR/locale.po b/plugins/blocks/languageToggle/locale/el_GR/locale.po deleted file mode 100644 index 6b1410abcb7..00000000000 --- a/plugins/blocks/languageToggle/locale/el_GR/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "Block Αλλαγής Γλώσσας" - -msgid "plugins.block.languageToggle.description" -msgstr "Το plugin αυτό παρέχει ένα εργαλείο Αλλαγής γλώσσας στην πλαϊνή μπάρα." diff --git a/plugins/blocks/languageToggle/locale/en/locale.po b/plugins/blocks/languageToggle/locale/en/locale.po new file mode 100644 index 00000000000..ade2401df94 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/en/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Language Toggle Block" + +msgid "plugins.block.languageToggle.description" +msgstr "This plugin provides the sidebar language toggler." diff --git a/plugins/blocks/languageToggle/locale/en_US/locale.po b/plugins/blocks/languageToggle/locale/en_US/locale.po deleted file mode 100644 index 2883ab8b0a6..00000000000 --- a/plugins/blocks/languageToggle/locale/en_US/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "Language Toggle Block" - -msgid "plugins.block.languageToggle.description" -msgstr "This plugin provides the sidebar language toggler." diff --git a/plugins/blocks/languageToggle/locale/es/locale.po b/plugins/blocks/languageToggle/locale/es/locale.po new file mode 100644 index 00000000000..f4e5a350fbf --- /dev/null +++ b/plugins/blocks/languageToggle/locale/es/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Bloque de conmutación lenguajes" + +msgid "plugins.block.languageToggle.description" +msgstr "" +"Este plugin ofrece la opción de conmutar lenguajes en la barra lateral." diff --git a/plugins/blocks/languageToggle/locale/es_ES/locale.po b/plugins/blocks/languageToggle/locale/es_ES/locale.po deleted file mode 100644 index 613203c1e84..00000000000 --- a/plugins/blocks/languageToggle/locale/es_ES/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "Bloque de conmutación lenguajes" - -msgid "plugins.block.languageToggle.description" -msgstr "Este plugin ofrece la opción de conmutar lenguajes en la barra lateral." diff --git a/plugins/blocks/languageToggle/locale/fa/locale.po b/plugins/blocks/languageToggle/locale/fa/locale.po new file mode 100644 index 00000000000..6965afb8993 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/fa/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "بلوک انتخاب زبان" + +msgid "plugins.block.languageToggle.description" +msgstr "این پلاگین بلوک حاشیه ای برای انتخاب زبان ایجاد میکند." diff --git a/plugins/blocks/languageToggle/locale/fa_IR/locale.po b/plugins/blocks/languageToggle/locale/fa_IR/locale.po deleted file mode 100644 index d51054c8810..00000000000 --- a/plugins/blocks/languageToggle/locale/fa_IR/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "بلوک انتخاب زبان" - -msgid "plugins.block.languageToggle.description" -msgstr "این پلاگین بلوک حاشیه ای برای انتخاب زبان ایجاد میکند." diff --git a/plugins/blocks/languageToggle/locale/fi/locale.po b/plugins/blocks/languageToggle/locale/fi/locale.po new file mode 100644 index 00000000000..83a36b59873 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/fi/locale.po @@ -0,0 +1,19 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-01 06:49+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Kielivalintalohko" + +msgid "plugins.block.languageToggle.description" +msgstr "Tämä lohkolisäosa näyttää linkit julkaisun kieliversioihin." diff --git a/plugins/blocks/languageToggle/locale/fi_FI/locale.po b/plugins/blocks/languageToggle/locale/fi_FI/locale.po deleted file mode 100644 index 462c29829a2..00000000000 --- a/plugins/blocks/languageToggle/locale/fi_FI/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-18 16:48+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.languageToggle.description" -msgstr "Tämä lohkolisäosa näyttää linkit lehden kieliversioihin." - -msgid "plugins.block.languageToggle.displayName" -msgstr "Kielivalintalohko" diff --git a/plugins/blocks/languageToggle/locale/fr_CA/locale.po b/plugins/blocks/languageToggle/locale/fr_CA/locale.po index b1f44a9b91e..3ef1a3e0747 100644 --- a/plugins/blocks/languageToggle/locale/fr_CA/locale.po +++ b/plugins/blocks/languageToggle/locale/fr_CA/locale.po @@ -2,17 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" "Last-Translator: \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:51-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:51-07:00\n" -"Language: \n" msgid "plugins.block.languageToggle.displayName" msgstr "Bloc de changement de langue" msgid "plugins.block.languageToggle.description" -msgstr "Ce plugiciel fournit un mécanisme de changement de langue dans l’encadré latéral." +msgstr "" +"Ce plugiciel fournit un mécanisme de changement de langue dans l’encadré " +"latéral." diff --git a/plugins/blocks/languageToggle/locale/fr_FR/locale.po b/plugins/blocks/languageToggle/locale/fr_FR/locale.po new file mode 100644 index 00000000000..eb77f07e6c5 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/fr_FR/locale.po @@ -0,0 +1,21 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-24 08:49+0000\n" +"Last-Translator: Rudy Hahusseau \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Bloc de changement de langue" + +msgid "plugins.block.languageToggle.description" +msgstr "" +"Ce plugin fournit un outil de changement de langue dans l’encadré latéral." diff --git a/plugins/blocks/languageToggle/locale/gd_GB/locale.po b/plugins/blocks/languageToggle/locale/gd/locale.po similarity index 100% rename from plugins/blocks/languageToggle/locale/gd_GB/locale.po rename to plugins/blocks/languageToggle/locale/gd/locale.po diff --git a/plugins/blocks/languageToggle/locale/gl/locale.po b/plugins/blocks/languageToggle/locale/gl/locale.po new file mode 100644 index 00000000000..e4d5b63a2df --- /dev/null +++ b/plugins/blocks/languageToggle/locale/gl/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:22+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Bloque de alternancia de idioma" + +msgid "plugins.block.languageToggle.description" +msgstr "" +"Este complemento fornece a opción para cambiar o idioma na barra lateral." diff --git a/plugins/blocks/languageToggle/locale/hr/locale.po b/plugins/blocks/languageToggle/locale/hr/locale.po new file mode 100644 index 00000000000..32abd0455fd --- /dev/null +++ b/plugins/blocks/languageToggle/locale/hr/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Blok za izbor jezika" + +msgid "plugins.block.languageToggle.description" +msgstr "Ovaj dodatak omogućuje odabir jezika u rubnom izborniku." diff --git a/plugins/blocks/languageToggle/locale/hr_HR/locale.po b/plugins/blocks/languageToggle/locale/hr_HR/locale.po deleted file mode 100644 index 32f2e228218..00000000000 --- a/plugins/blocks/languageToggle/locale/hr_HR/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "Blok za izbor jezika" - -msgid "plugins.block.languageToggle.description" -msgstr "Ovaj dodatak omogućuje odabir jezika u rubnom izborniku." diff --git a/plugins/blocks/languageToggle/locale/hu/locale.po b/plugins/blocks/languageToggle/locale/hu/locale.po new file mode 100644 index 00000000000..e505a342da1 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/hu/locale.po @@ -0,0 +1,19 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-02-18 15:26+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Nyelvválasztó blokk" + +msgid "plugins.block.languageToggle.description" +msgstr "Ez a bővítmény biztosítja az oldalsáv nyelvválasztó blokkját." diff --git a/plugins/blocks/languageToggle/locale/it/locale.po b/plugins/blocks/languageToggle/locale/it/locale.po new file mode 100644 index 00000000000..fadbacaa480 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/it/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Modulo del menu per scegliere la lingua" + +msgid "plugins.block.languageToggle.description" +msgstr "" +"Questo plugin inserisce nel menu laterale un menu a tendina per scegliere la " +"lingua." diff --git a/plugins/blocks/languageToggle/locale/it_IT/locale.po b/plugins/blocks/languageToggle/locale/it_IT/locale.po deleted file mode 100644 index 2ce1d520816..00000000000 --- a/plugins/blocks/languageToggle/locale/it_IT/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "Modulo del menu per scegliere la lingua" - -msgid "plugins.block.languageToggle.description" -msgstr "Questo plugin inserisce nel menu laterale un menu a tendina per scegliere la lingua." diff --git a/plugins/blocks/languageToggle/locale/ja/locale.po b/plugins/blocks/languageToggle/locale/ja/locale.po new file mode 100644 index 00000000000..16ed8bc07de --- /dev/null +++ b/plugins/blocks/languageToggle/locale/ja/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "言語切り替えブロック" + +msgid "plugins.block.languageToggle.description" +msgstr "このプラグインはサイドバーに言語切り替えを付けます。" diff --git a/plugins/blocks/languageToggle/locale/ja_JP/locale.po b/plugins/blocks/languageToggle/locale/ja_JP/locale.po deleted file mode 100644 index 17341fa6b5c..00000000000 --- a/plugins/blocks/languageToggle/locale/ja_JP/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:20+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:20+00:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "言語切り替えブロック" - -msgid "plugins.block.languageToggle.description" -msgstr "このプラグインはサイドバーに言語切り替えを付けます。" diff --git a/plugins/blocks/languageToggle/locale/mk/locale.po b/plugins/blocks/languageToggle/locale/mk/locale.po new file mode 100644 index 00000000000..94821b03c68 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/mk/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-04 22:32+0000\n" +"Last-Translator: Blagoja Grozdanovski \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Блок за Промена на Јазик" + +msgid "plugins.block.languageToggle.description" +msgstr "Овој приклучок обезбедува странична лента за промена на јазик." diff --git a/plugins/blocks/languageToggle/locale/mk_MK/locale.po b/plugins/blocks/languageToggle/locale/mk_MK/locale.po deleted file mode 100644 index 80864b79744..00000000000 --- a/plugins/blocks/languageToggle/locale/mk_MK/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-04 22:32+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.languageToggle.description" -msgstr "Овој приклучок обезбедува странична лента за промена на јазик." - -msgid "plugins.block.languageToggle.displayName" -msgstr "Блок за Промена на Јазик" diff --git a/plugins/blocks/languageToggle/locale/nb/locale.po b/plugins/blocks/languageToggle/locale/nb/locale.po new file mode 100644 index 00000000000..5f62954996f --- /dev/null +++ b/plugins/blocks/languageToggle/locale/nb/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-20 14:50+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Språkvekslingsblokk" + +msgid "plugins.block.languageToggle.description" +msgstr "Dette programtillegget oppretter en språkveksler i sidemenyen." diff --git a/plugins/blocks/languageToggle/locale/nb_NO/locale.po b/plugins/blocks/languageToggle/locale/nb_NO/locale.po deleted file mode 100644 index d2da27cff33..00000000000 --- a/plugins/blocks/languageToggle/locale/nb_NO/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-20 14:50+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.languageToggle.description" -msgstr "Dette programtillegget oppretter en språkveksler i sidemenyen." - -msgid "plugins.block.languageToggle.displayName" -msgstr "Språkvekslingsblokk" diff --git a/plugins/blocks/languageToggle/locale/pl/locale.po b/plugins/blocks/languageToggle/locale/pl/locale.po new file mode 100644 index 00000000000..02c3b0f78e5 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/pl/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-09 17:40+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Dział przełączania języka" + +msgid "plugins.block.languageToggle.description" +msgstr "Wtyczka zawiera pasek boczny przełącznika języka." diff --git a/plugins/blocks/languageToggle/locale/pl_PL/locale.po b/plugins/blocks/languageToggle/locale/pl_PL/locale.po deleted file mode 100644 index d5dbd589bc5..00000000000 --- a/plugins/blocks/languageToggle/locale/pl_PL/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-09 17:40+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.languageToggle.description" -msgstr "Wtyczka zawiera pasek boczny przełącznika języka." - -msgid "plugins.block.languageToggle.displayName" -msgstr "Dział przełączania języka" diff --git a/plugins/blocks/languageToggle/locale/pt_BR/locale.po b/plugins/blocks/languageToggle/locale/pt_BR/locale.po index 2758e4c7d7d..e544779ec14 100644 --- a/plugins/blocks/languageToggle/locale/pt_BR/locale.po +++ b/plugins/blocks/languageToggle/locale/pt_BR/locale.po @@ -2,17 +2,18 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T12:01:00-07:00\n" +"PO-Revision-Date: 2019-09-30T12:01:00-07:00\n" "Last-Translator: \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T12:01:00-07:00\n" -"PO-Revision-Date: 2019-09-30T12:01:00-07:00\n" -"Language: \n" msgid "plugins.block.languageToggle.displayName" msgstr "Bloco Alterar Idioma" msgid "plugins.block.languageToggle.description" -msgstr "Este plugin oferece a ferramenta de alteração de idiomas na barra lateral." +msgstr "" +"Este plugin oferece a ferramenta de alteração de idiomas na barra lateral." diff --git a/plugins/blocks/languageToggle/locale/pt_PT/locale.po b/plugins/blocks/languageToggle/locale/pt_PT/locale.po index eb24e5a8084..472d9003f54 100644 --- a/plugins/blocks/languageToggle/locale/pt_PT/locale.po +++ b/plugins/blocks/languageToggle/locale/pt_PT/locale.po @@ -11,8 +11,8 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" -msgid "plugins.block.languageToggle.description" -msgstr "O plugin fornece a ferramenta de alteração de idioma na barra lateral." - msgid "plugins.block.languageToggle.displayName" msgstr "Bloco de Alteração de Idioma" + +msgid "plugins.block.languageToggle.description" +msgstr "O plugin fornece a ferramenta de alteração de idioma na barra lateral." diff --git a/plugins/blocks/languageToggle/locale/ro/locale.po b/plugins/blocks/languageToggle/locale/ro/locale.po new file mode 100644 index 00000000000..feb3697d130 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/ro/locale.po @@ -0,0 +1,20 @@ +# Elena-Ionela Buhalo , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-03 19:18+0000\n" +"Last-Translator: Elena-Ionela Buhalo \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Bloc de comutare de limbi" + +msgid "plugins.block.languageToggle.description" +msgstr "Acest plugin oferă opțiunea de comutare a limbilor în bara laterală." diff --git a/plugins/blocks/languageToggle/locale/ru/locale.po b/plugins/blocks/languageToggle/locale/ru/locale.po new file mode 100644 index 00000000000..355173749fb --- /dev/null +++ b/plugins/blocks/languageToggle/locale/ru/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-04 09:36+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Блок переключения Языка" + +msgid "plugins.block.languageToggle.description" +msgstr "Этот модуль представляет переключатель языка на боковой панели." diff --git a/plugins/blocks/languageToggle/locale/ru_RU/locale.po b/plugins/blocks/languageToggle/locale/ru_RU/locale.po deleted file mode 100644 index 3e7ecc3cae8..00000000000 --- a/plugins/blocks/languageToggle/locale/ru_RU/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-04 09:36+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.languageToggle.description" -msgstr "Этот модуль представляет переключатель языка на боковой панели." - -msgid "plugins.block.languageToggle.displayName" -msgstr "Блок переключения Языка" diff --git a/plugins/blocks/languageToggle/locale/sl/locale.po b/plugins/blocks/languageToggle/locale/sl/locale.po new file mode 100644 index 00000000000..d29f7f62955 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/sl/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:21+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:21+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Blok za preklapljanje med jeziki" + +msgid "plugins.block.languageToggle.description" +msgstr "" +"Vtičnik omogoča možnost preklapljanja med jeziki v stranski orodni vrstici." diff --git a/plugins/blocks/languageToggle/locale/sl_SI/locale.po b/plugins/blocks/languageToggle/locale/sl_SI/locale.po deleted file mode 100644 index ec5ce4eeb34..00000000000 --- a/plugins/blocks/languageToggle/locale/sl_SI/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:21+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:21+00:00\n" -"Language: \n" - -msgid "plugins.block.languageToggle.displayName" -msgstr "Blok za preklapljanje med jeziki" - -msgid "plugins.block.languageToggle.description" -msgstr "Vtičnik omogoča možnost preklapljanja med jeziki v stranski orodni vrstici." diff --git a/plugins/blocks/languageToggle/locale/sv/locale.po b/plugins/blocks/languageToggle/locale/sv/locale.po new file mode 100644 index 00000000000..fdd583f3987 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/sv/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-24 16:02+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Språkväljarblock" + +msgid "plugins.block.languageToggle.description" +msgstr "Det här tillägget lägger till ett språkväljarblock i sidomenyn." diff --git a/plugins/blocks/languageToggle/locale/sv_SE/locale.po b/plugins/blocks/languageToggle/locale/sv_SE/locale.po deleted file mode 100644 index f3591483988..00000000000 --- a/plugins/blocks/languageToggle/locale/sv_SE/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-01-24 16:02+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.languageToggle.description" -msgstr "Det här tillägget lägger till ett språkväljarblock i sidomenyn." - -msgid "plugins.block.languageToggle.displayName" -msgstr "Språkväljarblock" diff --git a/plugins/blocks/languageToggle/locale/tr/locale.po b/plugins/blocks/languageToggle/locale/tr/locale.po new file mode 100644 index 00000000000..73bb7bc5831 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/tr/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 09:32+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Dil Değiştirme Sütunu" + +msgid "plugins.block.languageToggle.description" +msgstr "Bu eklenti yan sütuna dil değiştirme bağlantısı ekler." diff --git a/plugins/blocks/languageToggle/locale/uk/locale.po b/plugins/blocks/languageToggle/locale/uk/locale.po new file mode 100644 index 00000000000..4245aff16d9 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/uk/locale.po @@ -0,0 +1,21 @@ +# Petro Bilous , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-16 18:38+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk_UA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "Блок перемикача мов" + +msgid "plugins.block.languageToggle.description" +msgstr "" +"Цей плагін дає можливість розміщення на бічній панелі блоку перемикача мов." diff --git a/plugins/blocks/languageToggle/locale/uk_UA/locale.po b/plugins/blocks/languageToggle/locale/uk_UA/locale.po deleted file mode 100644 index 14659cb812e..00000000000 --- a/plugins/blocks/languageToggle/locale/uk_UA/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-22 14:38+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.block.languageToggle.description" -msgstr "" -"Цей плагін дає можливість розміщення у бічній панелі Блоку Перемикача Мов." - -msgid "plugins.block.languageToggle.displayName" -msgstr "Блок Перемикача Мов" diff --git a/plugins/blocks/languageToggle/locale/vi/locale.po b/plugins/blocks/languageToggle/locale/vi/locale.po new file mode 100644 index 00000000000..a4c3caa4896 --- /dev/null +++ b/plugins/blocks/languageToggle/locale/vi/locale.po @@ -0,0 +1,12 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "plugins.block.languageToggle.displayName" +msgstr "" + +msgid "plugins.block.languageToggle.description" +msgstr "" diff --git a/plugins/blocks/languageToggle/locale/vi_VN/locale.po b/plugins/blocks/languageToggle/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/blocks/languageToggle/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/blocks/languageToggle/templates/block.tpl b/plugins/blocks/languageToggle/templates/block.tpl index 5067fe28bf9..4597ee9c1ce 100644 --- a/plugins/blocks/languageToggle/templates/block.tpl +++ b/plugins/blocks/languageToggle/templates/block.tpl @@ -21,7 +21,7 @@
                {foreach from=$languageToggleLocales item=localeName key=localeKey}
              • - + {$localeName}
              • diff --git a/plugins/generic/acron b/plugins/generic/acron new file mode 160000 index 00000000000..e21bde89186 --- /dev/null +++ b/plugins/generic/acron @@ -0,0 +1 @@ +Subproject commit e21bde891868a254999cefe9cd7ef984868bcb46 diff --git a/plugins/generic/acron/AcronPlugin.inc.php b/plugins/generic/acron/AcronPlugin.inc.php deleted file mode 100644 index 282dc088e6b..00000000000 --- a/plugins/generic/acron/AcronPlugin.inc.php +++ /dev/null @@ -1,24 +0,0 @@ -Registrirajte se za brezplačna poglobljena analitična poročila in boljše razumevanje socialnega prometa vašega spletišča." - -msgid "plugins.generic.addThis.settings.displayStyle" -msgstr "Izberite, kako naj se prikazuje AddThis" - -msgid "plugins.generic.addThis.grid.shares" -msgstr "Delitve" - -msgid "plugins.generic.addThis.grid.title" -msgstr "Največkrat deljene povezave" - -msgid "plugins.generic.addThis.statistics.instructions" -msgstr "Seznam prikazuje najbolj popularne deljene povezave zadnjega tedna. Za pregled vseh možnih statistik AddThis obiščite AddThis Analytics spletišče in se prijavite." diff --git a/plugins/generic/citationStyleLanguage b/plugins/generic/citationStyleLanguage new file mode 160000 index 00000000000..5179ebab69e --- /dev/null +++ b/plugins/generic/citationStyleLanguage @@ -0,0 +1 @@ +Subproject commit 5179ebab69e4bb9a5bc4630f5906d0053d4b69ad diff --git a/plugins/generic/dublinCoreMeta/DublinCoreMetaPlugin.inc.php b/plugins/generic/dublinCoreMeta/DublinCoreMetaPlugin.inc.php deleted file mode 100644 index 35aae9606e4..00000000000 --- a/plugins/generic/dublinCoreMeta/DublinCoreMetaPlugin.inc.php +++ /dev/null @@ -1,253 +0,0 @@ -getEnabled($mainContextId)) { - HookRegistry::register('CatalogBookHandler::book',array(&$this, 'monographView')); - HookRegistry::register('CatalogBookHandler::view', array($this, 'monographFileView')); - } - return true; - } - return false; - } - - /** - * Get the name of the settings file to be installed on new context - * creation. - * @return string - */ - function getContextSpecificPluginSettingsFile() { - return $this->getPluginPath() . '/settings.xml'; - } - - /** - * Inject Dublin Core metadata into monograph view - * @param $hookName string - * @param $args array - * @return boolean - */ - function monographView($hookName, $args) { - $request = $args[0]; - $monograph = $args[1]; - $publication = $monograph->getCurrentPublication(); - $press = $request->getContext(); - - $templateMgr = TemplateManager::getManager($request); - $templateMgr->addHeader('dublinCoreSchema', ''); - - $i=0; - if ($sponsors = $publication->getData('supportingAgencies')) foreach ($sponsors as $locale => $sponsor) { - $templateMgr->addHeader('dublinCoreSponsor' . $i++, ''); - } - - $i=0; - if ($coverages = $publication->getData('coverage')) foreach($coverages as $locale => $coverage) { - $templateMgr->addHeader('dublinCoreCoverage' . $i++, ''); - } - - $i=0; - foreach ($publication->getData('authors') as $author) { - $templateMgr->addHeader('dublinCoreAuthor' . $i++, ''); - } - - if ($datePublished = $publication->getData('datePublished')) { - $templateMgr->addHeader('dublinCoreDateCreated', ''); - } - $templateMgr->addHeader('dublinCoreDateSubmitted', ''); - if ($dateModified = $publication->getData('lastModified')) $templateMgr->addHeader('dublinCoreDateModified', ''); - $i=0; - if ($abstracts = $publication->getData('abstract')) foreach($abstracts as $locale => $abstract) { - $templateMgr->addHeader('dublinCoreAbstract' . $i++, ''); - } - - $templateMgr->addHeader('dublinCoreIdentifier', ''); - - foreach((array) $templateMgr->getTemplateVars('pubIdPlugins') as $pubIdPlugin) { - if ($pubId = $monograph->getStoredPubId($pubIdPlugin->getPubIdType())) { - $templateMgr->addHeader('dublinCorePubId' . $pubIdPlugin->getPubIdDisplayType(), ''); - } - } - - $templateMgr->addHeader('dublinCoreUri', ''); - $templateMgr->addHeader('dublinCoreLanguage', ''); - $templateMgr->addHeader('dublinCoreCopyright', ''); - $templateMgr->addHeader('dublinCorePagesLicenseUrl', ''); - $templateMgr->addHeader('dublinCoreSource', ''); - - $templateMgr->addHeader('dublinCoreSourceUri', ''); - - $i=0; - $submissionSubjectDao = DAORegistry::getDAO('SubmissionSubjectDAO'); /* @var $submissionSubjectDao SubmissionSubjectDAO */ - $supportedLocales = array_keys(AppLocale::getSupportedFormLocales()); - if ($subjects = $submissionSubjectDao->getSubjects($publication->getId(), $supportedLocales)) foreach ($subjects as $locale => $subjectLocale) { - foreach ($subjectLocale as $subject) $templateMgr->addHeader('dublinCoreSubject' . $i++, ''); - } - - $i=0; - $submissionKeywordDao = DAORegistry::getDAO('SubmissionKeywordDAO'); /* @var $submissionKeywordDao SubmissionKeywordDAO */ - if ($keywords = $submissionKeywordDao->getKeywords($publication->getId(), $supportedLocales)) foreach ($keywords as $locale => $keywordLocale) { - foreach ($keywordLocale as $keyword) $templateMgr->addHeader('dublinCoreKeyword' . $i++, ''); - } - - $templateMgr->addHeader('dublinCoreTitle', ''); - $i=0; - foreach ($publication->getFullTitles() as $locale => $title) { - if ($locale == $monograph->getLocale()) continue; - $templateMgr->addHeader('dublinCoreAltTitle' . $i++, ''); - } - - $templateMgr->addHeader('dublinCoreType', ''); - $i=0; - if ($types = $publication->getData('type')) foreach($types as $locale => $type) { - $templateMgr->addHeader('dublinCoreType' . $i++, ''); - } - - return false; - } - - /** - * Inject Dublin Core metadata into monograph file view - * @param $hookName string - * @param $args array - * @return boolean - */ - function monographFileView($hookName, $args) { - $request = Application::get()->getRequest(); - $monograph = $args[1]; - $publicationFormat = $args[2]; - $submissionFile = $args[3]; - $press = $request->getContext(); - - $templateMgr = TemplateManager::getManager($request); - $chapter = $templateMgr->getTemplateVars('chapter'); - $series = $templateMgr->getTemplateVars('series'); - - $templateMgr->addHeader('dublinCoreSchema', ''); - - $i = 0; - if ($sponsors = $monograph->getSponsor(null)) foreach ($sponsors as $locale => $sponsor) { - $templateMgr->addHeader('dublinCoreSponsor' . $i++, ''); - } - - $i = 0; - if ($coverages = $monograph->getCoverage(null)) foreach ($coverages as $locale => $coverage) { - $templateMgr->addHeader('dublinCoreCoverage' . $i++, ''); - } - - $i = 0; - foreach ($chapter ? $chapter->getAuthors()->toArray() : $monograph->getAuthors() as $author) { - $templateMgr->addHeader('dublinCoreAuthor' . $i++, ''); - } - - if (is_a($monograph, 'Submission') && ($datePublished = $monograph->getDatePublished())) { - $templateMgr->addHeader('dublinCoreDateCreated', ''); - } - $templateMgr->addHeader('dublinCoreDateSubmitted', ''); - if ($dateModified = $monograph->getData('dateLastActivity')) $templateMgr->addHeader('dublinCoreDateModified', ''); - $i = 0; - - if ($chapter != null) foreach ($chapter->getData('abstract') as $locale => $abstract) { - $templateMgr->addHeader('dublinCoreAbstract' . $i++, ''); - } elseif ($abstracts = $monograph->getAbstract(null)) foreach ($abstracts as $locale => $abstract) { - $templateMgr->addHeader('dublinCoreAbstract' . $i++, ''); - } - - $templateMgr->addHeader('dublinCoreIdentifier', ''); - - if ($pages = $monograph->getPages()) { - $templateMgr->addHeader('dublinCorePages', ''); - } - - foreach((array) $templateMgr->getTemplateVars('pubIdPlugins') as $pubIdPlugin) { - if ($pubId = $monograph->getStoredPubId($pubIdPlugin->getPubIdType())) { - $templateMgr->addHeader('dublinCorePubId' . $pubIdPlugin->getPubIdDisplayType(), ''); - } - } - - $templateMgr->addHeader('dublinCoreUri', ''); - $templateMgr->addHeader('dublinCoreLanguage', ''); - $templateMgr->addHeader('dublinCoreCopyright', ''); - $templateMgr->addHeader('dublinCorePagesLicenseUrl', ''); - $templateMgr->addHeader('dublinCoreSource', ''); - if ($series && $issn = $series->getOnlineISSN()) { - $templateMgr->addHeader('dublinCoreIssn', ''); - } - - $templateMgr->addHeader('dublinCoreSourceUri', ''); - - $i=0; - $submissionSubjectDao = DAORegistry::getDAO('SubmissionSubjectDAO'); /* @var $submissionSubjectDao SubmissionSubjectDAO */ - $supportedLocales = array_keys(AppLocale::getSupportedFormLocales()); - if ($subjects = $submissionSubjectDao->getSubjects($monograph->getId(), $supportedLocales)) foreach ($subjects as $locale => $subjectLocale) { - foreach ($subjectLocale as $subject) $templateMgr->addHeader('dublinCoreSubject' . $i++, ''); - } - - $i=0; - $submissionKeywordDao = DAORegistry::getDAO('SubmissionKeywordDAO'); /* @var $submissionKeywordDao SubmissionKeywordDAO */ - if ($keywords = $submissionKeywordDao->getKeywords($monograph->getId(), $supportedLocales)) foreach ($keywords as $locale => $keywordLocale) { - foreach ($keywordLocale as $keyword) $templateMgr->addHeader('dublinCoreKeyword' . $i++, ''); - } - - - if ($chapter) { - $templateMgr->addHeader('dublinCoreTitle', ''); - $i=0; - foreach ($chapter->getFullTitles() as $locale => $title) { - if ($locale == $monograph->getLocale()) continue; - $templateMgr->addHeader('dublinCoreAltTitle' . $i++, ''); - } - } else { - $templateMgr->addHeader('dublinCoreTitle', ''); - $i=0; - foreach ($monograph->getFullTitle(null) as $locale => $title) { - if ($locale == $monograph->getLocale()) continue; - $templateMgr->addHeader('dublinCoreAltTitle' . $i++, ''); - } - } - - $templateMgr->addHeader('dublinCoreType', ''); - $i=0; - if ($types = $monograph->getType(null)) foreach($types as $locale => $type) { - $templateMgr->addHeader('dublinCoreType' . $i++, ''); - } - - return false; - } - - /** - * Get the display name of this plugin - * @return string - */ - function getDisplayName() { - return __('plugins.generic.dublinCoreMeta.name'); - } - - /** - * Get the description of this plugin - * @return string - */ - function getDescription() { - return __('plugins.generic.dublinCoreMeta.description'); - } -} - - diff --git a/plugins/generic/dublinCoreMeta/DublinCoreMetaPlugin.php b/plugins/generic/dublinCoreMeta/DublinCoreMetaPlugin.php new file mode 100644 index 00000000000..70c08253519 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/DublinCoreMetaPlugin.php @@ -0,0 +1,353 @@ +getEnabled($mainContextId)) { + Hook::add('CatalogBookHandler::book', [&$this, 'monographView']); + Hook::add('CatalogBookHandler::view', [$this, 'monographFileView']); + } + return true; + } + return false; + } + + /** + * Get the name of the settings file to be installed on new context + * creation. + * + * @return string + */ + public function getContextSpecificPluginSettingsFile() + { + return $this->getPluginPath() . '/settings.xml'; + } + + /** + * Inject Dublin Core metadata into monograph view + * + * @param string $hookName + * @param array $args + * + * @return bool + */ + public function monographView($hookName, $args) + { + $request = $args[0]; + $monograph = $args[1]; + $requestArgs = $request->getRequestedArgs(); + $press = $request->getContext(); + + // Only add Google Scholar metadata tags to the canonical URL for the latest version + // See discussion: https://github.com/pkp/pkp-lib/issues/4870 + if (count($requestArgs) > 1 && $requestArgs[1] === 'version') { + return false; + } + + $publication = $monograph->getCurrentPublication(); + $publicationLocale = $publication->getData('locale'); + $submissionBestId = strlen($urlPath = (string) $publication->getData('urlPath')) ? $urlPath : $monograph->getId(); + + $templateMgr = TemplateManager::getManager($request); + $isChapterRequest = $templateMgr->getTemplateVars('isChapterRequest'); + $chapter = $templateMgr->getTemplateVars('chapter'); + + $templateMgr->addHeader('dublinCoreSchema', ''); + + if ($supportingAgencies = $publication->getData('supportingAgencies')) { + foreach ($supportingAgencies as $locale => $localeSupportingAgencies) { + foreach ($localeSupportingAgencies as $i => $supportingAgency) { + $templateMgr->addHeader('dublinCoreSponsor' . $locale . $i++, ''); + } + } + } + + if ($coverages = $publication->getData('coverage')) { + foreach ($coverages as $locale => $coverage) { + if ($coverage != '') { + $templateMgr->addHeader('dublinCoreCoverage' . $locale, ''); + } + } + } + + $authors = $isChapterRequest ? $templateMgr->getTemplateVars('chapterAuthors') : $publication->getData('authors'); + foreach ($authors as $i => $author) { + $templateMgr->addHeader('dublinCoreAuthor' . $i++, ''); + } + + $datePublished = $isChapterRequest + ? ($monograph->getEnableChapterPublicationDates() && $chapter->getDatePublished() + ? $chapter->getDatePublished() + : $publication->getData('datePublished')) + : $publication->getData('datePublished'); + if ($datePublished) { + $templateMgr->addHeader('dublinCoreDateCreated', ''); + } + $templateMgr->addHeader('dublinCoreDateSubmitted', ''); + if ($dateModified = $publication->getData('lastModified')) { + $templateMgr->addHeader('dublinCoreDateModified', ''); + } + + $abstracts = $isChapterRequest ? $chapter->getData('abstract') : $publication->getData('abstract'); + foreach ($abstracts ?: [] as $locale => $abstract) { + if ($abstract != '') { + $templateMgr->addHeader('dublinCoreAbstract' . $locale, ''); + } + } + + $templateMgr->addHeader('dublinCoreIdentifier', ''); + + $doi = $isChapterRequest ? $chapter->getDoi() : $publication->getDoi(); + if ($doi) { + $templateMgr->addHeader('dublinCorePubIdDOI', ''); + } + foreach ((array) $templateMgr->getTemplateVars('pubIdPlugins') as $pubIdPlugin) { + if ($pubId = $isChapterRequest ? $chapter->getStoredPubId($pubIdPlugin->getPubIdType()) : $publication->getStoredPubId($pubIdPlugin->getPubIdType())) { + $templateMgr->addHeader('dublinCorePubId' . $pubIdPlugin->getPubIdDisplayType(), ''); + } + } + + $templateMgr->addHeader('dublinCoreUri', ''); + + $templateMgr->addHeader('dublinCoreLanguage', ''); + + if (($copyrightHolder = $publication->getData('copyrightHolder', $publicationLocale)) && ($copyrightYear = $publication->getData('copyrightYear'))) { + $templateMgr->addHeader('dublinCoreCopyright', ''); + } + if ($licenseURL = $publication->getData('licenseUrl')) { + $templateMgr->addHeader('dublinCorePagesLicenseUrl', ''); + } + + $templateMgr->addHeader('dublinCoreSource', ''); + $templateMgr->addHeader('dublinCoreSourceUri', ''); + + if ($subjects = $publication->getData('subjects')) { + foreach ($subjects as $locale => $localeSubjects) { + foreach ($localeSubjects as $i => $subject) { + $templateMgr->addHeader('dublinCoreSubject' . $locale . $i++, ''); + } + } + } + if ($keywords = $publication->getData('keywords')) { + foreach ($keywords as $locale => $localeKeywords) { + foreach ($localeKeywords as $i => $keyword) { + $templateMgr->addHeader('dublinCoreKeyword' . $locale . $i++, ''); + } + } + } + + $title = $isChapterRequest ? $chapter->getLocalizedFullTitle($publicationLocale) : $publication->getLocalizedFullTitle($publicationLocale); + $templateMgr->addHeader('dublinCoreTitle', ''); + $titles = $isChapterRequest ? $chapter->getFullTitles() : $publication->getFullTitles(); + foreach ($titles as $locale => $altTitle) { + if ($title != '' && $locale != $publicationLocale) { + $templateMgr->addHeader('dublinCoreAltTitle' . $locale, ''); + } + } + + $templateMgr->addHeader('dublinCoreType', ''); + if ($types = $publication->getData('type')) { + foreach ($types as $locale => $type) { + if ($type != '') { + $templateMgr->addHeader('dublinCoreType' . $locale, ''); + } + } + } + + return false; + } + + /** + * Inject Dublin Core metadata into monograph file view + * + * @param string $hookName + * @param array $args + * + * @return bool + */ + public function monographFileView($hookName, $args) + { + $monograph = $args[1]; + $publicationFormat = $args[2]; + $submissionFile = $args[3]; + + $publication = $monograph->getCurrentPublication(); + + // Only add Google Scholar metadata tags to the canonical URL for the latest version + // See discussion: https://github.com/pkp/pkp-lib/issues/4870 + if ($publicationFormat->getData('publicationId') != $publication->getId()) { + return false; + } + + $request = Application::get()->getRequest(); + $press = $request->getContext(); + + $publicationLocale = $publication->getData('locale'); + $submissionBestId = strlen($urlPath = (string) $publication->getData('urlPath')) ? $urlPath : $monograph->getId(); + + $templateMgr = TemplateManager::getManager($request); + $chapter = $templateMgr->getTemplateVars('chapter'); + $series = $templateMgr->getTemplateVars('series'); + + $templateMgr->addHeader('dublinCoreSchema', ''); + + if ($supportingAgencies = $publication->getData('supportingAgencies')) { + foreach ($supportingAgencies as $locale => $localeSupportingAgencies) { + foreach ($localeSupportingAgencies as $i => $supportingAgency) { + $templateMgr->addHeader('dublinCoreSponsor' . $locale . $i++, ''); + } + } + } + + if ($coverages = $publication->getData('coverage')) { + foreach ($coverages as $locale => $coverage) { + if ($coverage != '') { + $templateMgr->addHeader('dublinCoreCoverage' . $locale, ''); + } + } + } + + $authors = $chapter ? $chapter->getAuthors()->toArray() : $publication->getData('authors'); + foreach ($authors as $i => $author) { + $templateMgr->addHeader('dublinCoreAuthor' . $i++, ''); + } + + $datePublished = $chapter + ? ($monograph->getEnableChapterPublicationDates() && $chapter->getDatePublished() + ? $chapter->getDatePublished() + : $publication->getData('datePublished')) + : $publication->getData('datePublished'); + if ($datePublished) { + $templateMgr->addHeader('dublinCoreDateCreated', ''); + } + $templateMgr->addHeader('dublinCoreDateSubmitted', ''); + if ($dateModified = $publication->getData('lastModified')) { + $templateMgr->addHeader('dublinCoreDateModified', ''); + } + + $abstracts = $chapter ? $chapter->getData('abstract') : $publication->getData('abstract'); + foreach ($abstracts ?: [] as $locale => $abstract) { + if ($abstract != '') { + $templateMgr->addHeader('dublinCoreAbstract' . $locale, ''); + } + } + + $templateMgr->addHeader('dublinCoreIdentifier', ''); + + $pages = $chapter ? $chapter->getData('pages') : $publication->getData('pages'); + if ($pages) { + $templateMgr->addHeader('dublinCorePages', ''); + } + + $doi = $submissionFile->getDoi() ?? $chapter ? $chapter->getDoi() : $publication->getDoi(); + if ($doi) { + $templateMgr->addHeader('dublinCorePubIdDOI', ''); + } + + foreach ((array) $templateMgr->getTemplateVars('pubIdPlugins') as $pubIdPlugin) { + if ($pubId = $submissionFile->getStoredPubId($pubIdPlugin->getPubIdType()) ?? $chapter ? $chapter->getDoi() : $publication->getStoredPubId($pubIdPlugin->getPubIdType())) { + $templateMgr->addHeader('dublinCorePubId' . $pubIdPlugin->getPubIdDisplayType(), ''); + } + } + + $templateMgr->addHeader('dublinCoreUri', ''); + + $templateMgr->addHeader('dublinCoreLanguage', ''); + + if (($copyrightHolder = $publication->getData('copyrightHolder', $publicationLocale)) && ($copyrightYear = $publication->getData('copyrightYear'))) { + $templateMgr->addHeader('dublinCoreCopyright', ''); + } + if ($licenseURL = $publication->getData('licenseUrl')) { + $templateMgr->addHeader('dublinCorePagesLicenseUrl', ''); + } + + $templateMgr->addHeader('dublinCoreSource', ''); + if ($series && $issn = $series->getOnlineISSN()) { + $templateMgr->addHeader('dublinCoreIssn', ''); + } + + $templateMgr->addHeader('dublinCoreSourceUri', ''); + + if ($subjects = $publication->getData('subjects')) { + foreach ($subjects as $locale => $localeSubjects) { + foreach ($localeSubjects as $i => $subject) { + $templateMgr->addHeader('dublinCoreSubject' . $locale . $i++, ''); + } + } + } + if ($keywords = $publication->getData('keywords')) { + foreach ($keywords as $locale => $localeKeywords) { + foreach ($localeKeywords as $i => $keyword) { + $templateMgr->addHeader('dublinCoreKeyword' . $locale . $i++, ''); + } + } + } + + + $title = $chapter ? $chapter->getLocalizedFullTitle($publicationLocale) : $publication->getLocalizedFullTitle($publicationLocale); + $templateMgr->addHeader('dublinCoreTitle', ''); + $titles = $chapter ? $chapter->getFullTitles() : $publication->getFullTitles(); + foreach ($titles as $locale => $altTitle) { + if ($title != '' && $locale != $publicationLocale) { + $templateMgr->addHeader('dublinCoreAltTitle' . $locale, ''); + } + } + + $templateMgr->addHeader('dublinCoreType', ''); + if ($types = $publication->getData('type')) { + foreach ($types as $locale => $type) { + if ($type != '') { + $templateMgr->addHeader('dublinCoreType' . $locale, ''); + } + } + } + + return false; + } + + /** + * Get the display name of this plugin + * + * @return string + */ + public function getDisplayName() + { + return __('plugins.generic.dublinCoreMeta.name'); + } + + /** + * Get the description of this plugin + * + * @return string + */ + public function getDescription() + { + return __('plugins.generic.dublinCoreMeta.description'); + } +} diff --git a/plugins/generic/dublinCoreMeta/index.php b/plugins/generic/dublinCoreMeta/index.php deleted file mode 100644 index c38dea90b83..00000000000 --- a/plugins/generic/dublinCoreMeta/index.php +++ /dev/null @@ -1,23 +0,0 @@ -, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-18 10:06+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Плъгин за индексиране Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Този плъгин вгражда мета тагове на Dublin Core в изгледите на монографии за " +"целите на индексирането." diff --git a/plugins/generic/dublinCoreMeta/locale/ca/locale.po b/plugins/generic/dublinCoreMeta/locale/ca/locale.po new file mode 100644 index 00000000000..d52a92266d8 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/ca/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-20 09:39+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Catalan \n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Mòdul d'indexació Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Aquest mòdul incrusta metaetiquetes Dublin Core en les visualitzacions de " +"les monografies amb finalitats d'indexació." diff --git a/plugins/generic/dublinCoreMeta/locale/ca_ES/locale.po b/plugins/generic/dublinCoreMeta/locale/ca_ES/locale.po deleted file mode 100644 index 6e25e3d8ad1..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/ca_ES/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-20 09:39+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Catalan \n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "" -"Aquest mòdul incrusta metaetiquetes Dublin Core en les visualitzacions de " -"les monografies amb finalitats d'indexació." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Mòdul d'indexació Dublin Core" diff --git a/plugins/generic/dublinCoreMeta/locale/cs/locale.po b/plugins/generic/dublinCoreMeta/locale/cs/locale.po new file mode 100644 index 00000000000..b9898f7c93a --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/cs/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-05 08:43+0000\n" +"Last-Translator: Radek Gomola \n" +"Language-Team: Czech \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Indexovací plugin Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Tento plugin poskytuje meta značky Dublin Core v zobrazení monografie pro " +"účely indexování." diff --git a/plugins/generic/dublinCoreMeta/locale/cs_CZ/locale.po b/plugins/generic/dublinCoreMeta/locale/cs_CZ/locale.po deleted file mode 100644 index 53c35e1fe3b..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/cs_CZ/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-05 08:43+0000\n" -"Last-Translator: Radek Gomola \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "" -"Tento plugin poskytuje meta značky Dublin Core v zobrazení monografie pro " -"účely indexování." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Indexovací plugin Dublin Core" diff --git a/plugins/generic/dublinCoreMeta/locale/da/locale.po b/plugins/generic/dublinCoreMeta/locale/da/locale.po new file mode 100644 index 00000000000..ede4aced6dd --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/da/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-07 10:35+0000\n" +"Last-Translator: Niels Erik Frederiksen \n" +"Language-Team: Danish \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Dublin Core indekserings-plugin" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Denne plugin integrerer Dublin Core-metatags i monografifremvisninger til " +"indekseringsformål." diff --git a/plugins/generic/dublinCoreMeta/locale/da_DK/locale.po b/plugins/generic/dublinCoreMeta/locale/da_DK/locale.po deleted file mode 100644 index 59ea9bc8f29..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/da_DK/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-07 10:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "" -"Denne plugin integrerer Dublin Core-metatags i monografifremvisninger til " -"indekseringsformål." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Dublin Core indekserings-plugin" diff --git a/plugins/generic/dublinCoreMeta/locale/da_DK/locale.xml b/plugins/generic/dublinCoreMeta/locale/da_DK/locale.xml deleted file mode 100644 index 335d95a06e4..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/da_DK/locale.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Dublin Core-indekseringsplugin - Denne plugin integrerer Dublin Core-metatags i monografivisninger til indekseringsformål. - diff --git a/plugins/generic/dublinCoreMeta/locale/de/locale.po b/plugins/generic/dublinCoreMeta/locale/de/locale.po new file mode 100644 index 00000000000..918183cb1a0 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/de/locale.po @@ -0,0 +1,21 @@ +# Pia Piontkowitz , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-26 17:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Dublin Core Indexing Plugin" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Dieses Plugin bettet Dublin Core meta tags zu Indizierungszwecken in " +"Monographieansichten ein." diff --git a/plugins/generic/dublinCoreMeta/locale/en/locale.po b/plugins/generic/dublinCoreMeta/locale/en/locale.po new file mode 100644 index 00000000000..46eff2ac1bf --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/en/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Dublin Core Indexing Plugin" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"This plugin embeds Dublin Core meta tags in monograph views for indexing " +"purposes." diff --git a/plugins/generic/dublinCoreMeta/locale/en_US/locale.po b/plugins/generic/dublinCoreMeta/locale/en_US/locale.po deleted file mode 100644 index e9b7cc484f5..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/en_US/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" -"Language: \n" - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Dublin Core Indexing Plugin" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "This plugin embeds Dublin Core meta tags in monograph views for indexing purposes." diff --git a/plugins/generic/dublinCoreMeta/locale/es/locale.po b/plugins/generic/dublinCoreMeta/locale/es/locale.po new file mode 100644 index 00000000000..81f31c2476c --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/es/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-29 11:38+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish \n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Módulo de indexación Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Este módulo incrusta metaetiquetas Dublin Core en las visualizaciones de las " +"monografías con fines de indexación." diff --git a/plugins/generic/dublinCoreMeta/locale/es_ES/locale.po b/plugins/generic/dublinCoreMeta/locale/es_ES/locale.po deleted file mode 100644 index 45a3b4f365f..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/es_ES/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-29 11:38+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "" -"Este módulo incrusta metaetiquetas Dublin Core en las visualizaciones de las " -"monografías con fines de indexación." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Módulo de indexación Dublin Core" diff --git a/plugins/generic/dublinCoreMeta/locale/fi/locale.po b/plugins/generic/dublinCoreMeta/locale/fi/locale.po new file mode 100644 index 00000000000..e72f9db0998 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/fi/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-18 16:48+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi_FI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Dublin Core indeksointilisäosa" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Tämä lisäosa liittää Dublin Core -metatietokenttiä kirjan abstraktisivulle " +"indeksoinnin helpottamiseksi." diff --git a/plugins/generic/dublinCoreMeta/locale/fi_FI/locale.po b/plugins/generic/dublinCoreMeta/locale/fi_FI/locale.po deleted file mode 100644 index 5ecc9d4409b..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/fi_FI/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-18 16:48+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "" -"Tämä lisäosa liittää Dublin Core -metatietokenttiä kirjan abstraktisivulle " -"indeksoinnin helpottamiseksi." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Dublin Core indeksointilisäosa" diff --git a/plugins/generic/dublinCoreMeta/locale/fr_CA/locale.po b/plugins/generic/dublinCoreMeta/locale/fr_CA/locale.po new file mode 100644 index 00000000000..5a4b45fceb2 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/fr_CA/locale.po @@ -0,0 +1,8 @@ +# Weblate Admin , 2023. +msgid "" +msgstr "" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" diff --git a/plugins/generic/dublinCoreMeta/locale/fr_FR/locale.po b/plugins/generic/dublinCoreMeta/locale/fr_FR/locale.po new file mode 100644 index 00000000000..33ea9b0f084 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/fr_FR/locale.po @@ -0,0 +1,22 @@ +# Weblate Admin , 2023. +# Germán Huélamo Bautista , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-08-02 17:58+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Plugin d’indexation Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Ce module intègre les balises meta Dublin Core dans les monographies à des " +"fins d’indexation." diff --git a/plugins/generic/dublinCoreMeta/locale/gl/locale.po b/plugins/generic/dublinCoreMeta/locale/gl/locale.po new file mode 100644 index 00000000000..3038749ff37 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/gl/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-20 08:54+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Complemento de indexación Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Este complemento incorpora metaetiquetas Dublin Core nas vistas das " +"monográficas para fins de indexación." diff --git a/plugins/generic/dublinCoreMeta/locale/hr/locale.po b/plugins/generic/dublinCoreMeta/locale/hr/locale.po new file mode 100644 index 00000000000..33bb88a4987 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/hr/locale.po @@ -0,0 +1,23 @@ +# Karla Zapalac , 2023. +# Maja Jurić , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-08 15:40+0000\n" +"Last-Translator: Maja Jurić \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Dublin Core dodatak za indeksiranje" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Ovaj dodatak ugrađuje meta oznake Dublin Core u prikaze monografije u svrhu " +"indeksiranja." diff --git a/plugins/generic/dublinCoreMeta/locale/hu/locale.po b/plugins/generic/dublinCoreMeta/locale/hu/locale.po new file mode 100644 index 00000000000..c3b5ab74d53 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/hu/locale.po @@ -0,0 +1,21 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-29 22:43+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Dublin Core indexelő bővítmény" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Ez a bővítmény indexelés céljából Dublin Core metacímkéket ágyaz be a " +"kiadványnézetekbe." diff --git a/plugins/generic/dublinCoreMeta/locale/it/locale.po b/plugins/generic/dublinCoreMeta/locale/it/locale.po new file mode 100644 index 00000000000..bbeedcb2181 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/it/locale.po @@ -0,0 +1,21 @@ +# Alfredo Cosco , 2021. +msgid "" +msgstr "" +"PO-Revision-Date: 2021-08-21 23:37+0000\n" +"Last-Translator: Alfredo Cosco \n" +"Language-Team: Italian \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Plugin di indicizzazione Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Questo plugin incorpora i meta tag Dublin Core nelle pagine delle monografie " +"per favorire l'indicizzazione." diff --git a/plugins/generic/dublinCoreMeta/locale/mk/locale.po b/plugins/generic/dublinCoreMeta/locale/mk/locale.po new file mode 100644 index 00000000000..60c1cdf9e5b --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/mk/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-06 17:52+0000\n" +"Last-Translator: Blagoja Grozdanovski \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Даблински приклучок за основно индексирање" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Овој приклучок вметнува Даблински основни мета-ознаки во монографски " +"прегледи заради индексирање." diff --git a/plugins/generic/dublinCoreMeta/locale/mk_MK/locale.po b/plugins/generic/dublinCoreMeta/locale/mk_MK/locale.po deleted file mode 100644 index 41e0d38519f..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/mk_MK/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-06 17:52+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "" -"Овој приклучок вметнува Даблински основни мета-ознаки во монографски " -"прегледи заради индексирање." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Даблински приклучок за основно индексирање" diff --git a/plugins/generic/dublinCoreMeta/locale/nb/locale.po b/plugins/generic/dublinCoreMeta/locale/nb/locale.po new file mode 100644 index 00000000000..e9da16cd092 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/nb/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-22 10:19+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Doblin Core-indeksering" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Programtillegget bygger inn metatagger for Dublin Core i artikkelvisninger " +"for indekseringsformål." diff --git a/plugins/generic/dublinCoreMeta/locale/nb_NO/locale.po b/plugins/generic/dublinCoreMeta/locale/nb_NO/locale.po deleted file mode 100644 index 1a6ed2cdbdf..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/nb_NO/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-22 10:19+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "" -"Programtillegget bygger inn metatagger for Dublin Core i artikkelvisninger " -"for indekseringsformål." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Doblin Core-indeksering" diff --git a/plugins/generic/dublinCoreMeta/locale/pl/locale.po b/plugins/generic/dublinCoreMeta/locale/pl/locale.po new file mode 100644 index 00000000000..85c98482dab --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/pl/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-10 19:07+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Wtyczka Indeksująca Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Wtyczka osadza meta oznaczenia Dublin Core w monografii dla celów " +"indeksujących." diff --git a/plugins/generic/dublinCoreMeta/locale/pl_PL/locale.po b/plugins/generic/dublinCoreMeta/locale/pl_PL/locale.po deleted file mode 100644 index 653bb5398ee..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/pl_PL/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-10 19:07+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "" -"Wtyczka osadza meta oznaczenia Dublin Core w monografii dla celów " -"indeksujących." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Wtyczka Indeksująca Dublin Core" diff --git a/plugins/generic/dublinCoreMeta/locale/pt_BR/locale.po b/plugins/generic/dublinCoreMeta/locale/pt_BR/locale.po index 20b09822943..3f2f4e87bce 100644 --- a/plugins/generic/dublinCoreMeta/locale/pt_BR/locale.po +++ b/plugins/generic/dublinCoreMeta/locale/pt_BR/locale.po @@ -11,10 +11,10 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Plugin Indexação Dublin Core" + msgid "plugins.generic.dublinCoreMeta.description" msgstr "" "Este plugin incorpora as meta tags do Dublin Core nas visualizações de " "monografias para fins de indexação." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Plugin Indexação Dublin Core" diff --git a/plugins/generic/dublinCoreMeta/locale/pt_PT/locale.po b/plugins/generic/dublinCoreMeta/locale/pt_PT/locale.po new file mode 100644 index 00000000000..af3aa618571 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/pt_PT/locale.po @@ -0,0 +1,21 @@ +# Carla Marques , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-03 14:52+0000\n" +"Last-Translator: Carla Marques \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Plugin de Indexação Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Este plugin incorpora meta tags Dublin Core nas visualizações de livros para " +"fins de indexação." diff --git a/plugins/generic/dublinCoreMeta/locale/ro/locale.po b/plugins/generic/dublinCoreMeta/locale/ro/locale.po new file mode 100644 index 00000000000..df0283fb1b4 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/ro/locale.po @@ -0,0 +1,22 @@ +# Vasile Moraru , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-03-12 16:14+0000\n" +"Last-Translator: Vasile Moraru \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Plugin de indexare Dublin Core" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Acest plugin încorporează meta tag-uri Dublin Core în vizualizările " +"monografiilor în scopuri de indexare." diff --git a/plugins/generic/dublinCoreMeta/locale/ru_RU/locale.po b/plugins/generic/dublinCoreMeta/locale/ru/locale.po similarity index 100% rename from plugins/generic/dublinCoreMeta/locale/ru_RU/locale.po rename to plugins/generic/dublinCoreMeta/locale/ru/locale.po diff --git a/plugins/generic/dublinCoreMeta/locale/sv/locale.po b/plugins/generic/dublinCoreMeta/locale/sv/locale.po new file mode 100644 index 00000000000..80ffc7db870 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/sv/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-11 11:28+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Dublin Core-indexering" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Denna plugin bäddar in metataggar i Dublin Core-format i böcker, för " +"indexering." diff --git a/plugins/generic/dublinCoreMeta/locale/tr/locale.po b/plugins/generic/dublinCoreMeta/locale/tr/locale.po new file mode 100644 index 00000000000..05280d26c80 --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/tr/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-21 18:54+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Dublin Çekirdek Dizinleme Eklentisi" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Bu eklenti, dizinleme amacıyla risale görünümlerine Dublin çekirdek meta " +"etiketlerini yerleştirir." diff --git a/plugins/generic/dublinCoreMeta/locale/uk/locale.po b/plugins/generic/dublinCoreMeta/locale/uk/locale.po new file mode 100644 index 00000000000..44181f7113b --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/uk/locale.po @@ -0,0 +1,22 @@ +# Petro Bilous , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-16 18:38+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk_UA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "Плагін індексації \"Dublin Core\"" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" +"Цей плагін імплементує теги метаданих Dublin Core у видання в цілях " +"індексації." diff --git a/plugins/generic/dublinCoreMeta/locale/uk_UA/locale.po b/plugins/generic/dublinCoreMeta/locale/uk_UA/locale.po deleted file mode 100644 index de89f14ebf8..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/uk_UA/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.dublinCoreMeta.description" -msgstr "" -"Цей плагін імплементує теги метаданих Dublin Core в видання у цілях " -"індексації." - -msgid "plugins.generic.dublinCoreMeta.name" -msgstr "Плагін Індексування \"Dublin Core\"" diff --git a/plugins/generic/dublinCoreMeta/locale/vi/locale.po b/plugins/generic/dublinCoreMeta/locale/vi/locale.po new file mode 100644 index 00000000000..21a3956e27e --- /dev/null +++ b/plugins/generic/dublinCoreMeta/locale/vi/locale.po @@ -0,0 +1,12 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "plugins.generic.dublinCoreMeta.name" +msgstr "" + +msgid "plugins.generic.dublinCoreMeta.description" +msgstr "" diff --git a/plugins/generic/dublinCoreMeta/locale/vi_VN/locale.po b/plugins/generic/dublinCoreMeta/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/generic/dublinCoreMeta/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/generic/googleScholar/GoogleScholarPlugin.inc.php b/plugins/generic/googleScholar/GoogleScholarPlugin.inc.php deleted file mode 100644 index 9da7e78faf2..00000000000 --- a/plugins/generic/googleScholar/GoogleScholarPlugin.inc.php +++ /dev/null @@ -1,162 +0,0 @@ -getEnabled($mainContextId)) { - HookRegistry::register('CatalogBookHandler::book', array(&$this, 'monographView')); - } - return true; - } - return false; - } - - /** - * Get the name of the settings file to be installed on new context - * creation. - * @return string - */ - function getContextSpecificPluginSettingsFile() { - return $this->getPluginPath() . '/settings.xml'; - } - - /** - * Inject Google Scholar metadata into monograph/edited volume landing page - * @param $hookName string - * @param $args array - * @return boolean - */ - function monographView($hookName, $args) { - $request = $args[0]; - $submission = $args[1]; - $templateMgr = TemplateManager::getManager($request); - - $publication = $submission->getCurrentPublication(); - $press = $request->getContext(); - $series = $templateMgr->getTemplateVars('series'); - $availableFiles = $templateMgr->getTemplateVars('availableFiles'); - - - // Google scholar metadata revision - $templateMgr->addHeader('googleScholarRevision', ''); - - // Book/Edited volume title of the submission - $templateMgr->addHeader('googleScholarTitle', ''); - - // Publication date - $templateMgr->addHeader('googleScholarDate', ''); - - // Authors in order - $authors = $submission->getAuthors(); - $i = 0; - foreach ($authors as $author) { - $templateMgr->addHeader('googleScholarAuthor' . $i++, ''); - } - - // Abstract - $i = 0; - if ($abstracts = $submission->getAbstract(null)) foreach ($abstracts as $locale => $abstract) { - $templateMgr->addHeader('googleScholarAbstract' . $i++, ''); - } - - // Publication DOI - if ($publication->getData('pub-id::doi')) { - $templateMgr->addHeader('googleScholarPublicationDOI', ''); - } - - // Language - if ($languages = $publication->getData('languages')) foreach ($languages as $language) { - $templateMgr->addHeader('googleScholarLanguage', ''); - } - - // Subjects - $i = 0; - $submissionSubjectDao = DAORegistry::getDAO('SubmissionSubjectDAO'); - /* @var $submissionSubjectDao SubmissionSubjectDAO */ - $supportedLocales = array_keys(AppLocale::getSupportedFormLocales()); - if ($subjects = $submissionSubjectDao->getSubjects($publication->getId(), $supportedLocales)) foreach ($subjects as $locale => $subjectLocale) { - foreach ($subjectLocale as $gsKeyword) $templateMgr->addHeader('googleScholarSubject' . $i++, ''); - } - - // Keywords - $i = 0; - $submissionKeywordDao = DAORegistry::getDAO('SubmissionKeywordDAO'); - /* @var $submissionKeywordDao SubmissionKeywordDAO */ - if ($keywords = $submissionKeywordDao->getKeywords($publication->getId(), $supportedLocales)) foreach ($keywords as $locale => $keywordLocale) { - foreach ($keywordLocale as $gsKeyword) $templateMgr->addHeader('googleScholarKeyword' . $i++, ''); - } - - // Publication URL and ISBN numbers - $publicationFormats = $publication->getData('publicationFormats'); - $i = 0; - foreach ($availableFiles as $availableFile) { - foreach ($publicationFormats as $publicationFormat) { - - if (($availableFile->getData("chapterId") == false) && (int)$publicationFormat->getData('id') == (int)$availableFile->getData('assocId')) { - $identificationCodes = $publicationFormat->getIdentificationCodes(); - while ($identificationCode = $identificationCodes->next()) { - if ($identificationCode->getCode() == "02" || $identificationCode->getCode() == "15") { - // 02 and 15: ONIX codes for ISBN-10 or ISBN-13 - $templateMgr->addHeader('googleScholarIsbn' . $i++, ''); - } - } - switch ($availableFile->getData('mimetype')) { - case 'application/pdf': - $templateMgr->addHeader('googleScholarPdfUrl' . $i++, ''); - break; - case 'text/xml' or 'text/html': - $templateMgr->addHeader('googleScholarPdfUrl' . $i++, ''); - break; - } - - } - } - } - // Publisher - $templateMgr->addHeader('googleScholarPublisher', ''); - - // Series ISSN (online) - $series = $templateMgr->getTemplateVars('series'); - if ($series && $issn = $series->getOnlineISSN()) { - $templateMgr->addHeader('googleScholarIssn', ' '); - } - - return false; - } - - /** - * Get the display name of this plugin - * @return string - */ - function getDisplayName() { - return __('plugins.generic.googleScholar.name'); - } - - /** - * Get the description of this plugin - * @return string - */ - function getDescription() { - return __('plugins.generic.googleScholar.description'); - } -} - - diff --git a/plugins/generic/googleScholar/GoogleScholarPlugin.php b/plugins/generic/googleScholar/GoogleScholarPlugin.php new file mode 100644 index 00000000000..f34131c6730 --- /dev/null +++ b/plugins/generic/googleScholar/GoogleScholarPlugin.php @@ -0,0 +1,219 @@ +getEnabled($mainContextId)) { + Hook::add('CatalogBookHandler::book', [&$this, 'monographView']); + } + return true; + } + return false; + } + + /** + * Get the name of the settings file to be installed on new context + * creation. + * + * @return string + */ + public function getContextSpecificPluginSettingsFile() + { + return $this->getPluginPath() . '/settings.xml'; + } + + /** + * Inject Google Scholar metadata into monograph/edited volume landing page + * + * @param string $hookName + * @param array $args + * + * @return bool + */ + public function monographView($hookName, $args) + { + $request = $args[0]; + $submission = $args[1]; + + // Only add Google Scholar metadata tags to the canonical URL for the latest version + // See discussion: https://github.com/pkp/pkp-lib/issues/4870 + $requestArgs = $request->getRequestedArgs(); + if (in_array('version', $requestArgs)) { + return false; + } + + $templateMgr = TemplateManager::getManager($request); + + $publication = $submission->getCurrentPublication(); + $press = $request->getContext(); + $series = $templateMgr->getTemplateVars('series'); + $availableFiles = $templateMgr->getTemplateVars('availableFiles'); + $isChapterRequest = $templateMgr->getTemplateVars('isChapterRequest'); + $chapter = $templateMgr->getTemplateVars('chapter'); + $publicationLocale = $publication->getData('locale'); + + // Google scholar metadata revision + $templateMgr->addHeader('googleScholarRevision', ''); + + // Book/Edited volume or Chapter title of the submission + $title = $isChapterRequest ? $chapter->getLocalizedFullTitle($publicationLocale) : $publication->getLocalizedFullTitle($publicationLocale); + $templateMgr->addHeader('googleScholarTitle', ''); + + // Language + $templateMgr->addHeader('googleScholarLanguage', ''); + + // Publication date + $datePublished = $isChapterRequest + ? ($submission->getEnableChapterPublicationDates() && $chapter->getDatePublished() + ? $chapter->getDatePublished() + : $publication->getData('datePublished')) + : $publication->getData('datePublished'); + if ($datePublished) { + $templateMgr->addHeader('googleScholarDate', ''); + } + + // Authors in order + $authors = $isChapterRequest ? $templateMgr->getTemplateVars('chapterAuthors') : $publication->getData('authors'); + foreach ($authors as $i => $author) { + $templateMgr->addHeader('googleScholarAuthor' . $i++, ''); + if ($affiliation = htmlspecialchars($author->getLocalizedData('affiliation', $publicationLocale))) { + $templateMgr->addHeader('googleScholarAuthor' . $i++ . 'Affiliation', ''); + } + } + + // Abstract + $abstract = $isChapterRequest ? $chapter->getLocalizedData('abstract', $publicationLocale) : $publication->getLocalizedData('abstract', $publicationLocale); + if ($abstract != '') { + $templateMgr->addHeader('googleScholarAbstract', ''); + } + + // Publication DOI + if ($doi = $publication->getDoi()) { + $templateMgr->addHeader('googleScholarPublicationDOI', ''); + } + + // Subjects + if ($subjects = $publication->getData('subjects')) { + foreach ($subjects as $locale => $localeSubjects) { + foreach ($localeSubjects as $i => $subject) { + $templateMgr->addHeader('googleScholarSubject' . $i++, ''); + } + } + } + + // Keywords + if ($keywords = $publication->getData('keywords')) { + foreach ($keywords as $locale => $localeKeywords) { + foreach ($localeKeywords as $i => $keyword) { + $templateMgr->addHeader('googleScholarKeyword' . $i++, ''); + } + } + } + + // Publication URL and ISBN numbers + $publicationFormats = $publication->getData('publicationFormats'); + $i = 0; + foreach ($availableFiles as $availableFile) { + foreach ($publicationFormats as $publicationFormat) { + if ((int)$publicationFormat->getId() == (int)$availableFile->getData('assocId')) { + if (!$isChapterRequest && $availableFile->getData('chapterId') == false) { + $identificationCodes = $publicationFormat->getIdentificationCodes(); + while ($identificationCode = $identificationCodes->next()) { + if ($identificationCode->getCode() == '02' || $identificationCode->getCode() == '15') { + // 02 and 15: ONIX codes for ISBN-10 or ISBN-13 + $templateMgr->addHeader('googleScholarIsbn' . $i++, ''); + } + } + $this->_setFileUrl($availableFile, $templateMgr, $i, $request, $submission); + } elseif ($isChapterRequest) { + if ($chapter->getId() == $availableFile->getData('chapterId')) { + $this->_setFileUrl($availableFile, $templateMgr, $i, $request, $submission); + } + } + } + } + } + + // Publisher + $templateMgr->addHeader('googleScholarPublisher', ''); + + // Series ISSN (online) + if ($series && $issn = $series->getOnlineISSN()) { + $templateMgr->addHeader('googleScholarIssn', ' '); + } + + // Citations + $outputReferences = []; + $citationDao = DAORegistry::getDAO('CitationDAO'); /** @var CitationDAO $citationDao */ + $parsedCitations = $citationDao->getByPublicationId($publication->getId()); + while ($citation = $parsedCitations->next()) { + $outputReferences[] = $citation->getRawCitation(); + } + Hook::call('GoogleScholarPlugin::references', [&$outputReferences, $submission->getId()]); + + foreach ($outputReferences as $i => $outputReference) { + $templateMgr->addHeader('googleScholarReference' . $i++, ''); + } + + return false; + } + + /** + * Get the display name of this plugin + * + * @return string + */ + public function getDisplayName() + { + return __('plugins.generic.googleScholar.name'); + } + + /** + * Get the description of this plugin + * + * @return string + */ + public function getDescription() + { + return __('plugins.generic.googleScholar.description'); + } + + private function _setFileUrl($availableFile, TemplateManager $templateMgr, int $i, \APP\Core\Request $request, \APP\submission\Submission $submission): void + { + switch ($availableFile->getData('mimetype')) { + case 'application/pdf': + $templateMgr->addHeader('googleScholarPdfUrl' . $i++, ''); + break; + case 'text/xml' or 'text/html': + $templateMgr->addHeader('googleScholarHtmlUrl' . $i++, ''); + break; + } + } +} diff --git a/plugins/generic/googleScholar/index.php b/plugins/generic/googleScholar/index.php deleted file mode 100644 index bdc55b40b24..00000000000 --- a/plugins/generic/googleScholar/index.php +++ /dev/null @@ -1,23 +0,0 @@ -, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-18 10:06+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Плъгин за индексиране в Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Този плъгин позволява индексиране на публикувано съдържание в Google Scholar." diff --git a/plugins/generic/googleScholar/locale/ca/locale.po b/plugins/generic/googleScholar/locale/ca/locale.po new file mode 100644 index 00000000000..a7792a4acfe --- /dev/null +++ b/plugins/generic/googleScholar/locale/ca/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-20 09:39+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Catalan \n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Mòdul d'indexació Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Aquest mòdul activa la indexació del contingut publicat a Google Scholar." diff --git a/plugins/generic/googleScholar/locale/ca_ES/locale.po b/plugins/generic/googleScholar/locale/ca_ES/locale.po deleted file mode 100644 index 9289f3200b7..00000000000 --- a/plugins/generic/googleScholar/locale/ca_ES/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-20 09:39+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Catalan \n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.googleScholar.description" -msgstr "" -"Aquest mòdul activa la indexació del contingut publicat a Google Scholar." - -msgid "plugins.generic.googleScholar.name" -msgstr "Mòdul d'indexació Google Scholar" diff --git a/plugins/generic/googleScholar/locale/cs/locale.po b/plugins/generic/googleScholar/locale/cs/locale.po new file mode 100644 index 00000000000..c6ec1e592f1 --- /dev/null +++ b/plugins/generic/googleScholar/locale/cs/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-05 08:43+0000\n" +"Last-Translator: Radek Gomola \n" +"Language-Team: Czech \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Indexovací plugin Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Tento plugin umožňuje indexování publikovaného obsahu ve službě Google " +"Scholar." diff --git a/plugins/generic/googleScholar/locale/cs_CZ/locale.po b/plugins/generic/googleScholar/locale/cs_CZ/locale.po deleted file mode 100644 index bbb36ba7bd2..00000000000 --- a/plugins/generic/googleScholar/locale/cs_CZ/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-05 08:43+0000\n" -"Last-Translator: Radek Gomola \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.googleScholar.description" -msgstr "" -"Tento plugin umožňuje indexování publikovaného obsahu ve službě Google " -"Scholar." - -msgid "plugins.generic.googleScholar.name" -msgstr "Indexovací plugin Google Scholar" diff --git a/plugins/generic/googleScholar/locale/da/locale.po b/plugins/generic/googleScholar/locale/da/locale.po new file mode 100644 index 00000000000..ebd36080345 --- /dev/null +++ b/plugins/generic/googleScholar/locale/da/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-09 18:35+0000\n" +"Last-Translator: Niels Erik Frederiksen \n" +"Language-Team: Danish \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Google Scholar indekserings-plugin" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Denne plugin muliggør indeksering af offentliggjort indhold i Google Scholar." diff --git a/plugins/generic/googleScholar/locale/da_DK/locale.po b/plugins/generic/googleScholar/locale/da_DK/locale.po deleted file mode 100644 index f50574cbc4d..00000000000 --- a/plugins/generic/googleScholar/locale/da_DK/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-09 18:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.googleScholar.description" -msgstr "" -"Denne plugin muliggør indeksering af offentliggjort indhold i Google Scholar." - -msgid "plugins.generic.googleScholar.name" -msgstr "Google Scholar indekserings-plugin" diff --git a/plugins/generic/googleScholar/locale/da_DK/locale.xml b/plugins/generic/googleScholar/locale/da_DK/locale.xml deleted file mode 100644 index 95b2150c29c..00000000000 --- a/plugins/generic/googleScholar/locale/da_DK/locale.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Google Scholar-indekserings-plug-in - Denne plugin muliggør indeksering af publiceret indhold i Google Scholar. - diff --git a/plugins/generic/googleScholar/locale/de/locale.po b/plugins/generic/googleScholar/locale/de/locale.po new file mode 100644 index 00000000000..ca04a95f238 --- /dev/null +++ b/plugins/generic/googleScholar/locale/de/locale.po @@ -0,0 +1,21 @@ +# Pia Piontkowitz , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-28 05:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Dieses Plugin ermöglicht die Indizierung von veröffentlichten Inhalten in " +"Google Scholar." + +msgid "plugins.generic.googleScholar.name" +msgstr "Google Scholar Indexing Plugin" diff --git a/plugins/generic/googleScholar/locale/en/locale.po b/plugins/generic/googleScholar/locale/en/locale.po new file mode 100644 index 00000000000..457206969c4 --- /dev/null +++ b/plugins/generic/googleScholar/locale/en/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Google Scholar Indexing Plugin" + +msgid "plugins.generic.googleScholar.description" +msgstr "This plugin enables indexing of published content in Google Scholar." diff --git a/plugins/generic/googleScholar/locale/en_US/locale.po b/plugins/generic/googleScholar/locale/en_US/locale.po deleted file mode 100644 index ac102ab7922..00000000000 --- a/plugins/generic/googleScholar/locale/en_US/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" -"Language: \n" - -msgid "plugins.generic.googleScholar.name" -msgstr "Google Scholar Indexing Plugin" - -msgid "plugins.generic.googleScholar.description" -msgstr "This plugin enables indexing of published content in Google Scholar." diff --git a/plugins/generic/googleScholar/locale/es/locale.po b/plugins/generic/googleScholar/locale/es/locale.po new file mode 100644 index 00000000000..93dd89112d7 --- /dev/null +++ b/plugins/generic/googleScholar/locale/es/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-29 11:38+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish \n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Módulo de indexación Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Este módulo habilita la indexación del contenido publicado en Google Scholar." diff --git a/plugins/generic/googleScholar/locale/es_ES/locale.po b/plugins/generic/googleScholar/locale/es_ES/locale.po deleted file mode 100644 index 6cb91841af5..00000000000 --- a/plugins/generic/googleScholar/locale/es_ES/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-29 11:38+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.googleScholar.description" -msgstr "" -"Este módulo habilita la indexación del contenido publicado en Google Scholar." - -msgid "plugins.generic.googleScholar.name" -msgstr "Módulo de indexación Google Scholar" diff --git a/plugins/generic/googleScholar/locale/fi/locale.po b/plugins/generic/googleScholar/locale/fi/locale.po new file mode 100644 index 00000000000..9231e320f5d --- /dev/null +++ b/plugins/generic/googleScholar/locale/fi/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-12-11 20:34+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi_FI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Google Scholar indeksointilisäosa" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Tämä lisäosa mahdollistaa julkaistun sisällön indeksoinnin Google Scholar -" +"palveluun." diff --git a/plugins/generic/googleScholar/locale/fi_FI/locale.po b/plugins/generic/googleScholar/locale/fi_FI/locale.po deleted file mode 100644 index 678e67dfb68..00000000000 --- a/plugins/generic/googleScholar/locale/fi_FI/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-11 20:34+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.googleScholar.description" -msgstr "" -"Tämä lisäosa mahdollistaa julkaistun sisällön indeksoinnin Google Scholar " -"-palveluun." - -msgid "plugins.generic.googleScholar.name" -msgstr "Google Scholar indeksointilisäosa" diff --git a/plugins/generic/googleScholar/locale/fr_CA/locale.po b/plugins/generic/googleScholar/locale/fr_CA/locale.po new file mode 100644 index 00000000000..5a4b45fceb2 --- /dev/null +++ b/plugins/generic/googleScholar/locale/fr_CA/locale.po @@ -0,0 +1,8 @@ +# Weblate Admin , 2023. +msgid "" +msgstr "" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" diff --git a/plugins/generic/googleScholar/locale/fr_FR/locale.po b/plugins/generic/googleScholar/locale/fr_FR/locale.po new file mode 100644 index 00000000000..88713673c65 --- /dev/null +++ b/plugins/generic/googleScholar/locale/fr_FR/locale.po @@ -0,0 +1,20 @@ +# Weblate Admin , 2023. +# Germán Huélamo Bautista , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-08-02 17:58+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Plugin d’indexation Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "Ce module permet d’indexer le contenu publié dans Google Scholar." diff --git a/plugins/generic/googleScholar/locale/gl/locale.po b/plugins/generic/googleScholar/locale/gl/locale.po new file mode 100644 index 00000000000..d5735cecd9f --- /dev/null +++ b/plugins/generic/googleScholar/locale/gl/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-20 08:54+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Complemento de indexación de Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Este complemento permite indexar o contido publicado en Google Scholar." diff --git a/plugins/generic/googleScholar/locale/hr/locale.po b/plugins/generic/googleScholar/locale/hr/locale.po new file mode 100644 index 00000000000..900a43862a4 --- /dev/null +++ b/plugins/generic/googleScholar/locale/hr/locale.po @@ -0,0 +1,21 @@ +# Karla Zapalac , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-01-27 17:48+0000\n" +"Last-Translator: Karla Zapalac \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Dodatak za indeksiranje u Google znalcu" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Ovaj dodatak omogućuje indeksiranje objavljenog sadržaja u Google znalcu." diff --git a/plugins/generic/googleScholar/locale/hu/locale.po b/plugins/generic/googleScholar/locale/hu/locale.po new file mode 100644 index 00000000000..6b00b6286b5 --- /dev/null +++ b/plugins/generic/googleScholar/locale/hu/locale.po @@ -0,0 +1,21 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-29 22:43+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Google Scholar indexelő bővítmény" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Ez a bővítmény lehetővé teszi a közzétett tartalmak indexelését a Google " +"Scholarban." diff --git a/plugins/generic/googleScholar/locale/mk/locale.po b/plugins/generic/googleScholar/locale/mk/locale.po new file mode 100644 index 00000000000..3fccda4c21a --- /dev/null +++ b/plugins/generic/googleScholar/locale/mk/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-06 17:52+0000\n" +"Last-Translator: Blagoja Grozdanovski \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Приклучок за индексирање на Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Овој приклучок овозможува индексирање на објавената содржина во Google " +"Scholar." diff --git a/plugins/generic/googleScholar/locale/mk_MK/locale.po b/plugins/generic/googleScholar/locale/mk_MK/locale.po deleted file mode 100644 index 2151d97230d..00000000000 --- a/plugins/generic/googleScholar/locale/mk_MK/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-06 17:52+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.googleScholar.description" -msgstr "" -"Овој приклучок овозможува индексирање на објавената содржина во Google " -"Scholar." - -msgid "plugins.generic.googleScholar.name" -msgstr "Приклучок за индексирање на Google Scholar" diff --git a/plugins/generic/googleScholar/locale/nb/locale.po b/plugins/generic/googleScholar/locale/nb/locale.po new file mode 100644 index 00000000000..84e4a5179c2 --- /dev/null +++ b/plugins/generic/googleScholar/locale/nb/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-22 10:19+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Google Scholar-indeksering" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Programtillegget gjør at publisert materiale indekseres i Google Scholar." diff --git a/plugins/generic/googleScholar/locale/nb_NO/locale.po b/plugins/generic/googleScholar/locale/nb_NO/locale.po deleted file mode 100644 index 105d463fd5d..00000000000 --- a/plugins/generic/googleScholar/locale/nb_NO/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-22 10:19+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.googleScholar.description" -msgstr "" -"Programtillegget gjør at publisert materiale indekseres i Google Scholar." - -msgid "plugins.generic.googleScholar.name" -msgstr "Google Scholar-indeksering" diff --git a/plugins/generic/googleScholar/locale/pl/locale.po b/plugins/generic/googleScholar/locale/pl/locale.po new file mode 100644 index 00000000000..1d567e76d43 --- /dev/null +++ b/plugins/generic/googleScholar/locale/pl/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-10 19:07+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Wtyczka Indeksująca Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "Wtyczka aktywuje indeksowanie treści opublikowanych w Google Scholar." diff --git a/plugins/generic/googleScholar/locale/pl_PL/locale.po b/plugins/generic/googleScholar/locale/pl_PL/locale.po deleted file mode 100644 index b241cbded2c..00000000000 --- a/plugins/generic/googleScholar/locale/pl_PL/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-10 19:07+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.googleScholar.description" -msgstr "Wtyczka aktywuje indeksowanie treści opublikowanych w Google Scholar." - -msgid "plugins.generic.googleScholar.name" -msgstr "Wtyczka Indeksująca Google Scholar" diff --git a/plugins/generic/googleScholar/locale/pt_BR/locale.po b/plugins/generic/googleScholar/locale/pt_BR/locale.po index 7233f414d15..4669e81126b 100644 --- a/plugins/generic/googleScholar/locale/pt_BR/locale.po +++ b/plugins/generic/googleScholar/locale/pt_BR/locale.po @@ -11,9 +11,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" +msgid "plugins.generic.googleScholar.name" +msgstr "Plugin de indexação do Google Scholar" + msgid "plugins.generic.googleScholar.description" msgstr "" "Este plugin permite a indexação de conteúdo publicado no Google Scholar." - -msgid "plugins.generic.googleScholar.name" -msgstr "Plugin de indexação do Google Scholar" diff --git a/plugins/generic/googleScholar/locale/pt_PT/locale.po b/plugins/generic/googleScholar/locale/pt_PT/locale.po new file mode 100644 index 00000000000..6f3b3b9bde3 --- /dev/null +++ b/plugins/generic/googleScholar/locale/pt_PT/locale.po @@ -0,0 +1,20 @@ +# Carla Marques , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-03 12:44+0000\n" +"Last-Translator: Carla Marques \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Plugin de indexação no Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Este plugin permite a indexação do conteúdo publicado no Google Scholar." diff --git a/plugins/generic/googleScholar/locale/ro/locale.po b/plugins/generic/googleScholar/locale/ro/locale.po new file mode 100644 index 00000000000..8a7637d38e8 --- /dev/null +++ b/plugins/generic/googleScholar/locale/ro/locale.po @@ -0,0 +1,21 @@ +# Iusan Daria , 2024. +# Ruxandra Berescu , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-03 17:39+0000\n" +"Last-Translator: Ruxandra Berescu \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Plugin de indexare Google Scholar" + +msgid "plugins.generic.googleScholar.description" +msgstr "Acest plugin permite indexarea conținutului publicat în Google Scholar." diff --git a/plugins/generic/googleScholar/locale/ru/locale.po b/plugins/generic/googleScholar/locale/ru/locale.po new file mode 100644 index 00000000000..50bc14e5cad --- /dev/null +++ b/plugins/generic/googleScholar/locale/ru/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:22+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:22+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Модуль «Индексирование в Академии Google»" + +msgid "plugins.generic.googleScholar.description" +msgstr "Включает индексирование опубликованного контента в Академии Google." diff --git a/plugins/generic/googleScholar/locale/ru_RU/locale.po b/plugins/generic/googleScholar/locale/ru_RU/locale.po deleted file mode 100644 index 23d1b42bc6e..00000000000 --- a/plugins/generic/googleScholar/locale/ru_RU/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:22+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:22+00:00\n" -"Language: \n" - -msgid "plugins.generic.googleScholar.name" -msgstr "Модуль «Индексирование в Академии Google»" - -msgid "plugins.generic.googleScholar.description" -msgstr "Включает индексирование опубликованного контента в Академии Google." diff --git a/plugins/generic/googleScholar/locale/sv/locale.po b/plugins/generic/googleScholar/locale/sv/locale.po new file mode 100644 index 00000000000..e1306df2a13 --- /dev/null +++ b/plugins/generic/googleScholar/locale/sv/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-11 11:28+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Google Scholar-indexering" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Denna plugin möjliggör Google Scholar-indexering av publicerat innehåll." diff --git a/plugins/generic/googleScholar/locale/tr/locale.po b/plugins/generic/googleScholar/locale/tr/locale.po new file mode 100644 index 00000000000..45ae7c90b0e --- /dev/null +++ b/plugins/generic/googleScholar/locale/tr/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-21 18:54+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Google Akademik Dizinleme Eklentisi" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Bu eklenti, Google Akademik'te yayınlanan içeriğin dizinlenmesine imkan " +"tanır." diff --git a/plugins/generic/googleScholar/locale/uk/locale.po b/plugins/generic/googleScholar/locale/uk/locale.po new file mode 100644 index 00000000000..283264d4888 --- /dev/null +++ b/plugins/generic/googleScholar/locale/uk/locale.po @@ -0,0 +1,21 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-25 08:49+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "Плагін індексування в Google Академії" + +msgid "plugins.generic.googleScholar.description" +msgstr "" +"Цей плагін дає змогу індексувати опубліковані матеріали в Google Академії." diff --git a/plugins/generic/googleScholar/locale/uk_UA/locale.po b/plugins/generic/googleScholar/locale/uk_UA/locale.po deleted file mode 100644 index 74de0ae5d15..00000000000 --- a/plugins/generic/googleScholar/locale/uk_UA/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.googleScholar.description" -msgstr "" -"Цей плагін дає змогу індексувати опубліковані матеріали в \"Академії Google\"" -"." - -msgid "plugins.generic.googleScholar.name" -msgstr "Плагін індексації \"Google Scholar\"" diff --git a/plugins/generic/googleScholar/locale/vi/locale.po b/plugins/generic/googleScholar/locale/vi/locale.po new file mode 100644 index 00000000000..7fa9adcac05 --- /dev/null +++ b/plugins/generic/googleScholar/locale/vi/locale.po @@ -0,0 +1,12 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "plugins.generic.googleScholar.name" +msgstr "" + +msgid "plugins.generic.googleScholar.description" +msgstr "" diff --git a/plugins/generic/googleScholar/locale/vi_VN/locale.po b/plugins/generic/googleScholar/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/generic/googleScholar/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/generic/htmlMonographFile/HtmlMonographFilePlugin.inc.php b/plugins/generic/htmlMonographFile/HtmlMonographFilePlugin.inc.php deleted file mode 100644 index d30bbb266b8..00000000000 --- a/plugins/generic/htmlMonographFile/HtmlMonographFilePlugin.inc.php +++ /dev/null @@ -1,239 +0,0 @@ -getEnabled($mainContextId)) { - HookRegistry::register('CatalogBookHandler::view', array($this, 'viewCallback')); - HookRegistry::register('CatalogBookHandler::download', array($this, 'downloadCallback')); - } - return true; - } - return false; - } - - /** - * Install default settings on press creation. - * @return string - */ - function getContextSpecificPluginSettingsFile() { - return $this->getPluginPath() . '/settings.xml'; - } - - /** - * Get the display name of this plugin. - * @return String - */ - function getDisplayName() { - return __('plugins.generic.htmlMonographFile.displayName'); - } - - /** - * Get a description of the plugin. - */ - function getDescription() { - return __('plugins.generic.htmlMonographFile.description'); - } - - /** - * Callback to view the HTML content rather than downloading. - * @param $hookName string - * @param $args array - * @return boolean - */ - function viewCallback($hookName, $params) { - $submission =& $params[1]; - $publicationFormat =& $params[2]; - $submissionFile =& $params[3]; - $inline =& $params[4]; - $request = Application::get()->getRequest(); - - $mimetype = $submissionFile->getData('mimetype'); - if ($submissionFile && $mimetype == 'text/html') { - foreach ($submission->getData('publications') as $publication) { - if ($publication->getId() === $publicationFormat->getData('publicationId')) { - $filePublication = $publication; - break; - } - } - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign(array( - 'pluginUrl' => $request->getBaseUrl() . '/' . $this->getPluginPath(), - 'monograph' => $submission, - 'publicationFormat' => $publicationFormat, - 'downloadFile' => $submissionFile, - 'isLatestPublication' => $submission->getData('currentPublicationId') === $publicationFormat->getData('publicationId'), - 'filePublication' => $filePublication, - )); - $templateMgr->display($this->getTemplateResource('display.tpl')); - return true; - } - - return false; - } - - /** - * Callback to rewrite and serve HTML content. - * @param string $hookName - * @param array $args - */ - function downloadCallback($hookName, $params) { - $submission =& $params[1]; - $publicationFormat =& $params[2]; - $submissionFile =& $params[3]; - $inline =& $params[4]; - $request = Application::get()->getRequest(); - - $mimetype = $submissionFile->getData('mimetype'); - if ($submissionFile && $mimetype == 'text/html') { - if (!HookRegistry::call('HtmlMonographFilePlugin::monographDownload', array(&$this, &$submission, &$publicationFormat, &$submissionFile, &$inline))) { - echo $this->_getHTMLContents($request, $submission, $publicationFormat, $submissionFile); - $returner = true; - HookRegistry::call('HtmlMonographFilePlugin::monographDownloadFinished', array(&$returner)); - return true; - } - } - - return false; - } - /** - * Return string containing the contents of the HTML file. - * This function performs any necessary filtering, like image URL replacement. - * @param $request PKPRequest - * @param $monograph Monograph - * @param $publicationFormat PublicationFormat - * @param $submissionFile SubmissionFile - * @return string - */ - function _getHTMLContents($request, $monograph, $publicationFormat, $submissionFile) { - $contents = Services::get('file')->fs->read($submissionFile->getData('path')); - - // Replace media file references - import('lib.pkp.classes.submission.SubmissionFile'); // Constants - $proofFiles = Services::get('submissionFile')->getMany([ - 'submissionIds' => [$monograph->getId()], - 'fileStages' => [SUBMISSION_FILE_PROOF], - ]); - $dependentFiles = Services::get('submissionFile')->getMany([ - 'submissionIds' => [$monograph->getId()], - 'fileStages' => [SUBMISSION_FILE_DEPENDENT], - 'assocTypes' => [ASSOC_TYPE_SUBMISSION_FILE], - 'assocIds' => [$submissionFile->getId()], - ]); - $embeddableFiles = array_merge( - iterator_to_array($proofFiles), - iterator_to_array($dependentFiles) - ); - - foreach ($embeddableFiles as $embeddableFile) { - $fileUrl = $request->url(null, 'catalog', 'download', array($monograph->getBestId(), 'version', $publicationFormat->getData('publicationId'), $publicationFormat->getBestId(), $embeddableFile->getBestId()), array('inline' => true)); - $pattern = preg_quote($embeddableFile->getLocalizedData('name')); - - $contents = preg_replace( - '/([Ss][Rr][Cc]|[Hh][Rr][Ee][Ff]|[Dd][Aa][Tt][Aa])\s*=\s*"([^"]*' . $pattern . ')"/', - '\1="' . $fileUrl . '"', - $contents - ); - - // Replacement for Flowplayer - $contents = preg_replace( - '/[Uu][Rr][Ll]\s*\:\s*\'(' . $pattern . ')\'/', - 'url:\'' . $fileUrl . '\'', - $contents - ); - - // Replacement for other players (tested with odeo; yahoo and google player won't work w/ OJS URLs, might work for others) - $contents = preg_replace( - '/[Uu][Rr][Ll]=([^"]*' . $pattern . ')/', - 'url=' . $fileUrl , - $contents - ); - - } - - // Perform replacement for ojs://... URLs - $contents = preg_replace_callback( - '/(<[^<>]*")[Oo][Mm][Pp]:\/\/([^"]+)("[^<>]*>)/', - array(&$this, '_handleOmpUrl'), - $contents - ); - - $templateMgr = TemplateManager::getManager($request); - $contents = $templateMgr->loadHtmlGalleyStyles($contents, $embeddableFiles); - - // Perform variable replacement for press, publication format, site info - $press = $request->getPress(); - $site = $request->getSite(); - - $paramArray = array( - 'pressTitle' => $press->getLocalizedName(), - 'siteTitle' => $site->getLocalizedTitle(), - 'currentUrl' => $request->getRequestUrl() - ); - - foreach ($paramArray as $key => $value) { - $contents = str_replace('{$' . $key . '}', $value, $contents); - } - - return $contents; - } - - function _handleOmpUrl($matchArray) { - $request = Application::get()->getRequest(); - $url = $matchArray[2]; - $anchor = null; - if (($i = strpos($url, '#')) !== false) { - $anchor = substr($url, $i+1); - $url = substr($url, 0, $i); - } - $urlParts = explode('/', $url); - if (isset($urlParts[0])) switch(strtolower_codesafe($urlParts[0])) { - case 'press': - $url = $request->url( - isset($urlParts[1]) ? $urlParts[1] : $request->getRequestedPressPath(), - null, null, null, null, $anchor - ); - break; - case 'monograph': - if (isset($urlParts[1])) { - $url = $request->url( - null, 'catalog', 'book', - $urlParts[1], null, $anchor - ); - } - break; - case 'sitepublic': - array_shift($urlParts); - import ('classes.file.PublicFileManager'); - $publicFileManager = new PublicFileManager(); - $url = $request->getBaseUrl() . '/' . $publicFileManager->getSiteFilesPath() . '/' . implode('/', $urlParts) . ($anchor?'#' . $anchor:''); - break; - case 'public': - array_shift($urlParts); - $press = $request->getPress(); - import ('classes.file.PublicFileManager'); - $publicFileManager = new PublicFileManager(); - $url = $request->getBaseUrl() . '/' . $publicFileManager->getContextFilesPath($press->getId()) . '/' . implode('/', $urlParts) . ($anchor?'#' . $anchor:''); - break; - } - return $matchArray[1] . $url . $matchArray[3]; - } -} diff --git a/plugins/generic/htmlMonographFile/HtmlMonographFilePlugin.php b/plugins/generic/htmlMonographFile/HtmlMonographFilePlugin.php new file mode 100644 index 00000000000..8683aad0e24 --- /dev/null +++ b/plugins/generic/htmlMonographFile/HtmlMonographFilePlugin.php @@ -0,0 +1,286 @@ +getEnabled($mainContextId)) { + Hook::add('CatalogBookHandler::view', [$this, 'viewCallback']); + Hook::add('CatalogBookHandler::download', [$this, 'downloadCallback']); + } + return true; + } + return false; + } + + /** + * Install default settings on press creation. + * + * @return string + */ + public function getContextSpecificPluginSettingsFile() + { + return $this->getPluginPath() . '/settings.xml'; + } + + /** + * Get the display name of this plugin. + * + * @return string + */ + public function getDisplayName() + { + return __('plugins.generic.htmlMonographFile.displayName'); + } + + /** + * Get a description of the plugin. + */ + public function getDescription() + { + return __('plugins.generic.htmlMonographFile.description'); + } + + /** + * Callback to view the HTML content rather than downloading. + * + * @param string $hookName + * + * @return bool + */ + public function viewCallback($hookName, $params) + { + $submission = & $params[1]; + $publicationFormat = & $params[2]; + $submissionFile = & $params[3]; + $inline = & $params[4]; + $request = Application::get()->getRequest(); + + $mimetype = $submissionFile->getData('mimetype'); + if ($submissionFile && $mimetype == 'text/html') { + /** @var ?Publication */ + $filePublication = null; + foreach ($submission->getData('publications') as $publication) { + if ($publication->getId() === $publicationFormat->getData('publicationId')) { + $filePublication = $publication; + break; + } + } + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign([ + 'pluginUrl' => $request->getBaseUrl() . '/' . $this->getPluginPath(), + 'monograph' => $submission, + 'publicationFormat' => $publicationFormat, + 'downloadFile' => $submissionFile, + 'isLatestPublication' => $submission->getData('currentPublicationId') === $publicationFormat->getData('publicationId'), + 'filePublication' => $filePublication, + ]); + $templateMgr->display($this->getTemplateResource('display.tpl')); + return true; + } + + return false; + } + + /** + * Callback to rewrite and serve HTML content. + * + * @param string $hookName + */ + public function downloadCallback($hookName, $params) + { + $submission = & $params[1]; + $publicationFormat = & $params[2]; + $submissionFile = & $params[3]; + $inline = & $params[4]; + $request = Application::get()->getRequest(); + + $mimetype = $submissionFile->getData('mimetype'); + if ($submissionFile && $mimetype == 'text/html') { + if (!Hook::call('HtmlMonographFilePlugin::monographDownload', [&$this, &$submission, &$publicationFormat, &$submissionFile, &$inline])) { + echo $this->_getHTMLContents($request, $submission, $publicationFormat, $submissionFile); + $returner = true; + Hook::call('HtmlMonographFilePlugin::monographDownloadFinished', [&$returner]); + + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + $chapter = $chapterDao->getChapter($submissionFile->getData('chapterId')); + event(new UsageEvent(Application::ASSOC_TYPE_SUBMISSION_FILE, $request->getContext(), $submission, $publicationFormat, $submissionFile, $chapter)); + return true; + } + } + + return false; + } + + /** + * Return string containing the contents of the HTML file. + * This function performs any necessary filtering, like image URL replacement. + * + * @param Request $request + * @param Submission $monograph + * @param PublicationFormat $publicationFormat + * @param SubmissionFile $submissionFile + * + * @return string + */ + public function _getHTMLContents($request, $monograph, $publicationFormat, $submissionFile) + { + $contents = Services::get('file')->fs->read($submissionFile->getData('path')); + + // Replace media file references + $proofCollector = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$monograph->getId()]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_PROOF]); + + $dependentCollector = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$monograph->getId()]) + ->filterByFileStages([SubmissionFile::SUBMISSION_FILE_DEPENDENT]) + ->filterByAssoc( + Application::ASSOC_TYPE_SUBMISSION_FILE, + [$submissionFile->getId()] + ); + + $embeddableFiles = array_merge( + $proofCollector->getMany()->toArray(), + $dependentCollector->getMany()->toArray() + ); + + foreach ($embeddableFiles as $embeddableFile) { + $fileUrl = $request->url(null, 'catalog', 'download', [$monograph->getBestId(), 'version', $publicationFormat->getData('publicationId'), $publicationFormat->getBestId(), $embeddableFile->getBestId()], ['inline' => true]); + $pattern = preg_quote($embeddableFile->getLocalizedData('name'), '/'); + + $contents = preg_replace( + '/([Ss][Rr][Cc]|[Hh][Rr][Ee][Ff]|[Dd][Aa][Tt][Aa])\s*=\s*"([^"]*' . $pattern . ')"/', + '\1="' . $fileUrl . '"', + $contents + ); + + // Replacement for Flowplayer + $contents = preg_replace( + '/[Uu][Rr][Ll]\s*\:\s*\'(' . $pattern . ')\'/', + 'url:\'' . $fileUrl . '\'', + $contents + ); + + // Replacement for other players (tested with odeo; yahoo and google player won't work w/ OJS URLs, might work for others) + $contents = preg_replace( + '/[Uu][Rr][Ll]=([^"]*' . $pattern . ')/', + 'url=' . $fileUrl, + $contents + ); + } + + // Perform replacement for ojs://... URLs + $contents = preg_replace_callback( + '/(<[^<>]*")[Oo][Mm][Pp]:\/\/([^"]+)("[^<>]*>)/', + [&$this, '_handleOmpUrl'], + $contents + ); + + $templateMgr = TemplateManager::getManager($request); + $contents = $templateMgr->loadHtmlGalleyStyles($contents, $embeddableFiles); + + // Perform variable replacement for press, publication format, site info + $press = $request->getPress(); + $site = $request->getSite(); + + $paramArray = [ + 'pressTitle' => $press->getLocalizedName(), + 'siteTitle' => $site->getLocalizedTitle(), + 'currentUrl' => $request->getRequestUrl() + ]; + + foreach ($paramArray as $key => $value) { + $contents = str_replace('{$' . $key . '}', $value, $contents); + } + + return $contents; + } + + public function _handleOmpUrl($matchArray) + { + $request = Application::get()->getRequest(); + $url = $matchArray[2]; + $anchor = null; + if (($i = strpos($url, '#')) !== false) { + $anchor = substr($url, $i + 1); + $url = substr($url, 0, $i); + } + $urlParts = explode('/', $url); + if (isset($urlParts[0])) { + switch (strtolower_codesafe($urlParts[0])) { + case 'press': + $url = $request->url( + $urlParts[1] ?? $request->getRouter()->getRequestedContextPath($request), + null, + null, + null, + null, + $anchor + ); + break; + case 'monograph': + if (isset($urlParts[1])) { + $url = $request->url( + null, + 'catalog', + 'book', + $urlParts[1], + null, + $anchor + ); + } + break; + case 'sitepublic': + array_shift($urlParts); + $publicFileManager = new PublicFileManager(); + $url = $request->getBaseUrl() . '/' . $publicFileManager->getSiteFilesPath() . '/' . implode('/', $urlParts) . ($anchor ? '#' . $anchor : ''); + break; + case 'public': + array_shift($urlParts); + $press = $request->getPress(); + $publicFileManager = new PublicFileManager(); + $url = $request->getBaseUrl() . '/' . $publicFileManager->getContextFilesPath($press->getId()) . '/' . implode('/', $urlParts) . ($anchor ? '#' . $anchor : ''); + break; + } + } + return $matchArray[1] . $url . $matchArray[3]; + } +} diff --git a/plugins/generic/htmlMonographFile/index.php b/plugins/generic/htmlMonographFile/index.php deleted file mode 100644 index c4a6734eca8..00000000000 --- a/plugins/generic/htmlMonographFile/index.php +++ /dev/null @@ -1,22 +0,0 @@ -, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-18 10:06+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML файл с монография" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" +"Този плъгин предоставя поддръжка за изобразяване на файлове с HTML " +"монография." diff --git a/plugins/generic/htmlMonographFile/locale/ca/locale.po b/plugins/generic/htmlMonographFile/locale/ca/locale.po new file mode 100644 index 00000000000..2e783a24013 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/ca/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-20 09:39+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Catalan \n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "Arxiu de monografia HTML" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" +"Aquest mòdul proporciona suport de renderització per a arxius de monografia " +"HTML." diff --git a/plugins/generic/htmlMonographFile/locale/ca_ES/locale.po b/plugins/generic/htmlMonographFile/locale/ca_ES/locale.po deleted file mode 100644 index 8753dbd4908..00000000000 --- a/plugins/generic/htmlMonographFile/locale/ca_ES/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-20 09:39+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Catalan \n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "" -"Aquest mòdul proporciona suport de renderització per a arxius de monografia " -"HTML." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "Arxiu de monografia HTML" diff --git a/plugins/generic/htmlMonographFile/locale/cs/locale.po b/plugins/generic/htmlMonographFile/locale/cs/locale.po new file mode 100644 index 00000000000..f03225c47bc --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/cs/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-05 09:46+0000\n" +"Last-Translator: Radek Gomola \n" +"Language-Team: Czech \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML formát pro soubory monografií" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Plugin poskytuje podporu pro zobrazování obsahu ve formátu HTML." diff --git a/plugins/generic/htmlMonographFile/locale/cs_CZ/locale.po b/plugins/generic/htmlMonographFile/locale/cs_CZ/locale.po deleted file mode 100644 index c797c0e1ea6..00000000000 --- a/plugins/generic/htmlMonographFile/locale/cs_CZ/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-05 09:46+0000\n" -"Last-Translator: Radek Gomola \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "Plugin poskytuje podporu pro zobrazování obsahu ve formátu HTML." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "HTML formát pro soubory monografií" diff --git a/plugins/generic/htmlMonographFile/locale/da/locale.po b/plugins/generic/htmlMonographFile/locale/da/locale.po new file mode 100644 index 00000000000..517f28a6ac9 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/da/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-07 10:35+0000\n" +"Last-Translator: Niels Erik Frederiksen \n" +"Language-Team: Danish \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML monografifil" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Denne plugin giver renderings-support til HTML-monografifiler." diff --git a/plugins/generic/htmlMonographFile/locale/da_DK/locale.po b/plugins/generic/htmlMonographFile/locale/da_DK/locale.po deleted file mode 100644 index 42211299127..00000000000 --- a/plugins/generic/htmlMonographFile/locale/da_DK/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-07 10:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "Denne plugin giver renderings-support til HTML-monografifiler." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "HTML monografifil" diff --git a/plugins/generic/htmlMonographFile/locale/da_DK/locale.xml b/plugins/generic/htmlMonographFile/locale/da_DK/locale.xml deleted file mode 100644 index 6b1f9d7864f..00000000000 --- a/plugins/generic/htmlMonographFile/locale/da_DK/locale.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - HTML-monografi-fil - This plugin provides rendering support for HTML Monograph Files. - diff --git a/plugins/generic/htmlMonographFile/locale/de/locale.po b/plugins/generic/htmlMonographFile/locale/de/locale.po new file mode 100644 index 00000000000..2b671798e68 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/de/locale.po @@ -0,0 +1,19 @@ +# Pia Piontkowitz , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-26 17:49+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML Monographie Datei" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Dieses Plugin bietet Rendering Support für HTML Monographiedateien." diff --git a/plugins/generic/htmlMonographFile/locale/en/locale.po b/plugins/generic/htmlMonographFile/locale/en/locale.po new file mode 100644 index 00000000000..aa20285c571 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/en/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML Monograph File" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "This plugin provides rendering support for HTML Monograph Files." diff --git a/plugins/generic/htmlMonographFile/locale/en_US/locale.po b/plugins/generic/htmlMonographFile/locale/en_US/locale.po deleted file mode 100644 index 29a49081d24..00000000000 --- a/plugins/generic/htmlMonographFile/locale/en_US/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" -"Language: \n" - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "HTML Monograph File" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "This plugin provides rendering support for HTML Monograph Files." diff --git a/plugins/generic/htmlMonographFile/locale/es/locale.po b/plugins/generic/htmlMonographFile/locale/es/locale.po new file mode 100644 index 00000000000..0abcfeccbd1 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/es/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-18 18:39+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish \n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "Archivo de monografía HTML" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" +"Este módulo proporciona soporte de renderización para archivos de monografía " +"HTML." diff --git a/plugins/generic/htmlMonographFile/locale/es_ES/locale.po b/plugins/generic/htmlMonographFile/locale/es_ES/locale.po deleted file mode 100644 index 9a08b9fa5a8..00000000000 --- a/plugins/generic/htmlMonographFile/locale/es_ES/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-18 18:39+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "" -"Este módulo proporciona soporte de renderización para archivos de monografía " -"HTML." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "Archivo de monografía HTML" diff --git a/plugins/generic/htmlMonographFile/locale/fi/locale.po b/plugins/generic/htmlMonographFile/locale/fi/locale.po new file mode 100644 index 00000000000..aa87e068b55 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/fi/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-18 16:48+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi_FI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML-kokoteksti" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Tämä lisäosa tukee HTML-muotoisten kirjojen esittämistä." diff --git a/plugins/generic/htmlMonographFile/locale/fi_FI/locale.po b/plugins/generic/htmlMonographFile/locale/fi_FI/locale.po deleted file mode 100644 index 6617b65a5fe..00000000000 --- a/plugins/generic/htmlMonographFile/locale/fi_FI/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-18 16:48+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "Tämä lisäosa tukee HTML-muotoisten kirjojen esittämistä." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "HTML-kokoteksti" diff --git a/plugins/generic/htmlMonographFile/locale/fr_CA/locale.po b/plugins/generic/htmlMonographFile/locale/fr_CA/locale.po new file mode 100644 index 00000000000..5a4b45fceb2 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/fr_CA/locale.po @@ -0,0 +1,8 @@ +# Weblate Admin , 2023. +msgid "" +msgstr "" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" diff --git a/plugins/generic/htmlMonographFile/locale/fr_FR/locale.po b/plugins/generic/htmlMonographFile/locale/fr_FR/locale.po new file mode 100644 index 00000000000..727e0f02392 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/fr_FR/locale.po @@ -0,0 +1,21 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-24 08:49+0000\n" +"Last-Translator: Rudy Hahusseau \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" +"Ce plugin fournit un support de rendu pour les fichiers HTML de monographie." + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "Fichier HTML de monographie" diff --git a/plugins/generic/htmlMonographFile/locale/gl/locale.po b/plugins/generic/htmlMonographFile/locale/gl/locale.po new file mode 100644 index 00000000000..3701a29f949 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/gl/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-20 08:54+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "Arquivo HTML da monografía" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" +"Este complemento ofrece soporte para renderizar arquivos HTML das " +"monografías." diff --git a/plugins/generic/htmlMonographFile/locale/hr/locale.po b/plugins/generic/htmlMonographFile/locale/hr/locale.po new file mode 100644 index 00000000000..283964b56b4 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/hr/locale.po @@ -0,0 +1,20 @@ +# Karla Zapalac , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-01-27 17:48+0000\n" +"Last-Translator: Karla Zapalac \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML monografska datoteka" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Ovaj dodatak pruža podršku za renderiranje HTML monografskih datoteka." diff --git a/plugins/generic/htmlMonographFile/locale/hu/locale.po b/plugins/generic/htmlMonographFile/locale/hu/locale.po new file mode 100644 index 00000000000..81f3d1c0ed8 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/hu/locale.po @@ -0,0 +1,19 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-29 22:43+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML kiadvány fájl" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Ez a bővítmény támogatja a HTML kiadvány fájlok megjelenítését." diff --git a/plugins/generic/htmlMonographFile/locale/it/locale.po b/plugins/generic/htmlMonographFile/locale/it/locale.po new file mode 100644 index 00000000000..7fddf168f3b --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/it/locale.po @@ -0,0 +1,21 @@ +# Alfredo Cosco , 2021. +msgid "" +msgstr "" +"PO-Revision-Date: 2021-08-21 11:05+0000\n" +"Last-Translator: Alfredo Cosco \n" +"Language-Team: Italian \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "Monografia in HTML" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" +"Questo plugin fornisce supporto per il rendering in HTML dei file di " +"monografie." diff --git a/plugins/generic/htmlMonographFile/locale/mk/locale.po b/plugins/generic/htmlMonographFile/locale/mk/locale.po new file mode 100644 index 00000000000..2abab2ce1ea --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/mk/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-06 17:52+0000\n" +"Last-Translator: Blagoja Grozdanovski \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML-монографска датотека" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" +"Овој приклучок обезбедува поддршка за рендерирање на HTML монографски " +"датотеки." diff --git a/plugins/generic/htmlMonographFile/locale/mk_MK/locale.po b/plugins/generic/htmlMonographFile/locale/mk_MK/locale.po deleted file mode 100644 index e9bf1cc129b..00000000000 --- a/plugins/generic/htmlMonographFile/locale/mk_MK/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-06 17:52+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "" -"Овој приклучок обезбедува поддршка за рендерирање на HTML монографски " -"датотеки." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "HTML-монографска датотека" diff --git a/plugins/generic/htmlMonographFile/locale/nb/locale.po b/plugins/generic/htmlMonographFile/locale/nb/locale.po new file mode 100644 index 00000000000..7b58e093403 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/nb/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-22 10:19+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML Monografifil" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Dette programtillegget støtter visning av monografifiler i HTML." diff --git a/plugins/generic/htmlMonographFile/locale/nb_NO/locale.po b/plugins/generic/htmlMonographFile/locale/nb_NO/locale.po deleted file mode 100644 index 8cf46bfb554..00000000000 --- a/plugins/generic/htmlMonographFile/locale/nb_NO/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-22 10:19+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "Dette programtillegget støtter visning av monografifiler i HTML." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "HTML Monografifil" diff --git a/plugins/generic/htmlMonographFile/locale/pl/locale.po b/plugins/generic/htmlMonographFile/locale/pl/locale.po new file mode 100644 index 00000000000..f650f6da642 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/pl/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-10 19:07+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "Plik Monografii HTML" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Wtyczka dostarcza wsparcie dla Plików Monografii HTML." diff --git a/plugins/generic/htmlMonographFile/locale/pl_PL/locale.po b/plugins/generic/htmlMonographFile/locale/pl_PL/locale.po deleted file mode 100644 index 905adbd8473..00000000000 --- a/plugins/generic/htmlMonographFile/locale/pl_PL/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-10 19:07+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "Wtyczka dostarcza wsparcie dla Plików Monografii HTML." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "Plik Monografii HTML" diff --git a/plugins/generic/htmlMonographFile/locale/pt_BR/locale.po b/plugins/generic/htmlMonographFile/locale/pt_BR/locale.po index dbd99cb6c0d..d81456c5a22 100644 --- a/plugins/generic/htmlMonographFile/locale/pt_BR/locale.po +++ b/plugins/generic/htmlMonographFile/locale/pt_BR/locale.po @@ -11,10 +11,10 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "Arquivo de monografia em HTML" + msgid "plugins.generic.htmlMonographFile.description" msgstr "" "Este plugin fornece suporte de renderização para arquivos de monografia no " "formato HTML." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "Arquivo de monografia em HTML" diff --git a/plugins/generic/htmlMonographFile/locale/pt_PT/locale.po b/plugins/generic/htmlMonographFile/locale/pt_PT/locale.po new file mode 100644 index 00000000000..95f127dd11b --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/pt_PT/locale.po @@ -0,0 +1,21 @@ +# Carla Marques , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-03 14:47+0000\n" +"Last-Translator: Carla Marques \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "Ficheiro de Livro em HTML" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" +"Este plugin fornece suporte de renderização para ficheiros de livros em " +"formato HTML." diff --git a/plugins/generic/htmlMonographFile/locale/ro/locale.po b/plugins/generic/htmlMonographFile/locale/ro/locale.po new file mode 100644 index 00000000000..205a99db451 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/ro/locale.po @@ -0,0 +1,20 @@ +# Ruxandra Berescu , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-03 17:39+0000\n" +"Last-Translator: Ruxandra Berescu \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "Fișier monografic HTML" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Acest plugin oferă suport de redare pentru fișierele monografice HTML." diff --git a/plugins/generic/htmlMonographFile/locale/ru/locale.po b/plugins/generic/htmlMonographFile/locale/ru/locale.po new file mode 100644 index 00000000000..ab9e4c74eb3 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/ru/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-04 09:36+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML файл монографии" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" +"Этот модуль представляет поддержку рендеринга для HTML файлов монографии." diff --git a/plugins/generic/htmlMonographFile/locale/ru_RU/locale.po b/plugins/generic/htmlMonographFile/locale/ru_RU/locale.po deleted file mode 100644 index f48e51e862d..00000000000 --- a/plugins/generic/htmlMonographFile/locale/ru_RU/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-04 09:36+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "" -"Этот модуль представляет поддержку рендеринга для HTML файлов монографии." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "HTML файл монографии" diff --git a/plugins/generic/htmlMonographFile/locale/sv/locale.po b/plugins/generic/htmlMonographFile/locale/sv/locale.po new file mode 100644 index 00000000000..0428b55bd37 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/sv/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-11 11:28+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML-filer" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Denna plugin aktiverar stöd för publicering av HTML-filer." diff --git a/plugins/generic/htmlMonographFile/locale/tr/locale.po b/plugins/generic/htmlMonographFile/locale/tr/locale.po new file mode 100644 index 00000000000..a148cf11122 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/tr/locale.po @@ -0,0 +1,18 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-21 18:54+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML Risale Dosyası" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Bu eklenti, HTML Risale Dosyaları için işleme desteği sağlar." diff --git a/plugins/generic/htmlMonographFile/locale/uk/locale.po b/plugins/generic/htmlMonographFile/locale/uk/locale.po new file mode 100644 index 00000000000..0102bb78c28 --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/uk/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-16 14:37+0000\n" +"Last-Translator: Fylypovych Georgii \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "HTML файл монографії" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "Цей плагін надає підримку HTML-рендеру для файлів монографії." diff --git a/plugins/generic/htmlMonographFile/locale/uk_UA/locale.po b/plugins/generic/htmlMonographFile/locale/uk_UA/locale.po deleted file mode 100644 index 7fb3d6ffcba..00000000000 --- a/plugins/generic/htmlMonographFile/locale/uk_UA/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.htmlMonographFile.description" -msgstr "Цей плагін надає підримку HTML-рендеру для файлів монографії." - -msgid "plugins.generic.htmlMonographFile.displayName" -msgstr "HTML файл монографії" diff --git a/plugins/generic/htmlMonographFile/locale/vi/locale.po b/plugins/generic/htmlMonographFile/locale/vi/locale.po new file mode 100644 index 00000000000..e01606344fe --- /dev/null +++ b/plugins/generic/htmlMonographFile/locale/vi/locale.po @@ -0,0 +1,12 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "plugins.generic.htmlMonographFile.displayName" +msgstr "" + +msgid "plugins.generic.htmlMonographFile.description" +msgstr "" diff --git a/plugins/generic/htmlMonographFile/locale/vi_VN/locale.po b/plugins/generic/htmlMonographFile/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/generic/htmlMonographFile/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/generic/pdfJsViewer/PdfJsViewerPlugin.inc.php b/plugins/generic/pdfJsViewer/PdfJsViewerPlugin.inc.php deleted file mode 100644 index 10ffd7b563c..00000000000 --- a/plugins/generic/pdfJsViewer/PdfJsViewerPlugin.inc.php +++ /dev/null @@ -1,126 +0,0 @@ -getEnabled($mainContextId)) { - HookRegistry::register('CatalogBookHandler::view', array($this, 'viewCallback'), HOOK_SEQUENCE_LATE); - HookRegistry::register('CatalogBookHandler::download', array($this, 'downloadCallback'), HOOK_SEQUENCE_LATE); - } - return true; - } - return false; - } - - /** - * Install default settings on press creation. - * @return string - */ - function getContextSpecificPluginSettingsFile() { - return $this->getPluginPath() . '/settings.xml'; - } - - /** - * Get the display name of this plugin. - * @return String - */ - function getDisplayName() { - return __('plugins.generic.pdfJsViewer.displayName'); - } - - /** - * Get a description of the plugin. - */ - function getDescription() { - return __('plugins.generic.pdfJsViewer.description'); - } - - /** - * Callback to view the PDF content rather than downloading. - * @param $hookName string - * @param $args array - * @return boolean - */ - function viewCallback($hookName, $args) { - $submission =& $args[1]; - $publicationFormat =& $args[2]; - $submissionFile =& $args[3]; - - if ($submissionFile->getData('mimetype') == 'application/pdf') { - foreach ($submission->getData('publications') as $publication) { - if ($publication->getId() === $publicationFormat->getData('publicationId')) { - $filePublication = $publication; - break; - } - } - $request = Application::get()->getRequest(); - $router = $request->getRouter(); - $dispatcher = $request->getDispatcher(); - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign(array( - 'pluginUrl' => $request->getBaseUrl() . '/' . $this->getPluginPath(), - 'isLatestPublication' => $submission->getData('currentPublicationId') === $publicationFormat->getData('publicationId'), - 'filePublication' => $filePublication, - )); - - $templateMgr->display($this->getTemplateResource('display.tpl')); - return true; - } - - return false; - } - - /** - * Callback for download function - * @param $hookName string - * @param $params array - * @return boolean - */ - function downloadCallback($hookName, $params) { - $submission =& $params[1]; - $publicationFormat =& $params[2]; - $submissionFile =& $params[3]; - $inline =& $params[4]; - - $request = Application::get()->getRequest(); - $mimetype = $submissionFile->getData('mimetype'); - if ($mimetype == 'application/pdf' && $request->getUserVar('inline')) { - // Turn on the inline flag to ensure that the content - // disposition header doesn't foil the PDF embedding - // plugin. - $inline = true; - } - - // Return to regular handling - return false; - } - - /** - * Get the plugin base URL. - * @param $request PKPRequest - * @return string - */ - private function _getPluginUrl($request) { - return $request->getBaseUrl() . '/' . $this->getPluginPath(); - } -} - - diff --git a/plugins/generic/pdfJsViewer/PdfJsViewerPlugin.php b/plugins/generic/pdfJsViewer/PdfJsViewerPlugin.php new file mode 100644 index 00000000000..96db9624f1f --- /dev/null +++ b/plugins/generic/pdfJsViewer/PdfJsViewerPlugin.php @@ -0,0 +1,135 @@ +getEnabled($mainContextId)) { + Hook::add('CatalogBookHandler::view', [$this, 'viewCallback'], Hook::SEQUENCE_LATE); + Hook::add('CatalogBookHandler::download', [$this, 'downloadCallback'], Hook::SEQUENCE_LATE); + } + return true; + } + return false; + } + + /** + * Install default settings on press creation. + * + * @return string + */ + public function getContextSpecificPluginSettingsFile() + { + return $this->getPluginPath() . '/settings.xml'; + } + + /** + * Get the display name of this plugin. + * + * @return string + */ + public function getDisplayName() + { + return __('plugins.generic.pdfJsViewer.displayName'); + } + + /** + * Get a description of the plugin. + */ + public function getDescription() + { + return __('plugins.generic.pdfJsViewer.description'); + } + + /** + * Callback to view the PDF content rather than downloading. + * + * @param string $hookName + * @param array $args + * + * @return bool + */ + public function viewCallback($hookName, $args) + { + $submission = & $args[1]; + $publicationFormat = & $args[2]; + $submissionFile = & $args[3]; + + if ($submissionFile->getData('mimetype') == 'application/pdf') { + /** @var ?Publication */ + $filePublication = null; + foreach ($submission->getData('publications') as $publication) { + if ($publication->getId() === $publicationFormat->getData('publicationId')) { + $filePublication = $publication; + break; + } + } + $request = Application::get()->getRequest(); + $templateMgr = TemplateManager::getManager($request); + $templateMgr->assign([ + 'pluginUrl' => $request->getBaseUrl() . '/' . $this->getPluginPath(), + 'isLatestPublication' => $submission->getData('currentPublicationId') === $publicationFormat->getData('publicationId'), + 'filePublication' => $filePublication, + ]); + + $templateMgr->display($this->getTemplateResource('display.tpl')); + return true; + } + + return false; + } + + /** + * Callback for download function + * + * @param string $hookName + * @param array $params + * + * @return bool + */ + public function downloadCallback($hookName, $params) + { + $submission = & $params[1]; + $publicationFormat = & $params[2]; + $submissionFile = & $params[3]; + $inline = & $params[4]; + + $request = Application::get()->getRequest(); + $mimetype = $submissionFile->getData('mimetype'); + if ($mimetype == 'application/pdf' && $request->getUserVar('inline')) { + // Turn on the inline flag to ensure that the content + // disposition header doesn't foil the PDF embedding + // plugin. + $inline = true; + } + + // Return to regular handling + return false; + } +} diff --git a/plugins/generic/pdfJsViewer/index.php b/plugins/generic/pdfJsViewer/index.php deleted file mode 100644 index c47f60041a2..00000000000 --- a/plugins/generic/pdfJsViewer/index.php +++ /dev/null @@ -1,22 +0,0 @@ -, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-10 01:46+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF Визуализатор" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Този плъгин предоставя поддръжка за изобразяване на PDF файлове с помощта на " +"библиотеката PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/ca/locale.po b/plugins/generic/pdfJsViewer/locale/ca/locale.po new file mode 100644 index 00000000000..b467e545a3b --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/ca/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-18 18:39+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Catalan \n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "Visor PDF PDF.js" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Aquest mòdul proporciona suport de renderització per a PDF que utilitzin la " +"biblioteca PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/ca_ES/locale.po b/plugins/generic/pdfJsViewer/locale/ca_ES/locale.po deleted file mode 100644 index 7e6010510bc..00000000000 --- a/plugins/generic/pdfJsViewer/locale/ca_ES/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-18 18:39+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Catalan \n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "" -"Aquest mòdul proporciona suport de renderització per a PDF que utilitzin la " -"biblioteca PDF.js." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "Visor PDF PDF.js" diff --git a/plugins/generic/pdfJsViewer/locale/cs/locale.po b/plugins/generic/pdfJsViewer/locale/cs/locale.po new file mode 100644 index 00000000000..7cff58b6699 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/cs/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-11-05 09:46+0000\n" +"Last-Translator: Radek Gomola \n" +"Language-Team: Czech \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "Plugin PDF prohlížeče PDF.js" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Tento plugin poskytuje podporu pro prohlížení obsahu ve formátu PDF s " +"použitím knihovny PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/cs_CZ/locale.po b/plugins/generic/pdfJsViewer/locale/cs_CZ/locale.po deleted file mode 100644 index 3697e9bf69a..00000000000 --- a/plugins/generic/pdfJsViewer/locale/cs_CZ/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-05 09:46+0000\n" -"Last-Translator: Radek Gomola \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "" -"Tento plugin poskytuje podporu pro prohlížení obsahu ve formátu PDF s " -"použitím knihovny PDF.js." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "Plugin PDF prohlížeče PDF.js" diff --git a/plugins/generic/pdfJsViewer/locale/da/locale.po b/plugins/generic/pdfJsViewer/locale/da/locale.po new file mode 100644 index 00000000000..d634ea92b9e --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/da/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-09 18:35+0000\n" +"Last-Translator: Niels Erik Frederiksen \n" +"Language-Team: Danish \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF Viewer" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Denne plugin giver support til visning af PDF'er ved hjælp af PDF.js-" +"biblioteket." diff --git a/plugins/generic/pdfJsViewer/locale/da_DK/locale.po b/plugins/generic/pdfJsViewer/locale/da_DK/locale.po deleted file mode 100644 index 330e6ff6c8a..00000000000 --- a/plugins/generic/pdfJsViewer/locale/da_DK/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-09 18:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "" -"Denne plugin giver support til visning af PDF'er ved hjælp af PDF.js-" -"biblioteket." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "PDF.js PDF Viewer" diff --git a/plugins/generic/pdfJsViewer/locale/da_DK/locale.xml b/plugins/generic/pdfJsViewer/locale/da_DK/locale.xml deleted file mode 100644 index ffbae47cd51..00000000000 --- a/plugins/generic/pdfJsViewer/locale/da_DK/locale.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - PDF.js PDF Viewer - This plugin provides rendering support for PDFs using the PDF.js library. - diff --git a/plugins/generic/pdfJsViewer/locale/de/locale.po b/plugins/generic/pdfJsViewer/locale/de/locale.po new file mode 100644 index 00000000000..5f37c959c37 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/de/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.JS-PDF-Viewer-Plugin" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Dieses Plugin benutzt den pdf.js " +"PDF viewer, um PDFs auf den Fahnenseiten von Artikeln und Ausgaben " +"anzuzeigen." diff --git a/plugins/generic/pdfJsViewer/locale/de_DE/locale.po b/plugins/generic/pdfJsViewer/locale/de_DE/locale.po deleted file mode 100644 index d389957cd39..00000000000 --- a/plugins/generic/pdfJsViewer/locale/de_DE/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" -"Language: \n" - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "PDF.JS-PDF-Viewer-Plugin" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "Dieses Plugin benutzt den pdf.js PDF viewer, um PDFs auf den Fahnenseiten von Artikeln und Ausgaben anzuzeigen." diff --git a/plugins/generic/pdfJsViewer/locale/en/locale.po b/plugins/generic/pdfJsViewer/locale/en/locale.po new file mode 100644 index 00000000000..29a77189671 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/en/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF Viewer" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"This plugin provides rendering support for PDFs using the PDF.js library." diff --git a/plugins/generic/pdfJsViewer/locale/en_US/locale.po b/plugins/generic/pdfJsViewer/locale/en_US/locale.po deleted file mode 100644 index a837fd366f6..00000000000 --- a/plugins/generic/pdfJsViewer/locale/en_US/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" -"Language: \n" - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "PDF.js PDF Viewer" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "This plugin provides rendering support for PDFs using the PDF.js library." diff --git a/plugins/generic/pdfJsViewer/locale/es/locale.po b/plugins/generic/pdfJsViewer/locale/es/locale.po new file mode 100644 index 00000000000..c5743c79946 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/es/locale.po @@ -0,0 +1,21 @@ +# Marc Bria , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-04-29 14:49+0000\n" +"Last-Translator: Marc Bria \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "Visor PDF.js" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Este módulo proporciona soporte de renderización para PDF que utilicen " +"bibliotecas PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/es_ES/locale.po b/plugins/generic/pdfJsViewer/locale/es_ES/locale.po deleted file mode 100644 index df3ba92e060..00000000000 --- a/plugins/generic/pdfJsViewer/locale/es_ES/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-29 11:38+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "" -"Este módulo proporciona soporte de renderización para PDF que utilicen " -"bibliotecas PDF.js." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "Visor PDF PDF.js" diff --git a/plugins/generic/pdfJsViewer/locale/fa/locale.po b/plugins/generic/pdfJsViewer/locale/fa/locale.po new file mode 100644 index 00000000000..7897ede822c --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/fa/locale.po @@ -0,0 +1,3 @@ +# Forouzan Karimi , 2024. +msgid "" +msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" diff --git a/plugins/generic/pdfJsViewer/locale/fi/locale.po b/plugins/generic/pdfJsViewer/locale/fi/locale.po new file mode 100644 index 00000000000..2962a6fe7e1 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/fi/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-18 16:48+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi_FI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.JS PDF-tiedostojen katselulisäosa" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Tämä lisäosa esittää julkaistut PDF-muotoiset kirjat PDF.js-kirjaston avulla." diff --git a/plugins/generic/pdfJsViewer/locale/fi_FI/locale.po b/plugins/generic/pdfJsViewer/locale/fi_FI/locale.po deleted file mode 100644 index 41f408ad7ae..00000000000 --- a/plugins/generic/pdfJsViewer/locale/fi_FI/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-18 16:48+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "" -"Tämä lisäosa esittää julkaistut PDF-muotoiset kirjat PDF.js-kirjaston avulla." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "PDF.JS PDF-tiedostojen katselulisäosa" diff --git a/plugins/generic/pdfJsViewer/locale/fr_CA/locale.po b/plugins/generic/pdfJsViewer/locale/fr_CA/locale.po new file mode 100644 index 00000000000..5a4b45fceb2 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/fr_CA/locale.po @@ -0,0 +1,8 @@ +# Weblate Admin , 2023. +msgid "" +msgstr "" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" diff --git a/plugins/generic/pdfJsViewer/locale/fr_FR/locale.po b/plugins/generic/pdfJsViewer/locale/fr_FR/locale.po new file mode 100644 index 00000000000..7af5ad7a309 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/fr_FR/locale.po @@ -0,0 +1,23 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +# Germán Huélamo Bautista , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-08-02 17:58+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Ce module fournit un support de rendu pour les fichiers PDF utilisant la " +"bibliothèque PDF.js." + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "Plugin PDF.js l visionneuse de PDF" diff --git a/plugins/generic/pdfJsViewer/locale/gl/locale.po b/plugins/generic/pdfJsViewer/locale/gl/locale.po new file mode 100644 index 00000000000..ff73f2b3bd2 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/gl/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-20 08:54+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "Visor PDF PDF.js" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Este complemento ofrece soporte para renderizar PDF coa biblioteca PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/hr/locale.po b/plugins/generic/pdfJsViewer/locale/hr/locale.po new file mode 100644 index 00000000000..c342b4f952a --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/hr/locale.po @@ -0,0 +1,22 @@ +# Jula Dakić , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-01-26 15:49+0000\n" +"Last-Translator: Jula Dakić \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF preglednik" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Ovaj dodatak pruža podršku za renderiranje PDF-ova pomoću baze PDF.js. " +"datoteka." diff --git a/plugins/generic/pdfJsViewer/locale/hu/locale.po b/plugins/generic/pdfJsViewer/locale/hu/locale.po new file mode 100644 index 00000000000..b94fea9b7d9 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/hu/locale.po @@ -0,0 +1,20 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-29 22:43+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF megtekintő" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Ez a bővítmény támogatja a PDF.js könyvtárat használó PDF-ek megjelenítését." diff --git a/plugins/generic/pdfJsViewer/locale/mk/locale.po b/plugins/generic/pdfJsViewer/locale/mk/locale.po new file mode 100644 index 00000000000..655b8e234fe --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/mk/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-06 17:52+0000\n" +"Last-Translator: Blagoja Grozdanovski \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js Прегледувач на ПДФ документи" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Овој приклучок обезбедува поддршка за рендерирање на PDF-датотеки со помош " +"на библиотеката PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/mk_MK/locale.po b/plugins/generic/pdfJsViewer/locale/mk_MK/locale.po deleted file mode 100644 index d06833d2cf7..00000000000 --- a/plugins/generic/pdfJsViewer/locale/mk_MK/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-06 17:52+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "" -"Овој приклучок обезбедува поддршка за рендерирање на PDF-датотеки со помош " -"на библиотеката PDF.js." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "PDF.js Прегледувач на ПДФ документи" diff --git a/plugins/generic/pdfJsViewer/locale/nb/locale.po b/plugins/generic/pdfJsViewer/locale/nb/locale.po new file mode 100644 index 00000000000..bf2da5aa7b4 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/nb/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-22 10:19+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF Viewer" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Dette programtillegget støtter visning av PDF-filer ved hjelp av PDF.js-" +"biblioteket." diff --git a/plugins/generic/pdfJsViewer/locale/nb_NO/locale.po b/plugins/generic/pdfJsViewer/locale/nb_NO/locale.po deleted file mode 100644 index 4beaa2a0167..00000000000 --- a/plugins/generic/pdfJsViewer/locale/nb_NO/locale.po +++ /dev/null @@ -1,20 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-22 10:19+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "" -"Dette programtillegget støtter visning av PDF-filer ved hjelp av PDF.js-" -"biblioteket." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "PDF.js PDF Viewer" diff --git a/plugins/generic/pdfJsViewer/locale/pl/locale.po b/plugins/generic/pdfJsViewer/locale/pl/locale.po new file mode 100644 index 00000000000..684174a96d4 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/pl/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-10 19:07+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "Czytnik PDF" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "Wtyczka zawiera wsparcie dla korzystania z PDFów w bibliotece PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/pl_PL/locale.po b/plugins/generic/pdfJsViewer/locale/pl_PL/locale.po deleted file mode 100644 index eaab290dad1..00000000000 --- a/plugins/generic/pdfJsViewer/locale/pl_PL/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-10 19:07+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "Wtyczka zawiera wsparcie dla korzystania z PDFów w bibliotece PDF.js." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "Czytnik PDF" diff --git a/plugins/generic/pdfJsViewer/locale/pt_BR/locale.po b/plugins/generic/pdfJsViewer/locale/pt_BR/locale.po index 3a0a8a4222e..41cf927514f 100644 --- a/plugins/generic/pdfJsViewer/locale/pt_BR/locale.po +++ b/plugins/generic/pdfJsViewer/locale/pt_BR/locale.po @@ -11,10 +11,10 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.JS Visualizador de PDF" + msgid "plugins.generic.pdfJsViewer.description" msgstr "" "Este plugin fornece suporte para renderização de PDFs usando a biblioteca " "PDF.js." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "PDF.JS Visualizador de PDF" diff --git a/plugins/generic/pdfJsViewer/locale/pt_PT/locale.po b/plugins/generic/pdfJsViewer/locale/pt_PT/locale.po new file mode 100644 index 00000000000..4c22839bc0a --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/pt_PT/locale.po @@ -0,0 +1,21 @@ +# Carla Marques , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-03-03 11:27+0000\n" +"Last-Translator: Carla Marques \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js Visualizador de PDF" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Este plugin fornece suporte de renderização para PDFs através da biblioteca " +"PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/ro/locale.po b/plugins/generic/pdfJsViewer/locale/ro/locale.po new file mode 100644 index 00000000000..22d979a1846 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/ro/locale.po @@ -0,0 +1,23 @@ +# Iusan Daria , 2024. +# Ruxandra Berescu , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-03 17:39+0000\n" +"Last-Translator: Ruxandra Berescu \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "Vizualizator PDF.js" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Acest plugin asigură suport de redare pentru fișiere PDF utilizând " +"biblioteca PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/ru/locale.po b/plugins/generic/pdfJsViewer/locale/ru/locale.po new file mode 100644 index 00000000000..a4cc301e929 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/ru/locale.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-04 09:36+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF Просмотрщик" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "Этот модуль представляет поддержку PDF используя библиотеку PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/ru_RU/locale.po b/plugins/generic/pdfJsViewer/locale/ru_RU/locale.po deleted file mode 100644 index 01483bc0e39..00000000000 --- a/plugins/generic/pdfJsViewer/locale/ru_RU/locale.po +++ /dev/null @@ -1,19 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-03-04 09:36+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "Этот модуль представляет поддержку PDF используя библиотеку PDF.js." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "PDF.js PDF Просмотрщик" diff --git a/plugins/generic/pdfJsViewer/locale/sv/locale.po b/plugins/generic/pdfJsViewer/locale/sv/locale.po new file mode 100644 index 00000000000..4c69183aa9f --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/sv/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-11 11:28+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF Viewer" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Denna plugin aktiverar stöd för att visa PDFer med hjälp av PDF.js-" +"biblioteket." diff --git a/plugins/generic/pdfJsViewer/locale/tr/locale.po b/plugins/generic/pdfJsViewer/locale/tr/locale.po new file mode 100644 index 00000000000..bc80df8995d --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/tr/locale.po @@ -0,0 +1,20 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 11:19+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF Görüntüleyici" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Bu eklenti, PDF.js kitaplığını kullanarak PDF’ler için görüntüleme desteği " +"sağlar." diff --git a/plugins/generic/pdfJsViewer/locale/uk/locale.po b/plugins/generic/pdfJsViewer/locale/uk/locale.po new file mode 100644 index 00000000000..dd793e9282b --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/uk/locale.po @@ -0,0 +1,21 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-16 14:37+0000\n" +"Last-Translator: Fylypovych Georgii \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "PDF.js PDF Переглядач" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" +"Цей плагін надає підтримку можливості для PDF-рендеру використовуючи " +"бібліотеку PDF.js." diff --git a/plugins/generic/pdfJsViewer/locale/uk_UA/locale.po b/plugins/generic/pdfJsViewer/locale/uk_UA/locale.po deleted file mode 100644 index 7ccf8da1b42..00000000000 --- a/plugins/generic/pdfJsViewer/locale/uk_UA/locale.po +++ /dev/null @@ -1,21 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.pdfJsViewer.description" -msgstr "" -"Цей плагін надає підтримку можливості для PDF-рендеру використовуючи " -"бібліотеку PDF.js." - -msgid "plugins.generic.pdfJsViewer.displayName" -msgstr "PDF.js PDF Переглядач" diff --git a/plugins/generic/pdfJsViewer/locale/vi/locale.po b/plugins/generic/pdfJsViewer/locale/vi/locale.po new file mode 100644 index 00000000000..387b3aa8241 --- /dev/null +++ b/plugins/generic/pdfJsViewer/locale/vi/locale.po @@ -0,0 +1,12 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "plugins.generic.pdfJsViewer.displayName" +msgstr "" + +msgid "plugins.generic.pdfJsViewer.description" +msgstr "" diff --git a/plugins/generic/pdfJsViewer/locale/vi_VN/locale.po b/plugins/generic/pdfJsViewer/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/generic/pdfJsViewer/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollHorizontal.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollHorizontal.png deleted file mode 100644 index cb702fc4d11..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollHorizontal.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollHorizontal@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollHorizontal@2x.png deleted file mode 100644 index 7f05289bb15..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollHorizontal@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollVertical.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollVertical.png deleted file mode 100644 index 0b8427a16c0..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollVertical.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollVertical@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollVertical@2x.png deleted file mode 100644 index 72ab55ebf27..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollVertical@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollWrapped.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollWrapped.png deleted file mode 100644 index 165fc8bc013..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollWrapped.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollWrapped@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollWrapped@2x.png deleted file mode 100644 index 42461411922..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-scrollWrapped@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-selectTool.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-selectTool.png deleted file mode 100644 index 25520a6fe58..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-selectTool.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-selectTool@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-selectTool@2x.png deleted file mode 100644 index a58aaef4fbe..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-selectTool@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadEven.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadEven.png deleted file mode 100644 index 3fa07e703ea..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadEven.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadEven@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadEven@2x.png deleted file mode 100644 index 32e5033d7db..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadEven@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadNone.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadNone.png deleted file mode 100644 index 161147354c9..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadNone.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadNone@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadNone@2x.png deleted file mode 100644 index 8e51cf3b7d6..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadNone@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadOdd.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadOdd.png deleted file mode 100644 index 5126313a1de..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadOdd.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadOdd@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadOdd@2x.png deleted file mode 100644 index 5996b74db1e..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/secondaryToolbarButton-spreadOdd@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed-rtl.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed-rtl.png deleted file mode 100644 index 0496b357755..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed-rtl.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed-rtl@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed-rtl@2x.png deleted file mode 100644 index 6ad9ebcdf5d..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed-rtl@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed.png deleted file mode 100644 index 06d4d376967..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed@2x.png deleted file mode 100644 index eec1e58c125..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-collapsed@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-expanded.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-expanded.png deleted file mode 100644 index c8d557351cd..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-expanded.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-expanded@2x.png b/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-expanded@2x.png deleted file mode 100644 index 3b3b6103b35..00000000000 Binary files a/plugins/generic/pdfJsViewer/pdf.js/web/images/treeitem-expanded@2x.png and /dev/null differ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/locale/crh/viewer.properties b/plugins/generic/pdfJsViewer/pdf.js/web/locale/crh/viewer.properties deleted file mode 100644 index dcdaafeec45..00000000000 --- a/plugins/generic/pdfJsViewer/pdf.js/web/locale/crh/viewer.properties +++ /dev/null @@ -1,217 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Main toolbar buttons (tooltips and alt text for images) -previous.title=Evvelki Saife -previous_label=Evvelki -next.title=Soñraki Saife -next_label=Soñraki - -# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. -page.title=Saife -# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number -# representing the total number of pages in the document. -of_pages=/ {{pagesCount}} -# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" -# will be replaced by a number representing the currently visible page, -# respectively a number representing the total number of pages in the document. -page_of_pages=({{pageNumber}} / {{pagesCount}}) - -zoom_out.title=Uzaqlaștır -zoom_out_label=Uzaqlaștır -zoom_in.title=Yaqınlaştır -zoom_in_label=Yaqınlaştır -zoom.title=Miqyasla -presentation_mode.title=Taqdim Tarzına Almaş -presentation_mode_label=Taqdim Tarzı -open_file.title=Dosye Aç -open_file_label=Aç -print.title=Bastır -print_label=Bastır -download.title=Endir -download_label=Endir -bookmark.title=Cari körünim (kopiyala yaki yañı pencerede aç) -bookmark_label=Cari körünim - -# Secondary toolbar and context menu -tools.title=Aletler -tools_label=Aletler -first_page.title=İlk Saifege Bar -first_page.label=İlk Saifege Bar -first_page_label=İlk Saifege Bar -last_page.title=Soñ Saifege Bar -last_page.label=Soñ Saifege Bar -last_page_label=Soñ Saifege Bar -page_rotate_cw.title=Saat Yönünde Devrettir -page_rotate_cw.label=Saat Yönünde Aylandır -page_rotate_cw_label=Saat Yönünde Aylandır -page_rotate_ccw.title=Saat Yönüniñ Tersine Devrettir -page_rotate_ccw.label=Saat Yönüniñ Tersine Aylandır -page_rotate_ccw_label=Saat Yönüniñ Tersine Aylandır - -cursor_text_select_tool.title=Metin Saylamı Aletini Qabilleştir -cursor_text_select_tool_label=Metin Saylamı Aleti -cursor_hand_tool.title=El Aletini Qabilleştir -cursor_hand_tool_label=El Aleti - -scroll_vertical.title=Şaquliy Taydırmanı Qullan -scroll_vertical_label=Şaquliy Taydırma -scroll_horizontal.title=Ufqiy Taydırmanı Qullan -scroll_horizontal_label=Ufqiy Taydırma -scroll_wrapped.title=Türülgen Taydırmanı Qullan -scroll_wrapped_label=Türülgen Taydırma - -spread_none.title=Saife yaymalarını qoşma -spread_none_label=Yaymasız -spread_odd.title=Saife yaymalarını tek-sayılı saifeler ile başlayaraq qoş -spread_odd_label=Tek Yaymalar -spread_even.title=Saife yaymalarını çift-sayılı saifeler ile başlayaraq qoş -spread_even_label=Çift Yaymalar - -# Document properties dialog box -document_properties.title=Vesiqa Hasiyetleri… -document_properties_label=Vesiqa Hasiyetleri… -document_properties_file_name=Dosye adı: -document_properties_file_size=Dosye ölçüsi: -# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" -# will be replaced by the PDF file size in kilobytes, respectively in bytes. -document_properties_kb={{size_kb}} KB ({{size_b}} bayt) -# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" -# will be replaced by the PDF file size in megabytes, respectively in bytes. -document_properties_mb={{size_mb}} MB ({{size_b}} bayt) -document_properties_title=Serleva: -document_properties_author=Müellif: -document_properties_subject=Mevzu: -document_properties_keywords=Anahtar-sözler: -document_properties_creation_date=İcat Tarihı: -document_properties_modification_date=Başqalaştırma Tarihi: -# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" -# will be replaced by the creation/modification date, and time, of the PDF file. -document_properties_date_string={{date}}, {{time}} -document_properties_creator=Mücit: -document_properties_producer=PDF İstisalcısı: -document_properties_version=PDF Sürümi: -document_properties_page_count=Saife Adedi: -document_properties_page_size=Saife Ölçüsi: -document_properties_page_size_unit_inches=düym -document_properties_page_size_unit_millimeters=mm -document_properties_page_size_orientation_portrait=portret -document_properties_page_size_orientation_landscape=manzara -document_properties_page_size_name_a3=A3 -document_properties_page_size_name_a4=A4 -document_properties_page_size_name_letter=Mektüp -document_properties_page_size_name_legal=Uquqiy -# LOCALIZATION NOTE (document_properties_page_size_dimension_string): -# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by -# the size, respectively their unit of measurement and orientation, of the (current) page. -document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) -# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): -# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by -# the size, respectively their unit of measurement, name, and orientation, of the (current) page. -document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) -# LOCALIZATION NOTE (document_properties_linearized): The linearization status of -# the document; usually called "Fast Web View" in English locales of Adobe software. -document_properties_close=Qapat - -print_progress_message=Vesiqa bastırılmağa azırlanıla… -# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by -# a numerical per cent value. -print_progress_percent=%{{progress}} -print_progress_close=Vazgeç - -# Tooltips and alt text for side panel toolbar buttons -# (the _label strings are alt text for the buttons, the .title strings are -# tooltips) -toggle_sidebar.title=Yan-çubuqnı Tönter -toggle_sidebar_notification.title=Yançubuqnı Tönter (vesiqa tış-hizanı/ilişiklerni ihtiva ete) -toggle_sidebar_label=Yan-çubuqnı Tönter -document_outline.title=Vesiqa Tış-hizasını Köster (unsurlarnıñ episini cayıldırmaq/eştirmek içün çifte-çertiñiz) -document_outline_label=Vesiqa Tış-hizası -attachments.title=İlişiklerni Köster -attachments_label=İlişikler -thumbs.title=Tırnaq-Resimlerni Köster -thumbs_label=Tırnaq-Resimler -findbar.title=Vesiqada Tap -findbar_label=Tap - -# Thumbnails panel item (tooltip and alt text for images) -# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page -# number. -thumb_page_title=Saife {{page}} -# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page -# number. -thumb_page_canvas={{page}}. Saifeniñ Tırnaq-Resmi - -# Find panel button title and messages -find_input.title=Tap -find_input.placeholder=Vesiqada tap… -find_previous.title=İbareniñ evvelki rastkelişini tap -find_previous_label=Evvelki -find_next.title=İbareniñ soñraki rastkelişini tap -find_next_label=Soñraki -find_highlight=Episini ışıqlandır -find_match_case_label=Büyük-ufaq hassasiyeti -find_reached_top=Saifeniñ töpesi irişildi, tüpten devam etildi -find_reached_bottom=Saifeniñ soñu irişildi, töpeden devam etildi -find_not_found=İbare tapılmadı - -# Error panel labels -error_more_info=Daa Çoq Malümat -error_less_info=Daa Az Malümat -error_close=Qapat -# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be -# replaced by the PDF.JS version and build ID. -error_version_info=PDF.js s{{version}} (inşa: {{build}}) -# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an -# english string describing the error. -error_message=Mesaj: {{message}} -# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack -# trace. -error_stack=Çeren: {{stack}} -# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename -error_file=Dosye: {{file}} -# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number -error_line=Satır: {{line}} -rendering_error=Saife qılınğanda bir hata ortağa çıqtı. - -# Predefined zoom values -page_scale_width=Saife Kenişligi -page_scale_fit=Saifeni Sığdır -page_scale_auto=Öz-özünden Miqyasla -page_scale_actual=Fiiliy Ölçü -# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a -# numerical scale value. -page_scale_percent=%{{scale}} - -# Loading indicator messages -loading_error_indicator=Hata -loading_error=PDF yüklengende bir hata ortağa çıqtı. -invalid_file_error=Keçersiz yaki ifsat etilgen PDF dosyesi. -missing_file_error=Eksik PDF dosyesi. -unexpected_response_error=Beklenmegen sunucı cevabı. - -# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. -# "{{type}}" will be replaced with an annotation type from a list defined in -# the PDF spec (32000-1:2008 Table 169 – Annotation types). -# Some common types are e.g.: "Check", "Text", "Comment", "Note" -text_annotation_type.alt=[{{type}} Notlandırması] -password_label=Bu PDF dosyesini açmaq içün sır-sözni kirsetiñiz. -password_invalid=Keçersiz sır-söz. Lütfen yañıdan deñeñiz. -password_ok=Tamam -password_cancel=Vazgeç - -printing_not_supported=Tenbi: Bastıruv bu kezici tarafından tam olaraq desteklenmey. -printing_not_ready=Tenbi: PDF bastıruv içün bütünley yüklengen degildir. -web_fonts_disabled=Ağ urufatları naqabildir: içeri-yatqızılğan PDF urufatları qullanılalmay. -document_colors_not_allowed=PDF vesiqalarınıñ öz tüslerini qullanması caiz degildir: “Saifelerge öz tüslerini seçmege izin ber” kezicide ğayrıfaalleştirilgendir. diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/locale/hto/viewer.properties b/plugins/generic/pdfJsViewer/pdf.js/web/locale/hto/viewer.properties deleted file mode 100644 index ed984ea5945..00000000000 --- a/plugins/generic/pdfJsViewer/pdf.js/web/locale/hto/viewer.properties +++ /dev/null @@ -1,127 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Main toolbar buttons (tooltips and alt text for images) - -# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. -# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number -# representing the total number of pages in the document. -# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" -# will be replaced by a number representing the currently visible page, -# respectively a number representing the total number of pages in the document. - -open_file_label=Tuide -print.title=Rábe fɨnoraɨma -print_label=Rábe fɨnoraɨma -download.title=Yúnua -download_label=Yúnua -bookmark.title=Bírui éroika (kómue éroirafo tuño fakayena) -bookmark_label=Bírui éroika - -# Secondary toolbar and context menu -tools.title=Ránɨaɨ táɨjɨyena -tools_label=Ránɨaɨ táɨjɨyena -first_page.title=Nano fueñe rabemo jaíri -first_page.label=Nano fueñe rabemo jaíri -first_page_label=Nano fueñe rabemo jaíri -last_page.title=Ɨ́kóɨ fueñe rabemo jaíri -last_page.label=Ɨ́kóɨ fueñe rabemo jaíri -last_page_label=Ɨ́kóɨ fueñe rabemo jaíri -page_rotate_cw.title=Nabene jɨrekai -page_rotate_cw.label=Nabene jɨrekai -page_rotate_cw_label=Nabene jɨrekai -page_rotate_ccw.title=Jarɨ́fene jirekaɨ -page_rotate_ccw.label=Jarɨ́fene jirekaɨ -page_rotate_ccw_label=Jarɨ́fene jirekaɨ - - -# Document properties dialog box -document_properties_file_name=Ráanɨ mamékɨ: -document_properties_file_size=Ráanɨ dɨeze: -# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" -# will be replaced by the PDF file size in kilobytes, respectively in bytes. -document_properties_kb={{size_kb}} KB ({{size_b}} bytes) -# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" -# will be replaced by the PDF file size in megabytes, respectively in bytes. -document_properties_mb={{size_mb}} MB ({{size_b}} bytes) -document_properties_title=Kúega mámekɨ: -document_properties_author=Fɨnokamɨe: -document_properties_subject=Mɨnɨka: -# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" -# will be replaced by the creation/modification date, and time, of the PDF file. -document_properties_date_string={{date}}, {{time}} -document_properties_creator=Fɨnoraɨma: -document_properties_version=Yóga ráfue PDF: -document_properties_close=Ɨ́baide - -# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by -# a numerical per cent value. - -# Tooltips and alt text for side panel toolbar buttons -# (the _label strings are alt text for the buttons, the .title strings are -# tooltips) -attachments.title=Dájemo jónega akatairi -attachments_label=Dano jónega -thumbs.title=Dúe íya akatairi -thumbs_label=Dúe íya - -# Thumbnails panel item (tooltip and alt text for images) -# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page -# number. -thumb_page_title=Rabe {{page}} -# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page -# number. -thumb_page_canvas=Dúe íya rabe {{page}} - -# Find panel button title and messages -find_previous_label=Jɨáɨkena\u0020 -find_next_label=Báɨfene -find_highlight=Nana rɨgɨno -find_not_found=Daɨna báñeiga - -# Error panel labels -error_more_info=Jamano ráfue -error_less_info=Dúe ráfue -error_close=Ɨ́bai -# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be -# replaced by the PDF.JS version and build ID. -error_version_info=PDF.js v{{version}} (build: {{build}}) -# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an -# english string describing the error. -error_message=Úaina: {{message}} -# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack -# trace. -error_stack=Pila: {{stack}} -# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename -error_file=Jónia ráa: {{file}} -# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number -error_line=Ida: {{line}} - -# Predefined zoom values -page_scale_auto=Zoom dama fɨnode -page_scale_actual=Bírui dɨeze -# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a -# numerical scale value. -page_scale_percent={{scale}}% - -# Loading indicator messages -loading_error_indicator=Fɨgòñede - -# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. -# "{{type}}" will be replaced with an annotation type from a list defined in -# the PDF spec (32000-1:2008 Table 169 – Annotation types). -# Some common types are e.g.: "Check", "Text", "Comment", "Note" -text_annotation_type.alt=[{{type}} baítade] -password_ok=Jɨɨ - diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/locale/kok/viewer.properties b/plugins/generic/pdfJsViewer/pdf.js/web/locale/kok/viewer.properties deleted file mode 100644 index dbdd3df1dda..00000000000 --- a/plugins/generic/pdfJsViewer/pdf.js/web/locale/kok/viewer.properties +++ /dev/null @@ -1,167 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Main toolbar buttons (tooltips and alt text for images) -previous.title=फाटले पान -previous_label=फाटले -next.title=फुडले पान -next_label=फुडें - -# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. -# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number -# representing the total number of pages in the document. -# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" -# will be replaced by a number representing the currently visible page, -# respectively a number representing the total number of pages in the document. - -zoom_out.title=ल्हान करात -zoom_out_label=ल्हान करात -zoom_in.title=व्हड करात -zoom_in_label=व्हड करात -zoom.title=व्हड -presentation_mode.title=सादरीकरण स्थितींत वचात -presentation_mode_label=सादरीकरण स्थिती -open_file.title=फायल उगडात -open_file_label=उगडात -print.title=छापात -print_label=छापात -download.title=डावनलोड -download_label=डावनलोड -bookmark.title=सद्याचे दृश्य (नव्या जनेलांत प्रत करात वो उगडात) -bookmark_label=सद्याचे दृश्य - -# Secondary toolbar and context menu -tools.title=साधनां -tools_label=साधनां -first_page.title=पयल्या पानार वचात -first_page.label=पयल्या पानार वचात -first_page_label=पयल्या पानार वचात -last_page.title=निमण्या पानार वचात -last_page.label=निमण्या पानार वचात -last_page_label=निमण्या पानार वचात -page_rotate_cw.title=घड्याळाच्या दिकेन घुंवडायात -page_rotate_cw.label=घड्याळाच्या दिकेन घुंवडायात -page_rotate_cw_label=घड्याळाच्या दिकेन घुंवडायात -page_rotate_ccw.title=घड्याळाच्या उलट्या दिकेन घुंवडायात -page_rotate_ccw.label=घड्याळाच्या उलट्या दिकेन घुंवडायात -page_rotate_ccw_label=घड्याळाच्या उलट्या दिकेन घुंवडायात - - -# Document properties dialog box -document_properties.title=दस्तावेज वैशिश्ट्यां... -document_properties_label=दस्तावेज वैशिश्ट्यां... -document_properties_file_name=फायलीचे नाव: -document_properties_file_size=फायलीचो आकार: -# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" -# will be replaced by the PDF file size in kilobytes, respectively in bytes. -document_properties_kb={{आकार_kb}} KB ({{आकार_b}} बायटस्) -# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" -# will be replaced by the PDF file size in megabytes, respectively in bytes. -document_properties_mb={{आकार_mb}} MB ({{आकार_b}} बायटस्) -document_properties_title=मथळो: -document_properties_author=बरोवपी: -document_properties_subject=विशय: -document_properties_keywords=कीवर्डस्: -document_properties_creation_date=निर्मणी तारीक: -document_properties_modification_date=सुदार तारीक: -# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" -# will be replaced by the creation/modification date, and time, of the PDF file. -document_properties_date_string={{तारीक}}, {{वेळ}} -document_properties_creator=निर्मातो: -document_properties_producer=\u0020PDF निर्मातो: -document_properties_version=PDF आवृत्ती: -document_properties_page_count=पान गणन: -document_properties_close=बंद - -# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by -# a numerical per cent value. - -# Tooltips and alt text for side panel toolbar buttons -# (the _label strings are alt text for the buttons, the .title strings are -# tooltips) -toggle_sidebar.title=सायडबार अदलाबदल -toggle_sidebar_label=सायडबार अदलाबदल -document_outline_label=दस्तावेज आउटलायन -attachments.title=जोड दाखयात -attachments_label=जोडी -thumbs.title=थंबनेल दाखयात -thumbs_label=थंबनेल -findbar.title=दस्तावेजांत सोदात - -# Thumbnails panel item (tooltip and alt text for images) -# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page -# number. -thumb_page_title=पान {{पान}} -# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page -# number. -thumb_page_canvas={{पान}} पानाचे थंबनेल - -# Find panel button title and messages -find_previous.title=वाक्याचो पयलीचो अंश सोदात -find_previous_label=फाटले -find_next.title=वाक्याचो मुखावेलो अंश सोदात -find_next_label=फुडें -find_highlight=सगळे ठळक करात -find_match_case_label=केस जुळयात -find_reached_top=दस्तावेजाच्या वयर पावले. सकयल्यान सुरू करात -find_reached_bottom=दस्तावेजाच्या शेवटाक पावले, वयल्यान सुरू करात -find_not_found=वाक्य मेळूंक ना - -# Error panel labels -error_more_info=अदिक माहिती -error_less_info=कमी माहिती -error_close=बंद -# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be -# replaced by the PDF.JS version and build ID. -error_version_info=PDF.js v{{आवृत्ती}} (build: {{build}}) -# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an -# english string describing the error. -error_message=संदेश : {{संदेश}} -# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack -# trace. -error_stack=दाळ: {{दाळ}} -# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename -error_file=फायल: {{फायल}} -# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number -error_line=ओळ: {{ओळ}} -rendering_error=पान रेंडरिंग करतास्तना एरर आयलो - -# Predefined zoom values -page_scale_width=पानाची रुंदाय -page_scale_fit=पानार बसयात -page_scale_auto=आपशीच व्हड -page_scale_actual=मूळचो आकार -# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a -# numerical scale value. - -# Loading indicator messages -loading_error_indicator=एरर -loading_error=पीडीएफ चालू जातना एरर आयलो -invalid_file_error=अवैध वो वाट लागिल्ली PDF फायल -missing_file_error=शेणिल्ली PDF फायल. -unexpected_response_error=अनपेक्षित सर्व्हर प्रतिसाद - -# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. -# "{{type}}" will be replaced with an annotation type from a list defined in -# the PDF spec (32000-1:2008 Table 169 – Annotation types). -# Some common types are e.g.: "Check", "Text", "Comment", "Note" -text_annotation_type.alt=[{{प्रकार}} टिप्पणी] -password_label=ही PDF फायल उगडपाक पासवर्ड दियात -password_invalid=अवैध पासवर्ड. परतून यत्न करात. -password_ok=बरें आसा - -printing_not_supported=शिटकावणी : हे ब्रावजर छापपाक फांटबळ दिना -printing_not_ready=शिटकावणी: PDF मुद्रणाखातीर पुराय लोड जावना. -web_fonts_disabled=वेब अक्षरसंच निश्क्रिय केल्यात: एम्बेडेड PDF अक्षरसंच वापरपाक शकना. -document_colors_not_allowed=PDF दस्तावेजांक तांचे स्वतःचे रंग वापरपाक अनुमती ना: 'पानांक तांचे स्वतःचे रंग निवडुपाक दियात' ब्रावजरान निश्क्रीय केला. diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/locale/ks/viewer.properties b/plugins/generic/pdfJsViewer/pdf.js/web/locale/ks/viewer.properties deleted file mode 100644 index 63a9192e441..00000000000 --- a/plugins/generic/pdfJsViewer/pdf.js/web/locale/ks/viewer.properties +++ /dev/null @@ -1,168 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Main toolbar buttons (tooltips and alt text for images) -previous.title=پتِم صفحە -previous_label=پتِم -next.title=برونٹھِم صفحە -next_label=برونٹھ - -# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. -# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number -# representing the total number of pages in the document. -# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" -# will be replaced by a number representing the currently visible page, -# respectively a number representing the total number of pages in the document. - -zoom_out.title=نەبر كڈیەو -zoom_out_label=نەبر كڈیەو -zoom_in.title=اندر ژٓانیو -zoom_in_label=اندر ژٓانیو -zoom.title=زوم -presentation_mode.title=پریزینٹیشن موڈس کُن کْریو سوچ -presentation_mode_label=پریزینٹیشن موڈ -open_file.title=فایل كھولیو -open_file_label=كھولیو -print.title=پرینٹ -print_label=پرینٹ -download.title=ڈاونلوڈ -download_label=ڈاونلوڈ -bookmark.title=حالُك نظارء (نقل كریو نتە كھولیەو بدل وِنڈو منز) -bookmark_label=حالُك نظارء - -# Secondary toolbar and context menu -tools.title=ٹول -tools_label=ٹول -first_page.title=گوڈنیکِس پیجس کُن گْژھیو\u0020 -first_page.label=گوڈنیکِس پیجس کُن گْژھیو\u0020 -first_page_label=گوڈنیکِس پیجس کُن گْژھیو\u0020 -last_page.title=\u0020پْتمِس پیجس کُن گْژھیو\u0020 -last_page.label=\u0020پْتمِس پیجس کُن گْژھیو\u0020 -last_page_label=\u0020پْتمِس پیجس کُن گْژھیو\u0020 -page_rotate_cw.title=کُلاک وایِز کْریو روٹیٹ\u0020 -page_rotate_cw.label=کُلاک وایِز کْریو روٹیٹ\u0020 -page_rotate_cw_label=کُلاک وایِز کْریو روٹیٹ\u0020 -page_rotate_ccw.title=\u0020کاونٹر کُلاک وایِز کْریو روٹیٹ -page_rotate_ccw.label=\u0020کاونٹر کُلاک وایِز کْریو روٹیٹ -page_rotate_ccw_label=\u0020کاونٹر کُلاک وایِز کْریو روٹیٹ - - -# Document properties dialog box -document_properties.title=دستاویز خصوصیات ۔ ۔ ۔ -document_properties_label=دستاویز خصوصیات ۔ ۔ ۔ -document_properties_file_name=فایل ناو: -document_properties_file_size=فایل سایِز: -# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" -# will be replaced by the PDF file size in kilobytes, respectively in bytes. -document_properties_kb={{size_kb}} KB ({{size_b}} bytes) -# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" -# will be replaced by the PDF file size in megabytes, respectively in bytes. -document_properties_mb={{size_kb}} KB ({{size_b}} bytes) -document_properties_title=عنوان: -document_properties_author=آتھر -document_properties_subject=موضوع: -document_properties_keywords=كی وٲرڈ: -document_properties_creation_date=بناونُک تأریخ -document_properties_modification_date=تبدیلی ہُند ڈاٹا -# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" -# will be replaced by the creation/modification date, and time, of the PDF file. -document_properties_date_string={{تأریخ}}, {{ٹایم}} -document_properties_creator=بناون وول: -document_properties_producer=پی ڈی ایف پروڈوسر: -document_properties_version=پی ڈی ایف وْرجن: -document_properties_page_count=پیج کاوُنٹ: -document_properties_close=بند - -# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by -# a numerical per cent value. - -# Tooltips and alt text for side panel toolbar buttons -# (the _label strings are alt text for the buttons, the .title strings are -# tooltips) -toggle_sidebar.title=ٹوگل سایِڈ بار -toggle_sidebar_label=ٹوگل سایِڈ بار -document_outline_label=دستاەیزن ھِنز آوٹلاین -attachments.title=اٹیچمینٹ ہأیو -attachments_label=اٹیچمینٹ -thumbs.title=تھمبنیلس ھآویو -thumbs_label=تھمبنیلس\u0020 -findbar.title=دستاویزس منز وْچھیو - -# Thumbnails panel item (tooltip and alt text for images) -# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page -# number. -thumb_page_title=صفحە {{صفحە }} -# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page -# number. -thumb_page_canvas=صفحُك تھمبنیل\u0020 - -# Find panel button title and messages -find_previous.title=جملُك پت۪یوم واقعئ ژئھنڈیو\u0020 -find_previous_label=پتِم -find_next.title=جملُك بیٲكھ واقعئ ژئھنڈیو\u0020 -find_next_label=برونٹھ -find_highlight=تمام کْریو ہاے لایِٹ -find_match_case_label=کیس کْریو میچ -find_reached_top=صفحہ كس ٹاپس پیٹھ وئت، بوْنئ پیٹھئ تھأیو جٲری -find_reached_bottom=صفحہ كس آخرس پیٹھ وئت، ہ۪یرئ پیٹھئ تھأو جئری -find_not_found=جملئ آو نئ اتھ۪ی - -# Error panel labels -error_more_info=مزید مولومات -error_less_info=كم مولەومات -error_close=بند -# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be -# replaced by the PDF.JS version and build ID. -error_version_info=PDF.js v{{version}} (build: {{build}}) -# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an -# english string describing the error. -error_message=شیچھ: {{شیچھ}} -# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack -# trace. -error_stack=سٹیك: {{سٹیك}} -# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename -error_file=فایل: {{fileفایل}} -# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number -error_line=ريخ: {{ریخ}} -rendering_error=صفحئ كھولُن ویز۪ی گئی غلطی - -# Predefined zoom values -page_scale_width=صفحُك كھَجَر -page_scale_fit=صفحئ برابر -page_scale_auto=پٲنٲی بڈٲویو -page_scale_actual=اصلی سایز -# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a -# numerical scale value. -page_scale_percent={{scale}}% - -# Loading indicator messages -loading_error_indicator=غلطی -loading_error=پی ڈی ایف كھولَن ویز۪ی گئی غلطی -invalid_file_error=ناکار یا خراب گأمْژ پی ڈی ایف فایل۔ -missing_file_error=میسینگ پی ڈی ایف فایل۔ -unexpected_response_error=غیر متوقع سْرور جواب۔ - -# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. -# "{{type}}" will be replaced with an annotation type from a list defined in -# the PDF spec (32000-1:2008 Table 169 – Annotation types). -# Some common types are e.g.: "Check", "Text", "Comment", "Note" -text_annotation_type.alt=[{{قئسم}} اینوٹیشن] -password_label=پاس وأرڈ کْریو اینٹر یہ پی ڈی ایف فایل اوپْن کرنْہ باپت۔ -password_invalid=ناکار پاس وأرڈ۔ مہربأنی کْرتھ کْریو دوبار کوشش۔ -password_ok=\u0020OK - -printing_not_supported=آگہی۔ یتَھ براویزرَس چھُنَ چھَپاونئ خٲطرئ پورئ پٲٹھ تعاوُن -printing_not_ready=آگأہی: یہ پی ڈی ایف چُھ نْہ پورْ پأٹھ لوڈ پرینٹینگ باپت۔ -web_fonts_disabled=ویب فانٹ چھ ڈیسیبلْڈ: ایمبیڈیڈ پی ڈی ایف فانٹ استعمال کرنْہ باپت کْریو انیبْل۔ -document_colors_not_allowed=پی ڈی ایف دستاویز ہیکن نْہ پنْنئ رنگ استعمال کْرتھ: پیجن دِیو اجازت پنْنئ رنگ استعمال کرنس چُھ ڈی ایکٹیویٹ کرنْہ آمُت براوزرس منز۔ diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/locale/sat/viewer.properties b/plugins/generic/pdfJsViewer/pdf.js/web/locale/sat/viewer.properties deleted file mode 100644 index 6734095805d..00000000000 --- a/plugins/generic/pdfJsViewer/pdf.js/web/locale/sat/viewer.properties +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Main toolbar buttons (tooltips and alt text for images) -previous.title=पा़हिलाक् साहटा -next.title=इना़ तायोम साहटा - -# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. -# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number -# representing the total number of pages in the document. -# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" -# will be replaced by a number representing the currently visible page, -# respectively a number representing the total number of pages in the document. - -zoom.title=हुडिञ ला़टु तेयार -presentation_mode.title=उदुक् सोदोर ओबोसता रे ओताय मे -presentation_mode_label=उदुक् सोदोर ओबोसता -open_file.title=रेत् झिज मे -open_file_label=झिज मे झिच् -bookmark.title=नितोगाक् ञेल (नावा विंडो रे नोकोल आर बाङ झिज मे ) -bookmark_label=नितोगाक् ञेंल - -# Secondary toolbar and context menu - - -# Document properties dialog box -document_properties_file_name=रेत् ञुतुम: -document_properties_file_size=रेत् माराङ तेत्: -# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" -# will be replaced by the PDF file size in kilobytes, respectively in bytes. -document_properties_kb={{माराङ तेत्_kb}} KB ({{माराङ तेत्_b}} बाइट्स) -# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" -# will be replaced by the PDF file size in megabytes, respectively in bytes. -document_properties_mb={{माराङ तेत्_mb}} MB ({{माराङ तेत्_b}} बाइट्स) -document_properties_title=एम ञुतुम: -document_properties_author=ओनोलिया़: -document_properties_subject=बिसोय: -document_properties_keywords=का़ठी बोर्ड: -document_properties_creation_date=तेयार मा़हित्: -document_properties_modification_date=बोदोल होचो मा़हित्: -# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" -# will be replaced by the creation/modification date, and time, of the PDF file. -document_properties_date_string={{मा़हित्}}, {{ओकतो}} -document_properties_creator=बेनाविच्: -document_properties_producer=PDF तेयार ओडोकिच्: -document_properties_version=PDF बार्सान: -document_properties_page_count=साहटा लेखा: - -# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by -# a numerical per cent value. - -# Tooltips and alt text for side panel toolbar buttons -# (the _label strings are alt text for the buttons, the .title strings are -# tooltips) -document_outline_label=दोलिल तेयार तेत् -attachments.title=लाठा सेलेद को उदुक् मे -attachments_label=लाठा सेलेद को -thumbs.title=चिता़र आहला को उदुगा मे -thumbs_label=चिता़र आहला को -findbar.title=दोलिल रे ञाम - -# Thumbnails panel item (tooltip and alt text for images) -# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page -# number. -thumb_page_title=साहटा {{साहटा}} -# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page -# number. -thumb_page_canvas=साहटा रेयाक् चिता़र आहला {{साहटा}} - -# Find panel button title and messages -find_previous.title=आयात् हिंस रेयाक् पा़हिल सेदाक् ओडोक् ञाम मे -find_next.title=आयात् हिंस रेयाक् इना़ तायोम ओडोक् ञाम मे -find_highlight=जोतो उदुक् राकाब -find_match_case_label=जोड़ मामला -find_reached_top=दोलिल रेयाक् चोट रे सेटेर, लातार खोन लेताड़ -find_reached_bottom=दोलिल रेयाक् मुचा़त् रे सेटेर, चोट खोन लेताड़ -find_not_found=आयात् हिंस बाय ञाम लेना - -# Error panel labels -error_more_info=बाड़ती ला़य सोदोरढेर ला़य सोदोर -error_less_info=कोम ला़य सोदोर -# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be -# replaced by the PDF.JS version and build ID. -error_version_info=PDF.js v{{बार्सान}} (तेयार: {{तेयार}}) -# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an -# english string describing the error. -error_message=खोबोर: {{खोबोर}} -# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack -# trace. -error_stack=डांग: {{डांग}} -# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename -error_file=रेत्: {{रेत्}} -# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number -error_line=गार: {{गार}} -rendering_error=साहटा एम जोहोक मित् भुल हुय एना . - -# Predefined zoom values -page_scale_width=साहटा ओसार -page_scale_fit=साहटा खाप -page_scale_auto=आच् आच् ते हुडिञ ला़टु तेयार -page_scale_actual=ठिक माराङ तेत् -# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a -# numerical scale value. - -# Loading indicator messages -loading_error_indicator=भुल -loading_error=\u0020PDFलादे जोहोक् मित् भुल हुय एना. -invalid_file_error=बाङ बाताव आर बाङ PDF रेत्. -missing_file_error=आदाक् PDF रेत्. - -# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. -# "{{type}}" will be replaced with an annotation type from a list defined in -# the PDF spec (32000-1:2008 Table 169 – Annotation types). -# Some common types are e.g.: "Check", "Text", "Comment", "Note" -text_annotation_type.alt=[{{लेकान}} बेयान एम] -password_label=नोवा PDF रेत् झिज ला़गित् दानाङ साबाद आदेर मे. -password_invalid=बाङ बातावाक् दानाङ साबाद. दोहड़ा कुरुमुटुय मे. -password_ok=OK - -printing_not_supported=होसियार: छापा नोवा पानतेयाक् दाराय ते पुरा़व बाय गोड़ोवाकाना . -printing_not_ready=होंसिया़र: छापा ला़गित् PDF पुरा़ बाय लादे आकाना. -web_fonts_disabled=वेब फॉन्ट बाङ हुय होचो आकाना: भितिर थापोन PDF फॉन्ट्स बेभार बाङ हुय केया. -document_colors_not_allowed=PDF दोलिल को आजाक् निजे रोङ बेभार बाताव बाय एमागाक् आ: 'आजाक् निजे रोङ को बाछाव ला़गित् बाताव एम साहटा कोदो ब्राउजार रे बाय चोगोड़ होचोवा. diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/locale/tsz/viewer.properties b/plugins/generic/pdfJsViewer/pdf.js/web/locale/tsz/viewer.properties deleted file mode 100644 index c50a9428416..00000000000 --- a/plugins/generic/pdfJsViewer/pdf.js/web/locale/tsz/viewer.properties +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Main toolbar buttons (tooltips and alt text for images) - -# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. -# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number -# representing the total number of pages in the document. -# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" -# will be replaced by a number representing the currently visible page, -# respectively a number representing the total number of pages in the document. - -zoom.title=jasi -open_file_label=Mitani - -# Secondary toolbar and context menu - - -# Document properties dialog box -# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" -# will be replaced by the PDF file size in kilobytes, respectively in bytes. -# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" -# will be replaced by the PDF file size in megabytes, respectively in bytes. -# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" -# will be replaced by the creation/modification date, and time, of the PDF file. - -# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by -# a numerical per cent value. - -# Tooltips and alt text for side panel toolbar buttons -# (the _label strings are alt text for the buttons, the .title strings are -# tooltips) - -# Thumbnails panel item (tooltip and alt text for images) -# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page -# number. -# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page -# number. - -# Find panel button title and messages - -# Error panel labels -# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be -# replaced by the PDF.JS version and build ID. -error_version_info=PDF.js v{{version}} (build: {{build}}) -# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an -# english string describing the error. -# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack -# trace. -# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename -# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number - -# Predefined zoom values -# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a -# numerical scale value. - -# Loading indicator messages - -# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. -# "{{type}}" will be replaced with an annotation type from a list defined in -# the PDF spec (32000-1:2008 Table 169 – Annotation types). -# Some common types are e.g.: "Check", "Text", "Comment", "Note" -password_ok=Jo - diff --git a/plugins/generic/pdfJsViewer/pdf.js/web/locale/zam/viewer.properties b/plugins/generic/pdfJsViewer/pdf.js/web/locale/zam/viewer.properties deleted file mode 100644 index b9a20557f65..00000000000 --- a/plugins/generic/pdfJsViewer/pdf.js/web/locale/zam/viewer.properties +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 2012 Mozilla Foundation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Main toolbar buttons (tooltips and alt text for images) - -# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. -# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number -# representing the total number of pages in the document. -# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" -# will be replaced by a number representing the currently visible page, -# respectively a number representing the total number of pages in the document. - -zoom_out.title=Lii lut ah -zoom_out_label=Lii lut ah -zoom_in.title=Lii mach ah -zoom_in_label=Lii mach ah -zoom.title=Xha niey -open_file.title=Xhal yets ndedizh -open_file_label=Xhal - -# Secondary toolbar and context menu -tools.title=Koo lii chel -tools_label=Koo lii chel - - -# Document properties dialog box -document_properties.title=Sá nìe yêtz... -document_properties_label=Sá nìe yêtz... -# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" -# will be replaced by the PDF file size in kilobytes, respectively in bytes. -document_properties_kb={{size_kb}} KB ({{size_b}} bytes) -# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" -# will be replaced by the PDF file size in megabytes, respectively in bytes. -document_properties_mb={{size_mb}} MB ({{size_b}} bytes) -# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" -# will be replaced by the creation/modification date, and time, of the PDF file. -document_properties_close=TòɁw - -# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by -# a numerical per cent value. - -# Tooltips and alt text for side panel toolbar buttons -# (the _label strings are alt text for the buttons, the .title strings are -# tooltips) -attachments.title=Mb-&lòɁ yêtz -thumbs_label=Thumbnails -findbar.title=GòzăɁl lèɁn yêtz - -# Thumbnails panel item (tooltip and alt text for images) -# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page -# number. -# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page -# number. - -# Find panel button title and messages - -# Error panel labels -error_close=TòɁw -# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be -# replaced by the PDF.JS version and build ID. -# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an -# english string describing the error. -# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack -# trace. -# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename -# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number - -# Predefined zoom values -# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a -# numerical scale value. - -# Loading indicator messages - -# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. -# "{{type}}" will be replaced with an annotation type from a list defined in -# the PDF spec (32000-1:2008 Table 169 – Annotation types). -# Some common types are e.g.: "Check", "Text", "Comment", "Note" -password_ok=Bliy - diff --git a/plugins/generic/usageEvent/UsageEventPlugin.inc.php b/plugins/generic/usageEvent/UsageEventPlugin.inc.php deleted file mode 100644 index f3a7f247d13..00000000000 --- a/plugins/generic/usageEvent/UsageEventPlugin.inc.php +++ /dev/null @@ -1,171 +0,0 @@ -getRequestedPage($request); - $op = $router->getRequestedOp($request); - $args = $router->getRequestedArgs($request); - - $wantedPages = array('catalog'); - $wantedOps = array('index', 'book', 'series'); - - if (!in_array($page, $wantedPages) || !in_array($op, $wantedOps)) break; - - // consider book versioning: - // if the operation is 'book' and the arguments count > 1 - // the arguments must be: $submissionId/version/$publicationId. - if ($op == 'book' && count($args) > 1) { - if ($args[1] !== 'version') break; - else if (count($args) != 3) break; - $publicationId = (int) $args[2]; - } - - $press = $templateMgr->getTemplateVars('currentContext'); /* @var $press Press */ - $series = $templateMgr->getTemplateVars('series'); /* @var $series Series */ - $submission = $templateMgr->getTemplateVars('publishedSubmission'); - - // No published objects, no usage event. - if (!$press && !$series && !$submission) break; - - if ($press) { - $pubObject = $press; - $assocType = ASSOC_TYPE_PRESS; - } - - if ($series) { - $pubObject = $series; - $assocType = ASSOC_TYPE_SERIES; - $canonicalUrlParams = array($series->getPath()); - $idParams = array('s' . $series->getId()); - } - - if ($submission) { - $pubObject = $submission; - $assocType = ASSOC_TYPE_MONOGRAPH; - $canonicalUrlParams = array($pubObject->getId()); - $idParams = array('m' . $pubObject->getId()); - if (isset($publicationId)) { - // no need to check if the publication exists (for the submisison), - // 404 would be returned and the usage event would not be there - $canonicalUrlParams = array($pubObject->getId(), 'version', $publicationId); - } - } - - $downloadSuccess = true; - $canonicalUrlOp = $op; - break; - - // Publication format file. - case 'CatalogBookHandler::view': - case 'CatalogBookHandler::download': - case 'HtmlMonographFilePlugin::monographDownload': - $pubObject = $hookArgs[3]; - $assocType = ASSOC_TYPE_SUBMISSION_FILE; - $canonicalUrlOp = 'download'; - $submission = $hookArgs[1]; - $publicationFormat = $hookArgs[2]; - // if file is not a publication format file (e.g. CSS or images), there is no usage event. - if ($pubObject->getData('assocId') != $publicationFormat->getId()) return false; - $canonicalUrlParams = array($submission->getId(), $pubObject->getData('assocId'), $pubObject->getId()); - $idParams = array('m' . $submission->getId(), 'f' . $pubObject->getId()); - $downloadSuccess = false; - break; - default: - // Why are we called from an unknown hook? - assert(false); - } - - switch ($assocType) { - case ASSOC_TYPE_PRESS: - case ASSOC_TYPE_SERIES: - case ASSOC_TYPE_MONOGRAPH: - case ASSOC_TYPE_SUBMISSION_FILE: - $canonicalUrlPage = 'catalog'; - break; - } - - } - - return array($pubObject, $downloadSuccess, $assocType, $idParams, $canonicalUrlPage, $canonicalUrlOp, $canonicalUrlParams); - } - - /** - * @see PKPUsageEventPlugin::getHtmlPageAssocTypes() - */ - protected function getHtmlPageAssocTypes() { - return array( - ASSOC_TYPE_PRESS, - ASSOC_TYPE_SERIES, - ASSOC_TYPE_MONOGRAPH - ); - } - - /** - * @see PKPUsageEventPlugin::isPubIdObjectType() - */ - protected function isPubIdObjectType($pubObject) { - return is_a($pubObject, 'Submission'); - } -} - - diff --git a/plugins/generic/usageEvent/UsageEventPlugin.php b/plugins/generic/usageEvent/UsageEventPlugin.php new file mode 100644 index 00000000000..47335c25a4d --- /dev/null +++ b/plugins/generic/usageEvent/UsageEventPlugin.php @@ -0,0 +1,181 @@ +getRequestedPage($request); + $op = $router->getRequestedOp($request); + $args = $router->getRequestedArgs($request); + + $wantedPages = ['catalog']; + $wantedOps = ['index', 'book', 'series']; + + if (!in_array($page, $wantedPages) || !in_array($op, $wantedOps)) { + break; + } + + // consider book versioning: + // if the operation is 'book' and the arguments count > 1 + // the arguments must be: $submissionId/version/$publicationId. + if ($op == 'book' && count($args) > 1) { + if ($args[1] !== 'version') { + break; + } elseif (count($args) != 3) { + break; + } + $publicationId = (int) $args[2]; + } + + $press = $templateMgr->getTemplateVars('currentContext'); /** @var Press $press */ + $series = $templateMgr->getTemplateVars('series'); /** @var Section $series */ + $submission = $templateMgr->getTemplateVars('publishedSubmission'); + + // No published objects, no usage event. + if (!$press && !$series && !$submission) { + break; + } + + if ($press) { + $pubObject = $press; + $assocType = Application::ASSOC_TYPE_PRESS; + } + + if ($series) { + $pubObject = $series; + $assocType = Application::ASSOC_TYPE_SERIES; + $canonicalUrlParams = [$series->getPath()]; + $idParams = ['s' . $series->getId()]; + } + + if ($submission) { + $pubObject = $submission; + $assocType = Application::ASSOC_TYPE_MONOGRAPH; + $canonicalUrlParams = [$pubObject->getId()]; + $idParams = ['m' . $pubObject->getId()]; + if (isset($publicationId)) { + // no need to check if the publication exists (for the submission), + // 404 would be returned and the usage event would not be there + $canonicalUrlParams = [$pubObject->getId(), 'version', $publicationId]; + } + } + + $downloadSuccess = true; + $canonicalUrlOp = $op; + break; + + // Publication format file. + case 'CatalogBookHandler::view': + case 'CatalogBookHandler::download': + case 'HtmlMonographFilePlugin::monographDownload': + $pubObject = $hookArgs[3]; + $assocType = Application::ASSOC_TYPE_SUBMISSION_FILE; + $canonicalUrlOp = 'download'; + $submission = $hookArgs[1]; + $publicationFormat = $hookArgs[2]; + // if file is not a publication format file (e.g. CSS or images), there is no usage event. + if ($pubObject->getData('assocId') != $publicationFormat->getId()) { + return false; + } + $canonicalUrlParams = [$submission->getId(), $pubObject->getData('assocId'), $pubObject->getId()]; + $idParams = ['m' . $submission->getId(), 'f' . $pubObject->getId()]; + $downloadSuccess = false; + break; + default: + // Why are we called from an unknown hook? + assert(false); + } + + switch ($assocType) { + case Application::ASSOC_TYPE_PRESS: + case Application::ASSOC_TYPE_SERIES: + case Application::ASSOC_TYPE_MONOGRAPH: + case Application::ASSOC_TYPE_SUBMISSION_FILE: + $canonicalUrlPage = 'catalog'; + break; + } + } + + return [$pubObject, $downloadSuccess, $assocType, $idParams, $canonicalUrlPage, $canonicalUrlOp, $canonicalUrlParams]; + } + + /** + * @see PKPUsageEventPlugin::getHtmlPageAssocTypes() + */ + protected function getHtmlPageAssocTypes() + { + return [ + Application::ASSOC_TYPE_PRESS, + Application::ASSOC_TYPE_SERIES, + Application::ASSOC_TYPE_MONOGRAPH + ]; + } + + /** + * @see PKPUsageEventPlugin::isPubIdObjectType() + */ + protected function isPubIdObjectType($pubObject) + { + return $pubObject instanceof Submission; + } +} diff --git a/plugins/generic/usageEvent/index.php b/plugins/generic/usageEvent/index.php deleted file mode 100644 index 3619158275a..00000000000 --- a/plugins/generic/usageEvent/index.php +++ /dev/null @@ -1,22 +0,0 @@ - -=== Based on the OJS Web Feed Plugin -================================ - -About ------ -This plugin for OMP provides a set of syndication feeds for the current issue in RSS1.0/RDF and Atom formats. Feed links -are embedded into the HTML page header and are available to all RSS/Atom-aware browsers and aggregators as per standard web -specifications. - -Known Issues ------------- -- Improperly-formatted (non-RFC2822) email addresses within monographs or contact addresses may cause invalid feeds to be -generated. -- Monographs with no abstract (eg. editorials) will create Atom warnings due to lack of entry:content or entry:summary -elements. -- Multiple monographs with the same publish date/time (eg. in an issue) may create an Atom warning. - -Contact/Support ---------------- -Please email the authors for support, bugfixes, or comments. diff --git a/plugins/generic/webFeed/SettingsForm.inc.php b/plugins/generic/webFeed/SettingsForm.inc.php deleted file mode 100644 index 8dd50cb5624..00000000000 --- a/plugins/generic/webFeed/SettingsForm.inc.php +++ /dev/null @@ -1,88 +0,0 @@ -_contextId = $contextId; - $this->_plugin = $plugin; - - parent::__construct($plugin->getTemplateResource('settingsForm.tpl')); - $this->addCheck(new FormValidatorPost($this)); - $this->addCheck(new FormValidatorCSRF($this)); - } - - /** - * Initialize form data. - */ - public function initData() { - $contextId = $this->_contextId; - $plugin = $this->_plugin; - - $this->setData('displayPage', $plugin->getSetting($contextId, 'displayPage')); - $this->setData('recentItems', $plugin->getSetting($contextId, 'recentItems')); - } - - /** - * Assign form data to user-submitted data. - */ - public function readInputData() { - $this->readUserVars(array('displayPage', 'recentItems')); - - // check that recent items value is a positive integer - if ((int) $this->getData('recentItems') <= 0) $this->setData('recentItems', ''); - - $this->addCheck(new FormValidator($this, 'recentItems', 'required', 'plugins.generic.webfeed.settings.recentItemsRequired')); - - } - - /** - * Fetch the form. - * @copydoc Form::fetch() - */ - public function fetch($request, $template = null, $display = false) { - $templateMgr = TemplateManager::getManager($request); - $templateMgr->assign('pluginName', $this->_plugin->getName()); - return parent::fetch($request, $template, $display); - } - - /** - * @copydoc Form::execute() - */ - public function execute(...$functionArgs) { - $plugin = $this->_plugin; - $contextId = $this->_contextId; - - $plugin->updateSetting($contextId, 'displayPage', $this->getData('displayPage')); - $plugin->updateSetting($contextId, 'recentItems', $this->getData('recentItems')); - - parent::execute(...$functionArgs); - } -} - - diff --git a/plugins/generic/webFeed/WebFeedBlockPlugin.inc.php b/plugins/generic/webFeed/WebFeedBlockPlugin.inc.php deleted file mode 100644 index fb7219bbb77..00000000000 --- a/plugins/generic/webFeed/WebFeedBlockPlugin.inc.php +++ /dev/null @@ -1,79 +0,0 @@ -_parentPlugin = $parentPlugin; - } - - /** - * Get the name of this plugin. The name must be unique within - * its category. - * @return String name of plugin - */ - public function getName() { - return 'WebFeedBlockPlugin'; - } - - /** - * Hide this plugin from the management interface (it's subsidiary) - */ - public function getHideManagement() { - return true; - } - - /** - * Get the display name of this plugin. - * @return String - */ - public function getDisplayName() { - return __('plugins.generic.webfeed.displayName'); - } - - /** - * Get a description of the plugin. - */ - public function getDescription() { - return __('plugins.generic.webfeed.description'); - } - - /** - * Get the supported contexts (e.g. BLOCK_CONTEXT_...) for this block. - * @return array - */ - public function getSupportedContexts() { - return array(BLOCK_CONTEXT_SIDEBAR); - } - - /** - * Override the builtin to get the correct plugin path. - * @return string - */ - public function getPluginPath() { - return $this->_parentPlugin->getPluginPath(); - } -} - - diff --git a/plugins/generic/webFeed/WebFeedGatewayPlugin.inc.php b/plugins/generic/webFeed/WebFeedGatewayPlugin.inc.php deleted file mode 100644 index 1ef2e14248a..00000000000 --- a/plugins/generic/webFeed/WebFeedGatewayPlugin.inc.php +++ /dev/null @@ -1,131 +0,0 @@ -_parentPlugin = $parentPlugin; - } - - /** - * Hide this plugin from the management interface (it's subsidiary) - * @return boolean - */ - public function getHideManagement() { - return true; - } - - /** - * Get the name of this plugin. The name must be unique within - * its category. - * @return String name of plugin - */ - public function getName() { - return 'WebFeedGatewayPlugin'; - } - - /** - * @copydoc Plugin::getDisplayName() - */ - public function getDisplayName() { - return __('plugins.generic.webfeed.displayName'); - } - - /** - * @copydoc Plugin::getDescription() - */ - public function getDescription() { - return __('plugins.generic.webfeed.description'); - } - - /** - * Override the builtin to get the correct plugin path. - */ - function getPluginPath() { - return $this->_parentPlugin->getPluginPath(); - } - - /** - * Get whether or not this plugin is enabled. (Should always return true, as the - * parent plugin will take care of loading this one when needed) - * @return boolean - */ - public function getEnabled() { - return $this->_parentPlugin->getEnabled(); - } - - /** - * Handle fetch requests for this plugin. - * @param $args array Arguments. - * @param $request PKPRequest Request object. - */ - function fetch($args, $request) { - if (!$this->_parentPlugin->getEnabled()) return false; - - // Make sure the feed type is specified and valid - $type = array_shift($args); - $typeMap = array( - 'rss' => 'rss.tpl', - 'rss2' => 'rss2.tpl', - 'atom' => 'atom.tpl' - ); - $mimeTypeMap = array( - 'rss' => 'application/rdf+xml', - 'rss2' => 'application/rss+xml', - 'atom' => 'application/atom+xml' - ); - if (!isset($typeMap[$type])) return false; - - $templateMgr = TemplateManager::getManager($request); - $context = $request->getContext(); - - // Bring in orderby constants - import('classes.submission.SubmissionDAO'); - - $args = [ - 'status' => STATUS_PUBLISHED, - 'contextId' => $context->getId(), - 'count' => 1000, - 'orderBy' => ORDERBY_DATE_PUBLISHED, - ]; - $recentItems = (int) $this->_parentPlugin->getSetting($context->getId(), 'recentItems'); - if ($recentItems > 0) { - $args['count'] = $recentItems; - } - $templateMgr->assign('submissions', iterator_to_array(Services::get('submission')->getMany($args))); - - $versionDao = DAORegistry::getDAO('VersionDAO'); /* @var $versionDao VersionDAO */ - $version = $versionDao->getCurrentVersion(); - $templateMgr->assign('ompVersion', $version->getVersionString()); - - AppLocale::requireComponents(LOCALE_COMPONENT_PKP_SUBMISSION); // submission.copyrightStatement - - $templateMgr->display($this->getTemplateResource($typeMap[$type]), $mimeTypeMap[$type]); - - return true; - } -} - - diff --git a/plugins/generic/webFeed/WebFeedPlugin.inc.php b/plugins/generic/webFeed/WebFeedPlugin.inc.php deleted file mode 100644 index d10d6f3ea02..00000000000 --- a/plugins/generic/webFeed/WebFeedPlugin.inc.php +++ /dev/null @@ -1,156 +0,0 @@ -getEnabled($mainContextId)) { - HookRegistry::register('TemplateManager::display',array($this, 'callbackAddLinks')); - $this->import('WebFeedBlockPlugin'); - $blockPlugin = new WebFeedBlockPlugin($this); - PluginRegistry::register('blocks', $blockPlugin, $this->getPluginPath()); - - $this->import('WebFeedGatewayPlugin'); - $gatewayPlugin = new WebFeedGatewayPlugin($this); - PluginRegistry::register('gateways', $gatewayPlugin, $this->getPluginPath()); - } - return true; - } - return false; - } - - /** - * Get the name of the settings file to be installed on new context - * creation. - * @return string - */ - function getContextSpecificPluginSettingsFile() { - return $this->getPluginPath() . '/settings.xml'; - } - - /** - * Add feed links to page on select/all pages. - */ - function callbackAddLinks($hookName, $args) { - // Only page requests will be handled - $request = Application::get()->getRequest(); - if (!is_a($request->getRouter(), 'PKPPageRouter')) return false; - - $templateManager =& $args[0]; - $currentPress = $templateManager->getTemplateVars('currentPress'); - $displayPage = $this->getSetting($currentPress->getId(), 'displayPage'); - - // Define when the elements should appear - $contexts = $displayPage == 'homepage' ? 'frontend-index' : 'frontend'; - - $templateManager->addHeader( - 'webFeedAtom+xml', - '', - array( - 'contexts' => $contexts, - ) - ); - $templateManager->addHeader( - 'webFeedRdf+xml', - '', - array( - 'contexts' => $contexts, - ) - ); - $templateManager->addHeader( - 'webFeedRss+xml', - '', - array( - 'contexts' => $contexts, - ) - ); - - return false; - } - - /** - * @see Plugin::getActions() - */ - function getActions($request, $verb) { - $router = $request->getRouter(); - import('lib.pkp.classes.linkAction.request.AjaxModal'); - return array_merge( - $this->getEnabled()?array( - new LinkAction( - 'settings', - new AjaxModal( - $router->url($request, null, null, 'manage', null, array('verb' => 'settings', 'plugin' => $this->getName(), 'category' => 'generic')), - $this->getDisplayName() - ), - __('manager.plugins.settings'), - null - ), - ):array(), - parent::getActions($request, $verb) - ); - } - - /** - * @see Plugin::manage() - */ - function manage($args, $request) { - switch ($request->getUserVar('verb')) { - case 'settings': - $context = $request->getContext(); - - AppLocale::requireComponents(LOCALE_COMPONENT_APP_COMMON, LOCALE_COMPONENT_PKP_MANAGER); - $templateMgr = TemplateManager::getManager($request); - $templateMgr->registerPlugin('function', 'plugin_url', array($this, 'smartyPluginUrl')); - - $this->import('SettingsForm'); - $form = new SettingsForm($this, $context->getId()); - - if ($request->getUserVar('save')) { - $form->readInputData(); - if ($form->validate()) { - $form->execute(); - return new JSONMessage(true); - } - } else { - $form->initData(); - } - return new JSONMessage(true, $form->fetch($request)); - } - return parent::manage($args, $request); - } -} - - diff --git a/plugins/generic/webFeed/index.php b/plugins/generic/webFeed/index.php deleted file mode 100644 index c67d4b8bd33..00000000000 --- a/plugins/generic/webFeed/index.php +++ /dev/null @@ -1,23 +0,0 @@ -\n" -"Language-Team: Catalan \n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Connector de canals d'informació" - -msgid "plugins.generic.webfeed.description" -msgstr "Aquest connector crea canals d'informació RSS/Atom per al número actual." - -msgid "plugins.generic.webfeed.settings" -msgstr "Configuració" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Mostra els enlla殳 als canals d'informaciﭯm豠a la p�na inicial i a les p�nes del n�." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Mostra els enllaços als canals d'informació a totes les pàgines de la revista." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Introduïu un nombre enter positiu per als elements més recents." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Logotip Atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Logotip RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Logotip RSS2" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Nombre d'elements per mostrar" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nou contingut" diff --git a/plugins/generic/webFeed/locale/cs_CZ/locale.po b/plugins/generic/webFeed/locale/cs_CZ/locale.po deleted file mode 100644 index 22ba8db308f..00000000000 --- a/plugins/generic/webFeed/locale/cs_CZ/locale.po +++ /dev/null @@ -1,51 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:22+00:00\n" -"PO-Revision-Date: 2020-06-05 16:39+0000\n" -"Last-Translator: Jiří Dlouhý \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Plugin Web Feed" - -msgid "plugins.generic.webfeed.description" -msgstr "Tento plugin vytváří RSS/Atom web syndication feedy pro aktuální číslo." - -msgid "plugins.generic.webfeed.settings" -msgstr "Nastavení" - -msgid "plugins.generic.webfeed.settings.issue" -msgstr "Zobrazit odkazy na feed pouze na stránkách čísla." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Zobrazit odkazy na feed pouze na domácí stránce a na stránkách čísla." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Zobrazit odkazy na feed na všech stránkách časopisu." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Vložte prosím celé kladné číslo pro počet posledních vydaných položek." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logo" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logo" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Počet prvků na zobrazení" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nový obsah" diff --git a/plugins/generic/webFeed/locale/da_DK/locale.po b/plugins/generic/webFeed/locale/da_DK/locale.po deleted file mode 100644 index add6c875baa..00000000000 --- a/plugins/generic/webFeed/locale/da_DK/locale.po +++ /dev/null @@ -1,45 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-09 18:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2-logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1-logo" - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom-logo" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Indtast et positivt heltal for nyligt publicerede poster." - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Antal emner, der skal vises" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Vis links til web feeds på alle forlagssider." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Vis kun links til web feeds på startsiden." - -msgid "plugins.generic.webfeed.settings" -msgstr "Indstillinger" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nyt indhold" - -msgid "plugins.generic.webfeed.description" -msgstr "Denne plugin leverer RSS/Atom web feeds til forlaget." - -msgid "plugins.generic.webfeed.displayName" -msgstr "Web Feed-plugin" diff --git a/plugins/generic/webFeed/locale/de_DE/locale.po b/plugins/generic/webFeed/locale/de_DE/locale.po deleted file mode 100644 index f60d021d767..00000000000 --- a/plugins/generic/webFeed/locale/de_DE/locale.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2021-01-21 15:49+0000\n" -"Last-Translator: Heike Riegler \n" -"Language-Team: German \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Web-Feed-Plugin" - -msgid "plugins.generic.webfeed.description" -msgstr "Dieses Plugin erzeugt RSS/Atom-Feeds für die aktuelle Ausgabe." - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Neuer Inhalt" - -msgid "plugins.generic.webfeed.settings" -msgstr "Einstellungen" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Web-Feed-Links nur auf der Hauptseite anzeigen." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Links zu Web-Feeds auf allen Zeitschriftenseiten anzeigen." - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Anzahl anzuzeigender Titel" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Bitte geben Sie eine positive, ganze Zahl für aktuelle Veröffentlichungen an." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom-Logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1-Logo" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2-Logo" diff --git a/plugins/generic/webFeed/locale/el_GR/locale.po b/plugins/generic/webFeed/locale/el_GR/locale.po deleted file mode 100644 index a12f908030c..00000000000 --- a/plugins/generic/webFeed/locale/el_GR/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:22+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:22+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Web Feed Plugin" - -msgid "plugins.generic.webfeed.description" -msgstr "Το plugin αυτό παράγει RSS/Atom web syndication feeds για το τρέχον τεύχος." - -msgid "plugins.generic.webfeed.settings" -msgstr "Ρυθμίσεις" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Εμφάνιση web feed συνδέσμους σε όλες τις σελίδες του περιοδικού." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Παρακαλούμε εισάγετε έναν θετικό ακέραιο αριθμό για πρόσφατα δημοσιευμένα στοιχεία." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Εμφάνιση συνδέσμων web feed μόνο στην αρχική σελίδα και στις σελίδες του τεύχους." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logo" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logo" diff --git a/plugins/generic/webFeed/locale/en_US/locale.po b/plugins/generic/webFeed/locale/en_US/locale.po deleted file mode 100644 index 51b8b34fadc..00000000000 --- a/plugins/generic/webFeed/locale/en_US/locale.po +++ /dev/null @@ -1,45 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Web Feed Plugin" - -msgid "plugins.generic.webfeed.description" -msgstr "This plugin produces RSS/Atom web syndication feeds for the press." - -msgid "plugins.generic.webfeed.newcontent" -msgstr "New Content" - -msgid "plugins.generic.webfeed.settings" -msgstr "Settings" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Display web feed links on homepage only." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Display web feed links on all press pages." - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Number of items to display" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Please enter a positive integer for recent published items." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logo" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logo" diff --git a/plugins/generic/webFeed/locale/es_ES/locale.po b/plugins/generic/webFeed/locale/es_ES/locale.po deleted file mode 100644 index 34e0f0a3fb8..00000000000 --- a/plugins/generic/webFeed/locale/es_ES/locale.po +++ /dev/null @@ -1,50 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:22+00:00\n" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Plugin Web de fuentes RSS/Atom" - -msgid "plugins.generic.webfeed.description" -msgstr "Este plugin produce canales RSS/Atom para el Número en curso." - -msgid "plugins.generic.webfeed.settings" -msgstr "Opciones" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "" -"Introduzca un número entero positivo para los elementos publicados " -"recientemente." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Mostrar enlaces al feed en todas las páginas de la revista." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Mostrar enlaces al feed solamente en la página de inicio y en la página del número." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Logo Atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Logo RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Logo RSS2" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Número de elementos que mostrar" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nuevo contenido" diff --git a/plugins/generic/webFeed/locale/eu_ES/locale.po b/plugins/generic/webFeed/locale/eu_ES/locale.po deleted file mode 100644 index 83ad2f2e344..00000000000 --- a/plugins/generic/webFeed/locale/eu_ES/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:23+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:23+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Web elikatzeko iturriaren plugina" - -msgid "plugins.generic.webfeed.description" -msgstr "Plugin honek RSS/Atom web sindikazioko iturria sortzen du uneko zenbakirako." - -msgid "plugins.generic.webfeed.settings" -msgstr "Ezarpenak" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Hasierak orrian eta zenbakiaren orrialdeetan bakarrik bistaratu estekak." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Aldizkariko orri guztietan bistaratu estekak." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Idatzi osoko zenbaki positibo bat elementu argitaratuen kopurua zehazteko." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logoa" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logoa" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logoa" diff --git a/plugins/generic/webFeed/locale/fa_IR/locale.po b/plugins/generic/webFeed/locale/fa_IR/locale.po deleted file mode 100644 index da652b0f51d..00000000000 --- a/plugins/generic/webFeed/locale/fa_IR/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:23+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:23+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "پلاگین بازخوراند وب" - -msgid "plugins.generic.webfeed.description" -msgstr "این پلاگین بازخوراند وب برای شماره جاری تولید میکند." - -msgid "plugins.generic.webfeed.settings" -msgstr "تنظیمات" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "نمایش بازخوراند وب فقط بر روی تمام صفحات مجله" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "لطفا عدد صحیح مثبتی برای آخرین موارد چاپ شده وارد کنید." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "لینک فید وب را فقط در صفحاتی که شماره مجله در آن نمایش مییابد نشان بده" - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "لوگوی اتم" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "لوگوی RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "لوگوی RSS2" diff --git a/plugins/generic/webFeed/locale/fi_FI/locale.po b/plugins/generic/webFeed/locale/fi_FI/locale.po deleted file mode 100644 index 3a44261107e..00000000000 --- a/plugins/generic/webFeed/locale/fi_FI/locale.po +++ /dev/null @@ -1,46 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-18 16:48+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logo" - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logo" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Anna positiivinen kokonaisluku viimeisimmille julkaistuille kohteille." - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Näytettävien kohteiden määrä" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Näytä verkkosyötelinkit julkaisijan kaikilla sivuilla." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Näytä verkkosyötelinkit vain kotisivulla." - -msgid "plugins.generic.webfeed.settings" -msgstr "Asetukset" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Uusi sisältö" - -msgid "plugins.generic.webfeed.description" -msgstr "" -"Tämä lisäosa tuottaa RSS/Atom-verkkosisältösyötteitä julkaisijan sivustolle." - -msgid "plugins.generic.webfeed.displayName" -msgstr "Verkkosyötelisäosa" diff --git a/plugins/generic/webFeed/locale/fr_CA/locale.po b/plugins/generic/webFeed/locale/fr_CA/locale.po deleted file mode 100644 index 80bbb12aa09..00000000000 --- a/plugins/generic/webFeed/locale/fr_CA/locale.po +++ /dev/null @@ -1,42 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Plugiciel de flux de nouvelles" - -msgid "plugins.generic.webfeed.description" -msgstr "Ce plugiciel produit des flux de nouvelles en format Atom/RSS pour le numéro courant." - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nouveau contenu" - -msgid "plugins.generic.webfeed.settings" -msgstr "Paramètres" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Afficher les liens de flux de nouvelles sur toutes les pages de la revue." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Veuillez entrer un nombre entier positif pour les articles publiés récemment." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Logo Atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Logo RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Logo RSS2" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Afficher les liens de fil de syndication dans la page d'accueil et les pages des numéros uniquement." diff --git a/plugins/generic/webFeed/locale/hr_HR/locale.po b/plugins/generic/webFeed/locale/hr_HR/locale.po deleted file mode 100644 index 6a7555f2763..00000000000 --- a/plugins/generic/webFeed/locale/hr_HR/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:23+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:23+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Dodatak za feed" - -msgid "plugins.generic.webfeed.description" -msgstr "Ovaj dodatak stvara RSS/Atom feed sadržaja trenutnog broja." - -msgid "plugins.generic.webfeed.settings" -msgstr "Postavke" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Prikazuj poveznice na feed na svim stranicama časopisa." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Molimo unesite pozitivni cijeli broj kao broj prikazanih nedavno objavljene priloge." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logotip" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logotip" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logotip" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Prikazuj poveznice na feed na naslovnici časopisa i stranicama brojeva." diff --git a/plugins/generic/webFeed/locale/id_ID/locale.po b/plugins/generic/webFeed/locale/id_ID/locale.po deleted file mode 100644 index e89f51a69d7..00000000000 --- a/plugins/generic/webFeed/locale/id_ID/locale.po +++ /dev/null @@ -1,50 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:23+00:00\n" -"PO-Revision-Date: 2020-02-13 09:35+0000\n" -"Last-Translator: Ramli Baharuddin \n" -"Language-Team: Indonesian \n" -"Language: id_ID\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Plugin Feed Web" - -msgid "plugins.generic.webfeed.description" -msgstr "" -"Plugin ini menghasilkan RSS/ Atom web syndication feeds untuk terbitan " -"sekarang." - -msgid "plugins.generic.webfeed.settings" -msgstr "Pengaturan" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Tampilkan link feed web hanya di homepage dan halaman terbitan." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Tampilkan link feed web di seluruh halaman jurnal." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Masukkan bilnagan bulat positif untuk item yang diterbitkan sekarang." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Logo atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Logo RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Logo RSS2" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Jumlah item yang ditampilkan" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Konten Baru" diff --git a/plugins/generic/webFeed/locale/it_IT/locale.po b/plugins/generic/webFeed/locale/it_IT/locale.po deleted file mode 100644 index 53df7d8bd11..00000000000 --- a/plugins/generic/webFeed/locale/it_IT/locale.po +++ /dev/null @@ -1,42 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:23+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:23+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Feed della rivista" - -msgid "plugins.generic.webfeed.description" -msgstr "Questo plugin genera il feed RSS/Atom per il fascicolo corrente." - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nuovo contenuto" - -msgid "plugins.generic.webfeed.settings" -msgstr "Impostazioni" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Per favore inserisci un intero positivo per gli articoli recenti pubblicati" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Mostra il link ai feed su tutte le pagine della rivista." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Lodo Atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Logo RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Logo RSS2" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Mostra il link ai feed sulla home page e sulle pagine dei fascicoli." diff --git a/plugins/generic/webFeed/locale/ja_JP/locale.po b/plugins/generic/webFeed/locale/ja_JP/locale.po deleted file mode 100644 index 1393da4937f..00000000000 --- a/plugins/generic/webFeed/locale/ja_JP/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:23+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:23+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "フィードプラグイン" - -msgid "plugins.generic.webfeed.description" -msgstr "最新号のRSS/Atom配信フィードを提供します。" - -msgid "plugins.generic.webfeed.settings" -msgstr "設定" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "雑誌のすべてのページにフィードリンクを表示する。" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "ホームページと巻号ページのみにフィードリンクを表示する。" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "送信するアイテムの件数は正の整数で指定してください。" - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atomロゴ" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1ロゴ" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2ロゴ" diff --git a/plugins/generic/webFeed/locale/mk_MK/locale.po b/plugins/generic/webFeed/locale/mk_MK/locale.po deleted file mode 100644 index 25d22f6d140..00000000000 --- a/plugins/generic/webFeed/locale/mk_MK/locale.po +++ /dev/null @@ -1,45 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-06 17:52+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Лого RSS2" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Лого RSS1" - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Атомско лого" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Внесете позитивен цел број за неодамна објавените ставки." - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Број на ставки што треба да се прикажат" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Прикажете врски за веб-довод на сите страници за печатот." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Прикажете врски за веб-довод само на почетната страница." - -msgid "plugins.generic.webfeed.settings" -msgstr "Поставки" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Нова содржина" - -msgid "plugins.generic.webfeed.description" -msgstr "Овој приклучок произведува RSS / Atom веб-синдикални извори за печатот." - -msgid "plugins.generic.webfeed.displayName" -msgstr "Приклучок за веб-напојување" diff --git a/plugins/generic/webFeed/locale/nb_NO/locale.po b/plugins/generic/webFeed/locale/nb_NO/locale.po deleted file mode 100644 index c19d54a7276..00000000000 --- a/plugins/generic/webFeed/locale/nb_NO/locale.po +++ /dev/null @@ -1,50 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:24+00:00\n" -"PO-Revision-Date: 2020-10-20 14:50+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Webstrømmer" - -msgid "plugins.generic.webfeed.description" -msgstr "" -"Dette programtillegget oppretter en RSS/Atom-strøm for siste utgave av " -"tidsskriftet." - -msgid "plugins.generic.webfeed.settings" -msgstr "Innstillinger" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Vis webstrømlenker bare på hjemmesiden." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Vis webstrømlenker på alle sider." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Sett inn et positivt heltall for nylig publiserte elementer." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom-logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1-logo" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2-logo" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Antall elementer som skal vises" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nytt innhold" diff --git a/plugins/generic/webFeed/locale/nl_NL/locale.po b/plugins/generic/webFeed/locale/nl_NL/locale.po deleted file mode 100644 index 31bef16b63d..00000000000 --- a/plugins/generic/webFeed/locale/nl_NL/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:24+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:24+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Web Feed Plugin" - -msgid "plugins.generic.webfeed.description" -msgstr "Deze plugin produceert RSS/Atom feeds voor het huidige nummer." - -msgid "plugins.generic.webfeed.settings" -msgstr "Instellingen" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Toon web feed links op alle tijdschriftpagina's." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Het aantal recente items moet een positief geheel getal zijn." - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logo" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logo" - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logo" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Toon web feeds alleen op de homepage en de nummer-pagina's" diff --git a/plugins/generic/webFeed/locale/pl_PL/locale.po b/plugins/generic/webFeed/locale/pl_PL/locale.po deleted file mode 100644 index 14867716046..00000000000 --- a/plugins/generic/webFeed/locale/pl_PL/locale.po +++ /dev/null @@ -1,51 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-10 19:07+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Logo RSS2" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Logo RSS1" - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Logo Atomu" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "" -"Proszę wprowadź liczbę całkowitą dodatnią dla ostatnio opublikowanych " -"pozycji." - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Liczba elementów do wyświetlenia" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "" -"Wyświetl linki do kanałów sieciowych na wszystkich stronach wydawnictwa." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Wyświetl linki do kanałów sieciowych tylko na stronie głównej." - -msgid "plugins.generic.webfeed.settings" -msgstr "Ustawienia" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nowa zawartość" - -msgid "plugins.generic.webfeed.description" -msgstr "" -"Wtyczka stwarza RSS/Atom syndykacji internetowej kanałów dla tego " -"wydawnictwa." - -msgid "plugins.generic.webfeed.displayName" -msgstr "Wtyczka źródła sieci" diff --git a/plugins/generic/webFeed/locale/pt_BR/locale.po b/plugins/generic/webFeed/locale/pt_BR/locale.po deleted file mode 100644 index 4b178e91d3a..00000000000 --- a/plugins/generic/webFeed/locale/pt_BR/locale.po +++ /dev/null @@ -1,45 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T12:01:00-07:00\n" -"PO-Revision-Date: 2019-09-30T12:01:00-07:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Canal de divulgação RSS" - -msgid "plugins.generic.webfeed.description" -msgstr "Este plugin produz canais de divulgação RSS/Atom para a edição atual." - -msgid "plugins.generic.webfeed.settings" -msgstr "Configurações" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Exibir canais em todas as páginas da revista." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Informe um inteiro positivo para o número de itens mais recentes." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Exibir links de canais apenas nas páginas inicial e das edições." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Logo Atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Logo RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Logo RSS2" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Novo Conteúdo" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Quantidade de itens a mostrar" diff --git a/plugins/generic/webFeed/locale/pt_PT/locale.po b/plugins/generic/webFeed/locale/pt_PT/locale.po deleted file mode 100644 index 84c78fa9ffe..00000000000 --- a/plugins/generic/webFeed/locale/pt_PT/locale.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:24+00:00\n" -"PO-Revision-Date: 2020-02-20 01:20+0000\n" -"Last-Translator: Carla Marques \n" -"Language-Team: Portuguese (Portugal) \n" -"Language: pt_PT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Plugin Canal de Divulgação RSS" - -msgid "plugins.generic.webfeed.description" -msgstr "Este plugin produz canais de divulgação RSS/Atom para a edição actual." - -msgid "plugins.generic.webfeed.settings" -msgstr "Configurações" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Exibir canais em todas as páginas da revista." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Indique um inteiro positivo para o número de itens mais recentes." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Disponibilizar links de canais apenas na página de início." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Logo Atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Logo RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Logo RSS2" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Número de itens a disponibilizar" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Novo Conteúdo" diff --git a/plugins/generic/webFeed/locale/ro_RO/locale.po b/plugins/generic/webFeed/locale/ro_RO/locale.po deleted file mode 100644 index dcffce05fbe..00000000000 --- a/plugins/generic/webFeed/locale/ro_RO/locale.po +++ /dev/null @@ -1,49 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:24+00:00\n" -"PO-Revision-Date: 2020-08-19 05:46+0000\n" -"Last-Translator: Cristian ZIMBRU \n" -"Language-Team: Romanian \n" -"Language: ro_RO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Modul pentru fluxuri web" - -msgid "plugins.generic.webfeed.description" -msgstr "Acest modul emite fluxuri web RSS/Atom pentru numărul curent." - -msgid "plugins.generic.webfeed.settings" -msgstr "Setări" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Afișează linkurile fluxului doar pe pagina principală și pe paginile numărului de revistă." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Afișează linkurile fluxului pe toate paginile revistei." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Introdu un număr zecimal pozitiv pentru articolele publicate recent." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logo" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logo" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Elemente afișate" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Articol nou" diff --git a/plugins/generic/webFeed/locale/ru_RU/locale.po b/plugins/generic/webFeed/locale/ru_RU/locale.po deleted file mode 100644 index 0532e590e1e..00000000000 --- a/plugins/generic/webFeed/locale/ru_RU/locale.po +++ /dev/null @@ -1,49 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:24+00:00\n" -"PO-Revision-Date: 2020-03-04 09:36+0000\n" -"Last-Translator: Sergei Yukhimets \n" -"Language-Team: Russian \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Модуль новостной ленты" - -msgid "plugins.generic.webfeed.description" -msgstr "Модуль формирует новостную ленту в форматах RSS/Atom для текущего выпуска." - -msgid "plugins.generic.webfeed.settings" -msgstr "Настройки" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Показать ссылки на ленту на домашней странице и на странице выпуска." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Показать ссылки на ленту на всех страницах журнала." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Пожалуйста введите положительное число." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Логотип Atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Логотип RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Логотип RSS2" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Новое Содержание" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Показывать строк" diff --git a/plugins/generic/webFeed/locale/sl_SI/locale.po b/plugins/generic/webFeed/locale/sl_SI/locale.po deleted file mode 100644 index 15d89a59016..00000000000 --- a/plugins/generic/webFeed/locale/sl_SI/locale.po +++ /dev/null @@ -1,45 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:24+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:24+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Vtičnik za spletne vire" - -msgid "plugins.generic.webfeed.description" -msgstr "Ta vtičnik za to spletišče ustvarja protokole spletnega zalaganja RSS/Atom." - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nova vsebina" - -msgid "plugins.generic.webfeed.settings" -msgstr "Nastavitve" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Prikaži povezave do spletnih vsebin samo na domači strani." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Prikaži povezave do spletnih vsebin na vseh straneh tiskovnega portala." - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Število prikazanih prispevkov" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Vnesite pozitivno celo število za nedavno objavljene prispevke." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Logotip Atoma" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Logotip RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Logotip RSS2" diff --git a/plugins/generic/webFeed/locale/sr_SR/locale.po b/plugins/generic/webFeed/locale/sr_SR/locale.po deleted file mode 100644 index 6ffb9e41c05..00000000000 --- a/plugins/generic/webFeed/locale/sr_SR/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:25+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:25+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Web Feed dodatak" - -msgid "plugins.generic.webfeed.description" -msgstr "Ovaj dodatak proizvodi RSS/Atom web syndication feeds za trenutni broj časopisa." - -msgid "plugins.generic.webfeed.settings" -msgstr "Podešavanja" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Prikaži linkove samo na početnoj stranici i stranici trenutnog broja." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Prikaži linkove na svim stranicama časopisa." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Unesite broj stavki koje će se prikazivati." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logo" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logo" diff --git a/plugins/generic/webFeed/locale/sv_SE/locale.po b/plugins/generic/webFeed/locale/sv_SE/locale.po deleted file mode 100644 index 6439074d734..00000000000 --- a/plugins/generic/webFeed/locale/sv_SE/locale.po +++ /dev/null @@ -1,44 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:25+00:00\n" -"PO-Revision-Date: 2020-05-27 20:40+0000\n" -"Last-Translator: Magnus Annemark \n" -"Language-Team: Swedish \n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Tillägg som genererar en RSS/Atom-ström" - -msgid "plugins.generic.webfeed.description" -msgstr "" -"Det här tillägget genererar en RSS/Atom ström som gör det möjligt att få " -"tillkomsten av ettnytt nummer skickat som en nyhet." - -msgid "plugins.generic.webfeed.settings" -msgstr "Inställningar" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Visa RSS/Atom-länkar enbart på tidningsnumrets sidor och på hemsidan." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Visa RSS/Atom-länkar på alla tidningens sidor." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Vänligen ange ett antal att visa från de senast publicerade artiklarna." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logotyp" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logotyp" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logotyp" diff --git a/plugins/generic/webFeed/locale/tr_TR/locale.po b/plugins/generic/webFeed/locale/tr_TR/locale.po deleted file mode 100644 index 7e3f600c044..00000000000 --- a/plugins/generic/webFeed/locale/tr_TR/locale.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:25+00:00\n" -"PO-Revision-Date: 2021-01-21 20:47+0000\n" -"Last-Translator: Uğur Koçak \n" -"Language-Team: Turkish \n" -"Language: tr_TR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Web Besleme Eklentisi" - -msgid "plugins.generic.webfeed.description" -msgstr "Bu eklenti yayın için RSS/Atom web birleştirme beslemelerini üretir." - -msgid "plugins.generic.webfeed.settings" -msgstr "Ayarlar" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Sadece anasayfada web besleme bağlantılarını görüntüler." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Tüm dergi sayfalarında web besleme bağlantılarını görüntüler." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "En son yayınlanan öğeler için pozitif bir tamsayı giriniz." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logosu" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logosu" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logosu" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Görüntülenecek öge sayısı" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Yeni İçerik" diff --git a/plugins/generic/webFeed/locale/uk_UA/locale.po b/plugins/generic/webFeed/locale/uk_UA/locale.po deleted file mode 100644 index ed72000640c..00000000000 --- a/plugins/generic/webFeed/locale/uk_UA/locale.po +++ /dev/null @@ -1,49 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:25+00:00\n" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk_UA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Модуль веб-стрічок" - -msgid "plugins.generic.webfeed.description" -msgstr "Цей модуль виробляє стрічки веб-синдикації RSS/Atom для поточного випуску." - -msgid "plugins.generic.webfeed.settings" -msgstr "Налаштування" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Відображати посилання на стрічки лише на домашній сторінці сайту журналу та на сторінках випуску." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Відображати посилання на стрічки на всіх сторінках сайту журналу." - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Будь ласка, вкажіть позитивне ціле число для кількості нових опублікованих статей." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Логотип Atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Логотип RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Логотип RSS2" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Кількість одиниць для показу" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Новий Зміст" diff --git a/plugins/generic/webFeed/locale/vi_VN/locale.po b/plugins/generic/webFeed/locale/vi_VN/locale.po deleted file mode 100644 index d00d70f12c1..00000000000 --- a/plugins/generic/webFeed/locale/vi_VN/locale.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:25+00:00\n" -"PO-Revision-Date: 2020-07-06 20:40+0000\n" -"Last-Translator: Tran Ngoc Trung \n" -"Language-Team: Vietnamese \n" -"Language: vi_VN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Công cụ kênh cập nhật tự động" - -msgid "plugins.generic.webfeed.description" -msgstr "Công cụ này tạo ra các kênh cập nhật tự động RSS/Atom cho số mới ra." - -msgid "plugins.generic.webfeed.settings" -msgstr "Thiết lập" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "Vui lòng nhập một số nguyên dương các bài xuất bản gần đây." - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "Chỉ hiển thị đường dẫn cập nhật tin ở các trang số tạp chí và trang chủ." - -msgid "plugins.generic.webfeed.settings.all" -msgstr "Chỉ hiển thị đường dẫn cập nhật tin ở tất cả các trang của tạp chí." - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Biểu tượng Atom" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "Biểu tượng RSS1" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "Biểu tượng RSS2" - -msgid "plugins.generic.webfeed.newcontent" -msgstr "Nội dung mới" - -msgid "plugins.generic.webfeed.settings.recentBooks" -msgstr "Số mục cần hiển thị" diff --git a/plugins/generic/webFeed/locale/zh_CN/locale.po b/plugins/generic/webFeed/locale/zh_CN/locale.po deleted file mode 100644 index b2fb357bb98..00000000000 --- a/plugins/generic/webFeed/locale/zh_CN/locale.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:26+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:26+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "网络Feed插件" - -msgid "plugins.generic.webfeed.description" -msgstr "这个插件为当前的刊期生成的RSS / Atom的网络联合供稿。" - -msgid "plugins.generic.webfeed.settings" -msgstr "设置" - -msgid "plugins.generic.webfeed.settings.homepage" -msgstr "只在首页和刊期页面显示Feed链接。" - -msgid "plugins.generic.webfeed.settings.all" -msgstr "在所有页面显示feed链接" - -msgid "plugins.generic.webfeed.settings.recentItemsRequired" -msgstr "请为最近出版的项目制定一个整数。" - -msgid "plugins.generic.webfeed.atom.altText" -msgstr "Atom logo" - -msgid "plugins.generic.webfeed.rss1.altText" -msgstr "RSS1 logo" - -msgid "plugins.generic.webfeed.rss2.altText" -msgstr "RSS2 logo" diff --git a/plugins/generic/webFeed/locale/zh_TW/locale.po b/plugins/generic/webFeed/locale/zh_TW/locale.po deleted file mode 100644 index 628104b8636..00000000000 --- a/plugins/generic/webFeed/locale/zh_TW/locale.po +++ /dev/null @@ -1,18 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:26+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:26+00:00\n" -"Language: \n" - -msgid "plugins.generic.webfeed.displayName" -msgstr "Feed Plugin" - -msgid "plugins.generic.webfeed.description" -msgstr "This plugin produces RSS/Atom web syndication feeds for the current issue." diff --git a/plugins/generic/webFeed/settings.xml b/plugins/generic/webFeed/settings.xml deleted file mode 100644 index 29ee8820005..00000000000 --- a/plugins/generic/webFeed/settings.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - enabled - true - - - displayPage - homepage - - - displayItems - issue - - diff --git a/plugins/generic/webFeed/templates/atom.tpl b/plugins/generic/webFeed/templates/atom.tpl deleted file mode 100644 index 8cf3e4d221b..00000000000 --- a/plugins/generic/webFeed/templates/atom.tpl +++ /dev/null @@ -1,88 +0,0 @@ -{** - * plugins/generic/webFeed/templates/atom.tpl - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2003-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * Atom feed template - * - *} - - - {* required elements *} - {url page="issue" op="feed"} - {$currentPress->getLocalizedName()|escape:"html"|strip} - - {assign var=latestDate value=0} - {foreach from=$submissions item=submission} - {if $latestDate < $submission->getLastModified()} - {assign var=latestDate value=$submission->getLastModified()} - {/if} - {/foreach} - {$latestDate|date_format:"%Y-%m-%dT%T%z"|regex_replace:"/00$/":":00"} - - {* recommended elements *} - {if $currentPress->getSetting('contactName')} - - {$currentPress->getSetting('contactName')|strip|escape:"html"} - {if $currentPress->getSetting('contactEmail')} - {$currentPress->getSetting('contactEmail')|strip|escape:"html"} - {/if} - - {/if} - - - - - {* optional elements *} - - {* *} - {* *} - - Open Monograph Press - {if $currentPress->getLocalizedDescription()} - {assign var="description" value=$currentPress->getLocalizedDescription()} - {elseif $currentPress->getLocalizedSetting('searchDescription')} - {assign var="description" value=$currentPress->getLocalizedSetting('searchDescription')} - {/if} - - {$description|strip|escape:"html"} - - {foreach from=$submissions item=submission key=sectionId} - - {* required elements *} - {url page="catalog" op="book" path=$submission->getId()} - {$submission->getLocalizedTitle()|strip|escape:"html"} - {$submission->getLastModified()|date_format:"%Y-%m-%dT%T%z"|regex_replace:"/00$/":":00"} - - {* recommended elements *} - - {foreach from=$submission->getAuthors() item=author name=authorList} - - {$author->getFullName(false)|strip|escape:"html"} - {if $author->getEmail()} - {$author->getEmail()|strip|escape:"html"} - {/if} - - {/foreach}{* authors *} - - getId()}" /> - - {if $submission->getLocalizedAbstract()} - getId()}">{$submission->getLocalizedAbstract()|strip|escape:"html"} - {/if} - - {* optional elements *} - {* *} - {* *} - - {if $submission->getDatePublished()} - {$submission->getDatePublished()|date_format:"%Y-%m-%dT%T%z"|regex_replace:"/00$/":":00"} - {/if} - - {* *} - {translate|escape key="submission.copyrightStatement" copyrightYear=$submission->getCopyrightYear() copyrightHolder=$submission->getLocalizedCopyrightHolder()} - - {/foreach}{* submissions *} - diff --git a/plugins/generic/webFeed/templates/block.tpl b/plugins/generic/webFeed/templates/block.tpl deleted file mode 100644 index 3e5fdfdcf0e..00000000000 --- a/plugins/generic/webFeed/templates/block.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{** - * plugins/generic/webFeed/templates/block.tpl - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2003-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * Feed plugin navigation sidebar. - * - *} -
                -

                {translate key="plugins.generic.webfeed.newcontent"}

                -
                - -
                -
                diff --git a/plugins/generic/webFeed/templates/images/atom10_logo.gif b/plugins/generic/webFeed/templates/images/atom10_logo.gif deleted file mode 100644 index 22a807d8c90..00000000000 Binary files a/plugins/generic/webFeed/templates/images/atom10_logo.gif and /dev/null differ diff --git a/plugins/generic/webFeed/templates/images/rss10_logo.gif b/plugins/generic/webFeed/templates/images/rss10_logo.gif deleted file mode 100644 index eaec4b40d87..00000000000 Binary files a/plugins/generic/webFeed/templates/images/rss10_logo.gif and /dev/null differ diff --git a/plugins/generic/webFeed/templates/images/rss20_logo.gif b/plugins/generic/webFeed/templates/images/rss20_logo.gif deleted file mode 100644 index 6f2d8ccff2e..00000000000 Binary files a/plugins/generic/webFeed/templates/images/rss20_logo.gif and /dev/null differ diff --git a/plugins/generic/webFeed/templates/rss.tpl b/plugins/generic/webFeed/templates/rss.tpl deleted file mode 100644 index e1b9d72654c..00000000000 --- a/plugins/generic/webFeed/templates/rss.tpl +++ /dev/null @@ -1,94 +0,0 @@ -{** - * plugins/generic/webFeed/templates/rss.tpl - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2003-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * RSS feed template - * - *} - - - - - {* required elements *} - {$currentPress->getLocalizedName()|strip|escape:"html"} - {url press=$currentPress->getPath()} - - {if $currentPress->getLocalizedDescription()} - {assign var="description" value=$currentPress->getLocalizedDescription()} - {elseif $currentPress->getLocalizedSetting('searchDescription')} - {assign var="description" value=$currentPress->getLocalizedSetting('searchDescription')} - {/if} - - {$description|strip|escape:"html"} - - {* optional elements *} - {assign var="publisherInstitution" value=$currentPress->getSetting('publisherInstitution')} - {if $publisherInstitution} - {$publisherInstitution|strip|escape:"html"} - {/if} - - {if $currentPress->getPrimaryLocale()} - {$currentPress->getPrimaryLocale()|replace:'_':'-'|strip|escape:"html"} - {/if} - - {$currentPress->getLocalizedName()|strip|escape:"html"} - - {if $currentPress->getSetting('printIssn')} - {assign var="ISSN" value=$currentPress->getSetting('printIssn')} - {elseif $currentPress->getSetting('onlineIssn')} - {assign var="ISSN" value=$currentPress->getSetting('onlineIssn')} - {/if} - - {if $ISSN} - {$ISSN|escape} - {/if} - - {if $currentPress->getLocalizedSetting('copyrightNotice')} - {$currentPress->getLocalizedSetting('copyrightNotice')|strip|escape:"html"} - {/if} - - - - {foreach from=$submissions item=submission} - getId()}"/> - {/foreach}{* submissions *} - - - - -{foreach name=submissions from=$submissions item=submission} - getId()}"> - - {* required elements *} - {$submission->getLocalizedTitle()|strip|escape:"html"} - {url page="catalog" op="book" path=$submission->getId()} - - {* optional elements *} - {if $submission->getLocalizedAbstract()} - {$submission->getLocalizedAbstract()|strip|escape:"html"} - {/if} - - {foreach from=$submission->getAuthors() item=author name=authorList} - {$author->getFullName(false)|strip|escape:"html"} - {/foreach} - - - {translate|escape key="submission.copyrightStatement" copyrightYear=$submission->getCopyrightYear() copyrightHolder=$submission->getLocalizedCopyrightHolder()} - {$submission->getLicenseURL()|escape} - - - {$submission->getDatePublished()|date_format:"%Y-%m-%d"} - {$submission->getDatePublished()|date_format:"%Y-%m-%d"} - -{/foreach}{* submissions *} - - - diff --git a/plugins/generic/webFeed/templates/rss2.tpl b/plugins/generic/webFeed/templates/rss2.tpl deleted file mode 100644 index 5b6104cc62a..00000000000 --- a/plugins/generic/webFeed/templates/rss2.tpl +++ /dev/null @@ -1,75 +0,0 @@ -{** - * plugins/generic/webFeed/templates/rss2.tpl - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2003-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * RSS 2 feed template - * - *} - - - - {* required elements *} - {$currentPress->getLocalizedName()|strip|escape:"html"} - {url press=$currentPress->getPath()} - - {if $currentPress->getLocalizedDescription()} - {assign var="description" value=$currentPress->getLocalizedDescription()} - {elseif $currentPress->getLocalizedSetting('searchDescription')} - {assign var="description" value=$currentPress->getLocalizedSetting('searchDescription')} - {/if} - - {$description|strip|escape:"html"} - - {* optional elements *} - {if $currentPress->getPrimaryLocale()} - {$currentPress->getPrimaryLocale()|replace:'_':'-'|strip|escape:"html"} - {/if} - - {if $currentPress->getLocalizedSetting('copyrightNotice')} - {$currentPress->getLocalizedSetting('copyrightNotice')|strip|escape:"html"} - {/if} - - {if $currentPress->getSetting('contactEmail')} - {$currentPress->getSetting('contactEmail')|strip|escape:"html"}{if $currentPress->getSetting('contactName')} ({$currentPress->getSetting('contactName')|strip|escape:"html"}){/if} - {/if} - - {if $currentPress->getSetting('supportEmail')} - {$currentPress->getSetting('supportEmail')|strip|escape:"html"}{if $currentPress->getSetting('contactName')} ({$currentPress->getSetting('supportName')|strip|escape:"html"}){/if} - {/if} - - {* *} - {* *} - {* *} - - OMP {$ompVersion|escape} - http://blogs.law.harvard.edu/tech/rss - 60 - - {foreach name=submissions from=$submissions item=submission} - - {* required elements *} - {$submission->getLocalizedTitle()|strip|escape:"html"} - {url page="catalog" op="book" path=$submission->getId()} - {$submission->getLocalizedAbstract()|strip|escape:"html"} - - {* optional elements *} - {$submission->getAuthorString()|escape:"html"} - {* *} - {* *} - {* *} - - - {translate|escape key="submission.copyrightStatement" copyrightYear=$submission->getCopyrightYear() copyrightHolder=$submission->getLocalizedCopyrightHolder()} - {$submission->getLicenseURL()|escape} - - - {url page="catalog" op="book" path=$submission->getId()} - {capture assign="datePublished"}{$submission->getDatePublished()|strtotime}{/capture} - {$smarty.const.DATE_RSS|date:$datePublished} - - {/foreach}{* submissions *} - - diff --git a/plugins/generic/webFeed/templates/settingsForm.tpl b/plugins/generic/webFeed/templates/settingsForm.tpl deleted file mode 100644 index 317151f54ed..00000000000 --- a/plugins/generic/webFeed/templates/settingsForm.tpl +++ /dev/null @@ -1,42 +0,0 @@ -{** - * plugins/generic/webFeed/templates/settingsForm.tpl - * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2003-2021 John Willinsky - * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. - * - * Web feeds plugin settings - * - *} -
                -
                {translate key="plugins.generic.webfeed.description"}
                - -

                {translate key="plugins.generic.webfeed.settings"}

                - - - - - {csrf} - {include file="controllers/notification/inPlaceNotification.tpl" notificationId="webFeedSettingsFormNotification"} - - {fbvFormArea id="webFeedSettingsFormArea"} - {fbvFormSection list=true} - {fbvElement type="radio" id="displayPage-all" name="displayPage" value="all" checked=$displayPage|compare:"all" label="plugins.generic.webfeed.settings.all"} - {fbvElement type="radio" id="displayPage-homepage" name="displayPage" value="homepage" checked=$displayPage|compare:"homepage" label="plugins.generic.webfeed.settings.homepage"} - {/fbvFormSection} - - {fbvFormSection list=true} - {fbvElement type="text" id="recentItems" value=$recentItems label="plugins.generic.webfeed.settings.recentBooks" size=$fbvStyles.size.SMALL} - {/fbvFormSection} - {/fbvFormArea} - - {fbvFormButtons} - - -

                {translate key="common.requiredField"}

                -
                diff --git a/plugins/generic/webFeed/version.xml b/plugins/generic/webFeed/version.xml deleted file mode 100644 index 457a53cf620..00000000000 --- a/plugins/generic/webFeed/version.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - webFeed - plugins.generic - 1.0.0.0 - 2009-07-13 - 1 - WebFeedPlugin - diff --git a/plugins/importexport/csv/CSVImportExportPlugin.inc.php b/plugins/importexport/csv/CSVImportExportPlugin.inc.php deleted file mode 100644 index 13abdf7dcab..00000000000 --- a/plugins/importexport/csv/CSVImportExportPlugin.inc.php +++ /dev/null @@ -1,271 +0,0 @@ -addLocaleData(); - return $success; - } - - /** - * Get the name of this plugin. The name must be unique within - * its category. - * @return String name of plugin - */ - function getName() { - return 'CSVImportExportPlugin'; - } - - function getDisplayName() { - return __('plugins.importexport.csv.displayName'); - } - - function getDescription() { - return __('plugins.importexport.csv.description'); - } - - /** - * @copydoc Plugin::getActions() - */ - function getActions($request, $actionArgs) { - return array(); // Not available via the web interface - } - - /** - * Display the plugin. - * @param $args array - * @param $request PKPRequest - */ - function display($args, $request) { - $templateMgr = TemplateManager::getManager($request); - parent::display($args, $request); - switch (array_shift($args)) { - case 'index': - case '': - $templateMgr->display($this->getTemplateResource('index.tpl')); - break; - } - } - - /** - * Execute import/export tasks using the command-line interface. - * @param $args Parameters to the plugin - */ - function executeCLI($scriptName, &$args) { - - AppLocale::requireComponents(LOCALE_COMPONENT_APP_COMMON); - - $filename = array_shift($args); - $username = array_shift($args); - - if (!$filename || !$username) { - $this->usage($scriptName); - exit(); - } - - if (!file_exists($filename)) { - echo __('plugins.importexport.csv.fileDoesNotExist', array('filename' => $filename)) . "\n"; - exit(); - } - - $data = file($filename); - - if (is_array($data) && count($data) > 0) { - - $userDao = DAORegistry::getDAO('UserDAO'); /* @var $userDao UserDAO */ - $user = $userDao->getByUsername($username); - if (!$user) { - echo __('plugins.importexport.csv.unknownUser', array('username' => $username)) . "\n"; - exit(); - } - - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); /* @var $submissionDao SubmissionDAO */ - $authorDao = DAORegistry::getDAO('AuthorDAO'); /* @var $authorDao AuthorDAO */ - $pressDao = Application::getContextDAO(); - $userGroupDao = DAORegistry::getDAO('UserGroupDAO'); /* @var $userGroupDao UserGroupDAO */ - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /* @var $publicationFormatDao PublicationFormatDAO */ - $submissionFileDao = DAORegistry::getDAO('SubmissionFileDAO'); /* @var $submissionFileDao SubmissionFileDAO */ - import('lib.pkp.classes.submission.SubmissionFile'); // constants. - $genreDao = DAORegistry::getDAO('GenreDAO'); /* @var $genreDao GenreDAO */ - $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /* @var $publicationDateDao PublicationDateDAO */ - - foreach ($data as $csvLine) { - // Format is: - // Press Path, Author string, title, series path, year, is_edited_volume, locale, URL to PDF, doi (optional) - list($pressPath, $authorString, $title, $seriesPath, $year, $isEditedVolume, $locale, $pdfUrl, $doi) = preg_split('/\t/', $csvLine); - - $press = $pressDao->getByPath($pressPath); - - if ($press) { - - $supportedLocales = $press->getSupportedSubmissionLocales(); - if (!is_array($supportedLocales) || count($supportedLocales) < 1) $supportedLocales = array($press->getPrimaryLocale()); - $authorGroup = $userGroupDao->getDefaultByRoleId($press->getId(), ROLE_ID_AUTHOR); - - // we need a Genre for the files. Assume a key of MANUSCRIPT as a default. - $genre = $genreDao->getByKey('MANUSCRIPT', $press->getId()); - - if (!$genre) { - echo __('plugins.importexport.csv.noGenre') . "\n"; - exit(); - } - if (!$authorGroup) { - echo __('plugins.importexport.csv.noAuthorGroup', array('press' => $pressPath)) . "\n"; - continue; - } - if (in_array($locale, $supportedLocales)) { - $submission = $submissionDao->newDataObject(); - $submission->setContextId($press->getId()); - $submission->setUserId($user->getId()); - $submission->stampLastActivity(); - $submission->setStatus(STATUS_PUBLISHED); - $submission->setWorkType($isEditedVolume == 1?WORK_TYPE_EDITED_VOLUME:WORK_TYPE_AUTHORED_WORK); - $submission->setCopyrightNotice($press->getLocalizedSetting('copyrightNotice'), $locale); - $submission->setLocale($locale); - - $series = $seriesDao->getByPath($seriesPath, $press->getId()); - if ($series) { - $submission->setSeriesId($series->getId()); - } else { - echo __('plugins.importexport.csv.noSeries', array('seriesPath' => $seriesPath)) . "\n"; - } - - $submissionId = $submissionDao->insertObject($submission); - - $contactEmail = $press->getContactEmail(); - $authorString = trim($authorString, '"'); // remove double quotes if present. - $authors = preg_split('/,\s*/', $authorString); - $firstAuthor = true; - foreach ($authors as $authorString) { - // Examine the author string. Best case is: Given1 Family1 , Given2 Family2 , etc - // But default to press email address based on press path if not present. - $givenName = $familyName = $emailAddress = null; - $authorString = trim($authorString); // whitespace. - if (preg_match('/^(\w+)(\s+\w+)?\s*(<([^>]+)>)?$/', $authorString, $matches)) { - $givenName = $matches[1]; // Mandatory - if (count($matches) > 2) { - $familyName = $matches[2]; - } - if (count($matches) == 5) { - $emailAddress = $matches[4]; - } else { - $emailAddress = $contactEmail; - } - } - $author = $authorDao->newDataObject(); - $author->setSubmissionId($submissionId); - $author->setUserGroupId($authorGroup->getId()); - $author->setGivenName($givenName, $locale); - $author->setFamilyName($familyName, $locale); - $author->setEmail($emailAddress); - if ($firstAuthor) { - $author->setPrimaryContact(1); - $firstAuthor = false; - } - $authorDao->insertObject($author); - } // Authors done. - - $submission->setTitle($title, $locale); - $submissionDao->updateObject($submission); - - // Submission is done. Create a publication format for it. - $publicationFormat = $publicationFormatDao->newDataObject(); - $publicationFormat->setPhysicalFormat(false); - $publicationFormat->setIsApproved(true); - $publicationFormat->setIsAvailable(true); - $publicationFormat->setSubmissionId($submissionId); - $publicationFormat->setProductAvailabilityCode('20'); // ONIX code for Available. - $publicationFormat->setEntryKey('DA'); // ONIX code for Digital - $publicationFormat->setData('name', 'PDF', $submission->getLocale()); - $publicationFormat->setSequence(REALLY_BIG_NUMBER); - $publicationFormatId = $publicationFormatDao->insertObject($publicationFormat); - - if ($doi) { - $publicationFormat->setStoredPubId('doi', $doi); - } - - $publicationFormatDao->updateObject($publicationFormat); - - // Create a publication format date for this publication format. - $publicationDate = $publicationDateDao->newDataObject(); - $publicationDate->setDateFormat('05'); // List55, YYYY - $publicationDate->setRole('01'); // List163, Publication Date - $publicationDate->setDate($year); - $publicationDate->setPublicationFormatId($publicationFormatId); - $publicationDateDao->insertObject($publicationDate); - - // Submission File. - import('lib.pkp.classes.file.TemporaryFileManager'); - import('lib.pkp.classes.file.FileManager'); - - $temporaryFileManager = new TemporaryFileManager(); - $temporaryFilename = tempnam($temporaryFileManager->getBasePath(), 'remote'); - $temporaryFileManager->copyFile($pdfUrl, $temporaryFilename); - $submissionFile = $submissionFileDao->newDataObject(); - $submissionFile->setSubmissionId($submissionId); - $submissionFile->setSubmissionLocale($submission->getLocale()); - $submissionFile->setGenreId($genre->getId()); - $submissionFile->setFileStage(SUBMISSION_FILE_PROOF); - $submissionFile->setDateUploaded(Core::getCurrentDate()); - $submissionFile->setDateModified(Core::getCurrentDate()); - $submissionFile->setAssocType(ASSOC_TYPE_REPRESENTATION); - $submissionFile->setAssocId($publicationFormatId); - $submissionFile->setFileType('application/pdf'); - - // Assume open access, no price. - $submissionFile->setDirectSalesPrice(0); - $submissionFile->setSalesType('openAccess'); - - $submissionFileDao->insertObject($submissionFile, $temporaryFilename); - $fileManager = new FileManager(); - $fileManager->deleteByPath($temporaryFilename); - - echo __('plugins.importexport.csv.import.submission', array('title' => $title)) . "\n"; - } else { - echo __('plugins.importexport.csv.unknownLocale', array('locale' => $locale)) . "\n"; - } - } else { - echo __('plugins.importexport.csv.unknownPress', array('pressPath' => $pressPath)) . "\n"; - } - } - } - } - - /** - * Display the command-line usage information - */ - function usage($scriptName) { - echo __('plugins.importexport.csv.cliUsage', array( - 'scriptName' => $scriptName, - 'pluginName' => $this->getName() - )) . "\n"; - } -} - - diff --git a/plugins/importexport/csv/CSVImportExportPlugin.php b/plugins/importexport/csv/CSVImportExportPlugin.php new file mode 100644 index 00000000000..edcba6d3486 --- /dev/null +++ b/plugins/importexport/csv/CSVImportExportPlugin.php @@ -0,0 +1,305 @@ +addLocaleData(); + return $success; + } + + /** + * Get the name of this plugin. The name must be unique within + * its category. + * + * @return string name of plugin + */ + public function getName() + { + return 'CSVImportExportPlugin'; + } + + public function getDisplayName() + { + return __('plugins.importexport.csv.displayName'); + } + + public function getDescription() + { + return __('plugins.importexport.csv.description'); + } + + /** + * @copydoc Plugin::getActions() + */ + public function getActions($request, $actionArgs) + { + return []; // Not available via the web interface + } + + /** + * Display the plugin. + * + * @param array $args + * @param Request $request + */ + public function display($args, $request) + { + $templateMgr = TemplateManager::getManager($request); + parent::display($args, $request); + switch (array_shift($args)) { + case 'index': + case '': + $templateMgr->display($this->getTemplateResource('index.tpl')); + break; + } + } + + /** + * Execute import/export tasks using the command-line interface. + * + * @param array $args Parameters to the plugin + */ + public function executeCLI($scriptName, &$args) + { + $filename = array_shift($args); + $username = array_shift($args); + + if (!$filename || !$username) { + $this->usage($scriptName); + exit; + } + + if (!file_exists($filename)) { + echo __('plugins.importexport.csv.fileDoesNotExist', ['filename' => $filename]) . "\n"; + exit; + } + + $user = Repo::user()->getByUsername($username); + if (!$user) { + echo __('plugins.importexport.csv.unknownUser', ['username' => $username]) . "\n"; + exit; + } + + $pressDao = Application::getContextDAO(); + $publicationFormatDao = DAORegistry::getDAO('PublicationFormatDAO'); /** @var PublicationFormatDAO $publicationFormatDao */ + $genreDao = DAORegistry::getDAO('GenreDAO'); /** @var GenreDAO $genreDao */ + $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /** @var PublicationDateDAO $publicationDateDao */ + + $file = new \SplFileObject($filename, 'r'); + // Press Path, Author string, title, series path (optional), year, is_edited_volume, locale, URL to PDF, doi (optional) + $expectedHeaders = ['pressPath', 'authorString', 'title', 'abstract', 'seriesPath', 'year', 'isEditedVolume', 'locale', 'filename', 'doi']; + $header = $file->fgetcsv() ?: []; + if (count(array_intersect($expectedHeaders, $header)) !== count($expectedHeaders)) { + echo __('plugins.importexport.csv.invalidHeader') . "\n"; + exit; + } + + while (($row = $file->fgetcsv()) !== false) { + if (trim(implode('', $row)) === '') { + continue; + } + + $pressPath = $authorString = $title = $seriesPath = $year = $isEditedVolume = $locale = $filename = $doi = $abstract = null; + foreach ($header as $index => $field) { + $$field = $row[$index]; + } + + $press = $pressDao->getByPath($pressPath); + if (!$press) { + echo __('plugins.importexport.csv.unknownPress', ['contextPath' => $pressPath]) . "\n"; + continue; + } + + $supportedLocales = $press->getSupportedSubmissionLocales(); + if (!is_array($supportedLocales) || count($supportedLocales) < 1) { + $supportedLocales = [$press->getPrimaryLocale()]; + } + if (!in_array($locale, $supportedLocales)) { + echo __('plugins.importexport.csv.unknownLocale', ['locale' => $locale]) . "\n"; + continue; + } + + // we need a Genre for the files. Assume a key of MANUSCRIPT as a default. + $genre = $genreDao->getByKey('MANUSCRIPT', $press->getId()); + if (!$genre) { + echo __('plugins.importexport.csv.noGenre') . "\n"; + continue; + } + + $authorGroup = Repo::userGroup()->getCollector() + ->filterByContextIds([$press->getId()]) + ->filterByRoleIds([Role::ROLE_ID_AUTHOR]) + ->filterByIsDefault(true) + ->getMany() + ->first(); + if (!$authorGroup) { + echo __('plugins.importexport.csv.noAuthorGroup', ['press' => $pressPath]) . "\n"; + continue; + } + + $submission = Repo::submission()->newDataObject(); + $submission->setContextId($press->getId()); + + $publication = Repo::publication()->newDataObject(); + $submissionId = Repo::submission()->add($submission, $publication, $press); + $submission = Repo::submission()->get($submissionId); + $publication = $submission->getCurrentPublication(); + $publicationId = $publication->getId(); + + $submission->stampLastActivity(); + $submission->setStatus(PKPSubmission::STATUS_PUBLISHED); + $submission->setWorkType($isEditedVolume == 1 ? Submission::WORK_TYPE_EDITED_VOLUME : Submission::WORK_TYPE_AUTHORED_WORK); + $submission->setCopyrightNotice($press->getLocalizedSetting('copyrightNotice'), $locale); + $submission->setLocale($locale); + $submission->setStageId(WORKFLOW_STAGE_ID_PRODUCTION); + $submission->setAbstract($abstract, $locale); + $submission->setSubmissionProgress(''); + + $series = $seriesPath ? Repo::section()->getByPath($seriesPath, $press->getId()) : null; + if ($series) { + $submission->setSeriesId($series->getId()); + } + + $contactEmail = $press->getContactEmail(); + $authorString = trim($authorString, '"'); // remove double quotes if present. + $authors = preg_split('/\s*;\s*/', $authorString); + $firstAuthor = true; + foreach ($authors as $authorString) { + // Examine the author string. Best case is: Given1 Family1 , Given2 Family2 , etc + // But default to press email address based on press path if not present. + $givenName = $familyName = $emailAddress = null; + $authorString = trim($authorString); // whitespace. + if (!preg_match('/^(\w+)([\w\s]+)?(<([^>]+)>)?$/', $authorString, $matches)) { + echo __('plugins.importexport.csv.invalidAuthor', ['author' => $authorString]) . "\n"; + continue; + } + $givenName = trim($matches[1]); // Mandatory + if (isset($matches[2])) { + $familyName = trim($matches[2]); + } + $emailAddress = $matches[4] ?? $contactEmail; + $author = Repo::author()->newDataObject(); + $author->setData('publicationId', $publicationId); + $author->setSubmissionId($submissionId); + $author->setUserGroupId($authorGroup->getId()); + $author->setGivenName($givenName, $locale); + $author->setFamilyName($familyName, $locale); + $author->setEmail($emailAddress); + if ($firstAuthor) { + $author->setPrimaryContact(1); + $firstAuthor = false; + } + Repo::author()->add($author); + } // Authors done. + + $submission->setTitle($title, $locale); + Repo::publication()->edit($publication, []); + Repo::submission()->edit($submission, []); + + // Submission is done. Create a publication format for it. + $publicationFormat = $publicationFormatDao->newDataObject(); + $publicationFormat->setData('publicationId', $publicationId); + $publicationFormat->setPhysicalFormat(false); + $publicationFormat->setIsApproved(true); + $publicationFormat->setIsAvailable(true); + $publicationFormat->setProductAvailabilityCode('20'); // ONIX code for Available. + $publicationFormat->setEntryKey('DA'); // ONIX code for Digital + $publicationFormat->setData('name', 'PDF', $submission->getLocale()); + $publicationFormat->setSequence(REALLY_BIG_NUMBER); + $publicationFormatId = $publicationFormatDao->insertObject($publicationFormat); + + if ($doi) { + $publicationFormat->setStoredPubId('doi', $doi); + } + + $publicationFormatDao->updateObject($publicationFormat); + + // Create a publication format date for this publication format. + $publicationDate = $publicationDateDao->newDataObject(); + $publicationDate->setDateFormat('05'); // List55, YYYY + $publicationDate->setRole('01'); // List163, Publication Date + $publicationDate->setDate($year); + $publicationDate->setPublicationFormatId($publicationFormatId); + $publicationDateDao->insertObject($publicationDate); + + // Submission File. + $fileManager = new FileManager(); + $extension = $fileManager->parseFileExtension($filename); + $submissionDir = Repo::submissionFile()->getSubmissionDir($press->getId(), $submissionId); + /** @var \PKP\services\PKPFileService */ + $fileService = Services::get('file'); + $fileId = $fileService->add( + $filename, + $submissionDir . '/' . uniqid() . '.' . $extension + ); + + $submissionFile = Repo::submissionFile()->newDataObject(); + $submissionFile->setData('submissionId', $submissionId); + $submissionFile->setData('uploaderUserId', $user->getId()); + $submissionFile->setSubmissionLocale($submission->getLocale()); + $submissionFile->setGenreId($genre->getId()); + $submissionFile->setFileStage(SubmissionFile::SUBMISSION_FILE_PROOF); + $submissionFile->setAssocType(Application::ASSOC_TYPE_REPRESENTATION); + $submissionFile->setData('assocId', $publicationFormatId); + $submissionFile->setData('mimetype', 'application/pdf'); + $submissionFile->setData('fileId', $fileId); + + // Assume open access, no price. + $submissionFile->setDirectSalesPrice(0); + $submissionFile->setSalesType('openAccess'); + + Repo::submissionFile()->add($submissionFile); + + echo __('plugins.importexport.csv.import.submission', ['title' => $title]) . "\n"; + } + $file = null; + } + + /** + * Display the command-line usage information + */ + public function usage($scriptName) + { + echo __('plugins.importexport.csv.cliUsage', [ + 'scriptName' => $scriptName, + 'pluginName' => $this->getName() + ]) . "\n"; + } +} diff --git a/plugins/importexport/csv/index.php b/plugins/importexport/csv/index.php index 1795161cceb..984ac57c133 100644 --- a/plugins/importexport/csv/index.php +++ b/plugins/importexport/csv/index.php @@ -1,24 +1,14 @@ , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-08 04:44+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"Импортирането беше успешно. Успешно импортираните елементи са изброени " +"по-долу." + +msgid "plugins.importexport.csv.displayName" +msgstr "Плъгин за импортиране на съдържание с разделители табулатори" + +msgid "plugins.importexport.csv.description" +msgstr "" +"Импортиране на подадени материали в издателство, разделени с табулатори." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Този плъгин в момента поддържа работа само от командния ред. " +"Изпълни...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...за повече информация.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Инструмент от командния ред за импортиране на CSV данни в OMP\n" +"\t\t\tУпотреба:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\t\tОпцията --dry-run може да се използва за тестване, без да се правят " +"промени.\n" +"\t\t\tПосочете потребителското име, на което искате да присвоите " +"изпращанията.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Файлът \"{$filename}\" не съществува. Излизане." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Неизвестен потребител: „{$username}“. Излизане." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Неизвестен локал(езикова настройка): „{$locale}“. Прескачане." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Неизвестно издателство: „{$contextPath}“. Прескачане." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Няма отбелязан жанр на ръкописа. Излизане." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Няма зададена група автори по подразбиране в издателство {$press}. " +"Пропускане на това изпращане." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Пътят посочен за серията/колекцията {$seriesPath} не съществува. Не може да " +"се добави към това изпращане." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Изпращане на материали: „{$title}“ е импортирано успешно." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"CSV файлът или липсва, или има невалидни водещи колони, моля, погледнете " +"примерния файл „sample.csv“, който се намира в папката на този плъгин." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "Авторът „{$author}“ е в невалиден формат и беше пропуснат." diff --git a/plugins/importexport/csv/locale/ca/locale.po b/plugins/importexport/csv/locale/ca/locale.po new file mode 100644 index 00000000000..eb2478d49eb --- /dev/null +++ b/plugins/importexport/csv/locale/ca/locale.po @@ -0,0 +1,71 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-20 09:39+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Catalan \n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Mòdul d'importació de contingut delimitat per tabuladors (TSV)" + +msgid "plugins.importexport.csv.description" +msgstr "" +"Importar trameses a les publicacions des de les dades delimitades per " +"tabuladors." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Actualment aquest mòdul només es compatible amb operacións de línies " +"d'ordres. Executeu...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t... per obtenir més informació.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Eina de línia d'ordres per importar dades CSV a OMP\n" +"\t\t\tÚs:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\t\tEs pot utilitzar l'opció --dry-run per fer proves sense realitzar " +"canvis.\n" +"\t\t\tEspecifiqueu el nom d'usuari/ària que voleu assignar a les trameses.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "L'arxiu \"{$filename}\" no existeix. Sortint." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Usuari/ària desconegut: \"{$username}\". Sortint." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Configuració regional desconeguda: \"{$locale}\". Ometent." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Editorial desconeguda: \"{$contextPath}\". Ometent." + +msgid "plugins.importexport.csv.noGenre" +msgstr "No hi ha gènere de manuscrit. Sortint." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"No hi ha un grup d'autors/ores predeterminat en l'editorial {$press}. " +"Ometent aquesta tramesa." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"La ruta de la sèrie {$seriesPath} no existeix. Impossible afegir-la a " +"aquesta tramesa." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Tramesa: '{$title}' importada correctament." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"La importació s'ha fet correctament. Els elements importats es mostren a " +"continuació." diff --git a/plugins/importexport/csv/locale/ca_ES/locale.po b/plugins/importexport/csv/locale/ca_ES/locale.po deleted file mode 100644 index 2ac9dc10613..00000000000 --- a/plugins/importexport/csv/locale/ca_ES/locale.po +++ /dev/null @@ -1,71 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-20 09:39+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Catalan \n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "" -"La importació s'ha fet correctament. Els elements importats es mostren a " -"continuació." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Tramesa: '{$title}' importada correctament." - -msgid "plugins.importexport.csv.noSeries" -msgstr "" -"La ruta de la sèrie {$seriesPath} no existeix. Impossible afegir-la a " -"aquesta tramesa." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "" -"No hi ha un grup d'autors/ores predeterminat en l'editorial {$press}. " -"Ometent aquesta tramesa." - -msgid "plugins.importexport.csv.noGenre" -msgstr "No hi ha gènere de manuscrit. Sortint." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Editorial desconeguda: \"{$contextPath}\". Ometent." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Configuració regional desconeguda: \"{$locale}\". Ometent." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Usuari/ària desconegut: \"{$username}\". Sortint." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "L'arxiu \"{$filename}\" no existeix. Sortint." - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Eina de línia d'ordres per importar dades CSV a OMP\n" -"\t\t\tÚs:\n" -"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" -"\t\t\tEs pot utilitzar l'opció --dry-run per fer proves sense realitzar " -"canvis.\n" -"\t\t\tEspecifiqueu el nom d'usuari/ària que voleu assignar a les trameses.\n" - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Actualment aquest mòdul només es compatible amb operacións de línies " -"d'ordres. Executeu...\n" -"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" -"\t\t\t... per obtenir més informació.

                \n" -"\t" - -msgid "plugins.importexport.csv.description" -msgstr "" -"Importar trameses a les publicacions des de les dades delimitades per " -"tabuladors." - -msgid "plugins.importexport.csv.displayName" -msgstr "Mòdul d'importació de contingut delimitat per tabuladors (TSV)" diff --git a/plugins/importexport/csv/locale/cs/locale.po b/plugins/importexport/csv/locale/cs/locale.po new file mode 100644 index 00000000000..48c1f63c84b --- /dev/null +++ b/plugins/importexport/csv/locale/cs/locale.po @@ -0,0 +1,77 @@ +# Jiří Dlouhý , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-03 04:50+0000\n" +"Last-Translator: Jiří Dlouhý \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Plugin pro import CSV souborů" + +msgid "plugins.importexport.csv.description" +msgstr "Importovat příspěvky do nakladatelství z CSV souboru." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Tento plugin momentálně poskytuje spuštění pouze přes příkazovou " +"řádku. Spusťte...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...pro více informací.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Nástroj příkazového řádku pro import CSV data do OMP\n" +"\t\t\tPoužití:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\t\t--dry-run může být použita pro otestování importu bez provedení změn\n" +"\t\t\tZvolte uživatelské jméno \"username\", ke kterému mají být příspěvky " +"přiděleny.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Soubor \"{$filename}\" neexistuje. Ukončuji." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Neznámý uživatel: \"{$username}\". Ukončuji." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Neznámá lokalizace: \"{$locale}\". Přeskakuji." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Neznámé nakladatelství: \"{$contextPath}\". Přeskakuji." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Není zvolen typ manuskriptu. Ukončuji." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Není zvolena výchozí skupina autorů pro nakladatelství {$press}. Přeskakuji " +"tento příspěvek." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Cesta edice {$seriesPath} neexistuje. Není možné ji připojit k příspěvku." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Příspěvek: \"{$title}\" byl naimportován v pořádku." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"Import proběhl v pořádku. Seznam úspěšně naimportovaných položek naleznete " +"níže." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "Autor \"{$author}\" má nesprávný formát a byl přeskočen." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"Soubor CSV buď chybí, nebo má neplatnou hlavičku, podívejte se prosím na " +"ukázkový soubor „sample.csv“ ve složce zásuvného modulu." diff --git a/plugins/importexport/csv/locale/cs_CZ/locale.po b/plugins/importexport/csv/locale/cs_CZ/locale.po deleted file mode 100644 index d569bbcb282..00000000000 --- a/plugins/importexport/csv/locale/cs_CZ/locale.po +++ /dev/null @@ -1,68 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-06 10:50+0000\n" -"Last-Translator: Radek Gomola \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Tento plugin momentálně poskytuje spuštění pouze přes příkazovou " -"řádku. Spusťte...\n" -"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" -"\t\t\t...pro více informací.

                \n" -"\t" - -msgid "plugins.importexport.csv.description" -msgstr "Importovat příspěvky do nakladatelství z CSV souboru." - -msgid "plugins.importexport.csv.displayName" -msgstr "Plugin pro import CSV souborů" - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Nástroj příkazového řádku pro import CSV data do OMP\n" -"\t\t\tPoužití:\n" -"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" -"\t\t\t--dry-run může být použita pro otestování importu bez provedení změn\n" -"\t\t\tZvolte uživatelské jméno \"username\", ke kterému mají být příspěvky " -"přiděleny.\n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "" -"Import proběhl v pořádku. Seznam úspěšně naimportovaných položek naleznete " -"níže." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Příspěvek: \"{$title}\" byl naimportován v pořádku." - -msgid "plugins.importexport.csv.noSeries" -msgstr "" -"Cesta edice {$seriesPath} neexistuje. Není možné ji připojit k příspěvku." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "" -"Není zvolena výchozí skupina autorů pro nakladatelství {$press}. Přeskakuji " -"tento příspěvek." - -msgid "plugins.importexport.csv.noGenre" -msgstr "Není zvolen typ manuskriptu. Ukončuji." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Neznámé nakladatelství: \"{$contextPath}\". Přeskakuji." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Neznámá lokalizace: \"{$locale}\". Přeskakuji." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Neznámý uživatel: \"{$username}\". Ukončuji." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "Soubor \"{$filename}\" neexistuje. Ukončuji." diff --git a/plugins/importexport/csv/locale/da/locale.po b/plugins/importexport/csv/locale/da/locale.po new file mode 100644 index 00000000000..cc06c9e349d --- /dev/null +++ b/plugins/importexport/csv/locale/da/locale.po @@ -0,0 +1,78 @@ +# Alexandra Fogtmann-Schulz , 2022, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-03 04:50+0000\n" +"Last-Translator: Alexandra Fogtmann-Schulz \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Plugin til import af tabulatorsepareret indhold" + +msgid "plugins.importexport.csv.description" +msgstr "Importér indsendelser til udgiveren fra tabulatorsepareret data." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Denne plugin understøtter i øjeblikket kun kommandolinjekørsel. " +"Eksekvér...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...for at få mere information.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Kommandolinjeværktøj til import af CSV-data til OMP\n" +"\t\t\tAnvendelse:\n" +"\t\t\t{$scriptName} [--prøvekørsel] fileName.csv brugernavn\n" +"\t\t\tValgmuligheden --prøvekørsel kan bruges til at teste uden at foretage " +"ændringer.\n" +"\t\t\tAngiv det brugernavn, du vil knytte til indsendelserne.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Filen \"{$filename}\" findes ikke. Afslutter." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Ukendt bruger: \"{$username}\". Afslutter." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Ukendt sprog: \"{$locale}\". Springer over." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Ukendt udgiver: \"{$contextPath}\". Springer over." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Der er ingen manuskriptgenre. Afslutter." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Der er ingen foruddefineret forfattergruppe hos udgiveren {$press}. Springer " +"over denne indsendelse." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Seriestien {$seriesPath} findes ikke. Kan ikke tilføje den til denne " +"indsendelse." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Indsendelse: '{$title}' blev importeret." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"Importen var vellykket. Elementer, der er importeret, er vist nedenfor." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "Forfatteren \"{$author}\" har et ugyldigt format og blev sprunget over." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"Enten mangler CSV filen eller også har den en ugyldig header. Kig venligst " +"på filen \"sample.csv\", som er et eksempel på en sådan fil. Denne fil kan " +"findes i plugin-mappen." diff --git a/plugins/importexport/csv/locale/da_DK/locale.po b/plugins/importexport/csv/locale/da_DK/locale.po deleted file mode 100644 index 68ecbbdd286..00000000000 --- a/plugins/importexport/csv/locale/da_DK/locale.po +++ /dev/null @@ -1,67 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-02-09 18:35+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "Importen var vellykket. Elementer, der er importeret, er vist nedenfor." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Indsendelse: '{$title}' blev importeret." - -msgid "plugins.importexport.csv.noSeries" -msgstr "" -"Seriestien {$seriesPath} findes ikke. Kan ikke tilføje den til denne " -"indsendelse." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "" -"Der er ingen foruddefineret forfattergruppe hos forlaget {$press}. Springer " -"over denne indsendelse." - -msgid "plugins.importexport.csv.noGenre" -msgstr "Der er ingen manuskriptgenre. Afslutter." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Ukendt forlag: \"{$contextPath}\". Springer over." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Ukendt sprog: \"{$locale}\". Springer over." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Ukendt bruger: \"{$username}\". Afslutter." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "Filen \"{$filename}\" findes ikke. Afslutter." - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Kommandolinjeværktøj til import af CSV-data til OMP\n" -"\t\t\tAnvendelse:\n" -"\t\t\t{$scriptName} [--prøvekørsel] fileName.csv brugernavn\n" -"\t\t\tValgmuligheden --prøvekørsel kan bruges til at teste uden at foretage " -"ændringer.\n" -"\t\t\tAngiv det brugernavn, du vil knytte til indsendelserne.\n" - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Denne plugin understøtter i øjeblikket kun kommandolinjekørsel. " -"Eksekvér...\n" -"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" -"\t\t\t...for at få mere information.

                \n" -"\t" - -msgid "plugins.importexport.csv.description" -msgstr "Importér indsendelser til forlag fra tabulatorsepareret data." - -msgid "plugins.importexport.csv.displayName" -msgstr "Plugin til import af tabulatorsepareret indhold" diff --git a/plugins/importexport/csv/locale/da_DK/locale.xml b/plugins/importexport/csv/locale/da_DK/locale.xml deleted file mode 100644 index 41fe2da6eb4..00000000000 --- a/plugins/importexport/csv/locale/da_DK/locale.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - Tabulatorsepareret indholdsimport-plugin - Importer indsendelser til forlaget fra tabulatorsepareret data - Denne plugin understøtter på nuværende tidspunkt kun kommandolinjebaseret brug . Udfør... -
                php tools/importExport.php CSVImportExportPlugin
                - ...for mere information.

                - - ]]>
                - Kommandolinje-baseret værktøj til import af CSV data til OMP - Brug: - {$scriptName} [--dry-run] fileName.csv username - Dry-run muligheden kan anvendes til test uden at det afstedkommer ændringer. - Angiv det brugernavn, du vil knytte til indsendelserne. - - - Filen "{$filename}" eksisterer ikke. Afslutter. - Ukendt bruger: "{$username}". Afslutter. - Ukendt sproglokalitet: "{$locale}". Springer over. - Ukendt forlag: "{$pressPath}". Springer over. - Der er ingen manuskriptgenre. Afslutter. - Der er ingen standardforfattergruppe hos forlaget {$press}. Springer denne indsendelse over. - Seriestien {$seriesPath} eksisterer ikke. Kan ikke tilføje den til denne indsendelse. - Indsendelse: '{$title}' blev importeret. - Importen er gennemført. De importerede enheder er vist nedenfor. -
                diff --git a/plugins/importexport/csv/locale/de/locale.po b/plugins/importexport/csv/locale/de/locale.po new file mode 100644 index 00000000000..3e5cacfea5c --- /dev/null +++ b/plugins/importexport/csv/locale/de/locale.po @@ -0,0 +1,74 @@ +# Pia Piontkowitz , 2021. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" +"PO-Revision-Date: 2021-10-21 11:07+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Tab getrennter Inhalt Import Plugin" + +msgid "plugins.importexport.csv.description" +msgstr "Einreichungen aus Tab getrennten Daten in Verlage importieren." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Dieses Plugin unterstützt aktuell nur die Bedienung mittels " +"Kommandozeile. Führen Sie...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...aus, um mehr Informationen zu erhalten.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Kommandozeilen-Tool zur Importierung von CSV Daten in OMP\n" +"\t\t\tEinsatz:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\t\tDie --dry-run Option kann verwendet werden um Tests durchzuführen ohne " +"Änderungen vorzunehmen.\n" +"\t\t\tSpezifizieren Sie den Nutzer/innennamen, dem Sie die Einreichungen " +"zuordnen möchten.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Die Datei \"{$filename}\" existiert nicht. Exiting." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Unbekannte/r Nutzer/in: \"{$username}\". Exiting." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Unbekannte Locale: \"{$locale}\". Skipping." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Unbekannter Verlag: \"{$contextPath}\". Skipping." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Es gibt kein Manuskript Genre. Exiting." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Es existiert keine Standard-Autor/innen-Gruppe in dem Verlag {$press}. " +"Diese Einreichung wird übersprungen." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Der Reihenpfad {$seriesPath} existiert nicht. Der Pfad kann dieser " +"Einreichung nicht hinzugefügt werden." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Einreichung: '{$title}' wurde erfolgreich importiert." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"Der Import war erfolgreich. Die erfolgreich importierten Elemente sind unten " +"aufgelistet." diff --git a/plugins/importexport/csv/locale/de_DE/locale.po b/plugins/importexport/csv/locale/de_DE/locale.po deleted file mode 100644 index d50662885d5..00000000000 --- a/plugins/importexport/csv/locale/de_DE/locale.po +++ /dev/null @@ -1,15 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" -"Language: \n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "Der Import war erfolgreich. Die erfolgreich importierten Elemente sind unten aufgelistet." diff --git a/plugins/importexport/csv/locale/en/locale.po b/plugins/importexport/csv/locale/en/locale.po new file mode 100644 index 00000000000..7aaac09ad80 --- /dev/null +++ b/plugins/importexport/csv/locale/en/locale.po @@ -0,0 +1,73 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Tab Delimited Content Import Plugin" + +msgid "plugins.importexport.csv.description" +msgstr "Import submissions into presses from tab delimited data." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                This plugin currently supports command-line operation only. " +"Execute...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...for more information.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Command-line tool for importing CSV data into OMP\n" +"\t\t\tUsage:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\t\tThe --dry-run option can be used to test without making changes.\n" +"\t\t\tSpecify the username you wish to assign the submissions to.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "The file \"{$filename}\" does not exist. Exiting." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Unknown User: \"{$username}\". Exiting." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Unknown Locale: \"{$locale}\". Skipping." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Unknown Press: \"{$contextPath}\". Skipping." + +msgid "plugins.importexport.csv.noGenre" +msgstr "There is no manuscript genre. Exiting." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"There is no default author group in the press {$press}. Skipping this " +"submission." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"The series path {$seriesPath} does not exist. Unable to add it to this " +"submission." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Submission: '{$title}' successfully imported." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"The import was successful. Successfully-imported items are listed below." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "The CSV file is either missing or has an invalid header, please take a look at the sample file \"sample.csv\" present at the plugin folder." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "The author \"{$author}\" has an invalid format and was skipped." diff --git a/plugins/importexport/csv/locale/en_US/locale.po b/plugins/importexport/csv/locale/en_US/locale.po deleted file mode 100644 index 6de562c8bd3..00000000000 --- a/plugins/importexport/csv/locale/en_US/locale.po +++ /dev/null @@ -1,62 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:52-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:52-07:00\n" -"Language: \n" - -msgid "plugins.importexport.csv.displayName" -msgstr "Tab Delimited Content Import Plugin" - -msgid "plugins.importexport.csv.description" -msgstr "Import submissions into presses from tab delimited data." - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                This plugin currently supports command-line operation only. Execute...\n" -"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" -"\t\t\t...for more information.

                \n" -"\t" - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Command-line tool for importing CSV data into OMP\n" -"\t\t\tUsage:\n" -"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" -"\t\t\tThe --dry-run option can be used to test without making changes.\n" -"\t\t\tSpecify the username you wish to assign the submissions to.\n" -"" - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "The file \"{$filename}\" does not exist. Exiting." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Unknown User: \"{$username}\". Exiting." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Unknown Locale: \"{$locale}\". Skipping." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Unknown Press: \"{$contextPath}\". Skipping." - -msgid "plugins.importexport.csv.noGenre" -msgstr "There is no manuscript genre. Exiting." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "There is no default author group in the press {$press}. Skipping this submission." - -msgid "plugins.importexport.csv.noSeries" -msgstr "The series path {$seriesPath} does not exist. Unable to add it to this submission." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Submission: '{$title}' successfully imported." - -msgid "plugins.importexport.csv.import.success.description" -msgstr "The import was successful. Successfully-imported items are listed below." diff --git a/plugins/importexport/csv/locale/es/locale.po b/plugins/importexport/csv/locale/es/locale.po new file mode 100644 index 00000000000..f5b93143447 --- /dev/null +++ b/plugins/importexport/csv/locale/es/locale.po @@ -0,0 +1,78 @@ +# Jordi LC , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-26 12:34+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Módulo de importación de contenido delimitado por tabuladores" + +msgid "plugins.importexport.csv.description" +msgstr "" +"Importar envíos en las publicaciones desde datos delimitados por tabuladores." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Actualmente este módulo solo es compatible con operaciones de líneas " +"de comando. Ejecute...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t... para obtener más información.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Herramienta de línea de comandos para importar datos CSV a OMP\n" +"\t\t\tUso:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\t\tLa opción --dry-run puede utilizarse para hacer pruebas sin realizar " +"cambios.\n" +"\t\t\tEspecifique el nombre de usuario/a que quiera asignar a los envíos.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "El archivo \"{$filename}\" no existe. Saliendo." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Usuario/a desconocido: \"{$username}\". Saliendo." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Configuración regional desconocida: \"{$locale}\". Omitiendo." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Editorial desconocida: \"{$contextPath}\". Omitiendo." + +msgid "plugins.importexport.csv.noGenre" +msgstr "No hay género de manuscrito. Saliendo." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"No hay un grupo de autores/as predeterminado en la publicación {$press}. " +"Omitiendo este envío." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"La ruta de series {$seriesPath} no existe. Imposible añadirla a este envío." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Envío: '{$title}' importado correctamente." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"La importación se llevó a cabo con éxito. Los elementos importados " +"correctamente se muestran a continuación." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"El archivo CSV no existe o tiene una cabecera inválida. Eche un vistazo al " +"archivo de ejemplo \"sample.csv\" que está en la carpeta del módulo." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "El autor/a \"{$author}\" tiene un formato inválido y se omitió." diff --git a/plugins/importexport/csv/locale/es_ES/locale.po b/plugins/importexport/csv/locale/es_ES/locale.po deleted file mode 100644 index 0a2fb0e2ad9..00000000000 --- a/plugins/importexport/csv/locale/es_ES/locale.po +++ /dev/null @@ -1,69 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-06-20 09:39+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "" -"La importación se llevó a cabo con éxito. Los elementos importados " -"correctamente se muestran a continuación." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Envío: '{$title}' importado correctamente." - -msgid "plugins.importexport.csv.noSeries" -msgstr "" -"La ruta de series {$seriesPath} no existe. Imposible añadirla a este envío." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "" -"No hay un grupo de autores/as predeterminado en la publicación {$press}. " -"Omitiendo este envío." - -msgid "plugins.importexport.csv.noGenre" -msgstr "No hay género de manuscrito. Saliendo." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Editorial desconocida: \"{$contextPath}\". Omitiendo." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Configuración regional desconocida: \"{$locale}\". Omitiendo." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Usuario/a desconocido: \"{$username}\". Saliendo." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "El archivo \"{$filename}\" no existe. Saliendo." - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Herramienta de línea de comandos para importar datos CSV a OMP\n" -"\t\t\tUso:\n" -"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" -"\t\t\tLa opción --dry-run puede utilizarse para hacer pruebas sin realizar " -"cambios.\n" -"\t\t\tEspecifique el nombre de usuario/a que quiera asignar a los envíos.\n" - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Actualmente este módulo solo es compatible con operaciones de líneas " -"de comando. Ejecute...\n" -"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" -"\t\t\t... para obtener más información.

                \n" -"\t" - -msgid "plugins.importexport.csv.description" -msgstr "" -"Importar envíos en las publicaciones desde datos delimitados por tabuladores." - -msgid "plugins.importexport.csv.displayName" -msgstr "Módulo de importación de contenido delimitado por tabuladores" diff --git a/plugins/importexport/csv/locale/fi/locale.po b/plugins/importexport/csv/locale/fi/locale.po new file mode 100644 index 00000000000..09d96c3e681 --- /dev/null +++ b/plugins/importexport/csv/locale/fi/locale.po @@ -0,0 +1,66 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-05-25 09:42+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Tabulaattorilla erotetun sisällön tuonti" + +msgid "plugins.importexport.csv.description" +msgstr "" +"Tuo käsikirjoituksia julkaisijoiden sivustoille käyttämällä tabulaattorilla " +"erotettua dataa." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Tämä lisäosa tukee vain komentoriviltä suorittamista. Aja komento...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...ja saat lisätietoja.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Komentorivityökalu CSV-muotoisen tiedon tuontiin OMP-järjestelmään\n" +"\t\t\tKäyttö:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv käyttäjänimi\n" +"\t\t \t--dry-run valintaa voidaan käyttää komennon testaukseen.\n" +"\t\t\tAnna käsikirjoituksiin yhdistettävä käyttäjänimi.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Tiedostoa \"{$filename}\" ei ole olemassa. Keskeytetään." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Tuntematon käyttäjä: \"{$username}\". Keskeytetään." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Tuntematon kielialue: \"{$locale}\". Ohitetaan." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Tuntematon julkaisijan sivusto: \"{$contextPath}\". Ohitetaan." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Käsikirjoituksen lajityyppiä ei löydy. Poistutaan." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Julkaisijan sivustolla {$press} ei ole oletusroolia kirjoittajille. " +"Ohitetaan käsikirjoitus." + +msgid "plugins.importexport.csv.noSeries" +msgstr "Sarjan polkua {$seriesPath} ei löydy. Käsikirjoitusta ei voida lisätä." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Käsikirjoitus '{$title}' tuotiin onnistuneesti." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "Tuonti onnistui. Onnistuneesti tuodut kohteet ovat listattuna alla." diff --git a/plugins/importexport/csv/locale/fi_FI/locale.po b/plugins/importexport/csv/locale/fi_FI/locale.po deleted file mode 100644 index e5cad944e73..00000000000 --- a/plugins/importexport/csv/locale/fi_FI/locale.po +++ /dev/null @@ -1,65 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-11 20:34+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "Tuonti onnistui. Onnistuneesti tuodut kohteet ovat listattuna alla." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Käsikirjoitus '{$title}' tuotiin onnistuneesti." - -msgid "plugins.importexport.csv.noSeries" -msgstr "Sarjan polkua {$seriesPath} ei löydy. Käsikirjoitusta ei voida lisätä." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "" -"Julkaisijan sivustolla {$press} ei ole oletusroolia kirjoittajille. " -"Ohitetaan käsikirjoitus." - -msgid "plugins.importexport.csv.noGenre" -msgstr "Käsikirjoituksen lajityyppiä ei löydy. Poistutaan." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Tuntematon julkaisijan sivusto: \"{$contextPath}\". Ohitetaan." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Tuntematon kielialue: \"{$locale}\". Ohitetaan." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Tuntematon käyttäjä: \"{$username}\". Keskeytetään." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "Tiedostoa \"{$filename}\" ei ole olemassa. Keskeytetään." - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Komentorivityökalu CSV-muotoisen tiedon tuontiin OMP-järjestelmään\n" -"\t\t\tKäyttö:\n" -"\t\t\t{$scriptName} [--dry-run] fileName.csv käyttäjänimi\n" -"\t\t \t--dry-run valintaa voidaan käyttää komennon testaukseen.\n" -"\t\t\tAnna käsikirjoituksiin yhdistettävä käyttäjänimi.\n" - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Tämä lisäosa tukee vain komentoriviltä suorittamista. Aja komento...\n" -"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" -"\t\t\t...ja saat lisätietoja.

                \n" -"\t" - -msgid "plugins.importexport.csv.description" -msgstr "" -"Tuo käsikirjoituksia julkaisijoiden sivustoille käyttämällä tabulaattorilla " -"erotettua dataa." - -msgid "plugins.importexport.csv.displayName" -msgstr "Tabulaattorilla erotetun sisällön tuonti" diff --git a/plugins/importexport/csv/locale/fr_CA/locale.po b/plugins/importexport/csv/locale/fr_CA/locale.po new file mode 100644 index 00000000000..5a4b45fceb2 --- /dev/null +++ b/plugins/importexport/csv/locale/fr_CA/locale.po @@ -0,0 +1,8 @@ +# Weblate Admin , 2023. +msgid "" +msgstr "" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" diff --git a/plugins/importexport/csv/locale/fr_FR/locale.po b/plugins/importexport/csv/locale/fr_FR/locale.po new file mode 100644 index 00000000000..1556ced7c0d --- /dev/null +++ b/plugins/importexport/csv/locale/fr_FR/locale.po @@ -0,0 +1,81 @@ +# Weblate Admin , 2023. +# Germán Huélamo Bautista , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-29 14:39+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Plugin d’importation de contenu délimité par des tabulations" + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Ce module ne prend actuellement en charge que les opérations en ligne " +"de commande. Exécutez...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...pour plus d’informations.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Outil de ligne de commande pour l’importation de données CSV dans OMP\n" +"\t\t\tUtilisation :\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\t\tL’option --dry-run peut être utilisée pour tester sans faire de " +"changements.\n" +"\t\t\tSpécifiez le nom d’utilisateur auquel vous souhaitez attribuer les " +"soumissions.\n" + +msgid "plugins.importexport.csv.description" +msgstr "" +"Importer les soumissions à partir de données délimitées par des tabulations." + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Le fichier « {$filename} » n’existe pas. Fermeture de l’application." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Utilisateur inconnu : « {$username} ». Fermeture de l’application." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Locale inconnu : « {$locale} ». Omettre." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Maison d’édition inconnue : « {$contextPath} ». Omettre." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Le type de livre n’existe pas. Fermeture de l’application." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Le groupe d’auteur·e·s par défaut n’existe pas dans la maison d’édition " +"{$press}. Cette soumission n’est pas prise en compte." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Le chemin de la collection {$seriesPath} n’existe pas. Impossible de l’" +"ajouter à cette soumission." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Soumission « {$title} » importée avec succès." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"L’importation a réussi. Les éléments importés avec succès sont repris dans " +"la liste ci-dessous." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "L'auteur « {$author} » a un format non valide et a été ignoré." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"Le fichier CSV est manquant ou a un en-tête invalide, veuillez consulter le " +"fichier d'exemple « sample.csv » présent dans le dossier du plugin." diff --git a/plugins/importexport/csv/locale/gl/locale.po b/plugins/importexport/csv/locale/gl/locale.po new file mode 100644 index 00000000000..03c692c3283 --- /dev/null +++ b/plugins/importexport/csv/locale/gl/locale.po @@ -0,0 +1,68 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-20 08:54+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Complemento de importación de contido delimitado por tabulacións" + +msgid "plugins.importexport.csv.description" +msgstr "Importe envíos á editorial desde datos delimitados por tabulacións." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Este complemento só admite operacións en liña de comandos. " +"Executar...\n" +"

                php tools/importExport.php CSVImportExportPlugin
                \n" +"... para obter máis información.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Ferramenta de liña de comandos para importar datos CSV a OMP\n" +"\t\tUso:\n" +"\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\tA opción --dry-run pode usarse para probar sen facer cambios.\n" +"\t\tEspecifique o nome de usuario/a ao que desexa asignarlle os envíos.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "O archivo \"{$filename}\" non existe. Saindo." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Usuario/a descoñecido/a: \"{$username}\". Saindo." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Configuración de idioma descoñecida: \"{$locale}\". Ignorando." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Editorial descoñecida: \"{$contextPath}\". Ignorando." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Non hai xénero do manuscrito. Saíndo." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Non hai ningún grupo de autores/as predeterminado na editorial {$press}. " +"Omitindo este envío." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"O camiño da serie {$seriesPath} non existe. Non se puido engadir a este " +"envío." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Envío: '{$title}' importado correctamente." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"A importación tivo éxito. Os elementos importados correctamente aparecen a " +"continuación." diff --git a/plugins/importexport/csv/locale/hr/locale.po b/plugins/importexport/csv/locale/hr/locale.po new file mode 100644 index 00000000000..653d420f473 --- /dev/null +++ b/plugins/importexport/csv/locale/hr/locale.po @@ -0,0 +1,68 @@ +# Karla Zapalac , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-01-24 04:31+0000\n" +"Last-Translator: Karla Zapalac \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Dodatak za uvoz sadržaja razdvojenog tabulatorom" + +msgid "plugins.importexport.csv.description" +msgstr "Uvoz ponešenog iz podataka odvojenih tabulatorima u izdavače." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Ovaj dodatak trenutno podržava samo rad naredbenog retka. " +"Izvršite...\n" +"

                php tools/importExport.php CSVImportExportPlugin
                \n" +"...za više informacija.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Alat naredbenog retka za uvoz CSV podataka u OMP\n" +"Korištenje:\n" +"{$scriptName} [--dry-run] fileName.csv username\n" +"Opcija --dry-run može se koristiti za pokretanje testova bez ikakvih " +"promjena.\n" +"Navedite korisničko ime s kojim želite povezati podnešeno.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Datoteka \"{$filename}\" ne postoji. Exiting." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Nepoznat korisnik/ca: \"{$username}\". Exiting." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Nepoznato lokalno: \"{$locale}\". Skipping." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Nepoznat izdavač: \"{$contextPath}\". Skipping." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Ne postoji žanr rukopisa. Exiting." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Ne postoji standardna grupa autora/ica u izdavaču {$press}. Ovaj unos će " +"biti preskočen." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Serijski put {$seriesPath} ne postoji. Put se ne može dodati ovom podnošenju." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Podnošenje: '{$title}' uspješno uvezen." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "Uvoz je bio uspješan. Uspješno uvezene stavke navedene su u nastavku." diff --git a/plugins/importexport/csv/locale/hu/locale.po b/plugins/importexport/csv/locale/hu/locale.po new file mode 100644 index 00000000000..18f5706e945 --- /dev/null +++ b/plugins/importexport/csv/locale/hu/locale.po @@ -0,0 +1,70 @@ +# Fülöp Tiffany , 2021, 2022. +# Molnár Tamás , 2021. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-31 11:57+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Tab Delimited Content Import bővítmény" + +msgid "plugins.importexport.csv.description" +msgstr "A beküldések importálása tabulátorral elválasztott adatokból." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Ez a bővítmény jelenleg csak a parancssori működést támogatja. " +"Végrehajtás...\n" +"

                php tools/importExport.php CSVImportExportPlugin
                \n" +"...további információk.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Parancssori eszköz a CSV-adatok OMP-be történő importálásához\n" +"Használat:\n" +"{$scriptName} [--dry-run] fileName.csv username\n" +"The --dry-run option can be used to test without making changes.\n" +"Specify the username you wish to assign the submissions to.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "A \"{$filename}\" fájl nem létezik. Kilépés." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Ismeretlen felhasználó: \"{$felhasználónév}\". Kilépés." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Ismeretlen nyelv: \"{$locale}\". Kihagyás." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Ismeretlen kiadó: \"{$contextPath}\". Kihagyás." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Nincs kézirat típus. Kilépés." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Nincs alapértelmezett szerzői csoport a kiadónál {$press}. Beküldés " +"kihagyása." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"A sorozat elérési útvonala {$seriesPath} nem létezik. Nem lehet hozzáadni " +"ehhez a beküldéshez." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Beküldött anyag: '{$title}' sikeresen importálva." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"Az importálás sikeres volt. A sikeresen importált tételek az alábbiakban " +"kerülnek felsorolásra." diff --git a/plugins/importexport/csv/locale/it/locale.po b/plugins/importexport/csv/locale/it/locale.po new file mode 100644 index 00000000000..998fb0ba354 --- /dev/null +++ b/plugins/importexport/csv/locale/it/locale.po @@ -0,0 +1,71 @@ +# Alfredo Cosco , 2021. +# Fulvio Delle Donne , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-08 09:16+0000\n" +"Last-Translator: Fulvio Delle Donne \n" +"Language-Team: Italian \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Plugin per l'importazione di contenuti delimitati da tabulazione" + +msgid "plugins.importexport.csv.description" +msgstr "Importa gli invii da dati delimitati da tabulazioni." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Questo plugin attualmente supporta solo il funzionamento della riga " +"di comando.. Eseguire...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...per maggiori informazioni.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Strumento da riga di comando per importare dati CSV in OMP\n" +"Utilizzo:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv nome_utente\n" +"\t\t\tL'opzione --dry-run può essere utilizzata per testare senza apportare " +"modifiche.\n" +"\t\t\tSpecifica il nome utente a cui desideri assegnare gli invii.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Il file \"{$filename}\" non esiste. Uscita." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Utente sconosciuto: \"{$username}\". Uscita." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Localizzazione sconosciuta: \"{$locale}\". Saltare." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Editore sconosciuto: \"{$contextPath}\". Saltare." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Nessun genere di manoscritto. Uscita." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Non esiste un gruppo di autori predefinito nella stampa {$press}. Salta " +"questa proposta." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Il percorso della serie {$seriesPath} non esiste. Impossibile aggiungerlo a " +"questa proposta." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Pubblicazione: '{$title}' importata con successo." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"L'importazione è andata a buon fine. Gli elementi importati con successo " +"sono elencati di seguito." diff --git a/plugins/importexport/csv/locale/mk/locale.po b/plugins/importexport/csv/locale/mk/locale.po new file mode 100644 index 00000000000..e454f3f9322 --- /dev/null +++ b/plugins/importexport/csv/locale/mk/locale.po @@ -0,0 +1,76 @@ +# Mirko Spiroski , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-05-07 12:52+0000\n" +"Last-Translator: Mirko Spiroski \n" +"Language-Team: Macedonian \n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Приклучок за увоз на ограничена содржина со јазичиња" + +msgid "plugins.importexport.csv.description" +msgstr "Увезете поднесоци во изданија од ограничени податоци со јазичиња." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Овој приклучок во моментов поддржува само операција со командна " +"линија. Изврши ...\n" +"

                 php tools / importExport.php CSVImportExportPlugin 
                \n" +"... за повеќе информации.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Алатка за командна линија за увоз на податоци за CSV во OMP\n" +"Употреба:\n" +"Корисничко име {$scriptName} [--dry-run] fileName.csv корисничко име\n" +"Опцијата --dry-run може да се користи за тестирање без да се направат " +"измени.\n" +"Наведете го корисничкото име на кое сакате да ги доделите поднесоците.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Датотеката \"{$filename}\" не постои. Излез." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Непознат корисник: „{$username}“. Излез." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Непозната локација: „{$locale}“. Прескокнување." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Непознато издание: „{$contextPath}“. Прескокнување." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Нема жанр во ракописот. Излез." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Нема стандардна авторска група во изданието {$press}. Прескокнување на овој " +"поднесок." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Патеката на сериите {$seriesPath} не постои. Не може да се додаде на овој " +"поднесок." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Поднесокот: „{$title}“ е успешно увезен." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "Увозот беше успешен. Успешно увезените артикли се наведени подолу." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"CSV фајлот или недостасува или има погрешен наслов, молам погледнете во " +"фајлот од примерокот \"sample.csv\" присутен во плагинскиот фолдер." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "Авторот \"{$author}\" има невалиден формат и беше прескокнат." diff --git a/plugins/importexport/csv/locale/mk_MK/locale.po b/plugins/importexport/csv/locale/mk_MK/locale.po deleted file mode 100644 index 1e4b26ebf55..00000000000 --- a/plugins/importexport/csv/locale/mk_MK/locale.po +++ /dev/null @@ -1,67 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-06 17:52+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "Увозот беше успешен. Успешно увезените артикли се наведени подолу." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Поднесокот: „{$title}“ е успешно увезен." - -msgid "plugins.importexport.csv.noSeries" -msgstr "" -"Патеката на сериите {$seriesPath} не постои. Не може да се додаде на овој " -"поднесок." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "" -"Нема стандардна авторска група во изданието {$press}. Прескокнување на овој " -"поднесок." - -msgid "plugins.importexport.csv.noGenre" -msgstr "Нема жанр во ракописот. Излез." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Непознато издание: „{$contextPath}“. Прескокнување." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Непозната локација: „{$locale}“. Прескокнување." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Непознат корисник: „{$username}“. Излез." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "Датотеката \"{$filename}\" не постои. Излез." - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Алатка за командна линија за увоз на податоци за CSV во OMP\n" -"Употреба:\n" -"Корисничко име {$scriptName} [--dry-run] fileName.csv корисничко име\n" -"Опцијата --dry-run може да се користи за тестирање без да се направат измени." -"\n" -"Наведете го корисничкото име на кое сакате да ги доделите поднесоците.\n" - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Овој приклучок во моментов поддржува само операција со командна " -"линија. Изврши ...\n" -"

                 php tools / importExport.php CSVImportExportPlugin 
                \n" -"... за повеќе информации.

                \n" -"\t" - -msgid "plugins.importexport.csv.description" -msgstr "Увезете поднесоци во изданија од ограничени податоци со јазичиња." - -msgid "plugins.importexport.csv.displayName" -msgstr "Приклучок за увоз на ограничена содржина со јазичиња" diff --git a/plugins/importexport/csv/locale/nb/locale.po b/plugins/importexport/csv/locale/nb/locale.po new file mode 100644 index 00000000000..7f0f6f87fea --- /dev/null +++ b/plugins/importexport/csv/locale/nb/locale.po @@ -0,0 +1,66 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-10-22 10:19+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Programtillegg for å importere tabulatorseparert innhold" + +msgid "plugins.importexport.csv.description" +msgstr "Importer innleveringer til utgivere fra tabulatorseparert data." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Dette pluginet støtter foreløpig bare kjøring av kommandolinjen. Fra " +"innstallasjonsmappen, kjør ...\n" +"

                php-tools/importExport.php CSVImportExportPlugin
                \n" +"... for mer informasjon.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Kommandolinjeverktøy for import av CSV-data til OMP\n" +"Applikasjon:\n" +"{$scriptName} [--dry-run] filnavn.csv brukernavn\n" +"Alternativet --dry-run kan brukes til å teste uten å gjøre endringer.\n" +"Skriv inn brukernavnet du vil knytte til innleveringene.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Filen \"{$filename}\" eksisterer ikke. Avslutter." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Ukjent bruker: \"{$username}\". Avslutter." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Ukjent språk: \"{$locale}\". Hoper over." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Ukendt utgiver: \"{$contextPath}\". Hopper over." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Det er ingen manuskriptgenre. Avslutter." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Det er ingen forhåndsdefinert forfattergruppe hos utgiveren {$press}. Hopper " +"over dette innlegget." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Seriestien {$seriesPath} eksisterer ikke. Kan ikke legge den til denne " +"innleveringen." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Innlevering: '{$title}' ble importert." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "Importen var vellykket. Objektene som er importert, vises nedenfor." diff --git a/plugins/importexport/csv/locale/nb_NO/locale.po b/plugins/importexport/csv/locale/nb_NO/locale.po deleted file mode 100644 index adda4f3a11c..00000000000 --- a/plugins/importexport/csv/locale/nb_NO/locale.po +++ /dev/null @@ -1,66 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-10-22 10:19+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "Importen var vellykket. Objektene som er importert, vises nedenfor." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Innlevering: '{$title}' ble importert." - -msgid "plugins.importexport.csv.noSeries" -msgstr "" -"Seriestien {$seriesPath} eksisterer ikke. Kan ikke legge den til denne " -"innleveringen." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "" -"Det er ingen forhåndsdefinert forfattergruppe hos utgiveren {$press}. Hopper " -"over dette innlegget." - -msgid "plugins.importexport.csv.noGenre" -msgstr "Det er ingen manuskriptgenre. Avslutter." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Ukendt utgiver: \"{$contextPath}\". Hopper over." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Ukjent språk: \"{$locale}\". Hoper over." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Ukjent bruker: \"{$username}\". Avslutter." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "Filen \"{$filename}\" eksisterer ikke. Avslutter." - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Kommandolinjeverktøy for import av CSV-data til OMP\n" -"Applikasjon:\n" -"{$scriptName} [--dry-run] filnavn.csv brukernavn\n" -"Alternativet --dry-run kan brukes til å teste uten å gjøre endringer.\n" -"Skriv inn brukernavnet du vil knytte til innleveringene.\n" - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Dette pluginet støtter foreløpig bare kjøring av kommandolinjen. Fra " -"innstallasjonsmappen, kjør ...\n" -"

                php-tools/importExport.php CSVImportExportPlugin
                \n" -"... for mer informasjon.

                \n" -"\t" - -msgid "plugins.importexport.csv.description" -msgstr "Importer innleveringer til utgivere fra tabulatorseparert data." - -msgid "plugins.importexport.csv.displayName" -msgstr "Programtillegg for å importere tabulatorseparert innhold" diff --git a/plugins/importexport/csv/locale/pl/locale.po b/plugins/importexport/csv/locale/pl/locale.po new file mode 100644 index 00000000000..028a5afd51d --- /dev/null +++ b/plugins/importexport/csv/locale/pl/locale.po @@ -0,0 +1,66 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-10 19:07+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Wtyczka Importu Zawartości Rozdzielonej Tabulatorami" + +msgid "plugins.importexport.csv.description" +msgstr "" +"Zgłoszenia importowane do wydawnictwa z danymi rozdzielonymi tabulatorami." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Wtyczka obecnie tylko operację wiersza poleceń. Uruchom...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...aby uzyskać więcej informacji.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Narzędzie wiersza poleceń do importu danych CSV do OMP\n" +"\t\t\tZastosowanie:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv nazwa użytkownika\n" +"\t\t\t --Próbny przebie może być wykorzystany do testu nie wprowadzając " +"zmian.\n" +"\t\t\tOkreśl nazwę użytkownika, którego chcesz przypisać do zlecenia.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Plik \"{$filename}\" nie istnieje. Wyjdź." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Nieznany użytkownik: \"{$username}\". Wyjdź." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Nieznane ustawienia regionalne: \"{$locale}\". Pomiń." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Nieznane wydawnictwo: \"{$contextPath}\". Pomiń." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Brak rodzaju manuskryptu. Wyjdź." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Brak domyślnej grupy autorów dla tego wydania {$press}. Pomiń zgłoszenie." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Ścieżka serii {$seriesPath} nie istnieje. Nie można dodać do zgłoszenia." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Zgłoszenie: '{$title}' pomyślnie importowane." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "Pomyślny import. Pomyślnie importowane pozycje są wymienione poniżej." diff --git a/plugins/importexport/csv/locale/pl_PL/locale.po b/plugins/importexport/csv/locale/pl_PL/locale.po deleted file mode 100644 index e3445f522ac..00000000000 --- a/plugins/importexport/csv/locale/pl_PL/locale.po +++ /dev/null @@ -1,66 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-07-10 19:07+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "Pomyślny import. Pomyślnie importowane pozycje są wymienione poniżej." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Zgłoszenie: '{$title}' pomyślnie importowane." - -msgid "plugins.importexport.csv.noSeries" -msgstr "" -"Ścieżka serii {$seriesPath} nie istnieje. Nie można dodać do zgłoszenia." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "" -"Brak domyślnej grupy autorów dla tego wydania {$press}. Pomiń zgłoszenie." - -msgid "plugins.importexport.csv.noGenre" -msgstr "Brak rodzaju manuskryptu. Wyjdź." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Nieznane wydawnictwo: \"{$contextPath}\". Pomiń." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Nieznane ustawienia regionalne: \"{$locale}\". Pomiń." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Nieznany użytkownik: \"{$username}\". Wyjdź." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "Plik \"{$filename}\" nie istnieje. Wyjdź." - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Narzędzie wiersza poleceń do importu danych CSV do OMP\n" -"\t\t\tZastosowanie:\n" -"\t\t\t{$scriptName} [--dry-run] fileName.csv nazwa użytkownika\n" -"\t\t\t --Próbny przebie może być wykorzystany do testu nie wprowadzając " -"zmian.\n" -"\t\t\tOkreśl nazwę użytkownika, którego chcesz przypisać do zlecenia.\n" - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Wtyczka obecnie tylko operację wiersza poleceń. Uruchom...\n" -"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" -"\t\t\t...aby uzyskać więcej informacji.

                \n" -"\t" - -msgid "plugins.importexport.csv.description" -msgstr "" -"Zgłoszenia importowane do wydawnictwa z danymi rozdzielonymi tabulatorami." - -msgid "plugins.importexport.csv.displayName" -msgstr "Wtyczka Importu Zawartości Rozdzielonej Tabulatorami" diff --git a/plugins/importexport/csv/locale/pt_BR/locale.po b/plugins/importexport/csv/locale/pt_BR/locale.po index 706f0ad075a..d641821f255 100644 --- a/plugins/importexport/csv/locale/pt_BR/locale.po +++ b/plugins/importexport/csv/locale/pt_BR/locale.po @@ -1,6 +1,7 @@ +# Diego José Macêdo , 2024. msgid "" msgstr "" -"PO-Revision-Date: 2020-06-06 02:27+0000\n" +"PO-Revision-Date: 2024-03-16 21:39+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -9,39 +10,24 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.18.2\n" -msgid "plugins.importexport.csv.import.success.description" -msgstr "" -"A importação foi bem-sucedida. Os itens importados com sucesso estão " -"listados abaixo." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Submissão: '{$title}' importada com sucesso." +msgid "plugins.importexport.csv.displayName" +msgstr "Plug-in de importação de conteúdo delimitado por tabulação" -msgid "plugins.importexport.csv.noSeries" +msgid "plugins.importexport.csv.description" msgstr "" -"O caminho da série {$seriesPath} não existe. Não foi possível adicioná-lo a " -"esta submissão." +"Importar submissões para editoras a partir de dados delimitados por " +"tabulações." -msgid "plugins.importexport.csv.noAuthorGroup" +msgid "plugins.importexport.csv.cliOnly" msgstr "" -"Não há grupo de autores padrão na editora {$press}. Ignorando esta submissão." - -msgid "plugins.importexport.csv.noGenre" -msgstr "Não há gênero de manuscrito. Sair." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Editora desconhecida \"{$contextPath}\". Ignorando." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Código de Idioma desconhecido \"{$locale}\". Ignorando." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Usuário desconhecido: \"{$username}\". Saindo." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "O arquivo \"{$filename}\" não existe.\t\tSaindo." +"\n" +"\t\t

                No momento, este plugin suporta apenas operações de linha de " +"comando. Execute...\n" +"

                 php tools/importExport.php CSVImportExportPlugi
                \n" +"... para mais informações.

                \n" +"\t" msgid "plugins.importexport.csv.cliUsage" msgstr "" @@ -53,19 +39,42 @@ msgstr "" "\t\t\tEspecifique o nome de usuário ao qual você deseja atribuir as " "submissões.\n" -msgid "plugins.importexport.csv.cliOnly" +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "O arquivo \"{$filename}\" não existe.\t\tSaindo." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Usuário desconhecido: \"{$username}\". Saindo." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Código de Idioma desconhecido \"{$locale}\". Ignorando." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Editora desconhecida \"{$contextPath}\". Ignorando." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Não há gênero de manuscrito. Sair." + +msgid "plugins.importexport.csv.noAuthorGroup" msgstr "" -"\n" -"\t\t

                No momento, este plugin suporta apenas operações de linha de " -"comando. Execute...\n" -"

                 php tools/importExport.php CSVImportExportPlugi
                \n" -"... para mais informações.

                \n" -"\t" +"Não há grupo de autores padrão na editora {$press}. Ignorando esta submissão." -msgid "plugins.importexport.csv.description" +msgid "plugins.importexport.csv.noSeries" msgstr "" -"Importar submissões para editoras a partir de dados delimitados por " -"tabulações." +"O caminho da série {$seriesPath} não existe. Não foi possível adicioná-lo a " +"esta submissão." -msgid "plugins.importexport.csv.displayName" -msgstr "Plug-in de importação de conteúdo delimitado por tabulação" +msgid "plugins.importexport.csv.import.submission" +msgstr "Submissão: '{$title}' importada com sucesso." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"A importação foi bem-sucedida. Os itens importados com sucesso estão " +"listados abaixo." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"O arquivo CSV está ausente ou possui um cabeçalho inválido; por favor, " +"consulte o arquivo de exemplo \"sample.csv\" disponível na pasta do plugin." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "O autor \"{$author}\" possui um formato inválido e foi ignorado." diff --git a/plugins/importexport/csv/locale/pt_PT/locale.po b/plugins/importexport/csv/locale/pt_PT/locale.po new file mode 100644 index 00000000000..c6673a80df5 --- /dev/null +++ b/plugins/importexport/csv/locale/pt_PT/locale.po @@ -0,0 +1,79 @@ +# Carla Marques , 2023. +# José Carvalho , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-06 09:02+0000\n" +"Last-Translator: José Carvalho \n" +"Language-Team: Portuguese (Portugal) \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Plugin de importação de conteúdo delimitado por separadores" + +msgid "plugins.importexport.csv.description" +msgstr "" +"Importar submissões para editoras com dados delimitados por separadores." + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Ferramenta de linha de comandos para importação de dados CSV para o OMP\n" +" Uso:\n" +" {$scriptName} [--dry-run] fileName.csv username\n" +" A opção --dry-run pode ser usada para testar sem alterações.\n" +" Especifique o nome de utilizador que deseja designar às submissões.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "O ficheiro \"{$filename}\" não existe. A sair." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Utilizador desconhecido: \"{$username}\". A sair." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Idioma desconhecido: \"{$locale}\". Ignorar." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Editora desconhecida: \"{$contextPath}\". Ignorar." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Não existe género de manuscrito. A sair." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Não existe qualquer grupo de autores padrão na editora {$press}. Ignorar " +"esta submissão." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"O caminho da série {$seriesPath} não existe. Não foi possível adicionar a " +"esta submissão." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Submissão: '{$title}' importada com sucesso." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"A importação foi concluída com sucesso. Os itens importados com sucesso " +"encontram-se na lista abaixo." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Este plugin suporta de momentos apenas operações de linha de " +"comandos. Execute...\n" +"

                php tools/importExport.php CSVImportExportPlugin
                \n" +" ...para mais informações.

                \n" +"\t" + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "O autor \"{$author}\" tem um formato inválido e foi ignorado." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"O ficheiro CSV está em falta ou tem um cabeçalho inválido. Consulte o " +"ficheiro de amostra \"sample.csv\" presente na pasta do plugin." diff --git a/plugins/importexport/csv/locale/ro/locale.po b/plugins/importexport/csv/locale/ro/locale.po new file mode 100644 index 00000000000..78d09437b25 --- /dev/null +++ b/plugins/importexport/csv/locale/ro/locale.po @@ -0,0 +1,76 @@ +# Vasile Moraru , 2024. +# Iusan Daria , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-04 19:39+0000\n" +"Last-Translator: Iusan Daria \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Plugin de import al conținutului delimitat de tab-uri (TSV)" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Fișierul \"{$filename}\" nu există. Ieșiți." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Utilizator necunoscut: \"{$username}\". Ieșiți." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Regiune locală necunoscută:\"{$locale}\". Omiteți." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Editură necunoscută: \"{$contextPath}\". Omiteți." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Nu există un gen de manuscris. Ieșire." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Ruta seriei {$seriesPath} nu există. Nu se poate adăuga la această cerere." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Cererea: '{$title}' importată cu succes." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "Autorul \"{$author}\" deține un format invalid sau a fost omis." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Acest plugin suportă în prezent doar operarea în linie de comandă. " +"Executați:.\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...pentru a obține mai multe informații.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Instrument în linie de comandă pentru importarea datelor CSV în OMP\n" +"\t\t\tUtilizare:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\t\tOpțiunea---dry-run poate fi utilizată pentru a testa fără a face " +"modificări.\n" +"\t\t\tSpecifică numele de utilizator căruia doriți să-i atribuiți cereri.\n" + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Nu există un grup de autori prestabiliți în această editură {$press}. " +"Omiteți această cerere." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"Importarea s-a finalizat cu succes. Elementele importate cu succes sunt " +"afișate mai jos." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"Fișierul CSV fie lipsește, fie are un antet invalid, vă rugăm să consultați " +"fișierul de probă \"sample.csv\" prezent în folderul plugin." diff --git a/plugins/importexport/csv/locale/ru/locale.po b/plugins/importexport/csv/locale/ru/locale.po new file mode 100644 index 00000000000..22821e1199e --- /dev/null +++ b/plugins/importexport/csv/locale/ru/locale.po @@ -0,0 +1,69 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 09:32+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Плагин импорта данных разделенных табуляцией (запятой)" + +msgid "plugins.importexport.csv.description" +msgstr "Импорт документов в издания из данных, разделенных табуляция." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Сейчас плагин поддерживает работу только из командной строки. " +"Выполните команду...\n" +"\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t...для получения дополнительной информации.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Инструмент командной строки для импорта данных CSV в OMP\n" +"\t\t\tИспользование:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv имя пользователя\n" +"\t\t\tОпция --dry-run может быть использована для тестирования без внесения " +"изменений.\n" +"\t\t\tУкажите имя пользователя, которому вы хотите присвоить отправку.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Файл \"{$filename}\" не существует. Выход." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Неизвестный пользователь: \"{$ имя пользователя}\". Выход." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Неизвестный Язык: \"{$locale}\". Пропуск." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Неизвестное Издательство: \"{$contextPath}\". Пропуск." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Отсутствует жанр рукописи. Выход." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"По умолчанию не существует группы авторов при нажатии {$press}. Пропуск это " +"отправки." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Путь серии {$seriesPath} не существует. Невозможно добавить его в эту " +"отправку." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Отправка: \"{$title}\" успешно импортирована." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"Импорт прошел успешно. Успешно импортированные элементы перечислены ниже." diff --git a/plugins/importexport/csv/locale/ru_RU/locale.po b/plugins/importexport/csv/locale/ru_RU/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/importexport/csv/locale/ru_RU/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/importexport/csv/locale/sl/locale.po b/plugins/importexport/csv/locale/sl/locale.po new file mode 100644 index 00000000000..166aec868c2 --- /dev/null +++ b/plugins/importexport/csv/locale/sl/locale.po @@ -0,0 +1,60 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:26+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:26+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Uvozni vtičnik za vsebino, ločeno s tabulatorjem" + +msgid "plugins.importexport.csv.description" +msgstr "Uvozi prispevke v založbo iz podatkov, ločenih s tabulatorjem." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Ta vtičnik trenutno podpira samo delovanje ukazne vrstice. Potrdi ... " +"

                php tools/importExport.php CSVImportExportPlugin
                ... za več " +"informacij.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Orodje ukazne vrstice za vnos podatkov CSV v uporabo OMP: {$scriptName} [--" +"dry-run] fileName.csv username Možnost --dry-run omogoča testiranje brez " +"vnašanja sprememb. Navedite uporabniško ime, ki mu želite dodeliti " +"prispevek.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Datoteka \"{$filename}\" ne obstaja. Izhod." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Neznan uporabnik:\"{$username}\". Izhod." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Neznani območni jezik:\"{$locale}\". Preskoči." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Neznana založba: \"{$contextPath}\". Preskoči." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Zvrst rokopisa ni na voljo. Izhod." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "V založbi ni privzete skupine avtorjev {$press}. Izhod iz prispevka." + +msgid "plugins.importexport.csv.noSeries" +msgstr "Pot zbirke {$seriesPath} ne obstaja. Temu prispevku ni mogoče dodati." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Prispevek: '{$title}‘ uspešno uvožen." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "Uvoz uspešen. Uspešno uvoženi elementi so prikazani spodaj." diff --git a/plugins/importexport/csv/locale/sl_SI/locale.po b/plugins/importexport/csv/locale/sl_SI/locale.po deleted file mode 100644 index 0f257f91e25..00000000000 --- a/plugins/importexport/csv/locale/sl_SI/locale.po +++ /dev/null @@ -1,56 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:26+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:26+00:00\n" -"Language: \n" - -msgid "plugins.importexport.csv.displayName" -msgstr "Uvozni vtičnik za vsebino, ločeno s tabulatorjem" - -msgid "plugins.importexport.csv.description" -msgstr "Uvozi prispevke v založbo iz podatkov, ločenih s tabulatorjem." - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Ta vtičnik trenutno podpira samo delovanje ukazne vrstice. Potrdi ...

                php tools/importExport.php CSVImportExportPlugin
                ... za več informacij.

                \n" -"\t" - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Orodje ukazne vrstice za vnos podatkov CSV v uporabo OMP: {$scriptName} [--dry-run] fileName.csv username Možnost --dry-run omogoča testiranje brez vnašanja sprememb. Navedite uporabniško ime, ki mu želite dodeliti prispevek.\n" -"" - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "Datoteka \"{$filename}\" ne obstaja. Izhod." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Neznan uporabnik:\"{$username}\". Izhod." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Neznani območni jezik:\"{$locale}\". Preskoči." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Neznana založba: \"{$contextPath}\". Preskoči." - -msgid "plugins.importexport.csv.noGenre" -msgstr "Zvrst rokopisa ni na voljo. Izhod." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "V založbi ni privzete skupine avtorjev {$press}. Izhod iz prispevka." - -msgid "plugins.importexport.csv.noSeries" -msgstr "Pot zbirke {$seriesPath} ne obstaja. Temu prispevku ni mogoče dodati." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Prispevek: '{$title}‘ uspešno uvožen." - -msgid "plugins.importexport.csv.import.success.description" -msgstr "Uvoz uspešen. Uspešno uvoženi elementi so prikazani spodaj." diff --git a/plugins/importexport/csv/locale/sv/locale.po b/plugins/importexport/csv/locale/sv/locale.po new file mode 100644 index 00000000000..dd3ade870a6 --- /dev/null +++ b/plugins/importexport/csv/locale/sv/locale.po @@ -0,0 +1,65 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-11 11:28+0000\n" +"Last-Translator: Magnus Annemark \n" +"Language-Team: Swedish \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "CSV-import plugin" + +msgid "plugins.importexport.csv.description" +msgstr "Importera bidrag till pressen från tabulatorseparerad data." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Denna plugin kan bara köras med kommandorader. Gå till\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t...för mer information.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Kommandoradsverktyg för att importera CSV-data till OMP\n" +"\t\t\tAnvändning:\n" +"\t\t\t{$scriptName} [--dry-run] filNamn.csv användarnamn\n" +"\t\t\tTestkörning kan användas för att pröva utan att göra ändringar\n" +"\t\t\tSpecificera vilket användarnamn du vill tilldela bidragen.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Filen \"{$filename}\" exusterar ej. Avslutar." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Okänd användare: \"{$username}\". Avslutar." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Okänt språk: \"{$locale}\". Hoppar över." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Okänd press: \"{$contextPath}\". Hoppar över." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Det finns ingen manuskript-genre. Avslutar." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Det finns ingen default-författargrupp i pressen {$press}. Hoppar över " +"bidraget." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Serien {$seriesPath} existerar ej. Kan ej lägga till informationen i detta " +"bidrag." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Bidraget: '{$title}' har importerats." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "Importen lyckades. Importerade objekt listas nedan." diff --git a/plugins/importexport/csv/locale/tr/locale.po b/plugins/importexport/csv/locale/tr/locale.po new file mode 100644 index 00000000000..f8a80adc06e --- /dev/null +++ b/plugins/importexport/csv/locale/tr/locale.po @@ -0,0 +1,65 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-21 21:13+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Sekmeyle Sınırlandırılmış İçerik İçe Aktarma Eklentisi" + +msgid "plugins.importexport.csv.description" +msgstr "Gönderimleri sekmeyle ayrılmış verilerden yayınevlerine aktarın." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Bu eklenti şu anda yalnızca komut satırı işlemini desteklemektedir. " +"Yürüt ...\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +" \t\t\t...daha fazla bilgi için.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"CSV verilerini OMP'ye aktarmak için komut satırı aracı\n" +"\t\t\tKullanım:\n" +"\t\t\t{$scriptName} [--dry-run] dosyaAdı.csv kullanıcıadı\n" +"\t\t\t--dry-run seçeneği değişiklik yapmadan test etmek için kullanılabilir." +"\n" +"\t\t\tGönderimleri atamak istediğiniz kullanıcı adını belirtin.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "\"{$filename}\" dosyası mevcut değil. Çıkılıyor." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Bilinmeyen Kullanıcı: \"{$username}\". Çıkılıyor." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Bilinmeyen Bölgesel Ayar: \"{$locale}\". Atlanıyor." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Bilinmeyen Yayınevi: \"{$contextPath}\". Atlanıyor." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Yazı taslağı türü mevcut değil. Kapatılıyor." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "Yayınevi {$press}'de varsayılan yazar grubu yok. Bu gönderim atlanıyor." + +msgid "plugins.importexport.csv.noSeries" +msgstr "{$seriesPath} dizi yolu mevcut değil. Bu gönderiye eklenemiyor." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Gönderi: '{$title}' başarıyla içe aktarıldı." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"İçe aktarma başarılı oldu. Başarıyla içe aktarılan öğeler aşağıda " +"listelenmiştir." diff --git a/plugins/importexport/csv/locale/uk/locale.po b/plugins/importexport/csv/locale/uk/locale.po new file mode 100644 index 00000000000..9b366bc6012 --- /dev/null +++ b/plugins/importexport/csv/locale/uk/locale.po @@ -0,0 +1,78 @@ +# Petro Bilous , 2022, 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-19 12:39+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "Плагін для імпорту даних, розділених табуляцією" + +msgid "plugins.importexport.csv.description" +msgstr "Імпортувати подання до е-видавництв із даних, розділених табуляцією." + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" +"\n" +"\t\t

                Wей плагін наразі підтримує роботу тільки з командного рядка. " +"Виконайте команду…\n" +"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" +"\t\t\t…для отримання більше інформації.

                \n" +"\t" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" +"Утиліта імпорту даних CSV до OMP за допомогою командного рядка\n" +"\t\t\tВикористання:\n" +"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" +"\t\t\tОпція \"--dry-run\" може використовуватися про пробного імпорту без " +"внесення змін.\n" +"\t\t\tУкажіть \"username\" (ім'я користувача), якому ви хочете призначити " +"подання.\n" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "Файл \"{$filename}\" не існує. Ініційовано вихід." + +msgid "plugins.importexport.csv.unknownUser" +msgstr "Невідомий користувач: \"{$username}\". Ініційовано вихід." + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "Невідома локалізація: \"{$locale}\". Пропускаємо значення." + +msgid "plugins.importexport.csv.unknownPress" +msgstr "Невідоме е-видавництво: {$contextPath}. Пропускаємо значення." + +msgid "plugins.importexport.csv.noGenre" +msgstr "Відсутній жанр рукопису. Ініційовано вихід." + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" +"Відсутня група авторів за замовчуванням у е-видавництві {$press}. Пропуск " +"цього подання." + +msgid "plugins.importexport.csv.noSeries" +msgstr "" +"Шлях для серії {$seriesPath} не існує. Неможливо додати до цього подання." + +msgid "plugins.importexport.csv.import.submission" +msgstr "Подання \"{$title}\" успішно імпортовано." + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" +"Імпорт відбувся успішно. Список імпортованих елементів наводиться нижче." + +msgid "plugins.importexport.csv.invalidAuthor" +msgstr "Автор \"{$author}\" має некоректний формат і був пропущений." + +msgid "plugins.importexport.csv.invalidHeader" +msgstr "" +"Файл CSV відсутній або має некоректний заголовок. Подивіться на зразок файлу " +"\"sample.csv\", який знаходиться в папці плагіна." diff --git a/plugins/importexport/csv/locale/uk_UA/locale.po b/plugins/importexport/csv/locale/uk_UA/locale.po deleted file mode 100644 index 52985b15075..00000000000 --- a/plugins/importexport/csv/locale/uk_UA/locale.po +++ /dev/null @@ -1,69 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-27 23:20+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.csv.import.success.description" -msgstr "" -"Імпорт відбувся успішно. Список імпортованих елементів наводиться нижче." - -msgid "plugins.importexport.csv.import.submission" -msgstr "Подання: '{$title}' успішно імпортовано." - -msgid "plugins.importexport.csv.noSeries" -msgstr "" -"Шлях для Серії {$seriesPath} не існує. Неможливо додати до цього Подання." - -msgid "plugins.importexport.csv.noAuthorGroup" -msgstr "" -"Відсутня група авторів за замовчуванням у Видавництві {$press}. Пропускаємо " -"це Подання." - -msgid "plugins.importexport.csv.noGenre" -msgstr "Відсутній жанр Рукопису. Ініційовано вихід." - -msgid "plugins.importexport.csv.unknownPress" -msgstr "Невідомий Видавець: \"{$contextPath}\". Пропускаємо значення." - -msgid "plugins.importexport.csv.unknownLocale" -msgstr "Невідома Мова: \"{$locale}\". Пропускаємо значення." - -msgid "plugins.importexport.csv.unknownUser" -msgstr "Невідомий Користувач: \"{$username}\". Ініційовано Вихід." - -msgid "plugins.importexport.csv.fileDoesNotExist" -msgstr "Файл \"{$filename}\" не існує. Ініційовано Вихід." - -msgid "plugins.importexport.csv.cliUsage" -msgstr "" -"Утиліта імпорту даних CSV до OMP за допомогою командного рядка\n" -"\t\t\tВикористання:\n" -"\t\t\t{$scriptName} [--dry-run] fileName.csv username\n" -"\t\t\tОпція \"--dry-run\" може використовуватися про пробного імпорту без " -"внесення змін.\n" -"\t\t\tВкажіть \"username\" (ім'я користувача) з яким ви хочете асоціювати " -"подання (зробити автором).\n" - -msgid "plugins.importexport.csv.cliOnly" -msgstr "" -"\n" -"\t\t

                Наразі цей плагін підтримує роботу тільки з командного рядка. " -"Виповніть команду...\n" -"\t\t\t

                php tools/importExport.php CSVImportExportPlugin
                \n" -"\t\t\t...для отримання більше інформації.

                \n" -"\t" - -msgid "plugins.importexport.csv.description" -msgstr "Імпортувати подання до видавництв з даними, що розділені табуляцією." - -msgid "plugins.importexport.csv.displayName" -msgstr "Плагін для імпорту даних розділених табуляцією" diff --git a/plugins/importexport/csv/locale/vi/locale.po b/plugins/importexport/csv/locale/vi/locale.po new file mode 100644 index 00000000000..df28f9cb20d --- /dev/null +++ b/plugins/importexport/csv/locale/vi/locale.po @@ -0,0 +1,45 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "plugins.importexport.csv.displayName" +msgstr "" + +msgid "plugins.importexport.csv.description" +msgstr "" + +msgid "plugins.importexport.csv.cliOnly" +msgstr "" + +msgid "plugins.importexport.csv.cliUsage" +msgstr "" + +msgid "plugins.importexport.csv.fileDoesNotExist" +msgstr "" + +msgid "plugins.importexport.csv.unknownUser" +msgstr "" + +msgid "plugins.importexport.csv.unknownLocale" +msgstr "" + +msgid "plugins.importexport.csv.unknownPress" +msgstr "" + +msgid "plugins.importexport.csv.noGenre" +msgstr "" + +msgid "plugins.importexport.csv.noAuthorGroup" +msgstr "" + +msgid "plugins.importexport.csv.noSeries" +msgstr "" + +msgid "plugins.importexport.csv.import.submission" +msgstr "" + +msgid "plugins.importexport.csv.import.success.description" +msgstr "" diff --git a/plugins/importexport/csv/locale/vi_VN/locale.po b/plugins/importexport/csv/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/importexport/csv/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/importexport/csv/sample.csv b/plugins/importexport/csv/sample.csv new file mode 100644 index 00000000000..b9f042df792 --- /dev/null +++ b/plugins/importexport/csv/sample.csv @@ -0,0 +1,2 @@ +pressPath,authorString,title,abstract,seriesPath,year,isEditedVolume,locale,filename,doi +publicknowledge,Author1 Surname1;Author2 Surname2,Title text,Abstract text,,2024,1,en,submission.pdf,https://doi.org/10.1111/hex.12487 diff --git a/plugins/importexport/native/NativeImportExportDeployment.inc.php b/plugins/importexport/native/NativeImportExportDeployment.inc.php deleted file mode 100644 index 6f6f1ba7a68..00000000000 --- a/plugins/importexport/native/NativeImportExportDeployment.inc.php +++ /dev/null @@ -1,64 +0,0 @@ -getEnabled()) { - $this->addLocaleData(); - $this->import('NativeImportExportDeployment'); - } - return $success; - } - - /** - * Get the name of this plugin. The name must be unique within - * its category. - * @return String name of plugin - */ - function getName() { - return 'NativeImportExportPlugin'; - } - - /** - * Get the display name. - * @return string - */ - function getDisplayName() { - return __('plugins.importexport.native.displayName'); - } - - /** - * Get the display description. - * @return string - */ - function getDescription() { - return __('plugins.importexport.native.description'); - } - - /** - * @copydoc ImportExportPlugin::getPluginSettingsPrefix() - */ - function getPluginSettingsPrefix() { - return 'native'; - } - - /** - * Display the plugin. - * @param $args array - * @param $request PKPRequest - */ - function display($args, $request) { - $templateMgr = TemplateManager::getManager($request); - $context = $request->getContext(); - - parent::display($args, $request); - - $templateMgr->assign('plugin', $this); - - switch (array_shift($args)) { - case 'index': - case '': - $apiUrl = $request->getDispatcher()->url($request, ROUTE_API, $context->getPath(), 'submissions'); - $submissionsListPanel = new \APP\components\listPanels\SubmissionsListPanel( - 'submissions', - __('common.publications'), - [ - 'apiUrl' => $apiUrl, - 'count' => 100, - 'getParams' => new stdClass(), - 'lazyLoad' => true, - ] - ); - $submissionsConfig = $submissionsListPanel->getConfig(); - $submissionsConfig['addUrl'] = ''; - $submissionsConfig['filters'] = array_slice($submissionsConfig['filters'], 1); - $templateMgr->setState([ - 'components' => [ - 'submissions' => $submissionsConfig, - ], - ]); - $templateMgr->assign([ - 'pageComponent' => 'ImportExportPage', - ]); - $templateMgr->display($this->getTemplateResource('index.tpl')); - break; - case 'uploadImportXML': - $user = $request->getUser(); - import('lib.pkp.classes.file.TemporaryFileManager'); - $temporaryFileManager = new TemporaryFileManager(); - $temporaryFile = $temporaryFileManager->handleUpload('uploadedFile', $user->getId()); - if ($temporaryFile) { - $json = new JSONMessage(true); - $json->setAdditionalAttributes(array( - 'temporaryFileId' => $temporaryFile->getId() - )); - } else { - $json = new JSONMessage(false, __('common.uploadFailed')); - } - header('Content-Type: application/json'); - return $json->getString(); - case 'importBounce': - if (!$request->checkCSRF()) throw new Exception('CSRF mismatch!'); - $json = new JSONMessage(true); - $json->setEvent('addTab', array( - 'title' => __('plugins.importexport.native.results'), - 'url' => $request->url(null, null, null, array('plugin', $this->getName(), 'import'), array('temporaryFileId' => $request->getUserVar('temporaryFileId'), 'csrfToken' => $request->getSession()->getCSRFToken())), - )); - header('Content-Type: application/json'); - return $json->getString(); - case 'import': - if (!$request->checkCSRF()) throw new Exception('CSRF mismatch!'); - AppLocale::requireComponents(LOCALE_COMPONENT_PKP_SUBMISSION); - $temporaryFileId = $request->getUserVar('temporaryFileId'); - $temporaryFileDao = DAORegistry::getDAO('TemporaryFileDAO'); /* @var $temporaryFileDao TemporaryFileDAO */ - $user = $request->getUser(); - $temporaryFile = $temporaryFileDao->getTemporaryFile($temporaryFileId, $user->getId()); - if (!$temporaryFile) { - $json = new JSONMessage(true, __('plugins.inportexport.native.uploadFile')); - header('Content-Type: application/json'); - return $json->getString(); - } - $temporaryFilePath = $temporaryFile->getFilePath(); - - $deployment = new NativeImportExportDeployment($context, $user); - - libxml_use_internal_errors(true); - $submissions = $this->importSubmissions(file_get_contents($temporaryFilePath), $deployment); - $templateMgr->assign('submissions', $submissions); - $validationErrors = array_filter(libxml_get_errors(), function($a) { - return $a->level == LIBXML_ERR_ERROR || $a->level == LIBXML_ERR_FATAL; - }); - $templateMgr->assign('validationErrors', $validationErrors); - libxml_clear_errors(); - - // Are there any submissions import errors? - $submissionsErrors = $deployment->getProcessedObjectsErrors(ASSOC_TYPE_SUBMISSION); - if (!empty($submissionsErrors)) { - $templateMgr->assign('submissionsErrors', $submissionsErrors); - } - // Are there any submissions import warnings? - $submissionsWarnings = $deployment->getProcessedObjectsWarnings(ASSOC_TYPE_SUBMISSION); - if (!empty($submissionsWarnings)) { - $templateMgr->assign('submissionsWarnings', $submissionsWarnings); - } - // If there are any submissions or validation errors - // delete imported submissions. - if (!empty($submissionsErrors) || !empty($validationErrors)) { - // remove all imported submissions - $deployment->removeImportedObjects(ASSOC_TYPE_SUBMISSION); - } - // Display the results - $json = new JSONMessage(true, $templateMgr->fetch($this->getTemplateResource('results.tpl'))); - header('Content-Type: application/json'); - return $json->getString(); - case 'export': - $exportXml = $this->exportSubmissions( - (array) $request->getUserVar('selectedSubmissions'), - $request->getContext(), - $request->getUser() - ); - import('lib.pkp.classes.file.FileManager'); - $fileManager = new FileManager(); - $exportFileName = $this->getExportFileName($this->getExportPath(), 'monographs', $context, '.xml'); - $fileManager->writeFile($exportFileName, $exportXml); - $fileManager->downloadByPath($exportFileName); - $fileManager->deleteByPath($exportFileName); - break; - default: - $dispatcher = $request->getDispatcher(); - $dispatcher->handle404(); - } - } - - /** - * Get the XML for a set of submissions. - * @param $submissionIds array Array of submission IDs - * @param $context Context - * @param $user User - * @param $opts array - * @return string XML contents representing the supplied submission IDs. - */ - function exportSubmissions($submissionIds, $context, $user, $opts = array()) { - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); /* @var $submissionDao SubmissionDAO */ - $filterDao = DAORegistry::getDAO('FilterDAO'); /* @var $filterDao FilterDAO */ - $nativeExportFilters = $filterDao->getObjectsByGroup('monograph=>native-xml'); - assert(count($nativeExportFilters) == 1); // Assert only a single serialization filter - $exportFilter = array_shift($nativeExportFilters); - $exportFilter->setDeployment(new NativeImportExportDeployment($context, $user)); - $submissions = array(); - foreach ($submissionIds as $submissionId) { - $submission = $submissionDao->getById($submissionId, $context->getId()); - if ($submission) $submissions[] = $submission; - } - libxml_use_internal_errors(true); - $exportFilter->setOpts($opts); - $submissionXml = $exportFilter->execute($submissions, true); - $xml = $submissionXml->saveXml(); - $errors = array_filter(libxml_get_errors(), function($a) { - return $a->level == LIBXML_ERR_ERROR || $a->level == LIBXML_ERR_FATAL; - }); - if (!empty($errors)) { - $this->displayXMLValidationErrors($errors, $xml); - } - return $xml; - } - - /** - * Get the XML for a set of submissions. - * @param $importXml string XML contents to import - * @param $deployment PKPImportExportDeployment - * @return array Set of imported submissions - */ - function importSubmissions($importXml, $deployment) { - $filterDao = DAORegistry::getDAO('FilterDAO'); /* @var $filterDao FilterDAO */ - $nativeImportFilters = $filterDao->getObjectsByGroup('native-xml=>monograph'); - assert(count($nativeImportFilters) == 1); // Assert only a single unserialization filter - $importFilter = array_shift($nativeImportFilters); - $importFilter->setDeployment($deployment); - return $importFilter->execute($importXml); - } - - /** - * @copydoc ImportExportPlugin::executeCLI - */ - function executeCLI($scriptName, &$args) { - $opts = $this->parseOpts($args, ['no-embed', 'use-file-urls']); - $command = array_shift($args); - $xmlFile = array_shift($args); - $pressPath = array_shift($args); - - AppLocale::requireComponents(LOCALE_COMPONENT_APP_MANAGER, LOCALE_COMPONENT_PKP_MANAGER, LOCALE_COMPONENT_PKP_SUBMISSION); - $pressDao = DAORegistry::getDAO('PressDAO'); - $userDao = DAORegistry::getDAO('UserDAO'); - $press = $pressDao->getByPath($pressPath); - - if (!$press) { - if ($pressPath != '') { - echo __('plugins.importexport.common.cliError') . "\n"; - echo __('plugins.importexport.common.error.unknownPress', array('pressPath' => $pressPath)) . "\n\n"; - } - $this->usage($scriptName); - return; - } - - if ($xmlFile && $this->isRelativePath($xmlFile)) { - $xmlFile = PWD . '/' . $xmlFile; - } - - switch ($command) { - case 'import': - $userName = array_shift($args); - $user = $userDao->getByUsername($userName); - - if (!$user) { - if ($userName != '') { - echo __('plugins.importexport.common.cliError') . "\n"; - echo __('plugins.importexport.native.error.unknownUser', array('userName' => $userName)) . "\n\n"; - } - $this->usage($scriptName); - return; - } - - if (!file_exists($xmlFile)) { - echo __('plugins.importexport.common.cliError') . "\n"; - echo __('plugins.importexport.common.export.error.inputFileNotReadable', array('param' => $xmlFile)) . "\n\n"; - $this->usage($scriptName); - return; - } - - $request = Application::get()->getRequest(); - // Set global user - if (!$request->getUser()) { - Registry::set('user', $user); - } - // Set global context - if (!$request->getContext()) { - HookRegistry::register('Router::getRequestedContextPaths', function (string $hook, array $args) use ($press): bool { - $args[0] = [$press->getPath()]; - return false; - }); - $router = new PageRouter(); - $router->setApplication(Application::get()); - $request->setRouter($router); - } - - $xmlString = file_get_contents($xmlFile); - $document = new DOMDocument(); - $document->loadXml($xmlString); - $deployment = new NativeImportExportDeployment($press, $user); - $deployment->setImportPath(dirname($xmlFile)); - $content = $this->importSubmissions($xmlString, $deployment); - $validationErrors = array_filter(libxml_get_errors(), function($a) { - return $a->level == LIBXML_ERR_ERROR || $a->level == LIBXML_ERR_FATAL; - }); - - // Are there any import warnings? Display them. - $errorTypes = array( - ASSOC_TYPE_SUBMISSION => 'submission.submission', - ASSOC_TYPE_SECTION => 'section.section', - ); - foreach ($errorTypes as $assocType => $localeKey) { - $foundWarnings = $deployment->getProcessedObjectsWarnings($assocType); - if (!empty($foundWarnings)) { - echo __('plugins.importexport.common.warningsEncountered') . "\n"; - $i = 0; - foreach ($foundWarnings as $foundWarningMessages) { - if (count($foundWarningMessages) > 0) { - echo ++$i . '.' . __($localeKey) . "\n"; - foreach ($foundWarningMessages as $foundWarningMessage) { - echo '- ' . $foundWarningMessage . "\n"; - } - } - } - } - } - - // Are there any import errors? Display them. - $foundErrors = false; - foreach ($errorTypes as $assocType => $localeKey) { - $currentErrors = $deployment->getProcessedObjectsErrors($assocType); - if (!empty($currentErrors)) { - echo __('plugins.importexport.common.errorsOccured') . "\n"; - $i = 0; - foreach ($currentErrors as $currentErrorMessages) { - if (count($currentErrorMessages) > 0) { - echo ++$i . '.' . __($localeKey) . "\n"; - foreach ($currentErrorMessages as $currentErrorMessage) { - echo '- ' . $currentErrorMessage . "\n"; - } - } - } - $foundErrors = true; - } - } - // If there are any data or validation errors - // delete imported objects. - if ($foundErrors || !empty($validationErrors)) { - // remove all imported issues and submissions - foreach (array_keys($errorTypes) as $assocType) { - $deployment->removeImportedObjects($assocType); - } - echo __('plugins.importexport.common.validationErrors') . "\n"; - $i = 0; - foreach ($validationErrors as $validationError) { - echo ++$i . '. Line: ' . $validationError->line . ' Column: ' . $validationError->column . ' > ' . $validationError->message . "\n"; - } - } - return; - case 'export': - $outputDir = dirname($xmlFile); - if (!is_writable($outputDir) || (file_exists($xmlFile) && !is_writable($xmlFile))) { - echo __('plugins.importexport.common.cliError') . "\n"; - echo __('plugins.importexport.common.export.error.outputFileNotWritable', array('param' => $xmlFile)) . "\n\n"; - $this->usage($scriptName); - return; - } - if ($xmlFile != '') switch (array_shift($args)) { - case 'monograph': - case 'monographs': - file_put_contents($xmlFile, $this->exportSubmissions( - $args, - $press, - null, - $opts - )); - return; - } - break; - } - $this->usage($scriptName); - } - - /** - * @copydoc ImportExportPlugin::usage - */ - function usage($scriptName) { - fatalError('Not implemented.'); - } - - /** - * Pull out getopt style long options. - * @param &$args array - * #param $optCodes array - */ - function parseOpts(&$args, $optCodes) { - $newArgs = []; - $opts = []; - $sticky = null; - foreach ($args as $arg) { - if ($sticky) { - $opts[$sticky] = $arg; - $sticky = null; - continue; - } - if (substr($arg, 0, 2) != '--') { - $newArgs[] = $arg; - continue; - } - $opt = substr($arg, 2); - if (in_array($opt, $optCodes)) { - $opts[$opt] = true; - continue; - } - if (in_array($opt . ":", $optCodes)) { - $sticky = $opt; - continue; - } - } - $args = $newArgs; - return $opts; - } -} diff --git a/plugins/importexport/native/NativeImportExportPlugin.php b/plugins/importexport/native/NativeImportExportPlugin.php new file mode 100644 index 00000000000..34f795bc982 --- /dev/null +++ b/plugins/importexport/native/NativeImportExportPlugin.php @@ -0,0 +1,79 @@ +getContext(); + $user = $request->getUser(); + $deployment = new NativeImportExportDeployment($context, $user); + + $this->setDeployment($deployment); + + parent::display($args, $request); + + if ($this->isResultManaged) { + if ($this->result) { + return $this->result; + } + + return false; + } + + switch ($this->opType) { + default: + $dispatcher = $request->getDispatcher(); + $dispatcher->handle404(); + } + } + + /** + * @see ImportExportPlugin::getImportFilter + */ + public function getImportFilter($xmlFile) + { + $filter = 'native-xml=>monograph'; + + $xmlString = file_get_contents($xmlFile); + + return [$filter, $xmlString]; + } + + /** + * @see ImportExportPlugin::getExportFilter + */ + public function getExportFilter($exportType) + { + $filter = false; + if ($exportType == 'exportSubmissions') { + $filter = 'monograph=>native-xml'; + } + + return $filter; + } + + /** + * @see ImportExportPlugin::getAppSpecificDeployment + */ + public function getAppSpecificDeployment($journal, $user) + { + return new NativeImportExportDeployment($journal, $user); + } +} diff --git a/plugins/importexport/native/Onix30ExportDeployment.inc.php b/plugins/importexport/native/Onix30ExportDeployment.inc.php deleted file mode 120000 index 41cabf58358..00000000000 --- a/plugins/importexport/native/Onix30ExportDeployment.inc.php +++ /dev/null @@ -1 +0,0 @@ -../onix30/Onix30ExportDeployment.inc.php \ No newline at end of file diff --git a/plugins/importexport/native/filter/AuthorNativeXmlFilter.inc.php b/plugins/importexport/native/filter/AuthorNativeXmlFilter.inc.php deleted file mode 100644 index c0403a65d85..00000000000 --- a/plugins/importexport/native/filter/AuthorNativeXmlFilter.inc.php +++ /dev/null @@ -1,30 +0,0 @@ -setDisplayName('Native XML chapter export'); - parent::__construct($filterGroup); - } - - - // - // Implement template methods from PersistableFilter - // - /** - * @copydoc PersistableFilter::getClassName() - */ - function getClassName() { - return 'plugins.importexport.native.filter.ChapterNativeXmlFilter'; - } - - - // - // Implement template methods from Filter - // - /** - * @see Filter::process() - * @param $chapters Chapter[] - * @return DOMDocument - */ - function &process(&$chapters) { - // Create the XML document - $doc = new DOMDocument('1.0'); - $doc->preserveWhiteSpace = false; - $doc->formatOutput = true; - $deployment = $this->getDeployment(); - - // Multiple authors; wrap in a element - $rootNode = $doc->createElementNS($deployment->getNamespace(), 'chapters'); - foreach ($chapters as $chapter) { - $rootNode->appendChild($this->createChapterNode($doc, $chapter)); - } - $doc->appendChild($rootNode); - $rootNode->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'); - $rootNode->setAttribute('xsi:schemaLocation', $deployment->getNamespace() . ' ' . $deployment->getSchemaFilename()); - - return $doc; - } - - // - // PKPAuthor conversion functions - // - /** - * Create and return an author node. - * @param $doc DOMDocument - * @param $chapter Chapter - * @return DOMElement - */ - function createChapterNode($doc, $chapter) { - $deployment = $this->getDeployment(); - $context = $deployment->getContext(); - - $publication = $deployment->getPublication(); - - // Create the entity node - $entityNode = $doc->createElementNS($deployment->getNamespace(), 'chapter'); - $entityNode->setAttribute('seq', $chapter->getSequence()); - $entityNode->setAttribute('id', $chapter->getId()); - - // Add metadata - $this->createLocalizedNodes($doc, $entityNode, 'title', $chapter->getData('title')); - $this->createLocalizedNodes($doc, $entityNode, 'abstract', $chapter->getData('abstract')); - $this->createLocalizedNodes($doc, $entityNode, 'subtitle', $chapter->getData('subtitle')); - - $entityNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'pages', $chapter->getData('pages'))); - - // Add authors - $chapterAuthorDao = DAORegistry::getDAO('ChapterAuthorDAO'); /** @var $chapterAuthorDao ChapterAuthorDAO */ - $chapterAuthors = $chapterAuthorDao->getAuthors($chapter->getData('publicationId'), $chapter->getId())->toArray(); - - foreach ($chapterAuthors as $chapterAuthor) { - $entityNode->appendChild($this->createChapterAuthorNode($doc, $chapterAuthor)); - } - - $submissionFiles = Services::get('submissionFile')->getMany(['submissionIds' => [$publication->getData('submissionId')]]); - foreach ($submissionFiles as $submissionFile) { /** @var $submissionFile SubmissionFile */ - if ($submissionFile->getData('chapterId') == $chapter->getId()) { - $referenceFileNode = $doc->createElementNS($deployment->getNamespace(), 'submission_file_ref'); - $referenceFileNode->setAttribute('id', $submissionFile->getId()); - $entityNode->appendChild($referenceFileNode); - } - } - - return $entityNode; - } - - /** - * Create and return an author node. - * @param $doc DOMDocument - * @param $chapter ChapterAuthor - * @return DOMElement - */ - function createChapterAuthorNode($doc, $chapterAuthor) { - $deployment = $this->getDeployment(); - $context = $deployment->getContext(); - - // Create the entity node - $entityNode = $doc->createElementNS($deployment->getNamespace(), 'chapterAuthor'); - $entityNode->setAttribute('author_id', $chapterAuthor->getId()); - $entityNode->setAttribute('primary_contact', $chapterAuthor->getData('primaryContact')); - $entityNode->setAttribute('seq', $chapterAuthor->getData('seq')); - - return $entityNode; - } -} - - diff --git a/plugins/importexport/native/filter/ChapterNativeXmlFilter.php b/plugins/importexport/native/filter/ChapterNativeXmlFilter.php new file mode 100644 index 00000000000..f1dfd203130 --- /dev/null +++ b/plugins/importexport/native/filter/ChapterNativeXmlFilter.php @@ -0,0 +1,197 @@ +setDisplayName('Native XML chapter export'); + parent::__construct($filterGroup); + } + + // + // Implement template methods from Filter + // + /** + * @see Filter::process() + * + * @param \APP\monograph\Chapter[] $chapters + * + * @return \DOMDocument + */ + public function &process(&$chapters) + { + // Create the XML document + $doc = new DOMDocument('1.0', 'utf-8'); + $doc->preserveWhiteSpace = false; + $doc->formatOutput = true; + $deployment = $this->getDeployment(); + + // Multiple authors; wrap in a element + $rootNode = $doc->createElementNS($deployment->getNamespace(), 'chapters'); + foreach ($chapters as $chapter) { + $rootNode->appendChild($this->createChapterNode($doc, $chapter)); + } + $doc->appendChild($rootNode); + $rootNode->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'); + $rootNode->setAttribute('xsi:schemaLocation', $deployment->getNamespace() . ' ' . $deployment->getSchemaFilename()); + + return $doc; + } + + // + // PKPAuthor conversion functions + // + /** + * Create and return an author node. + * + * @param \DOMDocument $doc + * @param \APP\monograph\Chapter $chapter + * + * @return \DOMElement + */ + public function createChapterNode($doc, $chapter) + { + $deployment = $this->getDeployment(); + $context = $deployment->getContext(); + + $publication = $deployment->getPublication(); + + // Create the entity node + $entityNode = $doc->createElementNS($deployment->getNamespace(), 'chapter'); + $entityNode->setAttribute('seq', $chapter->getSequence()); + $entityNode->setAttribute('id', $chapter->getId()); + + $this->addIdentifiers($doc, $entityNode, $chapter); + + // Add metadata + $this->createLocalizedNodes($doc, $entityNode, 'title', $chapter->getData('title')); + $this->createLocalizedNodes($doc, $entityNode, 'abstract', $chapter->getData('abstract')); + $this->createLocalizedNodes($doc, $entityNode, 'subtitle', $chapter->getData('subtitle')); + + $entityNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'pages', $chapter->getData('pages'))); + + // Add authors + $chapterAuthors = Repo::author()->getCollector() + ->filterByChapterIds([$chapter->getId()]) + ->filterByPublicationIds([$chapter->getData('publicationId')]) + ->getMany(); + + foreach ($chapterAuthors as $chapterAuthor) { + $entityNode->appendChild($this->createChapterAuthorNode($doc, $chapterAuthor)); + } + + $submissionFiles = Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$publication->getData('submissionId')]) + ->getMany(); + + foreach ($submissionFiles as $submissionFile) { /** @var SubmissionFile $submissionFile */ + if ($submissionFile->getData('chapterId') == $chapter->getId()) { + $referenceFileNode = $doc->createElementNS($deployment->getNamespace(), 'submission_file_ref'); + $referenceFileNode->setAttribute('id', $submissionFile->getId()); + $entityNode->appendChild($referenceFileNode); + } + } + + return $entityNode; + } + + /** + * Create and return an author node. + * + * @param \DOMDocument $doc + * + * @return \DOMElement + */ + public function createChapterAuthorNode($doc, $chapterAuthor) + { + $deployment = $this->getDeployment(); + $context = $deployment->getContext(); + + // Create the entity node + $entityNode = $doc->createElementNS($deployment->getNamespace(), 'chapterAuthor'); + $entityNode->setAttribute('author_id', $chapterAuthor->getId()); + $entityNode->setAttribute('seq', $chapterAuthor->getData('seq')); + + return $entityNode; + } + + /** + * Add a single pub ID element for a given plugin to the document. + * + * @param \DOMDocument $doc + * @param \DOMElement $entityNode + * @param \APP\monograph\Chapter $entity + * + * @return \DOMElement|null + */ + public function addPubIdentifier($doc, $entityNode, $entity, $pubIdType) + { + $pubId = $entity->getStoredPubId($pubIdType); + if ($pubId) { + $deployment = $this->getDeployment(); + $entityNode->appendChild($node = $doc->createElementNS($deployment->getNamespace(), 'id', htmlspecialchars($pubId, ENT_COMPAT, 'UTF-8'))); + $node->setAttribute('type', $pubIdType); + $node->setAttribute('advice', 'update'); + return $node; + } + return null; + } + + /** + * Create and add identifier nodes to a submission node. + * + * @param \DOMDocument $doc + * @param \DOMElement $entityNode + * @param \APP\monograph\Chapter $entity + */ + public function addIdentifiers($doc, $entityNode, $entity) + { + $deployment = $this->getDeployment(); + + // Add internal ID + $entityNode->appendChild($node = $doc->createElementNS($deployment->getNamespace(), 'id', $entity->getId())); + $node->setAttribute('type', 'internal'); + $node->setAttribute('advice', 'ignore'); + + // Add public ID + if ($pubId = $entity->getStoredPubId('publisher-id')) { + $entityNode->appendChild($node = $doc->createElementNS($deployment->getNamespace(), 'id', htmlspecialchars($pubId, ENT_COMPAT, 'UTF-8'))); + $node->setAttribute('type', 'public'); + $node->setAttribute('advice', 'update'); + } + + // Add pub IDs by plugin + $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true, $deployment->getContext()->getId()); + foreach ($pubIdPlugins as $pubIdPlugin) { + $this->addPubIdentifier($doc, $entityNode, $entity, $pubIdPlugin->getPubIdType()); + } + // Also add DOIs + $this->addPubIdentifier($doc, $entityNode, $entity, 'doi'); + } +} diff --git a/plugins/importexport/native/filter/MonographFileNativeXmlFilter.inc.php b/plugins/importexport/native/filter/MonographFileNativeXmlFilter.inc.php deleted file mode 100644 index 3a073760a21..00000000000 --- a/plugins/importexport/native/filter/MonographFileNativeXmlFilter.inc.php +++ /dev/null @@ -1,66 +0,0 @@ -getDeployment(); - $submissionFileNode = parent::createSubmissionFileNode($doc, $submissionFile); - - if ($submissionFile->getData('directSalesPrice')) { - $submissionFileNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'directSalesPrice', $submissionFile->getData('directSalesPrice'))); - } - - if ($submissionFile->getData('salesType')) { - $submissionFileNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'salesType', $submissionFile->getData('salesType'))); - } - - // FIXME: is permission file ID implemented? - // FIXME: is chapter ID implemented? - // FIXME: is contact author ID implemented? - - return $submissionFileNode; - } - - /** - * Get the submission file element name - */ - function getSubmissionFileElementName() { - return 'submission_file'; - } -} - - diff --git a/plugins/importexport/native/filter/MonographFileNativeXmlFilter.php b/plugins/importexport/native/filter/MonographFileNativeXmlFilter.php new file mode 100644 index 00000000000..f1f8b96fdcd --- /dev/null +++ b/plugins/importexport/native/filter/MonographFileNativeXmlFilter.php @@ -0,0 +1,56 @@ +getDeployment(); + $submissionFileNode = parent::createSubmissionFileNode($doc, $submissionFile); + + if ($submissionFile->getData('directSalesPrice')) { + $submissionFileNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'directSalesPrice', $submissionFile->getData('directSalesPrice'))); + } + + if ($submissionFile->getData('salesType')) { + $submissionFileNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'salesType', $submissionFile->getData('salesType'))); + } + + // FIXME: is permission file ID implemented? + // FIXME: is chapter ID implemented? + // FIXME: is contact author ID implemented? + + return $submissionFileNode; + } + + /** + * Get the submission file element name + */ + public function getSubmissionFileElementName() + { + return 'submission_file'; + } +} diff --git a/plugins/importexport/native/filter/MonographNativeXmlFilter.inc.php b/plugins/importexport/native/filter/MonographNativeXmlFilter.inc.php deleted file mode 100644 index fa2604a1923..00000000000 --- a/plugins/importexport/native/filter/MonographNativeXmlFilter.inc.php +++ /dev/null @@ -1,59 +0,0 @@ -native-xml'; - } - - // - // Submission conversion functions - // - /** - * Create and return a submission node. - * @param $doc DOMDocument - * @param $submission Submission - * @return DOMElement - */ - function createSubmissionNode($doc, $submission) { - $submissionNode = parent::createSubmissionNode($doc, $submission); - - $submissionNode->setAttribute('work_type', $submission->getData('workType')); - - return $submissionNode; - } -} - - diff --git a/plugins/importexport/native/filter/MonographNativeXmlFilter.php b/plugins/importexport/native/filter/MonographNativeXmlFilter.php new file mode 100644 index 00000000000..6143761d76f --- /dev/null +++ b/plugins/importexport/native/filter/MonographNativeXmlFilter.php @@ -0,0 +1,49 @@ +native-xml'; + } + + // + // Submission conversion functions + // + /** + * Create and return a submission node. + * + * @param \DOMDocument $doc + * @param \APP\submission\Submission $submission + * + * @return \DOMElement + */ + public function createSubmissionNode($doc, $submission) + { + $submissionNode = parent::createSubmissionNode($doc, $submission); + $submissionNode->setAttribute('work_type', $submission->getData('workType')); + return $submissionNode; + } +} diff --git a/plugins/importexport/native/filter/MonographONIX30XmlFilter.inc.php b/plugins/importexport/native/filter/MonographONIX30XmlFilter.inc.php deleted file mode 120000 index fa7374e3726..00000000000 --- a/plugins/importexport/native/filter/MonographONIX30XmlFilter.inc.php +++ /dev/null @@ -1 +0,0 @@ -../../onix30/filter/MonographONIX30XmlFilter.inc.php \ No newline at end of file diff --git a/plugins/importexport/native/filter/NativeXmlAuthorFilter.inc.php b/plugins/importexport/native/filter/NativeXmlAuthorFilter.inc.php deleted file mode 100644 index a1308527ee4..00000000000 --- a/plugins/importexport/native/filter/NativeXmlAuthorFilter.inc.php +++ /dev/null @@ -1,39 +0,0 @@ -setDisplayName('Native XML Chapter import'); - parent::__construct($filterGroup); - } - - // - // Implement template methods from NativeImportFilter - // - /** - * Return the plural element name - * @return string - */ - function getPluralElementName() { - return 'chapters'; - } - - /** - * Get the singular element name - * @return string - */ - function getSingularElementName() { - return 'chapter'; - } - - // - // Implement template methods from PersistableFilter - // - /** - * @copydoc PersistableFilter::getClassName() - */ - function getClassName() { - return 'plugins.importexport.native.filter.NativeXmlChapterFilter'; - } - - - /** - * Handle a chapter element - * @param $node DOMElement - * @return Chapter - */ - function handleElement($node) { - $deployment = $this->getDeployment(); - $context = $deployment->getContext(); - - $publication = $deployment->getPublication(); - assert(is_a($publication, 'Publication')); - - // Create the data object - $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var $chapterDao ChapterDAO */ - - $chapter = $chapterDao->newDataObject(); - - $chapter->setData('publicationId', $publication->getId()); - $chapter->setSequence($node->getAttribute('seq')); - - $chapterId = $chapterDao->insertChapter($chapter); - $chapter->setData('id', $chapterId); - - // Handle metadata in subelements - for ($n = $node->firstChild; $n !== null; $n=$n->nextSibling) if (is_a($n, 'DOMElement')) switch($n->tagName) { - case 'title': - $locale = $n->getAttribute('locale'); - if (empty($locale)) $locale = $context->getLocale(); - $chapter->setData('title', $n->textContent, $locale); - break; - case 'abstract': - $locale = $n->getAttribute('locale'); - if (empty($locale)) $locale = $context->getLocale(); - $chapter->setData('abstract', $n->textContent, $locale); - break; - case 'subtitle': - $locale = $n->getAttribute('locale'); - if (empty($locale)) $locale = $context->getLocale(); - $chapter->setData('subtitle', $n->textContent, $locale); - break; - case 'pages': - $chapter->setData('pages', $n->textContent); - break; - case 'chapterAuthor': - $this->parseAuthor($n, $chapter); - break; - case 'submission_file_ref': - $this->parseSubmissionFileRef($n, $chapter); - break; - } - - $chapterDao->updateObject($chapter); - - return $chapter; - } - - /** - * Parse an author and add it to the chapter. - * @param $n DOMElement - * @param $chapter Chapter - */ - function parseAuthor($n, $chapter) { - $deployment = $this->getDeployment(); - - $chapterAuthorDao = DAORegistry::getDAO('ChapterAuthorDAO'); /** @var $chapterAuthorDao ChapterAuthorDAO */ - - $authorId = $deployment->getAuthorDBId($n->getAttribute('author_id')); - if (!$authorId) { - $deployment->addError(ASSOC_TYPE_CHAPTER, $chapter->getId(), 'Author with ID "' . $n->getAttribute('author_id') . '" was not found'); - } - $primaryContact = $n->getAttribute('primary_contact'); - $seq = $n->getAttribute('seq'); - - $chapterAuthorDao->insertChapterAuthor($authorId, $chapter->getId(), $primaryContact, $seq); - } - - /** - * Parse an author and add it to the chapter. - * @param $n DOMElement - * @param $chapter Chapter - */ - function parseSubmissionFileRef($n, $chapter) { - $deployment = $this->getDeployment(); - - $fileId = $n->getAttribute('id'); - - $sourceFileId = $deployment->getSubmissionFileDBId($fileId); - if ($sourceFileId) { - $submissionFile = Services::get('submissionFile')->get($sourceFileId); - - if ($submissionFile) { - $submissionFile->setData('chapterId', $chapter->getId()); - - $submissionFileDao = DAORegistry::getDAO('SubmissionFileDAO'); /** @var $submissionFileDao SubmissionFileDAO */ - $submissionFileDao->updateObject($submissionFile); - } - } - } -} - - diff --git a/plugins/importexport/native/filter/NativeXmlChapterFilter.php b/plugins/importexport/native/filter/NativeXmlChapterFilter.php new file mode 100644 index 00000000000..9949c650461 --- /dev/null +++ b/plugins/importexport/native/filter/NativeXmlChapterFilter.php @@ -0,0 +1,225 @@ +setDisplayName('Native XML Chapter import'); + parent::__construct($filterGroup); + } + + // + // Implement template methods from NativeImportFilter + // + /** + * Return the plural element name + * + * @return string + */ + public function getPluralElementName() + { + return 'chapters'; + } + + /** + * Get the singular element name + * + * @return string + */ + public function getSingularElementName() + { + return 'chapter'; + } + + /** + * Handle a chapter element + * + * @param DOMElement $node + * + * @return Chapter + */ + public function handleElement($node) + { + $deployment = $this->getDeployment(); + $context = $deployment->getContext(); + + $publication = $deployment->getPublication(); + assert($publication instanceof \APP\publication\Publication); + + // Create the data object + $chapterDao = DAORegistry::getDAO('ChapterDAO'); /** @var ChapterDAO $chapterDao */ + + $chapter = $chapterDao->newDataObject(); + + $chapter->setData('publicationId', $publication->getId()); + $chapter->setSequence($node->getAttribute('seq')); + + $chapterId = $chapterDao->insertChapter($chapter); + $chapter->setData('id', $chapterId); + + // Handle metadata in sub-elements + for ($n = $node->firstChild; $n !== null; $n = $n->nextSibling) { + if ($n instanceof DOMElement) { + switch ($n->tagName) { + case 'id': + $this->parseIdentifier($n, $chapter); + break; + case 'title': + $locale = $n->getAttribute('locale'); + if (empty($locale)) { + $locale = $context->getPrimaryLocale(); + } + $chapter->setData('title', $n->textContent, $locale); + break; + case 'abstract': + $locale = $n->getAttribute('locale'); + if (empty($locale)) { + $locale = $context->getPrimaryLocale(); + } + $chapter->setData('abstract', $n->textContent, $locale); + break; + case 'subtitle': + $locale = $n->getAttribute('locale'); + if (empty($locale)) { + $locale = $context->getPrimaryLocale(); + } + $chapter->setData('subtitle', $n->textContent, $locale); + break; + case 'pages': + $chapter->setData('pages', $n->textContent); + break; + case 'chapterAuthor': + $this->parseAuthor($n, $chapter); + break; + case 'submission_file_ref': + $this->parseSubmissionFileRef($n, $chapter); + break; + } + } + } + + $chapterDao->updateObject($chapter); + + return $chapter; + } + + /** + * Parse an author and add it to the chapter. + * + * @param \DOMElement $n + * @param \APP\monograph\Chapter $chapter + */ + public function parseAuthor($n, $chapter) + { + $deployment = $this->getDeployment(); + + $authorId = $deployment->getAuthorDBId($n->getAttribute('author_id')); + if (!$authorId) { + $deployment->addError(Application::ASSOC_TYPE_CHAPTER, $chapter->getId(), 'Author with ID "' . $n->getAttribute('author_id') . '" was not found'); + } + $seq = $n->getAttribute('seq'); + + Repo::author()->addToChapter($authorId, $chapter->getId(), false, $seq); + } + + /** + * Parse an author and add it to the chapter. + * + * @param \DOMElement $n + * @param \APP\monograph\Chapter $chapter + */ + public function parseSubmissionFileRef($n, $chapter) + { + $deployment = $this->getDeployment(); + + $fileId = $n->getAttribute('id'); + + $sourceFileId = $deployment->getSubmissionFileDBId($fileId); + if (!$sourceFileId) { + return; + } + + $submissionFile = Repo::submissionFile()->get($sourceFileId); + + if (!$submissionFile) { + return; + } + /** @var DAO */ + $dao = Repo::submissionFile()->dao; + $dao->updateChapterFiles( + [$submissionFile->getId()], + $chapter->getId() + ); + } + + /** + * Parse an identifier node and set up the chapter object accordingly + * + * @param \DOMElement $element + */ + public function parseIdentifier($element, $chapter) + { + $deployment = $this->getDeployment(); + $context = $deployment->getContext(); + $advice = $element->getAttribute('advice'); + switch ($element->getAttribute('type')) { + case 'internal': + break; + case 'public': + if ($advice == 'update') { + $chapter->setData('pub-id::publisher-id', $element->textContent); + } + break; + default: + if ($advice == 'update') { + if ($element->getAttribute('type') == 'doi') { + $doiFound = Repo::doi()->getCollector()->filterByIdentifier($element->textContent)->getMany()->first(); + if ($doiFound) { + $chapter->setData('doiId', $doiFound->getId()); + } else { + $newDoiObject = Repo::doi()->newDataObject( + [ + 'doi' => $element->textContent, + 'contextId' => $context->getId() + ] + ); + $doiId = Repo::doi()->add($newDoiObject); + $chapter->setData('doiId', $doiId); + } + } else { + PluginRegistry::loadCategory('pubIds', true, $context->getId()); + $chapter->setData('pub-id::' . $element->getAttribute('type'), $element->textContent); + } + } + } + } +} diff --git a/plugins/importexport/native/filter/NativeXmlMonographFileFilter.inc.php b/plugins/importexport/native/filter/NativeXmlMonographFileFilter.inc.php deleted file mode 100644 index a2ea25730b4..00000000000 --- a/plugins/importexport/native/filter/NativeXmlMonographFileFilter.inc.php +++ /dev/null @@ -1,39 +0,0 @@ -submissionMetadataChanged($submission); - $monographSearchIndex->submissionFilesChanged($submission); - } - $monographSearchIndex->submissionChangesFinished(); - - return $importedObjects; - } - - /** - * Populate the submission object from the node - * @param $submission Submission - * @param $node DOMElement - * @return Submission - */ - function populateObject($submission, $node) { - $deployment = $this->getDeployment(); - - $workType = $node->getAttribute('work_type'); - $submission->setData('workType', $workType); - - return parent::populateObject($submission, $node); - } - - /** - * Handle an element whose parent is the submission element. - * @param $n DOMElement - * @param $submission Submission - */ - function handleChildElement($n, $submission) { - switch ($n->tagName) { - case 'publication': - $this->parsePublication($n, $submission); - break; - default: - parent::handleChildElement($n, $submission); - } - } - - /** - * Get the import filter for a given element. - * @param $elementName string Name of XML element - * @return Filter - */ - function getImportFilter($elementName) { - $deployment = $this->getDeployment(); - $submission = $deployment->getSubmission(); - $importClass = null; // Scrutinizer - switch ($elementName) { - case 'submission_file': - $importClass='SubmissionFile'; - break; - case 'publication': - $importClass='Publication'; - break; - default: - $deployment->addError(ASSOC_TYPE_SUBMISSION, $submission->getId(), __('plugins.importexport.common.error.unknownElement', array('param' => $elementName))); - } - // Caps on class name for consistency with imports, whose filter - // group names are generated implicitly. - $filterDao = DAORegistry::getDAO('FilterDAO'); /* @var $filterDao FilterDAO */ - $importFilters = $filterDao->getObjectsByGroup('native-xml=>' . $importClass); - $importFilter = array_shift($importFilters); - return $importFilter; - } - - /** - * Parse a publication format and add it to the submission. - * @param $n DOMElement - * @param $submission Submission - */ - function parsePublication($n, $submission) { - $importFilter = $this->getImportFilter($n->tagName); - assert($importFilter); // There should be a filter - - $existingDeployment = $this->getDeployment(); - $request = Application::get()->getRequest(); - - $importFilter->setDeployment($existingDeployment); - $formatDoc = new DOMDocument(); - $formatDoc->appendChild($formatDoc->importNode($n, true)); - return $importFilter->execute($formatDoc); - } -} - - diff --git a/plugins/importexport/native/filter/NativeXmlMonographFilter.php b/plugins/importexport/native/filter/NativeXmlMonographFilter.php new file mode 100644 index 00000000000..c8ece00c789 --- /dev/null +++ b/plugins/importexport/native/filter/NativeXmlMonographFilter.php @@ -0,0 +1,68 @@ +getAttribute('work_type'); + $submission->setData('workType', $workType); + + return parent::populateObject($submission, $node); + } + + /** + * Get the import filter for a given element. + * + * @param string $elementName Name of XML element + * + * @return Filter + */ + public function getImportFilter($elementName) + { + $deployment = $this->getDeployment(); + $submission = $deployment->getSubmission(); + $importClass = null; // Scrutinizer + switch ($elementName) { + case 'submission_file': + $importClass = 'SubmissionFile'; + break; + case 'publication': + $importClass = 'Publication'; + break; + default: + $deployment->addError(Application::ASSOC_TYPE_SUBMISSION, $submission->getId(), __('plugins.importexport.common.error.unknownElement', ['param' => $elementName])); + } + // Caps on class name for consistency with imports, whose filter + // group names are generated implicitly. + $currentFilter = PKPImportExportFilter::getFilter('native-xml=>' . $importClass, $this->getDeployment()); + return $currentFilter; + } +} diff --git a/plugins/importexport/native/filter/NativeXmlPublicationFilter.inc.php b/plugins/importexport/native/filter/NativeXmlPublicationFilter.inc.php deleted file mode 100644 index cfba4a0d63c..00000000000 --- a/plugins/importexport/native/filter/NativeXmlPublicationFilter.inc.php +++ /dev/null @@ -1,264 +0,0 @@ -getDeployment(); - $context = $deployment->getContext(); - - $seriesPath = $node->getAttribute('series'); - $seriesPosition = $node->getAttribute('series_position'); - if ($seriesPath !== '') { - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /** @var $seriesDao SeriesDAO */ - $series = $seriesDao->getByPath($seriesPath, $context->getId()); - if (!$series) { - $deployment->addError(ASSOC_TYPE_PUBLICATION, $publication->getId(), __('plugins.importexport.native.error.unknownSeries', array('param' => $seriesPath))); - } else { - $publication->setData('seriesId', $series->getId()); - $publication->setData('seriesPosition', $seriesPosition); - } - } - - return parent::populateObject($publication, $node); - } - - /** - * Handle an element whose parent is the submission element. - * @param $n DOMElement - * @param $publication Publication - */ - function handleChildElement($n, $publication) { - switch ($n->tagName) { - case 'publication_format': - $this->parsePublicationFormat($n, $publication); - break; - case 'chapters': - $this->parseChapters($n, $publication); - break; - case 'covers': - $this->parsePublicationCovers($this, $n, $publication); - break; - default: - parent::handleChildElement($n, $publication); - } - } - - /** - * @inheritDoc - */ - function handleElement($node) - { - $publication = parent::handleElement($node); - - // Ensure the cover's thumbnail file is generated - if ($coverImage = $publication->getData('coverImage')) { - $params = ['coverImage' => $coverImage]; - $publication = Services::get('publication')->edit($publication, $params, Application::get()->getRequest()); - } - - return $publication; - } - - /** - * Get the import filter for a given element. - * @param $elementName string Name of XML element - * @return Filter - */ - function getImportFilter($elementName) { - $deployment = $this->getDeployment(); - $publication = $deployment->getPublication(); - $importClass = null; // Scrutinizer - switch ($elementName) { - case 'publication_format': - $importClass='PublicationFormat'; - break; - case 'chapter': - $importClass='Chapter'; - break; - default: - $deployment->addError(ASSOC_TYPE_PUBLICATION, $publication->getId(), __('plugins.importexport.common.error.unknownElement', array('param' => $elementName))); - } - // Caps on class name for consistency with imports, whose filter - // group names are generated implicitly. - $filterDao = DAORegistry::getDAO('FilterDAO'); /* @var $filterDao FilterDAO */ - $importFilters = $filterDao->getObjectsByGroup('native-xml=>' . $importClass); - $importFilter = array_shift($importFilters); - return $importFilter; - } - - /** - * Parse a publication format and add it to the submission. - * @param $n DOMElement - * @param $publication Publication - */ - function parsePublicationFormat($n, $publication) { - $importFilter = $this->getImportFilter($n->tagName); - assert($importFilter); // There should be a filter - - $existingDeployment = $this->getDeployment(); - $request = Application::get()->getRequest(); - - $onixDeployment = new Onix30ExportDeployment($request->getContext(), $request->getUser()); - $onixDeployment->setPublication($existingDeployment->getPublication()); - $onixDeployment->setFileDBIds($existingDeployment->getFileDBIds()); - $onixDeployment->setAuthorDBIds($existingDeployment->getAuthorDBIds()); - $importFilter->setDeployment($existingDeployment); - $formatDoc = new DOMDocument(); - $formatDoc->appendChild($formatDoc->importNode($n, true)); - return $importFilter->execute($formatDoc); - } - - /** - * Parse a publication format and add it to the submission. - * @param $n DOMElement - * @param $publication Publication - */ - function parseChapters($node, $publication) { - $deployment = $this->getDeployment(); - - $chapters = array(); - - for ($n = $node->firstChild; $n !== null; $n=$n->nextSibling) { - if (is_a($n, 'DOMElement')) { - switch ($n->tagName) { - case 'chapter': - $chapter = $this->parseChapter($n, $publication); - $chapters[] = $chapter; - break; - default: - $deployment->addWarning(ASSOC_TYPE_PUBLICATION, $publication->getId(), __('plugins.importexport.common.error.unknownElement', array('param' => $n->tagName))); - } - } - } - - $publication->setData('chapters', $chapters); - } - - /** - * Parse a publication format and add it to the submission. - * @param $n DOMElement - * @param $publication Publication - */ - function parseChapter($n, $publication) { - $importFilter = $this->getImportFilter($n->tagName); - assert($importFilter); // There should be a filter - - $existingDeployment = $this->getDeployment(); - $request = Application::get()->getRequest(); - - $importFilter->setDeployment($existingDeployment); - $chapterDoc = new DOMDocument(); - $chapterDoc->appendChild($chapterDoc->importNode($n, true)); - return $importFilter->execute($chapterDoc); - } - - /** - * Parse out the object covers. - * @param $filter NativeExportFilter - * @param $node DOMElement - * @param $object Publication - */ - function parsePublicationCovers($filter, $node, $object) { - $deployment = $filter->getDeployment(); - - $coverImages = array(); - - for ($n = $node->firstChild; $n !== null; $n=$n->nextSibling) { - if (is_a($n, 'DOMElement')) { - switch ($n->tagName) { - case 'cover': - $coverImage = $this->parsePublicationCover($filter, $n, $object); - $coverImages[key($coverImage)] = reset($coverImage); - break; - default: - $deployment->addWarning(ASSOC_TYPE_PUBLICATION, $object->getId(), __('plugins.importexport.common.error.unknownElement', array('param' => $n->tagName))); - } - } - } - - $object->setData('coverImage', $coverImages); - } - - /** - * Parse out the cover and store it in the object. - * @param $filter NativeExportFilter - * @param $node DOMElement - * @param $object Publication - */ - function parsePublicationCover($filter, $node, $object) { - $deployment = $filter->getDeployment(); - - $context = $deployment->getContext(); - - $locale = $node->getAttribute('locale'); - if (empty($locale)) $locale = $context->getPrimaryLocale(); - - $coverImagelocale = array(); - $coverImage = array(); - - for ($n = $node->firstChild; $n !== null; $n=$n->nextSibling) { - if (is_a($n, 'DOMElement')) { - switch ($n->tagName) { - case 'cover_image': - $coverImage['uploadName'] = uniqid() . '-' . basename($n->textContent); - break; - case 'cover_image_alt_text': - $coverImage['altText'] = $n->textContent; - break; - case 'embed': - import('classes.file.PublicFileManager'); - $publicFileManager = new PublicFileManager(); - $filePath = $publicFileManager->getContextFilesPath($context->getId()) . '/' . $coverImage['uploadName']; - file_put_contents($filePath, base64_decode($n->textContent)); - break; - default: - $deployment->addWarning(ASSOC_TYPE_PUBLICATION, $object->getId(), __('plugins.importexport.common.error.unknownElement', array('param' => $n->tagName))); - } - } - } - - $coverImagelocale[$locale] = $coverImage; - - return $coverImagelocale; - } - - /** - * Get the representation export filter group name - * @return string - */ - function getRepresentationExportFilterGroupName() { - return 'publication-format=>native-xml'; - } -} - - diff --git a/plugins/importexport/native/filter/NativeXmlPublicationFilter.php b/plugins/importexport/native/filter/NativeXmlPublicationFilter.php new file mode 100644 index 00000000000..d3e86b91381 --- /dev/null +++ b/plugins/importexport/native/filter/NativeXmlPublicationFilter.php @@ -0,0 +1,348 @@ +getAttribute('series_position'); + $publication->setData('seriesPosition', $seriesPosition); + + return parent::populateObject($publication, $node); + } + + /** + * Handle an element whose parent is the submission element. + * + * @param \DOMElement $n + * @param \APP\publication\Publication $publication + */ + public function handleChildElement($n, $publication) + { + switch ($n->tagName) { + case 'publication_format': + $this->parsePublicationFormat($n, $publication); + break; + case 'chapters': + $this->parseChapters($n, $publication); + break; + case 'covers': + $nativeFilterHelper = new PKPNativeFilterHelper(); + $nativeFilterHelper->parsePublicationCovers($this, $n, $publication); + break; + case 'series': + $this->parseSeries($this, $n, $publication); + break; + default: + parent::handleChildElement($n, $publication); + } + } + + /** + * Get the import filter for a given element. + * + * @param string $elementName Name of XML element + * + * @return Filter + */ + public function getImportFilter($elementName) + { + $deployment = $this->getDeployment(); + $publication = $deployment->getPublication(); + $importClass = null; + switch ($elementName) { + case 'publication_format': + $importClass = 'PublicationFormat'; + break; + case 'chapter': + $importClass = 'Chapter'; + break; + default: + $deployment->addError(Application::ASSOC_TYPE_PUBLICATION, $publication->getId(), __('plugins.importexport.common.error.unknownElement', ['param' => $elementName])); + } + // Caps on class name for consistency with imports, whose filter + // group names are generated implicitly. + + $filterDao = DAORegistry::getDAO('FilterDAO'); /** @var FilterDAO $filterDao */ + $importFilters = $filterDao->getObjectsByGroup('native-xml=>' . $importClass); + $importFilter = array_shift($importFilters); + return $importFilter; + } + + /** + * Parse a publication format and add it to the submission. + * + * @param \DOMElement $n + * @param \APP\publication\Publication $publication + */ + public function parsePublicationFormat($n, $publication) + { + $importFilter = $this->getImportFilter($n->tagName) ?? throw new Exception("Filter not found for \"{$n->tagName}\""); + + $existingDeployment = $this->getDeployment(); + $request = Application::get()->getRequest(); + + $onixDeployment = new Onix30ExportDeployment($request->getContext(), $request->getUser()); + $onixDeployment->setPublication($existingDeployment->getPublication()); + $onixDeployment->setFileDBIds($existingDeployment->getFileDBIds()); + $onixDeployment->setAuthorDBIds($existingDeployment->getAuthorDBIds()); + $importFilter->setDeployment($existingDeployment); + $formatDoc = new DOMDocument('1.0', 'utf-8'); + $formatDoc->appendChild($formatDoc->importNode($n, true)); + return $importFilter->execute($formatDoc); + } + + /** + * Parse a publication format and add it to the submission. + * + * @param \APP\publication\Publication $publication + */ + public function parseChapters($node, $publication) + { + $deployment = $this->getDeployment(); + + $chapters = []; + + for ($n = $node->firstChild; $n !== null; $n = $n->nextSibling) { + if ($n instanceof \DOMElement) { + switch ($n->tagName) { + case 'chapter': + $chapter = $this->parseChapter($n, $publication); + $chapters[] = $chapter; + break; + default: + $deployment->addWarning(Application::ASSOC_TYPE_PUBLICATION, $publication->getId(), __('plugins.importexport.common.error.unknownElement', ['param' => $n->tagName])); + } + } + } + + $publication->setData('chapters', $chapters); + } + + /** + * Parse a publication format and add it to the submission. + * + * @param \DOMElement $n + * @param \APP\publication\Publication $publication + */ + public function parseChapter($n, $publication) + { + $importFilter = $this->getImportFilter($n->tagName) ?? throw new Exception("Filter not found for \"{$n->tagName}\""); + + $existingDeployment = $this->getDeployment(); + $request = Application::get()->getRequest(); + + $importFilter->setDeployment($existingDeployment); + $chapterDoc = new DOMDocument('1.0', 'utf-8'); + $chapterDoc->appendChild($chapterDoc->importNode($n, true)); + return $importFilter->execute($chapterDoc); + } + + /** + * Parse out the object covers. + * + * @param \PKP\plugins\importexport\native\filter\NativeExportFilter $filter + * @param \DOMElement $node + * @param \APP\publication\Publication $object + */ + public function parsePublicationCovers($filter, $node, $object) + { + $deployment = $filter->getDeployment(); + + $coverImages = []; + + for ($n = $node->firstChild; $n !== null; $n = $n->nextSibling) { + if ($n instanceof \DOMElement) { + switch ($n->tagName) { + case 'cover': + $coverImage = $this->parsePublicationCover($filter, $n, $object); + $coverImages[key($coverImage)] = reset($coverImage); + break; + default: + $deployment->addWarning(Application::ASSOC_TYPE_PUBLICATION, $object->getId(), __('plugins.importexport.common.error.unknownElement', ['param' => $n->tagName])); + } + } + } + + $object->setData('coverImage', $coverImages); + } + + /** + * Parse out the cover and store it in the object. + * + * @param \PKP\plugins\importexport\native\filter\NativeExportFilter $filter + * @param \DOMElement $node + * @param \APP\publication\Publication $object + */ + public function parsePublicationCover($filter, $node, $object) + { + $deployment = $filter->getDeployment(); + + $context = $deployment->getContext(); + + $locale = $node->getAttribute('locale'); + if (empty($locale)) { + $locale = $context->getPrimaryLocale(); + } + + $coverImagelocale = []; + $coverImage = []; + + for ($n = $node->firstChild; $n !== null; $n = $n->nextSibling) { + if ($n instanceof \DOMElement) { + switch ($n->tagName) { + case 'cover_image': + $coverImage['uploadName'] = uniqid() . '-' . basename(preg_replace( + "/[^a-z0-9\.\-]+/", + '', + str_replace( + [' ', '_', ':'], + '-', + strtolower($n->textContent) + ) + )); + break; + case 'cover_image_alt_text': + $coverImage['altText'] = $n->textContent; + break; + case 'embed': + if (!isset($coverImage['uploadName'])) { + $deployment->addWarning(Application::ASSOC_TYPE_PUBLICATION, $object->getId(), __('plugins.importexport.common.error.coverImageNameUnspecified')); + break; + } + + $publicFileManager = new PublicFileManager(); + $filePath = $publicFileManager->getContextFilesPath($context->getId()) . '/' . $coverImage['uploadName']; + $allowedFileTypes = ['gif', 'jpg', 'png', 'webp']; + $extension = pathinfo(strtolower($filePath), PATHINFO_EXTENSION); + if (!in_array($extension, $allowedFileTypes)) { + $deployment->addWarning(Application::ASSOC_TYPE_PUBLICATION, $object->getId(), __('plugins.importexport.common.error.invalidFileExtension')); + break; + } + file_put_contents($filePath, base64_decode($n->textContent)); + break; + default: + $deployment->addWarning(Application::ASSOC_TYPE_PUBLICATION, $object->getId(), __('plugins.importexport.common.error.unknownElement', ['param' => $n->tagName])); + } + } + } + + $coverImagelocale[$locale] = $coverImage; + + return $coverImagelocale; + } + + /** + * Parse out the cover and store it in the object. + * + * @param NativeXmlPublicationFilter $filter + * @param \DOMElement $node + * @param \APP\publication\Publication $object + */ + public function parseSeries($filter, $node, $object) + { + $deployment = $filter->getDeployment(); + + $context = $deployment->getContext(); /** @var Context $context */ + + $series = Repo::section()->newDataObject(); + $seriesPath = null; + for ($n = $node->firstChild; $n !== null; $n = $n->nextSibling) { + if ($n instanceof \DOMElement) { + switch ($n->tagName) { + case 'path': + $seriesPath = $n->textContent; + $series->setData('path', $seriesPath); + break; + case 'title': + $locale = $n->getAttribute('locale'); + if (empty($locale)) { + $locale = $context->getPrimaryLocale(); + } + $series->setData('title', $n->textContent, $locale); + break; + case 'description': + $locale = $n->getAttribute('locale'); + if (empty($locale)) { + $locale = $context->getPrimaryLocale(); + } + $series->setData('description', $n->textContent, $locale); + break; + case 'subtitle': + $locale = $n->getAttribute('locale'); + if (empty($locale)) { + $locale = $context->getPrimaryLocale(); + } + $series->setData('subtitle', $n->textContent, $locale); + break; + case 'printIssn': + $series->setData('printIssn', $n->textContent); + break; + case 'onlineIssn': + $series->setData('onlineIssn', $n->textContent); + break; + default: + $deployment->addWarning(Application::ASSOC_TYPE_PUBLICATION, $object->getId(), __('plugins.importexport.common.error.unknownElement', ['param' => $n->tagName])); + } + } + } + + $seriesId = null; + if ($series->getData('path')) { + $existingSeries = Repo::section()->getByPath($seriesPath, $context->getId()); + if (!$existingSeries) { + $deployment->addWarning(Application::ASSOC_TYPE_PUBLICATION, $object->getId(), __('plugins.importexport.native.error.unknownSeries', ['param' => $seriesPath])); + + $series->setData('contextId', $context->getId()); + $seriesId = Repo::section()->add($series); + } else { + $seriesId = $existingSeries->getId(); + } + } + + $object->setData('seriesId', $seriesId); + } + + /** + * Get the representation export filter group name + * + * @return string + */ + public function getRepresentationExportFilterGroupName() + { + return 'publication-format=>native-xml'; + } +} diff --git a/plugins/importexport/native/filter/NativeXmlPublicationFormatFilter.inc.php b/plugins/importexport/native/filter/NativeXmlPublicationFormatFilter.inc.php deleted file mode 100644 index 99acbe7ded1..00000000000 --- a/plugins/importexport/native/filter/NativeXmlPublicationFormatFilter.inc.php +++ /dev/null @@ -1,434 +0,0 @@ -getDeployment(); - $context = $deployment->getContext(); - $submission = $deployment->getSubmission(); - assert(is_a($submission, 'Submission')); - - $representation = parent::handleElement($node); - - if ($node->getAttribute('approved') == 'true') $representation->setIsApproved(true); - if ($node->getAttribute('available') == 'true') $representation->setIsAvailable(true); - if ($node->getAttribute('physical_format') == 'true') $representation->setPhysicalFormat(true); - if ($node->getAttribute('entry_key')) $representation->setEntryKey($node->getAttribute('entry_key')); - - - $representationDao = Application::getRepresentationDAO(); - $representationDao->insertObject($representation); - - // Handle metadata in subelements. Do this after the insertObject() call because it - // creates other DataObjects which depend on a representation id. - for ($n = $node->firstChild; $n !== null; $n=$n->nextSibling) if (is_a($n, 'DOMElement')) switch($n->tagName) { - case 'Product': $this->_processProductNode($n, $this->getDeployment(), $representation); break; - case 'submission_file_ref': $this->_processFileRef($n, $deployment, $representation); break; - default: - } - - // Update the object. - $representationDao->updateObject($representation); - - return $representation; - } - - /** - * Process the self_file_ref node found inside the publication_format node. - * @param $node DOMElement - * @param $deployment Onix30ExportDeployment - * @param $representation PublicationFormat - */ - function _processFileRef($node, $deployment, &$representation) { - $fileId = $node->getAttribute('id'); - $DBId = $deployment->getSubmissionFileDBId($fileId); - if ($DBId) { - // Update the submission file. - $submissionFileDao = DAORegistry::getDAO('SubmissionFileDAO'); /* @var $submissionFileDao SubmissionFileDAO */ - $submissionFile = Services::get('submissionFile')->get($DBId); - $submissionFile->setAssocType(ASSOC_TYPE_REPRESENTATION); - $submissionFile->setData('assocId', $representation->getId()); - $submissionFileDao->updateObject($submissionFile); - } - } - - /** - * Process the Product node found inside the publication_format node. There may be many of these. - * @param $node DOMElement - * @param $deployment PKPImportExportDeployment - * @param $representation PublicationFormat - */ - function _processProductNode($node, $deployment, &$representation) { - - $request = Application::get()->getRequest(); - $onixDeployment = new Onix30ExportDeployment($request->getContext(), $request->getUser()); - - $submission = $deployment->getSubmission(); - - $representation->setProductCompositionCode($this->_extractTextFromNode($node, $onixDeployment, 'ProductComposition')); - $representation->setEntryKey($this->_extractTextFromNode($node, $onixDeployment, 'ProductForm')); - $representation->setProductFormDetailCode($this->_extractTextFromNode($node, $onixDeployment, 'ProductFormDetail')); - $representation->setImprint($this->_extractTextFromNode($node, $onixDeployment, 'ImprintName')); - $representation->setTechnicalProtectionCode($this->_extractTextFromNode($node, $onixDeployment, 'EpubTechnicalProtection')); - $representation->setCountryManufactureCode($this->_extractTextFromNode($node, $onixDeployment, 'CountryOfManufacture')); - $this->_extractMeasureContent($node, $onixDeployment, $representation); - $this->_extractExtentContent($node, $onixDeployment, $representation); - - if ($submission) { - $submission->setData('audience', $this->_extractTextFromNode($node, $onixDeployment, 'AudienceCodeType')); - $submission->setData('audienceRangeQualifier', $this->_extractTextFromNode($node, $onixDeployment, 'AudienceRangeQualifier')); - $this->_extractAudienceRangeContent($node, $onixDeployment, $submission); - - DAORegistry::getDAO('SubmissionDAO')->updateObject($submission); - } - - // Things below here require a publication format id since they are dependent on the PublicationFormat. - - // Extract ProductIdentifier elements. - $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'ProductIdentifier'); - - if ($nodeList->length > 0) { - $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /* @var $identificationCodeDao IdentificationCodeDAO */ - for ($i = 0 ; $i < $nodeList->length ; $i++) { - $n = $nodeList->item($i); - $identificationCode = $identificationCodeDao->newDataObject(); - $identificationCode->setPublicationFormatId($representation->getId()); - for ($o = $n->firstChild; $o !== null; $o=$o->nextSibling) if (is_a($o, 'DOMElement')) switch($o->tagName) { - case 'onix:ProductIDType': $identificationCode->setCode($o->textContent); break; - case 'onix:IDValue': $identificationCode->setValue($o->textContent); break; - } - // if this is a DOI, use the DOI-plugin structure instead. - if ($identificationCode->getCode() == '06') { // DOI code - $representation->setStoredPubId('doi', $identificationCode->getValue()); - } else { - $identificationCodeDao->insertObject($identificationCode); - } - - unset($identificationCode); - } - } - - // Extract PublishingDate elements. - $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'PublishingDate'); - - if ($nodeList->length > 0) { - $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /* @var $publicationDateDao PublicationDateDAO */ - for ($i = 0 ; $i < $nodeList->length ; $i++) { - $n = $nodeList->item($i); - $date = $publicationDateDao->newDataObject(); - $date->setPublicationFormatId($representation->getId()); - for ($o = $n->firstChild; $o !== null; $o=$o->nextSibling) if (is_a($o, 'DOMElement')) switch($o->tagName) { - case 'onix:PublishingDateRole': $date->setRole($o->textContent); break; - case 'onix:Date': - $date->setDate($o->textContent); - $date->setDateFormat($o->getAttribute('dateformat')); - break; - } - - $publicationDateDao->insertObject($date); - unset($date); - } - } - - // Extract SalesRights elements. - $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'SalesRights'); - if ($nodeList->length > 0) { - $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /* @var $salesRightsDao SalesRightsDAO */ - for ($i = 0 ; $i < $nodeList->length ; $i ++) { - $salesRights = $salesRightsDao->newDataObject(); - $salesRights->setPublicationFormatId($representation->getId()); - $salesRightsNode = $nodeList->item($i); - $salesRightsROW = $this->_extractTextFromNode($salesRightsNode, $onixDeployment, 'ROWSalesRightsType'); - if ($salesRightsROW) { - $salesRights->setROWSetting(true); - $salesRights->setType($salesRightsROW); - } else { - // Not a 'rest of world' sales rights entry. Parse the Territory elements as well. - $salesRights->setType($this->_extractTextFromNode($salesRightsNode, $onixDeployment, 'SalesRightsType')); - $salesRights->setROWSetting(false); - $territoryNodeList = $salesRightsNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Territory'); - assert($territoryNodeList->length == 1); - $territoryNode = $territoryNodeList->item(0); - for ($o = $territoryNode->firstChild; $o !== null; $o=$o->nextSibling) if (is_a($o, 'DOMElement')) switch($o->tagName) { - case 'onix:RegionsIncluded': $salesRights->setRegionsIncluded(preg_split('/\s+/', $o->textContent)); break; - case 'onix:CountriesIncluded': $salesRights->setCountriesIncluded(preg_split('/\s+/', $o->textContent)); break; - case 'onix:RegionsExcluded': $salesRights->setRegionsExcluded(preg_split('/\s+/', $o->textContent)); break; - case 'onix:CountriesExcluded': $salesRights->setCountriesExcluded(preg_split('/\s+/', $o->textContent)); break; - } - } - $salesRightsDao->insertObject($salesRights); - unset($salesRights); - } - } - - // Extract ProductSupply elements. Contains Markets, Pricing, Suppliers, and Sales Agents. - $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'ProductSupply'); - if ($nodeList->length > 0) { - $marketDao = DAORegistry::getDAO('MarketDAO'); /* @var $marketDao MarketDAO */ - $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /* @var $representativeDao RepresentativeDAO */ - - for ($i = 0 ; $i < $nodeList->length ; $i ++) { - $productSupplyNode = $nodeList->item($i); - $market = $marketDao->newDataObject(); - $market->setPublicationFormatId($representation->getId()); - // parse out the Territory for this market. - $territoryNodeList = $productSupplyNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Territory'); - assert($territoryNodeList->length == 1); - $territoryNode = $territoryNodeList->item(0); - for ($o = $territoryNode->firstChild; $o !== null; $o=$o->nextSibling) if (is_a($o, 'DOMElement')) switch($o->tagName) { - case 'onix:RegionsIncluded': $market->setRegionsIncluded(preg_split('/\s+/', $o->textContent)); break; - case 'onix:CountriesIncluded': $market->setCountriesIncluded(preg_split('/\s+/', $o->textContent)); break; - case 'onix:RegionsExcluded': $market->setRegionsExcluded(preg_split('/\s+/', $o->textContent)); break; - case 'onix:CountriesExcluded': $market->setCountriesExcluded(preg_split('/\s+/', $o->textContent)); break; - } - - // Market date information. - $market->setDate($this->_extractTextFromNode($productSupplyNode, $onixDeployment, 'Date')); - $market->setDateRole($this->_extractTextFromNode($productSupplyNode, $onixDeployment, 'MarketDateRole')); - $market->setDateFormat($this->_extractTextFromNode($productSupplyNode, $onixDeployment, 'DateFormat')); - - // A product supply may have an Agent. Look for the PublisherRepresentative element and parse if found. - $publisherRepNodeList = $productSupplyNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'PublisherRepresentative'); - if ($publisherRepNodeList->length == 1) { - $publisherRepNode = $publisherRepNodeList->item(0); - $representative = $representativeDao->newDataObject(); - $representative->setMonographId($deployment->getSubmission()->getId()); - $representative->setRole($this->_extractTextFromNode($publisherRepNode, $onixDeployment, 'AgentRole')); - $representative->setName($this->_extractTextFromNode($publisherRepNode, $onixDeployment, 'AgentName')); - $representative->setUrl($this->_extractTextFromNode($publisherRepNode, $onixDeployment, 'WebsiteLink')); - - // to prevent duplicate Agent creation, check to see if this agent already exists. If it does, use it instead of creating a new one. - $existingAgents = $representativeDao->getAgentsByMonographId($deployment->getSubmission()->getId()); - $foundAgent = false; - while ($agent = $existingAgents->next()) { - if ($agent->getRole() == $representative->getRole() && $agent->getName() == $representative->getName() && $agent->getUrl() == $representative->getUrl()) { - $market->setAgentId($agent->getId()); - $foundAgent = true; - break; - } - } - if (!$foundAgent) { - $market->setAgentId($representativeDao->insertObject($representative)); - } - } - - // Now look for a SupplyDetail element, for the Supplier information. - $supplierNodeList = $productSupplyNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Supplier'); - if ($supplierNodeList->length == 1) { - $supplierNode = $supplierNodeList->item(0); - $representative = $representativeDao->newDataObject(); - $representative->setMonographId($deployment->getSubmission()->getId()); - $representative->setRole($this->_extractTextFromNode($supplierNode, $onixDeployment, 'SupplierRole')); - $representative->setName($this->_extractTextFromNode($supplierNode, $onixDeployment, 'SupplierName')); - $representative->setPhone($this->_extractTextFromNode($supplierNode, $onixDeployment, 'TelephoneNumber')); - $representative->setEmail($this->_extractTextFromNode($supplierNode, $onixDeployment, 'EmailAddress')); - $representative->setUrl($this->_extractTextFromNode($supplierNode, $onixDeployment, 'WebsiteLink')); - $representative->setIsSupplier(true); - - // Again, to prevent duplicate Supplier creation, check to see if this rep already exists. If it does, use it instead of creating a new one. - $existingSuppliers = $representativeDao->getSuppliersByMonographId($deployment->getSubmission()->getId()); - $foundSupplier = false; - while ($supplier = $existingSuppliers->next()) { - if ($supplier->getRole() == $representative->getRole() && $supplier->getName() == $representative->getName() && - $supplier->getUrl() == $representative->getUrl() && - $supplier->getPhone() == $representative-> getPhone() && $supplier->getEmail() == $representative->getEmail()) { - $market->setSupplierId($supplier->getId()); - $foundSupplier = true; - break; - } - } - if (!$foundSupplier) { - $market->setSupplierId($representativeDao->insertObject($representative)); - } - - $priceNodeList = $productSupplyNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Price'); - if ($priceNodeList->length == 1) { - $priceNode = $priceNodeList->item(0); - $market->setPriceTypeCode($this->_extractTextFromNode($priceNode, $onixDeployment, 'PriceType')); - $market->setDiscount($this->_extractTextFromNode($priceNode, $onixDeployment, 'DiscountPercent')); - $market->setPrice($this->_extractTextFromNode($priceNode, $onixDeployment, 'PriceAmount')); - $market->setTaxTypeCode($this->_extractTextFromNode($priceNode, $onixDeployment, 'TaxType')); - $market->setTaxRateCode($this->_extractTextFromNode($priceNode, $onixDeployment, 'TaxRateCode')); - $market->setCurrencyCode($this->_extractTextFromNode($priceNode, $onixDeployment, 'CurrencyCode')); - } - } - - // Extract Pricing information for this format. - $representation->setReturnableIndicatorCode($this->_extractTextFromNode($supplierNode, $onixDeployment, 'ReturnsCode')); - $representation->getProductAvailabilityCode($this->_extractTextFromNode($supplierNode, $onixDeployment, 'ProductAvailability')); - - $marketDao->insertObject($market); - } - } - } - - /** - * Extracts the text content from a node. - * @param $node DOMElement - * @param $onixDeployment Onix30ExportDeployment - * @param $nodeName String the name of the node. - * @return String - */ - function _extractTextFromNode($node, $onixDeployment, $nodeName) { - $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), $nodeName); - if ($nodeList->length == 1) { - $n = $nodeList->item(0); - return $n->textContent; - } else - return null; - } - - /** - * Extracts the elements of the Extent nodes. - * @param $node DOMElement - * @param $onixDeployment Onix30ExportDeployment - * @param PublicationFormat $representation - */ - function _extractExtentContent($node, $onixDeployment, &$representation) { - $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Extent'); - - for ($i = 0 ; $i < $nodeList->length ; $i++) { - $n = $nodeList->item($i); - $extentType = $this->_extractTextFromNode($node, $onixDeployment, 'ExtentType'); - $extentValue = $this->_extractTextFromNode($node, $onixDeployment, 'ExtentValue'); - - switch ($extentType) { - case '08': // Digital - $representation->setFileSize($extentValue); - break; - case '00': // Physical, front matter. - $representation->setFrontMatter($extentValue); - break; - case '04': // Physical, back matter. - $representation->setBackMatter($extentValue); - break; - } - } - } - - /** - * Extracts the elements of the Measure nodes. - * @param $node DOMElement - * @param $onixDeployment Onix30ExportDeployment - * @param PublicationFormat $representation - */ - function _extractMeasureContent($node, $onixDeployment, &$representation) { - $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Measure'); - for ($i = 0 ; $i < $nodeList->length ; $i++) { - $n = $nodeList->item($i); - $measureType = $this->_extractTextFromNode($node, $onixDeployment, 'MeasureType'); - $measurement = $this->_extractTextFromNode($node, $onixDeployment, 'Measurement'); - $measureUnitCode = $this->_extractTextFromNode($node, $onixDeployment, 'MeasureUnitCode'); - - // '01' => 'Height', '02' => 'Width', '03' => 'Thickness', '08' => 'Weight' - switch ($measureType) { - case '01': - $representation->setHeight($measurement); - $representation->setHeightUnitCode($measureUnitCode); - break; - case '02': - $representation->setWidth($measurement); - $representation->setWidthUnitCode($measureUnitCode); - break; - case '03': - $representation->setThickness($measurement); - $representation->setThicknessUnitCode($measureUnitCode); - break; - case '08': - $representation->setWeight($measurement); - $representation->setWeightUnitCode($measureUnitCode); - break; - } - } - } - - /** - * Extracts the AudienceRange elements, which vary depending on whether - * a submission defines a specific range, or a to/from pair. - * @param $node DOMElement - * @param $onixDeployment Onix30ExportDeployment - * @param Submission $submission - */ - function _extractAudienceRangeContent($node, $onixDeployment, &$submission) { - $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'AudienceRange'); - for ($i = 0 ; $i < $nodeList->length ; $i++) { - $n = $nodeList->item($i); - $audienceRangePrecision = 0; - for ($o = $n->firstChild; $o !== null; $o=$o->nextSibling) if (is_a($o, 'DOMElement')) switch($o->tagName) { - case 'AudienceRangePrecision': $audienceRangePrevision = $o->textContent; break; - case 'AudienceRangeValue': - switch ($audienceRangePrecision) { - case '01': - $submission->setData('audienceRangeExact', $o->textContent); - break; - case '03': - $submission->setData('audienceRangeTo', $o->textContent); - break; - case '04': - $submission->setData('audienceRangeFrom', $o->textContent); - break; - } - break; - } - } - } -} - - diff --git a/plugins/importexport/native/filter/NativeXmlPublicationFormatFilter.php b/plugins/importexport/native/filter/NativeXmlPublicationFormatFilter.php new file mode 100644 index 00000000000..a1133a3c450 --- /dev/null +++ b/plugins/importexport/native/filter/NativeXmlPublicationFormatFilter.php @@ -0,0 +1,497 @@ +getDeployment(); + $submission = $deployment->getSubmission(); + assert($submission instanceof Submission); + /** @var PublicationFormat */ + $representation = parent::handleElement($node); + + if ($node->getAttribute('approved') == 'true') { + $representation->setIsApproved(true); + } + if ($node->getAttribute('available') == 'true') { + $representation->setIsAvailable(true); + } + if ($node->getAttribute('physical_format') == 'true') { + $representation->setPhysicalFormat(true); + } + if ($node->getAttribute('entry_key')) { + $representation->setEntryKey($node->getAttribute('entry_key')); + } + + $representationDao = Application::getRepresentationDAO(); + $representationDao->insertObject($representation); + + // Handle metadata in sub-elements. Do this after the insertObject() call because it + // creates other DataObjects which depend on a representation id. + for ($n = $node->firstChild; $n !== null; $n = $n->nextSibling) { + if ($n instanceof DOMElement) { + switch ($n->tagName) { + case 'Product': $this->_processProductNode($n, $this->getDeployment(), $representation); + break; + case 'submission_file_ref': $this->_processFileRef($n, $deployment, $representation); + break; + default: + } + } + } + + // Update the object. + $representationDao->updateObject($representation); + + return $representation; + } + + /** + * Process the self_file_ref node found inside the publication_format node. + * + * @param DOMElement $node + * @param \APP\plugins\importexport\onix30\Onix30ExportDeployment $deployment + * @param \APP\publicationFormat\PublicationFormat $representation + */ + public function _processFileRef($node, $deployment, &$representation) + { + $fileId = $node->getAttribute('id'); + $DBId = $deployment->getSubmissionFileDBId($fileId); + if ($DBId) { + // Update the submission file. + $submissionFile = Repo::submissionFile()->get($DBId); + + $params = [ + 'assocType' => PKPApplication::ASSOC_TYPE_REPRESENTATION, + 'assocId' => $representation->getId(), + ]; + + Repo::submissionFile()->edit($submissionFile, $params); + } + } + + /** + * Process the Product node found inside the publication_format node. There may be many of these. + * + * @param DOMElement $node + * @param \PKP\plugins\importexport\PKPImportExportDeployment $deployment + * @param \APP\publicationFormat\PublicationFormat $representation + */ + public function _processProductNode($node, $deployment, &$representation) + { + $request = Application::get()->getRequest(); + $onixDeployment = new Onix30ExportDeployment($request->getContext(), $request->getUser()); + + $submission = $deployment->getSubmission(); + + $representation->setProductCompositionCode($this->_extractTextFromNode($node, $onixDeployment, 'ProductComposition')); + $representation->setEntryKey($this->_extractTextFromNode($node, $onixDeployment, 'ProductForm')); + $representation->setProductFormDetailCode($this->_extractTextFromNode($node, $onixDeployment, 'ProductFormDetail')); + $representation->setImprint($this->_extractTextFromNode($node, $onixDeployment, 'ImprintName')); + $representation->setTechnicalProtectionCode($this->_extractTextFromNode($node, $onixDeployment, 'EpubTechnicalProtection')); + $representation->setCountryManufactureCode($this->_extractTextFromNode($node, $onixDeployment, 'CountryOfManufacture')); + $this->_extractMeasureContent($node, $onixDeployment, $representation); + $this->_extractExtentContent($node, $onixDeployment, $representation); + + if ($submission) { + $submission->setData('audience', $this->_extractTextFromNode($node, $onixDeployment, 'AudienceCodeType')); + $submission->setData('audienceRangeQualifier', $this->_extractTextFromNode($node, $onixDeployment, 'AudienceRangeQualifier')); + $this->_extractAudienceRangeContent($node, $onixDeployment, $submission); + + Repo::submission()->dao->update($submission); + } + + // Things below here require a publication format id since they are dependent on the PublicationFormat. + + // Extract ProductIdentifier elements. + $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'ProductIdentifier'); + + if ($nodeList->length > 0) { + $identificationCodeDao = DAORegistry::getDAO('IdentificationCodeDAO'); /** @var IdentificationCodeDAO $identificationCodeDao */ + for ($i = 0 ; $i < $nodeList->length ; $i++) { + $n = $nodeList->item($i); + $identificationCode = $identificationCodeDao->newDataObject(); + $identificationCode->setPublicationFormatId($representation->getId()); + for ($o = $n->firstChild; $o !== null; $o = $o->nextSibling) { + if ($o instanceof DOMElement) { + switch ($o->tagName) { + case 'onix:ProductIDType': $identificationCode->setCode($o->textContent); + break; + case 'onix:IDValue': $identificationCode->setValue($o->textContent); + break; + } + } + } + // if this is a DOI, use the DOI-plugin structure instead. + if ($identificationCode->getCode() == '06') { // DOI code + $representation->setStoredPubId('doi', $identificationCode->getValue()); + } else { + $identificationCodeDao->insertObject($identificationCode); + } + + unset($identificationCode); + } + } + + // Extract PublishingDate elements. + $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'PublishingDate'); + + if ($nodeList->length > 0) { + $publicationDateDao = DAORegistry::getDAO('PublicationDateDAO'); /** @var PublicationDateDAO $publicationDateDao */ + for ($i = 0 ; $i < $nodeList->length ; $i++) { + $n = $nodeList->item($i); + $date = $publicationDateDao->newDataObject(); + $date->setPublicationFormatId($representation->getId()); + for ($o = $n->firstChild; $o !== null; $o = $o->nextSibling) { + if ($o instanceof DOMElement) { + switch ($o->tagName) { + case 'onix:PublishingDateRole': $date->setRole($o->textContent); + break; + case 'onix:Date': + $date->setDate($o->textContent); + $date->setDateFormat($o->getAttribute('dateformat')); + break; + } + } + } + + $publicationDateDao->insertObject($date); + unset($date); + } + } + + // Extract SalesRights elements. + $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'SalesRights'); + if ($nodeList->length > 0) { + $salesRightsDao = DAORegistry::getDAO('SalesRightsDAO'); /** @var SalesRightsDAO $salesRightsDao */ + for ($i = 0 ; $i < $nodeList->length ; $i ++) { + $salesRights = $salesRightsDao->newDataObject(); + $salesRights->setPublicationFormatId($representation->getId()); + /** @var DOMElement */ + $salesRightsNode = $nodeList->item($i); + $salesRightsROW = $this->_extractTextFromNode($salesRightsNode, $onixDeployment, 'ROWSalesRightsType'); + if ($salesRightsROW) { + $salesRights->setROWSetting(true); + $salesRights->setType($salesRightsROW); + } else { + // Not a 'rest of world' sales rights entry. Parse the Territory elements as well. + $salesRights->setType($this->_extractTextFromNode($salesRightsNode, $onixDeployment, 'SalesRightsType')); + $salesRights->setROWSetting(false); + $territoryNodeList = $salesRightsNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Territory'); + assert($territoryNodeList->length == 1); + $territoryNode = $territoryNodeList->item(0); + for ($o = $territoryNode->firstChild; $o !== null; $o = $o->nextSibling) { + if ($o instanceof DOMElement) { + switch ($o->tagName) { + case 'onix:RegionsIncluded': $salesRights->setRegionsIncluded(preg_split('/\s+/', $o->textContent)); + break; + case 'onix:CountriesIncluded': $salesRights->setCountriesIncluded(preg_split('/\s+/', $o->textContent)); + break; + case 'onix:RegionsExcluded': $salesRights->setRegionsExcluded(preg_split('/\s+/', $o->textContent)); + break; + case 'onix:CountriesExcluded': $salesRights->setCountriesExcluded(preg_split('/\s+/', $o->textContent)); + break; + } + } + } + } + $salesRightsDao->insertObject($salesRights); + unset($salesRights); + } + } + + // Extract ProductSupply elements. Contains Markets, Pricing, Suppliers, and Sales Agents. + $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'ProductSupply'); + if ($nodeList->length > 0) { + $marketDao = DAORegistry::getDAO('MarketDAO'); /** @var MarketDAO $marketDao */ + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /** @var RepresentativeDAO $representativeDao */ + + for ($i = 0 ; $i < $nodeList->length ; $i ++) { + /** @var DOMElement */ + $productSupplyNode = $nodeList->item($i); + $market = $marketDao->newDataObject(); + $market->setPublicationFormatId($representation->getId()); + // parse out the Territory for this market. + $territoryNodeList = $productSupplyNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Territory'); + assert($territoryNodeList->length == 1); + $territoryNode = $territoryNodeList->item(0); + for ($o = $territoryNode->firstChild; $o !== null; $o = $o->nextSibling) { + if ($o instanceof DOMElement) { + switch ($o->tagName) { + case 'onix:RegionsIncluded': $market->setRegionsIncluded(preg_split('/\s+/', $o->textContent)); + break; + case 'onix:CountriesIncluded': $market->setCountriesIncluded(preg_split('/\s+/', $o->textContent)); + break; + case 'onix:RegionsExcluded': $market->setRegionsExcluded(preg_split('/\s+/', $o->textContent)); + break; + case 'onix:CountriesExcluded': $market->setCountriesExcluded(preg_split('/\s+/', $o->textContent)); + break; + } + } + } + + // Market date information. + $market->setDate($this->_extractTextFromNode($productSupplyNode, $onixDeployment, 'Date')); + $market->setDateRole($this->_extractTextFromNode($productSupplyNode, $onixDeployment, 'MarketDateRole')); + $market->setDateFormat($this->_extractTextFromNode($productSupplyNode, $onixDeployment, 'DateFormat')); + + // A product supply may have an Agent. Look for the PublisherRepresentative element and parse if found. + $publisherRepNodeList = $productSupplyNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'PublisherRepresentative'); + if ($publisherRepNodeList->length == 1) { + $publisherRepNode = $publisherRepNodeList->item(0); + $representative = $representativeDao->newDataObject(); + $representative->setMonographId($deployment->getSubmission()->getId()); + $representative->setRole($this->_extractTextFromNode($publisherRepNode, $onixDeployment, 'AgentRole')); + $representative->setName($this->_extractTextFromNode($publisherRepNode, $onixDeployment, 'AgentName')); + $representative->setUrl($this->_extractTextFromNode($publisherRepNode, $onixDeployment, 'WebsiteLink')); + + // to prevent duplicate Agent creation, check to see if this agent already exists. If it does, use it instead of creating a new one. + $existingAgents = $representativeDao->getAgentsByMonographId($deployment->getSubmission()->getId()); + $foundAgent = false; + while ($agent = $existingAgents->next()) { + if ($agent->getRole() == $representative->getRole() && $agent->getName() == $representative->getName() && $agent->getUrl() == $representative->getUrl()) { + $market->setAgentId($agent->getId()); + $foundAgent = true; + break; + } + } + if (!$foundAgent) { + $market->setAgentId($representativeDao->insertObject($representative)); + } + } + + // Now look for a SupplyDetail element, for the Supplier information. + $supplierNodeList = $productSupplyNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Supplier'); + if ($supplierNodeList->length == 1) { + $supplierNode = $supplierNodeList->item(0); + $representative = $representativeDao->newDataObject(); + $representative->setMonographId($deployment->getSubmission()->getId()); + $representative->setRole($this->_extractTextFromNode($supplierNode, $onixDeployment, 'SupplierRole')); + $representative->setName($this->_extractTextFromNode($supplierNode, $onixDeployment, 'SupplierName')); + $representative->setPhone($this->_extractTextFromNode($supplierNode, $onixDeployment, 'TelephoneNumber')); + $representative->setEmail($this->_extractTextFromNode($supplierNode, $onixDeployment, 'EmailAddress')); + $representative->setUrl($this->_extractTextFromNode($supplierNode, $onixDeployment, 'WebsiteLink')); + $representative->setIsSupplier(true); + + // Again, to prevent duplicate Supplier creation, check to see if this rep already exists. If it does, use it instead of creating a new one. + $existingSuppliers = $representativeDao->getSuppliersByMonographId($deployment->getSubmission()->getId()); + $foundSupplier = false; + while ($supplier = $existingSuppliers->next()) { + if ($supplier->getRole() == $representative->getRole() && $supplier->getName() == $representative->getName() && + $supplier->getUrl() == $representative->getUrl() && + $supplier->getPhone() == $representative-> getPhone() && $supplier->getEmail() == $representative->getEmail()) { + $market->setSupplierId($supplier->getId()); + $foundSupplier = true; + break; + } + } + if (!$foundSupplier) { + $market->setSupplierId($representativeDao->insertObject($representative)); + } + + $priceNodeList = $productSupplyNode->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Price'); + if ($priceNodeList->length == 1) { + $priceNode = $priceNodeList->item(0); + $market->setPriceTypeCode($this->_extractTextFromNode($priceNode, $onixDeployment, 'PriceType')); + $market->setDiscount($this->_extractTextFromNode($priceNode, $onixDeployment, 'DiscountPercent')); + $market->setPrice($this->_extractTextFromNode($priceNode, $onixDeployment, 'PriceAmount')); + $market->setTaxTypeCode($this->_extractTextFromNode($priceNode, $onixDeployment, 'TaxType')); + $market->setTaxRateCode($this->_extractTextFromNode($priceNode, $onixDeployment, 'TaxRateCode')); + $market->setCurrencyCode($this->_extractTextFromNode($priceNode, $onixDeployment, 'CurrencyCode')); + } + } + + // Extract Pricing information for this format. + $representation->setReturnableIndicatorCode($this->_extractTextFromNode($supplierNode, $onixDeployment, 'ReturnsCode')); + $representation->setProductAvailabilityCode($this->_extractTextFromNode($supplierNode, $onixDeployment, 'ProductAvailability')); + + $marketDao->insertObject($market); + } + } + } + + /** + * Extracts the text content from a node. + * + * @param DOMElement $node + * @param \APP\plugins\importexport\onix30\Onix30ExportDeployment $onixDeployment + * @param string $nodeName the name of the node. + * + * @return string + */ + public function _extractTextFromNode($node, $onixDeployment, $nodeName) + { + $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), $nodeName); + if ($nodeList->length == 1) { + $n = $nodeList->item(0); + return $n->textContent; + } else { + return null; + } + } + + /** + * Extracts the elements of the Extent nodes. + * + * @param DOMElement $node + * @param \APP\plugins\importexport\onix30\Onix30ExportDeployment $onixDeployment + * @param \APP\publicationFormat\PublicationFormat $representation + */ + public function _extractExtentContent($node, $onixDeployment, &$representation) + { + $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Extent'); + + for ($i = 0 ; $i < $nodeList->length ; $i++) { + $n = $nodeList->item($i); + $extentType = $this->_extractTextFromNode($node, $onixDeployment, 'ExtentType'); + $extentValue = $this->_extractTextFromNode($node, $onixDeployment, 'ExtentValue'); + + switch ($extentType) { + case '08': // Digital + $representation->setFileSize($extentValue); + break; + case '00': // Physical, front matter. + $representation->setFrontMatter($extentValue); + break; + case '04': // Physical, back matter. + $representation->setBackMatter($extentValue); + break; + } + } + } + + /** + * Extracts the elements of the Measure nodes. + * + * @param DOMElement $node + * @param \APP\plugins\importexport\onix30\Onix30ExportDeployment $onixDeployment + * @param \APP\publicationFormat\PublicationFormat $representation + */ + public function _extractMeasureContent($node, $onixDeployment, &$representation) + { + $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'Measure'); + for ($i = 0 ; $i < $nodeList->length ; $i++) { + $n = $nodeList->item($i); + $measureType = $this->_extractTextFromNode($node, $onixDeployment, 'MeasureType'); + $measurement = $this->_extractTextFromNode($node, $onixDeployment, 'Measurement'); + $measureUnitCode = $this->_extractTextFromNode($node, $onixDeployment, 'MeasureUnitCode'); + + // '01' => 'Height', '02' => 'Width', '03' => 'Thickness', '08' => 'Weight' + switch ($measureType) { + case '01': + $representation->setHeight($measurement); + $representation->setHeightUnitCode($measureUnitCode); + break; + case '02': + $representation->setWidth($measurement); + $representation->setWidthUnitCode($measureUnitCode); + break; + case '03': + $representation->setThickness($measurement); + $representation->setThicknessUnitCode($measureUnitCode); + break; + case '08': + $representation->setWeight($measurement); + $representation->setWeightUnitCode($measureUnitCode); + break; + } + } + } + + /** + * Extracts the AudienceRange elements, which vary depending on whether + * a submission defines a specific range, or a to/from pair. + * + * @param DOMElement $node + * @param \APP\plugins\importexport\onix30\Onix30ExportDeployment $onixDeployment + * @param \APP\submission\Submission $submission + */ + public function _extractAudienceRangeContent($node, $onixDeployment, &$submission) + { + $nodeList = $node->getElementsByTagNameNS($onixDeployment->getNamespace(), 'AudienceRange'); + for ($i = 0 ; $i < $nodeList->length ; $i++) { + $n = $nodeList->item($i); + $audienceRangePrecision = 0; + for ($o = $n->firstChild; $o !== null; $o = $o->nextSibling) { + if ($o instanceof DOMElement) { + switch ($o->tagName) { + case 'AudienceRangePrecision': $audienceRangePrevision = $o->textContent; + break; + case 'AudienceRangeValue': + switch ($audienceRangePrecision) { + case '01': + $submission->setData('audienceRangeExact', $o->textContent); + break; + case '03': + $submission->setData('audienceRangeTo', $o->textContent); + break; + case '04': + $submission->setData('audienceRangeFrom', $o->textContent); + break; + } + break; + } + } + } + } + } +} diff --git a/plugins/importexport/native/filter/PublicationFormatNativeXmlFilter.inc.php b/plugins/importexport/native/filter/PublicationFormatNativeXmlFilter.inc.php deleted file mode 100644 index 49e007996e7..00000000000 --- a/plugins/importexport/native/filter/PublicationFormatNativeXmlFilter.inc.php +++ /dev/null @@ -1,105 +0,0 @@ -setAttribute('approved', $representation->getIsApproved()?'true':'false'); - $representationNode->setAttribute('available', $representation->getIsAvailable()?'true':'false'); - $representationNode->setAttribute('physical_format', $representation->getPhysicalFormat()?'true':'false'); - $representationNode->setAttribute('url_path', $representation->getData('urlPath')); - $representationNode->setAttribute('entry_key', $representation->getData('entryKey')); - - // If all nexessary press settings exist, export ONIX metadata - $context = $this->getDeployment()->getContext(); - if ($context->getContactName() && $context->getContactEmail() && $context->getData('publisher') && $context->getData('location') && $context->getData('codeType') && $context->getData('codeValue')) { - $publication = $this->getDeployment()->getPublication(); - $submission = $this->getDeployment()->getSubmission(); - - $filterDao = DAORegistry::getDAO('FilterDAO'); /* @var $filterDao FilterDAO */ - $nativeExportFilters = $filterDao->getObjectsByGroup('monograph=>onix30-xml'); - assert(count($nativeExportFilters) == 1); // Assert only a single serialization filter - $exportFilter = array_shift($nativeExportFilters); - - $request = Application::get()->getRequest(); - $exportFilter->setDeployment(new Onix30ExportDeployment($request->getContext(), $request->getUser())); - - $onixDoc = $exportFilter->execute($submission); - if ($onixDoc) { // we do this to ensure validation. - // assemble just the Product node we want. - $publicationFormatDOMElement = $exportFilter->createProductNode($doc, $submission, $representation); - if ($publicationFormatDOMElement instanceof DOMElement) { - import('lib.pkp.classes.xslt.XSLTransformer'); - $xslTransformer = new XSLTransformer(); - $xslFile = 'plugins/importexport/native/onixProduct2NativeXml.xsl'; - $productXml = $publicationFormatDOMElement->ownerDocument->saveXML($publicationFormatDOMElement); - $filteredXml = $xslTransformer->transform($productXml, XSL_TRANSFORMER_DOCTYPE_STRING, $xslFile, XSL_TRANSFORMER_DOCTYPE_FILE, XSL_TRANSFORMER_DOCTYPE_STRING); - $representationFragment = $doc->createDocumentFragment(); - $representationFragment->appendXML($filteredXml); - $representationNode->appendChild($representationFragment); - } - } - } - return $representationNode; - } - - /** - * Get the available submission files for a representation - * @param $representation Representation - * @return Iterator - */ - function getFiles($representation) { - $deployment = $this->getDeployment(); - $submission = $deployment->getSubmission(); - return Services::get('submissionFile')->getMany([ - 'submissionIds' => [$submission->getId()], - 'assocTypes' => [ASSOC_TYPE_PUBLICATION_FORMAT], - 'assocIds' => [$representation->getId()], - ]); - } -} - - diff --git a/plugins/importexport/native/filter/PublicationFormatNativeXmlFilter.php b/plugins/importexport/native/filter/PublicationFormatNativeXmlFilter.php new file mode 100644 index 00000000000..1a15de27924 --- /dev/null +++ b/plugins/importexport/native/filter/PublicationFormatNativeXmlFilter.php @@ -0,0 +1,108 @@ +setAttribute('approved', $representation->getIsApproved() ? 'true' : 'false'); + $representationNode->setAttribute('available', $representation->getIsAvailable() ? 'true' : 'false'); + $representationNode->setAttribute('physical_format', $representation->getPhysicalFormat() ? 'true' : 'false'); + $representationNode->setAttribute('url_path', $representation->getData('urlPath')); + $representationNode->setAttribute('entry_key', $representation->getData('entryKey')); + + // If all necessary press settings exist, export ONIX metadata + $context = $this->getDeployment()->getContext(); + if ($context->getContactName() && $context->getContactEmail() && $context->getData('publisher') && $context->getData('location') && $context->getData('codeType') && $context->getData('codeValue')) { + $publication = $this->getDeployment()->getPublication(); + $submission = $this->getDeployment()->getSubmission(); + + $filterDao = DAORegistry::getDAO('FilterDAO'); /** @var FilterDAO $filterDao */ + $nativeExportFilters = $filterDao->getObjectsByGroup('monograph=>onix30-xml'); + assert(count($nativeExportFilters) == 1); // Assert only a single serialization filter + $exportFilter = array_shift($nativeExportFilters); + + $request = Application::get()->getRequest(); + $exportFilter->setDeployment(new Onix30ExportDeployment($request->getContext(), $request->getUser())); + + $onixDoc = $exportFilter->execute($submission); + if ($onixDoc) { // we do this to ensure validation. + // assemble just the Product node we want. + $publicationFormatDOMElement = $exportFilter->createProductNode($doc, $submission, $representation); + if ($publicationFormatDOMElement && $publicationFormatDOMElement instanceof \DOMElement) { + $xslTransformer = new XSLTransformer(); + $xslFile = 'plugins/importexport/native/onixProduct2NativeXml.xsl'; + $productXml = $publicationFormatDOMElement->ownerDocument->saveXML($publicationFormatDOMElement); + $filteredXml = $xslTransformer->transform($productXml, XSLTransformer::XSL_TRANSFORMER_DOCTYPE_STRING, $xslFile, XSLTransformer::XSL_TRANSFORMER_DOCTYPE_FILE, XSLTransformer::XSL_TRANSFORMER_DOCTYPE_STRING); + $representationFragment = $doc->createDocumentFragment(); + $representationFragment->appendXML($filteredXml); + $representationNode->appendChild($representationFragment); + } else { + $deployment = $this->getDeployment(); + $deployment->addError(Application::ASSOC_TYPE_PUBLICATION, $representation->getId(), __('plugins.importexport.publicationformat.exportFailed')); + + throw new Exception(__('plugins.importexport.publicationformat.exportFailed')); + } + } + } + return $representationNode; + } + + /** + * Get the available submission files for a representation + * + * @param Representation $representation + * + * @return LazyCollection + */ + public function getFiles($representation) + { + $deployment = $this->getDeployment(); + $submission = $deployment->getSubmission(); + return Repo::submissionFile() + ->getCollector() + ->filterBySubmissionIds([$submission->getId()]) + ->filterByAssoc( + Application::ASSOC_TYPE_PUBLICATION_FORMAT, + [$representation->getId()] + ) + ->getMany(); + } +} diff --git a/plugins/importexport/native/filter/PublicationNativeXmlFilter.inc.php b/plugins/importexport/native/filter/PublicationNativeXmlFilter.inc.php deleted file mode 100644 index 07107c546cb..00000000000 --- a/plugins/importexport/native/filter/PublicationNativeXmlFilter.inc.php +++ /dev/null @@ -1,180 +0,0 @@ -native-xml'; - } - - // - // Submission conversion functions - // - /** - * Create and return a submission node. - * @param $doc DOMDocument - * @param $entity Publication - * @return DOMElement - */ - function createEntityNode($doc, $entity) { - $deployment = $this->getDeployment(); - $entityNode = parent::createEntityNode($doc, $entity); - - $context = $deployment->getContext(); - - $deployment->setPublication($entity); - - // Add the series, if one is designated. - if ($seriesId = $entity->getData('seriesId')) { - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /** @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($seriesId, $context->getId()); - - $entityNode->setAttribute('series', $series->getPath()); - $entityNode->setAttribute('series_position', $entity->getData('seriesPosition')); - } - - $chapters = $entity->getData('chapters'); - if ($chapters && count($chapters) > 0) { - $this->addChapters($doc, $entityNode, $entity); - } - - // cover images - $coversNode = $this->createPublicationCoversNode($this, $doc, $entity); - if ($coversNode) $entityNode->appendChild($coversNode); - - return $entityNode; - } - - /** - * Add the chapter metadata for a publication to its DOM element. - * @param $doc DOMDocument - * @param $entityNode DOMElement - * @param $entity Publication - */ - function addChapters($doc, $entityNode, $entity) { - $filterDao = DAORegistry::getDAO('FilterDAO'); /** @var $filterDao FilterDAO */ - $nativeExportFilters = $filterDao->getObjectsByGroup('chapter=>native-xml'); - assert(count($nativeExportFilters)==1); // Assert only a single serialization filter - $exportFilter = array_shift($nativeExportFilters); - $exportFilter->setDeployment($this->getDeployment()); - - $chapters = $entity->getData('chapters'); - $chaptersDoc = $exportFilter->execute($chapters); - if ($chaptersDoc && $chaptersDoc->documentElement instanceof DOMElement) { - $clone = $doc->importNode($chaptersDoc->documentElement, true); - $entityNode->appendChild($clone); - } - } - - /** - * Create and return an object covers node. - * @param $filter NativeExportFilter - * @param $doc DOMDocument - * @param $object Publication - * @return DOMElement - */ - function createPublicationCoversNode($filter, $doc, $object) { - $deployment = $filter->getDeployment(); - - $context = $deployment->getContext(); - - $coversNode = null; - $coverImages = $object->getData('coverImage'); - if (!empty($coverImages)) { - $coversNode = $doc->createElementNS($deployment->getNamespace(), 'covers'); - foreach ($coverImages as $locale => $coverImage) { - $coverImageName = $coverImage['uploadName']; - - $coverNode = $doc->createElementNS($deployment->getNamespace(), 'cover'); - $coverNode->setAttribute('locale', $locale); - $coverNode->appendChild($node = $doc->createElementNS($deployment->getNamespace(), 'cover_image', htmlspecialchars($coverImageName, ENT_COMPAT, 'UTF-8'))); - $coverNode->appendChild($node = $doc->createElementNS($deployment->getNamespace(), 'cover_image_alt_text', htmlspecialchars($coverImage['altText'], ENT_COMPAT, 'UTF-8'))); - - import('classes.file.PublicFileManager'); - $publicFileManager = new PublicFileManager(); - - $contextId = $context->getId(); - - $filePath = $publicFileManager->getContextFilesPath($contextId) . '/' . $coverImageName; - $embedNode = $doc->createElementNS($deployment->getNamespace(), 'embed', base64_encode(file_get_contents($filePath))); - $embedNode->setAttribute('encoding', 'base64'); - $coverNode->appendChild($embedNode); - $coversNode->appendChild($coverNode); - } - } - return $coversNode; - } - - /** - * Parse out the object covers. - * @param $filter NativeExportFilter - * @param $node DOMElement - * @param $object Publication - * @param $assocType ASSOC_TYPE_PUBLICATION - */ - function parseCovers($filter, $node, $object, $assocType) { - $deployment = $filter->getDeployment(); - for ($n = $node->firstChild; $n !== null; $n=$n->nextSibling) { - if (is_a($n, 'DOMElement')) { - switch ($n->tagName) { - case 'cover': - $this->parseCover($filter, $n, $object, $assocType); - break; - default: - $deployment->addWarning($assocType, $object->getId(), __('plugins.importexport.common.error.unknownElement', array('param' => $n->tagName))); - } - } - } - } - - /** - * Create and return a Citations node. - * @param $doc DOMDocument - * @param $deployment - * @param $publication Publication - * @return DOMElement - */ - private function createCitationsNode($doc, $deployment, $publication) { - $citationDao = DAORegistry::getDAO('CitationDAO'); - - $nodeCitations = $doc->createElementNS($deployment->getNamespace(), 'citations'); - $submissionCitations = $citationDao->getByPublicationId($publication->getId()); - if ($submissionCitations->getCount() != 0) { - while ($elementCitation = $submissionCitations->next()) { - $rawCitation = $elementCitation->getRawCitation(); - $nodeCitations->appendChild($node = $doc->createElementNS($deployment->getNamespace(), 'citation', htmlspecialchars($rawCitation, ENT_COMPAT, 'UTF-8'))); - } - - return $nodeCitations; - } - - return null; - } -} diff --git a/plugins/importexport/native/filter/PublicationNativeXmlFilter.php b/plugins/importexport/native/filter/PublicationNativeXmlFilter.php new file mode 100644 index 00000000000..1d6a8f65f62 --- /dev/null +++ b/plugins/importexport/native/filter/PublicationNativeXmlFilter.php @@ -0,0 +1,141 @@ +native-xml'; + } + + // + // Submission conversion functions + // + /** + * Create and return a submission node. + * + * @param \DOMDocument $doc + * @param \APP\publication\Publication $entity + * + * @return \DOMElement + */ + public function createEntityNode($doc, $entity) + { + $deployment = $this->getDeployment(); + $entityNode = parent::createEntityNode($doc, $entity); + + $deployment->setPublication($entity); + + // Add the series, if one is designated. + $seriesNode = $this->createSeriesNode($this, $doc, $entity); + if ($seriesNode) { + $entityNode->appendChild($seriesNode); + + $entityNode->setAttribute('series_position', $entity->getData('seriesPosition')); + } + + + $chapters = $entity->getData('chapters'); + if ($chapters && count($chapters) > 0) { + $this->addChapters($doc, $entityNode, $entity); + } + + // cover images + $nativeFilterHelper = new PKPNativeFilterHelper(); + $coversNode = $nativeFilterHelper->createPublicationCoversNode($this, $doc, $entity); + if ($coversNode) { + $entityNode->appendChild($coversNode); + } + + return $entityNode; + } + + /** + * Add the chapter metadata for a publication to its DOM element. + * + * @param \DOMDocument $doc + * @param \DOMElement $entityNode + * @param \APP\publication\Publication $entity + */ + public function addChapters($doc, $entityNode, $entity) + { + $currentFilter = PKPImportExportFilter::getFilter('chapter=>native-xml', $this->getDeployment()); + + $chapters = $entity->getData('chapters'); + if ($chapters && count($chapters) > 0) { + $chaptersDoc = $currentFilter->execute($chapters); + if ($chaptersDoc && $chaptersDoc->documentElement instanceof \DOMElement) { + $clone = $doc->importNode($chaptersDoc->documentElement, true); + $entityNode->appendChild($clone); + } else { + $deployment = $this->getDeployment(); + $deployment->addError(Application::ASSOC_TYPE_PUBLICATION, $entity->getId(), __('plugins.importexport.chapter.exportFailed')); + + throw new Exception(__('plugins.importexport.chapter.exportFailed')); + } + } + } + + /** + * Create and return an object covers node. + * + * @param \PKP\plugins\importexport\native\filter\NativeExportFilter $filter + * @param \DOMDocument $doc + * @param \APP\publication\Publication $object + * + * @return \DOMElement + */ + public function createSeriesNode($filter, $doc, $object) + { + $deployment = $filter->getDeployment(); + + $context = $deployment->getContext(); + + $seriesNode = null; + if ($seriesId = $object->getData('seriesId')) { + $series = Repo::section()->get($seriesId, $context->getId()); + if ($series) { + $seriesNode = $doc->createElementNS($deployment->getNamespace(), 'series'); + + // Add metadata + $this->createLocalizedNodes($doc, $seriesNode, 'title', $series->getData('title')); + $this->createLocalizedNodes($doc, $seriesNode, 'subtitle', $series->getData('subtitle')); + $this->createLocalizedNodes($doc, $seriesNode, 'description', $series->getData('description')); + + $seriesNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'printIssn', $series->getData('printIssn'))); + $seriesNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'onlineIssn', $series->getData('onlineIssn'))); + + $seriesNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'path', $series->getData('path'))); + $seriesNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'sequence', $series->getData('sequence'))); + } + } + + return $seriesNode; + } +} diff --git a/plugins/importexport/native/filter/filterConfig.xml b/plugins/importexport/native/filter/filterConfig.xml index 0c08c5bb43e..a35747cdff5 100644 --- a/plugins/importexport/native/filter/filterConfig.xml +++ b/plugins/importexport/native/filter/filterConfig.xml @@ -31,7 +31,7 @@ symbolic="author=>native-xml" displayName="plugins.importexport.native.displayName" description="plugins.importexport.native.description" - inputType="class::classes.monograph.Author[]" + inputType="class::classes.author.Author[]" outputType="xml::schema(plugins/importexport/native/native.xsd)" /> + outputType="class::classes.author.Author[]" /> + outputType="class::lib.pkp.classes.submissionFile.SubmissionFile[]" /> + outputType="class::classes.publication.Publication[]" /> + outputType="class::classes.monograph.Chapter[]" /> diff --git a/plugins/importexport/native/index.php b/plugins/importexport/native/index.php index 2648e6f12ac..aced4eff142 100644 --- a/plugins/importexport/native/index.php +++ b/plugins/importexport/native/index.php @@ -7,13 +7,8 @@ * Copyright (c) 2003-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * - * @ingroup plugins_importexport_native * @brief Wrapper for XML native import/export plugin. * */ -require_once('NativeImportExportPlugin.inc.php'); - -return new NativeImportExportPlugin(); - - +return new \APP\plugins\importexport\native\NativeImportExportPlugin(); diff --git a/plugins/importexport/native/locale/bg/locale.po b/plugins/importexport/native/locale/bg/locale.po new file mode 100644 index 00000000000..5e39073133c --- /dev/null +++ b/plugins/importexport/native/locale/bg/locale.po @@ -0,0 +1,64 @@ +# Cyril Kamburov , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-11-20 07:38+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Вграден XML плъгин" + +msgid "plugins.importexport.native.import" +msgstr "Импорт" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Качване на XML файл за импортиране" + +msgid "plugins.importexport.native.export" +msgstr "Експорт" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Изберете монографии за експортиране" + +msgid "plugins.importexport.native.results" +msgstr "Резултати" + +msgid "plugins.importexport.native.importComplete" +msgstr "Импортирането завърши успешно. Бяха внесени следните елементи:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"В това издателство липсва част от необходимата информация за ONIX метаданни, " +"използвани при това експортиране. Моля, отидете на Настройки на издателство и попълнете липсващите данни." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Неизвестна колекция/серия {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Използване: {$scriptName} {$pluginName} [command] ...\n" +"Команди:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] [monographId2] " +"...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" + +msgid "plugins.importexport.native.description" +msgstr "Импортиране и експортиране на книги в стандартния XML формат на OMP." + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Моля, качете файл с бутон „Импортиране“, за да продължите." + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "Посочено е изображение на корицата с невалидно файлово разширение." + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Изображението на корицата беше вградено без посочване на име." diff --git a/plugins/importexport/native/locale/ca/locale.po b/plugins/importexport/native/locale/ca/locale.po new file mode 100644 index 00000000000..dcd45da164d --- /dev/null +++ b/plugins/importexport/native/locale/ca/locale.po @@ -0,0 +1,63 @@ +# Jordi LC , 2021. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" +"PO-Revision-Date: 2021-08-03 10:18+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Catalan \n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Mòdul XML nadiu" + +msgid "plugins.importexport.native.description" +msgstr "Importa i exporta llibres a OMP en format nadiu XML." + +msgid "plugins.importexport.native.import" +msgstr "Importa" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Carregar un arxiu XML per importar" + +msgid "plugins.importexport.native.export" +msgstr "Exporta" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Seleccionar monografies per exportar" + +msgid "plugins.importexport.native.results" +msgstr "Resultats" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Carregueu un arxiu a \"Importar\" per continuar." + +msgid "plugins.importexport.native.importComplete" +msgstr "" +"La importació s'ha completat correctament. S'han importat els següents " +"elements:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"A aquesta publicació li manca alguna informació necessària per a les " +"metadades ONIX utilitzades en aquesta exportació. Aneu a Configuració editorial i completeu les dades que falten." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Series desconegudes {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Ús: {$scriptName} {$pluginName} [command] ...\n" +"Ordres:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" diff --git a/plugins/importexport/native/locale/ca_ES/locale.po b/plugins/importexport/native/locale/ca_ES/locale.po deleted file mode 100644 index 4aaa66fa0ef..00000000000 --- a/plugins/importexport/native/locale/ca_ES/locale.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Catalan \n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.native.displayName" -msgstr "Mòdul XML nadiu" - -msgid "plugins.importexport.native.description" -msgstr "Importa i exporta llibres a OMP en format nadiu XML." - -msgid "plugins.importexport.native.import" -msgstr "Importa" - -msgid "plugins.importexport.native.export" -msgstr "Exporta" - -msgid "plugins.importexport.native.results" -msgstr "Resultats" - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Series desconegudes {$param}" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "" -"A aquesta publicació li manca alguna informació necessària per a les " -"metadades ONIX utilitzades en aquesta exportació. Aneu a Configuració > Flux " -"de treball > Producció i completeu les dades que falten." - -msgid "plugins.importexport.native.importComplete" -msgstr "" -"La importació s'ha completat correctament. S'han importat els següents " -"elements:" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Carregueu un arxiu a \"Importar\" per continuar." - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Seleccionar monografies per exportar" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Carregar un arxiu XML per importar" diff --git a/plugins/importexport/native/locale/cs/locale.po b/plugins/importexport/native/locale/cs/locale.po new file mode 100644 index 00000000000..3fefd368671 --- /dev/null +++ b/plugins/importexport/native/locale/cs/locale.po @@ -0,0 +1,64 @@ +# Jiří Dlouhý , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-28 07:06+0000\n" +"Last-Translator: Jiří Dlouhý \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Plugin nativního XML" + +msgid "plugins.importexport.native.description" +msgstr "Importuje a exportuje knihy v rámci OMP v nativním XML formátu." + +msgid "plugins.importexport.native.import" +msgstr "Importovat" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Nahrát XML soubor pro import" + +msgid "plugins.importexport.native.export" +msgstr "Exportovat" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Zvolte monografie pro export" + +msgid "plugins.importexport.native.results" +msgstr "Výsledky" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Nahrajte, prosím, soubor pod \"Import\", abyste mohli pokračovat." + +msgid "plugins.importexport.native.importComplete" +msgstr "Import byl úspěšně dokončen. Byly importovány následující položky:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"V nakladatelství je potřeba vyplnit nějaké chybějící informace pro ONIX " +"metadata. Prosím, jděte doNastavení tisku a vyplňte " +"chybějící podrobnosti." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Neznámá edice {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Použití: {$scriptName} {$pluginName} [command] ...\n" +"Příkazy:\n" +"\t[xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monografie [monographId]\n" + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Titulní obrázek byl vložen bez uvedení názvu." + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "Byl zadán titulní obrázek s neplatnou příponou souboru." diff --git a/plugins/importexport/native/locale/cs_CZ/locale.po b/plugins/importexport/native/locale/cs_CZ/locale.po deleted file mode 100644 index 384b6976ccd..00000000000 --- a/plugins/importexport/native/locale/cs_CZ/locale.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-27 09:21+0000\n" -"Last-Translator: Jiří Dlouhý \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Neznámá edice {$param}" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "" -"V nakladatelství je potřeba vyplnit nějaké chybějící informace pro ONIX " -"metadata. Prosím, jděte doNastavení tisku a vyplňte " -"chybějící podrobnosti." - -msgid "plugins.importexport.native.importComplete" -msgstr "Import byl úspěšně dokončen. Byly importovány následující položky:" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Nahrajte, prosím, soubor pod \"Import\", abyste mohli pokračovat." - -msgid "plugins.importexport.native.results" -msgstr "Výsledky" - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Zvolte monografie pro export" - -msgid "plugins.importexport.native.export" -msgstr "Exportovat" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Nahrát XML soubor pro import" - -msgid "plugins.importexport.native.import" -msgstr "Importovat" - -msgid "plugins.importexport.native.description" -msgstr "Importuje a exportuje knihy v rámci OMP v nativním XML formátu." - -msgid "plugins.importexport.native.displayName" -msgstr "Plugin nativního XML" diff --git a/plugins/importexport/native/locale/da/locale.po b/plugins/importexport/native/locale/da/locale.po new file mode 100644 index 00000000000..f061cd59a77 --- /dev/null +++ b/plugins/importexport/native/locale/da/locale.po @@ -0,0 +1,65 @@ +# Alexandra Fogtmann-Schulz , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-28 07:06+0000\n" +"Last-Translator: Alexandra Fogtmann-Schulz \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Native XML Plugin" + +msgid "plugins.importexport.native.description" +msgstr "Importér og eksportér bøger i OMPs oprindelige XML-format." + +msgid "plugins.importexport.native.import" +msgstr "Importér" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Upload XML-fil til import" + +msgid "plugins.importexport.native.export" +msgstr "Eksportér" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Vælg de monografier, der skal eksporteres" + +msgid "plugins.importexport.native.results" +msgstr "Resultater" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Upload en fil under \"Import\" for at fortsætte." + +msgid "plugins.importexport.native.importComplete" +msgstr "Importen blev afsluttet. Følgende elementer blev importeret:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Denne udgiver mangler nogle nødvendige oplysninger om ONIX-metadata, der er " +"brugt i forbindelse med denne eksport. Gå til Indstillinger for udgiveren og udfyld de manglende " +"oplysninger." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Ukendt serie {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Brug: {$scriptName} {$pluginName} [command] ...\n" +"Kommandoer:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\teksport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\teksport [xmlFileName] [press_path] monograph [monographId]\n" + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "Der blev angivet et forsidebillede med et ugyldigt filtypenavn." + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Der blev indlejret et forsidebillede uden at angive et navn." diff --git a/plugins/importexport/native/locale/da_DK/locale.po b/plugins/importexport/native/locale/da_DK/locale.po deleted file mode 100644 index 43731b027d0..00000000000 --- a/plugins/importexport/native/locale/da_DK/locale.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-27 19:05+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Ukendt serie {$param}" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "" -"Dette forlag mangler nogle nødvendige oplysninger om ONIX-metadata, der er " -"brugt i forbindelse med denne eksport. Gå til href=\"{$url}\"" -">Forlagsindstillinger og udfyld de manglende oplysninger." - -msgid "plugins.importexport.native.importComplete" -msgstr "Importen blev afsluttet. Følgende elementer blev importeret:" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Upload en fil under \"Import\" for at fortsætte." - -msgid "plugins.importexport.native.results" -msgstr "Resultater" - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Vælg de monografier, der skal eksporteres" - -msgid "plugins.importexport.native.export" -msgstr "Eksportér" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Upload XML-fil til import" - -msgid "plugins.importexport.native.import" -msgstr "Importér" - -msgid "plugins.importexport.native.description" -msgstr "Importér og eksportér bøger i OMPs oprindelige XML-format." - -msgid "plugins.importexport.native.displayName" -msgstr "Native XML Plugin" diff --git a/plugins/importexport/native/locale/da_DK/locale.xml b/plugins/importexport/native/locale/da_DK/locale.xml deleted file mode 100644 index 787f8fb86e9..00000000000 --- a/plugins/importexport/native/locale/da_DK/locale.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - Native XML Plugin - Importer og eksporter bøger i OMP's native XML-format - Import - Upload XML-fil til import - Eksport - Vælg monografier, der skal eksporteres - Resultater - Upload en fil under "Import" for at fortsætte. - Importen blev gennemført. Følgende poster blev importeret: - Workflow > Produktion og udfyld de manglende oplysninger.]]> - Ukendt serie {$param} - diff --git a/plugins/importexport/native/locale/de/locale.po b/plugins/importexport/native/locale/de/locale.po new file mode 100644 index 00000000000..ae6b1ff1942 --- /dev/null +++ b/plugins/importexport/native/locale/de/locale.po @@ -0,0 +1,70 @@ +# Pia Piontkowitz , 2021. +# Renate Voget , 2024. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" +"PO-Revision-Date: 2024-07-16 16:30+0000\n" +"Last-Translator: Renate Voget \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Native-XML-PlugIn" + +msgid "plugins.importexport.native.description" +msgstr "Bücher importieren und exportieren (OMPs natives XML-Format)." + +msgid "plugins.importexport.native.import" +msgstr "Import" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Laden Sie eine XML-Datei, die Sie importieren möchten, hoch" + +msgid "plugins.importexport.native.export" +msgstr "Export" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Monographien zum Export auswählen" + +msgid "plugins.importexport.native.results" +msgstr "Resultate" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Bitte laden Sie unter \"Import\" eine Datei hoch, um fortzufahren." + +msgid "plugins.importexport.native.importComplete" +msgstr "" +"Der Import wurde erfolgreich beendet. Die folgende Elemente wurden " +"importiert:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Diesem Verlag fehlen erforderliche Information für in diesem Export " +"verwendete ONIX Metadaten. Bitte ergänzen Sie die fehlenden Daten in den Verlagseinstellungen." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Unbekannte Reihe {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Einsatz: {$scriptName} {$pluginName} [command] ...\n" +"Kommandos:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "Ein Titelbild mit einer ungültigen Dateierweiterung wurde angegeben." + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Ein Titelbild wurde eingebettet, ohne dass ein Name angegeben wurde." diff --git a/plugins/importexport/native/locale/de_DE/locale.po b/plugins/importexport/native/locale/de_DE/locale.po deleted file mode 100644 index 763fbd60341..00000000000 --- a/plugins/importexport/native/locale/de_DE/locale.po +++ /dev/null @@ -1,36 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:53-07:00\n" -"Language: \n" - -msgid "plugins.importexport.native.displayName" -msgstr "Native-XML-PlugIn" - -msgid "plugins.importexport.native.description" -msgstr "Bücher importieren und exportieren (OMPs natives XML-Format)." - -msgid "plugins.importexport.native.import" -msgstr "Import" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Bitte wählen Sie eine XML-Datei zum Hochladen aus und klicken Sie \"Upload starten\". Wenn der Upload beendet ist, klicken Sie \"OK\", um das Dokument in OMP zu importieren." - -msgid "plugins.importexport.native.export" -msgstr "Export" - -msgid "plugins.importexport.native.results" -msgstr "Resultate" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Bitte laden Sie unter \"Import\" eine Datei hoch, um fortzufahren." - -msgid "plugins.importexport.native.importComplete" -msgstr "Der Import wurde erfolgreich beendet. Die folgende Elemente wurden importiert:" diff --git a/plugins/importexport/native/locale/en/locale.po b/plugins/importexport/native/locale/en/locale.po new file mode 100644 index 00000000000..7d2bc7f55fb --- /dev/null +++ b/plugins/importexport/native/locale/en/locale.po @@ -0,0 +1,63 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:53-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Native XML Plugin" + +msgid "plugins.importexport.native.description" +msgstr "Import and export books in OMP's native XML format." + +msgid "plugins.importexport.native.import" +msgstr "Import" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Upload XML file to import" + +msgid "plugins.importexport.native.export" +msgstr "Export" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Select monographs to export" + +msgid "plugins.importexport.native.results" +msgstr "Results" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Please upload a file under \"Import\" in order to continue." + +msgid "plugins.importexport.native.importComplete" +msgstr "The import completed successfully. The following items were imported:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"This press is missing some required information for ONIX metadata used in " +"this export. Please go to Press Settings and fill in " +"the missing details." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Unknown series {$param}" + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "A cover image with an invalid file extension was specified." + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "A cover image was embedded without specifying a name." + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Usage: {$scriptName} {$pluginName} [command] ...\n" +"Commands:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" diff --git a/plugins/importexport/native/locale/en_US/locale.po b/plugins/importexport/native/locale/en_US/locale.po deleted file mode 100644 index a28696f060a..00000000000 --- a/plugins/importexport/native/locale/en_US/locale.po +++ /dev/null @@ -1,45 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:53-07:00\n" -"Language: \n" - -msgid "plugins.importexport.native.displayName" -msgstr "Native XML Plugin" - -msgid "plugins.importexport.native.description" -msgstr "Import and export books in OMP's native XML format." - -msgid "plugins.importexport.native.import" -msgstr "Import" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Upload XML file to import" - -msgid "plugins.importexport.native.export" -msgstr "Export" - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Select monographs to export" - -msgid "plugins.importexport.native.results" -msgstr "Results" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Please upload a file under \"Import\" in order to continue." - -msgid "plugins.importexport.native.importComplete" -msgstr "The import completed successfully. The following items were imported:" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "This press is missing some required information for ONIX metadata used in this export. Please go to Press Settings and fill in the missing details." - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Unknown series {$param}" diff --git a/plugins/importexport/native/locale/es/locale.po b/plugins/importexport/native/locale/es/locale.po new file mode 100644 index 00000000000..a8030edef65 --- /dev/null +++ b/plugins/importexport/native/locale/es/locale.po @@ -0,0 +1,71 @@ +# Jordi LC , 2021, 2024. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:26+00:00\n" +"PO-Revision-Date: 2024-04-26 12:34+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Complemento XML nativo" + +msgid "plugins.importexport.native.description" +msgstr "Importar y exportar libros en el formato XML nativo de OMP." + +msgid "plugins.importexport.native.import" +msgstr "Importar" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Cargar un archivo XML para importar" + +msgid "plugins.importexport.native.export" +msgstr "Exportar" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Seleccionar monografías que exportar" + +msgid "plugins.importexport.native.results" +msgstr "Resultados" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Cargue un fichero en \"Importar\" para continuar." + +msgid "plugins.importexport.native.importComplete" +msgstr "" +"La importación se ha completado con éxito. Se han importado los siguientes " +"elementos:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"A esta publicación le falta información necesaria para los metadatos ONIX " +"utilizados en esta exportación. Vaya a ajustes " +"editoriales y complete los datos que faltan." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Series desconocidas {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Uso: {$scriptName} {$pluginName} [command] ...\n" +"Comandos:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Se ha incrustado una imagen de portada sin especificar su nombre." + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "" +"Se ha especificado una imagen de portada con una extensión de archivo " +"inválida." diff --git a/plugins/importexport/native/locale/es_ES/locale.po b/plugins/importexport/native/locale/es_ES/locale.po deleted file mode 100644 index d865f592858..00000000000 --- a/plugins/importexport/native/locale/es_ES/locale.po +++ /dev/null @@ -1,51 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:26+00:00\n" -"PO-Revision-Date: 2020-11-30 18:48+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.native.displayName" -msgstr "Complemento XML nativo" - -msgid "plugins.importexport.native.description" -msgstr "Importar y exportar libros en el formato XML nativo de OMP." - -msgid "plugins.importexport.native.import" -msgstr "Importar" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Cargar un archivo XML para importar" - -msgid "plugins.importexport.native.export" -msgstr "Exportar" - -msgid "plugins.importexport.native.results" -msgstr "Resultados" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Cargue un fichero en \"Importar\" para continuar." - -msgid "plugins.importexport.native.importComplete" -msgstr "La importación se ha completado con éxito. Se han importado los siguientes elementos:" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "" -"A esta publicación le falta información necesaria para los metadatos ONIX " -"utilizados en esta exportación. Vaya a ajustes " -"editoriales y complete los datos que faltan." - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Series desconocidas {$param}" - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Seleccionar monografías que exportar" diff --git a/plugins/importexport/native/locale/fi/locale.po b/plugins/importexport/native/locale/fi/locale.po new file mode 100644 index 00000000000..e38c0703629 --- /dev/null +++ b/plugins/importexport/native/locale/fi/locale.po @@ -0,0 +1,64 @@ +# Antti-Jussi Nygård , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-12-06 12:39+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Järjestelmän XML-lisäosa" + +msgid "plugins.importexport.native.description" +msgstr "Tuo ja vie teoksia OMP-järjestelmän omassa XML-muodossa." + +msgid "plugins.importexport.native.import" +msgstr "Tuo" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Lataa tuotava XML-tiedosto" + +msgid "plugins.importexport.native.export" +msgstr "Vie" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Valitse vietävät teokset" + +msgid "plugins.importexport.native.results" +msgstr "Tulokset" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Ole hyvä ja lataa tiedosto kohdassa \"Tuo\" jatkaaksesi." + +msgid "plugins.importexport.native.importComplete" +msgstr "Tuonti onnistui. Seuraavat kohteet tuotiin:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Julkaisijan asetuksista puuttuu joitain tietoja, joita vaaditaan ONIX-" +"kuvailutietojen käyttöön. Siirry julkaisijan asetuksiin ja täytä puuttuvat tiedot." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Tuntematon sarja {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Käyttö: {$scriptName} {$pluginName} [command] ...\n" +"Komennot:\n" +"\t[xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] [monographId2] " +"...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Kansikuvan nimi puuttuu." + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "Kansikuvan tiedostopääte on virheellinen." diff --git a/plugins/importexport/native/locale/fi_FI/locale.po b/plugins/importexport/native/locale/fi_FI/locale.po deleted file mode 100644 index c2e9f6667d2..00000000000 --- a/plugins/importexport/native/locale/fi_FI/locale.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-11 20:34+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Tuntematon sarja {$param}" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "" -"Julkaisijan asetuksista puuttuu joitain tietoja, joita vaaditaan ONIX-" -"kuvailutietojen käyttöön. Siirry julkaisijan " -"asetuksiin ja täytä puuttuvat tiedot." - -msgid "plugins.importexport.native.importComplete" -msgstr "Tuonti onnistui. Seuraavat kohteet tuotiin:" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Ole hyvä ja lataa tiedosto kohdassa \"Tuo\" jatkaaksesi." - -msgid "plugins.importexport.native.results" -msgstr "Tulokset" - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Valitse vietävät teokset" - -msgid "plugins.importexport.native.export" -msgstr "Vie" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Lataa tuotava XML-tiedosto" - -msgid "plugins.importexport.native.import" -msgstr "Tuo" - -msgid "plugins.importexport.native.description" -msgstr "Tuo ja vie teoksia OMP-järjestelmän omassa XML-muodossa." - -msgid "plugins.importexport.native.displayName" -msgstr "Järjestelmän XML-lisäosa" diff --git a/plugins/importexport/native/locale/fr_CA/locale.po b/plugins/importexport/native/locale/fr_CA/locale.po new file mode 100644 index 00000000000..5a4b45fceb2 --- /dev/null +++ b/plugins/importexport/native/locale/fr_CA/locale.po @@ -0,0 +1,8 @@ +# Weblate Admin , 2023. +msgid "" +msgstr "" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" diff --git a/plugins/importexport/native/locale/fr_FR/locale.po b/plugins/importexport/native/locale/fr_FR/locale.po new file mode 100644 index 00000000000..319f948a6d1 --- /dev/null +++ b/plugins/importexport/native/locale/fr_FR/locale.po @@ -0,0 +1,66 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +# Germán Huélamo Bautista , 2023, 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-29 14:39+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.native.importComplete" +msgstr "L'import a réussi. Les éléments suivants ont été importés :" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Il manque à cette presse certaines informations requises pour les " +"métadonnées ONIX utilisées dans cet export. Merci d'accéder aux Paramètres de la presse et de compléter les données manquantes." + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Utilisation : {$scriptName} {$pluginName} [command] ...\n" +"Commandes :\n" +"\timporter [xmlFileName] [press_path] [user_name] ...\n" +"\texporter [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texporter [xmlFileName] [press_path] monograph [monographId]\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Plugin XML natif" + +msgid "plugins.importexport.native.description" +msgstr "Importer et exporter des livres au format XML natif d'OMP." + +msgid "plugins.importexport.native.import" +msgstr "Importer" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Téléverser le fichier XML à importer" + +msgid "plugins.importexport.native.export" +msgstr "Exporter" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Sélectionner les livres à exporter" + +msgid "plugins.importexport.native.results" +msgstr "Bilan" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Veuillez téléverser un fichier sous « Importer » pour continuer." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Collection inconnue {$param}" + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "L'image de couverture spécifiée n'a pas d'extension de fichier valide." + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Une image de couverture a été insérée sans indication de nom." diff --git a/plugins/importexport/native/locale/gl/locale.po b/plugins/importexport/native/locale/gl/locale.po new file mode 100644 index 00000000000..2fdb39aa094 --- /dev/null +++ b/plugins/importexport/native/locale/gl/locale.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-06-19 08:03+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Complemento XML nativo" + +msgid "plugins.importexport.native.description" +msgstr "Importar e exportar libros no formato XML nativo de OMP." + +msgid "plugins.importexport.native.import" +msgstr "Importar" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Cargar un arquivo XML para importar" + +msgid "plugins.importexport.native.export" +msgstr "Exportar" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Selecciona monografías para exportar" + +msgid "plugins.importexport.native.results" +msgstr "Resultados" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Carga un arquivo en \"Importar\" para continuar." + +msgid "plugins.importexport.native.importComplete" +msgstr "" +"A importación completouse correctamente. Importáronse os seguintes elementos:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Esta editorial non ten a información necesaria para os metadatos de ONIX " +"empregados nesta exportación. Vai a Configuración da " +"Editorial e complete os datos que faltan." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Series descoñecidas {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Uso: {$scriptName} {$pluginName} [command] ...\n" +"Comando:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" diff --git a/plugins/importexport/native/locale/hr/locale.po b/plugins/importexport/native/locale/hr/locale.po new file mode 100644 index 00000000000..2a7ac3720a6 --- /dev/null +++ b/plugins/importexport/native/locale/hr/locale.po @@ -0,0 +1,59 @@ +# Karla Zapalac , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-01-24 04:31+0000\n" +"Last-Translator: Karla Zapalac \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Izvorni XML dodatak" + +msgid "plugins.importexport.native.description" +msgstr "Uvoz i izvoz knjiga (OMP-ov izvorni XML format)." + +msgid "plugins.importexport.native.import" +msgstr "Uvoz" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Učitajte XML datoteku za uvoz" + +msgid "plugins.importexport.native.export" +msgstr "Izvoz" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Odaberite monografije za izvoz" + +msgid "plugins.importexport.native.results" +msgstr "Rezultati" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Učitajte datoteku pod \"Uvoz\" kako biste nastavili." + +msgid "plugins.importexport.native.importComplete" +msgstr "Uvoz je uspješno dovršen. Uvezeni su sljedeći elementi:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Ovom izdavaču nedostaju potrebne informacije za ONIX metapodatke koji se " +"koriste u ovom izvozu. Dodajte podatke koji nedostaju u postavkama izdavača." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Nepoznato {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Korištenje: {$scriptName} {$pluginName} [command] ...\n" +"Naredbe:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" diff --git a/plugins/importexport/native/locale/hu/locale.po b/plugins/importexport/native/locale/hu/locale.po new file mode 100644 index 00000000000..8b2bbfc7856 --- /dev/null +++ b/plugins/importexport/native/locale/hu/locale.po @@ -0,0 +1,61 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-31 11:57+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Alapértelmezett XML bővítmény" + +msgid "plugins.importexport.native.description" +msgstr "" +"Könyvek importálása és exportálása az OMP alapértelmezett XML formátumában." + +msgid "plugins.importexport.native.import" +msgstr "Importálás" + +msgid "plugins.importexport.native.import.instructions" +msgstr "XML fájl feltöltése az importáláshoz" + +msgid "plugins.importexport.native.export" +msgstr "Exportálás" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Exportálandó kiadványok kiválasztása" + +msgid "plugins.importexport.native.results" +msgstr "Eredmények" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Kérjük, a folytatáshoz töltsön fel egy fájlt az \"Importálás\" alá." + +msgid "plugins.importexport.native.importComplete" +msgstr "" +"Az importálás sikeresen befejeződött. A következő elemek importálása történt " +"meg:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Hiányzik néhány szükséges információ az ebben az exportban használt ONIX " +"metaadatokhoz. Kérjük, menjen a Kiadó beállítások " +"oldalra, és töltse ki a hiányzó adatokat." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Ismeretlen sorozat {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Használat: {$scriptName} {$pluginName} [command] ...\n" +"Parancsok:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" diff --git a/plugins/importexport/native/locale/it/locale.po b/plugins/importexport/native/locale/it/locale.po new file mode 100644 index 00000000000..d7a6566988f --- /dev/null +++ b/plugins/importexport/native/locale/it/locale.po @@ -0,0 +1,60 @@ +# Alfredo Cosco , 2021. +msgid "" +msgstr "" +"PO-Revision-Date: 2021-08-21 11:05+0000\n" +"Last-Translator: Alfredo Cosco \n" +"Language-Team: Italian \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Plugin XML nativo" + +msgid "plugins.importexport.native.description" +msgstr "Importa ed esporta libri nel formato XML nativo di OMP." + +msgid "plugins.importexport.native.import" +msgstr "Importa" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Carica il file XML da importare" + +msgid "plugins.importexport.native.export" +msgstr "Esporta" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Seleziona la monografia da esportare" + +msgid "plugins.importexport.native.results" +msgstr "Risultati" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Carica un file in \"Importa\" per continuare." + +msgid "plugins.importexport.native.importComplete" +msgstr "" +"L'importazione è stata completata correttamente. Sono stati importati i " +"seguenti elementi:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Mancano alcune informazioni richieste per i metadati ONIX utilizzati in " +"questa esportazione. Vai a Impostazioni editore e " +"inserisci i dettagli mancanti." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Serie sconosciute {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Utilizzo: {$scriptName} {$pluginName} [command] ...\n" +"Comandi:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" diff --git a/plugins/importexport/native/locale/mk/locale.po b/plugins/importexport/native/locale/mk/locale.po new file mode 100644 index 00000000000..657ec05afa4 --- /dev/null +++ b/plugins/importexport/native/locale/mk/locale.po @@ -0,0 +1,64 @@ +# Mirko Spiroski , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-11-21 10:41+0000\n" +"Last-Translator: Mirko Spiroski \n" +"Language-Team: Macedonian \n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Домашен XML додаток" + +msgid "plugins.importexport.native.description" +msgstr "Увезете и извезувајте книги во мајчин XML формат на ОМП." + +msgid "plugins.importexport.native.import" +msgstr "Увоз" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Поставете XML-датотека за увоз" + +msgid "plugins.importexport.native.export" +msgstr "Извоз" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Изберете монографии за извоз" + +msgid "plugins.importexport.native.results" +msgstr "Резултати" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Поставете датотека под „Увоз“ за да продолжите." + +msgid "plugins.importexport.native.importComplete" +msgstr "Увозот заврши успешно. Увезени се следниве ставки:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"На ова издание недостасуваат некои потребни информации за метаподатоците на " +"ONIX што се користат во овој извоз. Одете на Притиснете " +"Поставки и пополнете ги деталите што недостасуваат." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Непознати серии {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Користење: {$scriptName} {$pluginName} [command] ...\n" +"Команди:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Вклучена е насловна слика без специфицирано име." + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "Специфицирана е насловна слика со невалидна екстензија." diff --git a/plugins/importexport/native/locale/mk_MK/locale.po b/plugins/importexport/native/locale/mk_MK/locale.po deleted file mode 100644 index 69ac92f9fc2..00000000000 --- a/plugins/importexport/native/locale/mk_MK/locale.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-06 17:52+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Непознати серии {$param}" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "" -"На ова издание недостасуваат некои потребни информации за метаподатоците на " -"ONIX што се користат во овој извоз. Одете на Притиснете " -"Поставки и пополнете ги деталите што недостасуваат." - -msgid "plugins.importexport.native.importComplete" -msgstr "Увозот заврши успешно. Увезени се следниве ставки:" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Поставете датотека под „Увоз“ за да продолжите." - -msgid "plugins.importexport.native.results" -msgstr "Резултати" - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Изберете монографии за извоз" - -msgid "plugins.importexport.native.export" -msgstr "Извоз" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Поставете XML-датотека за увоз" - -msgid "plugins.importexport.native.import" -msgstr "Увоз" - -msgid "plugins.importexport.native.description" -msgstr "Увезете и извезувајте книги во мајчин XML формат на ОМП." - -msgid "plugins.importexport.native.displayName" -msgstr "Домашен XML додаток" diff --git a/plugins/importexport/native/locale/nb/locale.po b/plugins/importexport/native/locale/nb/locale.po new file mode 100644 index 00000000000..aa8db9779dc --- /dev/null +++ b/plugins/importexport/native/locale/nb/locale.po @@ -0,0 +1,51 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-20 02:01+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Programtillegg for Lokal XML" + +msgid "plugins.importexport.native.description" +msgstr "Importer og eksporter artikler og hefter i OJS lokale XML format." + +msgid "plugins.importexport.native.import" +msgstr "Importer" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Last opp en XML-fil for import" + +msgid "plugins.importexport.native.export" +msgstr "Eksporter" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Velg artikler" + +msgid "plugins.importexport.native.results" +msgstr "Resultater" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Last opp en fil under «Import» for å fortsette." + +msgid "plugins.importexport.native.importComplete" +msgstr "Importen var vellykket. Disse elementene ble importert:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Denne utgiveren mangler nødvendig informasjon om ONIX-metadataene som brukes " +"til denne eksporten. Gå til Press Settings og legg " +"inn den manglende informasjonen." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Ukjent serie {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" diff --git a/plugins/importexport/native/locale/nb_NO/locale.po b/plugins/importexport/native/locale/nb_NO/locale.po deleted file mode 100644 index b3abd443764..00000000000 --- a/plugins/importexport/native/locale/nb_NO/locale.po +++ /dev/null @@ -1,48 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-20 02:01+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Ukjent serie {$param}" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "" -"Denne utgiveren mangler nødvendig informasjon om ONIX-metadataene som brukes " -"til denne eksporten. Gå til Press Settings og legg " -"inn den manglende informasjonen." - -msgid "plugins.importexport.native.importComplete" -msgstr "Importen var vellykket. Disse elementene ble importert:" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Last opp en fil under «Import» for å fortsette." - -msgid "plugins.importexport.native.results" -msgstr "Resultater" - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Velg artikler" - -msgid "plugins.importexport.native.export" -msgstr "Eksporter" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Last opp en XML-fil for import" - -msgid "plugins.importexport.native.import" -msgstr "Importer" - -msgid "plugins.importexport.native.description" -msgstr "Importer og eksporter artikler og hefter i OJS lokale XML format." - -msgid "plugins.importexport.native.displayName" -msgstr "Programtillegg for Lokal XML" diff --git a/plugins/importexport/native/locale/pl/locale.po b/plugins/importexport/native/locale/pl/locale.po new file mode 100644 index 00000000000..c8e1ac45d76 --- /dev/null +++ b/plugins/importexport/native/locale/pl/locale.po @@ -0,0 +1,52 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-12-01 14:05+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Natywna wtyczka XML" + +msgid "plugins.importexport.native.description" +msgstr "Importuj i eksportuj książki dla OMP w natywnym formacie XML." + +msgid "plugins.importexport.native.import" +msgstr "\"Do importu\"" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Załaduj plik XML do importu" + +msgid "plugins.importexport.native.export" +msgstr "\"Do eksportu\"" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Wybierz monografie do eksportu" + +msgid "plugins.importexport.native.results" +msgstr "Wyniki" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Proszę załaduj plik \"Do importu\", aby kontynuować." + +msgid "plugins.importexport.native.importComplete" +msgstr "Import zakończony pomyślnie. Następujące pozycje zostały importowane:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"W tym wydaniu brakuje wymaganych informacji dla metadanych ONIX używanych do " +"eksportu. Proszę przejdź do Ustawienia wydania i " +"uzupełnij brakujące szczegóły." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Nieznane serie {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" diff --git a/plugins/importexport/native/locale/pl_PL/locale.po b/plugins/importexport/native/locale/pl_PL/locale.po deleted file mode 100644 index b0e9aa626d7..00000000000 --- a/plugins/importexport/native/locale/pl_PL/locale.po +++ /dev/null @@ -1,49 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-01 14:05+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Nieznane serie {$param}" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "" -"W tym wydaniu brakuje wymaganych informacji dla metadanych ONIX używanych do " -"eksportu. Proszę przejdź do Ustawienia wydania i " -"uzupełnij brakujące szczegóły." - -msgid "plugins.importexport.native.importComplete" -msgstr "Import zakończony pomyślnie. Następujące pozycje zostały importowane:" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Proszę załaduj plik \"Do importu\", aby kontynuować." - -msgid "plugins.importexport.native.results" -msgstr "Wyniki" - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Wybierz monografie do eksportu" - -msgid "plugins.importexport.native.export" -msgstr "\"Do eksportu\"" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Załaduj plik XML do importu" - -msgid "plugins.importexport.native.import" -msgstr "\"Do importu\"" - -msgid "plugins.importexport.native.description" -msgstr "Importuj i eksportuj książki dla OMP w natywnym formacie XML." - -msgid "plugins.importexport.native.displayName" -msgstr "Natywna wtyczka XML" diff --git a/plugins/importexport/native/locale/pt_BR/locale.po b/plugins/importexport/native/locale/pt_BR/locale.po index 9393feed42e..c81b440d8ce 100644 --- a/plugins/importexport/native/locale/pt_BR/locale.po +++ b/plugins/importexport/native/locale/pt_BR/locale.po @@ -1,9 +1,10 @@ +# Diego José Macêdo , 2024. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-30T12:01:00-07:00\n" -"PO-Revision-Date: 2021-02-02 23:15+0000\n" +"PO-Revision-Date: 2024-02-01 04:39+0000\n" "Last-Translator: Diego José Macêdo \n" "Language-Team: Portuguese (Brazil) \n" @@ -12,7 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.18.2\n" msgid "plugins.importexport.native.displayName" msgstr "Plugin XML Nativo" @@ -24,11 +25,17 @@ msgid "plugins.importexport.native.import" msgstr "Importar" msgid "plugins.importexport.native.import.instructions" -msgstr "Por favor, selecione um arquivo XML para carregar e pressione \"Iniciar Envio\". Quando o upload for concluído, pressione \"OK\" para importar o documento no OMP." +msgstr "" +"Por favor, selecione um arquivo XML para carregar e pressione \"Iniciar Envio" +"\". Quando o upload for concluído, pressione \"OK\" para importar o " +"documento no OMP." msgid "plugins.importexport.native.export" msgstr "Exportar" +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Selecione monografias para exportar" + msgid "plugins.importexport.native.results" msgstr "Resultados" @@ -36,7 +43,8 @@ msgid "plugins.inportexport.native.uploadFile" msgstr "Faça upload de um arquivo e clique em \"Importar\" para continuar." msgid "plugins.importexport.native.importComplete" -msgstr "A importação foi concluída com êxito. Os seguintes itens foram importados:" +msgstr "" +"A importação foi concluída com êxito. Os seguintes itens foram importados:" msgid "plugins.importexport.native.onix30.pressMissingFields" msgstr "" @@ -47,5 +55,18 @@ msgstr "" msgid "plugins.importexport.native.error.unknownSeries" msgstr "Série desconhecida {$param}" -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Selecione monografias para exportar" +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Uso: {$scriptName} {$pluginName} [command] ...\n" +"Comandos:\n" +"\timportar [xmlFileName] [press_path] [user_name] ...\n" +"\texportar [xmlFileName] [press_path] monographs [monographId1] " +"[monographId2] ...\n" +"\texportar [xmlFileName] [press_path] monograph [monographId]\n" + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Uma imagem de capa foi incorporada sem especificar um nome." + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "" +"Foi especificada uma imagem de capa com uma extensão de arquivo inválida." diff --git a/plugins/importexport/native/locale/pt_PT/locale.po b/plugins/importexport/native/locale/pt_PT/locale.po new file mode 100644 index 00000000000..09ab6ed631d --- /dev/null +++ b/plugins/importexport/native/locale/pt_PT/locale.po @@ -0,0 +1,65 @@ +# Carla Marques , 2023. +# José Carvalho , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-31 11:06+0000\n" +"Last-Translator: José Carvalho \n" +"Language-Team: Portuguese (Portugal) \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.native.import" +msgstr "Importar" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Enviar ficheiro XML para importar" + +msgid "plugins.importexport.native.export" +msgstr "Exportar" + +msgid "plugins.importexport.native.results" +msgstr "Resultados" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Faça upload de um ficheiro em \"Importar\" para continuar." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Série desconhecida {$param}" + +msgid "plugins.importexport.native.displayName" +msgstr "Plugin XML Nativo" + +msgid "plugins.importexport.native.description" +msgstr "Importar e exportar livros em formato XML nativo do OMP." + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Selecione os livros para exportar" + +msgid "plugins.importexport.native.importComplete" +msgstr "Importação concluída com sucesso. Os seguintes itens foram importados:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Esta editora não apresenta algumas informações necessárias para os metadados " +"ONIX usados nesta exportação. Vá a Configurações da " +"Editora e preencha os detalhes em falta." + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Uso: {$scriptName} {$pluginName} [command] ...\n" +"Commands:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] [monographId2] " +"...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Foi introduzida uma imagem de capa sem ser especificado um nome." + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "Foi definida uma imagem de capa com uma extensão inválida." diff --git a/plugins/importexport/native/locale/ro/locale.po b/plugins/importexport/native/locale/ro/locale.po new file mode 100644 index 00000000000..013daa22f97 --- /dev/null +++ b/plugins/importexport/native/locale/ro/locale.po @@ -0,0 +1,67 @@ +# Iusan Daria , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-04 19:39+0000\n" +"Last-Translator: Iusan Daria \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Plugin XML nativ" + +msgid "plugins.importexport.native.description" +msgstr "Importă și exportă cărți în formatul XML nativ OMP." + +msgid "plugins.importexport.native.import.instructions" +msgstr "Încărcați un fișier XML pentru a importa" + +msgid "plugins.importexport.native.export" +msgstr "Exportați" + +msgid "plugins.importexport.native.import" +msgstr "Importați" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Selectați o monografie pentru a exporta" + +msgid "plugins.importexport.native.results" +msgstr "Rezultate" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Vă rugăm încărcați fișierul sub comanda \"Importă\" pentru a continua." + +msgid "plugins.importexport.native.importComplete" +msgstr "" +"Importarea s-a completat cu succes. Următoarele elemente au fost importate:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Acestei edituri îi lipsesc informații necesare pentru metadata ONIX " +"utilizată în acest export. Vă rugăm accesați setăriși " +"completați detaliile lipsă." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Serie necunoscută {$param}" + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "" +"A fost specificată o imagine de copertă cu o extensie de fișier invalidă." + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "O imagine de copertă a fost integrată fără a se specifica un nume." + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Utilizați: {$scriptName} {$pluginName} [command] ...\n" +"Comenzi:\n" +"\tmport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] [monographId2] " +"...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" diff --git a/plugins/importexport/native/locale/ru/locale.po b/plugins/importexport/native/locale/ru/locale.po new file mode 100644 index 00000000000..f5e9008078a --- /dev/null +++ b/plugins/importexport/native/locale/ru/locale.po @@ -0,0 +1,52 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:22+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Модуль собственный XML" + +msgid "plugins.importexport.native.description" +msgstr "Импортирует и экспортирует книги в собственном XML-формате OMP." + +msgid "plugins.importexport.native.import" +msgstr "Импорт" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Загрузите файл XML для импорта" + +msgid "plugins.importexport.native.export" +msgstr "Экспорт" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Выберите монографии для экспорта" + +msgid "plugins.importexport.native.results" +msgstr "Результаты" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Пожалуйста загрузите файл в раздел «Импорт», чтобы продолжить." + +msgid "plugins.importexport.native.importComplete" +msgstr "Импорт успешно завершен. Следующие элементы были импортированы:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"У издательства отсутствует некоторая необходимая информация для метаданных " +"ONIX, используемых в данном экспорте. Пожалуйста, перейдите к Настройки издательства и заполните недостающие данные." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Неизвестные серии {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" diff --git a/plugins/importexport/native/locale/ru_RU/locale.po b/plugins/importexport/native/locale/ru_RU/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/importexport/native/locale/ru_RU/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/importexport/native/locale/sl/locale.po b/plugins/importexport/native/locale/sl/locale.po new file mode 100644 index 00000000000..1e9aa39e5d5 --- /dev/null +++ b/plugins/importexport/native/locale/sl/locale.po @@ -0,0 +1,51 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:26+00:00\n" +"PO-Revision-Date: 2020-02-08T17:42:26+00:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Domači vtičnik XML" + +msgid "plugins.importexport.native.description" +msgstr "Uvozi in izvozi knjige v domačem formatu XML sistema OMP." + +msgid "plugins.importexport.native.import" +msgstr "Uvozi" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Naložite datoteko XML za uvoz" + +msgid "plugins.importexport.native.export" +msgstr "Izvozi" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "" + +msgid "plugins.importexport.native.results" +msgstr "Rezultati" + +msgid "plugins.inportexport.native.uploadFile" +msgstr " Naložite datoteko v zavihku \"Uvozi\" za nadaljevanje." + +msgid "plugins.importexport.native.importComplete" +msgstr "Uvoz uspešno zaključen. Uvoženi so naslednji elementi:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Založbi manjka nekaj informacij za metapodatke ONIX, uporabljene pri tem " +"izvozu. Pojdite v Nastavitve > Potek dela > Produkcija in izpolnite " +"manjkajoče podrobnosti." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Neznana zbirka {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" diff --git a/plugins/importexport/native/locale/sl_SI/locale.po b/plugins/importexport/native/locale/sl_SI/locale.po deleted file mode 100644 index 3e2f559be6b..00000000000 --- a/plugins/importexport/native/locale/sl_SI/locale.po +++ /dev/null @@ -1,42 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-02-08T17:42:26+00:00\n" -"PO-Revision-Date: 2020-02-08T17:42:26+00:00\n" -"Language: \n" - -msgid "plugins.importexport.native.displayName" -msgstr "Domači vtičnik XML" - -msgid "plugins.importexport.native.description" -msgstr "Uvozi in izvozi knjige v domačem formatu XML sistema OMP." - -msgid "plugins.importexport.native.import" -msgstr "Uvozi" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Naložite datoteko XML za uvoz" - -msgid "plugins.importexport.native.export" -msgstr "Izvozi" - -msgid "plugins.importexport.native.results" -msgstr "Rezultati" - -msgid "plugins.inportexport.native.uploadFile" -msgstr " Naložite datoteko v zavihku \"Uvozi\" za nadaljevanje." - -msgid "plugins.importexport.native.importComplete" -msgstr "Uvoz uspešno zaključen. Uvoženi so naslednji elementi:" - -msgid "plugins.importexport.native.onix30.pressMissingFields" -msgstr "Založbi manjka nekaj informacij za metapodatke ONIX, uporabljene pri tem izvozu. Pojdite v Nastavitve > Potek dela > Produkcija in izpolnite manjkajoče podrobnosti." - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Neznana zbirka {$param}" diff --git a/plugins/importexport/native/locale/tr/locale.po b/plugins/importexport/native/locale/tr/locale.po new file mode 100644 index 00000000000..4ac41171a05 --- /dev/null +++ b/plugins/importexport/native/locale/tr/locale.po @@ -0,0 +1,57 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-04-21 13:43+0000\n" +"Last-Translator: Hüseyin Körpeoğlu \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Doğal XML Eklentisi" + +msgid "plugins.importexport.native.description" +msgstr "Kitapları OMP'nin doğal XML biçiminde içe ve dışa aktarın." + +msgid "plugins.importexport.native.import" +msgstr "İçe Aktar" + +msgid "plugins.importexport.native.import.instructions" +msgstr "İçe aktarmak için XML dosyası yükleyin" + +msgid "plugins.importexport.native.export" +msgstr "Dışa Aktar" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Dışa aktarılacak risaleleri seçin" + +msgid "plugins.importexport.native.results" +msgstr "Sonuçlar" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Devam etmek için lütfen \"İçe Aktar\" altında bir dosya yükleyin." + +msgid "plugins.importexport.native.importComplete" +msgstr "İçe aktarma başarıyla tamamlandı. Aşağıdaki öğeler içe aktarıldı:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"Bu yayınevinde, bu dışa aktarmada kullanılan ONIX üst verileri için bazı " +"gerekli bilgiler eksik. Lütfen Yayınevi Ayarları'na " +"gidin ve eksik ayrıntıları doldurun." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Bilinmeyen dizi {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Kullanım: {$scriptName} {$pluginName} [command] ...\n" +"Komutlar:\n" +"\timport [xmlFileName] [press_path] [user_name] ...\n" +"\texport [xmlFileName] [press_path] monographs [monographId1] [monographId2] " +"...\n" +"\texport [xmlFileName] [press_path] monograph [monographId]\n" diff --git a/plugins/importexport/native/locale/uk/locale.po b/plugins/importexport/native/locale/uk/locale.po new file mode 100644 index 00000000000..ea6f1632529 --- /dev/null +++ b/plugins/importexport/native/locale/uk/locale.po @@ -0,0 +1,65 @@ +# Petro Bilous , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-11-09 13:38+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.native.displayName" +msgstr "Плагін власного XML" + +msgid "plugins.importexport.native.description" +msgstr "Імпортувати й експортувати книги у власному для OMP XML-форматі ." + +msgid "plugins.importexport.native.import" +msgstr "Імпорт" + +msgid "plugins.importexport.native.import.instructions" +msgstr "Вивантажте файл XML для імпорту" + +msgid "plugins.importexport.native.export" +msgstr "Експорт" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "Виберіть монографії для експорту" + +msgid "plugins.importexport.native.results" +msgstr "Результати" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "Будь ласка, вивантажте файл через \"Імпорт\", щоб продовжити." + +msgid "plugins.importexport.native.importComplete" +msgstr "Імпорт виконано успішно. Було імпортовано такі елементи:" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" +"У цьому е-видавництві відсутня деяка необхідна інформація для метаданих " +"ONIX, які використовуються в цьому експорті. Будь ласка, перейдіть до Налаштування е-видавництва і введіть відсутні дані." + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "Невідома серія {$param}" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" +"Використання: {$scriptName} {$pluginName} [command] ...\n" +"Команди:\n" +"імпорт [xmlFileName] [press_path] [user_name] ...\n" +"експорт [xmlFileName] [press_path] монографії [monographId1] [monographId2] " +"...\n" +"експорт [xmlFileName] [press_path] монографія [monographId]\n" + +msgid "plugins.importexport.common.error.coverImageNameUnspecified" +msgstr "Зображення обкладинки було вбудовано без вказівки імені." + +msgid "plugins.importexport.common.error.invalidFileExtension" +msgstr "Вказано зображення обкладинки з недійсним розширенням файлу." diff --git a/plugins/importexport/native/locale/uk_UA/locale.po b/plugins/importexport/native/locale/uk_UA/locale.po deleted file mode 100644 index 038852e8048..00000000000 --- a/plugins/importexport/native/locale/uk_UA/locale.po +++ /dev/null @@ -1,44 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-27 23:20+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.native.error.unknownSeries" -msgstr "Невідомії Серії {$param}" - -msgid "plugins.importexport.native.results" -msgstr "Результат" - -msgid "plugins.importexport.native.exportSubmissionsSelect" -msgstr "Оберіть Монографії для експорту" - -msgid "plugins.importexport.native.export" -msgstr "Експортувати" - -msgid "plugins.importexport.native.import.instructions" -msgstr "Завантажте XML файл для імпорту" - -msgid "plugins.importexport.native.import" -msgstr "Імпортувати" - -msgid "plugins.importexport.native.importComplete" -msgstr "" -"Імпортування успішно завершено. Нижченаведені елементи були імпортовані:" - -msgid "plugins.inportexport.native.uploadFile" -msgstr "Будь ласка, завантажте файл у розділ \"Імпортувати\" щоб продовжити." - -msgid "plugins.importexport.native.description" -msgstr "Імпортує та експортує статті та випуски у власний XML-формат OJS." - -msgid "plugins.importexport.native.displayName" -msgstr "Модуль \"Власний XML\"" diff --git a/plugins/importexport/native/locale/vi/locale.po b/plugins/importexport/native/locale/vi/locale.po new file mode 100644 index 00000000000..40b9aaf52e0 --- /dev/null +++ b/plugins/importexport/native/locale/vi/locale.po @@ -0,0 +1,42 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "plugins.importexport.native.displayName" +msgstr "" + +msgid "plugins.importexport.native.description" +msgstr "" + +msgid "plugins.importexport.native.import" +msgstr "" + +msgid "plugins.importexport.native.import.instructions" +msgstr "" + +msgid "plugins.importexport.native.export" +msgstr "" + +msgid "plugins.importexport.native.exportSubmissionsSelect" +msgstr "" + +msgid "plugins.importexport.native.results" +msgstr "" + +msgid "plugins.inportexport.native.uploadFile" +msgstr "" + +msgid "plugins.importexport.native.importComplete" +msgstr "" + +msgid "plugins.importexport.native.onix30.pressMissingFields" +msgstr "" + +msgid "plugins.importexport.native.error.unknownSeries" +msgstr "" + +msgid "plugins.importexport.native.cliUsage" +msgstr "" diff --git a/plugins/importexport/native/locale/vi_VN/locale.po b/plugins/importexport/native/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/importexport/native/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/importexport/native/native.xsd b/plugins/importexport/native/native.xsd index ac2382e1247..33b3849bc8d 100644 --- a/plugins/importexport/native/native.xsd +++ b/plugins/importexport/native/native.xsd @@ -42,8 +42,25 @@ + + + + + + + + + + + + + + + + + @@ -52,7 +69,6 @@ - @@ -80,6 +96,7 @@ + diff --git a/plugins/importexport/native/sample.xml b/plugins/importexport/native/sample.xml index 73c22f709ae..735f478bafe 100644 --- a/plugins/importexport/native/sample.xml +++ b/plugins/importexport/native/sample.xml @@ -4,105 +4,105 @@ 10 - fperini, Internet, openness and the future of the.pdf + fperini, Internet, openness and the future of the.pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - fperini, Imagining the Internet: Open, closed or .pdf + fperini, Imagining the Internet: Open, closed or .pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - fperini, The internet in LAC will remain free, pu.pdf + fperini, The internet in LAC will remain free, pu.pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - fperini, Free Internet?.pdf + fperini, Free Internet?.pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - fperini, Risks and challenges for freedom of expr.pdf + fperini, Risks and challenges for freedom of expr.pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - + 10 - Enabling Openness: The future of the information society in Latin America and the Caribbean - <p>In recent years, the Internet and other network technologies have emerged as a central issue for development in Latin America and the Caribbean. They have shown their potential to increase productivity and economic competitiveness, to create new ways to deliver education and health services, and to be driving forces for the modernization of the provision of public services.</p> - + Enabling Openness: The future of the information society in Latin America and the Caribbean + <p>In recent years, the Internet and other network technologies have emerged as a central issue for development in Latin America and the Caribbean. They have shown their potential to increase productivity and economic competitiveness, to create new ways to deliver education and health services, and to be driving forces for the modernization of the provision of public services.</p> + Information society ICT - Fernando - Perini - University of Sussex + Fernando + Perini + University of Sussex CA fperini@mailinator.com - Robin - Mansell + Robin + Mansell GB rmansell@mailinator.com - Hernan - Galperin + Hernan + Galperin AR hgalperin@mailinator.com - Pablo - Bello + Pablo + Bello CL pbello@mailinator.com - Eleonora - Rabinovich + Eleonora + Rabinovich AR erabinovich@mailinator.com - Internet, openness and the future of the information society in LAC + Internet, openness and the future of the information society in LAC - + - Imagining the Internet: Open, closed or in between? + Imagining the Internet: Open, closed or in between? - + - The internet in LAC will remain free, public and open over the next 10 years + The internet in LAC will remain free, public and open over the next 10 years - + - Free Internet? + Free Internet? - + - Risks and challenges for freedom of expression on the internet + Risks and challenges for freedom of expression on the internet - + @@ -112,107 +112,107 @@ 8 - dkennepohl, Introduction.pdf + dkennepohl, Introduction.pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - dkennepohl, Chapter 1: Interactions Affording Distan.pdf + dkennepohl, Chapter 1: Interactions Affording Distan.pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - dkennepohl, Chapter 2: Learning Science at a Distanc.pdf + dkennepohl, Chapter 2: Learning Science at a Distanc.pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - dkennepohl, Chapter 3: Leadership Strategies for Coo.pdf + dkennepohl, Chapter 3: Leadership Strategies for Coo.pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - dkennepohl, Chapter 4: Toward New Models of Flexible.pdf + dkennepohl, Chapter 4: Toward New Models of Flexible.pdf JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nEWKPQvCQBBE+/0VWwsXZ9fcR+BYSEALu8CBhdip6QTT+Pe9SxMGHsObQSf8oy+DHWoNopVxaFxffDvwZxtb1oWmQj50iaP29VCefLwIi3J53zPEfIaaixkn0wZXRW8pwyMgIpnsB0HG0MS4icke5UrnQjPN/AcyaR+4CmVuZHN0cmVhbQplbmRvYmoKCjMgMCBvYmoKMTI0CmVuZG9iagoKNSAwIG9iago8PC9MZW5ndGggNiAwIFIvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aDEgMjQ0ODQ+PgpzdHJlYW0KeJztfHtcXMW9+HfOOfuEZZeFXd7sWZbltcsbQkhQlvDIgxAwIQlEERZYYA2wy+5CxJsYrE1jiJq0tVb7MLE1ao02GxItUVvR1lpb28Rba9XbmvhrvLWPtGkbbXs17P3OnAOBmHp77+/+8ft8ftmT78x3Zr4z853va2Y42Q0FRj0QDRPAg6tnyO3P0JmNAPAKADH2jIXER37WgmVyBkD1vT5//9BdX9vxCwDNQwCKYP/geN9Dh433AOgTAYzxAx5376eWuPQAVieOsWQAK9bPjquw3IvlzIGh0M3383cWYvkOLBcN+nrcDyVlJ2N5GsvJQ+6b/V83FCmw/BqWxWH3kOf6H+oRt14AKBj1+4KhXsiMALQM0nZ/wOP/a3bf+1i+U+IBCD70E42okpY5XlAoVWqNNgr+v/wo7kZYCxaEVP4eSAGIvINwFuG92TWRjxRbwTZ7U+QMH4fET8gAYId74QBkwnlSDC/ADKyBh6EGWuAeWAkn4QjEwDj5EQhggzp4FOzEAhw0QAJRwP3wJtwAAXgXzkAONMLbxIjj1IMfzFAZ+Q2mjXBH5ARSaaEWvglPk0GyAQoRX8U5iQNn3heZgQTIifw48gaWvgrvkszIUViF2L9DLGTDTvgsGOEm+GHkI+Q0E7rhEbKd/Aas0AV7hTJhMrIVlsOT8DPSiFgTjCve0DwJg9jr6ySBzEROR34N3xEIeHCkT8EdyPEUzHAFfK3iIIiQBdfAOnBj67/AmySOFPOuSHZkReR+rH0E/sw5uO/zKuTDAauhE+6CB1Ear8NZeJ9EkXLyVXIYn1fJHxRvIG+NMAq3oG99FaX3CDwOJ0gxKeYSuASUVgLkwkZs2weHcP5jcIo0knYyQ57nDymKZqsj8RFT5NeRCORBG3J4AJ7HOS6QIqTBGfgMPiSkCyFFycXbcIW98BU4Ba8iH2+j3N+Hv5E8fN7hbuV2RjZHHo28i7yowQJL4TrYAj4Yg23wNdTqC/A9+BP5kNMg5UnhRcUtivORz6Fss2AF8t6M1Btw7L2opSmYxud1XGUsEXEVS8k6sp70k33kXjJN3iRvckrOyo1wv+XD/I/4XwhLFIrIMhzJDOk4rw02wwBq4FaU9udwvY/Ci/AyMZEsko8reh37f8At5+rw+Tp3knub38XvEz5SfGb2zOzvZj+MTIIKrWwlymEUHkMp/JGYkYdcchMJkl8h5/u543wMb+BtfDlfw7fy7fwd/D38D/ifCAHhsPCWYrXCrTiscs8Oz74aaYx8GmiUUCJf2eCEMqhA++lDa9qK/PnxCcB2uA0m4W60l8/BQTiM634OXoafwS/h96gBIFbk2YuzD6HV7SJ343M/eZw8T14kL5N3yAf04TLwyeGWcNVcLdfA9XO78LmHO8W9zr3Hp/I9/E5+Ap8H+Kf4NwUQBCGiKMFnlWKv4hHlj1Q5qlWqbvUrH527mHex/eLbszCbPHv97L2zz8/+OrIpMo782yEfCpDT3cjl/WiDh/B5DC3xKfg+xu6fM17/TDiiQItPJDa0BidqrZqsJKvxaSLX4bMRn81kCz5u0k0G8NlJJsinyO3k0+Qu8gX23IdrO0S+QZ7C51vkaXx+Rk6Tfye/JX/m0Ig5Hq3ZzmVzhVwlrrSWW8k1c+vx6ed8+Pi5ADeGGnqEO8ad4F7n43g7n8+7+RH+fv6b/Av8a/zfBU5wCoVClbBJ6BduF04KrwpvCB8qLIp6xYDiAcULyhRlmXKj8iblfcojyveUH6mUqhZVt2q76jVVRG3HaPUSrvvJRSGvUHmSBBXxws3cafSLRN6v2E02osSUXCs/yN/N/6uij5znRfIWmeS9/NbI1/kG7m+8j2ziniMZvEWxjO+DOyFCDnPvcBe4Xwsm0sr9huQInyXf4nx8LadkcfWngkm4XfEeAPdzWMbtIDPci/zt/O2Rb8MyxQPktOIB7lUQhTNcHJxGr97NfRE7/YTzcnuhTShTfAhelPs3FDejvK/l7iB5/GvCA/Aub+P+Qs6TezFq/JisETK5G7lKchgj7kWSDufICPjJF8BFniG/JNNAyKP8I2QtF43aCnM6UoFb3495K3mN10I75ZFkcSbSwp3nNvLPKk/x5YRglPhXuIXwpAhtZ+4zC8PoAfdw2RjT6jGa/JSUQCJ8EeP9hdlnacRWvKHYi3b2IO+E9VAEHdyPYBn6xrv4tMFnoASeRhu8A4q4+2B7ZIL0YtxvwvjJwTS5CQpJFEbLBORtJ+4XZi4DY2Enzvo3jP8/xKjfSP4A24iInjUDOQJtuVOox8jUhfF3Lz690IGlr8DnlE8qfgrNJAFAEGcfQCv/BdyIe86vcP5kqEL+tsCDghO5FjEyj2CPr8yuAhc+n4EfEQ52IM/Xop+3CKsw8t4buQlX6MU9ai3uiS+DN/JFqEXdrY/cHtkLnZEHIzdAP2yIPIrxdywyBUtgt6Kd26RwCGUYY18m38P96N/IXozbq+AtjEd2kgi/xeebyNG1imdgUvg5xs7qyJ2Rn4EJ5ZGBEurGXfQsDMEfUG6r+BkonV3HHY008H7coU7DdZFHIhaihYHIIEbeZ+GQSoGxZwLSFYdcLlf1tddULV9WubRiSXlZaUlxUWFBvtORl5uTnWXPtGVYRUt6WmpKclJigjk+zhhr0MfooqO0GrVKqRB4joCz3tbQJYazusJClm3Vqnxatrmxwr2goissYlXDYpqw2MXIxMWULqTsu4zSJVG65imJQayCqnynWG8Twz+us4nTZMt1bYjfVWdrF8PnGN7E8P0M1yFutWIHsT5xoE4Mky6xPtwwNjBZ31WHwx2N0tbaaj3afCcc1UYhGoVYOMHmP0oSriUM4RLqlx3lQK1DpsLJtrr6cJKtjnIQ5u317t5wy3Vt9XUpVmt7vjNMants3WGwrQjrHYwEatk0YWVtWMWmEb10NbBXPOqcmbxz2gDdXY7oXluv+4a2MO9up3PEOnDeunDCLWcTLxVxcGNt2+6FrSn8ZH2iV6TFycndYvjgdW0LW600bW/HMcKcvaFrsgEnvhNF2LhBxLm4Xe1tYbILJxTpOuiapNV5bPW0pusmMayxrbANTN7UhYpJngzD+nHrVHKy60TkDCTXi5OtbTZruDrF1u6uSz0aD5Prx48lucSkxS35zqOGWEmsR2P0MhKtW4h45tsYxsgp1rh+Xq6EcmRbjeYQFntE5KTNhmtaShPPUpjsWYpk+Gkn2Cvci/rwhjW1XZOGZVhvoP3DCrvBJk6+D6h/27nfL65xyzVKu+F9oCi1knlDw/Y5POxwhPPyqIGoalGjyOO1rFye7xyb5sI2v0HEDMUHLShbd/uyQhS+1UrVu3faBd1YCE9c1yaVRehOmQJXoaM9zHXRlpm5FtNG2jIx1zLfvcuGdnyc3UZMYXXW/D+9wRxXP7AsTMyf0OyR2hs32Bqv29Im1k92ybJtbF1UktqXzrfJGJEaUOBhwY6SWm1D01u/pY1W4D+FvcFW7+1aha6GPIbjatv4FK5dwrgUng2F9nvD/Mi00BZNxxLsSmb/vdMqNRowqyFiQ9jQtUpK27VW6z/ZaTpynvZi2aVu8prCyxyLy8sXlRexFz3JI8NCFtfYumVyUruorQGD1eRkg01smOyadE9HJrptosE2eYJv49sm/fVdc+qfjjy9NyXccGc7LmKALMvHbZ3qRoEP3oxV0HSUI89w38Fzo4p7bgoUwjT3neM8aFUUeZJAklqpeA7bOeBJLmjIVnIjJDoMH1RdrFpnuFDVdLEKqhE3fIRJcZE11hprx4TgjviRyM985FLAh3hamMH+Npx1HG9rZrzPnHRdH5USlfYZwxcMPzMoxgxj8bsN98Xdb3o55eW01wzqxFhjfFo6rzKR3cl3pHM5aqUlBawZKkuKzmpLsCZZcmJidFxSjtkM6tSqZiMBo8EoGouMLqPCuNo2HZlxJVeXu2xEtBG/7aDtjI23WRMyVMoHMtw9iQ6Z8SZDx0jA8UFHoOkcrsFwjkJsZaXDUVxUO+5KTU7Xmwz2+Kx0feomkmzCJC3WsomkxCVtAoeDOPBz223QMUICHSOl5aUluIPFlmVn2WzlVlEwmgwqpTXbXFoCsQawZahspZsyzanZTaVcDp6yr3n+8ednR/9t56b3SMnsT85vCdorrEF+cKfotE/Ofuens+9+57XuVNKAZ9wkUpdGz/Vc5Cx/Ee+5dviFq5xkd+k6lojZXdn+7HC2UBZVYVkmrrKsEhXJ6rjm9MRsm7U53Z5tU2eTGlW6uk6Msqepp0m9K04LdntSUqIyzRkTo43SRkVZce/qd8VgACJ64icHyEkikGnu2y67MSk502hsidsfx01gEo7jIc4QJyIyE3cqThnXlfXCTiZLlCLKEm3gYscIWkGVoWpOnPQ5F2usrHz/3EfkfVmwhpRUfWyqPjkVDLEphrRUcBBDFRMl6XCQ2HgzCq0iQWErVyptGVlZKNSsLFW5FRtKS5ZUYCm7nO/RW82W7JjZP+SPba9vGnGmVqwiNe3VjqHGyi38PRd/dmBlaqxt5IWJFe13TpD7a0pSiP3ilydalqzlVOsqODvKMxZAWcQfgc2kzpVapjrV/kczP9FOYtupZB06sr+diGoxNz1xmvvoeEZFbnoxIq6ojLW56SvXZMTmpidM8zHHbY7c9KJpXnfcVpOb3oCI61rbxuymmtb0jXXq3IomV2VujhpU9pWbNquqnAq7M1obpVIKCtXKhuKixARte0JCsiE201okEr8YFjlURrlLX5Fb4MhcWlRB/BXhCq6C1pmbNtdkrl1raWpp4iaa9jdx0GRo4prQ0p+KN5c1dbW1T3Nbjlkf3pk4TXp3ORzrLjjm1XIBkYtnpaxqXb2n7t9RP/RTzf41naO6ijUmVBJUFciqoh+mrviMzGi9zm7Lyoy2ppIYfUaMPZUwlVH7JwFApY10kCUVS5aUlpgTpNRsio1PQEWarMwx5lwjQ6lSJTANY0PJpWq8+1yqlSppbba9lLT0GvMHSjdtN/Xf3bh6xGrWaZdcM1sVt9yaoBVSsjeVb13LcaZlDbPFayujFFZn85LyDflJxY2zy6tLkjWq9OTUbD2Jd3C/79Vn5fV23tzYuHHZ9tmxTaLZkpmZYLDFtpBJf4GrfFWUY7bxxgKszMyMXY91xa40Z8WsacuSlMzMlOUbyY1fdFqT9Jl+6ovRsw38BfTFEjLoOqwxGKOqYxxfyOXiygrMvUtuV+xSchqNwqhOUidrHPHJWZpMY2ZylmMpWWIsT1lpHNAMaL1Jfck9KQPOm9Xj2vGkbcmhlJude7R7ku6D+zRfTL7X8QycKntXadNo1A6HMy9PS9RcOolLik+PA2dJOhi1senGLLWYlJxclKeNRwKnw5GpUcdrHHnYJS9ZI2jVeIxOTsKjstoWZzTiDUmZTeNiDHKbXWirTNOXoe0lTRO1K2WflpzWntdyXVq/9o9aXrujWtOs6dTwmh0YNGJcaY7X9SLRiwfQPvd1Okmhs9rJOZNKy75B7Y3aGobQsx0jZy9e6LjQ0TFyUbaxpotnHVIQkGwroXK3usARs8Pwvd0xBYkOzKnBJYLhHDHMfDxVGdRVatxTSAcZcWBwcMRZTWhBpviEuDi8LFATKbealEo0HsJCRXkZ2l4CixIVJCubPtHksCk/33r6x7EqdYaD5NlzEjVJs3uXHLlu+dqKImtljjZ9ZWbN7Lf01iRDQil/jz07Lbt+toT8R26OUROls9uFRGtM9UfDu+6oc+aVmvXXth/gjlkKbNGGaNzR6iJnBYXibrBAPik4AYWRmWMrV5YVUjGvcBSUdRVuF7YrJoWJwiOFM4UqV+FEIQeF5jyTY6Nio7rVca9KtUpFxMIK7UrtJu19wiN5BwtVM4XnHZwogmh9Gk+4UZEzrvoqsVm8UezTDoq3iAfggPiY6oTq+3lRWeq47OgaY3pcnSkt21yTmp5WZ8FuUYLThEFeo7I4idNp4aMsEGWNZlHeaOoyT5iPmHmLeb+ZM/8ut0WJvB7LKSij+bdWlitrC2qlmO5wNJ27GOig4Rw/GC/OBarPVccmVBpYfAApYwECTVtQZ9uz1LkiOARMclR2keQpnCLI+ySN7Uvxg3ECcLsc6XA47LLGjKix8rI5b18Q/GMLOBoXTDTqcy/VTqy598zfvjverBcTkzE6x+bjBpCSHzV7vkBZ1VPYVn99ePD6/oZrPnzxRbKy6RtfXZVssPk//OWDbBt4mbxR569sHvjBD3+Opx+ox530BEZ+PaSRNle9ccJEHjE/ZX6RvKz5XtqbGqXx11qySlNv3mzaRe7U7NG/maKyuErKBUst7gwHLOT7ppeTOZeFrFYb7KBKsKujjAJVuQM9q1kgLoGcommL0CX4hf1CWFAKv492YaMr+kA0F12bXtvIRBxAEXfQE0hjOGdDI17gthyNTl991CKsxhPttyE6MgMCgiUyg6Jrr217FpL5EjxXxfMlvzH8JmVBEQN4O6B6zjF9LCFpRntMFmdPzdLalVmx+ngRV5osErMGsUQVYnE6g0hSeExMUQkiJCkwoQGfOOY/GNkJ8uYYQferbXPFjnKjylu0t8TcYrzZPJo4mqruaO+ADjwJuzSphtjKFAQTnniPRlXSkdoJOqIpnio5m/rlkoQMJeoStc08l4NTt24dO7nz5C39O17ZUL51xYFPuW/1ruSPPLD7yL98NHFo7xO3/n1bTfUD238w+/bB7164s4tG3QbU2xrUm5V86rhaIEZ2zAvm5ZeBjWomQbdZwaXGtQobFBuUraq2lLZUVb9iTDEBE9bjKS+Kp8Qz8K5CU0FWkk2JG1M7bV2JXaljiYHUSePdcftj9yc+TB7ijtiOkefJS6qXkn6jPpv6W/ECSVRya4ybjXste8UJ23mbKlYkz6JjigiWyJkpSINpvsFVZLCSLuuElQOrwSpaW6xdVr91v/WgNWydsZ6ynrGet+qsfWmn9UT/khl9M2068sZUfCXNXEuNlWnFfJT1FUs0aY7ehyZSaIAicEEX+GE/hGEGzoCGVnDwWDD59mSuJZkcSCbJ0wTN6rwSI7tBKSqLlC6lQlmbUXuC+yxIBjaCBhYYuTjScXYkgEfccw5H9blzI+zAdtZYWVxEXZI5ZQdu46hr1OZxMCRWpqAin4qrVBgMlQSFPGWoFDE7aqiUjaSdjLCIy5WXAe72qGeq5ixpJ2cei1s+v8b+xu1feY+Q47u/Wexcnh4bZbNd23vNdQ/u6V5XUUZuePK7RHn6DRKzrymrMMs0Zklf0/3gQx/WFoxTH12Lut7AhyEe0rhaV5KxM7EjqQu64l/nFUliamUCgtmVWmmhJqCtXVOmZs5pYdEsp4xVX59XUJaiTNK0xd1o7kzYknh9sorwGqVKo45WmFYr93B3KndHTxp2pX2dO5z4ZNxr3Jv6twwXuL/wcUa8FqkNuP10qbrUftWEao/medUP9OdV0QJR6T7N8RoampUYmmuXaBq4lZpmSyvXqunmAtyeuD1J98c9pHlIO61+UhPWvsT9mjsTfUEbrz6lIqA6peJE1X7VQVVYJah2CPFQZDZRXuOMlcZO007TAdNpk2AypfxUIBhSTqGFYPbeVBzN3nCtMlYKxVFRN6SQFHusSvWK2pyTUqk3E595p3mfmTdfiI+fUJMi9X41V6Tepz6t5g1qlxqXoA6rz6iV6sdiTALsoX+95J0uY1GMK6YlhocYQ4wYw5+PITGUEw0KM2Y+RDlGAoGmiyPsZI9ne8O5jhGHgVpSgBqTIxBbWdhR2zblM5GOdge9BVLTqqRbNixdCiM0chxXAuG4kXYaS9gHAmhmJ0CFk0XZKqNd+ZU6BDW1s5xKlZTR7WgqRSqlSG1ySSuVtFJJw0quGE2lyZBUmSTGVuoQ2K4DjgWf9jildC5IkM3WSM3Wbs1i50zlW6S3d/eWXfkW0w/vO/S7Pz31pe9f3E0eVRiSepZsuJ1b/koo1HNz/J53CHnzd0T1o8eWtWUudd1Gz4F4hf4rRqRSPEQtK3fllavL6e2hqLylvKvcX76/XJGPOwHDJ7AULleGy0+Vc+Fy0oUVM+V8mtqcm66f5vWu2Izc3PTMNRnq3PSYNba03HQbXi9cBbbi7LyaovTiulSwlZSqkp2cKtNm0+tjtAnmTNV+NQmriR4VfEB9Ui2o6bUtJbc0LTPPktuS25XrzxUmcvfnhnN5yDXkcrlMwXhdyO0qowc3wwfsjiBd3GgO0mmtml4H5u9s8jXAmJjEKwV7Ep+QShTKREXy3CUA7wB4B+4YoUEEBf/x4790zKexYWElu9bJZ/zGBz/XOCiaY6KKV8wuj3OVaoWapm1jUTH0GB/fUKy3zJ3iz73QuKlq++z4ZktSamZmdpa+mWzbMfKp2bQOcxqe01f2ktZDq5LlU3p85E9clfA8pMDrJ0AXec9VE13ZSTo5rjrt/tj7k54zPWeeTnovSXUgjexJxsjbrOuM7tS9n4irMyVmJ/JmU2JSMk9oEp9ykPCmImGapLhSCV/EcUQZXa526qPMJ9Fl/2jiTZ74lFcgapr83uUUo0l0QWFaOI1LA0IEQZEZ3xJHJuIIvT9Lt+cz9P6cengPVYKsA/rg8Rn3cvQiVMXFs/QSbTiHTWcJHrwAgQZt6lYjgQ6M1yS21GSTr8Wlc5dlW/kSFHgFWfP666U51mtjs20TdQVteZ+tCOYn5ArPz/604eI326/NzenuKe3s4QasZu+qLA/7cx336u/f/JK3qFNf9T5eXdgLlK/9Ku2FS6+fZhuURfStO2jk/4tApQwq62w9bJ4nIrD4E62sJKmKl8Am4AxKXAXm0Rw2YF6HUM/fBQ0Ia1l9JUZ8gOXwFvkUd5B/iH9I2Km4Xnmd6iF1UKOVR4+GNuDY2BwYoBBqABQ/1icCz2pX8luA/mVLev8DMk4gnZV41iuGpMo4DwGSJ+MCpJOvyLgCEsnTMq6EDPKvMq6CN8gFGVdDFveKjGvgM9yfZVyr2MTfLONREFD/RMajoU/jknGd8rjmYRmPgRsMW+blttPwlIwT0MeWyzgHqtg6GeehMrZRxgWk+bSMKyA69vMyroTY2AMyroLB2LCMqyHOmCrjGqg1Fsq4ljtsDMh4FFSa0ub/t0mpaZOM6/gtpj0yHgMFib9CTohApR6dFMtwBdVIUhrDlaw+n+EqVl/JcDXDVzNcQ3WU1C7jqKPkzTKOOkoelXHUUfLtMo46Sn5fxlFHKXEyjjpKccg46iilScZRR6l2GUcdpTbKOOoo9VUZRx1lZMs46ijjfhlHHWVEZBx1lHuM4Vq6rjw9w6PoWvJSGB7N6iUeYhhewXADXUteLcPjEDfmXcfweEbTw3ATG8fHcDOr38nwJNZ3L8NTGI3EWxqj+QbDLQx/kuGZjP55hucx/CTD8xn+S4qrJf5/x3Bprr9SPJrVO3iGs7U42Br11H7AkQKtMI7HUQ/0gRt6MBfhGwitMMDwJvDBMEJIphKhFksBxGnqxnovoxCxZhD7FyBWx+rd/5cjFc5zJsIGbBmE0XmaIHtjOizPVwyV+BRBvoyVsNoa7DGI+Xrs0488hFiv9TheECEAY5j24hxeGGJ1IqzDfBuj8WGdG8en1P047yCWAh9bwbL/ord4Wf9lsInNHJxfKeV0KaYie//sxfUEsCWI0Iez5P4X4/+j0S71kvpc6tGCkmzC9k8e95tMa1Qnvdg2xHjfinWUq/+5PkWspdLw4qwhxjmVv4hlShOSR92IHIrIJ+1P/2cTna8J02acu4/plXJI+3lw1CDjfUAereAKPEk25MN5KU9+pB3/h1QeZruUbhvjqn9+Xq/sGfnMFkOMh0GsGZflEGCroqM6sWYTow+xehHWMvlRSQ6zNVEbLWVaGmC9JLnMSdkN3WxkcZ67S35J+Qgw6YlsLbTVfZkc50afK89pa6HGJT2uZfz2yjoaZpIM4phuNm6AraRPXsM2xmsPpnTcEKtxs7F62ZjUw4YZH1RD1DcpzYBME0QP6Ga6GkFMksMgk103lnqY3XkYX8Ny3rfAIrYxHgZxbDrWEPOPkDxqD5NMEJ8+5mXiAp32MMm4F8QMibc5iUha62dycrO+vYt0H2RzS5YlMv30MmyUSc3D5PLJtpAtS8jLxuhZ4BHdjPqT7UTygI/rb6GEJRkNy5wOz9fRKDLKop4oRyIP3My8bphpa4yN6ZX9UJKRVOdnfeekKlnRGIu+Y/M+QWUdkOcOzGto67zNXe5fkhz+OR+TVreCWY5k1755/iW7lOQwLMfzxRKXbK6XaV+y7lEmYWmkUbZ2ac4WNhYdMYT17gVxpYVF62EmE8mfvYusWYqR44yzQdYjyFY6KFvdANOjW543IMc7urog0/zoIv+h3FKPm+ORWoPIrFLSB113D4t1g/MaHpTjaDfCIONuXF7xKIu10kjbWMsAG82HjxQze2TdDGEfSdabka6XzTAuy2hhPOlmfbfKvEoSohLoR7iF0VBLWRgrqK1Le0BIbvEtiqG9zL5GF2lxbmQ3i+m+BaP1Mvn5mU7GF1H2MgkFmGzn9FrA9vkQ0i/D80MhyoA+BSxqLLTIAjnqFDL6IRy9ENMQiwSUL1oKQicbW/I6KT4G5vfIgvme/7szbmOamIuJl2ZZh17Sil7fgFCLZxuKN2Mt9Z4GFj1ofT3WbMCUnn5W4o5ez/53HK1tBR1oGVzadz6+w8zVDyyIBX5ZyuPzkfmf22Uv6cora1myrbnoN87sdW7OHvZ/fC+dChZG2Tl+JH8aWrCHuZk3SJY1LI/uZlx42J4qWRi183Z5NuqdY3L872bR2yvvXNI8/0gyc2eybfKOS33JuyAGLozykif1ydZyJXn55HVRiXkWRdI5n/34fL1yJAkwzx+djxjdsmYW7p1XjsCLJSXtJR+3io/P7JV9VETJudk5/NIpxc32CQ+LS1eem0p/o7xHSnvK+Md0Ielp8ZlQioRuxpGfSdYrR5F/RueibItzcbx/wbw0dvQySUv7sbT7BxbcE5zz1IEFdnvpXPLJkhpkUcN7WUy/NN7cfhlk9nfpVDAX8y5R+pBWOkGPMonT8Qfm1yPxtdC6h+QoKclf8iq/bB+XouliG/qkFV2yj9Vs7R/X3NxeKJ3sggtWI+00PUyrw5fpIHCZvC+NTNfnY2e5XnkvoecO6YYyFwf+Ge3PjSf5pEfeTxfvi3PjfVyPkrSkFYTkvfxKfjynMfdlsu77b3F7Scofn6FHPr91y6WFHHnknTCEe8/cCPT+RP8/Mb2p5OBtkH5bIBfxCrwZLMXaIqwpwof+1WQjNMqURdhajC1lMl6Bd4gK1msJlOONggId/b+31/3Pd8a5tsLLpDe/H7aO+z197h6P+A2xdcAjNvmGfSGsEmt9Ab8v4A55fcOif7CnQKxzh9z/BVEhHUzc4BscpTVBcfUw9iuurCzKx6SkQKwZHBTXe/sHQkFxvSfoCYx5elu9Q56guM6zTVzvG3IPr/f0jw66A3MTLLusWZTbl23yBIJ00pKCpSViTpO3J+AL+vpCuZfRLyRjTdjCGlo2NLVeRvuo2Bpw93qG3IGtoq/vE9cpBjz93mDIE/D0it5hMYSkGzeILe6QmCW2NonNfX0Fonu4V/QMBj3bBpCsYH4klJCvP+D2D4wvrPKIdQH3Nu9wP+3rRWXkixtC7uFBzzjyEPAGfcNOcZO3J+QLiGvdgV7PcAjFWlrSOuANIi+UZXf3oEcMzemyzxsIhkS33+9xyzxScprTZUkLxzWu9Q334oqGPduCfrffE3CKfTjDtgFvz4DoDYnb3EGx1xP09g97egtEcXVIHMCa4Gh30DMyijwMjovdnh7fkEf0DXvoeFQQ23yBwd6gOORDBoKjPT2eYLBvdJCxJvYEPEyGQRyNMoJL6/cOuwfFXmn1QXEbCkscQjWIo8O9nsDlUshGhrwBTw9TRPf45TJBBcyvT2IYORrGQYcpFvCN9g+gXkTPzSHPcNA75sFFeqhWEfMHfJRVFNGYb3CMaqJvNIC9A3RBW6nk5vSFPFxBYzjdCncQZe2j46MskYdhtHOZcZRcr9iD4h7tCSHRaJD2bPEE/J7QqJvZSsugezjkRT17JTGjRY6LvsFeMRgaR9X2DLgDbuyLo4W8PUGxe1TSj7vX7acjhnxiP12H5+Yez+AgXfAg2mi3d9AbGseJR/2DSLTNGxoQ+30+tEzkxTc0jlxv9vZ6UJGjQclOun2+rUHG0JC7332Ld9gTlKwi4EEPCGHBJ1lor69nVFoiJXYPBn2MrNcb9A+6x6XK3jFPIOSlay0YCIX8ywoLt23bVjAkC7IATadwIDQ0WDgUot/2LBwKdoao6tAeA9QjC2jjP9lxm2eQWiLrsq65dXXD6tqa1tXN68TmBnHt6tr6dRvqxZqV6+vrm+rXteq0Oi3znXmHofgAswJUHUoMjfkKLstW5cUlo7So+Y37RmnPHt8YCwWSydJxUE9DzMPc4iAKaxjJ3f0Bj4cKrEBsx24DblSWrzvkRgmj9hYxQyPZNnRc0eNlFiiZPCqpD8VyiS+UdsjX75GMlGp2vh8qIRTwoong0Mim7J0LDFhmCr1kXhTznRF3i2PuwVEWUtzBoCe0sHeBuBE9Ej1lfG4VuCY5EqIRusWg39PjRRP5+MpFlCK18X7W193b66V+jO4fYHuCk1YHmGxZLLmMqUHvkFe2dEZH/TIYkmIytTxW6duGAXq0e9AbHKDz4FiSuIfQJJF/VJV/XJTMVJbQ4omYPFb3XVoc9UIMdkE2DTpNjycwLK8gIPPNiIMDvlF01oBnzIsbCrWBjy+f0qEmPeinsi9Suvk1Ils4QQi9/JKO6cLcMtd9Vx6WsTzfoQfjW7dnbiCcxx1aRgk2bqjBTSVnaVlFrlhRvDS/qKyoSKPZ2IiVRcXFZWWYVpRWiBVLyivLK3Xaf+B1n+iMtFQos8f8EC/LPnbNpNcCekkcJzo8etyER5DfsIPLXNvcH/96pT/c8V/ij/Lf5p9DOME/zT9+9cXK1RcrV1+sXH2xAldfrFx9sXL1xcrVFytXX6xcfbFy9cXK1RcrV1+sXH2xcvXFytUXK/9PvlhZ9NePS7ib0V+p7Z3L+ngW/V1EOnlfecxBZuELykK6UCw0CiuFazCtXDQDjcH/aJR1zGdo7JFWP0DC5EEemF/UIFWA7XmUp388wpXx+f9vDhEr9MIVPiciM/w7x+rrS1zTmDsKWD6Vk1vCGqaSU0u+zb/DPY77hAUrTk+ZU1jL21MrVsjIkqUSciwvv+R0jZZ/G/6IwPFv86fRzlivYzkFJedrdFhB+FtBTwhY4CD/SwgjcODi3zqWmVVy4Dn+FWz/If8yckq7vTyliy3BAV/ivwVGsPBP8U/KLU8ei4ktgZogfxcQmMH0FMIZhPMIAvj4R2Anwj6EIwgC6DG1IBQiNNMa/jB/GPk8RP8rO6aFCD6EfQgCtPKPYf1WmvKP8jdBBva9k78HTJjv5T/P8ocwT8b8a1ifjvmDWKb5Abn8Zcxp+5fk+vuxbMb8Pjn/ItanYH4v+4FAC/8FuTzGj7J+ITk/yAen0i2GmnRsFxGKEHjE7kHsHhTdPVTBmBL+dn6QzXQU8xLMh6QcxbVjympjOtpxLCGp5CCKdAeKfgdKbgdKbgf9Lie/fY5mu0STz29Hmu1Isx1ptqNUivggzhekX2XA1IAgIvAo9yDKndaHMZ1BOMXqP43pfoSDtMRvQznmIld7+JumcixoZP3HKl0l1c/wfShqF993LCmtZN+lkkZLDRHzGDnXU1oPa/Uc00TTWs+x5DQpR6qtNTF8D/wLAgfxmGYilCHUIQh8z1RmoeVpfh0MqcEVY9nJ7eR3CjsVQlEdMT7Hl0CLGtAkjXw+VCFBrqWzilR0afyaCQ1v0IiaIo1L06JR+Pid/D6et/CFfDXfzHfyCvpNL9WyUvrtpZXKZaX7ow5GhaNmok5FKcLKGeUp5RnleaVC+gJki7JL6VdOKPcrDyo1+5X7VVxXlD9qIoo3RIlRRVGuqJYohUVFDtbs4rvpVxkwNSD4EfYjCCjjTqwX+RsROlEbnSiKG+l3VTAFLBkQTiF+BnMFlvRIp0c6PdbqsVbPfldFz1paELoQ/HKrcr5lrg+lP09bELKxNQZr6ZcHzmB6nmIIa7Ckw5IOSzqkOsV9hBwaMBURWhB4VncGAa0G07m2Irm9C0HJ2s8zmrk2F+3LfeRyZ8/kknAuOZhL9ucSV1V1TYkrAxOj0dhp67R35nQeEnw2n92X4zskNNua7c05zYeEalu1vTqn+pBQaCu0F+YUHhIsNovdkmM5JOxbe2Ttc2tPrhU61/rW7lzLV9DvZU45ikpYnmGn+ZNTScklFfqaa7gjuJxOTA8gnEbgQY+pBaEQoRrBh6DgjrDaJ7D2Cax9ApoROhEU2OsJGmIwtchttP4Aa6MYbecWtfO4+MenlpU216zFsNuJcACBx7Efx/bHGbWEHWH1YUzPsPpmmf4gq6dUFoS5fjQIbmHhbgu64RaoRuhE8CMo4CS/GU4j4OiYWhD8CEcQBH4LPpv5zdwT+DzOPc47XbpikwXMZtw+jLFqQ42Bi0Zb0JFHWXofS/ewtJqlma6YNboP1ui+s0b3mTW6bES4HNzYdOQellpdUTW64zW65hpdbo0OR0sAK+g4E0uVNCW/Y+k6ljpd8Vbd3626v1h1f7LqvmrVjVh111hpv1T0YR0Xz9IompJ7WbqGpVmuKIvu+xbdZouuwqKr0ZEHCM4OK1iaztIUmpI/H9fX6UHzDPkz1OFIZKoq1zLNActIZKqqBrPZqaqVmF2cqnoAs/+Yqvq85Vnyd8K2NvLBVOZZS42JXCCrBVr+i5z/iayGw5ifx7wf84ehitgxf2iq6jZK/3Xs/yUsfw0y1JT+QWhh/Q6Q1az+q3K/r0w5u3HWL085x3HWL4GTzfrFKedZrP38lHMPZp+bcg5itm/KThm8aaoqz1ITS/ohk6O0PWDnKCdr5RlX4ciDmK+UOtdPOWmvOjrBNKmdshVjlk25fJbYoIVNZ5mysUWmgY0NkQo2xnQK2FkeQ/SMeR1ksFw9ZbsNR1Eet5+1/LXqGbpweJ/opx6w/OpZXN8mLP4fsnrqsOXVE1RcU5aTzmlif8ryE9szlhczp8mmKcuMc1qNDc85pznypOUoCjmMtBx5ynLE2W95wsZaD9mwFVV9oCrf8mXbFsv9dixPWW5zPkvZgCFc8SZsbndea1lbddjSYJ8m2OyqwslcWssyW8BSidVLp8nqY4ctxZnTlJUiHOPwU5Y8nDHLxljZWPE0Vw4qMupyqkKqbtUm1XWq5apSVb5KVKWpUlXxaqPaoI5RR6u1arVaqRbUnBrU8dORMy4H+wao0sB+ElWgqcBwA8d+TEn6KiFH1Bz6TjiOb+QaN6wgYWMjNLauCFc4GqdVkfXhpY7GsLrl+rajhNzdjqUwd8c0gdY2NFBatSuF/hjeCSCkcNddKTTfvuuu9nbSGJ7pgcZuMfzBBlyH9rotYYVtRSKYx6oTq43XxlY21F0h6ZLTBd9aTlz4FWZHYlr43sYNbeHH0trDJRSJpLU3hlfSn9E7wY1wvvq6E5yfZu1tJ8gt3Ej9elpPbqlrnyeDDM6PZFBFM0p2DDIoGWSQY4xsLSNDM82orzuakSERvUBWUyI0nxcYUb80ViZOgWO10AzJuHTIZGNlcumUDO1BGky/cLBoIHo2mD4a2GCplOio3Y4kTjslOVphR4Kj9grWfPhSs80usdMOdjaPnbSzeQi5RJMj0aAVyDScGmkc/5sfz4r/BjE55v5Fbw/9McMuW70HoSu8d2wgMTzRLYpHe38h/8phVld3zwDN3Z7wL2yeunCvrU486u65QnMPbXbb6o5CT31r29Eel6duyu1y19vcde3HHt5Z27horj3zc9XuvMJgO+lgtXSuhxuv0NxImx+mczXSuRrpXA+7HmZzNa5fQRpb2o6qYUV77Q1SfoyL0qI/dKVY21eYDf5rmXMstybemvK0ALhtRTnaw9G2FWEdAm3Kr8mvoU3onbQphv5cpdyUeOtya8rT5FG5yYDVsbYV4IDEem/d/L9gMBiiMDrqwDQ0msjqQui01g2N4Qb643pV4ar6sKurrp39ssmo/KltcxmeqzpZxfmqdlbtqzpQdaRKMTrajtXG5zJOZnCdGb6MnRn7Mg5kHMlQ0oYb2p5yVR3I+GMGP4rWREL4qa9jc45ijv9oMTQapB/ACYII0nSOUUdtW00G9OCpl+AJPR/iEGwIpQgbEBTwXUx/ivArhL8gCHA7pp9H+DrCMVrD5/P59YneOjpju4MGnUS+5FhRecnSaczdfVK+YYuU16+T8qqakkTMp6pLtTV6PIATeBrTHyK8hfBbhP9AUPAlfAkbfFSy2vYgBB0E2ae/oRCiSdARYr+oQKi4Q0GHAyhQA0cN0F+NIYvtHkhwFFAUqBDMkIjVBmm3UZrPff4TTwO6CgplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEyMzI1CmVuZG9iagoKNyAwIG9iago8PC9UeXBlL0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStUaW1lc05ld1JvbWFuUFNNVAovRmxhZ3MgNAovRm9udEJCb3hbLTU2OCAtMzA2IDIwMjcgMTAwNl0vSXRhbGljQW5nbGUgMAovQXNjZW50IDg5MQovRGVzY2VudCAtMjE2Ci9DYXBIZWlnaHQgMTAwNgovU3RlbVYgODAKL0ZvbnRGaWxlMiA1IDAgUj4+CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggMjc0L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVhbQp4nF2Rz27DIAzG7zwFx+5QhaRpu0pRpK5dpBz2R8v2AAScDGkBRMghbz8w3SbtAPoZ+7M+m+zSXlutfPbqjOjA00Fp6WA2ixNAexiVJnlBpRL+FuEtJm5JFrTdOnuYWj2YqiLZW8jN3q10c5amhzuSvTgJTumRbj4uXYi7xdovmEB7ykhdUwlD6PPE7TOfIEPVtpUhrfy6DZK/gvfVAi0wzpMVYSTMlgtwXI9AKsZqWjVNTUDLf7n8JukH8cldKM1DKWNlWQcukI/7yDvkwzVymd5PkffIBYt8SDWoPSZuIt8n3kU+Jcae58SPkR9SzxJN3txEu3GfP2ugYnEurACXjrPHqZWG33+xxkYVnm9Et4T/CmVuZHN0cmVhbQplbmRvYmoKCjkgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQkFBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIgMAovTGFzdENoYXIgMTEKL1dpZHRoc1s3NzcgNzIyIDUwMCA3NzcgNTAwIDI1MCA1MDAgNTAwIDQ0MyA0NDMgNTAwIDI3NyBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgovVG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2JqCgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNjEyIDc5MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3VudCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tQ0EpCj4+CmVuZG9iagoKMTMgMCBvYmoKPDwvQXV0aG9yPEZFRkYwMDQxMDA2QzAwNjUwMDYzMDAyMDAwNTMwMDZEMDA2NTAwNjMwMDY4MDA2NTAwNzI+Ci9DcmVhdG9yPEZFRkYwMDU3MDA3MjAwNjkwMDc0MDA2NTAwNzI+Ci9Qcm9kdWNlcjxGRUZGMDA0RjAwNzAwMDY1MDA2RTAwNEYwMDY2MDA2NjAwNjkwMDYzMDA2NTAwMkUwMDZGMDA3MjAwNjcwMDIwMDAzMzAwMkUwMDMyPgovQ3JlYXRpb25EYXRlKEQ6MjAxMzA1MDYxNDE5MzAtMDcnMDAnKT4+CmVuZG9iagoKeHJlZgowIDE0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAxMzUwMCAwMDAwMCBuIAowMDAwMDAwMDE5IDAwMDAwIG4gCjAwMDAwMDAyMTQgMDAwMDAgbiAKMDAwMDAxMzY0MyAwMDAwMCBuIAowMDAwMDAwMjM0IDAwMDAwIG4gCjAwMDAwMTI2NDQgMDAwMDAgbiAKMDAwMDAxMjY2NiAwMDAwMCBuIAowMDAwMDEyODY0IDAwMDAwIG4gCjAwMDAwMTMyMDcgMDAwMDAgbiAKMDAwMDAxMzQxMyAwMDAwMCBuIAowMDAwMDEzNDQ1IDAwMDAwIG4gCjAwMDAwMTM3NDIgMDAwMDAgbiAKMDAwMDAxMzgzOSAwMDAwMCBuIAp0cmFpbGVyCjw8L1NpemUgMTQvUm9vdCAxMiAwIFIKL0luZm8gMTMgMCBSCi9JRCBbIDxGNkZGQTZEMDFCMzIxMDI1NEFBMzcwNDZFQkZGOEM4RT4KPEY2RkZBNkQwMUIzMjEwMjU0QUEzNzA0NkVCRkY4QzhFPiBdCi9Eb2NDaGVja3N1bSAvMUZCNkQ2NzcyNEFDMEYyNzM2QzVFRTA5Q0ZBMkRBNDcKPj4Kc3RhcnR4cmVmCjE0MDg4CiUlRU9GCg== - + 8 - Accessible Elements: Teaching Science Online and at a Distance - <p>Accessible Elements informs science educators about current practices in online and distance education: distance-delivered methods for laboratory coursework, the requisite administrative and institutional aspects of online and distance teaching, and the relevant educational theory.</p> - + Accessible Elements: Teaching Science Online and at a Distance + <p>Accessible Elements informs science educators about current practices in online and distance education: distance-delivered methods for laboratory coursework, the requisite administrative and institutional aspects of online and distance teaching, and the relevant educational theory.</p> + Education - Dietmar - Kennepohl - Athabasca University + Dietmar + Kennepohl + Athabasca University CA dkennepohl@mailinator.com - Terry - Anderson - University of Calgary + Terry + Anderson + University of Calgary CA tanderson@mailinator.com - Paul - Gorsky - University of Alberta + Paul + Gorsky + University of Alberta CA pgorsky@mailinator.com - Gale - Parchoma - Athabasca University + Gale + Parchoma + Athabasca University CA gparchoma@mailinator.com - Stuart - Palmer - University of Alberta + Stuart + Palmer + University of Alberta CA spalmer@mailinator.com - Introduction + Introduction - + - Chapter 1: Interactions Affording Distance Science Education + Chapter 1: Interactions Affording Distance Science Education - + - Chapter 2: Learning Science at a Distance: Instructional Dialogues and Resources + Chapter 2: Learning Science at a Distance: Instructional Dialogues and Resources - + - Chapter 3: Leadership Strategies for Coordinating Distance Education Instructional Development Teams + Chapter 3: Leadership Strategies for Coordinating Distance Education Instructional Development Teams - + - Chapter 4: Toward New Models of Flexible Education to Enhance Quality in Australian Higher Education + Chapter 4: Toward New Models of Flexible Education to Enhance Quality in Australian Higher Education - + diff --git a/plugins/importexport/native/templates/index.tpl b/plugins/importexport/native/templates/index.tpl index 6db9a4905c7..bb08c288b92 100644 --- a/plugins/importexport/native/templates/index.tpl +++ b/plugins/importexport/native/templates/index.tpl @@ -24,7 +24,7 @@
                -
                + {csrf} {fbvFormArea id="exportForm"} - - {{ localize(item.publications.find(p => p.id == item.currentPublicationId).fullTitle) }} + @@ -104,7 +109,7 @@ {translate key="common.selectAll"} - + {translate key="plugins.importexport.native.exportSubmissions"} {/fbvFormSection} diff --git a/plugins/importexport/onix30/ONIX_BookProduct_3.0_reference.xsd b/plugins/importexport/onix30/ONIX_BookProduct_3.0_reference.xsd index 330fe0ff493..9d546ec8ad5 100644 --- a/plugins/importexport/onix30/ONIX_BookProduct_3.0_reference.xsd +++ b/plugins/importexport/onix30/ONIX_BookProduct_3.0_reference.xsd @@ -15,12 +15,12 @@ * Recent revisions: Graham Bell * * * * Release 3.0 * - * Revision 1 * + * Revision 2 * * Status: RELEASED * * Release date: 2009-04-09 * - * Revised: 2012-04-20 * + * Revised: 2014-01-24 * * * - * (c) 2000-2012 EDItEUR * + * (c) 2000-2014 EDItEUR * * http://www.editeur.org/ * * * ************************************************** @@ -28,9 +28,9 @@ TERMS AND CONDITIONS OF USE OF THE ONIX BOOK PRODUCT INFORMATION MESSAGE SCHEMA - All ONIX standards and documentation are copyright materials, made available - free of charge for general use. If you use any version of the ONIX Book Product - Information Message Schema, you will be deemed to have accepted these terms and + All ONIX standards and documentation are copyright materials, made available + free of charge for general use. If you use any version of the ONIX Book Product + Information Message Schema, you will be deemed to have accepted these terms and conditions: 1. You agree that you will not add to, delete from or amend any version of the @@ -56,6 +56,63 @@ SCHEMA REVISION HISTORY (IN REVERSE CHRONOLOGICAL ORDER) + 2014-01-24: ONIX for Books 3.0 revision 2 + 1. added / within + 2. added / within + 3. added / within - uses List 215 + 4. changed cardinality of to 1…n to allow coded values for OnOrder and CBO etc. + 5. added / within + 6. added / within - uses List 216 + 7. added / and / within + 8. added within + 9. added within + 10. added / within + 11. added within + 12. added / within - uses list 217 + 13. added / to support explicitly empty delta updates + 14. added composite after , to support e-book licenses + 15. added / inside + 16. added inside + 17. added / within - uses list 218 + 18. added within + 19. added / within + 20. added / within - uses list 219 + 21. added / in + 22. added / within + 23. changed cardinality on , ,, , , , + 24. added textformat attribute to and changed data type to flow + 25. added language attribute to , , ImprintName>, , and to 12 contributor name elements + 26. added textscript attribute to , , , , + 27. enforce ' must be preceded by ' within (ensures P.5 matches P.7) + 28. enforce ' mandatory except where is present' in + + 2013-07-19 relax URI requirements to allow relative URIs + + 2013-04-24 1. enforce 'either , or either a personal or corporate name, or both' in + 2. enforce 'either alone, or personal name or corporate name with or without , or ' in , and + 3. corrected dt.NonEmptyString to dt.Decimal in + 4. enforce http or ftp protocol in , http:// can be omitted in + 5. enforce at least one non-whitespace character in dt.NonEmptyString + + 2013-01-25 1. corrected long-standing error in the content model of : is repeatable + 2. enforce 'either or , or both' in + 3. enforce URIs cannot be empty strings (must contain '://') + 4. escaped hyphen in dt.EmailString regex to avoid issue with SAX parser + + 2012-10-25 1. enforce 'either or a personal or corporate name, or both' in + 2. enforce 'either or or both' in + 3. enforce 'at least one of , , or either or plus ' in + 4. enforce ' element' + 5. enforce ' must be preceded by a element' + 6. modify to disallow without + 7. changed xs:token to xs:string in dt.DateOrDateTime, dt.Year, dt.YearOrYearRange, dt.MultiLevelNumber and releaseAttribute (token will validate even when there is leading or trailing whitespace) + 8. changed dt.NonEmptyString to dt.Integer in ConferenceNumber, LatestReprintNumber, NumberOfPages, OrderTime, PackQuantity + 9. changed dt.NonEmptyString to dt.RomanNumeralString in ExtentValueRoman + 10. added type="xs:string" to collationkeyAttribute + 11. validation of e-mail addresses via dt.EmailString type + + note changes 1-11 above enforce limitations already expressed clearly in the documentation + 2012-04-20: 1. corrected long-standing error in content model of : is optional 2. enforce 'either or , or both' in 3. enforce 'either or , or both' in @@ -88,7 +145,7 @@ 7. modified and to take language attribute 8. modified cardinality of , , , , , , , , , , , , , , , , , , , , , , 9. added within - 10. implemented 'either or , or both' to match documentation + 10. enforce 'either or , or both' to match documentation 2011-11-03: corrected cardinality of @@ -365,21 +422,29 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + @@ -1071,11 +1136,17 @@ - - - - - + + + + + + + + + + + @@ -1139,6 +1210,7 @@ + @@ -1174,8 +1246,10 @@ - - + + + + @@ -1603,7 +1677,7 @@ - + @@ -1642,6 +1716,7 @@ + @@ -1671,13 +1746,17 @@ - - - - - - - + + + + + + + + + + + @@ -1923,28 +2002,47 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2047,6 +2145,7 @@ + @@ -2163,13 +2262,17 @@ - - - - - - - + + + + + + + + + + + @@ -2237,6 +2340,7 @@ + @@ -2257,6 +2361,29 @@ + + + + + + + + + + + + + + + + + + + + + + + @@ -2302,6 +2429,7 @@ + @@ -2327,6 +2455,7 @@ + @@ -2675,7 +2804,10 @@ - + + + + @@ -2818,21 +2950,21 @@ - + - + - + - + @@ -2866,8 +2998,8 @@ - - + + @@ -2884,8 +3016,9 @@ + - + @@ -2937,7 +3070,7 @@ - + @@ -2981,6 +3114,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3223,7 +3520,7 @@ - + @@ -3600,6 +3897,7 @@ + @@ -3650,6 +3948,7 @@ + @@ -3751,7 +4050,7 @@ - + @@ -3792,6 +4091,7 @@ + @@ -4034,12 +4334,12 @@ - + - + - - + + @@ -4296,21 +4596,29 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + @@ -4397,6 +4705,7 @@ + @@ -4422,6 +4731,7 @@ + @@ -4537,10 +4847,48 @@ - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4655,7 +5003,7 @@ - + @@ -4679,7 +5027,10 @@ - + + + + @@ -4749,6 +5100,7 @@ + @@ -4771,7 +5123,7 @@ - + @@ -4794,7 +5146,7 @@ - + @@ -4856,6 +5208,8 @@ + + @@ -4927,6 +5281,7 @@ + @@ -4952,6 +5307,7 @@ + @@ -5023,6 +5379,7 @@ + @@ -5030,6 +5387,7 @@ + @@ -5073,7 +5431,7 @@ - + @@ -5192,6 +5550,7 @@ + @@ -5327,6 +5686,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -5511,10 +5917,11 @@ - + + @@ -5629,6 +6036,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -6361,6 +6792,29 @@ + + + + + + + + + + + + + + + + + + + + + + + @@ -6683,28 +7137,28 @@ - + - + - + - + - + @@ -7001,8 +7455,10 @@ - - + + + + @@ -7309,7 +7765,7 @@ - + @@ -7541,54 +7997,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -7762,6 +8170,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7973,6 +8430,7 @@ + @@ -8030,12 +8488,22 @@ - - + + + + + + + + + + + + + - - + @@ -8077,6 +8545,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -8124,30 +8616,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - @@ -8178,8 +8646,13 @@ - - + + + + + + + @@ -8334,9 +8807,10 @@ + + - @@ -8362,6 +8836,7 @@ + @@ -8422,6 +8897,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -8520,6 +9019,7 @@ + @@ -8675,9 +9175,17 @@ - - - + + + + + + + + + + + @@ -8924,9 +9432,9 @@ - + - + @@ -9188,14 +9696,42 @@ - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + @@ -9258,9 +9794,10 @@ + + - @@ -9286,6 +9823,7 @@ + @@ -9311,6 +9849,7 @@ + @@ -9359,9 +9898,10 @@ + + - @@ -9408,9 +9948,10 @@ + + - @@ -9438,6 +9979,29 @@ + + + + + + + + + + + + + + + + + + + + + + + @@ -9507,6 +10071,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -9559,7 +10170,7 @@ - + @@ -9711,6 +10322,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -9726,6 +10367,7 @@ + @@ -9836,8 +10478,10 @@ - - + + + + @@ -9845,35 +10489,37 @@ - - + + + + - + - + - + - + - + @@ -9887,38 +10533,50 @@ - + - - + + + + + + + + + + + + + + - + - + - + - + - + diff --git a/plugins/importexport/onix30/ONIX_BookProduct_CodeLists.xsd b/plugins/importexport/onix30/ONIX_BookProduct_CodeLists.xsd index b990c4da631..97918af4b17 100644 --- a/plugins/importexport/onix30/ONIX_BookProduct_CodeLists.xsd +++ b/plugins/importexport/onix30/ONIX_BookProduct_CodeLists.xsd @@ -9,16 +9,16 @@ * CODE LIST DATA TYPES MODULE * * XML SCHEMA VERSION * * * - * ISSUE: 17 * + * ISSUE: 24 * * * * Status: RELEASED * - * Release date: 2012-04-20 * + * Release date: 2014-04-14 * * * * Orig filename ONIX_BookProduct_CodeLists.XSD * * * * Original author: Francis Cave * * * - * (c) 2003-2012 EDItEUR * + * (c) 2003-2014 EDItEUR * * http://www.editeur.org/ * * * ************************************************** @@ -55,6 +55,30 @@ MODULE REVISION HISTORY (IN REVERSE CHRONOLOGICAL ORDER) + 2014-04-14: Module for public release based upon the ONIX International + Code lists Issue 25 (April 2014) + + 2014-01-30: Module for public release based upon the ONIX International + Code lists Issue 24 (January 2014) + + 2013-10-15: Module for public release based upon the ONIX International + Code lists Issue 23 (October 2013) + + 2013-07-19: Module for public release based upon the ONIX International + Code lists Issue 22 (July 2013) + + 2013-04-19: Module for public release based upon the ONIX International + Code lists Issue 21 (April 2013) + + 2013-01-21: Module for public release based upon the ONIX International + Code lists Issue 20 (January 2013) + + 2012-10-22: Module for public release based upon the ONIX International + Code lists Issue 19 (October 2012) + + 2012-08-14: Module for public release based upon the ONIX International + Code lists Issue 18 (August 2012) + 2012-04-20: Module for public release based upon the ONIX International Code lists Issue 17 (April 2012) @@ -117,7 +141,7 @@ --> - + Notification or update type code @@ -219,6 +243,12 @@ Carrying multiple copies for retailing as separate items, eg shrink-wrapped trade pack, filled dumpbin, filled counterpack. + + + Multiple-item pack + Carrying multiple copies, primarily for retailing as separate items. The pack may be split and retailed as separate items OR retailed as a single item. Use instead of Multiple item trade pack (code 30) only if the data provider specifically wishes to make explicit that the pack may optionally be retailed as a whole. + + @@ -253,7 +283,7 @@ Bibliographic agency - + Bibliographic data aggregator. @@ -280,6 +310,18 @@ Downstream provider of e-publication format conversion service (who might also be a distributor or retailer of the converted e-publication), supplying metadata on behalf of the publisher. The assigned ISBN is taken from the service provider’s prefix (whether or not the service provider dedicates that prefix to a particular publisher). + + + ISBN Registration Agency + + + + + + ISTC Registration Agency + + + @@ -380,7 +422,19 @@ JP e-code - E-publication identifier controlled by JPOIID's Committee for Research and Management of Electronic Publishing Codes. + E-publication identifier controlled by JPOIID’s Committee for Research and Management of Electronic Publishing Codes. + + + + + OLCC number + Unique number assigned by the Chinese Online Library Cataloging Center (see http://olcc.nlc.gov.cn). + + + + + JP Magazine ID + Japanese magazine identifier, similar in scope to ISSN but identifying a specific issue of a serial publication. Five digits to identify the periodical, plus a hyphen and two digits to identify the issue. @@ -704,13 +758,13 @@ - EAN13+5 on outer sleeve/back (US dollar price encoded) + EAN13 on outer sleeve/back To be used only on products packaged in outer sleeves. - EAN13+5 on outer sleeve/back + EAN13+5 on outer sleeve/back (US dollar price encoded) To be used only on products packaged in outer sleeves. @@ -842,7 +896,7 @@ - EAN13 on outer sleeve/back (CAN dollar price encoded) + EAN13+5 on outer sleeve/back (CAN dollar price encoded) To be used only on products packaged in outer sleeves. @@ -874,7 +928,7 @@ CD-Audio - Audio compact disc, in any recording format: use coding in Product Form Detail to specify the format, if required. + Audio compact disc, in any recording format: use for ‘red book’ (conventional audio CD) and SACD, and use coding in Product Form Detail to specify the format, if required. @@ -886,13 +940,13 @@ Audio disc - Audio disc (excluding CD). + Audio disc (excluding CD-Audio). Audio tape - Audio tape (open reel tape). + Audio tape (analogue open reel tape). @@ -904,7 +958,7 @@ CD-Extra - Audio compact disc with part CD-ROM content. + Audio compact disc with part CD-ROM content, also termed CD-Plus or Enhanced-CD: use for ‘blue book’ and ‘yellow/red book’ two-session discs. @@ -1090,7 +1144,7 @@ CD-I - CD interactive. + CD interactive, use for ‘green book’ discs. @@ -1156,7 +1210,13 @@ Double-sided CD/DVD - Double-sided disc, one side Audio CD/CD-ROM, other side DVD. + Double-sided disc, one side CD-Audio/CD-ROM, other side DVD-Audio/DVD-Video/DVD-ROM (at least one side must be -ROM). + + + + + Digital product license key + Digital product license delivered through the retail supply chain as a physical “key”, typically a card or booklet containing a code enabling the purchaser to download or activate the associated product. @@ -1462,7 +1522,7 @@ Mixed media product - A product consisting of two or more items in different media, eg book and CD-ROM, book and toy etc. + A product consisting of two or more items in different media or different product forms, eg book and CD-ROM, book and toy, hardback book and e-book, etc. @@ -1585,10 +1645,40 @@ + + + E-book reader + Dedicated e-book reading device, typically with mono screen. + + + + + Tablet computer + General purpose tablet computer, typically with color screen. + + + + + Audiobook player + Dedicated audiobook player device, typically including book-related features like bookmarking. + + + + + Jigsaw + + + + + + Oher apparel + Other apparel items not specified by ZB to ZJ, including promotional or branded scarves, caps, aprons etc. + + Other merchandise - Other merchandise not specified by ZB to ZF. + Other merchandise not specified by ZB to ZY. @@ -1698,7 +1788,19 @@ CPA - Statistical Classification of Products by Activity in the European Economic Community, see http://ec.europa.eu/eurostat/ramon/nomenclatures/index.cfm?TargetUrl=LST_NOM_DTL&StrNom=CPA_2008. Up to six digits, with one or two periods. For example, printed children’s books are “58.11.13”. + Statistical Classification of Products by Activity in the European Economic Community, see http://ec.europa.eu/eurostat/ramon/nomenclatures/index.cfm?TargetUrl=LST_NOM_DTL&StrNom=CPA_2008. Up to six digits, with one or two periods. For example, printed children’s books are “58.11.13”, but the periods are normally ommited in ONIX. + + + + + NCM + Mercosur/Mercosul Common Nomenclature, based on the Harmonised System. + + + + + Electre genre + Typologie de marché géré par Electre (Market segment code maintained by Electre). @@ -1975,7 +2077,7 @@ iBook - Apple's iBook format (a proprietary extension of EPUB), can only be read on Apple iOS devices. + Apple’s iBook format (a proprietary extension of EPUB), can only be read on Apple iOS devices. @@ -1984,6 +2086,18 @@ Proprietary format used by Barnes and Noble, readable on NOOK devices and Nook reader software. + + + SCORM + Sharable Content Object Reference Model, standard content and packaging format for e-learning objects. + + + + + EBP + E-book Plus (proprietary Norwegian e-book format based on HTML5 documents packaged within a zipped .ebp file). + + Multiple formats @@ -2209,6 +2323,12 @@ Uniform Resource Name. + + + Identifiant BNF des publications en série + French National Bibliography series ID, maintained by the Bibliothèque Nationale de France. + + @@ -2325,6 +2445,12 @@ An expanded form of the title, eg the title of a school text book with grade and type and other details added to make the title meaningful, where otherwise it would comprise only the curriculum subject. This title type is required for submissions to the Spanish ISBN Agency. + + + Alternative title + An alternative title that the book is widely known by, whether it appears on the book or not. + + @@ -2795,6 +2921,18 @@ + + + Thesis advisor or supervisor + + + + + + Thesis examiner + + + Other adaptation by @@ -2906,6 +3044,12 @@ Filmed/photographed by + Cinematographer, etc. + + + + + Editor (film or video) @@ -2921,6 +3065,12 @@ May be associated with any contributor role, and placement should therefore be controlled by contributor sequence numbering. + + + (Various roles) + For use ONLY with ‘et al’ or ‘Various’ within <UnnamedPersons>, where the roles of the multiple contributors vary. + + Other @@ -3307,7 +3457,7 @@ Main content page count - The highest-numbered page in a single numbered sequence of main content, usually the highest Arabic-numbered page in a book; or, for books without page numbers or (rarely) with multiple numbered sequences of main content, the total number of pages that carry the main content of the book. Note that this may include numbered but otherwise blank pages (eg pages inserted to ensure chapters start on a recto page) and may exclude unnumbered (but contentful) pages such as those in inserts/plate sections. Either this or the Content Page count is the preferred page count for most books for the general reader. For books with substantial front and/or back matter, include also Front matter and Back matter page counts, or Total numbered pages. For books with inserts (plate sections), also include Total unnumbered insert page count whenever possible. + The highest-numbered page in a single numbered sequence of main content, usually the highest Arabic-numbered page in a book; or, for books without page numbers or (rarely) with multiple numbered sequences of main content, the total number of pages that carry the main content of the book. Note that this may include numbered but otherwise blank pages (eg pages inserted to ensure chapters start on a recto page) and may exclude unnumbered (but contentful) pages such as those in inserts/plate sections. It should exclude pages of back matter (eg any index) even when their numbering sequence continues from the main content. Either this or the Content Page count is the preferred page count for most books for the general reader. For books with substantial front and/or back matter, include also Front matter (03) and Back matter (04) page counts, or Total numbered pages (05). For books with inserts (plate sections), also include Total unnumbered insert page count whenever possible. @@ -3325,13 +3475,13 @@ Back matter page count - The total number of numbered (usually Roman-numbered) pages that follow the main content of a book. This usually consists of an afterword, appendices, endnotes, index, etc. It excludes blank (or advertising) pages that are present only for convenience of printing and binding. + The total number of numbered (often Roman-numbered) pages that follow the main content of a book. This usually consists of an afterword, appendices, endnotes, index, etc. It excludes blank (or advertising) pages that are present only for convenience of printing and binding. Total numbered pages - The sum of all Roman- and Arabic-numbered pages. Note that this may include numbered but otherwise blank pages (eg pages inserted to ensure chapters start on a recto page) and may exclude unnumbered (but contentful) pages such as those in inserts/plate sections. + The sum of all Roman- and Arabic-numbered pages. Note that this may include numbered but otherwise blank pages (eg pages inserted to ensure chapters start on a recto page) and may exclude unnumbered (but contentful) pages such as those in inserts/plate sections. It is the sum of the main content (00), front matter (03) and back matter (04) page counts. @@ -3355,7 +3505,7 @@ Duration - Duration in time, expressed in the specified extent unit. + Total duration in time, expressed in the specified extent unit. This is the ‘running time’ equivalent of codes 05 or 11. @@ -3376,6 +3526,18 @@ The total number of unnumbered pages with content inserted within the main content of a book – for example inserts/plate sections that are not numbered. + + + Duration of introductory matter + Duration in time, expressed in the specified extent units, of introductory matter. This is the ‘running time’ equivalent of code 03, and comprises any significant amount of running time represented by announcements, titles, introduction or other material prefacing the main content. + + + + + Duration of main content + Duration in time, expressed in the specified extent units, of the main content. This is the ‘running time’ equivalent of code 00, and excludes time represented by announcements, titles, introduction or other prefatory material or ‘back matter’. + + Filesize @@ -3419,6 +3581,12 @@ + + + Tracks + Of an audiobook on CD (or a similarly divided selection of audio files). Conventionally, each track is 3–6 minutes of running time, and track counts are misleading and inappropriate if the average track duration is significantly more or less than this. Note that track breaks are not necessarily aligned with structural breaks in the text (eg chapter breaks). + + Hours HHH @@ -3700,7 +3868,7 @@ BISAC Subject Heading - BISAC Subject Headings are used in the North American market to categorize books based on topical content. They serve as a guideline for shelving books in physical stores and browsing books in online stores. See ‘http://www.bisg.org/what-we-do-cat-20-classification-schemes.php’. + BISAC Subject Headings are used in the North American market to categorize books based on topical content. They serve as a guideline for shelving books in physical stores and browsing books in online stores. See 'https://www.bisg.org/complete-bisac-subject-headings-2013-edition'. @@ -3802,7 +3970,7 @@ SWD - Schlagwortnormdatei – Subject Headings Authority File in the German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/swd.htm (in German) and http://www.d-nb.de/eng/standardisierung/normdateien/swd.htm (English). + Schlagwortnormdatei – Subject Headings Authority File in the German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/swd.htm (in German) and http://www.d-nb.de/eng/standardisierung/normdateien/swd.htm (English). DEPRECATED in favour of the GND. @@ -3814,7 +3982,7 @@ CLIL - France, see Appendix in http://www.clil.org/information/telechargementDoc.html?action=ouvrir&id=313 (in French). + France. A four-digit number, see http://www.clil.org/information/documentation.html (in French). The first digit identifies the version of the scheme. @@ -3958,7 +4126,7 @@ Soggetto CCE - Classificazione commerciale editoriale (Italian book trade subject category based on BIC). + Classificazione commerciale editoriale (Italian book trade subject category based on BIC). CCE documentation available at ‘http://www.ie-online.it/CCE2_2.0.pdf’. @@ -4141,6 +4309,84 @@ Used for classification of academic and specialist publication in German-speaking countries. See http://www.newbooks-services.com/de/top/unternehmensportrait/klassifikation-und-mapping.html (German) and http://www.newbooks-services.com/en/top/about-newbooks/classification-mapping.html (English). + + + GND + Gemeinsame Normdatei – Joint Authority File in the German-speaking countries. See http://www.dnb.de/EN/Standardisierung/Normdaten/GND/gnd_node.html (English). Combines the PND, SWD and GKD into a single authority file, and should be used in preference to the older codes. + + + + + BIC UKSLC + UK Standard Library Categories, the successor to BIC’s E4L classification scheme. + + + + + Thema subject category + + + + + + Thema geographical qualifier + + + + + + Thema language qualifier + + + + + + Thema time period qualifier + + + + + + Thema educational purpose qualifier + + + + + + Thema interest age / special interest qualifier + + + + + + Thema style qualifier + + + + + + Ämnesord + Swedish subject categories maintained by Bokrondellen. + + + + + Statystyka Książek Papierowych, Mówionych I Elektronicznych + Polish Statistical Book and E-book Classification. + + + + + Rameau + French library classification. + + + + + Nomenclature discipline scolaire + French educational subject classification, used for example on WizWiz.fr. See ‘http://www.kiosque-edu.com/html/onix/Nomenclature_disciplines.csv’. + + @@ -4205,7 +4451,7 @@ BISAC Subject Heading - BISAC Subject Headings are used in the North American market to categorize books based on topical content. They serve as a guideline for shelving books in physical stores and browsing books in online stores. See ‘http://www.bisg.org/what-we-do-cat-20-classification-schemes.php’. + BISAC Subject Headings are used in the North American market to categorize books based on topical content. They serve as a guideline for shelving books in physical stores and browsing books in online stores. See ‘https://www.bisg.org/complete-bisac-subject-headings-2013-edition’. @@ -4307,7 +4553,7 @@ SWD - Schlagwortnormdatei – Subject Headings Authority File in the German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/swd.htm (in German) and http://www.d-nb.de/eng/standardisierung/normdateien/swd.htm (English). + Schlagwortnormdatei – Subject Headings Authority File in the German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/swd.htm (in German) and http://www.d-nb.de/eng/standardisierung/normdateien/swd.htm (English). DEPRECATED in favour of the GND. @@ -4319,7 +4565,7 @@ CLIL - France, see Appendix in http://www.clil.org/information/telechargementDoc.html?action=ouvrir&id=313 (in French). + France. A four-digit number, see http://www.clil.org/information/documentation.html (in French). The first digit identifies the version of the scheme. @@ -4682,6 +4928,90 @@ Subject classification for Books, Audiovisual products and E-publications formulated by China National Technical Committee 505. + + + Season and Event Indicator + German code scheme indicating association with seasons, holidays, events (eg Autumn, Back to School, Easter). + + + + + GND + Gemeinsame Normdatei – Joint Authority File in the German-speaking countries. See http://www.dnb.de/EN/Standardisierung/Normdaten/GND/gnd_node.html (English). Combines the PND, SWD and GKD into a single authority file, and should be used in preference to the older codes. + + + + + BIC UKSLC + UK Standard Library Categories, the successor to BIC’s E4L classification scheme. + + + + + Thema subject category + + + + + + Thema geographical qualifier + + + + + + Thema language qualifier + + + + + + Thema time period qualifier + + + + + + Thema educational purpose qualifier + + + + + + Thema interest age / special interest qualifier + + + + + + Thema style qualifier + + + + + + Ämnesord + Swedish subject categories maintained by Bokrondellen. + + + + + Statystyka Książek Papierowych, Mówionych I Elektronicznych + Polish Statistical Book and E-book Classification. + + + + + Rameau + French library classification. + + + + + Nomenclature discipline scolaire + French educational subject classification, used for example on WizWiz.fr. See ‘http://www.kiosque-edu.com/html/onix/Nomenclature_disciplines.csv’. + + @@ -4747,7 +5077,7 @@ ONIX audience codes - Using List 28. + Using a code from List 28. @@ -4855,13 +5185,61 @@ Lexile measure - Lexile measure (the measure in <ComplexityCode> may optionally be prefixed by the Lexile code). Examples might be ‘880L’, ‘AD0L’ or ‘HL600L’. + Lexile measure (the Lexile measure in <AudienceCodeValue> may optionally be prefixed by the Lexile code). Examples might be ‘880L’, ‘AD0L’ or ‘HL600L’. Deprecated – use <Complexity> instead. Fry Readability score - Fry readability metric based on number of sentences and syllables per 100 words. Expressed as a number from 1 to 15 in <AudienceCodeValue>. + Fry readability metric based on number of sentences and syllables per 100 words. Expressed as a number from 1 to 15 in <AudienceCodeValue>. Deprecated – use <Complexity> instead. + + + + + Japanese Children’s audience code + Children’s audience code (対象読者), two-digit encoding of intended target readership from 0–2 years up to High School level. + + + + + ONIX Adult audience rating + Publisher’s rating indicating suitability for an particular adult audience, using a code from List 203. + + + + + Common European Framework for Language Learning + Codes A1 to C2 indicating standardised level of language learning or teaching material, from beginner to advanced, used in EU. + + + + + Korean Publication Ethics Commission rating + Rating used in Korea to control selling of books and e-books to minors. Current values are 0 (suitable for all) and 19 (only for sale to ages 19+). See ‘http://www.kpec.or.kr/english/’. + + + + + IoE Book Band + UK Institute of Education Book Bands for Guided Reading scheme (see http://www.ioe.ac.uk/research/4664.html). <AudienceCodeValue> is a colour, eg ‘Pink A’ or ‘Copper’. Deprecated – use <Complexity> instead. + + + + + FSK Lehr-/Infoprogramm + Used for German videos/DVDs with educational or informative content; value for <AudienceCodeValue> must be either ‘Infoprogramm gemäß § 14 JuSchG’ or ‘Lehrprogramm gemäß § 14 JuSchG’. + + + + + Intended audience language + Where this is different from the language of the text of the book recorded in <Language>. <AudienceCodeValue> should be a value from List 74. + + + + + PEGI rating + Pan European Game Information rating used primarily for video games. @@ -4973,6 +5351,12 @@ Values are P, K, 1–17 (including college-level audiences). + + + Nomenclature niveaux + French educational level classification, used for example on WizWiz.fr. See http://www.kiosque-edu.com/html/onix/Nomenclature_niveaux.csv’. + + @@ -5008,38 +5392,62 @@ Lexile code - DEPRECATED in ONIX 3 – use <Audience> instead. + For example AD or HL. DEPRECATED in ONIX 3 – use code 06 instead. Lexile number - DEPRECATED in ONIX 3 – use <Audience> instead. + For example 880L. DEPRECATED in ONIX 3 – use code 06 instead. Fry Readability score - DEPRECATED in ONIX 3 – Use <Audience> instead. Fry readability metric based on number of sentences and syllables per 100 words. Expressed as a number from 1 to 15 in <ComplexityCode>. + Fry readability metric based on number of sentences and syllables per 100 words. Expressed as a number from 1 to 15 in <ComplexityCode>. - - - - - Other text type code - - - + - Main description - + IoE Book Band + UK Institute of Education Book Bands for Guided Reading scheme (see http://www.ioe.ac.uk/research/4664.html). <ComplexityCode> is a colour, eg ‘Pink A’ or ‘Copper’. - + - Short description/annotation - Limited to a maximum of 350 characters. + Fountas and Pinnell Text Level Gradient + <ComplexityCode> is a code from ‘A’ to Z+’. + + + + + Lexile measure + The Lexile measure in <ComplexityCode> combines the Lexile number (for example 620L or 880L) and optionally the Lexile code (for example AD or HL). Examples might be ‘880L’, ‘AD0L’ or ‘HL600L’. + + + + + ATOS for Books + Advantage-TASA Open Standard book readability score, used for example within the Accelerated Reader scheme. <ComplexityCode> is a real number between 0 and 17. + + + + + + + Other text type code + + + + + Main description + + + + + + Short description/annotation + Limited to a maximum of 350 characters. @@ -5264,6 +5672,30 @@ (of which the product is a part.) + + + Contributor event schedule + Link to a schedule in iCalendar format. + + + + + License + Link to a license covering permitted usage of the product content. + + + + + Open access statement + Short summary statement of open access status and any related conditions (eg “Open access – no commercial use”), primarily for marketing purposes. Should always be accompanied by a link to the complete license (see code 46). + + + + + Master brand name + A master brand name or title, where the use of the brand spans multiple sets, series and product forms, and possibly multiple imprints and publishers. Used only for branded media properties such as children’s character properties. (This functionality is provided as a workaround in ONIX 2.1 only. ONIX 3.0 has specific provision for master brands as title elements. + + Country of final manufacture @@ -5557,6 +5989,12 @@ Use only for a logo which is specific to an individual product. + + + Image: Master brand logo + + + Image: publisher logo @@ -5584,7 +6022,7 @@ Image: back cover - Quality unspecified: if sending both a standard quality and a high quality image, use 24 for standard quality and 26 for high quality. + Quality unspecified: if sending both a standard quality and a high quality image, use 24 for standard quality and 25 for high quality. @@ -5765,7 +6203,7 @@ MP3 - MPEG-1/2 Audio Layer III file. + MPEG-1/2 Audio Layer III file (.mp3). @@ -5783,49 +6221,49 @@ WMA - Windows Media Audio format. + Windows Media Audio format (.wma). AAC - Advanced Audio Codec format. + Advanced Audio Codec format (.aac). WAV - Waveform audio file. + Waveform audio file (.wav). AIFF - Audio Interchange File Format. + Audio Interchange File Format (.aiff). WMV - Windows Media Video format. + Windows Media Video format (.wmv). OGG - Ogg container format. + Ogg container format (.ogg). AVI - Audio Video Interleaved container format. + Audio Video Interleaved container format (.avi). MOV - Quicktime container format. + Quicktime container format (.mov). @@ -5911,19 +6349,19 @@ Commended - + Cited as being worthy of special attention at the final stage of the judging process, but not named specifically as winner or runner-up. Possible terminology used by a particular prize includes ‘specially commended’ or ‘honored’. Short-listed - Nominated by the judging process to be one of the final ‘short-list’ from which the winner is selected. + Title named by the judging process to be one of the final list of candidates, such as a ‘short-list’ from which the winner is selected, or a title named as ‘finalist’. Long-listed - Nominated by the judging process to be one of the preliminary ‘long-list’ from which first a short-list and then the winner is selected. + Title named by the judging process to be one of the preliminary list of candidates, such as a ‘long-list’ from which first a shorter list or set of finalists is selected, and then the winner is announced. @@ -5932,6 +6370,12 @@ Or co-winner. + + + Nominated + Selected by judging panel or an official nominating process for final consideration for a prize, award or honour for which no “short-list” or “long list” exists. + + @@ -6072,10 +6516,16 @@ For serial items only. + + + ISTC + + + ISBN-13 - (unhyphenated). + (Unhyphenated). @@ -6154,7 +6604,7 @@ PND - Personennamendatei – person name authority file used by Deutsche Nationalbibliothek and in other German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/pnd.htm (German) or http://www.d-nb.de/eng/standardisierung/normdateien/pnd.htm (English). + Personennamendatei – person name authority file used by Deutsche Nationalbibliothek and in other German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/pnd.htm (German) or http://www.d-nb.de/eng/standardisierung/normdateien/pnd.htm (English). DEPRECATED in favour of the GND. @@ -6172,7 +6622,7 @@ GKD - Gemeinsame Körperschaftsdatei – Corporate Body Authority File in the German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/gkd.htm (German) or http://www.d-nb.de/eng/standardisierung/normdateien/gkd.htm (English). + Gemeinsame Körperschaftsdatei – Corporate Body Authority File in the German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/gkd.htm (German) or http://www.d-nb.de/eng/standardisierung/normdateien/gkd.htm (English). DEPRECATED in favour of the GND. @@ -6190,7 +6640,7 @@ VAT Identity Number - Identifier for a business organization for VAT purposes, eg within the EU's VIES system. See http://ec.europa.eu/taxation_customs/vies/faqvies.do for EU VAT ID formats, which vary from country to country. Generally these consist of a two-letter country code followed by the 8–12 digits of the national VAT ID. Some countries include one or two letters within their VAT ID. See http://en.wikipedia.org/wiki/VAT_identification_number for non-EU countries that maintain similar identifiers. Spaces, dashes etc should be omitted. + Identifier for a business organization for VAT purposes, eg within the EU’s VIES system. See http://ec.europa.eu/taxation_customs/vies/faqvies.do for EU VAT ID formats, which vary from country to country. Generally these consist of a two-letter country code followed by the 8–12 digits of the national VAT ID. Some countries include one or two letters within their VAT ID. See http://en.wikipedia.org/wiki/VAT_identification_number for non-EU countries that maintain similar identifiers. Spaces, dashes etc should be omitted. @@ -6199,6 +6649,36 @@ 4-digit business organization identifier controlled by the Japanese Publication Wholesalers Association. + + + GND + Gemeinsame Normdatei – Joint Authority File in the German-speaking countries. See http://www.dnb.de/EN/Standardisierung/Normdaten/GND/gnd_node.html (English). Combines the PND, SWD and GKD into a single authority file, and should be used in preference. + + + + + DUNS + Dunn and Bradstreet Universal Numbering System, see ‘www.dnb.co.uk/dandb-duns-number’. + + + + + Ringgold ID + Ringgold organizational identifier, see ‘http://www.ringgold.com/pages/identify.html’. + + + + + Identifiant Editeur Electre + French Electre publisher identifier. + + + + + Identifiant Marque Electre + French Electre imprint Identifier. + + @@ -6215,7 +6695,7 @@ Co-publisher - + Use where two or more publishers co-publish the exact same product, either under a single ISBN (in which case both publishers are co-publishers), or under different ISBNs (in which case the publisher of THIS ISBN is the publisher and the publishers of OTHER ISBNs are co-publishers. Note this is different from publication of ‘co-editions’. @@ -6284,6 +6764,36 @@ When ownership of a product or title is transferred from one publisher to another (complement of code 09). + + + Publication funder + Body funding publication fees, if different from the body funding the underlying research. For use with open access publications. + + + + + Research funder + Body funding the research on which publication is based, if different from the body funding the publication. For use with open access publications. + + + + + Funding body + Body funding research and publication. For use with open access publications. + + + + + Printer + Organisation responsible for printing a printed product. Supplied primarily to meet legal deposit requirements, and may apply only to the first impression. The organisation may also be responsible for binding, when a separate binder is not specified. + + + + + Binder + Organisation responsible for binding a printed product (where distinct from the printer). Supplied primarily to meet legal deposit requirements, and may apply only to the first impression. + + @@ -6299,13 +6809,13 @@ - For unrestricted sale with exclusive rights in the specified countries or territories + For sale with exclusive rights in the specified countries or territories - For unrestricted sale with non-exclusive rights in the specified countries or territories + For sale with non-exclusive rights in the specified countries or territories @@ -6336,13 +6846,13 @@ For sale with exclusive rights in the specified countries or territories (sales restriction applies) - Only for use with ONIX 3. + Only for use with ONIX 3. Deprecated. For sale with non-exclusive rights in the specified countries or territories (sales restriction applies) - Only for use with ONIX 3. + Only for use with ONIX 3. Deprecated. @@ -6642,393 +7152,1557 @@ - + - Alaska + Ireland airside + Airside outlets at Irish international airports only. + + + + + Agrigento - + - Alabama + Alessandria - + - Arkansas + Ancona - + - Arizona + Aosta - + - California + Arezzo - + - Colorado + Ascoli Piceno - + - Connecticut + Asti - + - District of Columbia + Avellino - + - Delaware + Bari - + - Florida + Barletta-Andria-Trani - + - Georgia + Belluno - + - Hawaii + Benevento - + - Iowa + Bergamo - + - Idaho + Biella - + - Illinois + Bologna - + - Indiana + Bolzano - + - Kansas + Brescia - + - Kentucky + Brindisi - + - Louisiana + Cagliari - + - Massachusetts + Caltanissetta - + - Maryland + Campobasso - + - Maine + Carbonia-Iglesias - + - Michigan + Caserta - + - Minnesota + Catania - + - Missouri + Catanzaro - + - Mississippi + Chieti - + - Montana + Como - + - North Carolina + Cosenza - + - North Dakota + Cremona - + - Nebraska + Crotone - + - New Hampshire + Cuneo - + - New Jersey + Enna - + - New Mexico + Fermo - + - Nevada + Ferrara - + - New York + Firenze - + - Ohio + Foggia - + - Oklahoma + Forlì-Cesena - + - Oregon + Frosinone - + - Pennsylvania + Genova - + - Rhode Island + Gorizia - + - South Carolina + Grosseto - + - South Dakota + Imperia - + - Tennessee + Isernia - + - Texas + La Spezia - + - Utah + L’Aquila - + - Virginia + Latina - + - Vermont + Lecce - + - Washington + Lecco - + - Wisconsin + Livorno - + - West Virginia + Lodi - + - Wyoming + Lucca - + - Eurozone - Countries geographically within continental Europe which use the Euro as their sole currency. At the time of writing, this is a synonym for “AT BE CY EE FI FR DE ES GR IE IT LU MT NL PT SI SK” (the official Eurozone 17), plus “AD MC SM VA ME” (other Euro-using countries in continental Europe). Note some other territories using the Euro, but outside continental Europe are excluded from this list, and may need to be specified separately. Only valid in ONIX 3, and only within Block 6. + Macerata + - + - Rest of world - World except as otherwise specified. NOT USED in ONIX 3. + Mantova + - + - World + Massa-Carrara - - - - - Measure unit code - - - + - Centimeters - Millimeters are the preferred metric unit of length. + Matera + - + - Grams + Medio Campidano - + - Inches (US) + Messina - + - Kilograms + Milano - + - Pounds (US) + Modena - + - Millimeters + Monza e Brianza - + - Ounces (US) + Napoli - + - Pixels + Novara - - - - - Product relation code - - - + + + Nuoro + + + + + + Ogliastra + + + + + + Olbia-Tempio + + + + + + Oristano + + + + + + Padova + + + + + + Palermo + + + + + + Parma + + + + + + Pavia + + + + + + Perugia + + + + + + Pesaro e Urbino + + + + + + Pescara + + + + + + Piacenza + + + + + + Pisa + + + + + + Pistoia + + + + + + Pordenone + + + + + + Potenza + + + + + + Prato + + + + + + Ragusa + + + + + + Ravenna + + + + + + Reggio Calabria + + + + + + Reggio Emilia + + + + + + Rieti + + + + + + Rimini + + + + + + Roma + + + + + + Rovigo + + + + + + Salerno + + + + + + Sassari + + + + + + Savona + + + + + + Siena + + + + + + Siracusa + + + + + + Sondrio + + + + + + Taranto + + + + + + Teramo + + + + + + Terni + + + + + + Torino + + + + + + Trapani + + + + + + Trento + + + + + + Treviso + + + + + + Trieste + + + + + + Udine + + + + + + Varese + + + + + + Venezia + + + + + + Verbano-Cusio-Ossola + + + + + + Vercelli + + + + + + Verona + + + + + + Vibo Valentia + + + + + + Vicenza + + + + + + Viterbo + + + + + + Republic of Adygeya + + + + + + Republic of Altay + + + + + + Republic of Bashkortostan + + + + + + Republic of Buryatiya + + + + + + Chechenskaya Republic + + + + + + Chuvashskaya Republic + + + + + + Republic of Dagestan + + + + + + Republic of Ingushetiya + + + + + + Kabardino-Balkarskaya Republic + + + + + + Republic of Kalmykiya + + + + + + Karachayevo-Cherkesskaya Republic + + + + + + Republic of Kareliya + + + + + + Republic of Khakasiya + + + + + + Republic of Komi + + + + + + Republic of Mariy El + + + + + + Republic of Mordoviya + + + + + + Republic of Sakha (Yakutiya) + + + + + + Republic of Severnaya Osetiya-Alaniya + + + + + + Republic of Tatarstan + + + + + + Republic of Tyva (Tuva) + + + + + + Udmurtskaya Republic + + + + + + Altayskiy Administrative Territory + + + + + + Kamchatskiy Administrative Territory + + + + + + Khabarovskiy Administrative Territory + + + + + + Krasnodarskiy Administrative Territory + + + + + + Krasnoyarskiy Administrative Territory + + + + + + Permskiy Administrative Territory + + + + + + Primorskiy Administrative Territory + + + + + + Stavropol’skiy Administrative Territory + + + + + + Zabaykal’skiy Administrative Territory + + + + + + Amurskaya Administrative Region + + + + + + Arkhangel’skaya Administrative Region + + + + + + Astrakhanskaya Administrative Region + + + + + + Belgorodskaya Administrative Region + + + + + + Bryanskaya Administrative Region + + + + + + Chelyabinskaya Administrative Region + + + + + + Irkutskaya Administrative Region + + + + + + Ivanovskaya Administrative Region + + + + + + Kaliningradskaya Administrative Region + + + + + + Kaluzhskaya Administrative Region + + + + + + Kemerovskaya Administrative Region + + + + + + Kirovskaya Administrative Region + + + + + + Kostromskaya Administrative Region + + + + + + Kurganskaya Administrative Region + + + + + + Kurskaya Administrative Region + + + + + + Leningradskaya Administrative Region + + + + + + Lipetskaya Administrative Region + + + + + + Magadanskaya Administrative Region + + + + + + Moskovskaya Administrative Region + + + + + + Murmanskaya Administrative Region + + + + + + Nizhegorodskaya Administrative Region + + + + + + Novgorodskaya Administrative Region + + + + + + Novosibirskaya Administrative Region + + + + + + Omskaya Administrative Region + + + + + + Orenburgskaya Administrative Region + + + + + + Orlovskaya Administrative Region + + + + + + Penzenskaya Administrative Region + + + + + + Pskovskaya Administrative Region + + + + + + Rostovskaya Administrative Region + + + + + + Ryazanskaya Administrative Region + + + + + + Sakhalinskaya Administrative Region + + + + + + Samarskaya Administrative Region + + + + + + Saratovskaya Administrative Region + + + + + + Smolenskaya Administrative Region + + + + + + Sverdlovskaya Administrative Region + + + + + + Tambovskaya Administrative Region + + + + + + Tomskaya Administrative Region + + + + + + Tul’skaya Administrative Region + + + + + + Tverskaya Administrative Region + + + + + + Tyumenskaya Administrative Region + + + + + + Ul’yanovskaya Administrative Region + + + + + + Vladimirskaya Administrative Region + + + + + + Volgogradskaya Administrative Region + + + + + + Vologodskaya Administrative Region + + + + + + Voronezhskaya Administrative Region + + + + + + Yaroslavskaya Administrative Region + + + + + + Moskva City + + + + + + Sankt-Peterburg City + + + + + + Yevreyskaya Autonomous Administrative Region + + + + + + Chukotskiy Autonomous District + + + + + + Khanty-Mansiyskiy Autonomous District + + + + + + Nenetskiy Autonomous District + + + + + + Yamalo-Nenetskiy Autonomous District + + + + + + Alaska + + + + + + Alabama + + + + + + Arkansas + + + + + + Arizona + + + + + + California + + + + + + Colorado + + + + + + Connecticut + + + + + + District of Columbia + + + + + + Delaware + + + + + + Florida + + + + + + Georgia + + + + + + Hawaii + + + + + + Iowa + + + + + + Idaho + + + + + + Illinois + + + + + + Indiana + + + + + + Kansas + + + + + + Kentucky + + + + + + Louisiana + + + + + + Massachusetts + + + + + + Maryland + + + + + + Maine + + + + + + Michigan + + + + + + Minnesota + + + + + + Missouri + + + + + + Mississippi + + + + + + Montana + + + + + + North Carolina + + + + + + North Dakota + + + + + + Nebraska + + + + + + New Hampshire + + + + + + New Jersey + + + + + + New Mexico + + + + + + Nevada + + + + + + New York + + + + + + Ohio + + + + + + Oklahoma + + + + + + Oregon + + + + + + Pennsylvania + + + + + + Rhode Island + + + + + + South Carolina + + + + + + South Dakota + + + + + + Tennessee + + + + + + Texas + + + + + + Utah + + + + + + Virginia + + + + + + Vermont + + + + + + Washington + + + + + + Wisconsin + + + + + + West Virginia + + + + + + Wyoming + + + + + + Eurozone + Countries geographically within continental Europe which use the Euro as their sole currency. At the time of writing, this is a synonym for “AT BE CY EE FI FR DE ES GR IE IT LU LV MT NL PT SI SK” (the official Eurozone 18), plus “AD MC SM VA ME” (other Euro-using countries in continental Europe). Note some other territories using the Euro, but outside continental Europe are excluded from this list, and may need to be specified separately. Only valid in ONIX 3, and only within P.26. Use of an explicit list of countries instead of ECZ is strongly encouraged. + + + + + Rest of world + World except as otherwise specified. NOT USED in ONIX 3. + + + + + World + + + + + + + + Measure unit code + + + + + Centimeters + Millimeters are the preferred metric unit of length. + + + + + Grams + + + + + + Inches (US) + + + + + + Kilograms + Grams are the preferred metric unit of weight. + + + + + Pounds (US) + + + + + + Millimeters + + + + + + Ounces (US) + + + + + + Pixels + + + + + + + + Product relation code + + + Unspecified <Product> is related to <RelatedProduct> in a way that cannot be specified by another code value. @@ -7208,6 +8882,36 @@ <RelatedProduct> and <Product> are part of the same collection (eg two products in same series or set). + + + Has alternative in a different market sector + <RelatedProduct> is an alternative product in another sector (of the same geographical market). Indicates an alternative that carries the same content, but available to a different set of customers, as one or both products are retailer-, channel- or market sector-specific. + + + + + Has equivalent intended for a different market + <RelatedProduct> is an equivalent product, often intended for another (geographical) market. Indicates an alternative that carries essentially the same content, though slightly adapted for local circumstances (as opposed to a translation – use code 11). + + + + + Has alternative intended for different market + <RelatedProduct> is an alternative product, often intended for another (geographical) market. Indicates the content of the alternative is identical in all respects. + + + + + Cites + <Product> cites <RelatedProduct>. + + + + + Is cited by + <Product> is the object of a citation in <RelatedProduct>. + + @@ -7237,13 +8941,13 @@ French book trade returns conditions code - Maintained by CLIL (Commission Interprofessionnel du Livre). + Maintained by CLIL (Commission Interprofessionnel du Livre). Returns conditions values in <ReturnsCode> should be taken from the CLIL list. BISAC Returnable Indicator code - Maintained by BISAC: see List 66. + Maintained by BISAC: Returns conditions values in <ReturnsCode> should be taken from List 66. @@ -7252,6 +8956,12 @@ NOT CURRENTLY USED – BIC has decided that it will not maintain a code list for this purpose, since returns conditions are usually at least partly based on the trading relationship. + + + ONIX Returns conditions code + Returns conditions values in <ReturnsCode> should be taken from List 204. + + @@ -7485,13 +9195,13 @@ YYYYMMDDThhmm - Exact time. Use ONLY when exact times with hour/minute precision are relevant. By default, time is local to the sender. Alternatively, the time may be suffixed with an optional ‘Z’ for UTC times, or with ‘+’ or ‘-’ and an hhmm timezone offset from UTC. + Exact time. Use ONLY when exact times with hour/minute precision are relevant. By default, time is local. Alternatively, the time may be suffixed with an optional ‘Z’ for UTC times, or with ‘+’ or ‘-’ and an hhmm timezone offset from UTC. Times without a timezone are ‘rolling’ local times, times qualified with a timezone (using Z, + or -) specify a particular instant in time. YYYYMMDDThhmmss - Exact time. Use ONLY when exact times with second precision are relevant. By default, time is local to the sender. Alternatively, the time may be suffixed with an optional ‘Z’ for UTC times, or with ‘+’ or ‘-’ and an hhmm timezone offset from UTC. + Exact time. Use ONLY when exact times with second precision are relevant. By default, time is local. Alternatively, the time may be suffixed with an optional ‘Z’ for UTC times, or with ‘+’ or ‘-’ and an hhmm timezone offset from UTC. Times without a timezone are ‘rolling’ local times, times qualified with a timezone (using Z, + or -) specify a particular instant in time. @@ -7638,7 +9348,7 @@ Special sale RRP excluding tax - Special sale RRP excluding any sales tax or value-added tax. Note 'special sales' are sales where terms and conditions are different from normal trade sales, when for example products that are normally sold on a sale-or-return basis are sold on firm-sale terms, or where a particular product is tailored for a specific retail outlet (often termed a ‘premium’ product). Further details of the modified terms and conditioins should be given in <PriceTypeDescription>. + Special sale RRP excluding any sales tax or value-added tax. Note ‘special sales’ are sales where terms and conditions are different from normal trade sales, when for example products that are normally sold on a sale-or-return basis are sold on firm-sale terms, where a particular product is tailored for a specific retail outlet (often termed a ‘premium’ product), or where other specific conditions or qualiifications apply. Further details of the modified terms and conditions should be given in <PriceTypeDescription>. @@ -7738,6 +9448,12 @@ Price type qualifier + + + Unqualified price + Price applies to all customers that do not fall within any other group with a specified group-specific qualified price. + + Member/subscriber price @@ -7786,6 +9502,12 @@ Temporary ‘Special offer’ price. Must be accompanied by <PriceEffectiveFrom> and <PriceEffectiveUntil> dates (or equivalent <PriceDate> composites in ONIX 3), and may also be accompanied by a ‘normal’ price. + + + Linked price + Price requires purchase with, or proof of ownership of another product. Further details of purchase or ownership requirements must be given in <PriceTypeDescription>. + + @@ -7970,6 +9692,12 @@ Withdrawn temporarily, typically for quality or technical reasons. In ONIX 3.0, must be accompanied by expected availability date coded ‘22’ within the <PublishingDate> composite, except in exceptional circumstances where no date is known. + + + Permanently withdrawn from sale + Withdrawn permanently from the market. Effectively synonymous with ‘Out of print’ (code 07), but specific to downloadable and online digital products (where no ‘stock’ would remain in the supply chain). + + @@ -8433,6 +10161,12 @@ For editions sold only through newsstands/newsagents. + + + Retailer exception + Not for sale through designated retailer. Retailer must be identified or named in an instance of the <SalesOutlet> composite. + + @@ -8719,13 +10453,13 @@ - Author's social networking URL + Author’s social networking URL For example, a Facebook, Google+ or Twitter page. - Publisher's social networking URL + Publisher’s social networking URL For example, a Facebook, Google+ or Twitter page. @@ -10857,13 +12591,19 @@ Aranés - ONIX local code. + ONIX local code, distinct dialect of Occitan (not distinguished from oci by ISO 639-3). Valencian - ONIX local code. + ONIX local code, distinct dialect of Catalan (not distinguished from cat by ISO 639-3). + + + + + Kvensk + ONIX local code, equivalent to fkv in ISO 639-3. @@ -12250,6 +13990,12 @@ Japanese B-series size, 364x257mm. + + + Paperback (DE) + German paperback format, greater than 205mm high, with flaps. Use with Product form code BC. + + Coloring / join-the-dot book @@ -12580,6 +14326,12 @@ With edge trimming such that the front edge is ragged, not neatly and squarely trimmed: AKA deckle edge, feather edge, uncut edge, rough cut. + + + With foldout + With one or more gatefold or foldout sections bound in. + + Turn-around book @@ -12592,6 +14344,12 @@ Manga with pages and panels in the sequence of the original Japanese, but with Western text. + + + Syllabification + Text shows syllable breaks. + + UK Uncontracted Braille @@ -12637,7 +14395,7 @@ Real Video format - + Includes RealVideo packaged within a .rm RealMedia container. @@ -12826,6 +14584,54 @@ E-publication requires a network connection to access some resources (eg an enhanced e-book where video clips are not stored within the e-publication ‘package’ itself, but are delivered via an internet connection). + + + Content removed + Resources (eg images) present in other editions have been removed from this product, eg due to rights issues. + + + + + Landscape + Use for fixed-format e-books optimised for landscape display. Also include an indication of the optimal screen aspect ratio. + + + + + Portrait + Use for fixed-format e-books optimised for portrait display. Also include an indication of the optimal screen aspect ratio. + + + + + 5:4 + Use for fixed-format e-books optimised for displays with a 5:4 aspect ratio (eg 1280x1024 pixels etc, assuming square pixels). Note that aspect ratio codes are NOT specific to actual screen dimensions or pixel counts, but to the ratios between two dimensions or two pixel counts. + + + + + 4:3 + Use for fixed-format e-books optimised for displays with a 4:3 aspect ratio (eg 800x600, 1024x768, 2048x1536 pixels etc). + + + + + 3:2 + Use for fixed-format e-books optimised for displays with a 3:2 aspect ratio (eg 960x640, 3072x2048 pixels etc). + + + + + 16:10 + Use for fixed-format e-books optimised for displays with a 16:10 aspect ratio (eg 1440x900, 2560x1600 pixels etc). + + + + + 16:9 + Use for fixed-format e-books optimised for displays with a 16:9 aspect ratio (eg 1024x576, 1920x1080, 2048x1152 pixels etc). + + Laminated @@ -13022,7 +14828,7 @@ E-publication format version - For versioned e-book file format (or in some cases, device) – for example EPUB 2 and EPUB 3. <ProductFormFeatureValue> should contain the version number. Use only with ONIX 3.0 – in ONIX 2.1, use <EpubTypeVersion> instead. + For versioned e-book file formats (or in some cases, devices). <ProductFormFeatureValue> should contain the version number as a period-separated list of numbers (eg ‘7’, ‘1.5’ or ‘3.10.7’). Use only with ONIX 3.0 – in ONIX 2.1, use <EpubTypeVersion> instead. For the most common file formats, code 15 and List 220 is strongly preferred. @@ -13039,8 +14845,20 @@ - EU Toy Safety Hazard Warning - Product carries hazard warning required by EU Toy Safety Directive. The Product Form Feature value is a code from List 184, and (for some codes) the exact wording of the warning may be given in Product Form Feature Description. + EU Toy Safety Hazard warning + Product carries hazard warning required by EU Toy Safety Directive. The Product Form Feature Value is a code from List 184, and (for some codes) the exact wording of the warning may be given in Product Form Feature Description. + + + + + IATA Dangerous Goods warning + Product Form Feature Description must give further details of the warning. + + + + + E-publication format version code + For common versioned e-book formats (or in some cases, devices) – for example EPUB 2.0.1 or EPUB 3.0. <ProductFormFeatureValue> is a code from list 220. Use in ONIX 3.0 only. @@ -13113,7 +14931,7 @@ Slip-sleeve - Thin card sleeve, much less rigid than a slip case. + Thin card or soft plastic sleeve, much less rigid than a slip case. @@ -13134,6 +14952,12 @@ Typical CD-style packaging. + + + Digipak + Common CD-style packaging, a card folder with one or more panels incorporating a tray, hub or pocket to hold the disc(s). + + In box @@ -14568,7 +16392,7 @@ - Bonaire, Sint Eustatius, Saba + Bonaire, Sint Eustatius and Saba @@ -14652,7 +16476,7 @@ - Cote D’Ivoire + Cote d’Ivoire @@ -15210,7 +17034,7 @@ - Libyan Arab Jamahiriya + Libya @@ -15228,7 +17052,7 @@ - Moldova + Moldova, Repubic of @@ -15240,7 +17064,7 @@ - Saint Martin, French part + Saint Martin (French part) @@ -15492,7 +17316,7 @@ - Palestinian Territory, Occupied + Palestine, State of @@ -15588,7 +17412,7 @@ - Saint Helena, Ascension, Tristan da Cunha + Saint Helena, Ascension and Tristan da Cunha @@ -15956,7 +17780,7 @@ VAT Identity Number - Identifier for a business organization for VAT purposes, eg within the EU's VIES system. See http://ec.europa.eu/taxation_customs/vies/faqvies.do for EU VAT ID formats, which vary from country to country. Generally these consist of a two-letter country code followed by the 8–12 digits of the national VAT ID. Some countries include one or two letters within their VAT ID. See http://en.wikipedia.org/wiki/VAT_identification_number for non-EU countries that maintain similar identifiers. Spaces, dashes etc should be omitted. + Identifier for a business organization for VAT purposes, eg within the EU’s VIES system. See http://ec.europa.eu/taxation_customs/vies/faqvies.do for EU VAT ID formats, which vary from country to country. Generally these consist of a two-letter country code followed by the 8–12 digits of the national VAT ID. Some countries include one or two letters within their VAT ID. See http://en.wikipedia.org/wiki/VAT_identification_number for non-EU countries that maintain similar identifiers. Spaces, dashes etc should be omitted. @@ -16446,7 +18270,7 @@ Pound Sterling - United Kingdom, Isle of Man, Channel Islands, South Georgia, South Sandwich Islands, Brisish Indian Ocean Territory. + United Kingdom, Isle of Man, Channel Islands, South Georgia, South Sandwich Islands, British Indian Ocean Territory. @@ -16704,7 +18528,7 @@ Latvian Lats - Latvia. + Now replaced by the Euro (EUR): use only for historical prices that pre-date the introduction of the Euro. @@ -17021,7 +18845,7 @@ - Suriname Guilder + Surinam Dollar Suriname. @@ -17232,7 +19056,7 @@ Kwacha - Zambia. + Deprecated, replaced with ZMW. @@ -17241,6 +19065,12 @@ Deprecated, replaced with ZWL. + + + Zambian Kwacha + Zambia. + + Zimbabwe Dollar @@ -17363,6 +19193,12 @@ + + + Sky/Pale blue + + + Silver @@ -17371,7 +19207,13 @@ - Tan + Tan/Light brown + + + + + + Teal/Turquoise green @@ -17603,7 +19445,13 @@ PND - Personennamendatei – person name authority file used by Deutsche Nationalbibliothek and in other German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/pnd.htm (German) or http://www.d-nb.de/eng/standardisierung/normdateien/pnd.htm (English). + Personennamendatei – person name authority file used by Deutsche Nationalbibliothek and in other German-speaking countries. See http://www.d-nb.de/standardisierung/normdateien/pnd.htm (German) or http://www.d-nb.de/eng/standardisierung/normdateien/pnd.htm (English). DEPRECATED in favour of the GND. + + + + + LCCN + Library of Congress control number assigned to a Library of Congress Name Authority record. @@ -17612,6 +19460,12 @@ International Standard Name Identifier. See ‘http://www.isni.org/’. + + + GND + Gemeinsame Normdatei – Joint Authority File in the German-speaking countries. See http://www.dnb.de/EN/Standardisierung/Normdaten/GND/gnd_node.html (English). Combines the PND, SWD and GKD into a single authority file, and should be used in preference. + + @@ -18692,7 +20546,7 @@ - Apple Computer stores + Apple @@ -18792,12 +20646,24 @@ + + + Casa del Libro + + + Christianbook.com + + + Copia + + + Costco @@ -18816,6 +20682,12 @@ + + + Cyberlibris + + + Dick’s Sporting Goods @@ -18852,6 +20724,18 @@ + + + El Corte Inglés + + + + + + Electre + + + Elib.se @@ -18870,6 +20754,12 @@ + + + FeedBooks + + + Fnac @@ -18896,8 +20786,8 @@ - GoSpoken - + Blinkbox + Formerly GoSpoken/Mobcast @@ -18918,12 +20808,24 @@ + + + Immatériel.fr + + + Indigo-Chapters + + + Izneo + + + John Smith and Son @@ -19008,12 +20910,24 @@ + + + MyBoox + + + National Trust + + + Numilog + + + Office Depot @@ -19062,6 +20976,12 @@ + + + Readbooks + + + ReadCloud @@ -19104,6 +21024,12 @@ + + + Skoobe + + + Sony @@ -19116,6 +21042,12 @@ + + + The Ebook Alternative + + + Target @@ -19140,6 +21072,12 @@ + + + Txtr + + + Virgin Megastores @@ -19622,6 +21560,18 @@ Maximum time period in days. + + + Weeks + Maximum time period in weeks. + + + + + Months + Maximum time period in months. + + Times @@ -19696,6 +21646,12 @@ The title element refers to a content item within a product, eg a work included in a combined or ‘omnibus’ edition, or a chapter in a book. + + + Master brand + The title element names a master brand where the use of the brand spans multiple collections and product forms, and possibly multiple imprints and publishers. Used only for branded media properties such as children’s character properties. + + @@ -19724,7 +21680,7 @@ CD-Audio - Audio compact disc, in any recording format: use coding in Product Form Detail to specify the format, if required. + Audio compact disc, in any recording format: use for ‘red book’ (conventional audio CD) and SACD, and use coding in Product Form Detail to specify the format, if required. @@ -19736,13 +21692,13 @@ Audio disc - Audio disc (excluding CD). + Audio disc (excluding CD-Audio). Audio tape - Audio tape (reel tape). + Audio tape (analogue open reel tape). @@ -19754,7 +21710,7 @@ CD-Extra - Audio compact disc with part CD-ROM content. + Audio compact disc with part CD-ROM content, also termed CD-Plus or Enhanced-CD: use for ‘blue book’ and ‘yellow/red book’ two-session discs. @@ -19940,7 +21896,7 @@ CD-I - CD interactive. + CD interactive: use for ‘green book’ discs. @@ -20276,19 +22232,19 @@ DVD video - DVD video: specify TV standard in List 78. + DVD video: specify TV standard in List 175. VHS video - VHS videotape: specify TV standard in List 78. + VHS videotape: specify TV standard in List 175. Betamax video - Betamax videotape: specify TV standard in List 78. + Betamax videotape: specify TV standard in List 175. @@ -20321,6 +22277,12 @@ Sony Universal Media disc. + + + CBHD + China Blue High-Definition, derivative of HD-DVD. + + Other video format @@ -20441,10 +22403,40 @@ + + + E-book reader + Dedicated e-book reading device, typically with mono screen. + + + + + Tablet computer + General purpose tablet computer, typically with color screen. + + + + + Audiobook player + Dedicated audiobook player device, typically including book-related features like bookmarking. + + + + + Jigsaw + + + + + + Other apparel + Other apparel items not specified by ZB to ZJ, including promotional or branded scarves, caps, aprons etc. + + Other merchandise - Other merchandise not specified by ZB to ZF. + Other merchandise not specified by ZB to ZY. @@ -20496,6 +22488,12 @@ + + + Citizen of + Or nationality. For use with country codes only. + + @@ -20585,7 +22583,7 @@ Feature - Text describing a feature of a product to which the publisher wishes to draw attention for promotional purposes. + Text describing a feature of a product to which the publisher wishes to draw attention for promotional purposes. Each separate feature should be described by a separate repeat, so that formatting can be applied at the discretion of the receiver of the ONIX record, or multiple features can be described using appropriate XHTML markup. @@ -20624,6 +22622,24 @@ (of which the product is a part.) Length unrestricted. + + + New feature + As code 11 but used for a new feature of this edition or version. + + + + + Version history + + + + + + Open access statement + Short summary statement of open access status and any related conditions (eg “Open access – no commercial use”), primarily for marketing purposes. Should always be accompanied by a link to the complete license (see <EpubLicense> or code 99 in List 158). + + @@ -20728,6 +22744,18 @@ Combines From date and Until date to define a period (both dates are inclusive). Use with for example dateformat 06. + + + Available from + Date from which a supporting resource is available for download. Note that this date also implies that it can be immediately displayed to the intended audience, unless a From date (code 14) is also supplied and is later than the Available from date. + + + + + Available until + Date until which a supporting resource is available for download. Note that this date does not imply it must be removed from display to the intended audience on this date – for this, use Until date (code 15). + + @@ -20971,6 +22999,18 @@ Includes cover, back cover, spine and – where appropriate – any flaps. + + + Master brand logo + + + + + + License + Link to a license covering permitted usage of the product content. Deprecated in favor of <EpubLicense>. This was a workaround in ONIX 3.0, and use of <EpubLicense> is strongly preferred. + + @@ -21165,7 +23205,7 @@ Out-of-print / deletion date - Date when a product was declared out-of-print or deleted. + Date when a product was (or will be) declared out-of-print or deleted. @@ -21204,6 +23244,24 @@ Date from which reviews of a product may be published eg in newspapers and magazines or online. Provided to the book trade for information only: newspapers and magazines are not expected to be recipients of ONIX metadata. + + + Publisher’s reservation order deadline + Latest date on which an order may be placed with the publisher for guaranteed delivery prior to the publication date. May or may not be linked to a special reservation or pre-publication price. + + + + + Forthcoming reprint date + Date when a product will be reprinted. + + + + + Preorder embargo date + Earliest date a retail ‘preorder’ can be placed (where this is distinct from the public announcement date). + + @@ -21220,13 +23278,13 @@ Derived from - Product X is or includes a manifestation of a work derived from related work Y in one or more of the ways specified in ISTC rules. This relation type is intended to enable products with a common ‘parent’ work to be linked without specifying the precise nature of their derivation. + Product X is or includes a manifestation of a work derived (directly) from related work Y in one or more of the ways specified in ISTC rules. This relation type is intended to enable products with a common ‘parent’ work to be linked without specifying the precise nature of their derivation. Related work is derived from this - Product X is a manifestation of a work from which related work Y is derived in one or more of the ways specified in ISTC rules (reciprocal of code 02). + Product X is a manifestation of a work from which related work Y is (directly) derived in one or more of the ways specified in ISTC rules (reciprocal of code 02). @@ -21288,7 +23346,7 @@ Expected availability date - The date on which physical stock is expected to be available to be shipped to retailers, or a digital product is expected to be released. + The date on which physical stock is expected to be available to be shipped to retailers, or a digital product is expected to be released by the publisher or digital asset distributor to retailers or their retail platform providers. @@ -21310,6 +23368,12 @@ Price condition type + + + No conditions + Allows positive indication that there are no conditions. + + Includes updates @@ -21328,6 +23392,30 @@ Updates may be purchased separately, no minimum commitment required. + + + Linked prior purchase price + Purchase at this price requires prior purchase of other product. + + + + + Linked price + Purchase at this price requires simultaneous purchase of other product. + + + + + Rental duration + The duration of the rental to which the price applies. + + + + + Rental to purchase + Purchase at this price requires prior rental of the product. <PriceConditionQuantity> gives minimum prior rental period, and <ProductIdentifier> may be used if rental uses a different product identifier. + + @@ -21360,6 +23448,12 @@ The quantity refers to a unit implied by the quantity type. + + + Days + + + Weeks @@ -21372,13 +23466,44 @@ + + + Years + + + Discount type - + + + + Rising discount + Discount applied to all units in a qualifying order. + + + + + Rising discount (cumulative) + Additional discount may be applied retrospectively, based on number of units ordered over a specific period. + + + + + Progressive discount + Discount applied to marginal units in a qualifying order. + + + + + Progressive discount (cumulative) + Previous orders within a specific time period are counted when calculating a progressive discount. + + + @@ -21595,7 +23720,7 @@ - DAISY 3: full textwith navigation and partial audio + DAISY 3: full text with navigation and partial audio Reading systems may provide full audio via text-to-speech. @@ -21809,6 +23934,12 @@ Japanese B-series size, 257x364mm. + + + Paperback (DE) + German paperback format, greater than 205mm high, with flaps. Use with Product form code BC. + + Coloring / join-the-dot book @@ -22115,6 +24246,12 @@ With edge trimming such that the front edge is ragged, not neatly and squarely trimmed: AKA deckle edge, feather edge, uncut edge, rough cut. + + + Foldout + With one or more gatefold or foldout sections bound in. + + Turn-around book @@ -22127,6 +24264,12 @@ Manga with pages and panels in the sequence of the original Japanese, but with Western text. + + + Syllabification + Text shows syllable breaks. + + UK Uncontracted Braille @@ -22172,7 +24315,7 @@ Real Video format - + Proprietary RealNetworks format. Includes Real Video packaged within a .rm RealMedia container. @@ -22562,49 +24705,109 @@ CEB - Founder Apabi's proprietary basic e-book format. + Founder Apabi’s proprietary basic e-book format. CEBX - Founder Apabi's proprietary XML e-book format. + Founder Apabi’s proprietary XML e-book format. iBook - Apple's iBook format (a proprietary extension of EPUB), can only be read on Apple iOS devices. + Apple’s iBook format (a proprietary extension of EPUB), can only be read on Apple iOS devices. + + + + + ePIB + Proprietary format used by Barnes and Noble, readable on NOOK devices and Nook reader software. + + + + + SCORM + Sharable Content Object Reference Model, standard content and packaging format for e-learning objects. + + + + + EBP + E-book Plus (proprietary Norwegian e-book format). + + + + + Reflowable + Use when a particular e-publication type (specified using codes E100 and upwards) has both fixed format and reflowable variants. + + + + + Fixed format + Use when a particular e-publication type (specified using codes E100 and upwards) has both fixed format and reflowable variants. + + + + + Readable offline + All e-publication resources are included within the e-publication package. + + + + + Requires network connection + E-publication requires a network connection to access some resources (eg an enhanced e-book where video clips are not stored within the e-publication package itself, but are delivered via an internet connection). + + + + + Content removed + Resources (eg images) present in other editions have been removed from this product, eg due to rights issues. + + + + + Landscape + Use for fixed-format e-books optimised for landscape display. Also include an indication of the optimal screen aspect ratio. + + + + + Portrait + Use for fixed-format e-books optimised for portrait display. Also include an indication of the optimal screen aspect ratio. - + - ePIB - Proprietary format used by Barnes and Noble, readable on NOOK devices and Nook reader software. + 5:4 + Use for fixed-format e-books optimised for displays with a 5:4 aspect ratio (eg 1280x1024 pixels etc, assuming square pixels). Note that aspect ratio codes are NOT specific to actual screen dimensions or pixel counts, but to the ratios between two dimensions or two pixel counts. - + - Reflowable - Use when a particular e-publication type (specified using codes E100 and upwards) has both fixed format and reflowable variants. + 4:3 + Use for fixed-format e-books optimised for displays with a 4:3 aspect ratio (eg 800x600, 1024x768, 2048x1536 pixels etc). - + - Fixed format - Use when a particular e-publication type (specified using codes E100 and upwards) has both fixed format and reflowable variants. + 3:2 + Use for fixed-format e-books optimised for displays with a 3:2 aspect ratio (eg 960x640, 3072x2048 pixels etc). - + - Readable offline - All e-publication resources are included within the e-publication package. + 16:10 + Use for fixed-format e-books optimised for displays with a 16:10 aspect ratio (eg 1440x900, 2560x1600 pixels etc). - + - Requires network connection - E-publication requires a network connection to access some resources (eg an enhanced e-book where video clips are not stored within the e-publication package itself, but are delivered via an internet connection). + 16:9 + Use for fixed-format e-books optimised for displays with a 16:9 aspect ratio (eg 1024x576, 1920x1080, 2048x1152 pixels etc). @@ -22895,7 +25098,7 @@ Real Video - Proprietary RealNetworks format. + Proprietary RealNetworks format. Includes Real Video packaged within a .rm RealMedia container. @@ -23006,6 +25209,24 @@ XML Paper Specification. + + + Amazon Kindle + A format proprietary to Amazon for use with its Kindle reading devices or software readers [File extensions .azw, .mobi, .prc]. + + + + + CEB + Founder Apabi’s proprietary basic e-book format. + + + + + CEBX + Founder Apabi’s proprietary XML e-book format. + + @@ -23025,6 +25246,12 @@ Price Code scheme for Finnish Pocket Books (Pokkareiden hintaryhmä). Price codes expressed as letters A–J in <PriceCode>. + + + Finnish Miki Book price code + Price Code scheme for Finnish Miki Books (Miki-kirjojen hintaryhmä). Price codes expressed as an integer 1–n in <PriceCode>. + + @@ -23159,6 +25386,36 @@ Text-synchronised pre-recorded audio narration (natural or synthesised voice) is included for substantially all textual matter, including all alternative descriptions. + + + Text-to-speech hinting provided + Text-to-speech has been optimised through provision of PLS lexicons, SSML or CSS Speech synthesis hints. + + + + + Language tagging provided + The language of the text has been specified (eg via the HTML or XML lang attribute) to optimise text-to-speech (and other alternative renderings), both at whole document level and, where appropriate, for individual words, phrases or passages in a different language. + + + + + Compliance web page for detailed accessibility information + <ProductFormFeatureDescription> carries the URL of a web page giving further detailed description of the accessibility features, compatibility, testing etc. The web page should be maintained by an independent compliance scheme or testing organization. + + + + + Trusted intermediary’s web page for detailed accessibility information + <ProductFormFeatureDescription> carries the URL of a web page giving further detailed description of the accessibility features, compatibility, testing etc. The web page should be provided by a trusted intermediary or third party nominated by the publisher. + + + + + Publisher’s web page for detailed accessibility information + <ProductFormFeatureDescription> carries the URL of a web page giving further detailed description of the accessibility features, compatibility, testing etc. The web page should be provided by the publisher. + + Compatibility tested @@ -23235,6 +25492,302 @@ + + + ONIX Adult Audience rating + + + + + Unrated + + + + + + Any adult audience + The publisher states that the product is suitable for any adult audience. + + + + + Content warning + The publisher warns the content may offend parts of the adult audience (for any reason). + + + + + Content warning (sex) + The publisher warns the product includes content of an explicit sexual nature. + + + + + Content warning (violence) + The publisher warns the product includes content of a violent nature. + + + + + Content warning (drug-taking) + The publisher warns the product includes content involving misuse of drugs. + + + + + Content warning (language) + The publisher warns the product includes extreme / offensive / explicit language. + + + + + Content warning (intolerance) + The publisher warns the product includes content involving intolerance of particular groups (eg religious, ethnic, racial, social). + + + + + + + ONIX Returns conditions code + + + + + Unspecified + Unspecified, contact supplier for details. + + + + + Consignment + The retailer pays for goods only after they are sold by the retailer, and may return excess unsold inventory to the supplier at any time. The goods remain the property of the supplier until they are paid for, even while they are physically located at the retailer. + + + + + Firm sale + The retailer is invoiced and pays immediately as in the sale or return model, but any excess unsold inventory cannot be returned to the supplier. + + + + + Sale or return + Contact supplier for applicable returns authorization process. The retailer is invoiced immediately for the goods and pays within the specified credit period, but can return excess unsold inventory to the supplier for full credit at a later date (some kind of returns authorisation process is normally required, and returns of stripped covers or proof of destruction may be allowed instead). + + + + + + + Proximity + + + + + Less than + + + + + + Not more than + + + + + + Exactly + The supplier’s true figure, or at least a best estimate expected to be within 10% of the true figure (ie a quoted figure of 100 could in fact be anything between 91 and 111). + + + + + Approximately + Generally interpreted as within 25% of the true figure (ie a quoted figure of 100 could in fact be anything between 80 and 133). The supplier may introduce a deliberate approximation to reduce the commercial sensitivity of the figure. + + + + + About + Generally interpreted as within a factor of two of the true figure (ie a quoted figure of 100 could in fact be anything between 50 and 200). The supplier may introduce a deliberate approximation to reduce the commercial sensitivity of the figure. + + + + + Not less than + + + + + + More than + + + + + + + + Velocity + + + + + Mean daily sale + Typically measured over most recent 1 month period. + + + + + Maximum daily sale + Typically measured over most recent 1 month period. + + + + + Minimum daily sale + Typically measured over most recent 1 month period. + + + + + Mean weekly sale + Typically measured over most recent rolling 12 week period. + + + + + Maximum weekly sale + Typically measured over most recent rolling 12 week period. + + + + + Minimum weekly sale + Typically measured over most recent rolling 12 week period. + + + + + Mean monthly sale + Typically measured over most recent rolling 6 month period. + + + + + Maximum monthly sale + Typically measured over the most recent rolling 6 month period. + + + + + Minimum monthly sale + Typically measured over the most recent rolling 6 month period. + + + + + + + Price identifier type code + + + + + Proprietary + + + + + + + + License expression type code + + + + + Human readable + Document (eg Word file, PDF or web page) Intended for the lay reader. + + + + + Professional readable + Document (eg Word file, PDF or web page) Intended for the legal specialist reader. + + + + + ONIX-PL + + + + + + + + Rights type code + + + + + Copyright + Text or image copyright (normally indicated by the © symbol). + + + + + Phonogram right + Phonogram copyright or neighbouring right (normally indicated by the ℗ symbol). + + + + + Database right + Sui generis database right. + + + + + + + E-publication version number + + + + + EPUB 2.0.1 + Use only with <ProductFormDetail> codes E101 or E102. + + + + + EPUB 3.0 + Use only with <ProductFormDetail> code E101. + + + + + EPUB 3.0.1 + Use only with <ProductFormDetail> code E101. + + + + + Kindle mobi 7 + Use only with <ProductFormDetail> codes E116 or E127. + + + + + Kindle KF8 + Use only with <ProductFormDetail> code E116. + + + + diff --git a/plugins/importexport/onix30/ONIX_XHTML_Subset.xsd b/plugins/importexport/onix30/ONIX_XHTML_Subset.xsd index fd53002218c..fce20f4e813 100644 --- a/plugins/importexport/onix30/ONIX_XHTML_Subset.xsd +++ b/plugins/importexport/onix30/ONIX_XHTML_Subset.xsd @@ -14,12 +14,12 @@ * Recent revisions: Graham Bell * * * * Release 3.0 * - * Revision 1 * + * Revision 2 * * Status: RELEASED * * Release date: 2009-04-09 * - * Revised: 2012-01-27 * + * Revised: 2014-01-24 * * * - * (c) 2000-2011 EDItEUR * + * (c) 2000-2014 EDItEUR * * http://www.editeur.org/ * * * ************************************************** @@ -27,7 +27,7 @@ NOTE - THIS MODULE CORRESPONDS TO A SUBSET OF W3C XHTML 1.1. IT ONLY INCLUDES ELEMENTS AND ASSOCIATED ATTRIBUTES THAT ARE VALID INSIDE THE XHTML ELEMENT - 'body', AND EXCLUDES ELEMENTS FOR XHTML FORMS AND SCRIPTS AND + 'body', AND EXCLUDES ELEMENTS FOR XHTML EMBEDDED OBJECTS, FORMS AND SCRIPTS AND ATTRIBUTES THAT DEFINE BEHAVIOUR. SOME PARAMETER ENTITIES HAVE BEEN RENAMED TO AVOID CLASHES WITH ONIX PARAMETER ENTITY NAMES. @@ -62,6 +62,8 @@ SCHEMA REVISION HISTORY (IN REVERSE CHRONOLOGICAL ORDER) + 2014-01-24: removed and element definitions + 2012-01-27: added XHTML 1.1 and associated , , , and tags 2009-04-09: initial release @@ -81,7 +83,8 @@ %HTMLspecial; --> - + @@ -104,11 +107,11 @@ + + - - @@ -196,41 +199,20 @@ - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - + + + + + @@ -508,6 +490,20 @@ + + + @@ -823,7 +819,7 @@ can also be expressed as attribute/value pairs on the object element itself when brevity is desired. --> - + - + - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/plugins/importexport/onix30/Onix30ExportDeployment.inc.php b/plugins/importexport/onix30/Onix30ExportDeployment.inc.php deleted file mode 100644 index 04d923306a7..00000000000 --- a/plugins/importexport/onix30/Onix30ExportDeployment.inc.php +++ /dev/null @@ -1,111 +0,0 @@ -getObjectTypes(); - foreach ($objectTypes as $assocType => $name) { - $foundWarnings = $this->getProcessedObjectsWarnings($assocType); - if (!empty($foundWarnings)) { - $problems['warnings'][$name][] = $foundWarnings; - } - - $foundErrors = $this->getProcessedObjectsErrors($assocType); - if (!empty($foundErrors)) { - $problems['errors'][$name][] = $foundErrors; - } - } - - return $problems; - } - - protected function getObjectTypes() { - $objectTypes = [ - ASSOC_TYPE_ANY => __('plugins.importexport.onix30.export.type.any'), - ASSOC_TYPE_SUBMISSION => __('plugins.importexport.onix30.export.type.submission'), - ]; - - return $objectTypes; - } - - /** - * Returns an indication that the import/export process has failed - * - * @return bool - */ - public function isProcessFailed() { - if (count($this->_processedObjectsErrors) > 0 || count($this->xmlValidationErrors) > 0) { - return true; - } - - return false; - } - - /** - * Getter method for XMLValidation Errors - * - * @return array - */ - public function getXMLValidationErrors() { - return $this->xmlValidationErrors; - } -} - - diff --git a/plugins/importexport/onix30/Onix30ExportDeployment.php b/plugins/importexport/onix30/Onix30ExportDeployment.php new file mode 100644 index 00000000000..ec326c9d05e --- /dev/null +++ b/plugins/importexport/onix30/Onix30ExportDeployment.php @@ -0,0 +1,56 @@ +getEnabled()) { - $this->addLocaleData(); - $this->import('Onix30ExportDeployment'); - } - return $success; - } - - /** - * Get the name of this plugin. The name must be unique within - * its category. - * @return String name of plugin - */ - function getName() { - return 'Onix30ExportPlugin'; - } - - /** - * Get the display name. - * @return string - */ - function getDisplayName() { - return __('plugins.importexport.onix30.displayName'); - } - - /** - * Get the display description. - * @return string - */ - function getDescription() { - return __('plugins.importexport.onix30.description'); - } - - /** - * @copydoc ImportExportPlugin::getPluginSettingsPrefix() - */ - function getPluginSettingsPrefix() { - return 'onix30'; - } - - /** - * Display the plugin. - * @param $args array - * @param $request PKPRequest - */ - function display($args, $request) { - $templateMgr = TemplateManager::getManager($request); - $context = $request->getContext(); - $user = $request->getUser(); - - $exportFileDatePartFormat = 'Ymd-His'; - - parent::display($args, $request); - - $templateMgr->assign('plugin', $this); - - switch (array_shift($args)) { - case 'index': - case '': - $apiUrl = $request->getDispatcher()->url($request, ROUTE_API, $context->getPath(), 'submissions'); - $submissionsListPanel = new \APP\components\listPanels\SubmissionsListPanel( - 'submissions', - __('common.publications'), - [ - 'apiUrl' => $apiUrl, - 'count' => 100, - 'getParams' => new stdClass(), - 'lazyLoad' => true, - ] - ); - $submissionsConfig = $submissionsListPanel->getConfig(); - $submissionsConfig['addUrl'] = ''; - $submissionsConfig['filters'] = array_slice($submissionsConfig['filters'], 1); - $templateMgr->setState([ - 'components' => [ - 'submissions' => $submissionsConfig, - ], - ]); - $templateMgr->assign([ - 'pageComponent' => 'ImportExportPage', - ]); - $templateMgr->display($this->getTemplateResource('index.tpl')); - break; - case 'exportSubmissionsBounce': - if (!$request->checkCSRF()) throw new Exception('CSRF mismatch!'); - $json = new JSONMessage(true); - $json->setEvent('addTab', array( - 'title' => __('plugins.importexport.native.results'), - 'url' => $request->url(null, null, null, array('plugin', $this->getName(), 'export'), array('selectedSubmissions' => $request->getUserVar('selectedSubmissions'), 'csrfToken' => $request->getSession()->getCSRFToken())), - )); - header('Content-Type: application/json'); - return $json->getString(); - case 'export': - $onixDeployment = new Onix30ExportDeployment($context, $user); - - $exportXml = $this->exportSubmissions( - (array) $request->getUserVar('selectedSubmissions'), - $context, - $user, - $onixDeployment - ); - - $problems = $onixDeployment->getWarningsAndErrors(); - $foundErrors = $onixDeployment->isProcessFailed(); - - if ($exportXml) { - $dateFilenamePart = new DateTime(); - $this->writeExportedFile($exportXml, $onixDeployment->getContext(), $dateFilenamePart); - - $templateMgr->assign('exportPath', $dateFilenamePart->format($exportFileDatePartFormat)); - } - - $templateMgr->assign('validationErrors', $onixDeployment->getXMLValidationErrors()); - - $templateMgr->assign('errorsAndWarnings', $problems); - $templateMgr->assign('errorsFound', $foundErrors); - $templateMgr->assign('onixPlugin', $this); - - $json = new JSONMessage(true, $templateMgr->fetch($this->getTemplateResource('resultsExport.tpl'))); - header('Content-Type: application/json'); - return $json->getString(); - case 'downloadExportFile': - if (!$request->checkCSRF()) throw new Exception('CSRF mismatch!'); - $downloadPath = $request->getUserVar('downloadFilePath'); - - $date = DateTime::createFromFormat($exportFileDatePartFormat, $downloadPath); - if (!$date) { - $dispatcher = $request->getDispatcher(); - $dispatcher->handle404(); - } - - $exportFileName = $this->getExportFileName($this->getExportPath(), 'monographs', $context, '.xml', $date); - - import('lib.pkp.classes.file.FileManager'); - $fileManager = new FileManager(); - - if (!$fileManager->fileExists($exportFileName)) { - $dispatcher = $request->getDispatcher(); - $dispatcher->handle404(); - } - - $fileManager->downloadByPath($exportFileName); - $fileManager->deleteByPath($exportFileName); - - break; - default: - $dispatcher = $request->getDispatcher(); - $dispatcher->handle404(); - } - } - - /** - * Get the XML for a set of submissions. - * @param $submissionIds array Array of submission IDs - * @param $context Context - * @param $user User - * @param $onixDeployment Onix30ExportDeployment - * @return string XML contents representing the supplied submission IDs. - */ - function exportSubmissions($submissionIds, $context, $user, $onixDeployment) { - import('lib.pkp.classes.metadata.MetadataTypeDescription'); - - $submissionDao = DAORegistry::getDAO('SubmissionDAO'); /* @var $submissionDao SubmissionDAO */ - $xml = ''; - $filterDao = DAORegistry::getDAO('FilterDAO'); /* @var $filterDao FilterDAO */ - $nativeExportFilters = $filterDao->getObjectsByGroup('monographs=>onix30-xml'); - assert(count($nativeExportFilters) == 1); // Assert only a single serialization filter - $exportFilter = array_shift($nativeExportFilters); - - $exportFilter->setDeployment($onixDeployment); - $submissions = array(); - foreach ($submissionIds as $submissionId) { - $submission = $submissionDao->getById($submissionId, $context->getId()); - if ($submission) $submissions[] = $submission; - } - - libxml_use_internal_errors(true); - - $submissionXml = $exportFilter->execute($submissions); - - $onixDeployment->xmlValidationErrors = array_filter(libxml_get_errors(), function ($a) { - return $a->level == LIBXML_ERR_ERROR || $a->level == LIBXML_ERR_FATAL; - }); - - libxml_clear_errors(); - - if ($submissionXml) - $xml = $submissionXml->saveXml(); - else - $onixDeployment->addError(ASSOC_TYPE_ANY, 0, __('plugins.importexport.onix30.processFailed')); - - return $xml; - } - - /** - * Create file given it's name and content - * - * @param string $filename - * @param ?DateTime $fileContent - * @param Context $context - * - * @return string - */ - public function writeExportedFile($fileContent, $context, ?DateTime $dateFilenamePart = null) { - import('lib.pkp.classes.file.FileManager'); - $fileManager = new FileManager(); - - $exportFileName = $this->getExportFileName($this->getExportPath(), 'monographs', $context, '.xml', $dateFilenamePart); - - $fileManager->writeFile($exportFileName, $fileContent); - - return $exportFileName; - } - - /** - * @copydoc ImportExportPlugin::executeCLI($scriptName, $args) - */ - function executeCLI($scriptName, &$args) { - fatalError('Not implemented.'); - } - - /** - * @copydoc ImportExportPlugin::usage - */ - function usage($scriptName) { - fatalError('Not implemented.'); - } - - public function getBounceTab($request, $title, $bounceUrl, $bounceParameterArray) { - if (!$request->checkCSRF()) { - throw new Exception('CSRF mismatch!'); - } - $json = new JSONMessage(true); - $json->setEvent('addTab', [ - 'title' => $title, - 'url' => $request->url( - null, - null, - null, - ['plugin', $this->getName(), $bounceUrl], - array_merge($bounceParameterArray, ['csrfToken' => $request->getSession()->getCSRFToken()]) - ), - ]); - header('Content-Type: application/json'); - return $json->getString(); - } -} diff --git a/plugins/importexport/onix30/Onix30ExportPlugin.php b/plugins/importexport/onix30/Onix30ExportPlugin.php new file mode 100644 index 00000000000..e95a4414e6c --- /dev/null +++ b/plugins/importexport/onix30/Onix30ExportPlugin.php @@ -0,0 +1,203 @@ +getEnabled()) { + $this->addLocaleData(); + } + return $success; + } + + /** + * Get the name of this plugin. The name must be unique within + * its category. + * + * @return string name of plugin + */ + public function getName() + { + return 'Onix30ExportPlugin'; + } + + /** + * Get the display name. + * + * @return string + */ + public function getDisplayName() + { + return __('plugins.importexport.onix30.displayName'); + } + + /** + * Get the display description. + * + * @return string + */ + public function getDescription() + { + return __('plugins.importexport.onix30.description'); + } + + /** + * @copydoc ImportExportPlugin::getPluginSettingsPrefix() + */ + public function getPluginSettingsPrefix() + { + return 'onix30'; + } + + /** + * Display the plugin. + * + * @param array $args + * @param Request $request + */ + public function display($args, $request) + { + $templateMgr = TemplateManager::getManager($request); + + $context = $request->getContext(); + $user = $request->getUser(); + $deployment = $this->getAppSpecificDeployment($context, $user); + $this->setDeployment($deployment); + + parent::display($args, $request); + + $templateMgr->assign('plugin', $this); + + switch (array_shift($args)) { + case 'index': + case '': + $apiUrl = $request->getDispatcher()->url($request, PKPApplication::ROUTE_API, $context->getPath(), 'submissions'); + $submissionsListPanel = new \APP\components\listPanels\SubmissionsListPanel( + 'submissions', + __('common.publications'), + [ + 'apiUrl' => $apiUrl, + 'count' => 100, + 'getParams' => new stdClass(), + 'lazyLoad' => true, + ] + ); + $submissionsConfig = $submissionsListPanel->getConfig(); + $submissionsConfig['addUrl'] = ''; + $submissionsConfig['filters'] = array_slice($submissionsConfig['filters'], 1); + $templateMgr->setState([ + 'components' => [ + 'submissions' => $submissionsConfig, + ], + ]); + $templateMgr->assign([ + 'pageComponent' => 'ImportExportPage', + ]); + $templateMgr->display($this->getTemplateResource('index.tpl')); + break; + case 'exportSubmissionsBounce': + $tab = $this->getBounceTab( + $request, + __('plugins.importexport.native.export.submissions.results'), + 'exportSubmissions', + ['selectedSubmissions' => $request->getUserVar('selectedSubmissions'), 'validation' => $request->getUserVar('validation')] + ); + + return $tab; + case 'exportSubmissions': + $submissionIds = (array) $request->getUserVar('selectedSubmissions'); + + $noValidation = $request->getUserVar('validation') ? ['noValidation' => 0] : ['noValidation' => 1]; + + $this->getExportSubmissionsDeployment($submissionIds, $this->_childDeployment, $noValidation); + + $result = $this->getExportTemplateResult($this->getDeployment(), $templateMgr, 'submissions'); + + return $result; + case 'downloadExportFile': + $exportedFileDatePart = $request->getUserVar('exportedFileDatePart'); + $exportedFileContentNamePart = $request->getUserVar('exportedFileContentNamePart'); + $downloadSuccess = $this->downloadExportedFile($exportedFileContentNamePart, $exportedFileDatePart, $this->getDeployment()); + + if (!$downloadSuccess) { + $dispatcher = $request->getDispatcher(); + $dispatcher->handle404(); + } + + break; + default: + $dispatcher = $request->getDispatcher(); + $dispatcher->handle404(); + } + } + + /** + * @copydoc ImportExportPlugin::executeCLI($scriptName, $args) + */ + public function executeCLI($scriptName, &$args) + { + throw new BadMethodCallException(); + } + + /** + * @copydoc ImportExportPlugin::usage + */ + public function usage($scriptName) + { + throw new BadMethodCallException(); + } + + /** + * @see PKPNativeImportExportPlugin::getExportFilter + */ + public function getExportFilter($exportType) + { + $filter = false; + if ($exportType == 'exportSubmissions') { + $filter = 'monographs=>onix30-xml'; + } + + return $filter; + } + + /** + * @see ImportExportPlugin::getAppSpecificDeployment + */ + public function getAppSpecificDeployment($context, $user) + { + return new Onix30ExportDeployment($context, $user); + } +} diff --git a/plugins/importexport/onix30/filter/MonographONIX30XmlFilter.inc.php b/plugins/importexport/onix30/filter/MonographONIX30XmlFilter.inc.php deleted file mode 100644 index 1345166b8f3..00000000000 --- a/plugins/importexport/onix30/filter/MonographONIX30XmlFilter.inc.php +++ /dev/null @@ -1,813 +0,0 @@ -setDisplayName('ONIX 3.0 XML monograph export'); - parent::__construct($filterGroup); - } - - - // - // Implement template methods from PersistableFilter - // - /** - * @copydoc PersistableFilter::getClassName() - */ - function getClassName() { - return 'plugins.importexport.onix30.filter.MonographONIX30XmlFilter'; - } - - // - // Implement template methods from Filter - // - /** - * @see Filter::process() - * @param $submissions Submission | array Monographs to export - * @return DOMDocument - */ - function &process(&$submissions) { - // Create the XML document - $doc = new DOMDocument('1.0'); - $doc->preserveWhiteSpace = false; - $doc->formatOutput = true; - $this->_doc = $doc; - - $deployment = $this->getDeployment(); - - // create top level ONIXMessage element - $rootNode = $doc->createElementNS($deployment->getNamespace(), 'ONIXMessage'); - $rootNode->appendChild($this->createHeaderNode($doc)); - - if (!is_array($submissions)) { - $this->createSubmissionNode($doc, $rootNode, $submissions); - } else { - foreach ($submissions as $submission) { - $this->createSubmissionNode($doc, $rootNode, $submission); - } - } - - $doc->appendChild($rootNode); - $rootNode->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'); - $rootNode->setAttribute('xsi:schemaLocation', $deployment->getNamespace() . ' ' . $deployment->getSchemaFilename()); - $rootNode->setAttribute('release', '3.0'); - - return $doc; - } - - /** - * Creates a submission node for each input submission. - * @param $doc DOMDocument The main XML Document object - * @param $rootNode DOMElement The root node of the document, on which the submission node will get attached - * @param $submission Submission The submission we want to export and attach. - */ - function createSubmissionNode($doc, $rootNode, $submission) { - $deployment = $this->getDeployment(); - - $publicationFormats = $submission->getCurrentPublication()->getData('publicationFormats'); - - if (count($publicationFormats) < 1) { - $deployment->addError(ASSOC_TYPE_MONOGRAPH, $submission->getId(), __('plugins.importExport.onix30.common.error.monographWithNoPublicationFormats', ['monographId' => $submission->getId()])); - } - - // Append all publication formats as Product nodes. - foreach ($publicationFormats as $publicationFormat) { - $rootNode->appendChild($this->createProductNode($doc, $submission, $publicationFormat)); - } - } - - // - // ONIX conversion functions - // - /** - * Create and return a node representing the ONIX Header metadata for this submission. - * @param $doc DOMDocument - * @return DOMElement - */ - function createHeaderNode($doc) { - $deployment = $this->getDeployment(); - $context = $deployment->getContext(); - - $headNode = $doc->createElementNS($deployment->getNamespace(), 'Header'); - $senderNode = $doc->createElementNS($deployment->getNamespace(), 'Sender'); - - // Assemble SenderIdentifier element. - $senderIdentifierNode = $doc->createElementNS($deployment->getNamespace(), 'SenderIdentifier'); - $senderIdentifierNode->appendChild($this->_buildTextNode($doc, 'SenderIDType', $context->getData('codeType'))); - $senderIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDValue', $context->getData('codeValue'))); - - $senderNode->appendChild($senderIdentifierNode); - - // Assemble SenderName element. - $senderNode->appendChild($this->_buildTextNode($doc, 'SenderName', $context->getLocalizedName())); - $senderNode->appendChild($this->_buildTextNode($doc, 'ContactName', $context->getContactName())); - $senderNode->appendChild($this->_buildTextNode($doc, 'EmailAddress', $context->getContactEmail())); - - $headNode->appendChild($senderNode); - - // add SentDateTime element. - $headNode->appendChild($this->_buildTextNode($doc, 'SentDateTime', date('Ymd'))); - - return $headNode; - } - - /** - * Create and return a node representing the ONIX Product metadata for this submission. - * @param $doc DOMDocument - * @param $submission Submission - * @param $publicationFormat PublicationFormat - * @return DOMElement - */ - function createProductNode($doc, $submission, $publicationFormat) { - - $deployment = $this->getDeployment(); - $context = $deployment->getContext(); - $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /* @var $onixCodelistItemDao ONIXCodelistItemDAO */ - - $productNode = $doc->createElementNS($deployment->getNamespace(), 'Product'); - - $request = Application::get()->getRequest(); - $productNode->appendChild($this->_buildTextNode($doc, 'RecordReference', $request->url($context->getPath(), 'monograph', 'view', array($submission->getId())))); - $productNode->appendChild($this->_buildTextNode($doc, 'NotificationType', '03')); - $productNode->appendChild($this->_buildTextNode($doc, 'RecordSourceType', '04')); // Bibliographic agency - - $identifierGiven = false; - - $identificationCodes = $publicationFormat->getIdentificationCodes(); - - while ($code = $identificationCodes->next()) { - $productIdentifierNode = $doc->createElementNS($deployment->getNamespace(), 'ProductIdentifier'); - $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'ProductIDType', $code->getCode())); // GTIN-13 (ISBN-13 as GTIN) - $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDValue', $code->getValue())); - $productNode->appendChild($productIdentifierNode); - - unset($productIdentifierNode); - unset($code); - - $identifierGiven = true; - } - - // Deal with the possibility of a DOI pubId from the plugin. - $pubIdPlugins = PluginRegistry::loadCategory('pubIds', true); - if (is_array($pubIdPlugins)) { - foreach ($pubIdPlugins as $plugin) { - if ($plugin->getEnabled() && $plugin->getPubIdType() == 'doi' && $publicationFormat->getStoredPubId('doi')) { - $productIdentifierNode = $doc->createElementNS($deployment->getNamespace(), 'ProductIdentifier'); - $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'ProductIDType', '06')); // DOI - $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDValue', $publicationFormat->getStoredPubId('doi'))); // GTIN-13 (ISBN-13 as GTIN) - $productNode->appendChild($productIdentifierNode); - - unset($productIdentifierNode); - - $identifierGiven = true; - } - unset($plugin); - } - } - unset($pubIdPlugins); - - if (!$identifierGiven) { - $productIdentifierNode = $doc->createElementNS($deployment->getNamespace(), 'ProductIdentifier'); - $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'ProductIDType', '01')); // Id - $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDTypeName', 'PKID')); - $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDValue', $publicationFormat->getId())); - - $productNode->appendChild($productIdentifierNode); - } - - /* --- Descriptive Detail --- */ - $descDetailNode = $doc->createElementNS($deployment->getNamespace(), 'DescriptiveDetail'); - - $descDetailNode->appendChild($this->_buildTextNode($doc, 'ProductComposition', - $publicationFormat->getProductCompositionCode() ? $publicationFormat->getProductCompositionCode() : '00')); // single item, trade only, etc. Default to single item if not specified. - - $descDetailNode->appendChild($this->_buildTextNode($doc, 'ProductForm', $publicationFormat->getEntryKey())); // paperback, hardcover, etc - - if ($publicationFormat->getProductFormDetailCode() != '') { - $descDetailNode->appendChild($this->_buildTextNode($doc, 'ProductFormDetail', $publicationFormat->getProductFormDetailCode())); // refinement of ProductForm - } - - /* --- Physical Book Measurements --- */ - if ($publicationFormat->getPhysicalFormat()) { - // '01' => 'Height', '02' => 'Width', '03' => 'Thickness', '08' => 'Weight' - if ($publicationFormat->getHeight() != '') { - $measureNode = $this->_createMeasurementNode($doc, $deployment, '01', $publicationFormat->getHeight(), $publicationFormat->getHeightUnitCode()); - $descDetailNode->appendChild($measureNode); - unset($measureNode); - } - - if ($publicationFormat->getWidth() != '') { - $measureNode = $this->_createMeasurementNode($doc, $deployment, '02', $publicationFormat->getWidth(), $publicationFormat->getWidthUnitCode()); - $descDetailNode->appendChild($measureNode); - unset($measureNode); - } - - if ($publicationFormat->getThickness() != '') { - $measureNode = $this->_createMeasurementNode($doc, $deployment, '03', $publicationFormat->getThickness(), $publicationFormat->getThicknessUnitCode()); - $descDetailNode->appendChild($measureNode); - unset($measureNode); - } - - if ($publicationFormat->getWeight() != '') { - $measureNode = $this->_createMeasurementNode($doc, $deployment, '08', $publicationFormat->getWeight(), $publicationFormat->getWeightUnitCode()); - $descDetailNode->appendChild($measureNode); - unset($measureNode); - } - } - - if($publicationFormat->getCountryManufactureCode() != '') { - $descDetailNode->appendChild($this->_buildTextNode($doc, 'CountryOfManufacture', $publicationFormat->getCountryManufactureCode())); - } - - if (!$publicationFormat->getPhysicalFormat() && $publicationFormat->getTechnicalProtectionCode() != '') { - $descDetailNode->appendChild($this->_buildTextNode($doc, 'EpubTechnicalProtection', $publicationFormat->getTechnicalProtectionCode())); - } - - /* --- Collection information, first for series and then for product --- */ - - $seriesCollectionNode = $doc->createElementNS($deployment->getNamespace(), 'Collection'); - $seriesCollectionNode->appendChild($this->_buildTextNode($doc, 'CollectionType', '10')); // publisher series. - $descDetailNode->appendChild($seriesCollectionNode); - - $seriesTitleDetailNode = $doc->createElementNS($deployment->getNamespace(), 'TitleDetail'); - $seriesTitleDetailNode->appendChild($this->_buildTextNode($doc, 'TitleType', '01')); - $seriesCollectionNode->appendChild($seriesTitleDetailNode); - - $titleElementNode = $doc->createElementNS($deployment->getNamespace(), 'TitleElement'); - $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleElementLevel', '02')); // Collection level title - $seriesTitleDetailNode->appendChild($titleElementNode); - - /* --- Series information, if this monograph is part of one. --- */ - - $seriesDao = DAORegistry::getDAO('SeriesDAO'); /* @var $seriesDao SeriesDAO */ - $series = $seriesDao->getById($submission->getCurrentPublication()->getData('seriesId')); - if ($series != null) { - - if ($submission->getCurrentPublication()->getData('seriesPosition')) { - $titleElementNode->appendChild($this->_buildTextNode($doc, 'PartNumber', $submission->getCurrentPublication()->getData('seriesPosition'))); - } - - if ($series->getLocalizedPrefix() == '' || $series->getLocalizedTitle(false) == '') { - $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleText', trim(join(' ', array($series->getLocalizedPrefix(), $series->getLocalizedTitle(false)))))); - } else { - if ($series->getLocalizedPrefix() != '') { - $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitlePrefix', $series->getLocalizedPrefix())); - } - - $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleWithoutPrefix', $series->getLocalizedTitle(false))); - } - - if ($series->getLocalizedSubtitle() != '') { - $titleElementNode->appendChild($this->_buildTextNode($doc, 'Subtitle', $series->getLocalizedSubtitle())); - } - } - - /* --- and now product level info --- */ - - $productTitleDetailNode = $doc->createElementNS($deployment->getNamespace(), 'TitleDetail'); - $productTitleDetailNode->appendChild($this->_buildTextNode($doc, 'TitleType', '01')); - $descDetailNode->appendChild($productTitleDetailNode); - - $titleElementNode = $doc->createElementNS($deployment->getNamespace(), 'TitleElement'); - $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleElementLevel', '01')); - - $productTitleDetailNode->appendChild($titleElementNode); - - $publication = $submission->getCurrentPublication(); - if (!$publication->getLocalizedData('prefix') || !$publication->getLocalizedData('title')) { - $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleText', trim($publication->getLocalizedData('prefix') ?? $publication->getLocalizedTitle()))); - } else { - if ($publication->getLocalizedData('prefix')) { - $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitlePrefix', $publication->getLocalizedData('prefix'))); - } - $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleWithoutPrefix', $publication->getLocalizedTitle())); - } - - if ($publication->getData('subtitle', $publication->getData('locale'))) { - $titleElementNode->appendChild($this->_buildTextNode($doc, 'Subtitle', $publication->getData('subtitle', $publication->getData('locale')))); - } - - /* --- Contributor information --- */ - - $authors = $publication->getData('authors'); // sorts by sequence. - $sequence = 1; - foreach ($authors as $author) { - $contributorNode = $doc->createElementNS($deployment->getNamespace(), 'Contributor'); - $contributorNode->appendChild($this->_buildTextNode($doc, 'SequenceNumber', $sequence)); - - $userGroupDao = DAORegistry::getDAO('UserGroupDAO'); /* @var $userGroupDao UserGroupDAO */ - $userGroup = $userGroupDao->getById($author->getUserGroupId(), $submission->getContextId()); - - $userGroupOnixMap = array('AU' => 'A01', 'VE' => 'B01', 'CA' => 'A01', 'Trans' => 'B06', 'PE' => 'B21'); // From List17, ContributorRole types. - - $role = array_key_exists($userGroup->getLocalizedAbbrev(), $userGroupOnixMap) ? $userGroupOnixMap[$userGroup->getLocalizedAbbrev()] : 'Z99'; // Z99 - unknown contributor type. - - $contributorNode->appendChild($this->_buildTextNode($doc, 'ContributorRole', $role)); - $contributorNode->appendChild($this->_buildTextNode($doc, 'PersonName', $author->getFullName(false))); - $contributorNode->appendChild($this->_buildTextNode($doc, 'PersonNameInverted', $author->getFullName(false, true))); - $contributorNode->appendChild($this->_buildTextNode($doc, 'NamesBeforeKey', $author->getLocalizedGivenName())); - if ($author->getLocalizedFamilyName() != '') { - $contributorNode->appendChild($this->_buildTextNode($doc, 'KeyNames', $author->getLocalizedFamilyName())); - } else { - $contributorNode->appendChild($this->_buildTextNode($doc, 'KeyNames', $author->getFullName(false))); - } - - if ($author->getLocalizedBiography() != '') { - $contributorNode->appendChild($this->_buildTextNode($doc, 'BiographicalNote', $author->getLocalizedBiography())); - } - - if ($author->getCountry() != '') { - $contributorPlaceNode = $doc->createElementNS($deployment->getNamespace(), 'ContributorPlace'); - $contributorNode->appendChild($contributorPlaceNode); - $contributorPlaceNode->appendChild($this->_buildTextNode($doc, 'ContributorPlaceRelator', '04')); - $contributorPlaceNode->appendChild($this->_buildTextNode($doc, 'CountryCode', $author->getCountry())); - unset($contributorPlaceNode); - } - - $sequence++; - $descDetailNode->appendChild($contributorNode); - - unset($contributorNode); - unset($sequenceNode); - unset($userGroup); - unset($author); - } - - if (sizeof($authors) == 0) { // this will probably never happen, but include the possibility. - $descDetailNode->appendChild($this->_buildTextNode($doc, 'NoContributor', '')); // empty state of fact. - } - - /* --- Add Language elements --- */ - - $submissionLanguageDao = DAORegistry::getDAO('SubmissionLanguageDAO'); /* @var $submissionLanguageDao SubmissionLanguageDAO */ - $allLanguages = $submissionLanguageDao->getLanguages($publication->getId(), array_keys(AppLocale::getSupportedFormLocales())); - $uniqueLanguages = array(); - foreach ($allLanguages as $locale => $languages) { - $uniqueLanguages = array_merge($uniqueLanguages, $languages); - } - - foreach ($uniqueLanguages as $language) { - $languageNode = $doc->createElementNS($deployment->getNamespace(), 'Language'); - - $languageNode->appendChild($this->_buildTextNode($doc, 'LanguageRole', '01')); - $onixLanguageCode = $onixCodelistItemDao->getCodeFromValue($language, 'List74'); - if ($onixLanguageCode != '') { - $languageNode->appendChild($this->_buildTextNode($doc, 'LanguageCode', $onixLanguageCode)); - $descDetailNode->appendChild($languageNode); - } - unset($languageNode); - } - - /* --- add Extents for 00 (main content), 04 (back matter), 08 for digital works ---*/ - - if ($publicationFormat->getFrontMatter() > 0) { - // 03 - Pages - $extentNode = $this->_createExtentNode($doc, $deployment, '00', $publicationFormat->getFrontMatter(), '03'); - $descDetailNode->appendChild($extentNode); - unset($extentNode); - } - - if ($publicationFormat->getBackMatter() > 0) { - $extentNode = $this->_createExtentNode($doc, $deployment, '04', $publicationFormat->getBackMatter(), '03'); - $descDetailNode->appendChild($extentNode); - unset($extentNode); - } - - if (!$publicationFormat->getPhysicalFormat()) { // EBooks and digital content have extent information about file sizes - $fileSize = $publicationFormat->getFileSize() ? $publicationFormat->getFileSize() : $publicationFormat->getCalculatedFileSize(); - $extentNode = $this->_createExtentNode($doc, $deployment, '08', $fileSize, '05'); - $descDetailNode->appendChild($extentNode); - unset($extentNode); - } - - - /* --- Add Subject elements --- */ - - $subjectNode = $doc->createElementNS($deployment->getNamespace(), 'Subject'); - $mainSubjectNode = $doc->createElementNS($deployment->getNamespace(), 'MainSubject'); // Always empty as per 3.0 spec. - $subjectNode->appendChild($mainSubjectNode); - $subjectNode->appendChild($this->_buildTextNode($doc, 'SubjectSchemeIdentifier', '12')); // 12 is BIC subject category code list. - $subjectNode->appendChild($this->_buildTextNode($doc, 'SubjectSchemeVersion', '2')); // Version 2 of ^^ - - $submissionSubjectDao = DAORegistry::getDAO('SubmissionSubjectDAO'); - $allSubjects = $submissionSubjectDao->getSubjects($publication->getId(), array_keys(AppLocale::getSupportedFormLocales())); - $uniqueSubjects = array(); - foreach ($allSubjects as $locale => $subjects) { - $uniqueSubjects = array_merge($uniqueSubjects, $subjects); - } - - if (sizeof($uniqueSubjects) > 0) { - $subjectNode->appendChild($this->_buildTextNode($doc, 'SubjectCode', trim(join(', ', $uniqueSubjects)))); - } - - $descDetailNode->appendChild($subjectNode); - - /* --- Add Audience elements --- */ - - if ($submission->getData('audience')) { - $audienceNode = $doc->createElementNS($deployment->getNamespace(), 'Audience'); - $descDetailNode->appendChild($audienceNode); - $audienceNode->appendChild($this->_buildTextNode($doc, 'AudienceCodeType', $submission->getData('audience'))); - $audienceNode->appendChild($this->_buildTextNode($doc, 'AudienceCodeValue', '01')); - } - - if ($submission->getData('audienceRangeQualifier') != '') { - $audienceRangeNode = $doc->createElementNS($deployment->getNamespace(), 'AudienceRange'); - $descDetailNode->appendChild($audienceRangeNode); - $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangeQualifier', $submission->getData('audienceRangeQualifier'))); - - if ($submission->getData('audienceRangeExact') != '') { - $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangePrecision', '01')); // Exact, list31 - $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangeValue', $submission->getData('audienceRangeExact'))); - } else { // if not exact, then include the From -> To possibilities - if ($submission->getData('audienceRangeFrom') != '') { - $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangePrecision', '03')); // from - $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangeValue', $submission->getData('audienceRangeFrom'))); - } - if ($submission->getData('audienceRangeTo') != '') { - $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangePrecision', '04')); // to - $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangeValue', $submission->getData('audienceRangeTo'))); - } - } - } - - $productNode->appendChild($descDetailNode); - unset($descDetailNode); - - // Back to assembling Product node. - /* --- Collateral Detail --- */ - - $collateralDetailNode = $doc->createElementNS($deployment->getNamespace(), 'CollateralDetail'); - $productNode->appendChild($collateralDetailNode); - - $abstract = strip_tags($publication->getLocalizedData('abstract')); - - $textContentNode = $doc->createElementNS($deployment->getNamespace(), 'TextContent'); - $collateralDetailNode->appendChild($textContentNode); - $textContentNode->appendChild($this->_buildTextNode($doc, 'TextType', '02')); // short description - $textContentNode->appendChild($this->_buildTextNode($doc, 'ContentAudience', '00')); // Any audience - $textContentNode->appendChild($this->_buildTextNode($doc, 'Text', substr($abstract, 0, 250))); // Any audience - - $textContentNode = $doc->createElementNS($deployment->getNamespace(), 'TextContent'); - $collateralDetailNode->appendChild($textContentNode); - - $textContentNode->appendChild($this->_buildTextNode($doc, 'TextType', '03')); // description - $textContentNode->appendChild($this->_buildTextNode($doc, 'ContentAudience', '00')); // Any audience - $textContentNode->appendChild($this->_buildTextNode($doc, 'Text', $abstract)); // Any audience - - /* --- Publishing Detail --- */ - - $publishingDetailNode = $doc->createElementNS($deployment->getNamespace(), 'PublishingDetail'); - $productNode->appendChild($publishingDetailNode); - - if ($publicationFormat->getImprint()) { - $imprintNode = $doc->createElementNS($deployment->getNamespace(), 'Imprint'); - $publishingDetailNode->appendChild($imprintNode); - $imprintNode->appendChild($this->_buildTextNode($doc, 'ImprintName', $publicationFormat->getImprint())); - unset($imprintNode); - } - - $publisherNode = $doc->createElementNS($deployment->getNamespace(), 'Publisher'); - $publishingDetailNode->appendChild($publisherNode); - - $publisherNode->appendChild($this->_buildTextNode($doc, 'PublishingRole', '01')); // Publisher - $publisherNode->appendChild($this->_buildTextNode($doc, 'PublisherName', $context->getData('publisher'))); - if ($context->getData('location') != '') { - $publishingDetailNode->appendChild($this->_buildTextNode($doc, 'CityOfPublication', $context->getData('location'))); - } - - $websiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); - $publisherNode->appendChild($websiteNode); - - $websiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '18')); // 18 -> Publisher's B2C website - $websiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $request->url($context->getPath()))); - - /* --- Publishing Dates --- */ - - $publicationDates = $publicationFormat->getPublicationDates(); - while ($date = $publicationDates->next()) { - $pubDateNode = $doc->createElementNS($deployment->getNamespace(), 'PublishingDate'); - $publishingDetailNode->appendChild($pubDateNode); - - $pubDateNode->appendChild($this->_buildTextNode($doc, 'PublishingDateRole', $date->getRole())); - - $dateNode = $doc->createElementNS($deployment->getNamespace(), 'Date'); - $dateNode->setAttribute('dateformat', $date->getDateFormat()); - $pubDateNode->appendChild($dateNode); - $dateNode->appendChild($doc->createTextNode($date->getDate())); - - unset($pubDateNode); - unset($dateNode); - unset($date); - } - - /* -- Sales Rights -- */ - - $allSalesRights = $publicationFormat->getSalesRights(); - $salesRightsROW = null; - while ($salesRights = $allSalesRights->next()) { - if (!$salesRights->getROWSetting()) { - - $salesRightsNode = $doc->createElementNS($deployment->getNamespace(), 'SalesRights'); - $publishingDetailNode->appendChild($salesRightsNode); - $salesRightsNode->appendChild($this->_buildTextNode($doc, 'SalesRightsType', $salesRights->getType())); - - // now do territories and countries. - $territoryNode = $doc->createElementNS($deployment->getNamespace(), 'Territory'); - $salesRightsNode->appendChild($territoryNode); - - if (sizeof($salesRights->getRegionsIncluded()) > 0 && sizeof($salesRights->getCountriesExcluded()) > 0) { - $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsIncluded', trim(join(' ', $salesRights->getRegionsIncluded())))); - $territoryNode->appendChild($this->_buildTextNode($doc, 'CountriesExcluded', trim(join(' ', $salesRights->getCountriesExcluded())))); - } else if (sizeof($salesRights->getCountriesIncluded()) > 0) { - $territoryNode->appendChild($this->_buildTextNode($doc, 'CountriesIncluded', trim(join(' ', $salesRights->getCountriesIncluded())))); - } - - if (sizeof($salesRights->getRegionsExcluded()) > 0) { - $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsExcluded', trim(join(' ', $salesRights->getRegionsExcluded())))); - } - - unset($territoryNode); - unset($salesRightsNode); - - } else { // found the SalesRights object that is assigned 'rest of world'. - $salesRightsROW = $salesRights; // stash this for later since it always goes last. - } - unset($salesRights); - } - if ($salesRightsROW != null) { - $publishingDetailNode->appendChild($this->_buildTextNode($doc, 'ROWSalesRightsType', $salesRightsROW->getType())); - } - - /* --- Product Supply. We create one of these per defined Market. --- */ - - $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /* @var $representativeDao RepresentativeDAO */ - $markets = $publicationFormat->getMarkets(); - - while ($market = $markets->next()) { - $productSupplyNode = $doc->createElementNS($deployment->getNamespace(), 'ProductSupply'); - $productNode->appendChild($productSupplyNode); - - $marketNode = $doc->createElementNS($deployment->getNamespace(), 'Market'); - $productSupplyNode->appendChild($marketNode); - - $territoryNode = $doc->createElementNS($deployment->getNamespace(), 'Territory'); - $marketNode->appendChild($territoryNode); - - if (sizeof($market->getCountriesIncluded()) > 0) { - $territoryNode->appendChild($this->_buildTextNode($doc, 'CountriesIncluded', trim(join(' ', $market->getCountriesIncluded())))); - } - - if (sizeof($market->getRegionsIncluded()) > 0) { - $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsIncluded', trim(join(' ', $market->getRegionsIncluded())))); - } - - if (sizeof($market->getCountriesExcluded()) > 0) { - $territoryNode->appendChild($this->_buildTextNode($doc, 'CountriesExcluded', trim(join(' ', $market->getCountriesExcluded())))); - } - - if (sizeof($market->getRegionsExcluded()) > 0) { - $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsExcluded', trim(join(' ', $market->getRegionsExcluded())))); - } - - unset($marketNode); - unset($territoryNode); - - /* --- Include a MarketPublishingDetail node --- */ - - $marketPubDetailNode = $doc->createElementNS($deployment->getNamespace(), 'MarketPublishingDetail'); - $productSupplyNode->appendChild($marketPubDetailNode); - - $agent = $representativeDao->getById($market->getAgentId()); - - if (isset($agent)) { - $representativeNode = $doc->createElementNS($deployment->getNamespace(), 'PublisherRepresentative'); - $marketPubDetailNode->appendChild($representativeNode); - - $representativeNode->appendChild($this->_buildTextNode($doc, 'AgentRole', $agent->getRole())); - $representativeNode->appendChild($this->_buildTextNode($doc, 'AgentName', $agent->getName())); - - if ($agent->getUrl() != '') { - $agentWebsiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); - $representativeNode->appendChild($agentWebsiteNode); - - $agentWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '18')); // 18 -> Public website - $agentWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $agent->getUrl())); - } - unset($representativeNode); - } - - $marketPubDetailNode->appendChild($this->_buildTextNode($doc, 'MarketPublishingStatus', '04')); // Active - - // MarketDate is a required field on the form. If that changes, this should be wrapped in a conditional. - $marketDateNode = $doc->createElementNS($deployment->getNamespace(), 'MarketDate'); - $marketPubDetailNode->appendChild($marketDateNode); - - $marketDateNode->appendChild($this->_buildTextNode($doc, 'MarketDateRole', $market->getDateRole())); - $marketDateNode->appendChild($this->_buildTextNode($doc, 'DateFormat', $market->getDateFormat())); - $marketDateNode->appendChild($this->_buildTextNode($doc, 'Date', $market->getDate())); - - unset($marketDateNode); - unset($marketPubDetailNode); - - /* --- Supplier Detail Information --- */ - - $supplier = $representativeDao->getById($market->getSupplierId()); - - $supplyDetailNode = $doc->createElementNS($deployment->getNamespace(), 'SupplyDetail'); - $productSupplyNode->appendChild($supplyDetailNode); - - if (isset($supplier)) { - $supplierNode = $doc->createElementNS($deployment->getNamespace(), 'Supplier'); - $supplyDetailNode->appendChild($supplierNode); - - $supplierNode->appendChild($this->_buildTextNode($doc, 'SupplierRole', $supplier->getRole())); - $supplierNode->appendChild($this->_buildTextNode($doc, 'SupplierName', $supplier->getName())); - if ($supplier->getPhone()) { - $supplierNode->appendChild($this->_buildTextNode($doc, 'TelephoneNumber', $supplier->getPhone())); - } - if ($supplier->getEmail()) { - $supplierNode->appendChild($this->_buildTextNode($doc, 'EmailAddress', $supplier->getEmail())); - } - - if ($supplier->getUrl() != '') { - $supplierWebsiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); - $supplierNode->appendChild($supplierWebsiteNode); - - $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '18')); // 18 -> Public website - $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $supplier->getUrl())); - - unset($supplierWebsiteNode); - } - unset($supplierNode); - unset($supplierWebsiteNode); - - } else { // No suppliers specified, use the Press settings instead. - $supplierNode = $doc->createElementNS($deployment->getNamespace(), 'Supplier'); - $supplyDetailNode->appendChild($supplierNode); - - $supplierNode->appendChild($this->_buildTextNode($doc, 'SupplierRole', '09')); // Publisher supplying to end customers - $supplierNode->appendChild($this->_buildTextNode($doc, 'SupplierName', $context->getData('publisher'))); - - if ($context->getData('contactEmail') != '') { - $supplierNode->appendChild($this->_buildTextNode($doc, 'EmailAddress', $context->getData('contactEmail'))); - } - - $supplierWebsiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); - $supplierNode->appendChild($supplierWebsiteNode); - - $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '18')); // 18 -> Public website - $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $request->url($context->getPath()))); - - unset($supplierNode); - unset($supplierWebsiteNode); - } - - if ($publicationFormat->getReturnableIndicatorCode() != '') { - $returnsNode = $doc->createElementNS($deployment->getNamespace(), 'ReturnsConditions'); - $supplyDetailNode->appendChild($returnsNode); - - $returnsNode->appendChild($this->_buildTextNode($doc, 'ReturnsCodeType', '02')); // we support the BISAC codes for these - $returnsNode->appendChild($this->_buildTextNode($doc, 'ReturnsCode', $publicationFormat->getReturnableIndicatorCode())); - - unset($returnsNode); - } - - $supplyDetailNode->appendChild($this->_buildTextNode($doc, 'ProductAvailability', - $publicationFormat->getProductAvailabilityCode() ? $publicationFormat->getProductAvailabilityCode() : '20')); // assume 'available' if not specified. - - $priceNode = $doc->createElementNS($deployment->getNamespace(), 'Price'); - $supplyDetailNode->appendChild($priceNode); - - if ($market->getPriceTypeCode() != '') { - $priceNode->appendChild($this->_buildTextNode($doc, 'PriceType', $market->getPriceTypeCode())); - } - - if ($market->getDiscount() != '') { - $discountNode = $doc->createElementNS($deployment->getNamespace(), 'Discount'); - $priceNode->appendChild($discountNode); - $discountNode->appendChild($this->_buildTextNode($doc, 'DiscountPercent', $market->getDiscount())); - unset($discountNode); - } - - $priceNode->appendChild($this->_buildTextNode($doc, 'PriceAmount', $market->getPrice())); - - if ($market->getTaxTypeCode() != '' || $market->getTaxRateCode() != '') { - $taxNode = $doc->createElementNS($deployment->getNamespace(), 'Tax'); - $priceNode->appendChild($taxNode); - - if ($market->getTaxTypeCode()) { - $taxNode->appendChild($this->_buildTextNode($doc, 'TaxType', $market->getTaxTypeCode())); - } - if ($market->getTaxRateCode()) { - $taxNode->appendChild($this->_buildTextNode($doc, 'TaxRateCode', $market->getTaxRateCode())); - } - unset($taxNode); - } - - if ($market->getCurrencyCode() != '') { - $priceNode->appendChild($this->_buildTextNode($doc, 'CurrencyCode', $market->getCurrencyCode())); // CAD, GBP, USD, etc - } - - unset($priceNode); - unset($supplyDetailNode); - unset($market); - } // end of Market, closes ProductSupply. - - return $productNode; - } - - /** - * Convenience method for building a Measure node. - * @param DOMDocument $doc - * @param ONIX30ExportDeployment $deployment - * @param string $type - * @param string $measurement - * @param string $unitCode - * @return DOMElement - */ - function _createMeasurementNode($doc, $deployment, $type, $measurement, $unitCode) { - $measureNode = $doc->createElementNS($deployment->getNamespace(), 'Measure'); - - $measureTypeNode = $doc->createElementNS($deployment->getNamespace(), 'MeasureType'); - $measureTypeNode->appendChild($doc->createTextNode($type)); - - $measurementNode = $doc->createElementNS($deployment->getNamespace(), 'Measurement'); - $measurementNode->appendChild($doc->createTextNode($measurement)); - - $measureUnitNode = $doc->createElementNS($deployment->getNamespace(), 'MeasureUnitCode'); - $measureUnitNode->appendChild($doc->createTextNode($unitCode)); - - $measureNode->appendChild($measureTypeNode); - $measureNode->appendChild($measurementNode); - $measureNode->appendChild($measureUnitNode); - - return $measureNode; - } - - /** - * Convenience method for building an Extent node. - * @param DOMDocument $doc - * @param ONIX30ExportDeployment $deployment - * @param string $type - * @param string $extentValue - * @param string $extentUnit - * @return DOMElement - */ - function _createExtentNode($doc, $deployment, $type, $extentValue, $extentUnit) { - $extentNode = $doc->createElementNS($deployment->getNamespace(), 'Extent'); - - $typeNode = $doc->createElementNS($deployment->getNamespace(), 'ExtentType'); - $typeNode->appendChild($doc->createTextNode($type)); - - $valueNode = $doc->createElementNS($deployment->getNamespace(), 'ExtentValue'); - $valueNode->appendChild($doc->createTextNode($extentValue)); - - $unitNode = $doc->createElementNS($deployment->getNamespace(), 'ExtentUnit'); - $unitNode->appendChild($doc->createTextNode($extentUnit)); - - $extentNode->appendChild($typeNode); - $extentNode->appendChild($valueNode); - $extentNode->appendChild($unitNode); - - return $extentNode; - } - - /** - * Convenience method for building a node with text content. - * @param DOMDocument $doc - * @param string $nodeName - * @param string $textContent - * @return DOMElement - */ - function _buildTextNode($doc, $nodeName, $textContent) { - $deployment = $this->getDeployment(); - $node = $doc->createElementNS($deployment->getNamespace(), $nodeName); - $node->appendChild($doc->createTextNode($textContent)); - return $node; - } -} - - diff --git a/plugins/importexport/onix30/filter/MonographONIX30XmlFilter.php b/plugins/importexport/onix30/filter/MonographONIX30XmlFilter.php new file mode 100644 index 00000000000..30612ea971e --- /dev/null +++ b/plugins/importexport/onix30/filter/MonographONIX30XmlFilter.php @@ -0,0 +1,925 @@ +setDisplayName('ONIX 3.0 XML monograph export'); + parent::__construct($filterGroup); + } + + // + // Implement template methods from Filter + // + /** + * @see Filter::process() + * + * @param Submission $submissions | array Monographs to export + * + * @return \DOMDocument + */ + public function &process(&$submissions) + { + // Create the XML document + $doc = new DOMDocument('1.0', 'utf-8'); + $doc->preserveWhiteSpace = false; + $doc->formatOutput = true; + $this->_doc = $doc; + $deployment = $this->getDeployment(); + + // create top level ONIXMessage element + $rootNode = $doc->createElementNS($deployment->getNamespace(), 'ONIXMessage'); + $rootNode->appendChild($this->createHeaderNode($doc)); + + if (!is_array($submissions)) { + $this->createSubmissionNode($doc, $rootNode, $submissions); + } else { + foreach ($submissions as $submission) { + $this->createSubmissionNode($doc, $rootNode, $submission); + } + } + + $doc->appendChild($rootNode); + $rootNode->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance'); + $rootNode->setAttribute('xsi:schemaLocation', $deployment->getNamespace() . ' ' . $deployment->getSchemaFilename()); + $rootNode->setAttribute('release', '3.0'); + + return $doc; + } + + /** + * Creates a submission node for each input submission. + * + * @param \DOMDocument $doc The main XML Document object + * @param \DOMElement $rootNode The root node of the document, on which the submission node will get attached + * @param Submission $submission The submission we want to export and attach. + */ + public function createSubmissionNode($doc, $rootNode, $submission) + { + $publicationFormats = $submission->getCurrentPublication()->getData('publicationFormats'); + + // Append all publication formats as Product nodes. + foreach ($publicationFormats as $publicationFormat) { + $rootNode->appendChild($this->createProductNode($doc, $submission, $publicationFormat)); + } + } + + // + // ONIX conversion functions + // + /** + * Create and return a node representing the ONIX Header metadata for this submission. + * + * @param \DOMDocument $doc + * + * @return \DOMElement + */ + public function createHeaderNode($doc) + { + $deployment = $this->getDeployment(); + $context = $deployment->getContext(); + + $headNode = $doc->createElementNS($deployment->getNamespace(), 'Header'); + $senderNode = $doc->createElementNS($deployment->getNamespace(), 'Sender'); + + // Assemble SenderIdentifier element. + $senderIdentifierNode = $doc->createElementNS($deployment->getNamespace(), 'SenderIdentifier'); + $senderIdentifierNode->appendChild($this->_buildTextNode($doc, 'SenderIDType', $context->getData('codeType'))); + $senderIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDValue', $context->getData('codeValue'))); + + $senderNode->appendChild($senderIdentifierNode); + + // Assemble SenderName element. + $senderNode->appendChild($this->_buildTextNode($doc, 'SenderName', $context->getLocalizedName())); + $senderNode->appendChild($this->_buildTextNode($doc, 'ContactName', $context->getContactName())); + $senderNode->appendChild($this->_buildTextNode($doc, 'EmailAddress', $context->getContactEmail())); + + $headNode->appendChild($senderNode); + + // add SentDateTime element. + $headNode->appendChild($this->_buildTextNode($doc, 'SentDateTime', date('Ymd'))); + + return $headNode; + } + + /** + * Create and return a node representing the ONIX Product metadata for this submission. + * + * @param \DOMDocument $doc + * @param Submission $submission + * @param PublicationFormat $publicationFormat + * + * @return \DOMElement + */ + public function createProductNode($doc, $submission, $publicationFormat) + { + /** @var Onix30ExportDeployment */ + $deployment = $this->getDeployment(); + $context = $deployment->getContext(); + $onixCodelistItemDao = DAORegistry::getDAO('ONIXCodelistItemDAO'); /** @var ONIXCodelistItemDAO $onixCodelistItemDao */ + + $productNode = $doc->createElementNS($deployment->getNamespace(), 'Product'); + + $request = Application::get()->getRequest(); + $productNode->appendChild($this->_buildTextNode($doc, 'RecordReference', $request->url($context->getPath(), 'monograph', 'view', [$submission->getId()]))); + $productNode->appendChild($this->_buildTextNode($doc, 'NotificationType', '03')); + $productNode->appendChild($this->_buildTextNode($doc, 'RecordSourceType', '04')); // Bibliographic agency + + $identifierGiven = false; + + $identificationCodes = $publicationFormat->getIdentificationCodes(); + + while ($code = $identificationCodes->next()) { + $productIdentifierNode = $doc->createElementNS($deployment->getNamespace(), 'ProductIdentifier'); + $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'ProductIDType', $code->getCode())); // GTIN-13 (ISBN-13 as GTIN) + $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDValue', $code->getValue())); + $productNode->appendChild($productIdentifierNode); + + unset($productIdentifierNode); + unset($code); + + $identifierGiven = true; + } + + // Deal with the possibility of a DOI pubId. + if ($context->areDoisEnabled() && $publicationFormat->getDoi()) { + $productIdentifierNode = $doc->createElementNS($deployment->getNamespace(), 'ProductIdentifier'); + $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'ProductIDType', '06')); // DOI + $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDValue', $publicationFormat->getDoi())); // GTIN-13 (ISBN-13 as GTIN) + $productNode->appendChild($productIdentifierNode); + + unset($productIdentifierNode); + + $identifierGiven = true; + } + + if (!$identifierGiven) { + $productIdentifierNode = $doc->createElementNS($deployment->getNamespace(), 'ProductIdentifier'); + $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'ProductIDType', '01')); // Id + $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDTypeName', 'PKID')); + $productIdentifierNode->appendChild($this->_buildTextNode($doc, 'IDValue', $publicationFormat->getId())); + + $productNode->appendChild($productIdentifierNode); + } + + /* --- Descriptive Detail --- */ + $descDetailNode = $doc->createElementNS($deployment->getNamespace(), 'DescriptiveDetail'); + + $descDetailNode->appendChild($this->_buildTextNode( + $doc, + 'ProductComposition', + $publicationFormat->getProductCompositionCode() ? $publicationFormat->getProductCompositionCode() : '00' + )); // single item, trade only, etc. Default to single item if not specified. + + $descDetailNode->appendChild($this->_buildTextNode($doc, 'ProductForm', $publicationFormat->getEntryKey())); // paperback, hardcover, etc + + if ($publicationFormat->getProductFormDetailCode() != '') { + $descDetailNode->appendChild($this->_buildTextNode($doc, 'ProductFormDetail', $publicationFormat->getProductFormDetailCode())); // refinement of ProductForm + } + + /* --- Physical Book Measurements --- */ + if ($publicationFormat->getPhysicalFormat()) { + // '01' => 'Height', '02' => 'Width', '03' => 'Thickness', '08' => 'Weight' + if ($publicationFormat->getHeight() != '') { + $measureNode = $this->_createMeasurementNode($doc, $deployment, '01', $publicationFormat->getHeight(), $publicationFormat->getHeightUnitCode()); + $descDetailNode->appendChild($measureNode); + unset($measureNode); + } + + if ($publicationFormat->getWidth() != '') { + $measureNode = $this->_createMeasurementNode($doc, $deployment, '02', $publicationFormat->getWidth(), $publicationFormat->getWidthUnitCode()); + $descDetailNode->appendChild($measureNode); + unset($measureNode); + } + + if ($publicationFormat->getThickness() != '') { + $measureNode = $this->_createMeasurementNode($doc, $deployment, '03', $publicationFormat->getThickness(), $publicationFormat->getThicknessUnitCode()); + $descDetailNode->appendChild($measureNode); + unset($measureNode); + } + + if ($publicationFormat->getWeight() != '') { + $measureNode = $this->_createMeasurementNode($doc, $deployment, '08', $publicationFormat->getWeight(), $publicationFormat->getWeightUnitCode()); + $descDetailNode->appendChild($measureNode); + unset($measureNode); + } + } + + if ($publicationFormat->getCountryManufactureCode() != '') { + $descDetailNode->appendChild($this->_buildTextNode($doc, 'CountryOfManufacture', $publicationFormat->getCountryManufactureCode())); + } + + if (!$publicationFormat->getPhysicalFormat() && $publicationFormat->getTechnicalProtectionCode() != '') { + $descDetailNode->appendChild($this->_buildTextNode($doc, 'EpubTechnicalProtection', $publicationFormat->getTechnicalProtectionCode())); + } + + /* --- License information --- */ + + $publication = $submission->getCurrentPublication(); + + if ($publication->isCCLicense()) { + $licenseOpts = Application::getCCLicenseOptions(); + $licenseUrl = $publication->getData('licenseUrl'); + if (array_key_exists($licenseUrl, $licenseOpts)) { + $licenseName = (__($licenseOpts[$licenseUrl], [], $publication->getData('locale'))); + + $epubLicenseNode = $doc->createElementNS($deployment->getNamespace(), 'EpubLicense'); + $descDetailNode->appendChild($epubLicenseNode); + $epubLicenseNode->appendChild($this->_buildTextNode($doc, 'EpubLicenseName', $licenseName)); + + $epubLicenseExpressionNode = $doc->createElementNS($deployment->getNamespace(), 'EpubLicenseExpression'); + $epubLicenseNode->appendChild($epubLicenseExpressionNode); + + $epubLicenseExpressionNode->appendChild($this->_buildTextNode($doc, 'EpubLicenseExpressionType', '02')); + $epubLicenseExpressionNode->appendChild($this->_buildTextNode($doc, 'EpubLicenseExpressionLink', $licenseUrl)); + } + } + + /* --- Collection information, first for series and then for product --- */ + + /* --- Series information, if this monograph is part of one. --- */ + $seriesId = $submission->getCurrentPublication()->getData('seriesId'); + $series = $seriesId ? Repo::section()->get($seriesId) : null; + if ($series != null) { + $seriesCollectionNode = $doc->createElementNS($deployment->getNamespace(), 'Collection'); + $seriesCollectionNode->appendChild($this->_buildTextNode($doc, 'CollectionType', '10')); // publisher series. + + $seriesTitleDetailNode = $doc->createElementNS($deployment->getNamespace(), 'TitleDetail'); + $seriesTitleDetailNode->appendChild($this->_buildTextNode($doc, 'TitleType', '01')); + $seriesCollectionNode->appendChild($seriesTitleDetailNode); + + $titleElementNode = $doc->createElementNS($deployment->getNamespace(), 'TitleElement'); + $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleElementLevel', '02')); // Collection level title + $seriesTitleDetailNode->appendChild($titleElementNode); + + if ($submission->getCurrentPublication()->getData('seriesPosition')) { + $titleElementNode->appendChild($this->_buildTextNode($doc, 'PartNumber', $submission->getCurrentPublication()->getData('seriesPosition'))); + } + + if ($series->getLocalizedPrefix() == '' || $series->getLocalizedTitle(false) == '') { + $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleText', trim(join(' ', [$series->getLocalizedPrefix(), $series->getLocalizedTitle(false)])))); + } else { + if ($series->getLocalizedPrefix() != '') { + $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitlePrefix', $series->getLocalizedPrefix())); + } else { + $titleElementNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'NoPrefix')); + } + + $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleWithoutPrefix', $series->getLocalizedTitle(false))); + } + + if ($series->getLocalizedSubtitle() != '') { + $titleElementNode->appendChild($this->_buildTextNode($doc, 'Subtitle', $series->getLocalizedSubtitle())); + } + } else { + $seriesCollectionNode = $doc->createElementNS($deployment->getNamespace(), 'NoCollection'); + } + $descDetailNode->appendChild($seriesCollectionNode); + + /* --- and now product level info --- */ + + $productTitleDetailNode = $doc->createElementNS($deployment->getNamespace(), 'TitleDetail'); + $productTitleDetailNode->appendChild($this->_buildTextNode($doc, 'TitleType', '01')); + $descDetailNode->appendChild($productTitleDetailNode); + + $titleElementNode = $doc->createElementNS($deployment->getNamespace(), 'TitleElement'); + $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleElementLevel', '01')); + + $productTitleDetailNode->appendChild($titleElementNode); + + if (!$publication->getLocalizedData('prefix') || !$publication->getLocalizedData('title')) { + $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleText', trim($publication->getLocalizedData('prefix') ?? $publication->getLocalizedTitle()))); + } else { + if ($publication->getLocalizedData('prefix')) { + $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitlePrefix', $publication->getLocalizedData('prefix'))); + } else { + $titleElementNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'NoPrefix')); + } + + $titleElementNode->appendChild($this->_buildTextNode($doc, 'TitleWithoutPrefix', strip_tags($publication->getLocalizedData('title')))); + } + + if ($subTitle = $publication->getLocalizedSubTitle($publication->getData('locale'))) { + $titleElementNode->appendChild($this->_buildTextNode($doc, 'Subtitle', $subTitle)); + } + + /* --- Contributor information --- */ + + $authors = $publication->getData('authors'); // sorts by sequence. + $sequence = 1; + foreach ($authors as $author) { + $contributorNode = $doc->createElementNS($deployment->getNamespace(), 'Contributor'); + $contributorNode->appendChild($this->_buildTextNode($doc, 'SequenceNumber', $sequence)); + + $userGroup = Repo::userGroup()->get($author->getUserGroupId()); + + $userGroupOnixMap = ['default.groups.name.author' => 'A01', 'default.groups.name.volumeEditor' => 'B01', 'default.groups.name.chapterAuthor' => 'A01', 'default.groups.name.translator' => 'B06', 'default.groups.name.editor' => 'B21']; // From List17, ContributorRole types. + + $nameKey = $userGroup->getData('nameLocaleKey'); + $role = array_key_exists($nameKey, $userGroupOnixMap) ? $userGroupOnixMap[$nameKey] : 'Z99'; // Z99 - unknown contributor type. + + $contributorNode->appendChild($this->_buildTextNode($doc, 'ContributorRole', $role)); + $contributorNode->appendChild($this->_buildTextNode($doc, 'PersonName', $author->getFullName(false))); + $contributorNode->appendChild($this->_buildTextNode($doc, 'PersonNameInverted', $author->getFullName(false, true))); + $contributorNode->appendChild($this->_buildTextNode($doc, 'NamesBeforeKey', $author->getLocalizedGivenName())); + if ($author->getLocalizedFamilyName() != '') { + $contributorNode->appendChild($this->_buildTextNode($doc, 'KeyNames', $author->getLocalizedFamilyName())); + } else { + $contributorNode->appendChild($this->_buildTextNode($doc, 'KeyNames', $author->getFullName(false))); + } + + if ($author->getLocalizedBiography() != '') { + $contributorNode->appendChild($this->_buildTextNode($doc, 'BiographicalNote', $author->getLocalizedBiography())); + } + + if ($author->getCountry() != '') { + $contributorPlaceNode = $doc->createElementNS($deployment->getNamespace(), 'ContributorPlace'); + $contributorNode->appendChild($contributorPlaceNode); + $contributorPlaceNode->appendChild($this->_buildTextNode($doc, 'ContributorPlaceRelator', '04')); + $contributorPlaceNode->appendChild($this->_buildTextNode($doc, 'CountryCode', $author->getCountry())); + unset($contributorPlaceNode); + } + + $sequence++; + $descDetailNode->appendChild($contributorNode); + + unset($contributorNode); + unset($userGroup); + unset($author); + } + + if (sizeof($authors) == 0) { // this will probably never happen, but include the possibility. + $descDetailNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'NoContributor')); // empty state of fact. + } + + /* --- Add Language elements --- */ + + $submissionLanguageDao = DAORegistry::getDAO('SubmissionLanguageDAO'); /** @var SubmissionLanguageDAO $submissionLanguageDao */ + $allLanguages = $submissionLanguageDao->getLanguages($publication->getId(), array_keys(Locale::getSupportedFormLocales())); + $uniqueLanguages = []; + foreach ($allLanguages as $locale => $languages) { + $uniqueLanguages = array_merge($uniqueLanguages, $languages); + } + + foreach ($uniqueLanguages as $language) { + $languageNode = $doc->createElementNS($deployment->getNamespace(), 'Language'); + + $languageNode->appendChild($this->_buildTextNode($doc, 'LanguageRole', '01')); + $onixLanguageCode = $onixCodelistItemDao->getCodeFromValue($language, 'List74'); + if ($onixLanguageCode != '') { + $languageNode->appendChild($this->_buildTextNode($doc, 'LanguageCode', $onixLanguageCode)); + $descDetailNode->appendChild($languageNode); + } + unset($languageNode); + } + + /* --- add Extents for 00 (main content), 04 (back matter), 08 for digital works ---*/ + + if ($publicationFormat->getFrontMatter() > 0) { + // 03 - Pages + $extentNode = $this->_createExtentNode($doc, $deployment, '00', $publicationFormat->getFrontMatter(), '03'); + $descDetailNode->appendChild($extentNode); + unset($extentNode); + } + + if ($publicationFormat->getBackMatter() > 0) { + $extentNode = $this->_createExtentNode($doc, $deployment, '04', $publicationFormat->getBackMatter(), '03'); + $descDetailNode->appendChild($extentNode); + unset($extentNode); + } + + if (!$publicationFormat->getPhysicalFormat()) { // EBooks and digital content have extent information about file sizes + $fileSize = $publicationFormat->getFileSize() ? $publicationFormat->getFileSize() : $publicationFormat->getCalculatedFileSize(); + $extentNode = $this->_createExtentNode($doc, $deployment, '08', $fileSize, '05'); + $descDetailNode->appendChild($extentNode); + unset($extentNode); + } + + /* --- Add Subject elements --- */ + + if ($publication->getData('subjects')) { + $subjectNode = $doc->createElementNS($deployment->getNamespace(), 'Subject'); + $mainSubjectNode = $doc->createElementNS($deployment->getNamespace(), 'MainSubject'); // Always empty as per 3.0 spec. + + $subjectNode->appendChild($mainSubjectNode); + $subjectNode->appendChild($this->_buildTextNode($doc, 'SubjectSchemeIdentifier', '12')); // 12 is BIC subject category code list. + $subjectNode->appendChild($this->_buildTextNode($doc, 'SubjectSchemeVersion', '2')); // Version 2 of ^^ + + $allSubjects = ($publication->getData('subjects')[$publication->getData('locale')]); + $subjectNode->appendChild($this->_buildTextNode($doc, 'SubjectCode', trim(join(', ', $allSubjects)))); + $descDetailNode->appendChild($subjectNode); + } + + if ($publication->getData('keywords')) { + $allKeywords = ($publication->getData('keywords')[$publication->getData('locale')]); + $keywordNode = $doc->createElementNS($deployment->getNamespace(), 'Subject'); + $keywordNode->appendChild($this->_buildTextNode($doc, 'SubjectSchemeIdentifier', '20')); // Keywords + $keywordNode->appendChild($this->_buildTextNode($doc, 'SubjectHeadingText', trim(join(', ', $allKeywords)))); + $descDetailNode->appendChild($keywordNode); + } + /* --- Add Audience elements --- */ + + if ($submission->getData('audience')) { + $audienceNode = $doc->createElementNS($deployment->getNamespace(), 'Audience'); + $descDetailNode->appendChild($audienceNode); + $audienceNode->appendChild($this->_buildTextNode($doc, 'AudienceCodeType', $submission->getData('audience'))); + $audienceNode->appendChild($this->_buildTextNode($doc, 'AudienceCodeValue', '01')); + } + + if ($submission->getData('audienceRangeQualifier') != '') { + $audienceRangeNode = $doc->createElementNS($deployment->getNamespace(), 'AudienceRange'); + $descDetailNode->appendChild($audienceRangeNode); + $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangeQualifier', $submission->getData('audienceRangeQualifier'))); + + if ($submission->getData('audienceRangeExact') != '') { + $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangePrecision', '01')); // Exact, list31 + $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangeValue', $submission->getData('audienceRangeExact'))); + } else { // if not exact, then include the From -> To possibilities + if ($submission->getData('audienceRangeFrom') != '') { + $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangePrecision', '03')); // from + $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangeValue', $submission->getData('audienceRangeFrom'))); + } + if ($submission->getData('audienceRangeTo') != '') { + $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangePrecision', '04')); // to + $audienceRangeNode->appendChild($this->_buildTextNode($doc, 'AudienceRangeValue', $submission->getData('audienceRangeTo'))); + } + } + } + + $productNode->appendChild($descDetailNode); + unset($descDetailNode); + + // Back to assembling Product node. + /* --- Collateral Detail --- */ + + $collateralDetailNode = $doc->createElementNS($deployment->getNamespace(), 'CollateralDetail'); + $productNode->appendChild($collateralDetailNode); + + $abstract = strip_tags($publication->getLocalizedData('abstract')); + + $textContentNode = $doc->createElementNS($deployment->getNamespace(), 'TextContent'); + $collateralDetailNode->appendChild($textContentNode); + $textContentNode->appendChild($this->_buildTextNode($doc, 'TextType', '02')); // short description + $textContentNode->appendChild($this->_buildTextNode($doc, 'ContentAudience', '00')); // Any audience + $textContentNode->appendChild($this->_buildTextNode($doc, 'Text', substr($abstract, 0, 250))); // Any audience + + $textContentNode = $doc->createElementNS($deployment->getNamespace(), 'TextContent'); + $collateralDetailNode->appendChild($textContentNode); + + $textContentNode->appendChild($this->_buildTextNode($doc, 'TextType', '03')); // description + $textContentNode->appendChild($this->_buildTextNode($doc, 'ContentAudience', '00')); // Any audience + $textContentNode->appendChild($this->_buildTextNode($doc, 'Text', $abstract)); // Any audience + + $supportingResourceNode = $doc->createElementNS($deployment->getNamespace(), 'SupportingResource'); + $collateralDetailNode->appendChild($supportingResourceNode); + $supportingResourceNode->appendChild($this->_buildTextNode($doc, 'ResourceContentType', '01')); // Front cover + $supportingResourceNode->appendChild($this->_buildTextNode($doc, 'ContentAudience', '00')); // Any audience + $supportingResourceNode->appendChild($this->_buildTextNode($doc, 'ResourceMode', '03')); // A still image + + $resourceVersionNode = $doc->createElementNS($deployment->getNamespace(), 'ResourceVersion'); + $supportingResourceNode->appendChild($resourceVersionNode); + $resourceVersionNode->appendChild($this->_buildTextNode($doc, 'ResourceForm', '01')); // Linkable resource + $resourceVersionNode->appendChild($this->_buildTextNode($doc, 'ResourceLink', $publication->getLocalizedCoverImageUrl($context->getId(), $publication->getData('locale')))); + + /* --- Publishing Detail --- */ + + $publishingDetailNode = $doc->createElementNS($deployment->getNamespace(), 'PublishingDetail'); + $productNode->appendChild($publishingDetailNode); + + if ($publicationFormat->getImprint()) { + $imprintNode = $doc->createElementNS($deployment->getNamespace(), 'Imprint'); + $publishingDetailNode->appendChild($imprintNode); + $imprintNode->appendChild($this->_buildTextNode($doc, 'ImprintName', $publicationFormat->getImprint())); + unset($imprintNode); + } + + $publisherNode = $doc->createElementNS($deployment->getNamespace(), 'Publisher'); + $publishingDetailNode->appendChild($publisherNode); + + $publisherNode->appendChild($this->_buildTextNode($doc, 'PublishingRole', '01')); // Publisher + $publisherNode->appendChild($this->_buildTextNode($doc, 'PublisherName', $context->getData('publisher'))); + if ($context->getData('location') != '') { + $publishingDetailNode->appendChild($this->_buildTextNode($doc, 'CityOfPublication', $context->getData('location'))); + } + + $websiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); + $publisherNode->appendChild($websiteNode); + + $websiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '18')); // 18 -> Publisher's B2C website + $websiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $request->url($context->getPath()))); + + $websiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); + $publisherNode->appendChild($websiteNode); + + $websiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '29')); // 29 -> Web page for full content + + $submissionBestId = $publication->getData('submissionId'); + + if ($publication->getData('urlPath') != '') { + $submissionBestId = $publication->getData('urlPath'); + } + + $websiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $request->url($context->getPath(), 'catalog', 'book', $submissionBestId))); + + /* --- Publishing Dates --- */ + + $publicationDates = $publicationFormat->getPublicationDates(); + while ($date = $publicationDates->next()) { + $pubDateNode = $doc->createElementNS($deployment->getNamespace(), 'PublishingDate'); + $publishingDetailNode->appendChild($pubDateNode); + + $pubDateNode->appendChild($this->_buildTextNode($doc, 'PublishingDateRole', $date->getRole())); + + $dateNode = $doc->createElementNS($deployment->getNamespace(), 'Date'); + $dateNode->setAttribute('dateformat', $date->getDateFormat()); + $pubDateNode->appendChild($dateNode); + $dateNode->appendChild($doc->createTextNode($date->getDate())); + + unset($pubDateNode); + unset($dateNode); + unset($date); + } + + /* -- Sales Rights -- */ + + $allSalesRights = $publicationFormat->getSalesRights(); + $salesRightsROW = null; + while ($salesRights = $allSalesRights->next()) { + $salesRightsNode = $doc->createElementNS($deployment->getNamespace(), 'SalesRights'); + $publishingDetailNode->appendChild($salesRightsNode); + $salesRightsNode->appendChild($this->_buildTextNode($doc, 'SalesRightsType', $salesRights->getType())); + + // now do territories and countries. + $territoryNode = $doc->createElementNS($deployment->getNamespace(), 'Territory'); + $salesRightsNode->appendChild($territoryNode); + + $salesCountriesIncluded = sizeof($salesRights->getCountriesIncluded()) > 0; + $salesRegionsIncluded = sizeof($salesRights->getRegionsIncluded()) > 0; + $salesCountriesExcluded = sizeof($salesRights->getCountriesExcluded()) > 0; + $salesRegionsExcluded = sizeof($salesRights->getRegionsExcluded()) > 0; + + if ($salesRights->getROWSetting()) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsIncluded', 'WORLD')); + $salesRightsROW = $salesRights; + } elseif ($salesCountriesIncluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'CountriesIncluded', trim(join(' ', $salesRights->getCountriesIncluded())))); + if (!in_array('WORLD', $salesRights->getRegionsIncluded())) { + if ($salesRegionsIncluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsIncluded', trim(join(' ', $salesRights->getRegionsIncluded())))); + } + if ($salesRegionsExcluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsExcluded', trim(join(' ', $salesRights->getRegionsExcluded())))); + } + } elseif ($salesRegionsExcluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsExcluded', trim(join(' ', $salesRights->getRegionsExcluded())))); + } + } elseif ($salesRegionsIncluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsIncluded', trim(join(' ', $salesRights->getRegionsIncluded())))); + if (in_array('WORLD', $salesRights->getRegionsIncluded())) { + if ($salesCountriesExcluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'CountriesExcluded', trim(join(' ', $salesRights->getCountriesExcluded())))); + } + if ($salesRegionsExcluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsExcluded', trim(join(' ', $salesRights->getRegionsExcluded())))); + } + } + } + + unset($territoryNode); + unset($salesRightsNode); + unset($salesRights); + } + if ($salesRightsROW != null) { + $publishingDetailNode->appendChild($this->_buildTextNode($doc, 'ROWSalesRightsType', $salesRightsROW->getType())); + } + + /* --- Product Supply. We create one of these per defined Market. --- */ + + $representativeDao = DAORegistry::getDAO('RepresentativeDAO'); /** @var RepresentativeDAO $representativeDao */ + $markets = $publicationFormat->getMarkets(); + + while ($market = $markets->next()) { + $productSupplyNode = $doc->createElementNS($deployment->getNamespace(), 'ProductSupply'); + $productNode->appendChild($productSupplyNode); + + $marketNode = $doc->createElementNS($deployment->getNamespace(), 'Market'); + $productSupplyNode->appendChild($marketNode); + + $territoryNode = $doc->createElementNS($deployment->getNamespace(), 'Territory'); + + $marketCountriesIncluded = sizeof($market->getCountriesIncluded()) > 0; + $marketRegionsIncluded = sizeof($market->getRegionsIncluded()) > 0; + $marketCountriesExcluded = sizeof($market->getCountriesExcluded()) > 0; + $marketRegionsExcluded = sizeof($market->getRegionsExcluded()) > 0; + + if ($marketCountriesIncluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'CountriesIncluded', trim(join(' ', $market->getCountriesIncluded())))); + if (!in_array('WORLD', $market->getRegionsIncluded())) { + if ($marketRegionsIncluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsIncluded', trim(join(' ', $market->getRegionsIncluded())))); + } + if ($marketRegionsExcluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsExcluded', trim(join(' ', $market->getRegionsExcluded())))); + } + } elseif ($marketRegionsExcluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsExcluded', trim(join(' ', $market->getRegionsExcluded())))); + } + } elseif ($marketRegionsIncluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsIncluded', trim(join(' ', $market->getRegionsIncluded())))); + if (in_array('WORLD', $market->getRegionsIncluded())) { + if ($marketCountriesExcluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'CountriesExcluded', trim(join(' ', $market->getCountriesExcluded())))); + } + if ($marketRegionsExcluded) { + $territoryNode->appendChild($this->_buildTextNode($doc, 'RegionsExcluded', trim(join(' ', $market->getRegionsExcluded())))); + } + } + } + + // Include territory if it's not empty + if ($territoryNode->firstElementChild) { + $marketNode->appendChild($territoryNode); + } + + unset($marketNode); + unset($territoryNode); + + /* --- Include a MarketPublishingDetail node --- */ + + $marketPubDetailNode = $doc->createElementNS($deployment->getNamespace(), 'MarketPublishingDetail'); + $productSupplyNode->appendChild($marketPubDetailNode); + + $agent = $representativeDao->getById($market->getAgentId()); + + if (isset($agent)) { + $representativeNode = $doc->createElementNS($deployment->getNamespace(), 'PublisherRepresentative'); + $marketPubDetailNode->appendChild($representativeNode); + + $representativeNode->appendChild($this->_buildTextNode($doc, 'AgentRole', $agent->getRole())); + $representativeNode->appendChild($this->_buildTextNode($doc, 'AgentName', $agent->getName())); + + if ($agent->getUrl() != '') { + $agentWebsiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); + $representativeNode->appendChild($agentWebsiteNode); + + $agentWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '18')); // 18 -> Public website + $agentWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $agent->getUrl())); + } + unset($representativeNode); + } + + $marketPubDetailNode->appendChild($this->_buildTextNode($doc, 'MarketPublishingStatus', '04')); // Active + + // MarketDate is a required field on the form. If that changes, this should be wrapped in a conditional. + $marketDateNode = $doc->createElementNS($deployment->getNamespace(), 'MarketDate'); + $marketPubDetailNode->appendChild($marketDateNode); + + $marketDateNode->appendChild($this->_buildTextNode($doc, 'MarketDateRole', $market->getDateRole())); + $marketDateNode->appendChild($this->_buildTextNode($doc, 'DateFormat', $market->getDateFormat())); + $marketDateNode->appendChild($this->_buildTextNode($doc, 'Date', $market->getDate())); + + unset($marketDateNode); + unset($marketPubDetailNode); + + /* --- Supplier Detail Information --- */ + + $supplier = $representativeDao->getById($market->getSupplierId()); + + $supplyDetailNode = $doc->createElementNS($deployment->getNamespace(), 'SupplyDetail'); + $productSupplyNode->appendChild($supplyDetailNode); + + if (isset($supplier)) { + $supplierNode = $doc->createElementNS($deployment->getNamespace(), 'Supplier'); + $supplyDetailNode->appendChild($supplierNode); + + $supplierNode->appendChild($this->_buildTextNode($doc, 'SupplierRole', $supplier->getRole())); + $supplierNode->appendChild($this->_buildTextNode($doc, 'SupplierName', $supplier->getName())); + if ($supplier->getPhone()) { + $supplierNode->appendChild($this->_buildTextNode($doc, 'TelephoneNumber', $supplier->getPhone())); + } + if ($supplier->getEmail()) { + $supplierNode->appendChild($this->_buildTextNode($doc, 'EmailAddress', $supplier->getEmail())); + } + + if ($supplier->getUrl() != '') { + $supplierWebsiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); + $supplierNode->appendChild($supplierWebsiteNode); + + $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '18')); // 18 -> Public website + $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $supplier->getUrl())); + + unset($supplierWebsiteNode); + } + + $supplierWebsiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); + $supplierNode->appendChild($supplierWebsiteNode); + + $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '29')); // 29 -> Web page for full content + $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $request->url($context->getPath(), 'catalog', 'book', $submissionBestId))); + + unset($supplierNode); + } else { // No suppliers specified, use the Press settings instead. + $supplierNode = $doc->createElementNS($deployment->getNamespace(), 'Supplier'); + $supplyDetailNode->appendChild($supplierNode); + + $supplierNode->appendChild($this->_buildTextNode($doc, 'SupplierRole', '09')); // Publisher supplying to end customers + $supplierNode->appendChild($this->_buildTextNode($doc, 'SupplierName', $context->getData('publisher'))); + + if ($context->getData('contactEmail') != '') { + $supplierNode->appendChild($this->_buildTextNode($doc, 'EmailAddress', $context->getData('contactEmail'))); + } + + $supplierWebsiteNode = $doc->createElementNS($deployment->getNamespace(), 'Website'); + $supplierNode->appendChild($supplierWebsiteNode); + + $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteRole', '18')); // 18 -> Public website + $supplierWebsiteNode->appendChild($this->_buildTextNode($doc, 'WebsiteLink', $request->url($context->getPath()))); + + unset($supplierNode); + unset($supplierWebsiteNode); + } + + if ($publicationFormat->getReturnableIndicatorCode() != '') { + $returnsNode = $doc->createElementNS($deployment->getNamespace(), 'ReturnsConditions'); + $supplyDetailNode->appendChild($returnsNode); + + $returnsNode->appendChild($this->_buildTextNode($doc, 'ReturnsCodeType', '02')); // we support the BISAC codes for these + $returnsNode->appendChild($this->_buildTextNode($doc, 'ReturnsCode', $publicationFormat->getReturnableIndicatorCode())); + + unset($returnsNode); + } + + $supplyDetailNode->appendChild($this->_buildTextNode( + $doc, + 'ProductAvailability', + $publicationFormat->getProductAvailabilityCode() ? $publicationFormat->getProductAvailabilityCode() : '20' + )); // assume 'available' if not specified. + + $priceNode = $doc->createElementNS($deployment->getNamespace(), 'Price'); + $supplyDetailNode->appendChild($priceNode); + + $excludeTaxNode = false; + + if ($market->getPriceTypeCode() != '') { + $priceNode->appendChild($this->_buildTextNode($doc, 'PriceType', $market->getPriceTypeCode())); + $priceTypeTaxEx = ['02', '04', '07', '09', '12', '14', '17', '22', '24', '27', '34', '42']; // Price type codes that include tax + if (in_array($market->getPriceTypeCode(), $priceTypeTaxEx)) { + $excludeTaxNode = true; + } + } + + if ($market->getDiscount() != '') { + $discountNode = $doc->createElementNS($deployment->getNamespace(), 'Discount'); + $priceNode->appendChild($discountNode); + $discountNode->appendChild($this->_buildTextNode($doc, 'DiscountPercent', $market->getDiscount())); + unset($discountNode); + } + + $priceNode->appendChild($this->_buildTextNode($doc, 'PriceAmount', $market->getPrice())); + + if (!$excludeTaxNode && ($market->getTaxTypeCode() != '' || $market->getTaxRateCode() != '')) { + $taxNode = $doc->createElementNS($deployment->getNamespace(), 'Tax'); + $priceNode->appendChild($taxNode); + + if ($market->getTaxTypeCode()) { + $taxNode->appendChild($this->_buildTextNode($doc, 'TaxType', $market->getTaxTypeCode())); + } + if ($market->getTaxRateCode()) { + $taxNode->appendChild($this->_buildTextNode($doc, 'TaxRateCode', $market->getTaxRateCode())); + if ($market->getTaxRateCode() == 'Z') { + $taxNode->appendChild($this->_buildTextNode($doc, 'TaxRatePercent', '0')); // Zero-rated tax rate type + } + } + $taxNode->appendChild($this->_buildTextNode($doc, 'TaxableAmount', $market->getPrice())); // Taxable amount defaults to full price + unset($taxNode); + } + + if ($market->getCurrencyCode() != '') { + $priceNode->appendChild($this->_buildTextNode($doc, 'CurrencyCode', $market->getCurrencyCode())); // CAD, GBP, USD, etc + } + + unset($priceNode); + unset($supplyDetailNode); + unset($market); + } // end of Market, closes ProductSupply. + + return $productNode; + } + + /** + * Convenience method for building a Measure node. + * + * @param \DOMDocument $doc + * @param Onix30ExportDeployment $deployment + * @param string $type + * @param string $measurement + * @param string $unitCode + * + * @return \DOMElement + */ + public function _createMeasurementNode($doc, $deployment, $type, $measurement, $unitCode) + { + $measureNode = $doc->createElementNS($deployment->getNamespace(), 'Measure'); + + $measureTypeNode = $doc->createElementNS($deployment->getNamespace(), 'MeasureType'); + $measureTypeNode->appendChild($doc->createTextNode($type)); + + $measurementNode = $doc->createElementNS($deployment->getNamespace(), 'Measurement'); + $measurementNode->appendChild($doc->createTextNode($measurement)); + + $measureUnitNode = $doc->createElementNS($deployment->getNamespace(), 'MeasureUnitCode'); + $measureUnitNode->appendChild($doc->createTextNode($unitCode)); + + $measureNode->appendChild($measureTypeNode); + $measureNode->appendChild($measurementNode); + $measureNode->appendChild($measureUnitNode); + + return $measureNode; + } + + /** + * Convenience method for building an Extent node. + * + * @param \DOMDocument $doc + * @param ONIX30ExportDeployment $deployment + * @param string $type + * @param string $extentValue + * @param string $extentUnit + * + * @return \DOMElement + */ + public function _createExtentNode($doc, $deployment, $type, $extentValue, $extentUnit) + { + $extentNode = $doc->createElementNS($deployment->getNamespace(), 'Extent'); + + $typeNode = $doc->createElementNS($deployment->getNamespace(), 'ExtentType'); + $typeNode->appendChild($doc->createTextNode($type)); + + $valueNode = $doc->createElementNS($deployment->getNamespace(), 'ExtentValue'); + $valueNode->appendChild($doc->createTextNode($extentValue)); + + $unitNode = $doc->createElementNS($deployment->getNamespace(), 'ExtentUnit'); + $unitNode->appendChild($doc->createTextNode($extentUnit)); + + $extentNode->appendChild($typeNode); + $extentNode->appendChild($valueNode); + $extentNode->appendChild($unitNode); + + return $extentNode; + } + + /** + * Convenience method for building a node with text content. + * + * @param \DOMDocument $doc + * @param string $nodeName + * @param string $textContent + * + * @return \DOMElement + */ + public function _buildTextNode($doc, $nodeName, $textContent) + { + $deployment = $this->getDeployment(); + $node = $doc->createElementNS($deployment->getNamespace(), $nodeName); + $node->appendChild($doc->createTextNode($textContent)); + return $node; + } +} diff --git a/plugins/importexport/onix30/filter/filterConfig.xml b/plugins/importexport/onix30/filter/filterConfig.xml index ff0bfacb58a..91b07a519c8 100644 --- a/plugins/importexport/onix30/filter/filterConfig.xml +++ b/plugins/importexport/onix30/filter/filterConfig.xml @@ -23,7 +23,7 @@ diff --git a/plugins/importexport/onix30/index.php b/plugins/importexport/onix30/index.php index adcb37ec57f..75fbecd48c7 100644 --- a/plugins/importexport/onix30/index.php +++ b/plugins/importexport/onix30/index.php @@ -3,7 +3,7 @@ /** * @defgroup plugins_importexport_onix30 ONIX 3.0 export plugin */ - + /** * @file plugins/importexport/onix30/index.php * @@ -12,12 +12,9 @@ * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup plugins_importexport_onix30 + * * @brief Wrapper for ONIX 3.0 XML export plugin. * */ -require_once('Onix30ExportPlugin.inc.php'); - -return new Onix30ExportPlugin(); - - +return new \APP\plugins\importexport\onix30\Onix30ExportPlugin(); diff --git a/plugins/importexport/onix30/locale/bg/locale.po b/plugins/importexport/onix30/locale/bg/locale.po new file mode 100644 index 00000000000..104a361770b --- /dev/null +++ b/plugins/importexport/onix30/locale/bg/locale.po @@ -0,0 +1,78 @@ +# Cyril Kamburov , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-23 11:06+0000\n" +"Last-Translator: Cyril Kamburov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.onix30.description" +msgstr "Експортиране на метаданни на монография във формат ONIX 3.0" + +msgid "plugins.importexport.onix30.cliError" +msgstr "ГРЕШКА:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Посоченият път за издателство, \"{$contextPath},\" не съществува." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Не можа да се запише във файла „{$fileName}“." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Не се показват монографии без формат на публикация." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Изберете монографии за експортиране" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Изберете монография за експортиране:" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Достъпни формати" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "ONIX статус" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Плъгин за експортиране на монографии в ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Употреба: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId]" +" " + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Невалиден" + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Нито една монография не съответства на посочения идентификатор на монография " +"„{$monographId}“." + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Експорт" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"В това издателство липсва част от необходимата информация. Моля, отидете на " +"Настройки на издателство и попълнете липсващите данни." + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Недостъпно" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Валиден" + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Адресат (получател) за този експорт" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Можете да оставите това поле празно и да създадете общо експортиране. Това " +"ще доведе до експортиране на ONIX без <Addressee> композитен. " diff --git a/plugins/importexport/onix30/locale/ca/locale.po b/plugins/importexport/onix30/locale/ca/locale.po new file mode 100644 index 00000000000..55323778cec --- /dev/null +++ b/plugins/importexport/onix30/locale/ca/locale.po @@ -0,0 +1,79 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" +"PO-Revision-Date: 2021-03-05 15:09+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Catalan \n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Mòdul d'exportació de monografies ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Exportar metadades de monografies en format ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Ús: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "ERROR:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "La ruta editorial especificada, \"{$contextPath}\", no existeix." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "No s'ha pogut escriure en l'arxiu \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Cap monografia coincideix amb l'identificador de monografia especificat " +"\"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Les monografies sense formats de publicació no es mostren." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Seleccionar les monografies per exportar" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Seleccionar una monografia per exportar:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exporta" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Formats disponibles" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "No disponible" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Estat ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Vàlid" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Invàlid" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"A aquesta editorial li manca alguna informació necessària. Aneu a Configuració editorial i completeu les dades que hi falten." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Destinatari (receptor/a) d'aquesta exportació" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Podeu deixar aquest camp en blanc i crear una exportació general. Això " +"suposarà que l'exportació ONIX no tingui <destinatari> compost. " diff --git a/plugins/importexport/onix30/locale/ca_ES/locale.po b/plugins/importexport/onix30/locale/ca_ES/locale.po deleted file mode 100644 index ed44018293e..00000000000 --- a/plugins/importexport/onix30/locale/ca_ES/locale.po +++ /dev/null @@ -1,80 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" -"PO-Revision-Date: 2020-04-16 14:37+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Catalan \n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.displayName" -msgstr "Mòdul d'exportació de monografies ONIX 3.0" - -msgid "plugins.importexport.onix30.cliError" -msgstr "ERROR:" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Exporta" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Formats disponibles" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "No disponible" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "Estat ONIX" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Vàlid" - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Invàlid" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "" -"Podeu deixar aquest camp en blanc i crear una exportació general. Això " -"suposarà que l'exportació ONIX no tingui <destinatari> compost. " - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Destinatari (receptor/a) d'aquesta exportació" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "" -"A aquesta publicació li manca alguna informació necessària. Aneu a " -"Configuració > Flux de treball > Producció i completeu les dades que hi " -"falten." - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Seleccionar una monografia per exportar:" - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Seleccionar les monografies per exportar" - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Les monografies sense formats de publicació no es mostren." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "" -"Cap monografia coincideix amb l'identificador de monografia especificat \"" -"{$monographId}\"." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "No s'ha pogut escriure en l'arxiu \"{$fileName}\"." - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "La ruta editorial especificada, \"{$contextPath}\", no existeix." - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "" -"Ús: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " - -msgid "plugins.importexport.onix30.description" -msgstr "Exportar metadades de monografies en format ONIX 3.0" diff --git a/plugins/importexport/onix30/locale/cs/locale.po b/plugins/importexport/onix30/locale/cs/locale.po new file mode 100644 index 00000000000..8f4e57a81ac --- /dev/null +++ b/plugins/importexport/onix30/locale/cs/locale.po @@ -0,0 +1,76 @@ +# Jiří Dlouhý , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-01-16 10:39+0000\n" +"Last-Translator: Jiří Dlouhý \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Plugin pro export monografií ve standardu ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Exportovat metadata monografie ve formátu ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Použití: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "CHYBA:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Vybraná cesta nakladatelství \"{$contextPath}\" neexistuje." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Do souboru \"{$fileName}\" nelze zapisovat." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "Zadanému ID monografie \"{$monographId}\" neodpovídá žádná monografie." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Monografie bez publikačních formátů nejsou v seznamu zobrazeny." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Zvolte monografie pro export" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Zvolte monografii pro export:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exportovat" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Dostupné formáty" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Nedostupné" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Status ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Platný" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Neplatný" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"V nakladatelství je potřeba vyplnit nějaké chybějící informace. Prosím, " +"jděte do Nastavení nakladatelství a vyplňte " +"chybějící detaily." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Adresovat příjemce pro tento export" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Pro obecný export nechte pole prázdné. Ve výsledku exportu ONIX nebude nikdo " +"adresován. " diff --git a/plugins/importexport/onix30/locale/cs_CZ/locale.po b/plugins/importexport/onix30/locale/cs_CZ/locale.po deleted file mode 100644 index f07bca83045..00000000000 --- a/plugins/importexport/onix30/locale/cs_CZ/locale.po +++ /dev/null @@ -1,75 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-27 09:21+0000\n" -"Last-Translator: Jiří Dlouhý \n" -"Language-Team: Czech \n" -"Language: cs_CZ\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.displayName" -msgstr "Plugin pro export monografií ve standardu ONIX 3.0" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "" -"Pro obecný export nechte pole prázdné. Ve výsledku exportu ONIX nebude nikdo " -"adresován. " - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Adresovat příjemce pro tento export" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "" -"V nakladatelství je potřeba vyplnit nějaké chybějící informace. Prosím, " -"jděte do Nastavení nakladatelství a vyplňte " -"chybějící detaily." - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Neplatný" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Platný" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "Status ONIX" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Nedostupné" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Dostupné formáty" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Exportovat" - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Zvolte monografii pro export:" - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Zvolte monografie pro export" - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Monografie bez publikačních formátů nejsou v seznamu zobrazeny." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "Zadanému ID monografie \"{$monographId}\" neodpovídá žádná monografie." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Do souboru \"{$fileName}\" nelze zapisovat." - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "Vybraná cesta nakladatelství \"{$contextPath}\" neexistuje." - -msgid "plugins.importexport.onix30.cliError" -msgstr "CHYBA:" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "" -"Použití: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " - -msgid "plugins.importexport.onix30.description" -msgstr "Exportovat metadata monografie ve formátu ONIX 3.0" diff --git a/plugins/importexport/onix30/locale/da/locale.po b/plugins/importexport/onix30/locale/da/locale.po new file mode 100644 index 00000000000..fd2b1a646ab --- /dev/null +++ b/plugins/importexport/onix30/locale/da/locale.po @@ -0,0 +1,77 @@ +# Alexandra Fogtmann-Schulz , 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-10-01 08:01+0000\n" +"Last-Translator: Alexandra Fogtmann-Schulz \n" +"Language-Team: Danish \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "ONIX 3.0 monografi-eksport-plugin" + +msgid "plugins.importexport.onix30.description" +msgstr "Eksportér monografi-metadata i ONIX 3.0-format" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Anvendelse: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "FEJL:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Den angivne udgiversti, \"{$contextPath},\" findes ikke." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Kunne ikke skrive til filen \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "Ingen monografi matchede det angivne monografi-id \"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Monografier uden publiceringsformater vises ikke." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Vælg de monografier, der skal eksporteres" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Vælg en monografi, der skal eksporteres:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Eksportér" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Tilgængelige formater" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Ikke tilgængelige" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "ONIX status" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Gyldig" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Ugyldig" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Denne udgiver mangler nogle nødvendige oplysninger. Gå til Indstillinger for udgiver, og udfyld de manglende detaljer." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Adressat (modtager) af denne eksport" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Du kan lade dette felt være tomt og oprette en generel eksport...Dette vil " +"resultere i, at ONIX-eksporten ikke har nogen <Modtager> " +"sammensætning. " diff --git a/plugins/importexport/onix30/locale/da_DK/locale.po b/plugins/importexport/onix30/locale/da_DK/locale.po deleted file mode 100644 index 8b8243f3bb7..00000000000 --- a/plugins/importexport/onix30/locale/da_DK/locale.po +++ /dev/null @@ -1,76 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-11-27 19:05+0000\n" -"Last-Translator: Niels Erik Frederiksen \n" -"Language-Team: Danish \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "" -"Du kan lade dette felt være tomt og oprette en generel eksport...Dette vil " -"resultere i, at ONIX-eksporten ikke har nogen <Modtager> " -"sammensætning. " - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Adressat (modtager) af denne eksport" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "" -"Dette forlag mangler nogle nødvendige oplysninger. Gå til " -"Forlagsindstillinger , og udfyld de manglende detaljer." - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Ugyldig" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Gyldig" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "ONIX status" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Ikke tilgængelige" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Tilgængelige formater" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Eksportér" - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Vælg en monografi, der skal eksporteres:" - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Vælg de monografier, der skal eksporteres" - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Monografier uden publiceringsformater vises ikke." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "Ingen monografi matchede det angivne monografi-id \"{$monographId}\"." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Kunne ikke skrive til filen \"{$fileName}\"." - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "Den angivne forlagssti, \"{$contextPath},\" findes ikke." - -msgid "plugins.importexport.onix30.cliError" -msgstr "FEJL:" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "" -"Anvendelse: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " -"[monographId] " - -msgid "plugins.importexport.onix30.description" -msgstr "Eksportér monografi-metadata i ONIX 3.0-format" - -msgid "plugins.importexport.onix30.displayName" -msgstr "ONIX 3.0 monografi-eksport-plugin" diff --git a/plugins/importexport/onix30/locale/da_DK/locale.xml b/plugins/importexport/onix30/locale/da_DK/locale.xml deleted file mode 100644 index 4b4c8ef28bb..00000000000 --- a/plugins/importexport/onix30/locale/da_DK/locale.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - ONIX 3.0 Monograph Export Plugin - Eksporter monografi-metadata i ONIX 3.0-format - Usage: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] - FEJL: - Den angivne sti, "{$pressPath}," findes ikke. - Kunne ikke skrive til filen "{$fileName}". - Ingen monografi passede til det angivne monografi-ID "{$monographId}". - Monografier uden publiceringsformater vises ikke. - Vælg de monografier, der skal eksporteres - Vælg en monografi, der skal eksporteres: - Eksport - Tilgængelige formater - Ikke tilgængelig - ONIX Status - Gyldig - Ugyldig - Workflow > Produktion og udfyld de manglende oplysninger.]]> - Adressat (modtager) af denne eksport - - diff --git a/plugins/importexport/onix30/locale/de/locale.po b/plugins/importexport/onix30/locale/de/locale.po new file mode 100644 index 00000000000..706d4217074 --- /dev/null +++ b/plugins/importexport/onix30/locale/de/locale.po @@ -0,0 +1,81 @@ +# Pia Piontkowitz , 2021. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" +"PO-Revision-Date: 2021-10-21 11:07+0000\n" +"Last-Translator: Pia Piontkowitz \n" +"Language-Team: German \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "ONIX 3.0 Monographie-Export-Plugin" + +msgid "plugins.importexport.onix30.description" +msgstr "Exportiere die Monographie-Metadaten in das ONIX 3.0-Format" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Nutzung: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "FEHLER:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Der angegebene Verlags-Pfadname, \"{$contextPath}\" existiert nicht." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Die Datei \"{$fileName}\" konnte nicht geschrieben werden." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "Es gibt keine Monographie mit der Monographie-ID \"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "" +"Monographien, für die keine Publikationsformate angelegt wurden, können " +"nicht angezeigt werden." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Wähle Monographie für Export" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Wählen Sie eine Monographie für den Export aus:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exportieren" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Verfügbare Formate" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Nicht verfügbar" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "ONIX-Status" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Gültig" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Ungültig" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Bei den Verlagsangaben fehlen einige nötige Angaben. Bitte gehen Sie zu Verlagseinstellungen und ergänzen Sie die fehlenden " +"Angaben." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Adresse (Empfänger/in) für diesen Export" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Sie können dieses Feld leer lassen und einen allgemeinen Export erzeugen. " +"Dies führt dazu, dass der ONIX-Export keine/n <Empfänger/in> enthält. " diff --git a/plugins/importexport/onix30/locale/de_DE/locale.po b/plugins/importexport/onix30/locale/de_DE/locale.po deleted file mode 100644 index e34fdb63c85..00000000000 --- a/plugins/importexport/onix30/locale/de_DE/locale.po +++ /dev/null @@ -1,75 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" -"PO-Revision-Date: 2021-01-21 15:49+0000\n" -"Last-Translator: Heike Riegler \n" -"Language-Team: German \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.displayName" -msgstr "ONIX 3.0 Monografie-Export-Plugin" - -msgid "plugins.importexport.onix30.description" -msgstr "Exportiere die Monografie-Metadaten in das ONIX 3.0-Format" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "Nutzung: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " - -msgid "plugins.importexport.onix30.cliError" -msgstr "FEHLER:" - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "Der angegebene Verlags-Pfadname, \"{$contextPath}\" existiert nicht." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Die Datei \"{$fileName}\" konnte nicht geschrieben werden." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "Es gibt keine Monografie mit der Monografie-ID \"{$monographId}\"." - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Monografien, für die keine Publikationsformate angelegt wurden, können nicht angezeigt werden." - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Wählen Sie eine Monografie für den Export aus:" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Exportieren" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Verfügbare Formate" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Nicht verfügbar" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "ONIX-Status" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Gültig" - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Ungültig" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "" -"Bei den Verlagsangaben fehlen einige nötige Angaben. Bitte gehen Sie zu Verlagseinstellungen und ergänzen Sie die fehlenden " -"Angaben." - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Adresse (Empfänger/in) für diesen Export" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "Sie können dieses Feld leer lassen und einen allgemeinen Export erzeugen. Dies führt dazu, dass der ONIX-Export keine/n <Empfänger/in> enthält. " - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Wähle Monografie für Export" diff --git a/plugins/importexport/onix30/locale/en/locale.po b/plugins/importexport/onix30/locale/en/locale.po new file mode 100644 index 00000000000..b4e39831002 --- /dev/null +++ b/plugins/importexport/onix30/locale/en/locale.po @@ -0,0 +1,74 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" +"PO-Revision-Date: 2019-09-30T07:09:53-07:00\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "ONIX 3.0 Monograph Export Plugin" + +msgid "plugins.importexport.onix30.description" +msgstr "Export monograph metadata in the ONIX 3.0 format" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Usage: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "ERROR:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "The specified press path, \"{$contextPath},\" does not exist." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Could not write to the file \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "No monograph matched the specified monograph ID \"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Monographs with no publication formats are not shown." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Select monographs to export" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Select a monograph to export:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Export" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Available Formats" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Unavailable" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "ONIX Status" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Valid" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Invalid" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"This press is missing some required information. Please go to Press Settings and fill in the missing details." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Addressee (recipient) for this export" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"You may leave this field blank and create a general export. This will " +"result in the ONIX export having no <Addressee> composite. " diff --git a/plugins/importexport/onix30/locale/en_US/locale.po b/plugins/importexport/onix30/locale/en_US/locale.po deleted file mode 100644 index aa387eb2b4f..00000000000 --- a/plugins/importexport/onix30/locale/en_US/locale.po +++ /dev/null @@ -1,93 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-09-30T07:09:53-07:00\n" -"PO-Revision-Date: 2019-09-30T07:09:53-07:00\n" -"Language: \n" - -msgid "plugins.importexport.onix30.displayName" -msgstr "ONIX 3.0 Monograph Export Plugin" - -msgid "plugins.importexport.onix30.description" -msgstr "Export monograph metadata in the ONIX 3.0 format" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "Usage: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " - -msgid "plugins.importexport.onix30.cliError" -msgstr "ERROR:" - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "The specified press path, \"{$contextPath},\" does not exist." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Could not write to the file \"{$fileName}\"." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "No monograph matched the specified monograph ID \"{$monographId}\"." - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Monographs with no publication formats are not shown." - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Select monographs to export" - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Select a monograph to export:" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Export" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Available Formats" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Unavailable" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "ONIX Status" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Valid" - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Invalid" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "This press is missing some required information. Please go to Press Settings and fill in the missing details." - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Addressee (recipient) for this export" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "You may leave this field blank and create a general export. This will result in the ONIX export having no <Addressee> composite. " - -msgid "plugins.importExport.onix30.common.error.monographWithNoPublicationFormats" -msgstr "The submission with id: {$monographId} has no publication formats to attach to the ONIX message" - -msgid "plugins.importExport.onix30.common.error.exportFailed" -msgstr "The ONIX export failed" - -msgid "plugins.importexport.onix30.processFailed" -msgstr "The ONIX export failed" - -msgid "plugins.importexport.onix30.export.type.submission" -msgstr "Errors for submission" - -msgid "plugins.importexport.onix30.export.type.any" -msgstr "Generic Errors" - -msgid "plugins.importexport.onix30.export.completed" -msgstr "The process is complete" - -msgid "plugins.importexport.onix30.export.completed.downloadFile" -msgstr "You can download the exported file from here" - -msgid "plugins.importexport.native.onix30.download.results" -msgstr "Download ONIX file" diff --git a/plugins/importexport/onix30/locale/es/locale.po b/plugins/importexport/onix30/locale/es/locale.po new file mode 100644 index 00000000000..836adc9a965 --- /dev/null +++ b/plugins/importexport/onix30/locale/es/locale.po @@ -0,0 +1,79 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:27+00:00\n" +"PO-Revision-Date: 2020-11-30 18:48+0000\n" +"Last-Translator: Jordi LC \n" +"Language-Team: Spanish \n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Complemento de exportación de monografías ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Exportar metadatos de monografías en formato ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Uso: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "ERROR:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "La ruta editorial especificada, \"{$contextPath},\" no existe." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "No se pudo escribir en el fichero \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Ninguna monografía coincide con el ID de monografías indicado " +"\"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "No se muestran las monografías sin formato de publicación." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Seleccionar monografías para exportar" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Seleccionar una monografía para exportar:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exportar" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Formatos disponibles" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "No disponible" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Estado ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Válido" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "No válido" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"A esta publicación le falta información necesaria. Vaya a ajustes editoriales y complete los datos que faltan." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Destinatario (receptor/a) de esta exportación" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Puede dejar este campo en blanco y crear una exportación general. Esto " +"supondrá que la exportación ONIX no tenga <Destinatario%gt; compuesto. " diff --git a/plugins/importexport/onix30/locale/es_ES/locale.po b/plugins/importexport/onix30/locale/es_ES/locale.po deleted file mode 100644 index d1de6b76f13..00000000000 --- a/plugins/importexport/onix30/locale/es_ES/locale.po +++ /dev/null @@ -1,77 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:27+00:00\n" -"PO-Revision-Date: 2020-11-30 18:48+0000\n" -"Last-Translator: Jordi LC \n" -"Language-Team: Spanish \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.displayName" -msgstr "Complemento de exportación de monografías ONIX 3.0" - -msgid "plugins.importexport.onix30.description" -msgstr "Exportar metadatos de monografías en formato ONIX 3.0" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "" -"Uso: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " - -msgid "plugins.importexport.onix30.cliError" -msgstr "ERROR:" - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "La ruta editorial especificada, \"{$contextPath},\" no existe." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "No se pudo escribir en el fichero \"{$fileName}\"." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "Ninguna monografía coincide con el ID de monografías indicado \"{$monographId}\"." - -msgid "plugins.importexport.onix30.noFormats" -msgstr "No se muestran las monografías sin formato de publicación." - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Seleccionar una monografía para exportar:" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Exportar" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Formatos disponibles" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "No disponible" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "Estado ONIX" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Válido" - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "No válido" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "" -"A esta publicación le falta información necesaria. Vaya a " -"ajustes editoriales y complete los datos que faltan." - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Destinatario (receptor/a) de esta exportación" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "" -"Puede dejar este campo en blanco y crear una exportación general. Esto " -"supondrá que la exportación ONIX no tenga <Destinatario%gt; compuesto. " - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Seleccionar monografías para exportar" diff --git a/plugins/importexport/onix30/locale/fi/locale.po b/plugins/importexport/onix30/locale/fi/locale.po new file mode 100644 index 00000000000..609e17af614 --- /dev/null +++ b/plugins/importexport/onix30/locale/fi/locale.po @@ -0,0 +1,76 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-12-11 20:34+0000\n" +"Last-Translator: Antti-Jussi Nygård \n" +"Language-Team: Finnish \n" +"Language: fi_FI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "ONIX 3.0 -vientilisäosa" + +msgid "plugins.importexport.onix30.description" +msgstr "Vie teosten kuvailutietoja ONIX 3.0 -muodossa" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Käyttö: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "VIRHE:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Annettua julkaisijan sivuston polkua, \"{$contextPath}\", ei löydy." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Tiedostoon \"{$fileName}\" ei voitu kirjoittaa." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Yksikään teos ei vastannut määritettyä teoksen tunnistetta " +"\"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Teoksia joihin ei ole liitetty yhtään julkaisumuotoa ei näytetä." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Valitse vietävät teokset" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Valitse vietävä teos:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Vie" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Saatavilla olevat muodot" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Ei saatavilla" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "ONIX-status" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Kelvollinen" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Virheellinen" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Julkaisijan asetuksista puuttuu tarvittavia tietoja. Siirry julkaisijan asetuksiin ja täytä puuttuvat tiedot." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Viennin vastaanottaja" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Voit jättää kentän tyhjäksi ja luoda yleisen vientitiedoston. Tässä " +"tapauksessa ONIX-viennin tuloksista puuttuu <Addressee> tieto. " diff --git a/plugins/importexport/onix30/locale/fi_FI/locale.po b/plugins/importexport/onix30/locale/fi_FI/locale.po deleted file mode 100644 index f2f9df59b41..00000000000 --- a/plugins/importexport/onix30/locale/fi_FI/locale.po +++ /dev/null @@ -1,76 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-11 20:34+0000\n" -"Last-Translator: Antti-Jussi Nygård \n" -"Language-Team: Finnish \n" -"Language: fi_FI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "" -"Voit jättää kentän tyhjäksi ja luoda yleisen vientitiedoston. Tässä " -"tapauksessa ONIX-viennin tuloksista puuttuu <Addressee> tieto. " - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Viennin vastaanottaja" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "" -"Julkaisijan asetuksista puuttuu tarvittavia tietoja. Siirry julkaisijan asetuksiin ja täytä puuttuvat tiedot." - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Virheellinen" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Kelvollinen" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "ONIX-status" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Ei saatavilla" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Saatavilla olevat muodot" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Vie" - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Valitse vietävä teos:" - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Valitse vietävät teokset" - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Teoksia joihin ei ole liitetty yhtään julkaisumuotoa ei näytetä." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "" -"Yksikään teos ei vastannut määritettyä teoksen tunnistetta \"{$monographId}\"" -"." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Tiedostoon \"{$fileName}\" ei voitu kirjoittaa." - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "Annettua julkaisijan sivuston polkua, \"{$contextPath}\", ei löydy." - -msgid "plugins.importexport.onix30.cliError" -msgstr "VIRHE:" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "" -"Käyttö: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " - -msgid "plugins.importexport.onix30.description" -msgstr "Vie teosten kuvailutietoja ONIX 3.0 -muodossa" - -msgid "plugins.importexport.onix30.displayName" -msgstr "ONIX 3.0 -vientilisäosa" diff --git a/plugins/importexport/onix30/locale/fr_CA/locale.po b/plugins/importexport/onix30/locale/fr_CA/locale.po new file mode 100644 index 00000000000..5a4b45fceb2 --- /dev/null +++ b/plugins/importexport/onix30/locale/fr_CA/locale.po @@ -0,0 +1,8 @@ +# Weblate Admin , 2023. +msgid "" +msgstr "" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" diff --git a/plugins/importexport/onix30/locale/fr_FR/locale.po b/plugins/importexport/onix30/locale/fr_FR/locale.po new file mode 100644 index 00000000000..76a938c7641 --- /dev/null +++ b/plugins/importexport/onix30/locale/fr_FR/locale.po @@ -0,0 +1,81 @@ +# Weblate Admin , 2023. +# Rudy Hahusseau , 2023. +# Germán Huélamo Bautista , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-07-30 17:58+0000\n" +"Last-Translator: Germán Huélamo Bautista \n" +"Language-Team: French \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Plugin d'export des monographies en ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Exporter les métadonnées de monographie au format ONIX 3.0" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Le chemin indiqué « {$contextPath} » n'existe pas." + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Utilisation : {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "Erreur :" + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Impossible d'écrire dans le fichier « {$fileName} »." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Aucune monographie ne correspond à l'ID de monographie indiqué « " +"{$monographId} »." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Les monographies sans formats de publication ne sont pas affichées." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Sélectionnez les monographies à exporter" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Sélectionnez une monographie à exporter :" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exporter" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Formats disponibles" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Non disponible" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Statut ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Valide" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Invalide" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Il manque à cette presse certaines informations requises. Merci d'accéder " +"aux Paramètres de la presse et de compléter les " +"données manquantes." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Destinataire de cet export" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Vous pouvez laisser ce champ vide et créer un export global. Cet export " +"n'aura alors pas d'élément <Addressee>. " diff --git a/plugins/importexport/onix30/locale/gl/locale.po b/plugins/importexport/onix30/locale/gl/locale.po new file mode 100644 index 00000000000..dd8bd803598 --- /dev/null +++ b/plugins/importexport/onix30/locale/gl/locale.po @@ -0,0 +1,74 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-20 08:54+0000\n" +"Last-Translator: Real Academia Galega \n" +"Language-Team: Galician \n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Complemento de exportación de monografías ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Exportar metadatos de monografías no formato ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Uso: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "ERROR:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "A ruta editorial especificada, \"{$contextPath},\" non existe." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Non se puido escribir no ficheiro \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "Ningunha monografía coincide co ID especificado \"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Non se amosan monografías sen formatos de publicación." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Seleccionar monografías para exportar" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Seleccionar unha monografía para exportar:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exportar" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Formatos dispoñibeis" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Non dispoñibel" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Estado ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Válido" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Non válido" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"A esta editorial faltalle algunha información requirida. Vai a Configuración da Editorial e complete os datos que faltan." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Destinatario/a (receptor/a) desta exportación" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Pode deixar este campo en branco e crear unha exportación xeral. Isto " +"provocará que a exportación ONIX non teña <Destinatario> composto. " diff --git a/plugins/importexport/onix30/locale/hr/locale.po b/plugins/importexport/onix30/locale/hr/locale.po new file mode 100644 index 00000000000..001d36374f9 --- /dev/null +++ b/plugins/importexport/onix30/locale/hr/locale.po @@ -0,0 +1,78 @@ +# Karla Zapalac , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-01-28 18:48+0000\n" +"Last-Translator: Karla Zapalac \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Dodatak za izvoz monografije ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Izvezi metapodatke monografije u ONIX 3.0 format" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Korištenje: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "GREŠKA:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Navedeni naziv putanje tiska, \"{$contextPath}\" ne postoji." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Datoteka \"{$fileName}\" ne može biti napisana." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "Ne postoji monografija s ID-om monografije \"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Monografije za koje nema formata publikacije, ne mogu biti prikazane." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Odaberi monografije za izvoz" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Odaberi monografiju za izvoz:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Izvoz" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Dostupni formati" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Nedostupno" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "ONIX status" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Važeće" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Nevažeće" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Neke potrebne informacije nedostaju u podacima o izdavaču. Molimo idite na " +"Postavke izdavača i ispunite informacije koje " +"nedostaju." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Adresa (primatelj/ica) za ovaj izvoz" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Ovo polje možete ostaviti praznim i generirati opći izvoz. To rezultira time " +"da ONIX izvoz nema /n <Primatelja/in> " diff --git a/plugins/importexport/onix30/locale/hu/locale.po b/plugins/importexport/onix30/locale/hu/locale.po new file mode 100644 index 00000000000..9022e10e975 --- /dev/null +++ b/plugins/importexport/onix30/locale/hu/locale.po @@ -0,0 +1,80 @@ +# Fülöp Tiffany , 2021, 2022. +msgid "" +msgstr "" +"PO-Revision-Date: 2022-03-31 11:57+0000\n" +"Last-Translator: Fülöp Tiffany \n" +"Language-Team: Hungarian \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "ONIX 3.0 kiadvány exportáló bővítmény" + +msgid "plugins.importexport.onix30.description" +msgstr "Kiadvány metaadatainak exportálása ONIX 3.0 formátumban" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Használat: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "HIBA:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "A megadott útvonal \"{$contextPath},\" nem létezik." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Nem sikerült írni a(z) \"{$fileName}\" fájlba." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"A megadott kiadványazonosítónak ( \"{$monographId}\" ) nem felel meg " +"egyetlen kiadvány sem." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "" +"Azok a kiadványok, amelyeknek nincs kiadványformátumuk nem jelennek meg." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Exportálandó kiadványok kiválasztása" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Válassza ki az exportálandó kiadványt:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exportálás" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Elérhető formátumok" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Nem elérhető" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "ONIX státusz" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Érvényes" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Érvénytelen" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Hiányzik néhány szükséges információ. Kérjük, menjen a Kiadó beállítások oldalra, és töltse ki a hiányzó adatokat." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Az export címzettje (címzett)" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Ezt a mezőt üresen is hagyhatja és létrehozhat egy általános exportot. Ez " +"azt eredményezi, hogy az ONIX-export nem tartalmaz majd <Addressee> " +"összetevőt. " diff --git a/plugins/importexport/onix30/locale/mk/locale.po b/plugins/importexport/onix30/locale/mk/locale.po new file mode 100644 index 00000000000..1fff1473a83 --- /dev/null +++ b/plugins/importexport/onix30/locale/mk/locale.po @@ -0,0 +1,78 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-06 17:52+0000\n" +"Last-Translator: Blagoja Grozdanovski \n" +"Language-Team: Macedonian \n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Приклучок за извоз на монографија ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Извоз на метаподатоци за монографија во формат ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Употреба: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "ГРЕШКА:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Наведената патека за изданието, \"{$contextPath}\" не постои." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Не може да се пишува во датотеката „{$fileName}“." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Ниту една монографија не одговара на наведениот монографската идентификација " +"\"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Не се прикажуваат монографии без формати на објавување." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Изберете монографии за извоз" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Изберете монографија за извоз:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Извоз" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Достапни формати" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Недостапно" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Статус на ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Валидно" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Невалидно" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"На ова издание недостасуваат некои потребни информации. Одете на Притиснете Поставки и пополнете ги деталите што " +"недостасуваат." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Наведете (примател) за овој извоз" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Може да го оставите ова поле празно и да создадете општ извоз. Ова ќе " +"резултира во извозот на ONIX да нема <Addressee> composite. " diff --git a/plugins/importexport/onix30/locale/mk_MK/locale.po b/plugins/importexport/onix30/locale/mk_MK/locale.po deleted file mode 100644 index d0acd971f6a..00000000000 --- a/plugins/importexport/onix30/locale/mk_MK/locale.po +++ /dev/null @@ -1,77 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-06 17:52+0000\n" -"Last-Translator: Blagoja Grozdanovski \n" -"Language-Team: Macedonian \n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "" -"Може да го оставите ова поле празно и да создадете општ извоз. Ова ќе " -"резултира во извозот на ONIX да нема <Addressee> composite. " - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Наведете (примател) за овој извоз" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "" -"На ова издание недостасуваат некои потребни информации. Одете на Притиснете Поставки и пополнете ги деталите што недостасуваат." - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Невалидно" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Валидно" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "Статус на ONIX" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Недостапно" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Достапни формати" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Извоз" - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Изберете монографија за извоз:" - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Изберете монографии за извоз" - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Не се прикажуваат монографии без формати на објавување." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "" -"Ниту една монографија не одговара на наведениот монографската идентификација " -"\"{$monographId}\"." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Не може да се пишува во датотеката „{$fileName}“." - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "Наведената патека за изданието, \"{$contextPath}\" не постои." - -msgid "plugins.importexport.onix30.cliError" -msgstr "ГРЕШКА:" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "" -"Употреба: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId]" -" " - -msgid "plugins.importexport.onix30.description" -msgstr "Извоз на метаподатоци за монографија во формат ONIX 3.0" - -msgid "plugins.importexport.onix30.displayName" -msgstr "Приклучок за извоз на монографија ONIX 3.0" diff --git a/plugins/importexport/onix30/locale/nb/locale.po b/plugins/importexport/onix30/locale/nb/locale.po new file mode 100644 index 00000000000..648aa685882 --- /dev/null +++ b/plugins/importexport/onix30/locale/nb/locale.po @@ -0,0 +1,76 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-01-20 02:01+0000\n" +"Last-Translator: Eirik Hanssen \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "ONIX 3.0 monografi-eksport-programtillegg" + +msgid "plugins.importexport.onix30.description" +msgstr "Eksporter monografi-metadata i ONIX 3.0-format" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Bruk: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "FEIL:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Utgiverstien, \"{$contextPath},\" finnes ikke." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Kunne ikke skrive til filen \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Ingen monografi samsvarte med den spesifiserte monografi-ID-en " +"\"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Monografier uten publiseringsformater vises ikke." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Velg monografier som skal eksporteres" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Velg en monografi som skal eksporteres:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Eksporter" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Tilgjengelige formater" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Ikke tilgjengelig" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "ONIX status" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Gyldig" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Ugyldig" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Denne utgiveren mangler nødvendig informasjon. Gå til Utgiverinnstilliger og legg inn den manglende informasjonen." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Adressat (mottaker) av denne eksporten" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Du kan la dette feltet være tomt og opprette en generell eksport ... Dette " +"vil føre til at ONIX-eksporten ikke har noen <Mottaker>-sammensetning. " diff --git a/plugins/importexport/onix30/locale/nb_NO/locale.po b/plugins/importexport/onix30/locale/nb_NO/locale.po deleted file mode 100644 index 301d3252579..00000000000 --- a/plugins/importexport/onix30/locale/nb_NO/locale.po +++ /dev/null @@ -1,76 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-01-20 02:01+0000\n" -"Last-Translator: Eirik Hanssen \n" -"Language-Team: Norwegian Bokmål \n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "" -"Du kan la dette feltet være tomt og opprette en generell eksport ... Dette " -"vil føre til at ONIX-eksporten ikke har noen <Mottaker>-sammensetning. " - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Adressat (mottaker) av denne eksporten" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "" -"Denne utgiveren mangler nødvendig informasjon. Gå til Utgiverinnstilliger og legg inn den manglende informasjonen." - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Ugyldig" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Gyldig" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "ONIX status" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Ikke tilgjengelig" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Tilgjengelige formater" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Eksporter" - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Velg en monografi som skal eksporteres:" - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Velg monografier som skal eksporteres" - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Monografier uten publiseringsformater vises ikke." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "" -"Ingen monografi samsvarte med den spesifiserte monografi-ID-en \"" -"{$monographId}\"." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Kunne ikke skrive til filen \"{$fileName}\"." - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "Utgiverstien, \"{$contextPath},\" finnes ikke." - -msgid "plugins.importexport.onix30.cliError" -msgstr "FEIL:" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "" -"Bruk: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " - -msgid "plugins.importexport.onix30.description" -msgstr "Eksporter monografi-metadata i ONIX 3.0-format" - -msgid "plugins.importexport.onix30.displayName" -msgstr "ONIX 3.0 monografi-eksport-programtillegg" diff --git a/plugins/importexport/onix30/locale/pl/locale.po b/plugins/importexport/onix30/locale/pl/locale.po new file mode 100644 index 00000000000..5e1eb640936 --- /dev/null +++ b/plugins/importexport/onix30/locale/pl/locale.po @@ -0,0 +1,78 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-12-01 14:05+0000\n" +"Last-Translator: rl \n" +"Language-Team: Polish \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Wtyczka Eksportu Monografii ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Eksportuj metadane monografii do formatu ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Zastosowanie: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "BŁĄD:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Określona ścieżka wydawnictwa \"{$contextPath},\"nie istnieje." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Nie da się wpisać do pliku \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Brak pasujących monografii do podanego kodu identyfikacyjnego monografii " +"\"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Monografie bez formatu publikacji się nie ukazują." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Wybierz monografię do eksportu" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Wybierz monografię do eksportu:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Do eksportu" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Dostępne formaty" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Niedostępny" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Status ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Ważny" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Nieważny" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Brakuje wymaganych informacji. Proszę przejdź do Ustawienia wydania i uzupełnij brakujące szczegóły." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Adresat (odbiorca) tego eksportu" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Możesz zostawić to pole puste i stworzyć ogólny eksport. Poskutkuje to " +"brakiem kompozytu <Addressee> w eksporcie ONIX. " diff --git a/plugins/importexport/onix30/locale/pl_PL/locale.po b/plugins/importexport/onix30/locale/pl_PL/locale.po deleted file mode 100644 index 395ecc9adcb..00000000000 --- a/plugins/importexport/onix30/locale/pl_PL/locale.po +++ /dev/null @@ -1,78 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-12-01 14:05+0000\n" -"Last-Translator: rl \n" -"Language-Team: Polish \n" -"Language: pl_PL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "" -"Możesz zostawić to pole puste i stworzyć ogólny eksport. Poskutkuje to " -"brakiem kompozytu <Addressee> w eksporcie ONIX. " - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Adresat (odbiorca) tego eksportu" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "" -"Brakuje wymaganych informacji. Proszę przejdź do " -"Ustawienia wydania i uzupełnij brakujące szczegóły." - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Nieważny" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Ważny" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "Status ONIX" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Niedostępny" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Dostępne formaty" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Do eksportu" - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Wybierz monografię do eksportu:" - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Wybierz monografię do eksportu" - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Monografie bez formatu publikacji się nie ukazują." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "" -"Brak pasujących monografii do podanego kodu identyfikacyjnego monografii \"" -"{$monographId}\"." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Nie da się wpisać do pliku \"{$fileName}\"." - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "Określona ścieżka wydawnictwa \"{$contextPath},\"nie istnieje." - -msgid "plugins.importexport.onix30.cliError" -msgstr "BŁĄD:" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "" -"Zastosowanie: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " -"[monographId] " - -msgid "plugins.importexport.onix30.description" -msgstr "Eksportuj metadane monografii do formatu ONIX 3.0" - -msgid "plugins.importexport.onix30.displayName" -msgstr "Wtyczka Eksportu Monografii ONIX 3.0" diff --git a/plugins/importexport/onix30/locale/pt_BR/locale.po b/plugins/importexport/onix30/locale/pt_BR/locale.po index 35589c5761c..1449aaf16d1 100644 --- a/plugins/importexport/onix30/locale/pt_BR/locale.po +++ b/plugins/importexport/onix30/locale/pt_BR/locale.po @@ -11,66 +11,66 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.9.1\n" -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "" -"Você pode deixar esse campo em branco e criar uma exportação geral. Isso " -"resultará na exportação do ONIX sem composição do <Destinatário>. " +msgid "plugins.importexport.onix30.displayName" +msgstr "Plugin de exportação de monografia ONIX 3.0" -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Destinatário (receptor) para esta exportação" +msgid "plugins.importexport.onix30.description" +msgstr "Exportar metadados da monografia no formato ONIX 3.0" -msgid "plugins.importexport.onix30.pressMissingFields" +msgid "plugins.importexport.onix30.cliUsage" msgstr "" -"Esta editora está faltando algumas informações necessárias. Vá para Configurações da Editora e preencha os detalhes ausentes." +"Uso: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Inválido" +msgid "plugins.importexport.onix30.cliError" +msgstr "ERRO:" -msgid "plugins.importexport.onix30.formatValid" -msgstr "Válido" +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "O caminho da editora especificado \"{$contextPath}\" não existe." -msgid "plugins.importexport.onix30.validityStatus" -msgstr "Status ONIX" +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Não foi possível gravar no arquivo \"{$fileName}\"." -msgid "plugins.importexport.onix30.unavailable" -msgstr "Indisponível" +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Nenhuma monografia corresponde a monografia ID \"{$monographId}\" " +"especificada." -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Formatos disponíveis" +msgid "plugins.importexport.onix30.noFormats" +msgstr "Monografias sem formato de publicação não são mostradas." -msgid "plugins.importexport.onix30.exportButton" -msgstr "Exportar" +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Selecione monografias para exportar" msgid "plugins.importexport.onix30.selectMonograph" msgstr "Selecione uma monografia para exportar:" -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Selecione monografias para exportar" +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exportar" -msgid "plugins.importexport.onix30.noFormats" -msgstr "Monografias sem formato de publicação não são mostradas." +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Formatos disponíveis" -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "" -"Nenhuma monografia corresponde a monografia ID \"{$monographId}\" " -"especificada." +msgid "plugins.importexport.onix30.unavailable" +msgstr "Indisponível" -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Não foi possível gravar no arquivo \"{$fileName}\"." +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Status ONIX" -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "O caminho da editora especificado \"{$contextPath}\" não existe." +msgid "plugins.importexport.onix30.formatValid" +msgstr "Válido" -msgid "plugins.importexport.onix30.cliError" -msgstr "ERRO:" +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Inválido" -msgid "plugins.importexport.onix30.cliUsage" +msgid "plugins.importexport.onix30.pressMissingFields" msgstr "" -"Uso: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " +"Esta editora está faltando algumas informações necessárias. Vá para Configurações da Editora e preencha os detalhes ausentes." -msgid "plugins.importexport.onix30.description" -msgstr "Exportar metadados da monografia no formato ONIX 3.0" +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Destinatário (receptor) para esta exportação" -msgid "plugins.importexport.onix30.displayName" -msgstr "Plugin de exportação de monografia ONIX 3.0" +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Você pode deixar esse campo em branco e criar uma exportação geral. Isso " +"resultará na exportação do ONIX sem composição do <Destinatário>. " diff --git a/plugins/importexport/onix30/locale/pt_PT/locale.po b/plugins/importexport/onix30/locale/pt_PT/locale.po new file mode 100644 index 00000000000..9647a35c6ac --- /dev/null +++ b/plugins/importexport/onix30/locale/pt_PT/locale.po @@ -0,0 +1,76 @@ +# Carla Marques , 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-02-27 16:10+0000\n" +"Last-Translator: Carla Marques \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Plugin Exportação de Monografias ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Exportar metadados do livro em formato ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Uso: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "ERRO:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "O caminho da editora especificado, \"{$contextPath},\" não existe." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Não foi possível gravar no ficheiro \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Nenhum livro corresponde ao ID de livro especificado \"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Livros sem formatos de publicação não são mostrados." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Selecionar livros para exportar" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Selecione um livro para exportar:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exportar" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Indisponível" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Estado ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Válido" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Inválido" + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Destinatário (recetor) para esta exportação" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Pode deixar este campo em branco e criar uma exportação geral. Isto " +"resultará numa exportação ONIX sem composição de <Destinatário>. " + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Formatos Disponíveis" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Falta alguma informação obrigatória a esta editora. Vá a Configurações da Editora e preencha os detalhes em falta." diff --git a/plugins/importexport/onix30/locale/ro/locale.po b/plugins/importexport/onix30/locale/ro/locale.po new file mode 100644 index 00000000000..629bc7d0529 --- /dev/null +++ b/plugins/importexport/onix30/locale/ro/locale.po @@ -0,0 +1,79 @@ +# Elena-Ionela Buhalo , 2024. +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-10 16:39+0000\n" +"Last-Translator: Elena-Ionela Buhalo \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.18.2\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "ONIX 3.0 Plugin de export de monografii" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Utilizare: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "EROARE:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Ruta de presă specificată, \"{$contextPath},\" nu există." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Nicio monografie nu se potrivește ID-ului monogarfiei specificat " +"„{$monographId}”." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Monografiile fără niciun format de publicație nu sunt afișate." + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Selectați o monografie de exportat:" + +msgid "plugins.importexport.onix30.description" +msgstr "Exportați metadatele monografiei în format ONIX 3.0" + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Nu s-a putut scrie în fișierul „{$fileName}”." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Selecare monografii de exportat" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Exportare" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Formate disponibile" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Indisponibil" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Stare ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Valid" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Invalid" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Din acestă presă lipsesc unele informații. Accesați Apăsați Setări și completați detalii lipsă." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Destinatarul (receptorul) acestui export" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Puteți lăsa acest câmp necompletat și crea un export general. Acest lucru va " +"rezulta în exportul ONIX fără <Addressee> compozit. " diff --git a/plugins/importexport/onix30/locale/ru/locale.po b/plugins/importexport/onix30/locale/ru/locale.po new file mode 100644 index 00000000000..b5d30364d74 --- /dev/null +++ b/plugins/importexport/onix30/locale/ru/locale.po @@ -0,0 +1,79 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-16 19:22+0000\n" +"Last-Translator: Sergei Yukhimets \n" +"Language-Team: Russian \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Модуль экспорта монографий ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Экспортирует монографии в формате ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Использование: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "ОШИБКА:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Указанный путь издательства «{$contextPath}» не существует." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Не могu записать в файл \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Ни одна из монографий не соответствовала указанному идентификатору " +"монографии \"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Монографии, не имеющие форматов публикации, не показываются." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Выберите монографии для экспорта" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Выберите монографию для экспорта:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Экспорт" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Доступные форматы" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Недоступно" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Статус ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Допустимо(ый)" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Не допустимо(ый)" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"У издательства отсутствует некоторая необходимая информация. Пожалуйста, " +"перейдите к Настройки издательства и заполните " +"недостающие данные." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Адресат (получатель) для данного экспорта" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Вы можете оставить это поле пустым и создать общий экспорт. Это приведет к " +"тому, что ONIX экспорт не будет иметь <Адресата>. " diff --git a/plugins/importexport/onix30/locale/ru_RU/locale.po b/plugins/importexport/onix30/locale/ru_RU/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/importexport/onix30/locale/ru_RU/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/importexport/onix30/locale/sl/locale.po b/plugins/importexport/onix30/locale/sl/locale.po new file mode 100644 index 00000000000..696f61d5422 --- /dev/null +++ b/plugins/importexport/onix30/locale/sl/locale.po @@ -0,0 +1,80 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-02-08T17:42:27+00:00\n" +"PO-Revision-Date: 2020-02-13 15:43+0000\n" +"Last-Translator: Primož Svetek \n" +"Language-Team: Slovenian \n" +"Language: sl_SI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Izvozni vtičnik Monograph ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Izvozi metapodatke monografske publikacije v formatu ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Uporaba: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "NAPAKA:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Določena pot tiska \"{$contextPath}\" ne obstaja." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "V datoteko \"{$fileName}\" ni bilo mogoče pisati." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Monografske publikacije, ki bi se ujemala z določenim ID monografske " +"publikacije\"{$monographId}\" ni bilo mogoče najti." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Monografske publikacije brez formatov publikacij niso prikazane." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Izberi monografijo za izvoz" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Izberite monografsko publikacijo za izvoz:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Izvozi" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Formati na voljo" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Ni na voljo" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Stanje vtičnika ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Veljavno" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Neveljaven" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Tej tiskovini manjka nekaj zahtevanih podatkov. Pojdite v Nastavitve > Potek " +"dela > Produkcija in izpolnite manjkajoče podrobnosti." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Naslovnik (prejemnik) te izvozne datoteke" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"To polje lahko pustite prazno in ustvarite splošni izvoz. V tem primeru " +"izvoz ONIX ne bo vseboval komponente <Addressee>. " diff --git a/plugins/importexport/onix30/locale/sl_SI/locale.po b/plugins/importexport/onix30/locale/sl_SI/locale.po deleted file mode 100644 index 654802d8a30..00000000000 --- a/plugins/importexport/onix30/locale/sl_SI/locale.po +++ /dev/null @@ -1,73 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-02-08T17:42:27+00:00\n" -"PO-Revision-Date: 2020-02-13 15:43+0000\n" -"Last-Translator: Primož Svetek \n" -"Language-Team: Slovenian \n" -"Language: sl_SI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.displayName" -msgstr "Izvozni vtičnik Monograph ONIX 3.0" - -msgid "plugins.importexport.onix30.description" -msgstr "Izvozi metapodatke monografske publikacije v formatu ONIX 3.0" - -msgid "plugins.importexport.onix30.cliUsage" -msgstr "Uporaba: {$scriptName} {$pluginName} [xmlFileName] [pressPath] [monographId] " - -msgid "plugins.importexport.onix30.cliError" -msgstr "NAPAKA:" - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "Določena pot tiska \"{$contextPath}\" ne obstaja." - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "V datoteko \"{$fileName}\" ni bilo mogoče pisati." - -msgid "plugins.importexport.onix30.export.error.monographNotFound" -msgstr "Monografske publikacije, ki bi se ujemala z določenim ID monografske publikacije\"{$monographId}\" ni bilo mogoče najti." - -msgid "plugins.importexport.onix30.noFormats" -msgstr "Monografske publikacije brez formatov publikacij niso prikazane." - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Izberite monografsko publikacijo za izvoz:" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Izvozi" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Formati na voljo" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Ni na voljo" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "Stanje vtičnika ONIX" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Veljavno" - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Neveljaven" - -msgid "plugins.importexport.onix30.pressMissingFields" -msgstr "Tej tiskovini manjka nekaj zahtevanih podatkov. Pojdite v Nastavitve > Potek dela > Produkcija in izpolnite manjkajoče podrobnosti." - -msgid "plugins.importexport.onix30.form.addresseeField" -msgstr "Naslovnik (prejemnik) te izvozne datoteke" - -msgid "plugins.importexport.onix30.form.addresseeField.tip" -msgstr "To polje lahko pustite prazno in ustvarite splošni izvoz. V tem primeru izvoz ONIX ne bo vseboval komponente <Addressee>. " - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Izberi monografijo za izvoz" diff --git a/plugins/importexport/onix30/locale/tr/locale.po b/plugins/importexport/onix30/locale/tr/locale.po new file mode 100644 index 00000000000..c6ece69deb3 --- /dev/null +++ b/plugins/importexport/onix30/locale/tr/locale.po @@ -0,0 +1,76 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-21 21:13+0000\n" +"Last-Translator: Uğur Koçak \n" +"Language-Team: Turkish \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "ONIX 3.0 Risale Dışa Aktarma Eklentisi" + +msgid "plugins.importexport.onix30.description" +msgstr "Risale üst verilerini ONIX 3.0 biçiminde dışa aktarın" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Kullanım: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "HATA:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Belirtilen yayınevi yolu. \"{$contextPath}\" mevcut değil." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "\"{$fileName}\" dosyasına yazılamadı." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "Belirtilen risale kimliği \"{$monographId}\" ile eşleşen risale yok." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Yayın biçimi olmayan risaleler gösterilmemiştir." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Dışa aktarılacak risaleleri seçin" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Dışa aktarmak için bir risale seçin:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Dışa Aktar" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Geçerli Biçimler" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Kullanım dışı" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "ONIX Durumu" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Geçerli" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Geçersiz" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Bu yayınevinde bazı gerekli bilgiler eksik. Lütfen Yayınevi Ayarları'na gidin ve eksik ayrıntıları doldurun." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Bu dışa aktarım için muhataplar (alıcı)" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Bu alanı boş bırakabilir ve genel bir dışa aktarma oluşturabilirsiniz. Bu, " +"ONIX dışa aktarımının hiçbir birleşik <alıcı> olmamasına neden " +"olacaktır. " diff --git a/plugins/importexport/onix30/locale/uk/locale.po b/plugins/importexport/onix30/locale/uk/locale.po new file mode 100644 index 00000000000..891ff33ad0f --- /dev/null +++ b/plugins/importexport/onix30/locale/uk/locale.po @@ -0,0 +1,79 @@ +# Petro Bilous , 2022, 2023. +msgid "" +msgstr "" +"PO-Revision-Date: 2023-06-01 22:03+0000\n" +"Last-Translator: Petro Bilous \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.13.1\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "Плагін експорту монографій ONIX 3.0" + +msgid "plugins.importexport.onix30.description" +msgstr "Експортувати метадані монографії у формат ONIX 3.0" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" +"Використання: {$scriptName} {$pluginName} [xmlFileName] [pressPath] " +"[monographId] " + +msgid "plugins.importexport.onix30.cliError" +msgstr "ПОМИЛКА:" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "Указаний шлях е-видавництва {$contextPath} не існує." + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "Не вдалося записати у файл \"{$fileName}\"." + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" +"Відсутні монографії, позначені вказаним ID монографії \"{$monographId}\"." + +msgid "plugins.importexport.onix30.noFormats" +msgstr "Монографії без форматів публікації не показано." + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "Оберіть монографії для експорту" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "Оберіть монографію для експорту:" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "Експортувати" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "Доступні формати" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "Недоступно" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "Статус ONIX" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "Дійсно" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "Недійсно" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" +"Цьому е-видавництву не вистачає певної необхідної інформації. Будь ласка, " +"перейдіть до Налаштування е-видавництва і введіть " +"відсутні дані." + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "Адресат (отримувач) для цього експорту" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" +"Ви можете залишити це поле пустим і створити загальний експорт. Це призведе " +"до того, що експорт в ONIX не матиме складової <Addressee>. " diff --git a/plugins/importexport/onix30/locale/uk_UA/locale.po b/plugins/importexport/onix30/locale/uk_UA/locale.po deleted file mode 100644 index 6e34ff2578b..00000000000 --- a/plugins/importexport/onix30/locale/uk_UA/locale.po +++ /dev/null @@ -1,49 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-04-27 23:20+0000\n" -"Last-Translator: Fylypovych Georgii \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.9.1\n" - -msgid "plugins.importexport.onix30.displayName" -msgstr "Плагін Експорту Монографій ONIX 3.0" - -msgid "plugins.importexport.onix30.formatInvalid" -msgstr "Недійсно" - -msgid "plugins.importexport.onix30.formatValid" -msgstr "Дійсно" - -msgid "plugins.importexport.onix30.validityStatus" -msgstr "Статус ONIX" - -msgid "plugins.importexport.onix30.unavailable" -msgstr "Недоступно" - -msgid "plugins.importexport.onix30.exportFormats" -msgstr "Доступні Формати" - -msgid "plugins.importexport.onix30.exportButton" -msgstr "Експортувати" - -msgid "plugins.importexport.onix30.selectMonograph" -msgstr "Оберіть монографію для експорту:" - -msgid "plugins.importexport.onix30.exportSubmissionsSelect" -msgstr "Оберіть Монографії для експорту" - -msgid "plugins.importexport.onix30.cliError" -msgstr "ПОМИЛКА:" - -msgid "plugins.importexport.onix30.export.error.couldNotWrite" -msgstr "Не вдалося записати у файл \"{$fileName}\"." - -msgid "plugins.importexport.onix30.error.unknownPress" -msgstr "Вказаний шлях видавництва \"{$contextPath}\" не існує." diff --git a/plugins/importexport/onix30/locale/vi/locale.po b/plugins/importexport/onix30/locale/vi/locale.po new file mode 100644 index 00000000000..47c4822fb5d --- /dev/null +++ b/plugins/importexport/onix30/locale/vi/locale.po @@ -0,0 +1,63 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Weblate\n" + +msgid "plugins.importexport.onix30.displayName" +msgstr "" + +msgid "plugins.importexport.onix30.description" +msgstr "" + +msgid "plugins.importexport.onix30.cliUsage" +msgstr "" + +msgid "plugins.importexport.onix30.cliError" +msgstr "" + +msgid "plugins.importexport.onix30.error.unknownPress" +msgstr "" + +msgid "plugins.importexport.onix30.export.error.couldNotWrite" +msgstr "" + +msgid "plugins.importexport.onix30.export.error.monographNotFound" +msgstr "" + +msgid "plugins.importexport.onix30.noFormats" +msgstr "" + +msgid "plugins.importexport.onix30.exportSubmissionsSelect" +msgstr "" + +msgid "plugins.importexport.onix30.selectMonograph" +msgstr "" + +msgid "plugins.importexport.onix30.exportButton" +msgstr "" + +msgid "plugins.importexport.onix30.exportFormats" +msgstr "" + +msgid "plugins.importexport.onix30.unavailable" +msgstr "" + +msgid "plugins.importexport.onix30.validityStatus" +msgstr "" + +msgid "plugins.importexport.onix30.formatValid" +msgstr "" + +msgid "plugins.importexport.onix30.formatInvalid" +msgstr "" + +msgid "plugins.importexport.onix30.pressMissingFields" +msgstr "" + +msgid "plugins.importexport.onix30.form.addresseeField" +msgstr "" + +msgid "plugins.importexport.onix30.form.addresseeField.tip" +msgstr "" diff --git a/plugins/importexport/onix30/locale/vi_VN/locale.po b/plugins/importexport/onix30/locale/vi_VN/locale.po deleted file mode 100644 index 4f8f6e6dec5..00000000000 --- a/plugins/importexport/onix30/locale/vi_VN/locale.po +++ /dev/null @@ -1,2 +0,0 @@ -msgid "" -msgstr "X-Generator: Weblate\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit" \ No newline at end of file diff --git a/plugins/importexport/onix30/templates/index.tpl b/plugins/importexport/onix30/templates/index.tpl index 0f29d15a4b4..064757fc77b 100644 --- a/plugins/importexport/onix30/templates/index.tpl +++ b/plugins/importexport/onix30/templates/index.tpl @@ -14,75 +14,85 @@ {$pageTitle|escape} - +
                -
                - + {if !$currentContext->getData('publisher') || !$currentContext->getData('location') || !$currentContext->getData('codeType') || !$currentContext->getData('codeValue')} +

                + {capture assign="contextSettingsUrl"}{url page="management" op="settings" path="context"}{/capture} + {translate key="plugins.importexport.onix30.pressMissingFields" url=$contextSettingsUrl} +

                + {else} + +
                + +
                + + + {csrf} + {fbvFormArea id="exportForm"} + -
                - {if !$currentContext->getData('publisher') || !$currentContext->getData('location') || !$currentContext->getData('codeType') || !$currentContext->getData('codeValue')} -

                - {capture assign="contextSettingsUrl"}{url page="management" op="settings" path="context"}{/capture} - {translate key="plugins.importexport.onix30.pressMissingFields" url=$contextSettingsUrl} -

                - {else} - - - {csrf} - {fbvFormArea id="exportForm"} - - - - - {fbvFormSection} - - -